Welcome!

Hello, and welcome to rainbowR’s Intro to R workshop! We are using an R Notebook. An R Notebook is an R Markdown document with code blocks that can be executed independently and interactively, with the output visible immediately beneath the input. They are an implementation of Literate Programming that allows for direct interaction with the R programming language while producing a reproducible document with publication-quality output. R notebooks can also be rendered using the knit button to create an HTML document that is easily viewable outside of R. We can see the difference between text and code as the text is in the white space and code blocks are in grey. To run any particular line of code, click the green play button in that chunk, or with your cursor in the grey code block, press control, shift, enter (⬆⌘⏎) simultaneously.

Try it here:

plot(cars)

We see our results from that line of code immediately below it, which happens to be a graph about the speed and distance of different kinds of cars. Let’s move on to the data we will use for this workshop!

Data Introduction

We will be using The Youth Risk Behavior Surveillance System (YRBSS). It is a set of surveys that track behaviors that can lead to poor health in students grades 9 through 12. The surveys are administered every other year. Some of the health-related behaviors and experiences monitored are:

  • Student demographics: sex, sexual identity, race and ethnicity, and grade

  • Youth health behaviors and conditions: sexual, injury and violence, bullying, diet and physical activity, obesity, and mental health, including suicide

  • Substance use behaviors: electronic vapor product and tobacco product use, alcohol use, and other drug use

  • Student experiences: parental monitoring, school connectedness, unstable housing, and exposure to community violence

This dataset will be pulled directly from the Centers for Disease Control and Prevention (CDC) website.

R Packages

What is a package?

  • It is a collection of R functions, documentation, and data for a specific purpose

  • It is saved in a directory called the “library”

  • It can be turned on and off because:

    • Packages are created by many different people with no checks on function names, so they may end up clashing

    • Most projects only use a small handful of packages

    • More than 20,000 packages would make loading R very slow

The specific package we will use is asciiSetupReader, which will read in the ASCII data file and the SPSS syntax file to correctly import the data and the labels. We can stream the data files from 2021 directly from the CDC website into R using the web links.

Normally, the first time we work with a new package, we would need to install it using install.packages("asciiSetupReader"), but that has already been done in this workspace, so we only need to “turn on” the specific package in our library using the library function. You can check which packages have already been installed in your library by going to the “Packages” tab in the lower right panel. Additionally, if there is a check next to the package name, that means it is on and available to use. If we paste asciiSetupReader in the package search box, we see it is not turned on yet, so let’s do that.

library(asciiSetupReader)

Importing the data

The YRBS data are available in two file formats: Access® and ASCII.

  • The Access and ASCII data can be downloaded and used as is.

  • Additionally, SAS® and SPSS® programs are provided to convert the ASCII data into SAS® and SPSS® datasets for use in those packages

We are not using SAS or SPSS, so we need extra help reading it into R. We will use a package specifically created to read ASCII files and any accompanying setup files, such as ones from SAS or SPSS.

Creating an object

We will use the YRBS data to create an R object. An R object contains information stored in R’s temporary memory. It could be lists, tables, and more! Once an object is stored, we can retrieve and manipulate it at any point in our coding work. The process of storing an object is called “assignment” (<-) and requires giving an object a name.

Object names have some general rules:

  • The first character can’t be a number

  • It cannot contain spaces or symbols

  • Must use either an underscore (snake_case) or Capital letters (CamelCase) to break up multiple words

  • Names are case-sensitive. for example, If you call your object CoolData, you need to use the capital C and D to call it again later. If you try and print cooldata, nothing will happen.

  • Names should be unique and understandable but short. You don’t want to keep typing a really long name!

Once we create an object, we can print the data stored within it at any time by typing the object’s name in a code block.

Let’s try a quick exercise. Let’s assign the word object_five to the number 5. If we run the code chunk below we don’t see anything printed, but if we look in our environment tab in the upper right panel, we see that R has in its memory that the object name object_five has a value of 5. If we want to print what the object contains, we only need to add the name to the code chunk below.

object_five <- 5
object_five
## [1] 5

Let’s also create an object called object_six and set it’s value to the number 6. Do this in the code chunk below:

We can now ask R to add these two objects. Add object_five and object_six together in the code chunk below:

If we wanted to instead create a new object called output_sum and assign the output of object_five + object_six to it, how would we do that? Add your solution to the code chunk below:

Now that we know what an object is, let’s create one for the 2023 YRBS CDC dataset. First, we need to create a useful name for the data object we will create. We will use yrbs for this dataset. We then need to connect that name to the function with the assignment operator <-. We will use the spss_ascii_reader function, which specifies which reader type we will use, in this case, SPSS. We then need to specify the dataset file in the function using dataset_name and the SPSS syntax file using sps_name.

yrbs <- spss_ascii_reader(dataset_name = "https://www.cdc.gov/yrbs/files/2023/XXH2023_YRBS_Data.dat",
sps_name = "https://www.cdc.gov/yrbs/files/2023/2023XXH-SPSS.sps")

Exploring the data

We can explore this dataset in a couple of different ways. We can look at the dimensions of the data (as in the total number of rows and columns) using the dim function. If we want more information about this function or any other in R, we can always type ? in front of the function. More information about the function will pop up in the help tab in the lower right corner panel. We can also directly type functions into the search box in this panel at any time. When we run the dim command, we see 20,103 rows (students) and 250 columns (variable questions asked). If we wanted to query the number of rows or columns separately, we could use nrow and ncol, respectively.

?dim
dim(yrbs)
## [1] 20103   250

We can also take a look at the names of all the columns (variables) in this dataset by printing out the column names using the colnames function. This is a way to quickly explore what variables are present.

There are over 200 variables in this dataset! We are most likely interested in just a subset of this data. We could use base R to extract the specific pieces of the data we are interested in. For instance, if we are interested in only extracting all the information from the student in the second row, we could use square brackets on the object yrbs. The first position is the row, and the second position after the comma is the column. Here we are extracting all the column values for the second row.

What is tidyverse?

The tidyverse is actually a collection of R packages designed for data science that share an underlying design philosophy, grammar, and data structures.

Key packages include:

Loading tidyverse

We want to load the collection of packages found in the tidyverse library. Normally, the first time we work with a new package, we would need to install it using install.packages("tidyverse"), but that has already been done in this workspace, so we only need to “turn on” the specific package in our library using the library function. You can check which packages have already been installed in your library by going to the “Packages” tab in the lower right panel. Additionally, if there is a check next to the package name, that means it is on and available to use. If we paste tidyverse in the package search box, we see it is not turned on yet, so let’s do that.

library(tidyverse)

The count function

Now that the tidyverse is loaded we can use the count function which is part of the dplyr package. We will focus on the package heavily in the next workshop day. This function counts each unique value in a particular variable. We can use it to quickly see how many students identify with each What_is_your_sex category. The other nice thing is that this output is in tabular format, which is more useful for further manipulation.

count(yrbs, What_is_your_sex)
##   What_is_your_sex     n
## 1           Female  9884
## 2             Male 10061
## 3             <NA>   158

The Six Essential dplyr Functions

We will specifically use the dplyr package for data wrangling, which is another way of saying data manipulation and cleaning. We will explore the six most commonly used data manipulation functions in this package which are: arrange, select, filter, mutate, summarize, and group_by.

1. select() - Choose Columns

With over 200 variables, it would use a lot of memory and compute to handle the entire dataset, so let’s extract the students’ age, sex, grade, height, weight, sexual identity, and mental health. We can always use the colnames command to see the exact names of these columns, or use the environment drop-down. We can use the select command to add only these columns into a new data object called yrbs_select. These column names are also really long, and we probably don’t want to type them repeatedly. We can also give them new names as we select them. We could use the head function to take a look at the first couple of rows of this new dataset, but since we are using the Tidyverse, it will automatically print out an interactive table if we type the object name yrbs_select.

colnames(yrbs)
##   [1] "Site_Code"                                                                                                                                                                                    
##   [2] "How_old_are_you"                                                                                                                                                                              
##   [3] "What_is_your_sex"                                                                                                                                                                             
##   [4] "In_what_grade_are_you"                                                                                                                                                                        
##   [5] "Are_you_Hispanic_Latino"                                                                                                                                                                      
##   [6] "What_is_your_race"                                                                                                                                                                            
##   [7] "How_tall_are_you"                                                                                                                                                                             
##   [8] "How_much_do_you_weigh"                                                                                                                                                                        
##   [9] "Seat_belt_use"                                                                                                                                                                                
##  [10] "Riding_with_a_drinking_driver"                                                                                                                                                                
##  [11] "Drinking_and_driving"                                                                                                                                                                         
##  [12] "Texting_and_driving"                                                                                                                                                                          
##  [13] "Weapon_carrying_at_school"                                                                                                                                                                    
##  [14] "Gun_carrying"                                                                                                                                                                                 
##  [15] "Safety_concerns_at_school"                                                                                                                                                                    
##  [16] "Threatened_at_school"                                                                                                                                                                         
##  [17] "Times_in_fight_past_12_months"                                                                                                                                                                
##  [18] "Physical_fighting_at_school"                                                                                                                                                                  
##  [19] "Saw_physical_violence_in_neighborhood"                                                                                                                                                        
##  [20] "Ever_been_physically_forced_sexual_intercourse"                                                                                                                                               
##  [21] "Sexual_violence"                                                                                                                                                                              
##  [22] "Sexual_dating_violence"                                                                                                                                                                       
##  [23] "Physical_dating_violence"                                                                                                                                                                     
##  [24] "treated_unfairly_in_school_b_c_race_ethnicity"                                                                                                                                                
##  [25] "Bullied_at_school"                                                                                                                                                                            
##  [26] "Electronic_bullying"                                                                                                                                                                          
##  [27] "Sad_or_hopeless"                                                                                                                                                                              
##  [28] "Considered_suicide"                                                                                                                                                                           
##  [29] "Made_a_suicide_plan_past_12_months"                                                                                                                                                           
##  [30] "Actually_attempted_suicide"                                                                                                                                                                   
##  [31] "Injurious_suicide_attempt"                                                                                                                                                                    
##  [32] "Ever_cigarette_use"                                                                                                                                                                           
##  [33] "Initiation_of_cigarette_smoking"                                                                                                                                                              
##  [34] "Current_cigarette_use"                                                                                                                                                                        
##  [35] "Smoked_over_10_cigarettes"                                                                                                                                                                    
##  [36] "Electronic_vapor_product_use"                                                                                                                                                                 
##  [37] "Current_electronic_vapor_product_use"                                                                                                                                                         
##  [38] "EVP_from_store"                                                                                                                                                                               
##  [39] "Current_smokeless_tobacco_use"                                                                                                                                                                
##  [40] "Current_cigar_use"                                                                                                                                                                            
##  [41] "All_tobacco_product_cessation"                                                                                                                                                                
##  [42] "Initiation_of_alcohol_use"                                                                                                                                                                    
##  [43] "Current_alcohol_use"                                                                                                                                                                          
##  [44] "Current_binge_drinking"                                                                                                                                                                       
##  [45] "Drinks_in_a_row_past_30_days"                                                                                                                                                                 
##  [46] "Source_of_alcohol"                                                                                                                                                                            
##  [47] "Ever_marijuana_use"                                                                                                                                                                           
##  [48] "Initiation_of_marijuana_use"                                                                                                                                                                  
##  [49] "Current_marijuana_use"                                                                                                                                                                        
##  [50] "Ever_prescription_pain_medicine_use"                                                                                                                                                          
##  [51] "Ever_cocaine_use"                                                                                                                                                                             
##  [52] "Ever_inhalant_use"                                                                                                                                                                            
##  [53] "Ever_heroin_use"                                                                                                                                                                              
##  [54] "Ever_methamphetamine_use"                                                                                                                                                                     
##  [55] "Ever_ecstasy_use"                                                                                                                                                                             
##  [56] "Illegal_injected_drug_use"                                                                                                                                                                    
##  [57] "Ever_sexual_intercourse"                                                                                                                                                                      
##  [58] "Sex_before_13_years"                                                                                                                                                                          
##  [59] "Number_of_sex_partners"                                                                                                                                                                       
##  [60] "Current_sexual_activity"                                                                                                                                                                      
##  [61] "Alcohol_drugs_and_sex"                                                                                                                                                                        
##  [62] "Condom_use"                                                                                                                                                                                   
##  [63] "Birth_control_pill_use"                                                                                                                                                                       
##  [64] "Sex_of_sexual_contacts"                                                                                                                                                                       
##  [65] "Sexual_identity"                                                                                                                                                                              
##  [66] "Transgender"                                                                                                                                                                                  
##  [67] "Perception_of_weight"                                                                                                                                                                         
##  [68] "Weight_loss"                                                                                                                                                                                  
##  [69] "Fruit_juice_drinking"                                                                                                                                                                         
##  [70] "Fruit_eating"                                                                                                                                                                                 
##  [71] "Green_salad_eating"                                                                                                                                                                           
##  [72] "Potato_eating"                                                                                                                                                                                
##  [73] "Carrot_eating"                                                                                                                                                                                
##  [74] "Other_vegetable_eating"                                                                                                                                                                       
##  [75] "No_soda_drinking"                                                                                                                                                                             
##  [76] "Breakfast_eating"                                                                                                                                                                             
##  [77] "Physical_activity_over_5_days"                                                                                                                                                                
##  [78] "PE_attendance"                                                                                                                                                                                
##  [79] "Sports_team_participation"                                                                                                                                                                    
##  [80] "Concussion"                                                                                                                                                                                   
##  [81] "Social_media"                                                                                                                                                                                 
##  [82] "HIV_testing"                                                                                                                                                                                  
##  [83] "STD_testing"                                                                                                                                                                                  
##  [84] "Oral_health_care"                                                                                                                                                                             
##  [85] "Current_mental_health"                                                                                                                                                                        
##  [86] "Hours_of_sleep_on_school_night"                                                                                                                                                               
##  [87] "Unstable_Housing"                                                                                                                                                                             
##  [88] "Grades_in_school"                                                                                                                                                                             
##  [89] "Ever_sexual_abuse_by_adult_or_older_person_ACEs"                                                                                                                                              
##  [90] "Ever_parental_emotional_abuse_ACEs"                                                                                                                                                           
##  [91] "Ever_parental_physical_abuse_ACEs"                                                                                                                                                            
##  [92] "Adults_in_home_intimate_partner_violence_ACEs"                                                                                                                                                
##  [93] "Current_Rx_Pain_med_w_out_Rx"                                                                                                                                                                 
##  [94] "Ever_used_hallucinogenic_drugs"                                                                                                                                                               
##  [95] "If_verbally_asked_for_consent_last_sexual_contact"                                                                                                                                            
##  [96] "Sports_drinks"                                                                                                                                                                                
##  [97] "Plain_water"                                                                                                                                                                                  
##  [98] "Muscle_strengthening"                                                                                                                                                                         
##  [99] "Sunburn"                                                                                                                                                                                      
## [100] "How_often_household_adult_met_basic_needs_ACEs"                                                                                                                                               
## [101] "Ever_lived_w_parent_guardian_w_substance_abuse_ACE"                                                                                                                                           
## [102] "Ever_lived_with_parent_guardian_w_mental_illness_A"                                                                                                                                           
## [103] "Ever_incarcerated_parent_guardian_ACEs"                                                                                                                                                       
## [104] "Feel_close_to_people_at_their_school"                                                                                                                                                         
## [105] "Parental_monitoring"                                                                                                                                                                          
## [106] "Unfairly_disciplined_at_school"                                                                                                                                                               
## [107] "Difficulty_concentrating"                                                                                                                                                                     
## [108] "How_well_speak_English"                                                                                                                                                                       
## [109] "Did_not_always_wear_a_seat_belt"                                                                                                                                                              
## [110] "Rode_with_a_driver_who_had_been_drinking_alcohol"                                                                                                                                             
## [111] "Drove_a_car_or_other_vehicle_when_they_had_been_drinking_alcohol"                                                                                                                             
## [112] "Texted_or_e_mailed_while_driving_a_car_or_other_vehicle"                                                                                                                                      
## [113] "Carried_a_weapon_on_school_property"                                                                                                                                                          
## [114] "Carried_a_gun"                                                                                                                                                                                
## [115] "Did_not_go_to_school_because_they_felt_unsafe_at_school_or_on_their_way_to_or_from_school"                                                                                                    
## [116] "Were_threatened_or_injured_with_a_weapon_on_school_property"                                                                                                                                  
## [117] "Were_in_a_physical_fight"                                                                                                                                                                     
## [118] "Were_in_a_physical_fight_on_school_property"                                                                                                                                                  
## [119] "Ever_saw_someone_get_physically_attacked_beaten_stabbed_or_shot_in_their_neighborhood"                                                                                                        
## [120] "Were_ever_physically_forced_to_have_sexual_intercourse"                                                                                                                                       
## [121] "Experienced_sexual_violence"                                                                                                                                                                  
## [122] "Experienced_sexual_dating_violence"                                                                                                                                                           
## [123] "Experienced_physical_dating_violence"                                                                                                                                                         
## [124] "Felt_that_they_were_ever_treated_badly_or_unfairly_in_school_because_of_their_race_or_ethnicity"                                                                                              
## [125] "Were_bullied_on_school_property"                                                                                                                                                              
## [126] "Were_electronically_bullied"                                                                                                                                                                  
## [127] "Felt_sad_or_hopeless"                                                                                                                                                                         
## [128] "Seriously_considered_attempting_suicide"                                                                                                                                                      
## [129] "Made_a_plan_about_how_they_would_attempt_suicide"                                                                                                                                             
## [130] "Attempted_suicide"                                                                                                                                                                            
## [131] "Had_a_suicide_attempt_that_resulted_in_an_injury_poisoning_or_overdose_that_had_to_be_treated_by_a_doctor_or_nurse"                                                                           
## [132] "Ever_smoked_a_cigarette"                                                                                                                                                                      
## [133] "Smoked_a_cigarette_before_age_13_years"                                                                                                                                                       
## [134] "Currently_smoked_cigarettes"                                                                                                                                                                  
## [135] "Smoked_more_than_10_cigarettes_per_day"                                                                                                                                                       
## [136] "Ever_used_an_electronic_vapor_product"                                                                                                                                                        
## [137] "Currently_used_an_electronic_vapor_product"                                                                                                                                                   
## [138] "Usually_got_their_electronic_vapor_products_by_buying_them_themselves_in_a_convenience_store_supermarket_discount_store_or_gas_station"                                                       
## [139] "Currently_used_smokeless_tobacco"                                                                                                                                                             
## [140] "Currently_smoked_cigars"                                                                                                                                                                      
## [141] "Tried_to_quit_using_all_tobacco_products"                                                                                                                                                     
## [142] "Had_their_first_drink_of_alcohol_before_age_13_years"                                                                                                                                         
## [143] "Currently_drank_alcohol"                                                                                                                                                                      
## [144] "Currently_were_binge_drinking"                                                                                                                                                                
## [145] "Reported_that_the_largest_number_of_drinks_they_had_in_a_row_was_10_or_more"                                                                                                                  
## [146] "Usually_got_the_alcohol_they_drank_by_someone_giving_it_to_them"                                                                                                                              
## [147] "Ever_used_marijuana"                                                                                                                                                                          
## [148] "tried_marijuana_for_the_first_time_before_age_13_years"                                                                                                                                       
## [149] "Currently_used_marijuana"                                                                                                                                                                     
## [150] "Ever_took_prescription_pain_medicine_without_a_doctor_s_prescription_or_differently_than_how_a_doctor_told_them_to_use_it"                                                                    
## [151] "Ever_used_cocaine"                                                                                                                                                                            
## [152] "Ever_used_inhalants"                                                                                                                                                                          
## [153] "Ever_used_heroin"                                                                                                                                                                             
## [154] "Ever_used_methamphetamines"                                                                                                                                                                   
## [155] "Ever_used_ecstasy"                                                                                                                                                                            
## [156] "Ever_injected_any_illegal_drug"                                                                                                                                                               
## [157] "Ever_had_sexual_intercourse"                                                                                                                                                                  
## [158] "Had_sexual_intercourse_for_the_first_time_before_age_13_years"                                                                                                                                
## [159] "Had_sexual_intercourse_with_four_or_more_persons_during_their_life"                                                                                                                           
## [160] "Were_currently_sexually_active"                                                                                                                                                               
## [161] "Drank_alcohol_or_used_drugs_before_last_sexual_intercourse"                                                                                                                                   
## [162] "Used_a_condom_during_last_sexual_intercourse"                                                                                                                                                 
## [163] "Used_birth_control_pills_before_last_sexual_intercourse_with_opposite_sex_partner"                                                                                                            
## [164] "Described_themselves_as_slightly_or_very_overweight"                                                                                                                                          
## [165] "Were_trying_to_lose_weight"                                                                                                                                                                   
## [166] "Did_not_drink_fruit_juice"                                                                                                                                                                    
## [167] "Did_not_eat_fruit"                                                                                                                                                                            
## [168] "Did_not_eat_green_salad"                                                                                                                                                                      
## [169] "Did_not_eat_potatoes"                                                                                                                                                                         
## [170] "Did_not_eat_carrots"                                                                                                                                                                          
## [171] "Did_not_eat_other_vegetables"                                                                                                                                                                 
## [172] "Did_not_drink_a_can_bottle_or_glass_of_soda_or_pop"                                                                                                                                           
## [173] "Did_not_eat_breakfast"                                                                                                                                                                        
## [174] "Were_physically_active_at_least_60_minutes_per_day_on_5_or_more_days"                                                                                                                         
## [175] "Attended_physical_education_PE_classes_on_1_or_more_days"                                                                                                                                     
## [176] "Played_on_at_least_one_sports_team"                                                                                                                                                           
## [177] "Had_a_concussion_from_playing_a_sport_or_being_physically_active"                                                                                                                             
## [178] "Used_social_media_several_times_a_day"                                                                                                                                                        
## [179] "Were_ever_tested_for_human_immunodeficiency_virus_HIV"                                                                                                                                        
## [180] "Were_ever_tested_for_a_sexually_transmitted_disease_STD"                                                                                                                                      
## [181] "Saw_a_dentist"                                                                                                                                                                                
## [182] "Reported_that_their_mental_health_was_most_of_the_time_or_always_not_good"                                                                                                                    
## [183] "Got_8_or_more_hours_of_sleep"                                                                                                                                                                 
## [184] "Experienced_unstable_housing"                                                                                                                                                                 
## [185] "Described_their_grades_in_school_as_mostly_A_s_or_B_s"                                                                                                                                        
## [186] "Reported_that_an_adult_or_person_at_least_5_years_older_than_them_ever_made_them_do_sexual_things_they_did_not_want_to_do"                                                                    
## [187] "Reported_that_a_parent_or_other_adult_in_their_home_most_of_the_time_or_always_insulted_them_or_put_them_down"                                                                                
## [188] "Reported_that_a_parent_or_other_adult_in_their_home_most_of_the_time_or_always_hit_beat_kicked_or_physically_hurt_them_in_any_way"                                                            
## [189] "Reported_that_their_parents_or_other_adults_in_their_home_most_of_the_time_or_always_slapped_hit_kicked_punched_or_beat_each_other_up"                                                        
## [190] "currently_took_prescription_pain_medicine_without_a_doctor_s_prescription_or_differently_than_how_a_doctor_told_them_to_use_it"                                                               
## [191] "ever_used_hallucinogenic_drugs"                                                                                                                                                               
## [192] "Verbally_asked_for_consent_the_last_time_they_had_sexual_contact"                                                                                                                             
## [193] "did_not_drink_a_can_bottle_or_glass_of_a_sports_drink"                                                                                                                                        
## [194] "did_not_drink_a_bottle_or_glass_of_plain_water"                                                                                                                                               
## [195] "did_exercises_to_strengthen_or_tone_their_muscles_on_three_or_more_days"                                                                                                                      
## [196] "had_a_sunburn"                                                                                                                                                                                
## [197] "Reported_that_an_adult_in_their_household_most_of_the_time_or_always_tried_to_make_sure_their_basic_needs_were_met"                                                                           
## [198] "ever_lived_with_a_parent_or_guardian_who_was_having_a_problem_with_alcohol_or_drug_use"                                                                                                       
## [199] "ever_lived_with_a_parent_or_guardian_who_had_severe_depression_anxiety_or_another_mental_illness_or_was_suicidal"                                                                             
## [200] "Have_ever_been_separated_from_a_parent_or_guardian_because_they_went_to_jail_prison_or_a_detention_center"                                                                                    
## [201] "strongly_agree_or_agree_that_they_feel_close_to_people_at_their_school"                                                                                                                       
## [202] "reported_that_their_parents_or_other_adults_in_their_family_most_of_the_time_or_always_know_where_they_are_going_or_with_whom_they_will_be"                                                   
## [203] "have_been_unfairly_disciplined_at_school"                                                                                                                                                     
## [204] "have_serious_difficulty_concentrating_remembering_or_making_decisions"                                                                                                                        
## [205] "speak_English_well_or_very_well"                                                                                                                                                              
## [206] "Currently_smoked_cigarettes_frequently"                                                                                                                                                       
## [207] "Currently_smoked_cigarettes_daily"                                                                                                                                                            
## [208] "Currently_used_electronic_vapor_products_frequently"                                                                                                                                          
## [209] "Currently_used_electronic_vapor_products_daily"                                                                                                                                               
## [210] "Currently_used_smokeless_tobacco_frequently"                                                                                                                                                  
## [211] "Currently_used_smokeless_tobacco_daily"                                                                                                                                                       
## [212] "Currently_smoked_cigars_frequently"                                                                                                                                                           
## [213] "Currently_smoked_cigars_daily"                                                                                                                                                                
## [214] "Currently_smoked_cigarettes_or_cigars"                                                                                                                                                        
## [215] "Currently_smoked_cigarettes_or_cigars_or_used_smokeless_tobacco"                                                                                                                              
## [216] "Currently_smoked_cigarettes_or_cigars_or_used_smokeless_tobacco_or_electronic_vapor_products"                                                                                                 
## [217] "Currently_smoked_cigarettes_or_used_electronic_vapor_products"                                                                                                                                
## [218] "Used_an_IUD_such_as_Mirena_or_ParaGard_or_implant_such_as_Implanon_or_Nexplanon_before_last_sexual_intercourse_with_an_opposite_sex_partner"                                                  
## [219] "Used_birth_control_pills_an_IUD_or_implant_or_a_shot_patch_or_birth_control_ring_before_last_sexual_intercourse_with_an_opposite_sex_partner"                                                 
## [220] "Used_both_a_condom_during_last_sexual_intercourse_and_birth_control_pills_an_IUD_or_implant_or_a_shot_patch_or_birth_control_ring_before_last_sexual_intercourse_with_an_opposite_sex_partner"
## [221] "Did_not_use_any_method_to_prevent_pregnancy_during_last_sexual_intercourse_with_an_opposite_sex_partner"                                                                                      
## [222] "Did_not_eat_fruit_or_drink_100_fruit_juices"                                                                                                                                                  
## [223] "Ate_fruit_or_drank_100_fruit_juices_one_or_more_times_per_day"                                                                                                                                
## [224] "Ate_fruit_or_drank_100_fruit_juices_two_or_more_times_per_day"                                                                                                                                
## [225] "Did_not_eat_vegetables"                                                                                                                                                                       
## [226] "Ate_vegetables_one_or_more_times_per_day"                                                                                                                                                     
## [227] "Ate_vegetables_two_or_more_times_per_day"                                                                                                                                                     
## [228] "Ate_vegetables_three_or_more_times_per_day"                                                                                                                                                   
## [229] "Drank_a_can_bottle_or_glass_of_soda_or_pop_one_or_more_times_per_day"                                                                                                                         
## [230] "Drank_a_can_bottle_or_glass_of_soda_or_pop_two_or_more_times_per_day"                                                                                                                         
## [231] "Ate_breakfast_on_all_7_days"                                                                                                                                                                  
## [232] "Did_not_participate_in_at_least_60_minutes_of_physical_activity_on_at_least_1_day"                                                                                                            
## [233] "Were_physically_active_at_least_60_minutes_per_day_on_all_7_days"                                                                                                                             
## [234] "Attended_physical_education_classes_on_all_5_days"                                                                                                                                            
## [235] "Never_saw_a_dentist"                                                                                                                                                                          
## [236] "Drank_a_can_bottle_or_glass_of_a_sports_drink_one_or_more_times_per_day"                                                                                                                      
## [237] "Drank_a_can_bottle_or_glass_of_a_sports_drink_two_or_more_times_per_day"                                                                                                                      
## [238] "Drank_a_bottle_or_glass_of_plain_water_one_or_more_times_per_day"                                                                                                                             
## [239] "drank_a_bottle_or_glass_of_plain_water_two_or_more_times_per_day"                                                                                                                             
## [240] "drank_a_bottle_or_glass_of_plain_water_three_or_more_times_per_day"                                                                                                                           
## [241] "Ever_used_select_illicit_drugs"                                                                                                                                                               
## [242] "Had_obesity"                                                                                                                                                                                  
## [243] "Were_Overweight"                                                                                                                                                                              
## [244] "Overall_Analysis_Weight"                                                                                                                                                                      
## [245] "Sampling_Strata"                                                                                                                                                                              
## [246] "Primary_Sampling_Unit"                                                                                                                                                                        
## [247] "Body_Mass_Index_Percentile"                                                                                                                                                                   
## [248] "Race_Ethnicity"                                                                                                                                                                               
## [249] "Original_unedited_student_height"                                                                                                                                                             
## [250] "Original_unedited_student_weight"
yrbs %>% select(age = How_old_are_you)
##                           age
## 1                14 years old
## 2                15 years old
## 3                16 years old
## 4                17 years old
## 5                14 years old
## 6                16 years old
## 7                17 years old
## 8                15 years old
## 9                15 years old
## 10               17 years old
## 11               16 years old
## 12               15 years old
## 13               15 years old
## 14      18 years old or older
## 15               15 years old
## 16               14 years old
## 17               15 years old
## 18      18 years old or older
## 19               16 years old
## 20               16 years old
## 21               16 years old
## 22               16 years old
## 23      18 years old or older
## 24               16 years old
## 25               17 years old
## 26               16 years old
## 27               17 years old
## 28               17 years old
## 29               16 years old
## 30      18 years old or older
## 31               17 years old
## 32               16 years old
## 33               16 years old
## 34      18 years old or older
## 35               17 years old
## 36               15 years old
## 37               17 years old
## 38      18 years old or older
## 39               17 years old
## 40               17 years old
## 41               17 years old
## 42               14 years old
## 43               16 years old
## 44               16 years old
## 45               17 years old
## 46               17 years old
## 47               17 years old
## 48               16 years old
## 49               14 years old
## 50               17 years old
## 51               15 years old
## 52               15 years old
## 53               17 years old
## 54      18 years old or older
## 55      18 years old or older
## 56      18 years old or older
## 57               15 years old
## 58               17 years old
## 59               15 years old
## 60               17 years old
## 61               14 years old
## 62               14 years old
## 63               17 years old
## 64               15 years old
## 65               14 years old
## 66               14 years old
## 67               17 years old
## 68               16 years old
## 69               17 years old
## 70               17 years old
## 71               15 years old
## 72               17 years old
## 73               17 years old
## 74      18 years old or older
## 75               17 years old
## 76               17 years old
## 77               17 years old
## 78               15 years old
## 79               16 years old
## 80               17 years old
## 81               16 years old
## 82               15 years old
## 83               15 years old
## 84               16 years old
## 85               15 years old
## 86               15 years old
## 87               15 years old
## 88      18 years old or older
## 89               14 years old
## 90               15 years old
## 91               15 years old
## 92               16 years old
## 93               14 years old
## 94      18 years old or older
## 95               16 years old
## 96               15 years old
## 97               15 years old
## 98               16 years old
## 99               17 years old
## 100              17 years old
## 101     18 years old or older
## 102              16 years old
## 103              17 years old
## 104              16 years old
## 105              15 years old
## 106              17 years old
## 107              16 years old
## 108              17 years old
## 109              17 years old
## 110              17 years old
## 111              16 years old
## 112              17 years old
## 113              16 years old
## 114              15 years old
## 115              15 years old
## 116              15 years old
## 117              17 years old
## 118              16 years old
## 119              16 years old
## 120              14 years old
## 121              15 years old
## 122              15 years old
## 123              17 years old
## 124              15 years old
## 125              15 years old
## 126              15 years old
## 127              16 years old
## 128              15 years old
## 129              17 years old
## 130              15 years old
## 131              15 years old
## 132     18 years old or older
## 133     18 years old or older
## 134              16 years old
## 135              15 years old
## 136              16 years old
## 137              17 years old
## 138              17 years old
## 139              17 years old
## 140     18 years old or older
## 141              17 years old
## 142              17 years old
## 143              16 years old
## 144              17 years old
## 145              16 years old
## 146              17 years old
## 147              16 years old
## 148              17 years old
## 149              17 years old
## 150              16 years old
## 151              17 years old
## 152              17 years old
## 153              17 years old
## 154              15 years old
## 155              17 years old
## 156              17 years old
## 157              17 years old
## 158              16 years old
## 159              16 years old
## 160     18 years old or older
## 161              17 years old
## 162              15 years old
## 163              17 years old
## 164              17 years old
## 165              15 years old
## 166              14 years old
## 167              15 years old
## 168              17 years old
## 169              17 years old
## 170              17 years old
## 171              14 years old
## 172              17 years old
## 173              15 years old
## 174              15 years old
## 175                      <NA>
## 176     18 years old or older
## 177              15 years old
## 178              15 years old
## 179              17 years old
## 180              17 years old
## 181              17 years old
## 182              16 years old
## 183              15 years old
## 184              16 years old
## 185              17 years old
## 186              15 years old
## 187              17 years old
## 188              17 years old
## 189              16 years old
## 190              15 years old
## 191              17 years old
## 192              17 years old
## 193              16 years old
## 194              16 years old
## 195              16 years old
## 196              16 years old
## 197              15 years old
## 198              16 years old
## 199              17 years old
## 200              15 years old
## 201              17 years old
## 202              14 years old
## 203              16 years old
## 204              15 years old
## 205              16 years old
## 206              14 years old
## 207              17 years old
## 208              16 years old
## 209              14 years old
## 210              16 years old
## 211              16 years old
## 212              15 years old
## 213              16 years old
## 214              15 years old
## 215              16 years old
## 216              17 years old
## 217              17 years old
## 218              15 years old
## 219              17 years old
## 220              17 years old
## 221              16 years old
## 222              15 years old
## 223     18 years old or older
## 224              16 years old
## 225              16 years old
## 226              16 years old
## 227              15 years old
## 228              17 years old
## 229              16 years old
## 230              15 years old
## 231              14 years old
## 232     18 years old or older
## 233              15 years old
## 234              17 years old
## 235              16 years old
## 236              16 years old
## 237              16 years old
## 238              15 years old
## 239              15 years old
## 240              17 years old
## 241              17 years old
## 242              16 years old
## 243              15 years old
## 244              15 years old
## 245              17 years old
## 246              17 years old
## 247              16 years old
## 248              15 years old
## 249              15 years old
## 250              16 years old
## 251     18 years old or older
## 252              16 years old
## 253              15 years old
## 254              17 years old
## 255              16 years old
## 256              15 years old
## 257              15 years old
## 258              15 years old
## 259              15 years old
## 260              15 years old
## 261              14 years old
## 262              16 years old
## 263              14 years old
## 264              14 years old
## 265              14 years old
## 266              15 years old
## 267              15 years old
## 268              15 years old
## 269              14 years old
## 270              15 years old
## 271              14 years old
## 272              15 years old
## 273              15 years old
## 274              15 years old
## 275              17 years old
## 276              15 years old
## 277              16 years old
## 278              16 years old
## 279              15 years old
## 280              16 years old
## 281              16 years old
## 282              15 years old
## 283              15 years old
## 284              16 years old
## 285              17 years old
## 286              16 years old
## 287              16 years old
## 288              16 years old
## 289              15 years old
## 290              17 years old
## 291              17 years old
## 292              15 years old
## 293              16 years old
## 294              15 years old
## 295              16 years old
## 296              16 years old
## 297              15 years old
## 298              17 years old
## 299                      <NA>
## 300              17 years old
## 301              14 years old
## 302              16 years old
## 303     18 years old or older
## 304     18 years old or older
## 305              15 years old
## 306              15 years old
## 307              15 years old
## 308     18 years old or older
## 309     18 years old or older
## 310              15 years old
## 311              14 years old
## 312              16 years old
## 313     18 years old or older
## 314              16 years old
## 315              14 years old
## 316              15 years old
## 317              17 years old
## 318     18 years old or older
## 319              14 years old
## 320              15 years old
## 321              15 years old
## 322              17 years old
## 323     18 years old or older
## 324              16 years old
## 325              15 years old
## 326              17 years old
## 327              17 years old
## 328     18 years old or older
## 329              14 years old
## 330              14 years old
## 331              15 years old
## 332              17 years old
## 333              16 years old
## 334     18 years old or older
## 335     18 years old or older
## 336              14 years old
## 337              15 years old
## 338              17 years old
## 339              15 years old
## 340              14 years old
## 341              17 years old
## 342     18 years old or older
## 343     18 years old or older
## 344              14 years old
## 345              15 years old
## 346              17 years old
## 347     18 years old or older
## 348              17 years old
## 349              14 years old
## 350              14 years old
## 351              17 years old
## 352              14 years old
## 353              15 years old
## 354              16 years old
## 355     18 years old or older
## 356     18 years old or older
## 357              17 years old
## 358              14 years old
## 359              16 years old
## 360     18 years old or older
## 361              15 years old
## 362              17 years old
## 363     18 years old or older
## 364              17 years old
## 365              16 years old
## 366              15 years old
## 367              17 years old
## 368              17 years old
## 369              14 years old
## 370              15 years old
## 371              17 years old
## 372              17 years old
## 373              17 years old
## 374              14 years old
## 375              15 years old
## 376              16 years old
## 377              17 years old
## 378     18 years old or older
## 379     18 years old or older
## 380              17 years old
## 381              15 years old
## 382              15 years old
## 383              17 years old
## 384     18 years old or older
## 385     18 years old or older
## 386              14 years old
## 387              15 years old
## 388              15 years old
## 389              17 years old
## 390              17 years old
## 391              15 years old
## 392              16 years old
## 393              16 years old
## 394              16 years old
## 395              16 years old
## 396              15 years old
## 397              17 years old
## 398              15 years old
## 399              15 years old
## 400              16 years old
## 401              16 years old
## 402              15 years old
## 403              16 years old
## 404              15 years old
## 405              15 years old
## 406              15 years old
## 407              16 years old
## 408              15 years old
## 409              16 years old
## 410              15 years old
## 411              16 years old
## 412              17 years old
## 413              15 years old
## 414              15 years old
## 415              16 years old
## 416              15 years old
## 417     18 years old or older
## 418              16 years old
## 419              15 years old
## 420              15 years old
## 421     18 years old or older
## 422              16 years old
## 423              16 years old
## 424              15 years old
## 425              15 years old
## 426              16 years old
## 427              16 years old
## 428              15 years old
## 429              15 years old
## 430              15 years old
## 431              15 years old
## 432              17 years old
## 433              15 years old
## 434              14 years old
## 435              16 years old
## 436              16 years old
## 437              15 years old
## 438              15 years old
## 439              15 years old
## 440              15 years old
## 441              15 years old
## 442              17 years old
## 443              15 years old
## 444              17 years old
## 445              15 years old
## 446              15 years old
## 447              16 years old
## 448              14 years old
## 449              15 years old
## 450              15 years old
## 451              17 years old
## 452     18 years old or older
## 453     18 years old or older
## 454              14 years old
## 455              16 years old
## 456              15 years old
## 457              15 years old
## 458              15 years old
## 459              17 years old
## 460              14 years old
## 461              15 years old
## 462              16 years old
## 463     18 years old or older
## 464              15 years old
## 465              16 years old
## 466              16 years old
## 467              16 years old
## 468              15 years old
## 469              15 years old
## 470              17 years old
## 471              15 years old
## 472              15 years old
## 473     18 years old or older
## 474              15 years old
## 475              17 years old
## 476              17 years old
## 477              15 years old
## 478              16 years old
## 479              16 years old
## 480              16 years old
## 481              15 years old
## 482              17 years old
## 483              17 years old
## 484              15 years old
## 485              16 years old
## 486              16 years old
## 487              17 years old
## 488              17 years old
## 489              15 years old
## 490              17 years old
## 491              17 years old
## 492     18 years old or older
## 493              14 years old
## 494              14 years old
## 495              15 years old
## 496              15 years old
## 497              14 years old
## 498              14 years old
## 499              14 years old
## 500     18 years old or older
## 501              17 years old
## 502     18 years old or older
## 503     18 years old or older
## 504     18 years old or older
## 505              17 years old
## 506              17 years old
## 507     18 years old or older
## 508     18 years old or older
## 509     18 years old or older
## 510     18 years old or older
## 511              17 years old
## 512     18 years old or older
## 513              17 years old
## 514              17 years old
## 515              15 years old
## 516              14 years old
## 517              14 years old
## 518              15 years old
## 519              15 years old
## 520              15 years old
## 521              14 years old
## 522              14 years old
## 523              14 years old
## 524     18 years old or older
## 525              15 years old
## 526              14 years old
## 527              15 years old
## 528              14 years old
## 529              15 years old
## 530              14 years old
## 531              15 years old
## 532              15 years old
## 533              15 years old
## 534              15 years old
## 535              16 years old
## 536              15 years old
## 537              15 years old
## 538              16 years old
## 539              16 years old
## 540              16 years old
## 541              16 years old
## 542              16 years old
## 543              16 years old
## 544              16 years old
## 545              16 years old
## 546              16 years old
## 547              16 years old
## 548              16 years old
## 549              16 years old
## 550              16 years old
## 551              16 years old
## 552              16 years old
## 553     18 years old or older
## 554              17 years old
## 555              15 years old
## 556              14 years old
## 557              17 years old
## 558              15 years old
## 559              17 years old
## 560              17 years old
## 561              14 years old
## 562              16 years old
## 563              16 years old
## 564     18 years old or older
## 565              17 years old
## 566              14 years old
## 567              15 years old
## 568              16 years old
## 569              15 years old
## 570              17 years old
## 571              17 years old
## 572              15 years old
## 573              14 years old
## 574              17 years old
## 575              16 years old
## 576              17 years old
## 577              15 years old
## 578              17 years old
## 579              16 years old
## 580              17 years old
## 581              15 years old
## 582              15 years old
## 583     18 years old or older
## 584              17 years old
## 585              16 years old
## 586              15 years old
## 587              15 years old
## 588              17 years old
## 589              16 years old
## 590              15 years old
## 591              16 years old
## 592              17 years old
## 593              17 years old
## 594              14 years old
## 595              16 years old
## 596              15 years old
## 597              17 years old
## 598     18 years old or older
## 599              14 years old
## 600              17 years old
## 601              17 years old
## 602              17 years old
## 603              14 years old
## 604              15 years old
## 605     18 years old or older
## 606              17 years old
## 607                      <NA>
## 608              15 years old
## 609              17 years old
## 610              17 years old
## 611              17 years old
## 612              14 years old
## 613              15 years old
## 614              17 years old
## 615              16 years old
## 616              16 years old
## 617              16 years old
## 618              17 years old
## 619              14 years old
## 620              17 years old
## 621              17 years old
## 622              15 years old
## 623              17 years old
## 624     18 years old or older
## 625              14 years old
## 626              15 years old
## 627              16 years old
## 628              17 years old
## 629              16 years old
## 630              16 years old
## 631              16 years old
## 632              14 years old
## 633     18 years old or older
## 634              16 years old
## 635              16 years old
## 636              15 years old
## 637     18 years old or older
## 638              17 years old
## 639              17 years old
## 640              14 years old
## 641              15 years old
## 642              17 years old
## 643              16 years old
## 644              16 years old
## 645              17 years old
## 646              17 years old
## 647              15 years old
## 648              16 years old
## 649              16 years old
## 650     18 years old or older
## 651              17 years old
## 652              15 years old
## 653              14 years old
## 654              15 years old
## 655              16 years old
## 656              17 years old
## 657              17 years old
## 658              16 years old
## 659              16 years old
## 660              16 years old
## 661              17 years old
## 662              17 years old
## 663              14 years old
## 664     18 years old or older
## 665              16 years old
## 666              14 years old
## 667              14 years old
## 668              16 years old
## 669              15 years old
## 670              16 years old
## 671              17 years old
## 672     18 years old or older
## 673              15 years old
## 674              14 years old
## 675              16 years old
## 676     18 years old or older
## 677     18 years old or older
## 678              15 years old
## 679              14 years old
## 680              16 years old
## 681              14 years old
## 682              17 years old
## 683              17 years old
## 684              16 years old
## 685              16 years old
## 686              16 years old
## 687              16 years old
## 688                      <NA>
## 689              14 years old
## 690              15 years old
## 691              16 years old
## 692              16 years old
## 693              16 years old
## 694              14 years old
## 695              15 years old
## 696              17 years old
## 697              17 years old
## 698              17 years old
## 699              15 years old
## 700              16 years old
## 701              17 years old
## 702              15 years old
## 703              16 years old
## 704              14 years old
## 705              16 years old
## 706              16 years old
## 707              16 years old
## 708              17 years old
## 709              16 years old
## 710              16 years old
## 711              16 years old
## 712              15 years old
## 713              17 years old
## 714              17 years old
## 715              14 years old
## 716              16 years old
## 717              16 years old
## 718              16 years old
## 719              14 years old
## 720              15 years old
## 721              17 years old
## 722              16 years old
## 723              14 years old
## 724              16 years old
## 725              16 years old
## 726              16 years old
## 727              14 years old
## 728              15 years old
## 729              17 years old
## 730              16 years old
## 731              15 years old
## 732              16 years old
## 733              16 years old
## 734              16 years old
## 735              16 years old
## 736              15 years old
## 737              15 years old
## 738              17 years old
## 739              16 years old
## 740              15 years old
## 741              16 years old
## 742              14 years old
## 743              16 years old
## 744              16 years old
## 745              15 years old
## 746              16 years old
## 747              15 years old
## 748              15 years old
## 749              16 years old
## 750              16 years old
## 751              16 years old
## 752              16 years old
## 753              16 years old
## 754              16 years old
## 755              15 years old
## 756              16 years old
## 757              16 years old
## 758              16 years old
## 759              15 years old
## 760              17 years old
## 761              16 years old
## 762              16 years old
## 763              15 years old
## 764              17 years old
## 765              17 years old
## 766              15 years old
## 767              16 years old
## 768              17 years old
## 769              15 years old
## 770              16 years old
## 771              15 years old
## 772              15 years old
## 773              16 years old
## 774              17 years old
## 775              15 years old
## 776              16 years old
## 777              15 years old
## 778              17 years old
## 779              16 years old
## 780              16 years old
## 781              16 years old
## 782              16 years old
## 783              17 years old
## 784              16 years old
## 785              15 years old
## 786              16 years old
## 787              16 years old
## 788              15 years old
## 789              17 years old
## 790              15 years old
## 791              16 years old
## 792              16 years old
## 793              15 years old
## 794              17 years old
## 795              15 years old
## 796              15 years old
## 797              17 years old
## 798              16 years old
## 799              16 years old
## 800              15 years old
## 801              15 years old
## 802              15 years old
## 803              16 years old
## 804              15 years old
## 805              16 years old
## 806     18 years old or older
## 807              15 years old
## 808              15 years old
## 809              16 years old
## 810              17 years old
## 811              15 years old
## 812              17 years old
## 813              17 years old
## 814     18 years old or older
## 815     18 years old or older
## 816              17 years old
## 817     18 years old or older
## 818              17 years old
## 819              17 years old
## 820     18 years old or older
## 821              17 years old
## 822     18 years old or older
## 823              17 years old
## 824     18 years old or older
## 825              17 years old
## 826              17 years old
## 827     18 years old or older
## 828     18 years old or older
## 829     18 years old or older
## 830     18 years old or older
## 831              16 years old
## 832              17 years old
## 833              17 years old
## 834              17 years old
## 835     18 years old or older
## 836              17 years old
## 837     18 years old or older
## 838     18 years old or older
## 839     18 years old or older
## 840              17 years old
## 841              17 years old
## 842              17 years old
## 843              17 years old
## 844              17 years old
## 845     18 years old or older
## 846              17 years old
## 847              17 years old
## 848              17 years old
## 849              17 years old
## 850              16 years old
## 851              17 years old
## 852     18 years old or older
## 853              14 years old
## 854              15 years old
## 855              15 years old
## 856     18 years old or older
## 857              15 years old
## 858              17 years old
## 859     18 years old or older
## 860              17 years old
## 861     18 years old or older
## 862     18 years old or older
## 863              14 years old
## 864              15 years old
## 865              17 years old
## 866              16 years old
## 867              16 years old
## 868              17 years old
## 869              15 years old
## 870              15 years old
## 871     18 years old or older
## 872              16 years old
## 873              16 years old
## 874              17 years old
## 875              14 years old
## 876              15 years old
## 877     18 years old or older
## 878              16 years old
## 879              16 years old
## 880     18 years old or older
## 881              16 years old
## 882              15 years old
## 883     18 years old or older
## 884              16 years old
## 885              16 years old
## 886     18 years old or older
## 887              15 years old
## 888              15 years old
## 889     18 years old or older
## 890              16 years old
## 891              16 years old
## 892     18 years old or older
## 893              15 years old
## 894              15 years old
## 895              17 years old
## 896              17 years old
## 897              17 years old
## 898              15 years old
## 899              14 years old
## 900     18 years old or older
## 901              17 years old
## 902              17 years old
## 903              15 years old
## 904              14 years old
## 905   12 years old or younger
## 906              16 years old
## 907     18 years old or older
## 908              14 years old
## 909              16 years old
## 910              17 years old
## 911              16 years old
## 912              16 years old
## 913              17 years old
## 914              14 years old
## 915              16 years old
## 916     18 years old or older
## 917              16 years old
## 918              17 years old
## 919              15 years old
## 920              14 years old
## 921              17 years old
## 922              16 years old
## 923              15 years old
## 924              14 years old
## 925              17 years old
## 926              16 years old
## 927              16 years old
## 928              17 years old
## 929              15 years old
## 930              14 years old
## 931              17 years old
## 932              16 years old
## 933              16 years old
## 934     18 years old or older
## 935              15 years old
## 936              15 years old
## 937     18 years old or older
## 938              16 years old
## 939     18 years old or older
## 940              15 years old
## 941              15 years old
## 942     18 years old or older
## 943              16 years old
## 944              16 years old
## 945              17 years old
## 946              15 years old
## 947              15 years old
## 948     18 years old or older
## 949              16 years old
## 950     18 years old or older
## 951              15 years old
## 952              15 years old
## 953              17 years old
## 954              17 years old
## 955              14 years old
## 956              15 years old
## 957              17 years old
## 958              17 years old
## 959              17 years old
## 960              14 years old
## 961              17 years old
## 962              17 years old
## 963              15 years old
## 964              14 years old
## 965              17 years old
## 966              17 years old
## 967              16 years old
## 968     18 years old or older
## 969              15 years old
## 970              14 years old
## 971     18 years old or older
## 972              16 years old
## 973     18 years old or older
## 974              15 years old
## 975              15 years old
## 976              17 years old
## 977              16 years old
## 978              16 years old
## 979              17 years old
## 980              14 years old
## 981              15 years old
## 982              17 years old
## 983              14 years old
## 984              17 years old
## 985              14 years old
## 986              15 years old
## 987     18 years old or older
## 988              17 years old
## 989              17 years old
## 990              14 years old
## 991              14 years old
## 992              14 years old
## 993     18 years old or older
## 994              15 years old
## 995              17 years old
## 996              17 years old
## 997              15 years old
## 998              14 years old
## 999              17 years old
## 1000             17 years old
## 1001             17 years old
## 1002             17 years old
## 1003             17 years old
## 1004    18 years old or older
## 1005             17 years old
## 1006             15 years old
## 1007             15 years old
## 1008             16 years old
## 1009             17 years old
## 1010             17 years old
## 1011             14 years old
## 1012             14 years old
## 1013             16 years old
## 1014             17 years old
## 1015             14 years old
## 1016             16 years old
## 1017             15 years old
## 1018             17 years old
## 1019             17 years old
## 1020    18 years old or older
## 1021             16 years old
## 1022             17 years old
## 1023             15 years old
## 1024             17 years old
## 1025             15 years old
## 1026             15 years old
## 1027             17 years old
## 1028             15 years old
## 1029             16 years old
## 1030             15 years old
## 1031             15 years old
## 1032             16 years old
## 1033    18 years old or older
## 1034             16 years old
## 1035             15 years old
## 1036             15 years old
## 1037             16 years old
## 1038             17 years old
## 1039    18 years old or older
## 1040             14 years old
## 1041             17 years old
## 1042             15 years old
## 1043             14 years old
## 1044             16 years old
## 1045             15 years old
## 1046             17 years old
## 1047             17 years old
## 1048             15 years old
## 1049             15 years old
## 1050             16 years old
## 1051             17 years old
## 1052             15 years old
## 1053             17 years old
## 1054    18 years old or older
## 1055             14 years old
## 1056             17 years old
## 1057    18 years old or older
## 1058             15 years old
## 1059             14 years old
## 1060             17 years old
## 1061             17 years old
## 1062             16 years old
## 1063             14 years old
## 1064             16 years old
## 1065    18 years old or older
## 1066             16 years old
## 1067             14 years old
## 1068             16 years old
## 1069             17 years old
## 1070             16 years old
## 1071             14 years old
## 1072             16 years old
## 1073             14 years old
## 1074             17 years old
## 1075             17 years old
## 1076             15 years old
## 1077             15 years old
## 1078             16 years old
## 1079             17 years old
## 1080             16 years old
## 1081             14 years old
## 1082             17 years old
## 1083             15 years old
## 1084             14 years old
## 1085             17 years old
## 1086             17 years old
## 1087             15 years old
## 1088             14 years old
## 1089             16 years old
## 1090             17 years old
## 1091             15 years old
## 1092             14 years old
## 1093             16 years old
## 1094             17 years old
## 1095             15 years old
## 1096             14 years old
## 1097             16 years old
## 1098    18 years old or older
## 1099             15 years old
## 1100             14 years old
## 1101    18 years old or older
## 1102             15 years old
## 1103             14 years old
## 1104             14 years old
## 1105    18 years old or older
## 1106             16 years old
## 1107             15 years old
## 1108    18 years old or older
## 1109             16 years old
## 1110             15 years old
## 1111             17 years old
## 1112             16 years old
## 1113             14 years old
## 1114             17 years old
## 1115             15 years old
## 1116             14 years old
## 1117             14 years old
## 1118    18 years old or older
## 1119             15 years old
## 1120             15 years old
## 1121    18 years old or older
## 1122             16 years old
## 1123             14 years old
## 1124             16 years old
## 1125             17 years old
## 1126             15 years old
## 1127             14 years old
## 1128             17 years old
## 1129             14 years old
## 1130             17 years old
## 1131             17 years old
## 1132             15 years old
## 1133             16 years old
## 1134                     <NA>
## 1135             17 years old
## 1136    18 years old or older
## 1137             16 years old
## 1138             16 years old
## 1139             16 years old
## 1140             17 years old
## 1141    18 years old or older
## 1142             16 years old
## 1143             17 years old
## 1144             17 years old
## 1145             17 years old
## 1146             17 years old
## 1147             16 years old
## 1148             17 years old
## 1149    18 years old or older
## 1150             17 years old
## 1151             17 years old
## 1152             16 years old
## 1153             16 years old
## 1154             16 years old
## 1155             16 years old
## 1156             16 years old
## 1157             16 years old
## 1158             17 years old
## 1159    18 years old or older
## 1160             17 years old
## 1161             17 years old
## 1162             16 years old
## 1163             16 years old
## 1164             16 years old
## 1165             17 years old
## 1166    18 years old or older
## 1167             17 years old
## 1168    18 years old or older
## 1169             16 years old
## 1170             17 years old
## 1171             16 years old
## 1172             17 years old
## 1173             16 years old
## 1174             17 years old
## 1175             17 years old
## 1176    18 years old or older
## 1177             15 years old
## 1178             16 years old
## 1179             16 years old
## 1180             17 years old
## 1181             15 years old
## 1182             15 years old
## 1183             16 years old
## 1184             17 years old
## 1185             14 years old
## 1186             16 years old
## 1187             16 years old
## 1188             17 years old
## 1189             14 years old
## 1190             15 years old
## 1191             16 years old
## 1192    18 years old or older
## 1193             15 years old
## 1194             17 years old
## 1195             17 years old
## 1196             14 years old
## 1197             15 years old
## 1198             16 years old
## 1199             17 years old
## 1200             15 years old
## 1201             15 years old
## 1202             17 years old
## 1203             17 years old
## 1204             14 years old
## 1205             15 years old
## 1206             16 years old
## 1207             17 years old
## 1208             14 years old
## 1209             15 years old
## 1210             16 years old
## 1211             17 years old
## 1212             14 years old
## 1213             16 years old
## 1214             17 years old
## 1215             17 years old
## 1216             14 years old
## 1217             16 years old
## 1218             16 years old
## 1219             17 years old
## 1220             14 years old
## 1221             15 years old
## 1222             16 years old
## 1223             17 years old
## 1224             14 years old
## 1225             16 years old
## 1226             17 years old
## 1227             15 years old
## 1228             15 years old
## 1229             16 years old
## 1230             17 years old
## 1231    18 years old or older
## 1232             16 years old
## 1233    18 years old or older
## 1234             15 years old
## 1235             15 years old
## 1236             16 years old
## 1237             17 years old
## 1238             14 years old
## 1239             15 years old
## 1240             16 years old
## 1241             17 years old
## 1242             14 years old
## 1243             15 years old
## 1244             16 years old
## 1245             17 years old
## 1246             15 years old
## 1247             15 years old
## 1248             16 years old
## 1249             17 years old
## 1250             15 years old
## 1251             15 years old
## 1252             16 years old
## 1253             14 years old
## 1254             16 years old
## 1255             16 years old
## 1256             15 years old
## 1257             15 years old
## 1258             16 years old
## 1259             17 years old
## 1260             14 years old
## 1261             15 years old
## 1262             16 years old
## 1263             17 years old
## 1264             14 years old
## 1265             15 years old
## 1266             16 years old
## 1267             17 years old
## 1268             15 years old
## 1269             16 years old
## 1270             16 years old
## 1271             17 years old
## 1272             15 years old
## 1273             17 years old
## 1274             16 years old
## 1275             17 years old
## 1276             15 years old
## 1277             15 years old
## 1278             16 years old
## 1279    18 years old or older
## 1280             14 years old
## 1281             15 years old
## 1282             17 years old
## 1283    18 years old or older
## 1284             14 years old
## 1285             16 years old
## 1286             16 years old
## 1287             17 years old
## 1288             14 years old
## 1289             15 years old
## 1290             16 years old
## 1291    18 years old or older
## 1292             15 years old
## 1293             15 years old
## 1294             14 years old
## 1295             16 years old
## 1296             16 years old
## 1297             15 years old
## 1298             16 years old
## 1299             15 years old
## 1300             15 years old
## 1301             15 years old
## 1302             14 years old
## 1303             15 years old
## 1304             14 years old
## 1305             14 years old
## 1306             14 years old
## 1307             17 years old
## 1308    18 years old or older
## 1309             17 years old
## 1310             17 years old
## 1311             17 years old
## 1312    18 years old or older
## 1313    18 years old or older
## 1314             14 years old
## 1315             17 years old
## 1316             15 years old
## 1317             14 years old
## 1318             14 years old
## 1319             15 years old
## 1320             17 years old
## 1321             17 years old
## 1322             14 years old
## 1323             16 years old
## 1324             15 years old
## 1325             15 years old
## 1326             15 years old
## 1327             15 years old
## 1328             17 years old
## 1329             17 years old
## 1330             14 years old
## 1331             16 years old
## 1332             15 years old
## 1333             15 years old
## 1334             15 years old
## 1335             16 years old
## 1336             17 years old
## 1337    18 years old or older
## 1338             13 years old
## 1339             16 years old
## 1340             15 years old
## 1341             15 years old
## 1342             15 years old
## 1343             16 years old
## 1344             17 years old
## 1345             17 years old
## 1346             14 years old
## 1347             16 years old
## 1348             15 years old
## 1349             16 years old
## 1350             17 years old
## 1351             17 years old
## 1352             15 years old
## 1353             16 years old
## 1354             14 years old
## 1355             15 years old
## 1356             15 years old
## 1357             17 years old
## 1358             17 years old
## 1359             15 years old
## 1360             16 years old
## 1361             16 years old
## 1362             14 years old
## 1363             15 years old
## 1364             16 years old
## 1365             17 years old
## 1366             17 years old
## 1367             15 years old
## 1368             16 years old
## 1369             16 years old
## 1370             14 years old
## 1371             15 years old
## 1372             15 years old
## 1373             17 years old
## 1374             17 years old
## 1375             15 years old
## 1376             16 years old
## 1377             15 years old
## 1378             15 years old
## 1379    18 years old or older
## 1380             17 years old
## 1381             14 years old
## 1382             17 years old
## 1383             15 years old
## 1384             15 years old
## 1385             17 years old
## 1386    18 years old or older
## 1387             17 years old
## 1388             15 years old
## 1389             15 years old
## 1390    18 years old or older
## 1391             17 years old
## 1392             15 years old
## 1393             17 years old
## 1394             15 years old
## 1395             14 years old
## 1396             15 years old
## 1397             15 years old
## 1398             17 years old
## 1399    18 years old or older
## 1400             15 years old
## 1401             16 years old
## 1402             15 years old
## 1403             14 years old
## 1404             15 years old
## 1405             15 years old
## 1406             17 years old
## 1407             17 years old
## 1408             14 years old
## 1409             17 years old
## 1410                     <NA>
## 1411             15 years old
## 1412             14 years old
## 1413             16 years old
## 1414             17 years old
## 1415             16 years old
## 1416             16 years old
## 1417             16 years old
## 1418             15 years old
## 1419             14 years old
## 1420             16 years old
## 1421             17 years old
## 1422             15 years old
## 1423             17 years old
## 1424             15 years old
## 1425             15 years old
## 1426             14 years old
## 1427             16 years old
## 1428             17 years old
## 1429             17 years old
## 1430             16 years old
## 1431             16 years old
## 1432  12 years old or younger
## 1433             15 years old
## 1434             15 years old
## 1435             15 years old
## 1436             17 years old
## 1437             17 years old
## 1438             15 years old
## 1439             16 years old
## 1440             15 years old
## 1441             15 years old
## 1442             14 years old
## 1443             16 years old
## 1444             17 years old
## 1445             17 years old
## 1446             14 years old
## 1447             16 years old
## 1448             15 years old
## 1449             15 years old
## 1450             15 years old
## 1451             17 years old
## 1452             17 years old
## 1453             14 years old
## 1454             16 years old
## 1455             15 years old
## 1456             15 years old
## 1457             14 years old
## 1458             15 years old
## 1459             17 years old
## 1460    18 years old or older
## 1461             14 years old
## 1462             17 years old
## 1463             15 years old
## 1464             15 years old
## 1465             14 years old
## 1466             15 years old
## 1467    18 years old or older
## 1468             17 years old
## 1469             15 years old
## 1470             16 years old
## 1471             16 years old
## 1472             14 years old
## 1473             14 years old
## 1474             17 years old
## 1475             17 years old
## 1476             14 years old
## 1477             16 years old
## 1478             15 years old
## 1479             15 years old
## 1480             15 years old
## 1481             15 years old
## 1482             15 years old
## 1483             17 years old
## 1484    18 years old or older
## 1485             15 years old
## 1486             15 years old
## 1487             14 years old
## 1488             15 years old
## 1489             14 years old
## 1490             15 years old
## 1491             15 years old
## 1492             16 years old
## 1493             16 years old
## 1494             16 years old
## 1495             15 years old
## 1496             16 years old
## 1497             15 years old
## 1498             15 years old
## 1499             16 years old
## 1500             15 years old
## 1501             16 years old
## 1502             15 years old
## 1503             14 years old
## 1504             14 years old
## 1505             14 years old
## 1506             17 years old
## 1507             17 years old
## 1508             14 years old
## 1509             17 years old
## 1510             17 years old
## 1511             14 years old
## 1512             17 years old
## 1513             16 years old
## 1514             15 years old
## 1515             17 years old
## 1516             16 years old
## 1517             14 years old
## 1518             17 years old
## 1519             17 years old
## 1520             14 years old
## 1521             17 years old
## 1522             16 years old
## 1523             15 years old
## 1524             17 years old
## 1525             16 years old
## 1526             15 years old
## 1527             15 years old
## 1528             13 years old
## 1529             17 years old
## 1530             16 years old
## 1531             15 years old
## 1532             14 years old
## 1533             15 years old
## 1534             14 years old
## 1535             14 years old
## 1536    18 years old or older
## 1537             14 years old
## 1538    18 years old or older
## 1539             16 years old
## 1540             14 years old
## 1541             17 years old
## 1542             16 years old
## 1543             14 years old
## 1544    18 years old or older
## 1545             16 years old
## 1546             14 years old
## 1547             17 years old
## 1548             16 years old
## 1549             14 years old
## 1550             17 years old
## 1551             17 years old
## 1552             15 years old
## 1553             17 years old
## 1554             16 years old
## 1555             15 years old
## 1556             16 years old
## 1557             17 years old
## 1558             17 years old
## 1559             16 years old
## 1560             14 years old
## 1561             16 years old
## 1562             16 years old
## 1563             16 years old
## 1564    18 years old or older
## 1565             17 years old
## 1566             15 years old
## 1567             16 years old
## 1568             15 years old
## 1569    18 years old or older
## 1570             16 years old
## 1571    18 years old or older
## 1572             17 years old
## 1573             15 years old
## 1574             15 years old
## 1575             16 years old
## 1576             17 years old
## 1577             17 years old
## 1578             17 years old
## 1579             16 years old
## 1580             15 years old
## 1581             16 years old
## 1582             16 years old
## 1583             17 years old
## 1584             17 years old
## 1585             17 years old
## 1586             16 years old
## 1587             14 years old
## 1588             15 years old
## 1589             15 years old
## 1590             16 years old
## 1591    18 years old or older
## 1592             17 years old
## 1593             17 years old
## 1594             17 years old
## 1595             16 years old
## 1596             16 years old
## 1597             15 years old
## 1598             17 years old
## 1599             17 years old
## 1600             17 years old
## 1601             17 years old
## 1602             14 years old
## 1603             15 years old
## 1604             16 years old
## 1605             16 years old
## 1606    18 years old or older
## 1607             16 years old
## 1608    18 years old or older
## 1609             17 years old
## 1610             14 years old
## 1611             16 years old
## 1612             16 years old
## 1613             16 years old
## 1614             15 years old
## 1615             15 years old
## 1616             16 years old
## 1617             15 years old
## 1618             17 years old
## 1619             16 years old
## 1620             17 years old
## 1621             17 years old
## 1622             15 years old
## 1623             16 years old
## 1624    18 years old or older
## 1625             16 years old
## 1626             17 years old
## 1627             17 years old
## 1628             15 years old
## 1629             15 years old
## 1630             15 years old
## 1631             16 years old
## 1632             16 years old
## 1633             15 years old
## 1634             15 years old
## 1635             15 years old
## 1636             16 years old
## 1637             16 years old
## 1638    18 years old or older
## 1639             16 years old
## 1640             15 years old
## 1641             15 years old
## 1642             15 years old
## 1643             16 years old
## 1644             17 years old
## 1645             17 years old
## 1646    18 years old or older
## 1647             16 years old
## 1648             15 years old
## 1649             14 years old
## 1650             16 years old
## 1651             15 years old
## 1652    18 years old or older
## 1653             16 years old
## 1654             17 years old
## 1655             16 years old
## 1656             14 years old
## 1657             15 years old
## 1658             16 years old
## 1659             16 years old
## 1660             16 years old
## 1661             16 years old
## 1662             15 years old
## 1663             15 years old
## 1664             16 years old
## 1665             17 years old
## 1666             17 years old
## 1667             15 years old
## 1668             15 years old
## 1669             15 years old
## 1670             16 years old
## 1671    18 years old or older
## 1672             16 years old
## 1673    18 years old or older
## 1674             17 years old
## 1675             14 years old
## 1676             15 years old
## 1677             16 years old
## 1678             15 years old
## 1679             16 years old
## 1680    18 years old or older
## 1681             16 years old
## 1682             15 years old
## 1683             15 years old
## 1684             15 years old
## 1685             16 years old
## 1686    18 years old or older
## 1687             17 years old
## 1688    18 years old or older
## 1689             17 years old
## 1690             15 years old
## 1691             14 years old
## 1692             16 years old
## 1693             16 years old
## 1694    18 years old or older
## 1695             17 years old
## 1696    18 years old or older
## 1697             16 years old
## 1698             15 years old
## 1699             14 years old
## 1700             15 years old
## 1701             16 years old
## 1702             17 years old
## 1703             17 years old
## 1704             17 years old
## 1705             17 years old
## 1706             15 years old
## 1707             17 years old
## 1708    18 years old or older
## 1709             16 years old
## 1710    18 years old or older
## 1711             16 years old
## 1712             16 years old
## 1713             16 years old
## 1714             16 years old
## 1715             15 years old
## 1716             17 years old
## 1717             17 years old
## 1718             16 years old
## 1719             14 years old
## 1720             17 years old
## 1721             17 years old
## 1722    18 years old or older
## 1723             17 years old
## 1724             14 years old
## 1725             15 years old
## 1726             16 years old
## 1727             16 years old
## 1728             17 years old
## 1729             17 years old
## 1730             17 years old
## 1731             16 years old
## 1732             14 years old
## 1733             15 years old
## 1734             15 years old
## 1735             16 years old
## 1736             17 years old
## 1737             17 years old
## 1738    18 years old or older
## 1739             16 years old
## 1740             14 years old
## 1741             16 years old
## 1742             15 years old
## 1743             17 years old
## 1744             14 years old
## 1745             16 years old
## 1746             14 years old
## 1747             16 years old
## 1748             15 years old
## 1749             15 years old
## 1750             15 years old
## 1751             14 years old
## 1752             14 years old
## 1753             15 years old
## 1754             14 years old
## 1755             15 years old
## 1756             14 years old
## 1757             14 years old
## 1758             14 years old
## 1759             15 years old
## 1760             15 years old
## 1761             14 years old
## 1762             15 years old
## 1763             15 years old
## 1764             15 years old
## 1765             15 years old
## 1766             14 years old
## 1767             14 years old
## 1768             15 years old
## 1769             15 years old
## 1770    18 years old or older
## 1771             17 years old
## 1772             17 years old
## 1773             16 years old
## 1774             17 years old
## 1775             16 years old
## 1776             16 years old
## 1777             17 years old
## 1778    18 years old or older
## 1779             17 years old
## 1780    18 years old or older
## 1781    18 years old or older
## 1782    18 years old or older
## 1783             17 years old
## 1784             17 years old
## 1785             17 years old
## 1786    18 years old or older
## 1787             17 years old
## 1788             16 years old
## 1789             17 years old
## 1790             17 years old
## 1791    18 years old or older
## 1792             15 years old
## 1793             15 years old
## 1794             15 years old
## 1795             15 years old
## 1796             17 years old
## 1797    18 years old or older
## 1798    18 years old or older
## 1799    18 years old or older
## 1800             17 years old
## 1801             17 years old
## 1802    18 years old or older
## 1803             17 years old
## 1804    18 years old or older
## 1805             17 years old
## 1806             17 years old
## 1807    18 years old or older
## 1808    18 years old or older
## 1809             17 years old
## 1810             17 years old
## 1811             17 years old
## 1812    18 years old or older
## 1813    18 years old or older
## 1814             17 years old
## 1815    18 years old or older
## 1816    18 years old or older
## 1817             17 years old
## 1818    18 years old or older
## 1819             17 years old
## 1820             16 years old
## 1821             16 years old
## 1822             14 years old
## 1823             17 years old
## 1824             15 years old
## 1825             16 years old
## 1826             15 years old
## 1827             16 years old
## 1828             16 years old
## 1829             17 years old
## 1830             16 years old
## 1831             17 years old
## 1832             15 years old
## 1833             14 years old
## 1834             15 years old
## 1835             17 years old
## 1836             15 years old
## 1837             15 years old
## 1838             16 years old
## 1839             14 years old
## 1840             16 years old
## 1841             15 years old
## 1842             15 years old
## 1843             15 years old
## 1844    18 years old or older
## 1845             14 years old
## 1846             16 years old
## 1847             16 years old
## 1848             14 years old
## 1849             16 years old
## 1850             16 years old
## 1851             15 years old
## 1852             15 years old
## 1853             15 years old
## 1854             15 years old
## 1855             14 years old
## 1856             17 years old
## 1857             16 years old
## 1858             15 years old
## 1859             16 years old
## 1860             16 years old
## 1861             16 years old
## 1862             15 years old
## 1863             15 years old
## 1864             17 years old
## 1865             16 years old
## 1866             14 years old
## 1867             16 years old
## 1868             15 years old
## 1869    18 years old or older
## 1870             16 years old
## 1871             15 years old
## 1872    18 years old or older
## 1873             15 years old
## 1874             14 years old
## 1875             16 years old
## 1876             15 years old
## 1877             15 years old
## 1878             15 years old
## 1879             16 years old
## 1880             14 years old
## 1881             15 years old
## 1882             15 years old
## 1883             16 years old
## 1884             16 years old
## 1885             16 years old
## 1886             16 years old
## 1887             16 years old
## 1888             16 years old
## 1889             15 years old
## 1890             15 years old
## 1891             15 years old
## 1892             15 years old
## 1893             16 years old
## 1894             16 years old
## 1895             15 years old
## 1896             16 years old
## 1897             14 years old
## 1898             15 years old
## 1899             16 years old
## 1900             16 years old
## 1901             17 years old
## 1902             16 years old
## 1903    18 years old or older
## 1904             17 years old
## 1905             16 years old
## 1906             17 years old
## 1907             17 years old
## 1908             15 years old
## 1909             17 years old
## 1910             17 years old
## 1911             16 years old
## 1912             17 years old
## 1913             16 years old
## 1914             16 years old
## 1915             16 years old
## 1916             16 years old
## 1917             15 years old
## 1918             16 years old
## 1919             16 years old
## 1920             16 years old
## 1921             16 years old
## 1922             17 years old
## 1923             15 years old
## 1924             17 years old
## 1925             16 years old
## 1926             15 years old
## 1927             16 years old
## 1928             17 years old
## 1929             15 years old
## 1930             17 years old
## 1931             17 years old
## 1932             17 years old
## 1933             17 years old
## 1934             16 years old
## 1935             15 years old
## 1936             16 years old
## 1937             16 years old
## 1938             15 years old
## 1939             16 years old
## 1940             17 years old
## 1941             15 years old
## 1942             16 years old
## 1943             16 years old
## 1944             16 years old
## 1945             16 years old
## 1946             16 years old
## 1947    18 years old or older
## 1948             16 years old
## 1949             17 years old
## 1950             15 years old
## 1951             17 years old
## 1952             16 years old
## 1953             17 years old
## 1954             16 years old
## 1955             16 years old
## 1956             17 years old
## 1957             14 years old
## 1958             15 years old
## 1959             14 years old
## 1960             15 years old
## 1961             17 years old
## 1962             15 years old
## 1963    18 years old or older
## 1964             14 years old
## 1965             15 years old
## 1966    18 years old or older
## 1967             16 years old
## 1968             14 years old
## 1969             15 years old
## 1970             17 years old
## 1971             16 years old
## 1972             15 years old
## 1973             14 years old
## 1974             17 years old
## 1975             16 years old
## 1976    18 years old or older
## 1977             15 years old
## 1978             15 years old
## 1979    18 years old or older
## 1980             15 years old
## 1981             17 years old
## 1982             14 years old
## 1983             15 years old
## 1984             17 years old
## 1985             15 years old
## 1986             17 years old
## 1987             15 years old
## 1988             15 years old
## 1989    18 years old or older
## 1990             15 years old
## 1991             17 years old
## 1992             14 years old
## 1993             15 years old
## 1994             17 years old
## 1995             16 years old
## 1996             17 years old
## 1997             15 years old
## 1998             14 years old
## 1999    18 years old or older
## 2000             16 years old
## 2001             17 years old
## 2002             15 years old
## 2003             14 years old
## 2004    18 years old or older
## 2005             15 years old
## 2006    18 years old or older
## 2007             14 years old
## 2008             15 years old
## 2009    18 years old or older
## 2010             16 years old
## 2011    18 years old or older
## 2012             15 years old
## 2013             14 years old
## 2014             14 years old
## 2015             15 years old
## 2016             17 years old
## 2017             15 years old
## 2018             14 years old
## 2019             14 years old
## 2020    18 years old or older
## 2021             16 years old
## 2022    18 years old or older
## 2023             14 years old
## 2024             16 years old
## 2025             15 years old
## 2026             15 years old
## 2027    18 years old or older
## 2028             15 years old
## 2029    18 years old or older
## 2030             15 years old
## 2031             15 years old
## 2032             14 years old
## 2033             17 years old
## 2034             15 years old
## 2035             17 years old
## 2036             15 years old
## 2037             14 years old
## 2038             17 years old
## 2039             16 years old
## 2040    18 years old or older
## 2041             15 years old
## 2042             17 years old
## 2043             15 years old
## 2044             17 years old
## 2045             14 years old
## 2046             15 years old
## 2047             15 years old
## 2048             14 years old
## 2049             17 years old
## 2050             16 years old
## 2051             17 years old
## 2052             16 years old
## 2053             15 years old
## 2054             17 years old
## 2055             16 years old
## 2056             17 years old
## 2057             15 years old
## 2058             15 years old
## 2059    18 years old or older
## 2060             15 years old
## 2061             17 years old
## 2062             15 years old
## 2063             15 years old
## 2064             15 years old
## 2065             17 years old
## 2066             16 years old
## 2067             15 years old
## 2068             15 years old
## 2069             16 years old
## 2070             17 years old
## 2071             16 years old
## 2072             15 years old
## 2073             16 years old
## 2074             15 years old
## 2075             15 years old
## 2076             16 years old
## 2077             15 years old
## 2078             16 years old
## 2079             16 years old
## 2080             16 years old
## 2081             15 years old
## 2082             15 years old
## 2083             16 years old
## 2084             16 years old
## 2085             15 years old
## 2086             16 years old
## 2087             14 years old
## 2088    18 years old or older
## 2089             16 years old
## 2090             15 years old
## 2091             17 years old
## 2092             15 years old
## 2093             16 years old
## 2094             15 years old
## 2095             16 years old
## 2096             15 years old
## 2097             15 years old
## 2098             16 years old
## 2099             16 years old
## 2100             16 years old
## 2101             15 years old
## 2102             16 years old
## 2103             16 years old
## 2104             15 years old
## 2105             15 years old
## 2106             16 years old
## 2107             16 years old
## 2108             17 years old
## 2109             15 years old
## 2110             14 years old
## 2111             16 years old
## 2112             16 years old
## 2113             15 years old
## 2114             15 years old
## 2115             17 years old
## 2116             16 years old
## 2117             16 years old
## 2118             14 years old
## 2119             16 years old
## 2120             16 years old
## 2121             15 years old
## 2122             15 years old
## 2123             15 years old
## 2124             14 years old
## 2125             15 years old
## 2126             15 years old
## 2127             16 years old
## 2128             15 years old
## 2129             16 years old
## 2130             17 years old
## 2131             14 years old
## 2132             15 years old
## 2133             16 years old
## 2134             16 years old
## 2135             15 years old
## 2136             15 years old
## 2137             17 years old
## 2138             14 years old
## 2139             17 years old
## 2140    18 years old or older
## 2141             14 years old
## 2142    18 years old or older
## 2143             15 years old
## 2144             15 years old
## 2145             17 years old
## 2146             15 years old
## 2147             15 years old
## 2148             17 years old
## 2149             15 years old
## 2150             16 years old
## 2151             14 years old
## 2152             17 years old
## 2153             14 years old
## 2154             15 years old
## 2155             15 years old
## 2156             16 years old
## 2157             16 years old
## 2158             15 years old
## 2159             15 years old
## 2160             16 years old
## 2161             15 years old
## 2162             15 years old
## 2163             15 years old
## 2164             16 years old
## 2165             16 years old
## 2166             14 years old
## 2167             15 years old
## 2168             16 years old
## 2169             16 years old
## 2170             14 years old
## 2171    18 years old or older
## 2172             14 years old
## 2173             15 years old
## 2174             15 years old
## 2175             15 years old
## 2176             15 years old
## 2177             16 years old
## 2178             17 years old
## 2179             15 years old
## 2180             14 years old
## 2181             15 years old
## 2182             14 years old
## 2183             15 years old
## 2184             17 years old
## 2185             15 years old
## 2186             14 years old
## 2187             15 years old
## 2188             15 years old
## 2189    18 years old or older
## 2190    18 years old or older
## 2191    18 years old or older
## 2192             17 years old
## 2193             17 years old
## 2194             16 years old
## 2195    18 years old or older
## 2196    18 years old or older
## 2197             17 years old
## 2198             17 years old
## 2199    18 years old or older
## 2200             16 years old
## 2201    18 years old or older
## 2202    18 years old or older
## 2203    18 years old or older
## 2204             17 years old
## 2205             16 years old
## 2206             16 years old
## 2207             16 years old
## 2208             17 years old
## 2209             17 years old
## 2210             17 years old
## 2211    18 years old or older
## 2212    18 years old or older
## 2213             17 years old
## 2214             17 years old
## 2215  12 years old or younger
## 2216             17 years old
## 2217             16 years old
## 2218             17 years old
## 2219             14 years old
## 2220             15 years old
## 2221             15 years old
## 2222             15 years old
## 2223             15 years old
## 2224             15 years old
## 2225             14 years old
## 2226             15 years old
## 2227             16 years old
## 2228             14 years old
## 2229    18 years old or older
## 2230             15 years old
## 2231             15 years old
## 2232             16 years old
## 2233             15 years old
## 2234             14 years old
## 2235             15 years old
## 2236             16 years old
## 2237             15 years old
## 2238             16 years old
## 2239             15 years old
## 2240             14 years old
## 2241             14 years old
## 2242             14 years old
## 2243             15 years old
## 2244             15 years old
## 2245             16 years old
## 2246             14 years old
## 2247             15 years old
## 2248    18 years old or older
## 2249             17 years old
## 2250             17 years old
## 2251             17 years old
## 2252             15 years old
## 2253             17 years old
## 2254             15 years old
## 2255    18 years old or older
## 2256             16 years old
## 2257             17 years old
## 2258    18 years old or older
## 2259             14 years old
## 2260    18 years old or older
## 2261             15 years old
## 2262             17 years old
## 2263             15 years old
## 2264             16 years old
## 2265             16 years old
## 2266    18 years old or older
## 2267    18 years old or older
## 2268             15 years old
## 2269             17 years old
## 2270             16 years old
## 2271             17 years old
## 2272             16 years old
## 2273             17 years old
## 2274    18 years old or older
## 2275             15 years old
## 2276             17 years old
## 2277    18 years old or older
## 2278             15 years old
## 2279    18 years old or older
## 2280             15 years old
## 2281             17 years old
## 2282             17 years old
## 2283             17 years old
## 2284             17 years old
## 2285             16 years old
## 2286             16 years old
## 2287    18 years old or older
## 2288             15 years old
## 2289             17 years old
## 2290             15 years old
## 2291             17 years old
## 2292             15 years old
## 2293             16 years old
## 2294             17 years old
## 2295             16 years old
## 2296    18 years old or older
## 2297             15 years old
## 2298             14 years old
## 2299             16 years old
## 2300             15 years old
## 2301             15 years old
## 2302             17 years old
## 2303             15 years old
## 2304             17 years old
## 2305             14 years old
## 2306             15 years old
## 2307             14 years old
## 2308             17 years old
## 2309             15 years old
## 2310             16 years old
## 2311             16 years old
## 2312             16 years old
## 2313             15 years old
## 2314             16 years old
## 2315             14 years old
## 2316             16 years old
## 2317             15 years old
## 2318             15 years old
## 2319             14 years old
## 2320             15 years old
## 2321             16 years old
## 2322             14 years old
## 2323             14 years old
## 2324             14 years old
## 2325             16 years old
## 2326             16 years old
## 2327             15 years old
## 2328             15 years old
## 2329             15 years old
## 2330             17 years old
## 2331             14 years old
## 2332             16 years old
## 2333             14 years old
## 2334             14 years old
## 2335             16 years old
## 2336             15 years old
## 2337             16 years old
## 2338             14 years old
## 2339             16 years old
## 2340             15 years old
## 2341             17 years old
## 2342             14 years old
## 2343             16 years old
## 2344             17 years old
## 2345             15 years old
## 2346             15 years old
## 2347             15 years old
## 2348             17 years old
## 2349             14 years old
## 2350             15 years old
## 2351             16 years old
## 2352             14 years old
## 2353             17 years old
## 2354             14 years old
## 2355             16 years old
## 2356             14 years old
## 2357             17 years old
## 2358             15 years old
## 2359             15 years old
## 2360             15 years old
## 2361             17 years old
## 2362             15 years old
## 2363             15 years old
## 2364             17 years old
## 2365             16 years old
## 2366             15 years old
## 2367             16 years old
## 2368             17 years old
## 2369             14 years old
## 2370             16 years old
## 2371             14 years old
## 2372             16 years old
## 2373             17 years old
## 2374             14 years old
## 2375             17 years old
## 2376             15 years old
## 2377             15 years old
## 2378             16 years old
## 2379             14 years old
## 2380             16 years old
## 2381             14 years old
## 2382             16 years old
## 2383             17 years old
## 2384             16 years old
## 2385             14 years old
## 2386             14 years old
## 2387             14 years old
## 2388             15 years old
## 2389             14 years old
## 2390             15 years old
## 2391             14 years old
## 2392             15 years old
## 2393             14 years old
## 2394             15 years old
## 2395             15 years old
## 2396             16 years old
## 2397             15 years old
## 2398             15 years old
## 2399             15 years old
## 2400             16 years old
## 2401             15 years old
## 2402             16 years old
## 2403             15 years old
## 2404             16 years old
## 2405             15 years old
## 2406             15 years old
## 2407             16 years old
## 2408             16 years old
## 2409             15 years old
## 2410             17 years old
## 2411             17 years old
## 2412             16 years old
## 2413             15 years old
## 2414             16 years old
## 2415             15 years old
## 2416             17 years old
## 2417             17 years old
## 2418             17 years old
## 2419             15 years old
## 2420             17 years old
## 2421             17 years old
## 2422             16 years old
## 2423             17 years old
## 2424    18 years old or older
## 2425             17 years old
## 2426    18 years old or older
## 2427    18 years old or older
## 2428             15 years old
## 2429             16 years old
## 2430             16 years old
## 2431             17 years old
## 2432             17 years old
## 2433             17 years old
## 2434    18 years old or older
## 2435    18 years old or older
## 2436             17 years old
## 2437    18 years old or older
## 2438    18 years old or older
## 2439             17 years old
## 2440             17 years old
## 2441             17 years old
## 2442             17 years old
## 2443    18 years old or older
## 2444             16 years old
## 2445             14 years old
## 2446             16 years old
## 2447             14 years old
## 2448             15 years old
## 2449             14 years old
## 2450             15 years old
## 2451             15 years old
## 2452             14 years old
## 2453             14 years old
## 2454             15 years old
## 2455             15 years old
## 2456             14 years old
## 2457             14 years old
## 2458             14 years old
## 2459             16 years old
## 2460             17 years old
## 2461             16 years old
## 2462             17 years old
## 2463             17 years old
## 2464             16 years old
## 2465             16 years old
## 2466             17 years old
## 2467             17 years old
## 2468    18 years old or older
## 2469             16 years old
## 2470             16 years old
## 2471             16 years old
## 2472             16 years old
## 2473             16 years old
## 2474             16 years old
## 2475             16 years old
## 2476             16 years old
## 2477             16 years old
## 2478             17 years old
## 2479             16 years old
## 2480             17 years old
## 2481             16 years old
## 2482             16 years old
## 2483    18 years old or older
## 2484             17 years old
## 2485             17 years old
## 2486    18 years old or older
## 2487    18 years old or older
## 2488             15 years old
## 2489             16 years old
## 2490             14 years old
## 2491             14 years old
## 2492             14 years old
## 2493             14 years old
## 2494             15 years old
## 2495             14 years old
## 2496             15 years old
## 2497             15 years old
## 2498             15 years old
## 2499             16 years old
## 2500             14 years old
## 2501             14 years old
## 2502             15 years old
## 2503             16 years old
## 2504             16 years old
## 2505             15 years old
## 2506             15 years old
## 2507             14 years old
## 2508             14 years old
## 2509             15 years old
## 2510             15 years old
## 2511             15 years old
## 2512             15 years old
## 2513             14 years old
## 2514             14 years old
## 2515             17 years old
## 2516             15 years old
## 2517             15 years old
## 2518             15 years old
## 2519             15 years old
## 2520             14 years old
## 2521             15 years old
## 2522             16 years old
## 2523             17 years old
## 2524    18 years old or older
## 2525             15 years old
## 2526             17 years old
## 2527             16 years old
## 2528    18 years old or older
## 2529             17 years old
## 2530             17 years old
## 2531             16 years old
## 2532             16 years old
## 2533             16 years old
## 2534             16 years old
## 2535             17 years old
## 2536             14 years old
## 2537             17 years old
## 2538             17 years old
## 2539             17 years old
## 2540             17 years old
## 2541             17 years old
## 2542             16 years old
## 2543             16 years old
## 2544             17 years old
## 2545    18 years old or older
## 2546    18 years old or older
## 2547             14 years old
## 2548             16 years old
## 2549             16 years old
## 2550    18 years old or older
## 2551             16 years old
## 2552             17 years old
## 2553             15 years old
## 2554             15 years old
## 2555             17 years old
## 2556    18 years old or older
## 2557             17 years old
## 2558             17 years old
## 2559             14 years old
## 2560             16 years old
## 2561    18 years old or older
## 2562             17 years old
## 2563             16 years old
## 2564             17 years old
## 2565             17 years old
## 2566             17 years old
## 2567    18 years old or older
## 2568             17 years old
## 2569             17 years old
## 2570             17 years old
## 2571             16 years old
## 2572             17 years old
## 2573    18 years old or older
## 2574    18 years old or older
## 2575    18 years old or older
## 2576             15 years old
## 2577             17 years old
## 2578             17 years old
## 2579             15 years old
## 2580             17 years old
## 2581    18 years old or older
## 2582    18 years old or older
## 2583             17 years old
## 2584    18 years old or older
## 2585    18 years old or older
## 2586             17 years old
## 2587    18 years old or older
## 2588    18 years old or older
## 2589             16 years old
## 2590             17 years old
## 2591    18 years old or older
## 2592    18 years old or older
## 2593             15 years old
## 2594             17 years old
## 2595             17 years old
## 2596    18 years old or older
## 2597    18 years old or older
## 2598    18 years old or older
## 2599             16 years old
## 2600             17 years old
## 2601    18 years old or older
## 2602             17 years old
## 2603             15 years old
## 2604             16 years old
## 2605             14 years old
## 2606             16 years old
## 2607    18 years old or older
## 2608             17 years old
## 2609             16 years old
## 2610    18 years old or older
## 2611             17 years old
## 2612             17 years old
## 2613    18 years old or older
## 2614             17 years old
## 2615    18 years old or older
## 2616             17 years old
## 2617             16 years old
## 2618             17 years old
## 2619             17 years old
## 2620    18 years old or older
## 2621             16 years old
## 2622    18 years old or older
## 2623             17 years old
## 2624             17 years old
## 2625             15 years old
## 2626             17 years old
## 2627             17 years old
## 2628             16 years old
## 2629             15 years old
## 2630             15 years old
## 2631             15 years old
## 2632             16 years old
## 2633             16 years old
## 2634             15 years old
## 2635             16 years old
## 2636             16 years old
## 2637             15 years old
## 2638             15 years old
## 2639             15 years old
## 2640             15 years old
## 2641             16 years old
## 2642             15 years old
## 2643             15 years old
## 2644    18 years old or older
## 2645             16 years old
## 2646             17 years old
## 2647             17 years old
## 2648    18 years old or older
## 2649             17 years old
## 2650             17 years old
## 2651    18 years old or older
## 2652    18 years old or older
## 2653             17 years old
## 2654    18 years old or older
## 2655             16 years old
## 2656             17 years old
## 2657             17 years old
## 2658    18 years old or older
## 2659             17 years old
## 2660    18 years old or older
## 2661                     <NA>
## 2662    18 years old or older
## 2663             17 years old
## 2664             14 years old
## 2665    18 years old or older
## 2666             17 years old
## 2667             17 years old
## 2668             16 years old
## 2669             15 years old
## 2670    18 years old or older
## 2671             16 years old
## 2672    18 years old or older
## 2673             16 years old
## 2674             17 years old
## 2675             16 years old
## 2676             17 years old
## 2677             17 years old
## 2678             17 years old
## 2679             16 years old
## 2680             15 years old
## 2681             17 years old
## 2682    18 years old or older
## 2683    18 years old or older
## 2684             17 years old
## 2685             17 years old
## 2686             17 years old
## 2687             17 years old
## 2688             15 years old
## 2689             14 years old
## 2690             17 years old
## 2691             14 years old
## 2692             14 years old
## 2693             17 years old
## 2694             17 years old
## 2695             16 years old
## 2696             15 years old
## 2697             17 years old
## 2698             17 years old
## 2699             17 years old
## 2700             16 years old
## 2701             14 years old
## 2702             15 years old
## 2703             14 years old
## 2704             14 years old
## 2705             14 years old
## 2706             15 years old
## 2707             14 years old
## 2708             14 years old
## 2709             15 years old
## 2710             15 years old
## 2711             15 years old
## 2712             15 years old
## 2713             16 years old
## 2714             16 years old
## 2715             15 years old
## 2716             16 years old
## 2717             17 years old
## 2718             17 years old
## 2719             17 years old
## 2720             17 years old
## 2721                     <NA>
## 2722             14 years old
## 2723             16 years old
## 2724             17 years old
## 2725             17 years old
## 2726             17 years old
## 2727    18 years old or older
## 2728    18 years old or older
## 2729             14 years old
## 2730             14 years old
## 2731             16 years old
## 2732             15 years old
## 2733             16 years old
## 2734             17 years old
## 2735             17 years old
## 2736             17 years old
## 2737             15 years old
## 2738             14 years old
## 2739             16 years old
## 2740             15 years old
## 2741             17 years old
## 2742             17 years old
## 2743    18 years old or older
## 2744             14 years old
## 2745             14 years old
## 2746             16 years old
## 2747             16 years old
## 2748             17 years old
## 2749             16 years old
## 2750             17 years old
## 2751             14 years old
## 2752             14 years old
## 2753             15 years old
## 2754             16 years old
## 2755             16 years old
## 2756             16 years old
## 2757             15 years old
## 2758             14 years old
## 2759             17 years old
## 2760             16 years old
## 2761             17 years old
## 2762             16 years old
## 2763    18 years old or older
## 2764             17 years old
## 2765             14 years old
## 2766             16 years old
## 2767             15 years old
## 2768             17 years old
## 2769             17 years old
## 2770             14 years old
## 2771             14 years old
## 2772             15 years old
## 2773             16 years old
## 2774             16 years old
## 2775             14 years old
## 2776             16 years old
## 2777             16 years old
## 2778             16 years old
## 2779             17 years old
## 2780             17 years old
## 2781    18 years old or older
## 2782             15 years old
## 2783             14 years old
## 2784             16 years old
## 2785             16 years old
## 2786             14 years old
## 2787             15 years old
## 2788             16 years old
## 2789             16 years old
## 2790             16 years old
## 2791             14 years old
## 2792             16 years old
## 2793             15 years old
## 2794             16 years old
## 2795             17 years old
## 2796             17 years old
## 2797             17 years old
## 2798             15 years old
## 2799             14 years old
## 2800             15 years old
## 2801             16 years old
## 2802             16 years old
## 2803             17 years old
## 2804    18 years old or older
## 2805             17 years old
## 2806             16 years old
## 2807             16 years old
## 2808             15 years old
## 2809             17 years old
## 2810             17 years old
## 2811    18 years old or older
## 2812             14 years old
## 2813             15 years old
## 2814             16 years old
## 2815             16 years old
## 2816             16 years old
## 2817             16 years old
## 2818             14 years old
## 2819             15 years old
## 2820             17 years old
## 2821             16 years old
## 2822             16 years old
## 2823             14 years old
## 2824             14 years old
## 2825             16 years old
## 2826             16 years old
## 2827             16 years old
## 2828    18 years old or older
## 2829             17 years old
## 2830             17 years old
## 2831             15 years old
## 2832             15 years old
## 2833             15 years old
## 2834             15 years old
## 2835    18 years old or older
## 2836             17 years old
## 2837             15 years old
## 2838             14 years old
## 2839             16 years old
## 2840             16 years old
## 2841             17 years old
## 2842             17 years old
## 2843             17 years old
## 2844    18 years old or older
## 2845             17 years old
## 2846             15 years old
## 2847             14 years old
## 2848             16 years old
## 2849             15 years old
## 2850             17 years old
## 2851             17 years old
## 2852             17 years old
## 2853    18 years old or older
## 2854             15 years old
## 2855             17 years old
## 2856             14 years old
## 2857             17 years old
## 2858             16 years old
## 2859    18 years old or older
## 2860    18 years old or older
## 2861             15 years old
## 2862             14 years old
## 2863             16 years old
## 2864    18 years old or older
## 2865             17 years old
## 2866    18 years old or older
## 2867    18 years old or older
## 2868    18 years old or older
## 2869    18 years old or older
## 2870             15 years old
## 2871             16 years old
## 2872             16 years old
## 2873             17 years old
## 2874             17 years old
## 2875             15 years old
## 2876             17 years old
## 2877             15 years old
## 2878    18 years old or older
## 2879             15 years old
## 2880    18 years old or older
## 2881             14 years old
## 2882             17 years old
## 2883             15 years old
## 2884    18 years old or older
## 2885    18 years old or older
## 2886             15 years old
## 2887    18 years old or older
## 2888             15 years old
## 2889             17 years old
## 2890             16 years old
## 2891             17 years old
## 2892             14 years old
## 2893             17 years old
## 2894             15 years old
## 2895    18 years old or older
## 2896             15 years old
## 2897             17 years old
## 2898             15 years old
## 2899    18 years old or older
## 2900             15 years old
## 2901             17 years old
## 2902             16 years old
## 2903             17 years old
## 2904             15 years old
## 2905             17 years old
## 2906             16 years old
## 2907             17 years old
## 2908             15 years old
## 2909             17 years old
## 2910             16 years old
## 2911             17 years old
## 2912             15 years old
## 2913    18 years old or older
## 2914             15 years old
## 2915             14 years old
## 2916             17 years old
## 2917             16 years old
## 2918    18 years old or older
## 2919    18 years old or older
## 2920             16 years old
## 2921             17 years old
## 2922             14 years old
## 2923             17 years old
## 2924             15 years old
## 2925             17 years old
## 2926             17 years old
## 2927             15 years old
## 2928    18 years old or older
## 2929             14 years old
## 2930    18 years old or older
## 2931             16 years old
## 2932             16 years old
## 2933    18 years old or older
## 2934             15 years old
## 2935             17 years old
## 2936             15 years old
## 2937             17 years old
## 2938             14 years old
## 2939    18 years old or older
## 2940             16 years old
## 2941    18 years old or older
## 2942             15 years old
## 2943             16 years old
## 2944             15 years old
## 2945             17 years old
## 2946             17 years old
## 2947             16 years old
## 2948    18 years old or older
## 2949             14 years old
## 2950             17 years old
## 2951             16 years old
## 2952    18 years old or older
## 2953             15 years old
## 2954    18 years old or older
## 2955             16 years old
## 2956    18 years old or older
## 2957             14 years old
## 2958             17 years old
## 2959             16 years old
## 2960             15 years old
## 2961             15 years old
## 2962             15 years old
## 2963             15 years old
## 2964             17 years old
## 2965             15 years old
## 2966             16 years old
## 2967             17 years old
## 2968             15 years old
## 2969    18 years old or older
## 2970             16 years old
## 2971             16 years old
## 2972             16 years old
## 2973             15 years old
## 2974             16 years old
## 2975             17 years old
## 2976             15 years old
## 2977             16 years old
## 2978             15 years old
## 2979             15 years old
## 2980             15 years old
## 2981             17 years old
## 2982             16 years old
## 2983             17 years old
## 2984             15 years old
## 2985             17 years old
## 2986             16 years old
## 2987             16 years old
## 2988             17 years old
## 2989             17 years old
## 2990             15 years old
## 2991    18 years old or older
## 2992             15 years old
## 2993             16 years old
## 2994             15 years old
## 2995             17 years old
## 2996             17 years old
## 2997             15 years old
## 2998             15 years old
## 2999             15 years old
## 3000             17 years old
## 3001             15 years old
## 3002             16 years old
## 3003             14 years old
## 3004             17 years old
## 3005             15 years old
## 3006             15 years old
## 3007             15 years old
## 3008             17 years old
## 3009             15 years old
## 3010             17 years old
## 3011             14 years old
## 3012             15 years old
## 3013             15 years old
## 3014             15 years old
## 3015             16 years old
## 3016             16 years old
## 3017             14 years old
## 3018             15 years old
## 3019             16 years old
## 3020             15 years old
## 3021             17 years old
## 3022             15 years old
## 3023             16 years old
## 3024             16 years old
## 3025             14 years old
## 3026             17 years old
## 3027             16 years old
## 3028             15 years old
## 3029             16 years old
## 3030             14 years old
## 3031             16 years old
## 3032             16 years old
## 3033             17 years old
## 3034             16 years old
## 3035             14 years old
## 3036             15 years old
## 3037             14 years old
## 3038    18 years old or older
## 3039             16 years old
## 3040    18 years old or older
## 3041             14 years old
## 3042    18 years old or older
## 3043             16 years old
## 3044    18 years old or older
## 3045             15 years old
## 3046             17 years old
## 3047             17 years old
## 3048             17 years old
## 3049             15 years old
## 3050    18 years old or older
## 3051             16 years old
## 3052             16 years old
## 3053             15 years old
## 3054    18 years old or older
## 3055             16 years old
## 3056             16 years old
## 3057             15 years old
## 3058             16 years old
## 3059             16 years old
## 3060             17 years old
## 3061             14 years old
## 3062             17 years old
## 3063             17 years old
## 3064             16 years old
## 3065             15 years old
## 3066    18 years old or older
## 3067             17 years old
## 3068             16 years old
## 3069             15 years old
## 3070    18 years old or older
## 3071             17 years old
## 3072             17 years old
## 3073             14 years old
## 3074    18 years old or older
## 3075             16 years old
## 3076             17 years old
## 3077             14 years old
## 3078             17 years old
## 3079             15 years old
## 3080             17 years old
## 3081             16 years old
## 3082             16 years old
## 3083             16 years old
## 3084    18 years old or older
## 3085             15 years old
## 3086             17 years old
## 3087             15 years old
## 3088             17 years old
## 3089             16 years old
## 3090             16 years old
## 3091             14 years old
## 3092             16 years old
## 3093             17 years old
## 3094             15 years old
## 3095             17 years old
## 3096             16 years old
## 3097             17 years old
## 3098             15 years old
## 3099             17 years old
## 3100             15 years old
## 3101             17 years old
## 3102             16 years old
## 3103    18 years old or older
## 3104             17 years old
## 3105             17 years old
## 3106             15 years old
## 3107             17 years old
## 3108             16 years old
## 3109             17 years old
## 3110             15 years old
## 3111             17 years old
## 3112             14 years old
## 3113             17 years old
## 3114             14 years old
## 3115    18 years old or older
## 3116             14 years old
## 3117             15 years old
## 3118             16 years old
## 3119             15 years old
## 3120             15 years old
## 3121             15 years old
## 3122    18 years old or older
## 3123             15 years old
## 3124             17 years old
## 3125             14 years old
## 3126             17 years old
## 3127             15 years old
## 3128             17 years old
## 3129             17 years old
## 3130             16 years old
## 3131             17 years old
## 3132             17 years old
## 3133             17 years old
## 3134             17 years old
## 3135    18 years old or older
## 3136             17 years old
## 3137             17 years old
## 3138    18 years old or older
## 3139             17 years old
## 3140             17 years old
## 3141             17 years old
## 3142    18 years old or older
## 3143    18 years old or older
## 3144    18 years old or older
## 3145             17 years old
## 3146             16 years old
## 3147    18 years old or older
## 3148    18 years old or older
## 3149             17 years old
## 3150    18 years old or older
## 3151    18 years old or older
## 3152             15 years old
## 3153             15 years old
## 3154    18 years old or older
## 3155             16 years old
## 3156             14 years old
## 3157             16 years old
## 3158             15 years old
## 3159             15 years old
## 3160             16 years old
## 3161             17 years old
## 3162             16 years old
## 3163             15 years old
## 3164             15 years old
## 3165    18 years old or older
## 3166             16 years old
## 3167             15 years old
## 3168             15 years old
## 3169             17 years old
## 3170             17 years old
## 3171             14 years old
## 3172    18 years old or older
## 3173    18 years old or older
## 3174             15 years old
## 3175             14 years old
## 3176             16 years old
## 3177             16 years old
## 3178             16 years old
## 3179             16 years old
## 3180             16 years old
## 3181             17 years old
## 3182             16 years old
## 3183             14 years old
## 3184  12 years old or younger
## 3185             17 years old
## 3186             14 years old
## 3187             15 years old
## 3188             17 years old
## 3189             15 years old
## 3190             15 years old
## 3191             16 years old
## 3192             17 years old
## 3193             15 years old
## 3194             14 years old
## 3195    18 years old or older
## 3196             16 years old
## 3197             15 years old
## 3198    18 years old or older
## 3199             16 years old
## 3200             14 years old
## 3201             16 years old
## 3202             16 years old
## 3203             17 years old
## 3204             14 years old
## 3205             16 years old
## 3206             16 years old
## 3207             17 years old
## 3208             14 years old
## 3209             15 years old
## 3210             14 years old
## 3211             16 years old
## 3212    18 years old or older
## 3213             16 years old
## 3214             14 years old
## 3215             15 years old
## 3216             17 years old
## 3217             15 years old
## 3218             16 years old
## 3219             16 years old
## 3220             15 years old
## 3221             16 years old
## 3222    18 years old or older
## 3223    18 years old or older
## 3224             17 years old
## 3225             14 years old
## 3226             16 years old
## 3227    18 years old or older
## 3228             16 years old
## 3229             14 years old
## 3230             15 years old
## 3231             17 years old
## 3232             16 years old
## 3233             15 years old
## 3234             15 years old
## 3235    18 years old or older
## 3236             17 years old
## 3237             15 years old
## 3238             16 years old
## 3239             17 years old
## 3240             17 years old
## 3241             15 years old
## 3242    18 years old or older
## 3243             16 years old
## 3244             15 years old
## 3245             16 years old
## 3246             17 years old
## 3247             16 years old
## 3248             14 years old
## 3249             15 years old
## 3250    18 years old or older
## 3251             17 years old
## 3252             15 years old
## 3253             17 years old
## 3254             17 years old
## 3255             15 years old
## 3256             14 years old
## 3257             16 years old
## 3258    18 years old or older
## 3259             15 years old
## 3260             15 years old
## 3261             16 years old
## 3262    18 years old or older
## 3263             15 years old
## 3264             15 years old
## 3265             15 years old
## 3266             17 years old
## 3267             15 years old
## 3268             14 years old
## 3269             15 years old
## 3270             17 years old
## 3271             15 years old
## 3272             15 years old
## 3273             15 years old
## 3274             17 years old
## 3275             14 years old
## 3276             15 years old
## 3277             16 years old
## 3278    18 years old or older
## 3279             15 years old
## 3280             15 years old
## 3281    18 years old or older
## 3282             15 years old
## 3283             15 years old
## 3284             16 years old
## 3285             17 years old
## 3286             15 years old
## 3287             16 years old
## 3288             17 years old
## 3289             15 years old
## 3290             15 years old
## 3291    18 years old or older
## 3292             14 years old
## 3293             15 years old
## 3294             15 years old
## 3295    18 years old or older
## 3296             14 years old
## 3297             15 years old
## 3298             15 years old
## 3299             17 years old
## 3300             15 years old
## 3301             14 years old
## 3302             16 years old
## 3303    18 years old or older
## 3304                     <NA>
## 3305             14 years old
## 3306             15 years old
## 3307    18 years old or older
## 3308             15 years old
## 3309             14 years old
## 3310             15 years old
## 3311             17 years old
## 3312             14 years old
## 3313             15 years old
## 3314             15 years old
## 3315    18 years old or older
## 3316             15 years old
## 3317             14 years old
## 3318             15 years old
## 3319             17 years old
## 3320             15 years old
## 3321             14 years old
## 3322             15 years old
## 3323    18 years old or older
## 3324             14 years old
## 3325             15 years old
## 3326    18 years old or older
## 3327             15 years old
## 3328             15 years old
## 3329             16 years old
## 3330             17 years old
## 3331             15 years old
## 3332             14 years old
## 3333             16 years old
## 3334    18 years old or older
## 3335             14 years old
## 3336             15 years old
## 3337             15 years old
## 3338    18 years old or older
## 3339             15 years old
## 3340    18 years old or older
## 3341             14 years old
## 3342             15 years old
## 3343             15 years old
## 3344             15 years old
## 3345             17 years old
## 3346             14 years old
## 3347             15 years old
## 3348             17 years old
## 3349                     <NA>
## 3350             15 years old
## 3351    18 years old or older
## 3352             14 years old
## 3353             15 years old
## 3354             17 years old
## 3355             15 years old
## 3356             15 years old
## 3357             17 years old
## 3358             15 years old
## 3359             15 years old
## 3360    18 years old or older
## 3361             16 years old
## 3362             16 years old
## 3363             16 years old
## 3364             17 years old
## 3365             15 years old
## 3366             16 years old
## 3367    18 years old or older
## 3368             17 years old
## 3369             15 years old
## 3370             17 years old
## 3371    18 years old or older
## 3372             17 years old
## 3373    18 years old or older
## 3374             15 years old
## 3375    18 years old or older
## 3376             16 years old
## 3377    18 years old or older
## 3378             15 years old
## 3379             17 years old
## 3380             17 years old
## 3381             16 years old
## 3382             16 years old
## 3383    18 years old or older
## 3384             16 years old
## 3385             17 years old
## 3386             17 years old
## 3387             16 years old
## 3388             17 years old
## 3389             17 years old
## 3390             17 years old
## 3391             16 years old
## 3392             16 years old
## 3393             16 years old
## 3394    18 years old or older
## 3395             16 years old
## 3396             17 years old
## 3397             16 years old
## 3398    18 years old or older
## 3399             15 years old
## 3400    18 years old or older
## 3401             16 years old
## 3402             17 years old
## 3403             17 years old
## 3404    18 years old or older
## 3405             16 years old
## 3406             17 years old
## 3407             17 years old
## 3408             16 years old
## 3409             16 years old
## 3410             16 years old
## 3411             17 years old
## 3412             17 years old
## 3413             16 years old
## 3414             16 years old
## 3415             16 years old
## 3416    18 years old or older
## 3417             16 years old
## 3418             17 years old
## 3419             16 years old
## 3420             17 years old
## 3421             16 years old
## 3422             16 years old
## 3423             16 years old
## 3424    18 years old or older
## 3425             16 years old
## 3426             16 years old
## 3427             16 years old
## 3428    18 years old or older
## 3429             16 years old
## 3430             17 years old
## 3431             16 years old
## 3432    18 years old or older
## 3433             16 years old
## 3434             16 years old
## 3435             17 years old
## 3436    18 years old or older
## 3437             15 years old
## 3438             17 years old
## 3439             17 years old
## 3440             17 years old
## 3441             17 years old
## 3442             17 years old
## 3443             17 years old
## 3444             16 years old
## 3445             17 years old
## 3446    18 years old or older
## 3447             16 years old
## 3448             16 years old
## 3449             17 years old
## 3450             16 years old
## 3451             17 years old
## 3452             17 years old
## 3453    18 years old or older
## 3454             16 years old
## 3455             16 years old
## 3456             16 years old
## 3457    18 years old or older
## 3458             16 years old
## 3459             16 years old
## 3460             17 years old
## 3461    18 years old or older
## 3462    18 years old or older
## 3463             16 years old
## 3464             17 years old
## 3465             16 years old
## 3466             15 years old
## 3467             17 years old
## 3468             14 years old
## 3469             17 years old
## 3470             17 years old
## 3471             15 years old
## 3472             14 years old
## 3473             17 years old
## 3474    18 years old or older
## 3475             17 years old
## 3476             15 years old
## 3477             15 years old
## 3478             16 years old
## 3479             15 years old
## 3480             15 years old
## 3481    18 years old or older
## 3482             14 years old
## 3483             17 years old
## 3484             17 years old
## 3485             16 years old
## 3486             15 years old
## 3487    18 years old or older
## 3488             15 years old
## 3489             17 years old
## 3490             15 years old
## 3491             17 years old
## 3492             17 years old
## 3493             15 years old
## 3494             14 years old
## 3495             16 years old
## 3496             15 years old
## 3497             16 years old
## 3498    18 years old or older
## 3499             16 years old
## 3500    18 years old or older
## 3501             17 years old
## 3502    18 years old or older
## 3503             15 years old
## 3504             15 years old
## 3505             16 years old
## 3506    18 years old or older
## 3507             16 years old
## 3508             14 years old
## 3509             17 years old
## 3510             17 years old
## 3511             15 years old
## 3512             15 years old
## 3513             16 years old
## 3514             16 years old
## 3515             15 years old
## 3516             16 years old
## 3517    18 years old or older
## 3518             16 years old
## 3519             15 years old
## 3520             17 years old
## 3521    18 years old or older
## 3522             16 years old
## 3523             14 years old
## 3524             16 years old
## 3525    18 years old or older
## 3526             16 years old
## 3527    18 years old or older
## 3528             16 years old
## 3529    18 years old or older
## 3530             16 years old
## 3531             15 years old
## 3532             17 years old
## 3533             15 years old
## 3534             15 years old
## 3535             14 years old
## 3536             15 years old
## 3537             14 years old
## 3538             14 years old
## 3539             14 years old
## 3540             14 years old
## 3541             15 years old
## 3542             14 years old
## 3543             15 years old
## 3544             15 years old
## 3545             15 years old
## 3546             15 years old
## 3547             16 years old
## 3548             14 years old
## 3549             14 years old
## 3550             15 years old
## 3551             14 years old
## 3552             15 years old
## 3553             14 years old
## 3554             14 years old
## 3555                     <NA>
## 3556             15 years old
## 3557             14 years old
## 3558             15 years old
## 3559             14 years old
## 3560             15 years old
## 3561             15 years old
## 3562             15 years old
## 3563             15 years old
## 3564             15 years old
## 3565             14 years old
## 3566             14 years old
## 3567             14 years old
## 3568             15 years old
## 3569             14 years old
## 3570             15 years old
## 3571             14 years old
## 3572             15 years old
## 3573             14 years old
## 3574             14 years old
## 3575             14 years old
## 3576             14 years old
## 3577             15 years old
## 3578             14 years old
## 3579             15 years old
## 3580             15 years old
## 3581             15 years old
## 3582             14 years old
## 3583             15 years old
## 3584             15 years old
## 3585             15 years old
## 3586             16 years old
## 3587             16 years old
## 3588             17 years old
## 3589             15 years old
## 3590             17 years old
## 3591             15 years old
## 3592    18 years old or older
## 3593             16 years old
## 3594             16 years old
## 3595             16 years old
## 3596             16 years old
## 3597             17 years old
## 3598             15 years old
## 3599             16 years old
## 3600             17 years old
## 3601             16 years old
## 3602             17 years old
## 3603             17 years old
## 3604             15 years old
## 3605             16 years old
## 3606             17 years old
## 3607             16 years old
## 3608             16 years old
## 3609             16 years old
## 3610             15 years old
## 3611             16 years old
## 3612             17 years old
## 3613             15 years old
## 3614             17 years old
## 3615             15 years old
## 3616             15 years old
## 3617             16 years old
## 3618             17 years old
## 3619             17 years old
## 3620             15 years old
## 3621             15 years old
## 3622             16 years old
## 3623    18 years old or older
## 3624             17 years old
## 3625             15 years old
## 3626             17 years old
## 3627             15 years old
## 3628             15 years old
## 3629             16 years old
## 3630             17 years old
## 3631             15 years old
## 3632             15 years old
## 3633             17 years old
## 3634             17 years old
## 3635             17 years old
## 3636             16 years old
## 3637             17 years old
## 3638             17 years old
## 3639             15 years old
## 3640             15 years old
## 3641             17 years old
## 3642             16 years old
## 3643             15 years old
## 3644             15 years old
## 3645    18 years old or older
## 3646             16 years old
## 3647             17 years old
## 3648             16 years old
## 3649             15 years old
## 3650             17 years old
## 3651    18 years old or older
## 3652             15 years old
## 3653             17 years old
## 3654             15 years old
## 3655             16 years old
## 3656             17 years old
## 3657    18 years old or older
## 3658             17 years old
## 3659             17 years old
## 3660             16 years old
## 3661             16 years old
## 3662    18 years old or older
## 3663    18 years old or older
## 3664             16 years old
## 3665             17 years old
## 3666             16 years old
## 3667             15 years old
## 3668    18 years old or older
## 3669             15 years old
## 3670             15 years old
## 3671             15 years old
## 3672             16 years old
## 3673             17 years old
## 3674    18 years old or older
## 3675             15 years old
## 3676             16 years old
## 3677             17 years old
## 3678             16 years old
## 3679             16 years old
## 3680             15 years old
## 3681             16 years old
## 3682             17 years old
## 3683             16 years old
## 3684             16 years old
## 3685             17 years old
## 3686             17 years old
## 3687             17 years old
## 3688             17 years old
## 3689             16 years old
## 3690             16 years old
## 3691             15 years old
## 3692             15 years old
## 3693             16 years old
## 3694             16 years old
## 3695             15 years old
## 3696             16 years old
## 3697             16 years old
## 3698             16 years old
## 3699    18 years old or older
## 3700             14 years old
## 3701             17 years old
## 3702    18 years old or older
## 3703             16 years old
## 3704             15 years old
## 3705             17 years old
## 3706             16 years old
## 3707             17 years old
## 3708    18 years old or older
## 3709             14 years old
## 3710             17 years old
## 3711             16 years old
## 3712             14 years old
## 3713             17 years old
## 3714    18 years old or older
## 3715             16 years old
## 3716             14 years old
## 3717             17 years old
## 3718    18 years old or older
## 3719             15 years old
## 3720    18 years old or older
## 3721             14 years old
## 3722             17 years old
## 3723    18 years old or older
## 3724             15 years old
## 3725             15 years old
## 3726             17 years old
## 3727    18 years old or older
## 3728             16 years old
## 3729             15 years old
## 3730             17 years old
## 3731             17 years old
## 3732             15 years old
## 3733             15 years old
## 3734             15 years old
## 3735             17 years old
## 3736             17 years old
## 3737             15 years old
## 3738             17 years old
## 3739             17 years old
## 3740             15 years old
## 3741             15 years old
## 3742             16 years old
## 3743             17 years old
## 3744             16 years old
## 3745             15 years old
## 3746             15 years old
## 3747             16 years old
## 3748             15 years old
## 3749             16 years old
## 3750    18 years old or older
## 3751             16 years old
## 3752             17 years old
## 3753             17 years old
## 3754             16 years old
## 3755    18 years old or older
## 3756             16 years old
## 3757             17 years old
## 3758             15 years old
## 3759             14 years old
## 3760             16 years old
## 3761    18 years old or older
## 3762             16 years old
## 3763             15 years old
## 3764             16 years old
## 3765             17 years old
## 3766             17 years old
## 3767             15 years old
## 3768             15 years old
## 3769    18 years old or older
## 3770             16 years old
## 3771             14 years old
## 3772    18 years old or older
## 3773             15 years old
## 3774             15 years old
## 3775             16 years old
## 3776             16 years old
## 3777             15 years old
## 3778             14 years old
## 3779             16 years old
## 3780    18 years old or older
## 3781             17 years old
## 3782             15 years old
## 3783    18 years old or older
## 3784             16 years old
## 3785             14 years old
## 3786             17 years old
## 3787             17 years old
## 3788             17 years old
## 3789             16 years old
## 3790    18 years old or older
## 3791             17 years old
## 3792             17 years old
## 3793             15 years old
## 3794             17 years old
## 3795             15 years old
## 3796             15 years old
## 3797             16 years old
## 3798    18 years old or older
## 3799             14 years old
## 3800             17 years old
## 3801             16 years old
## 3802    18 years old or older
## 3803             15 years old
## 3804             17 years old
## 3805             17 years old
## 3806    18 years old or older
## 3807             14 years old
## 3808             17 years old
## 3809             16 years old
## 3810             15 years old
## 3811             16 years old
## 3812             17 years old
## 3813    18 years old or older
## 3814             16 years old
## 3815             15 years old
## 3816             16 years old
## 3817    18 years old or older
## 3818             15 years old
## 3819             15 years old
## 3820    18 years old or older
## 3821             15 years old
## 3822             15 years old
## 3823             16 years old
## 3824    18 years old or older
## 3825             15 years old
## 3826    18 years old or older
## 3827    18 years old or older
## 3828             14 years old
## 3829             17 years old
## 3830             16 years old
## 3831    18 years old or older
## 3832    18 years old or older
## 3833             14 years old
## 3834             14 years old
## 3835    18 years old or older
## 3836             16 years old
## 3837             17 years old
## 3838             15 years old
## 3839             16 years old
## 3840             17 years old
## 3841             16 years old
## 3842    18 years old or older
## 3843             15 years old
## 3844             15 years old
## 3845             14 years old
## 3846             17 years old
## 3847             17 years old
## 3848    18 years old or older
## 3849             15 years old
## 3850             14 years old
## 3851             15 years old
## 3852             17 years old
## 3853             17 years old
## 3854    18 years old or older
## 3855             16 years old
## 3856             16 years old
## 3857             14 years old
## 3858             14 years old
## 3859             17 years old
## 3860             16 years old
## 3861             17 years old
## 3862             14 years old
## 3863             14 years old
## 3864             16 years old
## 3865             16 years old
## 3866             17 years old
## 3867             15 years old
## 3868             15 years old
## 3869             17 years old
## 3870             17 years old
## 3871    18 years old or older
## 3872             15 years old
## 3873                     <NA>
## 3874             15 years old
## 3875             14 years old
## 3876             17 years old
## 3877             17 years old
## 3878             17 years old
## 3879             16 years old
## 3880             14 years old
## 3881             15 years old
## 3882    18 years old or older
## 3883             16 years old
## 3884    18 years old or older
## 3885             15 years old
## 3886             15 years old
## 3887             17 years old
## 3888             17 years old
## 3889             17 years old
## 3890             15 years old
## 3891             16 years old
## 3892             14 years old
## 3893             15 years old
## 3894             17 years old
## 3895    18 years old or older
## 3896             14 years old
## 3897             15 years old
## 3898             17 years old
## 3899             17 years old
## 3900    18 years old or older
## 3901             16 years old
## 3902             15 years old
## 3903             14 years old
## 3904    18 years old or older
## 3905             17 years old
## 3906    18 years old or older
## 3907             14 years old
## 3908             15 years old
## 3909             16 years old
## 3910             16 years old
## 3911    18 years old or older
## 3912             15 years old
## 3913             14 years old
## 3914             17 years old
## 3915             17 years old
## 3916             17 years old
## 3917             16 years old
## 3918             15 years old
## 3919             15 years old
## 3920             15 years old
## 3921             17 years old
## 3922    18 years old or older
## 3923             16 years old
## 3924             16 years old
## 3925             15 years old
## 3926             14 years old
## 3927             14 years old
## 3928             17 years old
## 3929             17 years old
## 3930             15 years old
## 3931             15 years old
## 3932             14 years old
## 3933             15 years old
## 3934    18 years old or older
## 3935             16 years old
## 3936             17 years old
## 3937             14 years old
## 3938             15 years old
## 3939    18 years old or older
## 3940             17 years old
## 3941             17 years old
## 3942             15 years old
## 3943             15 years old
## 3944             14 years old
## 3945    18 years old or older
## 3946             17 years old
## 3947             17 years old
## 3948             15 years old
## 3949             15 years old
## 3950             15 years old
## 3951             14 years old
## 3952    18 years old or older
## 3953             16 years old
## 3954             16 years old
## 3955             15 years old
## 3956             14 years old
## 3957             15 years old
## 3958             17 years old
## 3959    18 years old or older
## 3960             16 years old
## 3961             16 years old
## 3962             14 years old
## 3963             15 years old
## 3964             16 years old
## 3965             15 years old
## 3966             15 years old
## 3967             15 years old
## 3968             17 years old
## 3969             16 years old
## 3970             16 years old
## 3971             15 years old
## 3972             14 years old
## 3973             14 years old
## 3974             17 years old
## 3975             17 years old
## 3976             16 years old
## 3977             16 years old
## 3978             15 years old
## 3979             15 years old
## 3980             14 years old
## 3981             17 years old
## 3982             16 years old
## 3983             16 years old
## 3984             16 years old
## 3985             14 years old
## 3986             14 years old
## 3987             17 years old
## 3988             17 years old
## 3989             15 years old
## 3990             15 years old
## 3991             14 years old
## 3992             16 years old
## 3993             15 years old
## 3994             16 years old
## 3995             17 years old
## 3996             17 years old
## 3997             17 years old
## 3998             17 years old
## 3999             16 years old
## 4000             16 years old
## 4001             15 years old
## 4002             15 years old
## 4003             17 years old
## 4004             16 years old
## 4005             16 years old
## 4006             16 years old
## 4007             15 years old
## 4008             14 years old
## 4009             17 years old
## 4010             16 years old
## 4011             15 years old
## 4012             15 years old
## 4013             16 years old
## 4014             15 years old
## 4015             16 years old
## 4016             17 years old
## 4017             17 years old
## 4018             16 years old
## 4019             17 years old
## 4020             16 years old
## 4021             15 years old
## 4022             14 years old
## 4023             16 years old
## 4024             15 years old
## 4025             16 years old
## 4026             16 years old
## 4027             16 years old
## 4028             15 years old
## 4029             15 years old
## 4030             14 years old
## 4031             15 years old
## 4032             17 years old
## 4033             16 years old
## 4034             16 years old
## 4035             15 years old
## 4036                     <NA>
## 4037             15 years old
## 4038             14 years old
## 4039             17 years old
## 4040             17 years old
## 4041             15 years old
## 4042             17 years old
## 4043             17 years old
## 4044             16 years old
## 4045             14 years old
## 4046    18 years old or older
## 4047             16 years old
## 4048             16 years old
## 4049    18 years old or older
## 4050             16 years old
## 4051             15 years old
## 4052             15 years old
## 4053    18 years old or older
## 4054             17 years old
## 4055             16 years old
## 4056    18 years old or older
## 4057             17 years old
## 4058             15 years old
## 4059             17 years old
## 4060             17 years old
## 4061             14 years old
## 4062             17 years old
## 4063             17 years old
## 4064             15 years old
## 4065    18 years old or older
## 4066             16 years old
## 4067             16 years old
## 4068             15 years old
## 4069    18 years old or older
## 4070             17 years old
## 4071             15 years old
## 4072    18 years old or older
## 4073             17 years old
## 4074             16 years old
## 4075             14 years old
## 4076    18 years old or older
## 4077             16 years old
## 4078             15 years old
## 4079             14 years old
## 4080    18 years old or older
## 4081             16 years old
## 4082             16 years old
## 4083             15 years old
## 4084    18 years old or older
## 4085             17 years old
## 4086             15 years old
## 4087             14 years old
## 4088    18 years old or older
## 4089             16 years old
## 4090             16 years old
## 4091             14 years old
## 4092             16 years old
## 4093             15 years old
## 4094             15 years old
## 4095             14 years old
## 4096             16 years old
## 4097             15 years old
## 4098             17 years old
## 4099             16 years old
## 4100             14 years old
## 4101    18 years old or older
## 4102             16 years old
## 4103             15 years old
## 4104             14 years old
## 4105    18 years old or older
## 4106             15 years old
## 4107             15 years old
## 4108    18 years old or older
## 4109             16 years old
## 4110             16 years old
## 4111    18 years old or older
## 4112             16 years old
## 4113             16 years old
## 4114             17 years old
## 4115             16 years old
## 4116             15 years old
## 4117             15 years old
## 4118             16 years old
## 4119             15 years old
## 4120    18 years old or older
## 4121             17 years old
## 4122             15 years old
## 4123    18 years old or older
## 4124             15 years old
## 4125             14 years old
## 4126             17 years old
## 4127    18 years old or older
## 4128             17 years old
## 4129             17 years old
## 4130             16 years old
## 4131             17 years old
## 4132             16 years old
## 4133             17 years old
## 4134             14 years old
## 4135             17 years old
## 4136             16 years old
## 4137             17 years old
## 4138             14 years old
## 4139             17 years old
## 4140             15 years old
## 4141             17 years old
## 4142             14 years old
## 4143             17 years old
## 4144             16 years old
## 4145             17 years old
## 4146             15 years old
## 4147             17 years old
## 4148             15 years old
## 4149             17 years old
## 4150             14 years old
## 4151             17 years old
## 4152             15 years old
## 4153             17 years old
## 4154             15 years old
## 4155             17 years old
## 4156             15 years old
## 4157    18 years old or older
## 4158             15 years old
## 4159             17 years old
## 4160             15 years old
## 4161             17 years old
## 4162             15 years old
## 4163             16 years old
## 4164             17 years old
## 4165             17 years old
## 4166             15 years old
## 4167             17 years old
## 4168             15 years old
## 4169    18 years old or older
## 4170             16 years old
## 4171             16 years old
## 4172             15 years old
## 4173             17 years old
## 4174             14 years old
## 4175             17 years old
## 4176             16 years old
## 4177             17 years old
## 4178             15 years old
## 4179             17 years old
## 4180             15 years old
## 4181             17 years old
## 4182             14 years old
## 4183             16 years old
## 4184             16 years old
## 4185             17 years old
## 4186             16 years old
## 4187             16 years old
## 4188             17 years old
## 4189             15 years old
## 4190             17 years old
## 4191             16 years old
## 4192             17 years old
## 4193             14 years old
## 4194             17 years old
## 4195             15 years old
## 4196             17 years old
## 4197             14 years old
## 4198             16 years old
## 4199    18 years old or older
## 4200             15 years old
## 4201             16 years old
## 4202             14 years old
## 4203             16 years old
## 4204             15 years old
## 4205             17 years old
## 4206             16 years old
## 4207             15 years old
## 4208             17 years old
## 4209             15 years old
## 4210             15 years old
## 4211             17 years old
## 4212             16 years old
## 4213             17 years old
## 4214             14 years old
## 4215             16 years old
## 4216             15 years old
## 4217    18 years old or older
## 4218             14 years old
## 4219             16 years old
## 4220             15 years old
## 4221             17 years old
## 4222             16 years old
## 4223             15 years old
## 4224             16 years old
## 4225             15 years old
## 4226             15 years old
## 4227             17 years old
## 4228             15 years old
## 4229             14 years old
## 4230             17 years old
## 4231             16 years old
## 4232    18 years old or older
## 4233             15 years old
## 4234             17 years old
## 4235             16 years old
## 4236             17 years old
## 4237             14 years old
## 4238             17 years old
## 4239             15 years old
## 4240    18 years old or older
## 4241             15 years old
## 4242             16 years old
## 4243             16 years old
## 4244             17 years old
## 4245             15 years old
## 4246             17 years old
## 4247             15 years old
## 4248             17 years old
## 4249             15 years old
## 4250             16 years old
## 4251             17 years old
## 4252             15 years old
## 4253             17 years old
## 4254             16 years old
## 4255             15 years old
## 4256             17 years old
## 4257             15 years old
## 4258             17 years old
## 4259             17 years old
## 4260             16 years old
## 4261    18 years old or older
## 4262             15 years old
## 4263             16 years old
## 4264             15 years old
## 4265             17 years old
## 4266             14 years old
## 4267             17 years old
## 4268             16 years old
## 4269             14 years old
## 4270             16 years old
## 4271             15 years old
## 4272    18 years old or older
## 4273             14 years old
## 4274             17 years old
## 4275             16 years old
## 4276             17 years old
## 4277             15 years old
## 4278             17 years old
## 4279             16 years old
## 4280    18 years old or older
## 4281             14 years old
## 4282             14 years old
## 4283             17 years old
## 4284             14 years old
## 4285             17 years old
## 4286             15 years old
## 4287             15 years old
## 4288             17 years old
## 4289             16 years old
## 4290             17 years old
## 4291             14 years old
## 4292             16 years old
## 4293             15 years old
## 4294    18 years old or older
## 4295             14 years old
## 4296             16 years old
## 4297             16 years old
## 4298             15 years old
## 4299             17 years old
## 4300             15 years old
## 4301             17 years old
## 4302             15 years old
## 4303             16 years old
## 4304             15 years old
## 4305             17 years old
## 4306             15 years old
## 4307             17 years old
## 4308             16 years old
## 4309    18 years old or older
## 4310             13 years old
## 4311             15 years old
## 4312    18 years old or older
## 4313             14 years old
## 4314             15 years old
## 4315             14 years old
## 4316             15 years old
## 4317             14 years old
## 4318             15 years old
## 4319             17 years old
## 4320             17 years old
## 4321             17 years old
## 4322             17 years old
## 4323    18 years old or older
## 4324             14 years old
## 4325             15 years old
## 4326             15 years old
## 4327             15 years old
## 4328             17 years old
## 4329             15 years old
## 4330             13 years old
## 4331             16 years old
## 4332             15 years old
## 4333             16 years old
## 4334             16 years old
## 4335    18 years old or older
## 4336             17 years old
## 4337             15 years old
## 4338             15 years old
## 4339             16 years old
## 4340             17 years old
## 4341             17 years old
## 4342             17 years old
## 4343    18 years old or older
## 4344             15 years old
## 4345             15 years old
## 4346             16 years old
## 4347             15 years old
## 4348             17 years old
## 4349             17 years old
## 4350             17 years old
## 4351             17 years old
## 4352             15 years old
## 4353             14 years old
## 4354             15 years old
## 4355             15 years old
## 4356             17 years old
## 4357             17 years old
## 4358    18 years old or older
## 4359             14 years old
## 4360             15 years old
## 4361             15 years old
## 4362             16 years old
## 4363             17 years old
## 4364             17 years old
## 4365             17 years old
## 4366    18 years old or older
## 4367             15 years old
## 4368             16 years old
## 4369             15 years old
## 4370             17 years old
## 4371             17 years old
## 4372             17 years old
## 4373             17 years old
## 4374             15 years old
## 4375             14 years old
## 4376             16 years old
## 4377             15 years old
## 4378             17 years old
## 4379             17 years old
## 4380             17 years old
## 4381    18 years old or older
## 4382             15 years old
## 4383             14 years old
## 4384             15 years old
## 4385             16 years old
## 4386             16 years old
## 4387             16 years old
## 4388             17 years old
## 4389    18 years old or older
## 4390             14 years old
## 4391             15 years old
## 4392             16 years old
## 4393             15 years old
## 4394             16 years old
## 4395             14 years old
## 4396             15 years old
## 4397             15 years old
## 4398                     <NA>
## 4399             17 years old
## 4400             16 years old
## 4401             17 years old
## 4402    18 years old or older
## 4403             14 years old
## 4404             15 years old
## 4405             16 years old
## 4406    18 years old or older
## 4407             16 years old
## 4408    18 years old or older
## 4409    18 years old or older
## 4410             15 years old
## 4411             14 years old
## 4412             16 years old
## 4413             15 years old
## 4414             17 years old
## 4415             16 years old
## 4416             17 years old
## 4417             17 years old
## 4418             15 years old
## 4419             15 years old
## 4420             16 years old
## 4421             16 years old
## 4422             17 years old
## 4423    18 years old or older
## 4424    18 years old or older
## 4425             15 years old
## 4426             16 years old
## 4427             14 years old
## 4428             15 years old
## 4429             16 years old
## 4430    18 years old or older
## 4431             15 years old
## 4432             15 years old
## 4433             17 years old
## 4434             17 years old
## 4435             17 years old
## 4436             15 years old
## 4437             14 years old
## 4438             17 years old
## 4439    18 years old or older
## 4440             17 years old
## 4441             14 years old
## 4442             14 years old
## 4443             16 years old
## 4444    18 years old or older
## 4445    18 years old or older
## 4446             14 years old
## 4447             14 years old
## 4448             16 years old
## 4449             17 years old
## 4450             17 years old
## 4451             15 years old
## 4452             16 years old
## 4453             17 years old
## 4454             17 years old
## 4455             14 years old
## 4456             14 years old
## 4457    18 years old or older
## 4458             17 years old
## 4459             15 years old
## 4460             14 years old
## 4461             16 years old
## 4462             15 years old
## 4463             15 years old
## 4464             16 years old
## 4465    18 years old or older
## 4466             16 years old
## 4467             17 years old
## 4468    18 years old or older
## 4469             16 years old
## 4470             15 years old
## 4471             15 years old
## 4472             15 years old
## 4473             15 years old
## 4474             16 years old
## 4475             16 years old
## 4476    18 years old or older
## 4477             17 years old
## 4478             15 years old
## 4479             14 years old
## 4480             16 years old
## 4481             15 years old
## 4482             16 years old
## 4483    18 years old or older
## 4484             17 years old
## 4485    18 years old or older
## 4486             15 years old
## 4487             15 years old
## 4488             16 years old
## 4489             16 years old
## 4490             17 years old
## 4491    18 years old or older
## 4492             15 years old
## 4493             14 years old
## 4494             16 years old
## 4495    18 years old or older
## 4496             15 years old
## 4497             16 years old
## 4498             15 years old
## 4499             17 years old
## 4500             15 years old
## 4501             17 years old
## 4502             16 years old
## 4503             16 years old
## 4504             15 years old
## 4505    18 years old or older
## 4506             15 years old
## 4507             17 years old
## 4508             15 years old
## 4509             17 years old
## 4510             15 years old
## 4511             17 years old
## 4512             16 years old
## 4513             16 years old
## 4514             14 years old
## 4515             17 years old
## 4516             16 years old
## 4517    18 years old or older
## 4518             14 years old
## 4519    18 years old or older
## 4520             17 years old
## 4521             16 years old
## 4522             15 years old
## 4523             17 years old
## 4524             15 years old
## 4525    18 years old or older
## 4526             15 years old
## 4527             15 years old
## 4528    18 years old or older
## 4529             14 years old
## 4530             17 years old
## 4531             16 years old
## 4532             17 years old
## 4533             15 years old
## 4534             15 years old
## 4535    18 years old or older
## 4536             16 years old
## 4537             15 years old
## 4538             17 years old
## 4539             16 years old
## 4540             16 years old
## 4541    18 years old or older
## 4542             15 years old
## 4543             16 years old
## 4544             14 years old
## 4545    18 years old or older
## 4546             15 years old
## 4547             16 years old
## 4548             16 years old
## 4549             15 years old
## 4550             17 years old
## 4551             15 years old
## 4552             17 years old
## 4553             17 years old
## 4554             16 years old
## 4555             15 years old
## 4556             17 years old
## 4557             16 years old
## 4558             15 years old
## 4559    18 years old or older
## 4560             15 years old
## 4561    18 years old or older
## 4562             15 years old
## 4563             16 years old
## 4564             14 years old
## 4565    18 years old or older
## 4566             15 years old
## 4567             16 years old
## 4568             14 years old
## 4569             17 years old
## 4570             15 years old
## 4571             17 years old
## 4572             15 years old
## 4573             17 years old
## 4574             15 years old
## 4575             16 years old
## 4576             15 years old
## 4577             17 years old
## 4578             17 years old
## 4579             17 years old
## 4580             14 years old
## 4581    18 years old or older
## 4582             15 years old
## 4583             16 years old
## 4584             16 years old
## 4585    18 years old or older
## 4586             15 years old
## 4587             17 years old
## 4588             15 years old
## 4589             17 years old
## 4590             16 years old
## 4591             17 years old
## 4592    18 years old or older
## 4593  12 years old or younger
## 4594             17 years old
## 4595             17 years old
## 4596             15 years old
## 4597             16 years old
## 4598             16 years old
## 4599             16 years old
## 4600             16 years old
## 4601             16 years old
## 4602             17 years old
## 4603             15 years old
## 4604             15 years old
## 4605             15 years old
## 4606             16 years old
## 4607             16 years old
## 4608             16 years old
## 4609             16 years old
## 4610             16 years old
## 4611             17 years old
## 4612             16 years old
## 4613             17 years old
## 4614             17 years old
## 4615             16 years old
## 4616             17 years old
## 4617             15 years old
## 4618             16 years old
## 4619             14 years old
## 4620             16 years old
## 4621             16 years old
## 4622    18 years old or older
## 4623             15 years old
## 4624             15 years old
## 4625             17 years old
## 4626             17 years old
## 4627             14 years old
## 4628             16 years old
## 4629             17 years old
## 4630             17 years old
## 4631             14 years old
## 4632             15 years old
## 4633             16 years old
## 4634             17 years old
## 4635             15 years old
## 4636             16 years old
## 4637             16 years old
## 4638             17 years old
## 4639             14 years old
## 4640             16 years old
## 4641             16 years old
## 4642             14 years old
## 4643             15 years old
## 4644             17 years old
## 4645             17 years old
## 4646    18 years old or older
## 4647             15 years old
## 4648             16 years old
## 4649             16 years old
## 4650             14 years old
## 4651             15 years old
## 4652             16 years old
## 4653    18 years old or older
## 4654             15 years old
## 4655             16 years old
## 4656             16 years old
## 4657             17 years old
## 4658             14 years old
## 4659             15 years old
## 4660             16 years old
## 4661             17 years old
## 4662             14 years old
## 4663             16 years old
## 4664             17 years old
## 4665    18 years old or older
## 4666             15 years old
## 4667             16 years old
## 4668             16 years old
## 4669             17 years old
## 4670             15 years old
## 4671             15 years old
## 4672             17 years old
## 4673    18 years old or older
## 4674             15 years old
## 4675             16 years old
## 4676    18 years old or older
## 4677             15 years old
## 4678             17 years old
## 4679             17 years old
## 4680             16 years old
## 4681    18 years old or older
## 4682             16 years old
## 4683    18 years old or older
## 4684             14 years old
## 4685             15 years old
## 4686             16 years old
## 4687    18 years old or older
## 4688    18 years old or older
## 4689             15 years old
## 4690    18 years old or older
## 4691             15 years old
## 4692    18 years old or older
## 4693    18 years old or older
## 4694             15 years old
## 4695             16 years old
## 4696             17 years old
## 4697    18 years old or older
## 4698             17 years old
## 4699             14 years old
## 4700             15 years old
## 4701             14 years old
## 4702             15 years old
## 4703             15 years old
## 4704    18 years old or older
## 4705    18 years old or older
## 4706             16 years old
## 4707             15 years old
## 4708             15 years old
## 4709    18 years old or older
## 4710             17 years old
## 4711             15 years old
## 4712             15 years old
## 4713    18 years old or older
## 4714    18 years old or older
## 4715             14 years old
## 4716             16 years old
## 4717    18 years old or older
## 4718             15 years old
## 4719             15 years old
## 4720             17 years old
## 4721    18 years old or older
## 4722             14 years old
## 4723             15 years old
## 4724             15 years old
## 4725             17 years old
## 4726             17 years old
## 4727             17 years old
## 4728             15 years old
## 4729             16 years old
## 4730    18 years old or older
## 4731             14 years old
## 4732             15 years old
## 4733             16 years old
## 4734             15 years old
## 4735             16 years old
## 4736             15 years old
## 4737             15 years old
## 4738    18 years old or older
## 4739             15 years old
## 4740             15 years old
## 4741    18 years old or older
## 4742    18 years old or older
## 4743             15 years old
## 4744             14 years old
## 4745             14 years old
## 4746             14 years old
## 4747             16 years old
## 4748    18 years old or older
## 4749             17 years old
## 4750             15 years old
## 4751             15 years old
## 4752             15 years old
## 4753             15 years old
## 4754    18 years old or older
## 4755    18 years old or older
## 4756             15 years old
## 4757             14 years old
## 4758    18 years old or older
## 4759    18 years old or older
## 4760             15 years old
## 4761    18 years old or older
## 4762             15 years old
## 4763             15 years old
## 4764             16 years old
## 4765    18 years old or older
## 4766             17 years old
## 4767             16 years old
## 4768             15 years old
## 4769             15 years old
## 4770    18 years old or older
## 4771             15 years old
## 4772             15 years old
## 4773             16 years old
## 4774             17 years old
## 4775             17 years old
## 4776             16 years old
## 4777             16 years old
## 4778             16 years old
## 4779             15 years old
## 4780             16 years old
## 4781    18 years old or older
## 4782    18 years old or older
## 4783             15 years old
## 4784             16 years old
## 4785             16 years old
## 4786             16 years old
## 4787             15 years old
## 4788             17 years old
## 4789             17 years old
## 4790             16 years old
## 4791             17 years old
## 4792             15 years old
## 4793             17 years old
## 4794             17 years old
## 4795             16 years old
## 4796             15 years old
## 4797             17 years old
## 4798             16 years old
## 4799             16 years old
## 4800             16 years old
## 4801             17 years old
## 4802             16 years old
## 4803             15 years old
## 4804             16 years old
## 4805    18 years old or older
## 4806             15 years old
## 4807             16 years old
## 4808             17 years old
## 4809             17 years old
## 4810             16 years old
## 4811             16 years old
## 4812             16 years old
## 4813             17 years old
## 4814             15 years old
## 4815             16 years old
## 4816             17 years old
## 4817             17 years old
## 4818             15 years old
## 4819             16 years old
## 4820             17 years old
## 4821             17 years old
## 4822             15 years old
## 4823             14 years old
## 4824             15 years old
## 4825             17 years old
## 4826    18 years old or older
## 4827             16 years old
## 4828             16 years old
## 4829             17 years old
## 4830             15 years old
## 4831             16 years old
## 4832             17 years old
## 4833    18 years old or older
## 4834    18 years old or older
## 4835    18 years old or older
## 4836    18 years old or older
## 4837    18 years old or older
## 4838             15 years old
## 4839             17 years old
## 4840             17 years old
## 4841             15 years old
## 4842             15 years old
## 4843             17 years old
## 4844             17 years old
## 4845             16 years old
## 4846             15 years old
## 4847             15 years old
## 4848             16 years old
## 4849             16 years old
## 4850             15 years old
## 4851             16 years old
## 4852             17 years old
## 4853             15 years old
## 4854             14 years old
## 4855    18 years old or older
## 4856    18 years old or older
## 4857             15 years old
## 4858             16 years old
## 4859             16 years old
## 4860             16 years old
## 4861             16 years old
## 4862             15 years old
## 4863             16 years old
## 4864             14 years old
## 4865             15 years old
## 4866    18 years old or older
## 4867    18 years old or older
## 4868    18 years old or older
## 4869             15 years old
## 4870             16 years old
## 4871             14 years old
## 4872             15 years old
## 4873             17 years old
## 4874             16 years old
## 4875             15 years old
## 4876    18 years old or older
## 4877             15 years old
## 4878    18 years old or older
## 4879             15 years old
## 4880             17 years old
## 4881             16 years old
## 4882             15 years old
## 4883             17 years old
## 4884             14 years old
## 4885             15 years old
## 4886             16 years old
## 4887             17 years old
## 4888             15 years old
## 4889             14 years old
## 4890             15 years old
## 4891             14 years old
## 4892             16 years old
## 4893             15 years old
## 4894             17 years old
## 4895             15 years old
## 4896             17 years old
## 4897             16 years old
## 4898             17 years old
## 4899             16 years old
## 4900             16 years old
## 4901             17 years old
## 4902             15 years old
## 4903             17 years old
## 4904             15 years old
## 4905             16 years old
## 4906             17 years old
## 4907             16 years old
## 4908             17 years old
## 4909             17 years old
## 4910             16 years old
## 4911             17 years old
## 4912             17 years old
## 4913             16 years old
## 4914             15 years old
## 4915             17 years old
## 4916             15 years old
## 4917             15 years old
## 4918             15 years old
## 4919             17 years old
## 4920             15 years old
## 4921             15 years old
## 4922             17 years old
## 4923             15 years old
## 4924             17 years old
## 4925             17 years old
## 4926             16 years old
## 4927             17 years old
## 4928             16 years old
## 4929             16 years old
## 4930             16 years old
## 4931             15 years old
## 4932             16 years old
## 4933             17 years old
## 4934             17 years old
## 4935             14 years old
## 4936             15 years old
## 4937             17 years old
## 4938             15 years old
## 4939             16 years old
## 4940             14 years old
## 4941             16 years old
## 4942    18 years old or older
## 4943             15 years old
## 4944             17 years old
## 4945             15 years old
## 4946    18 years old or older
## 4947             17 years old
## 4948             16 years old
## 4949             17 years old
## 4950             16 years old
## 4951    18 years old or older
## 4952             16 years old
## 4953             16 years old
## 4954             17 years old
## 4955             16 years old
## 4956             16 years old
## 4957             17 years old
## 4958    18 years old or older
## 4959    18 years old or older
## 4960    18 years old or older
## 4961             17 years old
## 4962             17 years old
## 4963             17 years old
## 4964             17 years old
## 4965             17 years old
## 4966             17 years old
## 4967    18 years old or older
## 4968             17 years old
## 4969             17 years old
## 4970    18 years old or older
## 4971             17 years old
## 4972    18 years old or older
## 4973             17 years old
## 4974    18 years old or older
## 4975             17 years old
## 4976             17 years old
## 4977             15 years old
## 4978             15 years old
## 4979             16 years old
## 4980             16 years old
## 4981             17 years old
## 4982             17 years old
## 4983             14 years old
## 4984             17 years old
## 4985             17 years old
## 4986             16 years old
## 4987             16 years old
## 4988             15 years old
## 4989             16 years old
## 4990             15 years old
## 4991             14 years old
## 4992             15 years old
## 4993             14 years old
## 4994             15 years old
## 4995             15 years old
## 4996             14 years old
## 4997             16 years old
## 4998             16 years old
## 4999             16 years old
## 5000             16 years old
## 5001             17 years old
## 5002             14 years old
## 5003             16 years old
## 5004             16 years old
## 5005             15 years old
## 5006             16 years old
## 5007             14 years old
## 5008             16 years old
## 5009             16 years old
## 5010             15 years old
## 5011             16 years old
## 5012             17 years old
## 5013             15 years old
## 5014             16 years old
## 5015             15 years old
## 5016             17 years old
## 5017             14 years old
## 5018             15 years old
## 5019             14 years old
## 5020             16 years old
## 5021             17 years old
## 5022             17 years old
## 5023             17 years old
## 5024             16 years old
## 5025             15 years old
## 5026             14 years old
## 5027             16 years old
## 5028             16 years old
## 5029             16 years old
## 5030             16 years old
## 5031             16 years old
## 5032             16 years old
## 5033             15 years old
## 5034             15 years old
## 5035             17 years old
## 5036             16 years old
## 5037             14 years old
## 5038             16 years old
## 5039             15 years old
## 5040             16 years old
## 5041             15 years old
## 5042             14 years old
## 5043             17 years old
## 5044             14 years old
## 5045             16 years old
## 5046    18 years old or older
## 5047             16 years old
## 5048    18 years old or older
## 5049    18 years old or older
## 5050             17 years old
## 5051             17 years old
## 5052    18 years old or older
## 5053             17 years old
## 5054    18 years old or older
## 5055    18 years old or older
## 5056    18 years old or older
## 5057             17 years old
## 5058             17 years old
## 5059             17 years old
## 5060             16 years old
## 5061    18 years old or older
## 5062             16 years old
## 5063             16 years old
## 5064             16 years old
## 5065    18 years old or older
## 5066             17 years old
## 5067             17 years old
## 5068    18 years old or older
## 5069    18 years old or older
## 5070             16 years old
## 5071    18 years old or older
## 5072             17 years old
## 5073    18 years old or older
## 5074    18 years old or older
## 5075             17 years old
## 5076             17 years old
## 5077    18 years old or older
## 5078    18 years old or older
## 5079             17 years old
## 5080             17 years old
## 5081    18 years old or older
## 5082             17 years old
## 5083             17 years old
## 5084    18 years old or older
## 5085    18 years old or older
## 5086             16 years old
## 5087             17 years old
## 5088    18 years old or older
## 5089    18 years old or older
## 5090             16 years old
## 5091             16 years old
## 5092    18 years old or older
## 5093             16 years old
## 5094             16 years old
## 5095    18 years old or older
## 5096             17 years old
## 5097             16 years old
## 5098    18 years old or older
## 5099             17 years old
## 5100             17 years old
## 5101             17 years old
## 5102             16 years old
## 5103             17 years old
## 5104             17 years old
## 5105             17 years old
## 5106             17 years old
## 5107             16 years old
## 5108             17 years old
## 5109             16 years old
## 5110             16 years old
## 5111             16 years old
## 5112             15 years old
## 5113             15 years old
## 5114             16 years old
## 5115             15 years old
## 5116             15 years old
## 5117             16 years old
## 5118             16 years old
## 5119             15 years old
## 5120             15 years old
## 5121             15 years old
## 5122             15 years old
## 5123             15 years old
## 5124             15 years old
## 5125             16 years old
## 5126             15 years old
## 5127             15 years old
## 5128             16 years old
## 5129             17 years old
## 5130             15 years old
## 5131             16 years old
## 5132             17 years old
## 5133             17 years old
## 5134             16 years old
## 5135             16 years old
## 5136             16 years old
## 5137             16 years old
## 5138             16 years old
## 5139             15 years old
## 5140             15 years old
## 5141             16 years old
## 5142             15 years old
## 5143             16 years old
## 5144             16 years old
## 5145             15 years old
## 5146             15 years old
## 5147             16 years old
## 5148             16 years old
## 5149             16 years old
## 5150             15 years old
## 5151             16 years old
## 5152             16 years old
## 5153             16 years old
## 5154             16 years old
## 5155             16 years old
## 5156             16 years old
## 5157             16 years old
## 5158             16 years old
## 5159             16 years old
## 5160             15 years old
## 5161             17 years old
## 5162             16 years old
## 5163    18 years old or older
## 5164             16 years old
## 5165             16 years old
## 5166             17 years old
## 5167             16 years old
## 5168             15 years old
## 5169             15 years old
## 5170             17 years old
## 5171             17 years old
## 5172             16 years old
## 5173             15 years old
## 5174             16 years old
## 5175             16 years old
## 5176             16 years old
## 5177             15 years old
## 5178             16 years old
## 5179             16 years old
## 5180             16 years old
## 5181             16 years old
## 5182             16 years old
## 5183             15 years old
## 5184             17 years old
## 5185             16 years old
## 5186             15 years old
## 5187             16 years old
## 5188             16 years old
## 5189             17 years old
## 5190             16 years old
## 5191             16 years old
## 5192             17 years old
## 5193             17 years old
## 5194             16 years old
## 5195             14 years old
## 5196             14 years old
## 5197             15 years old
## 5198             17 years old
## 5199             17 years old
## 5200             14 years old
## 5201    18 years old or older
## 5202             17 years old
## 5203             15 years old
## 5204             15 years old
## 5205    18 years old or older
## 5206             14 years old
## 5207             15 years old
## 5208             17 years old
## 5209    18 years old or older
## 5210             14 years old
## 5211             15 years old
## 5212             17 years old
## 5213    18 years old or older
## 5214             15 years old
## 5215             15 years old
## 5216             14 years old
## 5217             14 years old
## 5218             16 years old
## 5219    18 years old or older
## 5220             17 years old
## 5221             15 years old
## 5222             14 years old
## 5223    18 years old or older
## 5224             15 years old
## 5225             17 years old
## 5226    18 years old or older
## 5227             14 years old
## 5228             14 years old
## 5229             17 years old
## 5230             15 years old
## 5231             17 years old
## 5232             14 years old
## 5233    18 years old or older
## 5234    18 years old or older
## 5235    18 years old or older
## 5236             14 years old
## 5237             14 years old
## 5238    18 years old or older
## 5239             15 years old
## 5240             17 years old
## 5241             14 years old
## 5242    18 years old or older
## 5243             17 years old
## 5244             17 years old
## 5245             15 years old
## 5246             17 years old
## 5247    18 years old or older
## 5248             17 years old
## 5249             14 years old
## 5250    18 years old or older
## 5251    18 years old or older
## 5252             17 years old
## 5253             16 years old
## 5254             16 years old
## 5255             16 years old
## 5256             16 years old
## 5257             15 years old
## 5258    18 years old or older
## 5259    18 years old or older
## 5260             14 years old
## 5261             17 years old
## 5262             15 years old
## 5263             17 years old
## 5264    18 years old or older
## 5265             15 years old
## 5266             17 years old
## 5267             17 years old
## 5268             16 years old
## 5269             14 years old
## 5270    18 years old or older
## 5271             17 years old
## 5272    18 years old or older
## 5273             16 years old
## 5274             15 years old
## 5275             14 years old
## 5276             15 years old
## 5277             15 years old
## 5278             14 years old
## 5279             15 years old
## 5280             16 years old
## 5281             14 years old
## 5282             14 years old
## 5283             15 years old
## 5284             16 years old
## 5285             16 years old
## 5286             15 years old
## 5287             16 years old
## 5288             16 years old
## 5289             14 years old
## 5290             15 years old
## 5291             15 years old
## 5292             15 years old
## 5293             15 years old
## 5294             15 years old
## 5295             17 years old
## 5296             16 years old
## 5297             14 years old
## 5298             15 years old
## 5299             14 years old
## 5300             14 years old
## 5301             16 years old
## 5302             14 years old
## 5303             15 years old
## 5304             15 years old
## 5305             16 years old
## 5306             15 years old
## 5307             15 years old
## 5308             15 years old
## 5309             14 years old
## 5310             15 years old
## 5311             16 years old
## 5312             15 years old
## 5313             14 years old
## 5314             15 years old
## 5315             16 years old
## 5316             15 years old
## 5317             16 years old
## 5318             15 years old
## 5319             14 years old
## 5320             15 years old
## 5321             14 years old
## 5322             15 years old
## 5323             16 years old
## 5324             15 years old
## 5325             15 years old
## 5326             14 years old
## 5327             15 years old
## 5328             15 years old
## 5329             15 years old
## 5330             15 years old
## 5331             15 years old
## 5332             16 years old
## 5333             14 years old
## 5334             16 years old
## 5335             15 years old
## 5336             15 years old
## 5337             14 years old
## 5338             15 years old
## 5339             14 years old
## 5340                     <NA>
## 5341             15 years old
## 5342             16 years old
## 5343             14 years old
## 5344             16 years old
## 5345             16 years old
## 5346             15 years old
## 5347             17 years old
## 5348             17 years old
## 5349             16 years old
## 5350             16 years old
## 5351             17 years old
## 5352             17 years old
## 5353             16 years old
## 5354    18 years old or older
## 5355             17 years old
## 5356             17 years old
## 5357             16 years old
## 5358    18 years old or older
## 5359             17 years old
## 5360             17 years old
## 5361             17 years old
## 5362             16 years old
## 5363    18 years old or older
## 5364             17 years old
## 5365             17 years old
## 5366             17 years old
## 5367             17 years old
## 5368             17 years old
## 5369             17 years old
## 5370             16 years old
## 5371             16 years old
## 5372             17 years old
## 5373    18 years old or older
## 5374    18 years old or older
## 5375    18 years old or older
## 5376             17 years old
## 5377             17 years old
## 5378    18 years old or older
## 5379    18 years old or older
## 5380             16 years old
## 5381             17 years old
## 5382             17 years old
## 5383             17 years old
## 5384    18 years old or older
## 5385             17 years old
## 5386             16 years old
## 5387             17 years old
## 5388    18 years old or older
## 5389             17 years old
## 5390    18 years old or older
## 5391             17 years old
## 5392    18 years old or older
## 5393             17 years old
## 5394             17 years old
## 5395             17 years old
## 5396    18 years old or older
## 5397                     <NA>
## 5398    18 years old or older
## 5399             17 years old
## 5400             16 years old
## 5401    18 years old or older
## 5402             17 years old
## 5403             17 years old
## 5404    18 years old or older
## 5405    18 years old or older
## 5406    18 years old or older
## 5407             17 years old
## 5408    18 years old or older
## 5409             17 years old
## 5410             17 years old
## 5411             16 years old
## 5412             17 years old
## 5413             17 years old
## 5414    18 years old or older
## 5415             17 years old
## 5416             17 years old
## 5417             17 years old
## 5418    18 years old or older
## 5419             17 years old
## 5420             16 years old
## 5421             17 years old
## 5422    18 years old or older
## 5423    18 years old or older
## 5424    18 years old or older
## 5425             16 years old
## 5426             15 years old
## 5427             16 years old
## 5428             14 years old
## 5429             15 years old
## 5430             17 years old
## 5431             15 years old
## 5432             16 years old
## 5433             15 years old
## 5434             17 years old
## 5435             14 years old
## 5436             17 years old
## 5437             14 years old
## 5438             16 years old
## 5439             16 years old
## 5440             16 years old
## 5441             14 years old
## 5442             14 years old
## 5443             17 years old
## 5444             14 years old
## 5445             17 years old
## 5446             16 years old
## 5447             14 years old
## 5448             15 years old
## 5449             14 years old
## 5450             17 years old
## 5451             14 years old
## 5452             16 years old
## 5453             15 years old
## 5454             17 years old
## 5455             15 years old
## 5456             16 years old
## 5457             15 years old
## 5458             17 years old
## 5459             15 years old
## 5460             14 years old
## 5461             16 years old
## 5462             15 years old
## 5463             16 years old
## 5464             14 years old
## 5465             17 years old
## 5466             15 years old
## 5467             14 years old
## 5468             17 years old
## 5469             15 years old
## 5470             17 years old
## 5471             14 years old
## 5472             17 years old
## 5473             14 years old
## 5474             17 years old
## 5475             16 years old
## 5476             15 years old
## 5477             16 years old
## 5478             15 years old
## 5479             16 years old
## 5480             14 years old
## 5481             16 years old
## 5482             14 years old
## 5483             17 years old
## 5484             16 years old
## 5485             14 years old
## 5486             16 years old
## 5487             14 years old
## 5488             17 years old
## 5489             15 years old
## 5490             14 years old
## 5491    18 years old or older
## 5492             14 years old
## 5493             15 years old
## 5494             16 years old
## 5495             15 years old
## 5496    18 years old or older
## 5497             17 years old
## 5498             16 years old
## 5499             16 years old
## 5500    18 years old or older
## 5501             17 years old
## 5502             16 years old
## 5503             16 years old
## 5504             17 years old
## 5505             17 years old
## 5506             15 years old
## 5507             16 years old
## 5508             16 years old
## 5509    18 years old or older
## 5510             15 years old
## 5511             15 years old
## 5512             17 years old
## 5513    18 years old or older
## 5514             15 years old
## 5515             16 years old
## 5516             17 years old
## 5517             17 years old
## 5518             15 years old
## 5519             16 years old
## 5520    18 years old or older
## 5521             15 years old
## 5522             17 years old
## 5523             16 years old
## 5524             17 years old
## 5525             17 years old
## 5526             15 years old
## 5527             15 years old
## 5528             17 years old
## 5529             16 years old
## 5530             16 years old
## 5531             17 years old
## 5532             16 years old
## 5533             16 years old
## 5534             17 years old
## 5535             15 years old
## 5536    18 years old or older
## 5537             17 years old
## 5538             15 years old
## 5539             17 years old
## 5540             16 years old
## 5541             16 years old
## 5542             17 years old
## 5543             15 years old
## 5544    18 years old or older
## 5545             15 years old
## 5546             15 years old
## 5547    18 years old or older
## 5548             16 years old
## 5549             17 years old
## 5550             17 years old
## 5551             15 years old
## 5552             17 years old
## 5553             15 years old
## 5554             15 years old
## 5555             17 years old
## 5556             17 years old
## 5557             14 years old
## 5558             16 years old
## 5559             17 years old
## 5560             15 years old
## 5561             14 years old
## 5562             15 years old
## 5563             17 years old
## 5564             16 years old
## 5565             15 years old
## 5566             17 years old
## 5567             15 years old
## 5568             14 years old
## 5569             16 years old
## 5570             15 years old
## 5571             16 years old
## 5572             15 years old
## 5573             16 years old
## 5574             14 years old
## 5575             15 years old
## 5576             15 years old
## 5577             15 years old
## 5578             15 years old
## 5579             15 years old
## 5580             14 years old
## 5581             15 years old
## 5582    18 years old or older
## 5583             15 years old
## 5584             16 years old
## 5585             17 years old
## 5586             14 years old
## 5587             15 years old
## 5588             17 years old
## 5589             17 years old
## 5590    18 years old or older
## 5591             15 years old
## 5592             15 years old
## 5593             16 years old
## 5594             17 years old
## 5595    18 years old or older
## 5596             14 years old
## 5597             16 years old
## 5598             17 years old
## 5599             17 years old
## 5600             15 years old
## 5601             15 years old
## 5602             15 years old
## 5603             15 years old
## 5604             16 years old
## 5605             16 years old
## 5606    18 years old or older
## 5607             15 years old
## 5608             16 years old
## 5609             16 years old
## 5610    18 years old or older
## 5611             15 years old
## 5612             15 years old
## 5613             16 years old
## 5614             17 years old
## 5615             14 years old
## 5616             15 years old
## 5617             15 years old
## 5618             15 years old
## 5619             16 years old
## 5620             17 years old
## 5621             17 years old
## 5622             15 years old
## 5623             15 years old
## 5624             17 years old
## 5625             17 years old
## 5626             15 years old
## 5627             16 years old
## 5628             16 years old
## 5629    18 years old or older
## 5630             15 years old
## 5631             16 years old
## 5632             17 years old
## 5633             17 years old
## 5634             15 years old
## 5635             14 years old
## 5636             16 years old
## 5637             17 years old
## 5638             15 years old
## 5639             15 years old
## 5640             16 years old
## 5641             15 years old
## 5642             15 years old
## 5643             17 years old
## 5644             17 years old
## 5645             15 years old
## 5646             15 years old
## 5647             17 years old
## 5648    18 years old or older
## 5649             15 years old
## 5650             15 years old
## 5651             16 years old
## 5652             17 years old
## 5653             16 years old
## 5654             17 years old
## 5655    18 years old or older
## 5656             15 years old
## 5657             15 years old
## 5658             16 years old
## 5659             17 years old
## 5660             15 years old
## 5661             15 years old
## 5662             17 years old
## 5663    18 years old or older
## 5664             15 years old
## 5665             16 years old
## 5666             17 years old
## 5667    18 years old or older
## 5668             15 years old
## 5669             14 years old
## 5670             15 years old
## 5671             16 years old
## 5672             15 years old
## 5673             16 years old
## 5674             14 years old
## 5675             15 years old
## 5676             15 years old
## 5677             15 years old
## 5678             16 years old
## 5679             15 years old
## 5680             15 years old
## 5681    18 years old or older
## 5682    18 years old or older
## 5683    18 years old or older
## 5684             16 years old
## 5685             17 years old
## 5686    18 years old or older
## 5687             16 years old
## 5688             17 years old
## 5689    18 years old or older
## 5690             16 years old
## 5691             17 years old
## 5692    18 years old or older
## 5693             16 years old
## 5694    18 years old or older
## 5695             16 years old
## 5696             17 years old
## 5697             17 years old
## 5698             17 years old
## 5699    18 years old or older
## 5700    18 years old or older
## 5701             16 years old
## 5702             17 years old
## 5703             17 years old
## 5704             15 years old
## 5705    18 years old or older
## 5706             15 years old
## 5707             17 years old
## 5708    18 years old or older
## 5709             16 years old
## 5710             17 years old
## 5711    18 years old or older
## 5712             16 years old
## 5713             17 years old
## 5714             17 years old
## 5715             16 years old
## 5716             17 years old
## 5717             16 years old
## 5718    18 years old or older
## 5719             14 years old
## 5720             16 years old
## 5721             16 years old
## 5722    18 years old or older
## 5723             15 years old
## 5724             16 years old
## 5725             16 years old
## 5726    18 years old or older
## 5727             15 years old
## 5728             16 years old
## 5729             15 years old
## 5730    18 years old or older
## 5731             15 years old
## 5732             17 years old
## 5733             15 years old
## 5734             17 years old
## 5735             15 years old
## 5736             16 years old
## 5737             16 years old
## 5738             16 years old
## 5739    18 years old or older
## 5740             14 years old
## 5741    18 years old or older
## 5742             15 years old
## 5743             15 years old
## 5744    18 years old or older
## 5745             15 years old
## 5746             16 years old
## 5747             15 years old
## 5748             17 years old
## 5749             15 years old
## 5750             17 years old
## 5751             16 years old
## 5752    18 years old or older
## 5753             17 years old
## 5754             17 years old
## 5755             17 years old
## 5756             17 years old
## 5757             16 years old
## 5758             17 years old
## 5759             15 years old
## 5760             16 years old
## 5761             16 years old
## 5762             14 years old
## 5763             17 years old
## 5764             15 years old
## 5765             14 years old
## 5766             16 years old
## 5767             17 years old
## 5768             17 years old
## 5769  12 years old or younger
## 5770             15 years old
## 5771             17 years old
## 5772             16 years old
## 5773             16 years old
## 5774    18 years old or older
## 5775             17 years old
## 5776             17 years old
## 5777             14 years old
## 5778             16 years old
## 5779             14 years old
## 5780             15 years old
## 5781             17 years old
## 5782             17 years old
## 5783             17 years old
## 5784             17 years old
## 5785             14 years old
## 5786    18 years old or older
## 5787             15 years old
## 5788             15 years old
## 5789             17 years old
## 5790    18 years old or older
## 5791    18 years old or older
## 5792             16 years old
## 5793             15 years old
## 5794             16 years old
## 5795             15 years old
## 5796             15 years old
## 5797             17 years old
## 5798             16 years old
## 5799             14 years old
## 5800             15 years old
## 5801             16 years old
## 5802    18 years old or older
## 5803    18 years old or older
## 5804             16 years old
## 5805             17 years old
## 5806             15 years old
## 5807             16 years old
## 5808             14 years old
## 5809             15 years old
## 5810             17 years old
## 5811             17 years old
## 5812             16 years old
## 5813             15 years old
## 5814             17 years old
## 5815             15 years old
## 5816             15 years old
## 5817             17 years old
## 5818    18 years old or older
## 5819             16 years old
## 5820             14 years old
## 5821             17 years old
## 5822             14 years old
## 5823             15 years old
## 5824    18 years old or older
## 5825    18 years old or older
## 5826             15 years old
## 5827             14 years old
## 5828             15 years old
## 5829             17 years old
## 5830    18 years old or older
## 5831             16 years old
## 5832             17 years old
## 5833             14 years old
## 5834             16 years old
## 5835             15 years old
## 5836             15 years old
## 5837             17 years old
## 5838             17 years old
## 5839             16 years old
## 5840             14 years old
## 5841             16 years old
## 5842             15 years old
## 5843             16 years old
## 5844             17 years old
## 5845    18 years old or older
## 5846             17 years old
## 5847             15 years old
## 5848             16 years old
## 5849             14 years old
## 5850             16 years old
## 5851    18 years old or older
## 5852    18 years old or older
## 5853             15 years old
## 5854             15 years old
## 5855             15 years old
## 5856             16 years old
## 5857             14 years old
## 5858             17 years old
## 5859             15 years old
## 5860             15 years old
## 5861             17 years old
## 5862             16 years old
## 5863             14 years old
## 5864    18 years old or older
## 5865             16 years old
## 5866             15 years old
## 5867             15 years old
## 5868             15 years old
## 5869    18 years old or older
## 5870             17 years old
## 5871             17 years old
## 5872             15 years old
## 5873             15 years old
## 5874             16 years old
## 5875             17 years old
## 5876    18 years old or older
## 5877             17 years old
## 5878             15 years old
## 5879             16 years old
## 5880             14 years old
## 5881             17 years old
## 5882    18 years old or older
## 5883             15 years old
## 5884             16 years old
## 5885             16 years old
## 5886             14 years old
## 5887             16 years old
## 5888             17 years old
## 5889             14 years old
## 5890             16 years old
## 5891             15 years old
## 5892             15 years old
## 5893             14 years old
## 5894             16 years old
## 5895             15 years old
## 5896             14 years old
## 5897             16 years old
## 5898    18 years old or older
## 5899             17 years old
## 5900             17 years old
## 5901             16 years old
## 5902             17 years old
## 5903    18 years old or older
## 5904             16 years old
## 5905             17 years old
## 5906             17 years old
## 5907             17 years old
## 5908             16 years old
## 5909             16 years old
## 5910             16 years old
## 5911             16 years old
## 5912             15 years old
## 5913             17 years old
## 5914             16 years old
## 5915             16 years old
## 5916             14 years old
## 5917             17 years old
## 5918             17 years old
## 5919             17 years old
## 5920             16 years old
## 5921             16 years old
## 5922             17 years old
## 5923             16 years old
## 5924             16 years old
## 5925             16 years old
## 5926             16 years old
## 5927             16 years old
## 5928             17 years old
## 5929             17 years old
## 5930             17 years old
## 5931             17 years old
## 5932             16 years old
## 5933             16 years old
## 5934    18 years old or older
## 5935             17 years old
## 5936    18 years old or older
## 5937             17 years old
## 5938             16 years old
## 5939             15 years old
## 5940             16 years old
## 5941             17 years old
## 5942    18 years old or older
## 5943             17 years old
## 5944             15 years old
## 5945             17 years old
## 5946             15 years old
## 5947             15 years old
## 5948             15 years old
## 5949             15 years old
## 5950             14 years old
## 5951             15 years old
## 5952             14 years old
## 5953             15 years old
## 5954             15 years old
## 5955             14 years old
## 5956             14 years old
## 5957             15 years old
## 5958             15 years old
## 5959             15 years old
## 5960             14 years old
## 5961             15 years old
## 5962             15 years old
## 5963             15 years old
## 5964             14 years old
## 5965             15 years old
## 5966             15 years old
## 5967             17 years old
## 5968             17 years old
## 5969             15 years old
## 5970    18 years old or older
## 5971             17 years old
## 5972             17 years old
## 5973             17 years old
## 5974             17 years old
## 5975             17 years old
## 5976             17 years old
## 5977             16 years old
## 5978    18 years old or older
## 5979             16 years old
## 5980             16 years old
## 5981             16 years old
## 5982             15 years old
## 5983             16 years old
## 5984             16 years old
## 5985             17 years old
## 5986             17 years old
## 5987             17 years old
## 5988             17 years old
## 5989    18 years old or older
## 5990             16 years old
## 5991             15 years old
## 5992             17 years old
## 5993             15 years old
## 5994             16 years old
## 5995             16 years old
## 5996             17 years old
## 5997             16 years old
## 5998             16 years old
## 5999             16 years old
## 6000             17 years old
## 6001             17 years old
## 6002             17 years old
## 6003    18 years old or older
## 6004             16 years old
## 6005             17 years old
## 6006             17 years old
## 6007    18 years old or older
## 6008             17 years old
## 6009    18 years old or older
## 6010             17 years old
## 6011             16 years old
## 6012             16 years old
## 6013             16 years old
## 6014             17 years old
## 6015    18 years old or older
## 6016             15 years old
## 6017             16 years old
## 6018             14 years old
## 6019             17 years old
## 6020             17 years old
## 6021             16 years old
## 6022             17 years old
## 6023             15 years old
## 6024             15 years old
## 6025             15 years old
## 6026             14 years old
## 6027             15 years old
## 6028             14 years old
## 6029             15 years old
## 6030             15 years old
## 6031             15 years old
## 6032             15 years old
## 6033             14 years old
## 6034             16 years old
## 6035             15 years old
## 6036             15 years old
## 6037             15 years old
## 6038             15 years old
## 6039             15 years old
## 6040             15 years old
## 6041             14 years old
## 6042             15 years old
## 6043             15 years old
## 6044             15 years old
## 6045             14 years old
## 6046             16 years old
## 6047             14 years old
## 6048             14 years old
## 6049             17 years old
## 6050             16 years old
## 6051             17 years old
## 6052    18 years old or older
## 6053             17 years old
## 6054             15 years old
## 6055             17 years old
## 6056             16 years old
## 6057             16 years old
## 6058             17 years old
## 6059             17 years old
## 6060             16 years old
## 6061             17 years old
## 6062             15 years old
## 6063             15 years old
## 6064             15 years old
## 6065             17 years old
## 6066             16 years old
## 6067             16 years old
## 6068             17 years old
## 6069             17 years old
## 6070             16 years old
## 6071             15 years old
## 6072             16 years old
## 6073             17 years old
## 6074             15 years old
## 6075             16 years old
## 6076             14 years old
## 6077             16 years old
## 6078             16 years old
## 6079             16 years old
## 6080             15 years old
## 6081             17 years old
## 6082             16 years old
## 6083             16 years old
## 6084             16 years old
## 6085             16 years old
## 6086             15 years old
## 6087             15 years old
## 6088             17 years old
## 6089             17 years old
## 6090             15 years old
## 6091             16 years old
## 6092             14 years old
## 6093             14 years old
## 6094             17 years old
## 6095             17 years old
## 6096             16 years old
## 6097             15 years old
## 6098             14 years old
## 6099             17 years old
## 6100             17 years old
## 6101             16 years old
## 6102             16 years old
## 6103             14 years old
## 6104             15 years old
## 6105    18 years old or older
## 6106             16 years old
## 6107             15 years old
## 6108             16 years old
## 6109             17 years old
## 6110             16 years old
## 6111             17 years old
## 6112             16 years old
## 6113             16 years old
## 6114             16 years old
## 6115             16 years old
## 6116    18 years old or older
## 6117    18 years old or older
## 6118             14 years old
## 6119    18 years old or older
## 6120    18 years old or older
## 6121             15 years old
## 6122    18 years old or older
## 6123    18 years old or older
## 6124             14 years old
## 6125    18 years old or older
## 6126    18 years old or older
## 6127             14 years old
## 6128    18 years old or older
## 6129    18 years old or older
## 6130             15 years old
## 6131    18 years old or older
## 6132    18 years old or older
## 6133             16 years old
## 6134    18 years old or older
## 6135             14 years old
## 6136    18 years old or older
## 6137    18 years old or older
## 6138             14 years old
## 6139    18 years old or older
## 6140    18 years old or older
## 6141             14 years old
## 6142    18 years old or older
## 6143             14 years old
## 6144    18 years old or older
## 6145    18 years old or older
## 6146             15 years old
## 6147    18 years old or older
## 6148             15 years old
## 6149    18 years old or older
## 6150    18 years old or older
## 6151    18 years old or older
## 6152             15 years old
## 6153             16 years old
## 6154    18 years old or older
## 6155    18 years old or older
## 6156             15 years old
## 6157             17 years old
## 6158             16 years old
## 6159             16 years old
## 6160             17 years old
## 6161             17 years old
## 6162             16 years old
## 6163             16 years old
## 6164             17 years old
## 6165             17 years old
## 6166             16 years old
## 6167             15 years old
## 6168             16 years old
## 6169             17 years old
## 6170             15 years old
## 6171             15 years old
## 6172             16 years old
## 6173             17 years old
## 6174             16 years old
## 6175             16 years old
## 6176             15 years old
## 6177    18 years old or older
## 6178             17 years old
## 6179             16 years old
## 6180             16 years old
## 6181             17 years old
## 6182             17 years old
## 6183             16 years old
## 6184             16 years old
## 6185    18 years old or older
## 6186             16 years old
## 6187             15 years old
## 6188             15 years old
## 6189             16 years old
## 6190             17 years old
## 6191             16 years old
## 6192             16 years old
## 6193             17 years old
## 6194             16 years old
## 6195             15 years old
## 6196             16 years old
## 6197             17 years old
## 6198             17 years old
## 6199             15 years old
## 6200             15 years old
## 6201             17 years old
## 6202             16 years old
## 6203             16 years old
## 6204             15 years old
## 6205             16 years old
## 6206             16 years old
## 6207             16 years old
## 6208             16 years old
## 6209             17 years old
## 6210             17 years old
## 6211             15 years old
## 6212             16 years old
## 6213             17 years old
## 6214             15 years old
## 6215             16 years old
## 6216             17 years old
## 6217             15 years old
## 6218             15 years old
## 6219             15 years old
## 6220             15 years old
## 6221             15 years old
## 6222             14 years old
## 6223             15 years old
## 6224             15 years old
## 6225             15 years old
## 6226             15 years old
## 6227             15 years old
## 6228             15 years old
## 6229             15 years old
## 6230             14 years old
## 6231             15 years old
## 6232             14 years old
## 6233             15 years old
## 6234             15 years old
## 6235             15 years old
## 6236             17 years old
## 6237             17 years old
## 6238             17 years old
## 6239             17 years old
## 6240    18 years old or older
## 6241             17 years old
## 6242             17 years old
## 6243    18 years old or older
## 6244             17 years old
## 6245             17 years old
## 6246    18 years old or older
## 6247             17 years old
## 6248             17 years old
## 6249             17 years old
## 6250             17 years old
## 6251             17 years old
## 6252             17 years old
## 6253             17 years old
## 6254             17 years old
## 6255             17 years old
## 6256             14 years old
## 6257             17 years old
## 6258             17 years old
## 6259             16 years old
## 6260             17 years old
## 6261             16 years old
## 6262             17 years old
## 6263             15 years old
## 6264             17 years old
## 6265    18 years old or older
## 6266             17 years old
## 6267             15 years old
## 6268             14 years old
## 6269             16 years old
## 6270    18 years old or older
## 6271             14 years old
## 6272             17 years old
## 6273             17 years old
## 6274             17 years old
## 6275             15 years old
## 6276             17 years old
## 6277             16 years old
## 6278             17 years old
## 6279    18 years old or older
## 6280             16 years old
## 6281    18 years old or older
## 6282             17 years old
## 6283             17 years old
## 6284             17 years old
## 6285             16 years old
## 6286             15 years old
## 6287             15 years old
## 6288             16 years old
## 6289    18 years old or older
## 6290    18 years old or older
## 6291    18 years old or older
## 6292             17 years old
## 6293                     <NA>
## 6294             16 years old
## 6295             17 years old
## 6296             17 years old
## 6297             17 years old
## 6298             15 years old
## 6299             17 years old
## 6300                     <NA>
## 6301             15 years old
## 6302    18 years old or older
## 6303             16 years old
## 6304             17 years old
## 6305             17 years old
## 6306             16 years old
## 6307             15 years old
## 6308             16 years old
## 6309    18 years old or older
## 6310             17 years old
## 6311                     <NA>
## 6312             16 years old
## 6313             17 years old
## 6314             16 years old
## 6315             15 years old
## 6316             17 years old
## 6317             15 years old
## 6318             16 years old
## 6319             17 years old
## 6320             15 years old
## 6321    18 years old or older
## 6322             16 years old
## 6323             16 years old
## 6324             16 years old
## 6325             14 years old
## 6326             15 years old
## 6327             17 years old
## 6328             17 years old
## 6329    18 years old or older
## 6330             16 years old
## 6331             15 years old
## 6332    18 years old or older
## 6333    18 years old or older
## 6334             16 years old
## 6335             15 years old
## 6336             16 years old
## 6337             16 years old
## 6338             15 years old
## 6339    18 years old or older
## 6340             17 years old
## 6341             15 years old
## 6342             16 years old
## 6343    18 years old or older
## 6344             16 years old
## 6345             15 years old
## 6346             14 years old
## 6347             15 years old
## 6348    18 years old or older
## 6349             17 years old
## 6350             16 years old
## 6351    18 years old or older
## 6352             16 years old
## 6353             15 years old
## 6354             15 years old
## 6355             17 years old
## 6356             17 years old
## 6357             14 years old
## 6358             17 years old
## 6359             16 years old
## 6360             16 years old
## 6361             16 years old
## 6362             15 years old
## 6363             17 years old
## 6364             16 years old
## 6365    18 years old or older
## 6366    18 years old or older
## 6367             14 years old
## 6368             15 years old
## 6369             16 years old
## 6370             16 years old
## 6371             15 years old
## 6372             15 years old
## 6373             17 years old
## 6374             15 years old
## 6375             16 years old
## 6376             15 years old
## 6377             17 years old
## 6378    18 years old or older
## 6379             15 years old
## 6380    18 years old or older
## 6381             17 years old
## 6382             16 years old
## 6383             16 years old
## 6384             16 years old
## 6385    18 years old or older
## 6386             16 years old
## 6387             15 years old
## 6388             17 years old
## 6389             16 years old
## 6390             16 years old
## 6391             16 years old
## 6392             17 years old
## 6393             15 years old
## 6394             15 years old
## 6395             16 years old
## 6396             16 years old
## 6397             17 years old
## 6398    18 years old or older
## 6399             15 years old
## 6400             15 years old
## 6401             17 years old
## 6402             15 years old
## 6403             16 years old
## 6404             16 years old
## 6405    18 years old or older
## 6406             15 years old
## 6407             14 years old
## 6408    18 years old or older
## 6409             16 years old
## 6410             16 years old
## 6411             15 years old
## 6412    18 years old or older
## 6413             17 years old
## 6414             17 years old
## 6415             17 years old
## 6416             15 years old
## 6417             14 years old
## 6418             14 years old
## 6419             16 years old
## 6420             16 years old
## 6421             16 years old
## 6422             16 years old
## 6423    18 years old or older
## 6424    18 years old or older
## 6425             17 years old
## 6426             15 years old
## 6427             17 years old
## 6428             16 years old
## 6429             16 years old
## 6430             15 years old
## 6431             17 years old
## 6432    18 years old or older
## 6433             15 years old
## 6434             15 years old
## 6435             16 years old
## 6436             16 years old
## 6437             16 years old
## 6438             15 years old
## 6439             17 years old
## 6440             17 years old
## 6441             14 years old
## 6442             15 years old
## 6443             16 years old
## 6444             16 years old
## 6445             16 years old
## 6446             14 years old
## 6447    18 years old or older
## 6448             17 years old
## 6449             15 years old
## 6450             16 years old
## 6451    18 years old or older
## 6452             16 years old
## 6453             16 years old
## 6454             16 years old
## 6455             15 years old
## 6456             16 years old
## 6457             16 years old
## 6458    18 years old or older
## 6459             16 years old
## 6460    18 years old or older
## 6461    18 years old or older
## 6462             15 years old
## 6463             14 years old
## 6464             17 years old
## 6465             17 years old
## 6466             16 years old
## 6467    18 years old or older
## 6468    18 years old or older
## 6469             15 years old
## 6470             15 years old
## 6471             16 years old
## 6472             17 years old
## 6473             16 years old
## 6474    18 years old or older
## 6475             17 years old
## 6476             15 years old
## 6477             14 years old
## 6478             16 years old
## 6479             16 years old
## 6480             16 years old
## 6481             16 years old
## 6482             15 years old
## 6483             15 years old
## 6484             16 years old
## 6485             15 years old
## 6486             14 years old
## 6487             17 years old
## 6488             15 years old
## 6489             17 years old
## 6490    18 years old or older
## 6491    18 years old or older
## 6492             14 years old
## 6493             15 years old
## 6494             17 years old
## 6495             17 years old
## 6496    18 years old or older
## 6497             16 years old
## 6498             15 years old
## 6499             16 years old
## 6500             15 years old
## 6501    18 years old or older
## 6502             17 years old
## 6503             17 years old
## 6504             16 years old
## 6505             14 years old
## 6506             17 years old
## 6507    18 years old or older
## 6508             16 years old
## 6509             17 years old
## 6510    18 years old or older
## 6511             17 years old
## 6512             15 years old
## 6513    18 years old or older
## 6514             17 years old
## 6515             15 years old
## 6516             17 years old
## 6517             17 years old
## 6518             16 years old
## 6519             16 years old
## 6520             17 years old
## 6521             17 years old
## 6522             17 years old
## 6523             17 years old
## 6524             17 years old
## 6525             17 years old
## 6526    18 years old or older
## 6527    18 years old or older
## 6528             16 years old
## 6529    18 years old or older
## 6530             16 years old
## 6531             15 years old
## 6532             17 years old
## 6533             17 years old
## 6534             16 years old
## 6535             16 years old
## 6536             16 years old
## 6537             17 years old
## 6538             16 years old
## 6539             17 years old
## 6540             17 years old
## 6541             15 years old
## 6542             17 years old
## 6543             17 years old
## 6544             17 years old
## 6545             14 years old
## 6546             17 years old
## 6547    18 years old or older
## 6548             16 years old
## 6549             17 years old
## 6550             17 years old
## 6551    18 years old or older
## 6552             17 years old
## 6553             17 years old
## 6554             15 years old
## 6555    18 years old or older
## 6556    18 years old or older
## 6557             15 years old
## 6558             15 years old
## 6559             16 years old
## 6560             14 years old
## 6561             16 years old
## 6562             17 years old
## 6563             17 years old
## 6564             17 years old
## 6565             17 years old
## 6566             16 years old
## 6567             15 years old
## 6568             16 years old
## 6569             15 years old
## 6570             16 years old
## 6571             15 years old
## 6572             16 years old
## 6573             16 years old
## 6574             16 years old
## 6575             17 years old
## 6576             15 years old
## 6577             15 years old
## 6578             14 years old
## 6579             16 years old
## 6580             15 years old
## 6581             16 years old
## 6582             14 years old
## 6583             16 years old
## 6584             14 years old
## 6585             15 years old
## 6586             14 years old
## 6587             15 years old
## 6588             15 years old
## 6589             15 years old
## 6590             16 years old
## 6591             16 years old
## 6592             17 years old
## 6593             17 years old
## 6594             15 years old
## 6595             15 years old
## 6596             15 years old
## 6597             16 years old
## 6598             17 years old
## 6599             16 years old
## 6600             17 years old
## 6601    18 years old or older
## 6602             16 years old
## 6603             15 years old
## 6604             15 years old
## 6605             15 years old
## 6606             15 years old
## 6607             17 years old
## 6608             16 years old
## 6609             16 years old
## 6610    18 years old or older
## 6611             15 years old
## 6612             16 years old
## 6613    18 years old or older
## 6614    18 years old or older
## 6615             16 years old
## 6616             15 years old
## 6617             15 years old
## 6618             16 years old
## 6619             15 years old
## 6620             17 years old
## 6621             16 years old
## 6622             16 years old
## 6623             15 years old
## 6624    18 years old or older
## 6625             16 years old
## 6626             17 years old
## 6627             17 years old
## 6628             14 years old
## 6629             16 years old
## 6630    18 years old or older
## 6631    18 years old or older
## 6632             17 years old
## 6633             15 years old
## 6634             14 years old
## 6635             16 years old
## 6636             17 years old
## 6637             17 years old
## 6638             17 years old
## 6639             14 years old
## 6640             15 years old
## 6641    18 years old or older
## 6642    18 years old or older
## 6643    18 years old or older
## 6644             17 years old
## 6645             15 years old
## 6646             15 years old
## 6647             16 years old
## 6648             16 years old
## 6649             17 years old
## 6650             17 years old
## 6651             17 years old
## 6652             17 years old
## 6653             15 years old
## 6654             15 years old
## 6655             16 years old
## 6656             15 years old
## 6657    18 years old or older
## 6658             17 years old
## 6659             15 years old
## 6660             15 years old
## 6661    18 years old or older
## 6662             17 years old
## 6663             14 years old
## 6664             16 years old
## 6665             16 years old
## 6666             14 years old
## 6667    18 years old or older
## 6668             17 years old
## 6669             14 years old
## 6670             15 years old
## 6671             14 years old
## 6672             16 years old
## 6673    18 years old or older
## 6674             17 years old
## 6675             17 years old
## 6676             14 years old
## 6677             15 years old
## 6678             16 years old
## 6679             17 years old
## 6680    18 years old or older
## 6681             16 years old
## 6682             17 years old
## 6683    18 years old or older
## 6684             14 years old
## 6685             15 years old
## 6686             16 years old
## 6687             15 years old
## 6688             17 years old
## 6689             16 years old
## 6690    18 years old or older
## 6691             16 years old
## 6692             17 years old
## 6693             17 years old
## 6694             17 years old
## 6695    18 years old or older
## 6696             15 years old
## 6697             15 years old
## 6698             15 years old
## 6699             16 years old
## 6700    18 years old or older
## 6701             16 years old
## 6702             17 years old
## 6703    18 years old or older
## 6704             15 years old
## 6705             15 years old
## 6706             16 years old
## 6707    18 years old or older
## 6708             16 years old
## 6709             15 years old
## 6710             15 years old
## 6711             16 years old
## 6712    18 years old or older
## 6713             14 years old
## 6714             17 years old
## 6715             17 years old
## 6716             16 years old
## 6717    18 years old or older
## 6718    18 years old or older
## 6719             15 years old
## 6720    18 years old or older
## 6721             17 years old
## 6722             16 years old
## 6723             17 years old
## 6724             15 years old
## 6725             16 years old
## 6726             15 years old
## 6727             17 years old
## 6728             16 years old
## 6729             17 years old
## 6730    18 years old or older
## 6731             17 years old
## 6732             16 years old
## 6733             15 years old
## 6734             17 years old
## 6735    18 years old or older
## 6736    18 years old or older
## 6737    18 years old or older
## 6738    18 years old or older
## 6739             16 years old
## 6740             16 years old
## 6741    18 years old or older
## 6742             17 years old
## 6743             17 years old
## 6744             15 years old
## 6745             17 years old
## 6746             16 years old
## 6747    18 years old or older
## 6748             17 years old
## 6749             14 years old
## 6750             16 years old
## 6751             15 years old
## 6752             17 years old
## 6753             17 years old
## 6754             17 years old
## 6755             15 years old
## 6756             16 years old
## 6757             16 years old
## 6758    18 years old or older
## 6759             16 years old
## 6760             17 years old
## 6761             14 years old
## 6762             16 years old
## 6763             16 years old
## 6764             16 years old
## 6765    18 years old or older
## 6766                     <NA>
## 6767             16 years old
## 6768             17 years old
## 6769             17 years old
## 6770    18 years old or older
## 6771             15 years old
## 6772             17 years old
## 6773    18 years old or older
## 6774             17 years old
## 6775             15 years old
## 6776             16 years old
## 6777             16 years old
## 6778             17 years old
## 6779             15 years old
## 6780             15 years old
## 6781             16 years old
## 6782    18 years old or older
## 6783             16 years old
## 6784             17 years old
## 6785                     <NA>
## 6786    18 years old or older
## 6787             16 years old
## 6788             15 years old
## 6789    18 years old or older
## 6790             17 years old
## 6791             17 years old
## 6792             15 years old
## 6793             17 years old
## 6794             15 years old
## 6795             15 years old
## 6796    18 years old or older
## 6797             17 years old
## 6798             16 years old
## 6799             16 years old
## 6800    18 years old or older
## 6801             16 years old
## 6802    18 years old or older
## 6803             17 years old
## 6804             14 years old
## 6805             17 years old
## 6806             16 years old
## 6807             15 years old
## 6808             17 years old
## 6809             16 years old
## 6810             16 years old
## 6811             14 years old
## 6812             17 years old
## 6813             16 years old
## 6814             16 years old
## 6815                     <NA>
## 6816    18 years old or older
## 6817    18 years old or older
## 6818             17 years old
## 6819             15 years old
## 6820    18 years old or older
## 6821             16 years old
## 6822             17 years old
## 6823             17 years old
## 6824             15 years old
## 6825    18 years old or older
## 6826             15 years old
## 6827             16 years old
## 6828    18 years old or older
## 6829             16 years old
## 6830             17 years old
## 6831             16 years old
## 6832    18 years old or older
## 6833             15 years old
## 6834    18 years old or older
## 6835    18 years old or older
## 6836             17 years old
## 6837             16 years old
## 6838             17 years old
## 6839    18 years old or older
## 6840             17 years old
## 6841             16 years old
## 6842             16 years old
## 6843             15 years old
## 6844             17 years old
## 6845             16 years old
## 6846             16 years old
## 6847             16 years old
## 6848    18 years old or older
## 6849             17 years old
## 6850             16 years old
## 6851    18 years old or older
## 6852             17 years old
## 6853             16 years old
## 6854             16 years old
## 6855    18 years old or older
## 6856             15 years old
## 6857    18 years old or older
## 6858             16 years old
## 6859    18 years old or older
## 6860             15 years old
## 6861             15 years old
## 6862             15 years old
## 6863             15 years old
## 6864             15 years old
## 6865             14 years old
## 6866             15 years old
## 6867             14 years old
## 6868             15 years old
## 6869             15 years old
## 6870             16 years old
## 6871             15 years old
## 6872             14 years old
## 6873             14 years old
## 6874             14 years old
## 6875             15 years old
## 6876             14 years old
## 6877             15 years old
## 6878             17 years old
## 6879             14 years old
## 6880             17 years old
## 6881             14 years old
## 6882             15 years old
## 6883             14 years old
## 6884             15 years old
## 6885             14 years old
## 6886             16 years old
## 6887    18 years old or older
## 6888             17 years old
## 6889             15 years old
## 6890             14 years old
## 6891             17 years old
## 6892             15 years old
## 6893             17 years old
## 6894             15 years old
## 6895             16 years old
## 6896             17 years old
## 6897             15 years old
## 6898             15 years old
## 6899             17 years old
## 6900             17 years old
## 6901             15 years old
## 6902             17 years old
## 6903             16 years old
## 6904             16 years old
## 6905             14 years old
## 6906    18 years old or older
## 6907             17 years old
## 6908             15 years old
## 6909             16 years old
## 6910    18 years old or older
## 6911             16 years old
## 6912             16 years old
## 6913             17 years old
## 6914             16 years old
## 6915             16 years old
## 6916             15 years old
## 6917             16 years old
## 6918             16 years old
## 6919             17 years old
## 6920             17 years old
## 6921             15 years old
## 6922             17 years old
## 6923             16 years old
## 6924             16 years old
## 6925             14 years old
## 6926             17 years old
## 6927             16 years old
## 6928             15 years old
## 6929             15 years old
## 6930             17 years old
## 6931             17 years old
## 6932             16 years old
## 6933             17 years old
## 6934             17 years old
## 6935             16 years old
## 6936             15 years old
## 6937             16 years old
## 6938             14 years old
## 6939             14 years old
## 6940             14 years old
## 6941             16 years old
## 6942             15 years old
## 6943             16 years old
## 6944             16 years old
## 6945             17 years old
## 6946             16 years old
## 6947             14 years old
## 6948             16 years old
## 6949             16 years old
## 6950             14 years old
## 6951    18 years old or older
## 6952             17 years old
## 6953             14 years old
## 6954             17 years old
## 6955             17 years old
## 6956             16 years old
## 6957    18 years old or older
## 6958             17 years old
## 6959             16 years old
## 6960             15 years old
## 6961             16 years old
## 6962             17 years old
## 6963             16 years old
## 6964             15 years old
## 6965             16 years old
## 6966             17 years old
## 6967             15 years old
## 6968             17 years old
## 6969             14 years old
## 6970             17 years old
## 6971             15 years old
## 6972             14 years old
## 6973             15 years old
## 6974             16 years old
## 6975             14 years old
## 6976             17 years old
## 6977             16 years old
## 6978             14 years old
## 6979             17 years old
## 6980             16 years old
## 6981             14 years old
## 6982             16 years old
## 6983                     <NA>
## 6984             14 years old
## 6985             15 years old
## 6986    18 years old or older
## 6987             15 years old
## 6988             16 years old
## 6989             14 years old
## 6990             14 years old
## 6991             16 years old
## 6992    18 years old or older
## 6993             17 years old
## 6994             15 years old
## 6995             16 years old
## 6996             15 years old
## 6997             17 years old
## 6998             16 years old
## 6999             16 years old
## 7000             15 years old
## 7001    18 years old or older
## 7002             15 years old
## 7003             15 years old
## 7004             17 years old
## 7005             16 years old
## 7006             16 years old
## 7007    18 years old or older
## 7008             14 years old
## 7009             17 years old
## 7010             15 years old
## 7011             14 years old
## 7012             15 years old
## 7013             16 years old
## 7014             14 years old
## 7015             17 years old
## 7016             17 years old
## 7017             14 years old
## 7018             15 years old
## 7019             16 years old
## 7020             16 years old
## 7021             17 years old
## 7022             17 years old
## 7023             17 years old
## 7024             17 years old
## 7025    18 years old or older
## 7026    18 years old or older
## 7027             17 years old
## 7028             17 years old
## 7029             16 years old
## 7030             17 years old
## 7031             17 years old
## 7032    18 years old or older
## 7033             16 years old
## 7034             17 years old
## 7035    18 years old or older
## 7036             16 years old
## 7037             17 years old
## 7038             17 years old
## 7039             15 years old
## 7040             16 years old
## 7041    18 years old or older
## 7042    18 years old or older
## 7043             16 years old
## 7044             15 years old
## 7045             17 years old
## 7046             15 years old
## 7047    18 years old or older
## 7048             15 years old
## 7049    18 years old or older
## 7050             16 years old
## 7051    18 years old or older
## 7052             14 years old
## 7053             16 years old
## 7054    18 years old or older
## 7055             15 years old
## 7056             16 years old
## 7057             17 years old
## 7058             16 years old
## 7059             15 years old
## 7060             16 years old
## 7061             15 years old
## 7062             17 years old
## 7063    18 years old or older
## 7064             17 years old
## 7065             17 years old
## 7066    18 years old or older
## 7067             14 years old
## 7068             14 years old
## 7069             17 years old
## 7070             15 years old
## 7071             14 years old
## 7072             14 years old
## 7073             15 years old
## 7074             15 years old
## 7075             15 years old
## 7076                     <NA>
## 7077             15 years old
## 7078             16 years old
## 7079             16 years old
## 7080             14 years old
## 7081             17 years old
## 7082    18 years old or older
## 7083             15 years old
## 7084             14 years old
## 7085             16 years old
## 7086             15 years old
## 7087             15 years old
## 7088             14 years old
## 7089             16 years old
## 7090             15 years old
## 7091             17 years old
## 7092             14 years old
## 7093             14 years old
## 7094             16 years old
## 7095             16 years old
## 7096             15 years old
## 7097             16 years old
## 7098             14 years old
## 7099    18 years old or older
## 7100             15 years old
## 7101             14 years old
## 7102             16 years old
## 7103    18 years old or older
## 7104             15 years old
## 7105             15 years old
## 7106             16 years old
## 7107             16 years old
## 7108             16 years old
## 7109             15 years old
## 7110             17 years old
## 7111    18 years old or older
## 7112             17 years old
## 7113             15 years old
## 7114    18 years old or older
## 7115             16 years old
## 7116             15 years old
## 7117             16 years old
## 7118             17 years old
## 7119             15 years old
## 7120             16 years old
## 7121             16 years old
## 7122    18 years old or older
## 7123             16 years old
## 7124             15 years old
## 7125             14 years old
## 7126             16 years old
## 7127             14 years old
## 7128             15 years old
## 7129             15 years old
## 7130             15 years old
## 7131             14 years old
## 7132             17 years old
## 7133             16 years old
## 7134             14 years old
## 7135             16 years old
## 7136             15 years old
## 7137             14 years old
## 7138             14 years old
## 7139             16 years old
## 7140             15 years old
## 7141             14 years old
## 7142             16 years old
## 7143             15 years old
## 7144             14 years old
## 7145             17 years old
## 7146             15 years old
## 7147             14 years old
## 7148             17 years old
## 7149             14 years old
## 7150             16 years old
## 7151             14 years old
## 7152             16 years old
## 7153             14 years old
## 7154             17 years old
## 7155             16 years old
## 7156             14 years old
## 7157             16 years old
## 7158             15 years old
## 7159             16 years old
## 7160             14 years old
## 7161             16 years old
## 7162             14 years old
## 7163    18 years old or older
## 7164             14 years old
## 7165    18 years old or older
## 7166             14 years old
## 7167                     <NA>
## 7168             15 years old
## 7169    18 years old or older
## 7170             17 years old
## 7171             14 years old
## 7172             17 years old
## 7173             15 years old
## 7174             17 years old
## 7175             15 years old
## 7176    18 years old or older
## 7177             15 years old
## 7178             17 years old
## 7179             14 years old
## 7180    18 years old or older
## 7181             14 years old
## 7182             17 years old
## 7183    18 years old or older
## 7184             17 years old
## 7185             14 years old
## 7186             16 years old
## 7187             14 years old
## 7188    18 years old or older
## 7189             16 years old
## 7190             14 years old
## 7191             16 years old
## 7192    18 years old or older
## 7193             16 years old
## 7194             16 years old
## 7195             15 years old
## 7196             16 years old
## 7197             15 years old
## 7198             17 years old
## 7199             16 years old
## 7200             14 years old
## 7201             17 years old
## 7202             15 years old
## 7203             17 years old
## 7204             15 years old
## 7205             14 years old
## 7206             16 years old
## 7207             15 years old
## 7208             16 years old
## 7209             15 years old
## 7210             14 years old
## 7211             16 years old
## 7212             16 years old
## 7213             14 years old
## 7214             16 years old
## 7215             15 years old
## 7216             14 years old
## 7217             16 years old
## 7218             14 years old
## 7219             16 years old
## 7220             15 years old
## 7221             17 years old
## 7222             14 years old
## 7223             15 years old
## 7224             14 years old
## 7225             14 years old
## 7226             15 years old
## 7227             14 years old
## 7228             14 years old
## 7229             17 years old
## 7230             16 years old
## 7231             16 years old
## 7232             16 years old
## 7233             15 years old
## 7234             17 years old
## 7235             15 years old
## 7236             15 years old
## 7237             15 years old
## 7238             17 years old
## 7239             16 years old
## 7240             14 years old
## 7241             14 years old
## 7242             15 years old
## 7243             16 years old
## 7244             15 years old
## 7245             17 years old
## 7246             15 years old
## 7247             17 years old
## 7248             16 years old
## 7249  12 years old or younger
## 7250    18 years old or older
## 7251             14 years old
## 7252             17 years old
## 7253             16 years old
## 7254             14 years old
## 7255             16 years old
## 7256             15 years old
## 7257             14 years old
## 7258             17 years old
## 7259             17 years old
## 7260             16 years old
## 7261             14 years old
## 7262             15 years old
## 7263    18 years old or older
## 7264             16 years old
## 7265             14 years old
## 7266             16 years old
## 7267             16 years old
## 7268             16 years old
## 7269             16 years old
## 7270             15 years old
## 7271             17 years old
## 7272             15 years old
## 7273             15 years old
## 7274             16 years old
## 7275             14 years old
## 7276             17 years old
## 7277             15 years old
## 7278             17 years old
## 7279    18 years old or older
## 7280             16 years old
## 7281             15 years old
## 7282             17 years old
## 7283             16 years old
## 7284             16 years old
## 7285             17 years old
## 7286    18 years old or older
## 7287             17 years old
## 7288             14 years old
## 7289             16 years old
## 7290    18 years old or older
## 7291             16 years old
## 7292             17 years old
## 7293             14 years old
## 7294    18 years old or older
## 7295             16 years old
## 7296             15 years old
## 7297             17 years old
## 7298             17 years old
## 7299             17 years old
## 7300             15 years old
## 7301             14 years old
## 7302             15 years old
## 7303  12 years old or younger
## 7304             15 years old
## 7305    18 years old or older
## 7306    18 years old or older
## 7307             16 years old
## 7308             16 years old
## 7309             14 years old
## 7310             17 years old
## 7311             16 years old
## 7312             14 years old
## 7313             15 years old
## 7314             17 years old
## 7315             16 years old
## 7316             15 years old
## 7317                     <NA>
## 7318             15 years old
## 7319             17 years old
## 7320    18 years old or older
## 7321             16 years old
## 7322             14 years old
## 7323             15 years old
## 7324             15 years old
## 7325             17 years old
## 7326             15 years old
## 7327             16 years old
## 7328             17 years old
## 7329    18 years old or older
## 7330             17 years old
## 7331    18 years old or older
## 7332             17 years old
## 7333             17 years old
## 7334             16 years old
## 7335             17 years old
## 7336             15 years old
## 7337             17 years old
## 7338    18 years old or older
## 7339             16 years old
## 7340             17 years old
## 7341             16 years old
## 7342             15 years old
## 7343             16 years old
## 7344             17 years old
## 7345             17 years old
## 7346             16 years old
## 7347             17 years old
## 7348             16 years old
## 7349             16 years old
## 7350             16 years old
## 7351             15 years old
## 7352             16 years old
## 7353             17 years old
## 7354             16 years old
## 7355             15 years old
## 7356             16 years old
## 7357             16 years old
## 7358             15 years old
## 7359             16 years old
## 7360             17 years old
## 7361             17 years old
## 7362    18 years old or older
## 7363    18 years old or older
## 7364             17 years old
## 7365             17 years old
## 7366             16 years old
## 7367             15 years old
## 7368             16 years old
## 7369    18 years old or older
## 7370             15 years old
## 7371             15 years old
## 7372             17 years old
## 7373             16 years old
## 7374             16 years old
## 7375             16 years old
## 7376             17 years old
## 7377             15 years old
## 7378             16 years old
## 7379    18 years old or older
## 7380             15 years old
## 7381             17 years old
## 7382             17 years old
## 7383             16 years old
## 7384             15 years old
## 7385             17 years old
## 7386             17 years old
## 7387             15 years old
## 7388             15 years old
## 7389             17 years old
## 7390             15 years old
## 7391             17 years old
## 7392             16 years old
## 7393             16 years old
## 7394             16 years old
## 7395             16 years old
## 7396    18 years old or older
## 7397             15 years old
## 7398             17 years old
## 7399             16 years old
## 7400             16 years old
## 7401             15 years old
## 7402             16 years old
## 7403             15 years old
## 7404             15 years old
## 7405             16 years old
## 7406             15 years old
## 7407             15 years old
## 7408             16 years old
## 7409             15 years old
## 7410             15 years old
## 7411             16 years old
## 7412             15 years old
## 7413             16 years old
## 7414             16 years old
## 7415             15 years old
## 7416             16 years old
## 7417             17 years old
## 7418             15 years old
## 7419             16 years old
## 7420             16 years old
## 7421             17 years old
## 7422             16 years old
## 7423             16 years old
## 7424             17 years old
## 7425             15 years old
## 7426             16 years old
## 7427             17 years old
## 7428             15 years old
## 7429             15 years old
## 7430             16 years old
## 7431             17 years old
## 7432             13 years old
## 7433             15 years old
## 7434             16 years old
## 7435             15 years old
## 7436             16 years old
## 7437             15 years old
## 7438             16 years old
## 7439             15 years old
## 7440             17 years old
## 7441             15 years old
## 7442             16 years old
## 7443             16 years old
## 7444             15 years old
## 7445             15 years old
## 7446             16 years old
## 7447             16 years old
## 7448             16 years old
## 7449             15 years old
## 7450             16 years old
## 7451             15 years old
## 7452             17 years old
## 7453             16 years old
## 7454             16 years old
## 7455             16 years old
## 7456             15 years old
## 7457             15 years old
## 7458             15 years old
## 7459             15 years old
## 7460             15 years old
## 7461             15 years old
## 7462    18 years old or older
## 7463             16 years old
## 7464             16 years old
## 7465             16 years old
## 7466             15 years old
## 7467             16 years old
## 7468             15 years old
## 7469             16 years old
## 7470             16 years old
## 7471             15 years old
## 7472             15 years old
## 7473             15 years old
## 7474             16 years old
## 7475             15 years old
## 7476             15 years old
## 7477             16 years old
## 7478             16 years old
## 7479             16 years old
## 7480    18 years old or older
## 7481             15 years old
## 7482             15 years old
## 7483             16 years old
## 7484             15 years old
## 7485             16 years old
## 7486             15 years old
## 7487             16 years old
## 7488             16 years old
## 7489             15 years old
## 7490             15 years old
## 7491             15 years old
## 7492             16 years old
## 7493             16 years old
## 7494             16 years old
## 7495             17 years old
## 7496             16 years old
## 7497             16 years old
## 7498             17 years old
## 7499             16 years old
## 7500             16 years old
## 7501             16 years old
## 7502             15 years old
## 7503             17 years old
## 7504             16 years old
## 7505             15 years old
## 7506             16 years old
## 7507             16 years old
## 7508             16 years old
## 7509             16 years old
## 7510             17 years old
## 7511             15 years old
## 7512             16 years old
## 7513             15 years old
## 7514             15 years old
## 7515             15 years old
## 7516             15 years old
## 7517             16 years old
## 7518             15 years old
## 7519             15 years old
## 7520             16 years old
## 7521             15 years old
## 7522             15 years old
## 7523             15 years old
## 7524             16 years old
## 7525             16 years old
## 7526             16 years old
## 7527             16 years old
## 7528             16 years old
## 7529             15 years old
## 7530             15 years old
## 7531             16 years old
## 7532             15 years old
## 7533             16 years old
## 7534             15 years old
## 7535             17 years old
## 7536             16 years old
## 7537             16 years old
## 7538    18 years old or older
## 7539             17 years old
## 7540             16 years old
## 7541             17 years old
## 7542             17 years old
## 7543             14 years old
## 7544             15 years old
## 7545             17 years old
## 7546             15 years old
## 7547             16 years old
## 7548             15 years old
## 7549             17 years old
## 7550             14 years old
## 7551    18 years old or older
## 7552             16 years old
## 7553             16 years old
## 7554             16 years old
## 7555             16 years old
## 7556             16 years old
## 7557             16 years old
## 7558             15 years old
## 7559             16 years old
## 7560             15 years old
## 7561             16 years old
## 7562             15 years old
## 7563             16 years old
## 7564             14 years old
## 7565             16 years old
## 7566             16 years old
## 7567             17 years old
## 7568             14 years old
## 7569             16 years old
## 7570             15 years old
## 7571             16 years old
## 7572             16 years old
## 7573             15 years old
## 7574             16 years old
## 7575             14 years old
## 7576             14 years old
## 7577             16 years old
## 7578             17 years old
## 7579             15 years old
## 7580             16 years old
## 7581             16 years old
## 7582             15 years old
## 7583             16 years old
## 7584    18 years old or older
## 7585             15 years old
## 7586             16 years old
## 7587             16 years old
## 7588             16 years old
## 7589             16 years old
## 7590             16 years old
## 7591             14 years old
## 7592             17 years old
## 7593             16 years old
## 7594             17 years old
## 7595             15 years old
## 7596             17 years old
## 7597             16 years old
## 7598             16 years old
## 7599             16 years old
## 7600             15 years old
## 7601             15 years old
## 7602             17 years old
## 7603             16 years old
## 7604             17 years old
## 7605             14 years old
## 7606             17 years old
## 7607    18 years old or older
## 7608             17 years old
## 7609             14 years old
## 7610             16 years old
## 7611             16 years old
## 7612             17 years old
## 7613             16 years old
## 7614             15 years old
## 7615             16 years old
## 7616             17 years old
## 7617             16 years old
## 7618             17 years old
## 7619             15 years old
## 7620             16 years old
## 7621             14 years old
## 7622             15 years old
## 7623             17 years old
## 7624             17 years old
## 7625             16 years old
## 7626             14 years old
## 7627             16 years old
## 7628             16 years old
## 7629             15 years old
## 7630             15 years old
## 7631             15 years old
## 7632             17 years old
## 7633             16 years old
## 7634             15 years old
## 7635             16 years old
## 7636             14 years old
## 7637             16 years old
## 7638             16 years old
## 7639             17 years old
## 7640             17 years old
## 7641             15 years old
## 7642             15 years old
## 7643             13 years old
## 7644             16 years old
## 7645             14 years old
## 7646             14 years old
## 7647             14 years old
## 7648             15 years old
## 7649             14 years old
## 7650             17 years old
## 7651             15 years old
## 7652             15 years old
## 7653             14 years old
## 7654             16 years old
## 7655             15 years old
## 7656             16 years old
## 7657             15 years old
## 7658             16 years old
## 7659             14 years old
## 7660             14 years old
## 7661             15 years old
## 7662             16 years old
## 7663             14 years old
## 7664             16 years old
## 7665             15 years old
## 7666             17 years old
## 7667             15 years old
## 7668             14 years old
## 7669             15 years old
## 7670             14 years old
## 7671             16 years old
## 7672             14 years old
## 7673             16 years old
## 7674             14 years old
## 7675             15 years old
## 7676             15 years old
## 7677             15 years old
## 7678             15 years old
## 7679             15 years old
## 7680             16 years old
## 7681             15 years old
## 7682             15 years old
## 7683             16 years old
## 7684             14 years old
## 7685             14 years old
## 7686             15 years old
## 7687             17 years old
## 7688             16 years old
## 7689             17 years old
## 7690             17 years old
## 7691             15 years old
## 7692             14 years old
## 7693             17 years old
## 7694             17 years old
## 7695             16 years old
## 7696             14 years old
## 7697             17 years old
## 7698    18 years old or older
## 7699             16 years old
## 7700             17 years old
## 7701             16 years old
## 7702             14 years old
## 7703    18 years old or older
## 7704             15 years old
## 7705             14 years old
## 7706    18 years old or older
## 7707             15 years old
## 7708             14 years old
## 7709             17 years old
## 7710             16 years old
## 7711             14 years old
## 7712             16 years old
## 7713             17 years old
## 7714             16 years old
## 7715             14 years old
## 7716             17 years old
## 7717             15 years old
## 7718             17 years old
## 7719             14 years old
## 7720             16 years old
## 7721             17 years old
## 7722             16 years old
## 7723             16 years old
## 7724             17 years old
## 7725             16 years old
## 7726             15 years old
## 7727             17 years old
## 7728             16 years old
## 7729             15 years old
## 7730             17 years old
## 7731    18 years old or older
## 7732             16 years old
## 7733             15 years old
## 7734             15 years old
## 7735             14 years old
## 7736             17 years old
## 7737             17 years old
## 7738             15 years old
## 7739             15 years old
## 7740             15 years old
## 7741             15 years old
## 7742             16 years old
## 7743    18 years old or older
## 7744             16 years old
## 7745             15 years old
## 7746             16 years old
## 7747    18 years old or older
## 7748             16 years old
## 7749             15 years old
## 7750             17 years old
## 7751             17 years old
## 7752             16 years old
## 7753             15 years old
## 7754             16 years old
## 7755             15 years old
## 7756             17 years old
## 7757             16 years old
## 7758             14 years old
## 7759    18 years old or older
## 7760             15 years old
## 7761             15 years old
## 7762             16 years old
## 7763    18 years old or older
## 7764             15 years old
## 7765             14 years old
## 7766             17 years old
## 7767             17 years old
## 7768             16 years old
## 7769             14 years old
## 7770             17 years old
## 7771    18 years old or older
## 7772             16 years old
## 7773             15 years old
## 7774             16 years old
## 7775    18 years old or older
## 7776             16 years old
## 7777             15 years old
## 7778    18 years old or older
## 7779             17 years old
## 7780             16 years old
## 7781             15 years old
## 7782    18 years old or older
## 7783    18 years old or older
## 7784             15 years old
## 7785             17 years old
## 7786    18 years old or older
## 7787             15 years old
## 7788             15 years old
## 7789    18 years old or older
## 7790             17 years old
## 7791             17 years old
## 7792             17 years old
## 7793             14 years old
## 7794             16 years old
## 7795             15 years old
## 7796             15 years old
## 7797             16 years old
## 7798             15 years old
## 7799             15 years old
## 7800             15 years old
## 7801             14 years old
## 7802             15 years old
## 7803             14 years old
## 7804             16 years old
## 7805             15 years old
## 7806             14 years old
## 7807             16 years old
## 7808             15 years old
## 7809             14 years old
## 7810    18 years old or older
## 7811             14 years old
## 7812             15 years old
## 7813             15 years old
## 7814             17 years old
## 7815             15 years old
## 7816             15 years old
## 7817             15 years old
## 7818             15 years old
## 7819             15 years old
## 7820             17 years old
## 7821             15 years old
## 7822             16 years old
## 7823             17 years old
## 7824    18 years old or older
## 7825             15 years old
## 7826             16 years old
## 7827             15 years old
## 7828             15 years old
## 7829             15 years old
## 7830             17 years old
## 7831             14 years old
## 7832             16 years old
## 7833             16 years old
## 7834             17 years old
## 7835    18 years old or older
## 7836             14 years old
## 7837             16 years old
## 7838    18 years old or older
## 7839    18 years old or older
## 7840             16 years old
## 7841             17 years old
## 7842    18 years old or older
## 7843             15 years old
## 7844             15 years old
## 7845    18 years old or older
## 7846             14 years old
## 7847             16 years old
## 7848             15 years old
## 7849             16 years old
## 7850    18 years old or older
## 7851             16 years old
## 7852             16 years old
## 7853             16 years old
## 7854             17 years old
## 7855             16 years old
## 7856             14 years old
## 7857             16 years old
## 7858             17 years old
## 7859             17 years old
## 7860             15 years old
## 7861    18 years old or older
## 7862    18 years old or older
## 7863    18 years old or older
## 7864             15 years old
## 7865             15 years old
## 7866             15 years old
## 7867             15 years old
## 7868             16 years old
## 7869             15 years old
## 7870             14 years old
## 7871             16 years old
## 7872             15 years old
## 7873             14 years old
## 7874             15 years old
## 7875             17 years old
## 7876             17 years old
## 7877             16 years old
## 7878             15 years old
## 7879             15 years old
## 7880             16 years old
## 7881             17 years old
## 7882             15 years old
## 7883    18 years old or older
## 7884             17 years old
## 7885             17 years old
## 7886             15 years old
## 7887             15 years old
## 7888             17 years old
## 7889             15 years old
## 7890             15 years old
## 7891    18 years old or older
## 7892             16 years old
## 7893             17 years old
## 7894             15 years old
## 7895             14 years old
## 7896    18 years old or older
## 7897             16 years old
## 7898    18 years old or older
## 7899             15 years old
## 7900             15 years old
## 7901    18 years old or older
## 7902             17 years old
## 7903             17 years old
## 7904             15 years old
## 7905             15 years old
## 7906    18 years old or older
## 7907             14 years old
## 7908             15 years old
## 7909             14 years old
## 7910    18 years old or older
## 7911             17 years old
## 7912             14 years old
## 7913             15 years old
## 7914    18 years old or older
## 7915             17 years old
## 7916             15 years old
## 7917             15 years old
## 7918    18 years old or older
## 7919             17 years old
## 7920             15 years old
## 7921             14 years old
## 7922             17 years old
## 7923             16 years old
## 7924             16 years old
## 7925             14 years old
## 7926             14 years old
## 7927             17 years old
## 7928             17 years old
## 7929             14 years old
## 7930             16 years old
## 7931    18 years old or older
## 7932             16 years old
## 7933             16 years old
## 7934             16 years old
## 7935             14 years old
## 7936    18 years old or older
## 7937             16 years old
## 7938             17 years old
## 7939             16 years old
## 7940             15 years old
## 7941             15 years old
## 7942             15 years old
## 7943             15 years old
## 7944             17 years old
## 7945             17 years old
## 7946             17 years old
## 7947             17 years old
## 7948             15 years old
## 7949             15 years old
## 7950    18 years old or older
## 7951             14 years old
## 7952             17 years old
## 7953    18 years old or older
## 7954             15 years old
## 7955             15 years old
## 7956             14 years old
## 7957             17 years old
## 7958             14 years old
## 7959             17 years old
## 7960             17 years old
## 7961             15 years old
## 7962             15 years old
## 7963             15 years old
## 7964             17 years old
## 7965             14 years old
## 7966             16 years old
## 7967             15 years old
## 7968             14 years old
## 7969             17 years old
## 7970             15 years old
## 7971             17 years old
## 7972             17 years old
## 7973             16 years old
## 7974             17 years old
## 7975             15 years old
## 7976             17 years old
## 7977             15 years old
## 7978             17 years old
## 7979             17 years old
## 7980             17 years old
## 7981             15 years old
## 7982             15 years old
## 7983             15 years old
## 7984    18 years old or older
## 7985             15 years old
## 7986             16 years old
## 7987             17 years old
## 7988             15 years old
## 7989             16 years old
## 7990             15 years old
## 7991    18 years old or older
## 7992             15 years old
## 7993             17 years old
## 7994    18 years old or older
## 7995             16 years old
## 7996             15 years old
## 7997             15 years old
## 7998             16 years old
## 7999    18 years old or older
## 8000             15 years old
## 8001             17 years old
## 8002    18 years old or older
## 8003             16 years old
## 8004             15 years old
## 8005             15 years old
## 8006             16 years old
## 8007             16 years old
## 8008    18 years old or older
## 8009             16 years old
## 8010             16 years old
## 8011             14 years old
## 8012    18 years old or older
## 8013             16 years old
## 8014             17 years old
## 8015             17 years old
## 8016             15 years old
## 8017             16 years old
## 8018             15 years old
## 8019             17 years old
## 8020             15 years old
## 8021             17 years old
## 8022             17 years old
## 8023             17 years old
## 8024             16 years old
## 8025             13 years old
## 8026             17 years old
## 8027             15 years old
## 8028             16 years old
## 8029             17 years old
## 8030             17 years old
## 8031             15 years old
## 8032             17 years old
## 8033             14 years old
## 8034             17 years old
## 8035    18 years old or older
## 8036             16 years old
## 8037             16 years old
## 8038             16 years old
## 8039             17 years old
## 8040             15 years old
## 8041             16 years old
## 8042             16 years old
## 8043             15 years old
## 8044             14 years old
## 8045    18 years old or older
## 8046             16 years old
## 8047             16 years old
## 8048    18 years old or older
## 8049             15 years old
## 8050             16 years old
## 8051             16 years old
## 8052             16 years old
## 8053             17 years old
## 8054             15 years old
## 8055             16 years old
## 8056    18 years old or older
## 8057             17 years old
## 8058             16 years old
## 8059             15 years old
## 8060             14 years old
## 8061             15 years old
## 8062             16 years old
## 8063             17 years old
## 8064             16 years old
## 8065             14 years old
## 8066             17 years old
## 8067             15 years old
## 8068             17 years old
## 8069             17 years old
## 8070             16 years old
## 8071             15 years old
## 8072             14 years old
## 8073    18 years old or older
## 8074             17 years old
## 8075    18 years old or older
## 8076             17 years old
## 8077             16 years old
## 8078             15 years old
## 8079             15 years old
## 8080             17 years old
## 8081             14 years old
## 8082             15 years old
## 8083    18 years old or older
## 8084             15 years old
## 8085             17 years old
## 8086             16 years old
## 8087             16 years old
## 8088             15 years old
## 8089             16 years old
## 8090    18 years old or older
## 8091             17 years old
## 8092    18 years old or older
## 8093             17 years old
## 8094             16 years old
## 8095             17 years old
## 8096             17 years old
## 8097             16 years old
## 8098             16 years old
## 8099             16 years old
## 8100             16 years old
## 8101             16 years old
## 8102             15 years old
## 8103             17 years old
## 8104             17 years old
## 8105             15 years old
## 8106             16 years old
## 8107             17 years old
## 8108             16 years old
## 8109             16 years old
## 8110             17 years old
## 8111             17 years old
## 8112             17 years old
## 8113             17 years old
## 8114             17 years old
## 8115             17 years old
## 8116             16 years old
## 8117             17 years old
## 8118             17 years old
## 8119    18 years old or older
## 8120             17 years old
## 8121             17 years old
## 8122             17 years old
## 8123             16 years old
## 8124             17 years old
## 8125    18 years old or older
## 8126    18 years old or older
## 8127             14 years old
## 8128             17 years old
## 8129             15 years old
## 8130             17 years old
## 8131             16 years old
## 8132             17 years old
## 8133             16 years old
## 8134             17 years old
## 8135             15 years old
## 8136             15 years old
## 8137    18 years old or older
## 8138             16 years old
## 8139    18 years old or older
## 8140    18 years old or older
## 8141             15 years old
## 8142             14 years old
## 8143             17 years old
## 8144             17 years old
## 8145                     <NA>
## 8146             17 years old
## 8147    18 years old or older
## 8148             15 years old
## 8149             17 years old
## 8150             17 years old
## 8151             15 years old
## 8152    18 years old or older
## 8153             14 years old
## 8154    18 years old or older
## 8155    18 years old or older
## 8156             15 years old
## 8157             15 years old
## 8158             17 years old
## 8159             16 years old
## 8160             17 years old
## 8161             17 years old
## 8162             15 years old
## 8163             17 years old
## 8164    18 years old or older
## 8165             17 years old
## 8166             16 years old
## 8167             16 years old
## 8168             16 years old
## 8169    18 years old or older
## 8170             17 years old
## 8171             15 years old
## 8172             17 years old
## 8173             17 years old
## 8174    18 years old or older
## 8175             15 years old
## 8176             15 years old
## 8177             15 years old
## 8178             16 years old
## 8179    18 years old or older
## 8180             16 years old
## 8181    18 years old or older
## 8182             16 years old
## 8183    18 years old or older
## 8184             17 years old
## 8185             16 years old
## 8186             16 years old
## 8187             17 years old
## 8188             14 years old
## 8189             15 years old
## 8190             16 years old
## 8191             17 years old
## 8192             15 years old
## 8193    18 years old or older
## 8194             16 years old
## 8195    18 years old or older
## 8196    18 years old or older
## 8197             17 years old
## 8198             15 years old
## 8199             15 years old
## 8200             16 years old
## 8201             14 years old
## 8202             16 years old
## 8203    18 years old or older
## 8204             17 years old
## 8205             16 years old
## 8206             16 years old
## 8207    18 years old or older
## 8208             16 years old
## 8209             15 years old
## 8210             16 years old
## 8211    18 years old or older
## 8212             14 years old
## 8213             15 years old
## 8214             14 years old
## 8215             15 years old
## 8216             16 years old
## 8217    18 years old or older
## 8218             14 years old
## 8219             16 years old
## 8220             15 years old
## 8221             15 years old
## 8222             15 years old
## 8223             16 years old
## 8224             17 years old
## 8225    18 years old or older
## 8226             15 years old
## 8227             17 years old
## 8228             17 years old
## 8229             15 years old
## 8230             16 years old
## 8231             16 years old
## 8232    18 years old or older
## 8233             14 years old
## 8234             15 years old
## 8235             16 years old
## 8236    18 years old or older
## 8237             14 years old
## 8238             15 years old
## 8239             16 years old
## 8240             17 years old
## 8241             15 years old
## 8242             16 years old
## 8243    18 years old or older
## 8244             16 years old
## 8245             16 years old
## 8246             17 years old
## 8247             17 years old
## 8248             16 years old
## 8249             15 years old
## 8250             17 years old
## 8251             15 years old
## 8252             15 years old
## 8253             16 years old
## 8254             17 years old
## 8255    18 years old or older
## 8256             14 years old
## 8257             16 years old
## 8258             16 years old
## 8259             17 years old
## 8260             17 years old
## 8261             16 years old
## 8262             17 years old
## 8263    18 years old or older
## 8264             15 years old
## 8265             16 years old
## 8266             15 years old
## 8267             16 years old
## 8268             14 years old
## 8269             16 years old
## 8270             17 years old
## 8271             14 years old
## 8272             14 years old
## 8273             16 years old
## 8274    18 years old or older
## 8275             15 years old
## 8276             14 years old
## 8277             16 years old
## 8278             17 years old
## 8279    18 years old or older
## 8280             15 years old
## 8281             15 years old
## 8282             15 years old
## 8283             16 years old
## 8284             17 years old
## 8285    18 years old or older
## 8286             14 years old
## 8287             15 years old
## 8288             15 years old
## 8289             16 years old
## 8290             16 years old
## 8291             17 years old
## 8292             15 years old
## 8293             16 years old
## 8294             16 years old
## 8295             17 years old
## 8296             15 years old
## 8297             15 years old
## 8298             16 years old
## 8299             16 years old
## 8300             17 years old
## 8301             15 years old
## 8302             16 years old
## 8303             16 years old
## 8304             17 years old
## 8305    18 years old or older
## 8306             16 years old
## 8307             16 years old
## 8308             16 years old
## 8309    18 years old or older
## 8310             15 years old
## 8311             15 years old
## 8312             17 years old
## 8313             17 years old
## 8314             15 years old
## 8315             16 years old
## 8316             17 years old
## 8317    18 years old or older
## 8318             15 years old
## 8319             16 years old
## 8320             16 years old
## 8321             15 years old
## 8322             15 years old
## 8323             16 years old
## 8324             17 years old
## 8325             17 years old
## 8326             15 years old
## 8327             16 years old
## 8328             16 years old
## 8329    18 years old or older
## 8330             15 years old
## 8331             16 years old
## 8332             17 years old
## 8333             17 years old
## 8334             15 years old
## 8335             16 years old
## 8336             16 years old
## 8337             17 years old
## 8338    18 years old or older
## 8339             17 years old
## 8340    18 years old or older
## 8341             15 years old
## 8342             17 years old
## 8343             17 years old
## 8344             16 years old
## 8345    18 years old or older
## 8346             15 years old
## 8347             16 years old
## 8348    18 years old or older
## 8349             15 years old
## 8350             17 years old
## 8351             16 years old
## 8352    18 years old or older
## 8353    18 years old or older
## 8354             14 years old
## 8355             16 years old
## 8356             15 years old
## 8357             17 years old
## 8358             16 years old
## 8359    18 years old or older
## 8360             14 years old
## 8361             15 years old
## 8362             16 years old
## 8363             17 years old
## 8364             17 years old
## 8365    18 years old or older
## 8366             17 years old
## 8367             15 years old
## 8368             16 years old
## 8369             17 years old
## 8370             15 years old
## 8371             15 years old
## 8372             17 years old
## 8373             15 years old
## 8374             16 years old
## 8375    18 years old or older
## 8376             14 years old
## 8377             16 years old
## 8378             16 years old
## 8379             16 years old
## 8380             15 years old
## 8381             16 years old
## 8382             15 years old
## 8383             16 years old
## 8384             17 years old
## 8385             17 years old
## 8386    18 years old or older
## 8387             15 years old
## 8388             16 years old
## 8389             15 years old
## 8390             17 years old
## 8391             16 years old
## 8392             16 years old
## 8393    18 years old or older
## 8394             14 years old
## 8395             17 years old
## 8396             14 years old
## 8397  12 years old or younger
## 8398             16 years old
## 8399             17 years old
## 8400             17 years old
## 8401             16 years old
## 8402    18 years old or older
## 8403             14 years old
## 8404             16 years old
## 8405             17 years old
## 8406             14 years old
## 8407             17 years old
## 8408    18 years old or older
## 8409             15 years old
## 8410             16 years old
## 8411             16 years old
## 8412             17 years old
## 8413             17 years old
## 8414             15 years old
## 8415             16 years old
## 8416             14 years old
## 8417    18 years old or older
## 8418             17 years old
## 8419             15 years old
## 8420             16 years old
## 8421             15 years old
## 8422             15 years old
## 8423             15 years old
## 8424             16 years old
## 8425    18 years old or older
## 8426             17 years old
## 8427             15 years old
## 8428    18 years old or older
## 8429             15 years old
## 8430             16 years old
## 8431             16 years old
## 8432             17 years old
## 8433             14 years old
## 8434             17 years old
## 8435             17 years old
## 8436             17 years old
## 8437             17 years old
## 8438             17 years old
## 8439             14 years old
## 8440             17 years old
## 8441             15 years old
## 8442             15 years old
## 8443             17 years old
## 8444    18 years old or older
## 8445             15 years old
## 8446             16 years old
## 8447             15 years old
## 8448             17 years old
## 8449             16 years old
## 8450             16 years old
## 8451    18 years old or older
## 8452             15 years old
## 8453             16 years old
## 8454             15 years old
## 8455             16 years old
## 8456             16 years old
## 8457             17 years old
## 8458             15 years old
## 8459             16 years old
## 8460    18 years old or older
## 8461             17 years old
## 8462             16 years old
## 8463             17 years old
## 8464    18 years old or older
## 8465             14 years old
## 8466             15 years old
## 8467             17 years old
## 8468             15 years old
## 8469             17 years old
## 8470             16 years old
## 8471             17 years old
## 8472    18 years old or older
## 8473             14 years old
## 8474             16 years old
## 8475             16 years old
## 8476             17 years old
## 8477    18 years old or older
## 8478             15 years old
## 8479             15 years old
## 8480             15 years old
## 8481             17 years old
## 8482             16 years old
## 8483             17 years old
## 8484             17 years old
## 8485    18 years old or older
## 8486             16 years old
## 8487             14 years old
## 8488             17 years old
## 8489             17 years old
## 8490             15 years old
## 8491             16 years old
## 8492             17 years old
## 8493    18 years old or older
## 8494             15 years old
## 8495             14 years old
## 8496             17 years old
## 8497             17 years old
## 8498             15 years old
## 8499             15 years old
## 8500             17 years old
## 8501    18 years old or older
## 8502             15 years old
## 8503             14 years old
## 8504             16 years old
## 8505             17 years old
## 8506             16 years old
## 8507             15 years old
## 8508             16 years old
## 8509             17 years old
## 8510             15 years old
## 8511             15 years old
## 8512             17 years old
## 8513             17 years old
## 8514             16 years old
## 8515             17 years old
## 8516             15 years old
## 8517             14 years old
## 8518             16 years old
## 8519             15 years old
## 8520             14 years old
## 8521             16 years old
## 8522             15 years old
## 8523             17 years old
## 8524             17 years old
## 8525             16 years old
## 8526             16 years old
## 8527             16 years old
## 8528             17 years old
## 8529             17 years old
## 8530             16 years old
## 8531             14 years old
## 8532             17 years old
## 8533             17 years old
## 8534             16 years old
## 8535    18 years old or older
## 8536             17 years old
## 8537             17 years old
## 8538             16 years old
## 8539             15 years old
## 8540             17 years old
## 8541             17 years old
## 8542             16 years old
## 8543             14 years old
## 8544             17 years old
## 8545             17 years old
## 8546             17 years old
## 8547             16 years old
## 8548             15 years old
## 8549             17 years old
## 8550             16 years old
## 8551             15 years old
## 8552             14 years old
## 8553             16 years old
## 8554             17 years old
## 8555             16 years old
## 8556             15 years old
## 8557             17 years old
## 8558             17 years old
## 8559             15 years old
## 8560             15 years old
## 8561             16 years old
## 8562             17 years old
## 8563             16 years old
## 8564             15 years old
## 8565             17 years old
## 8566             15 years old
## 8567             16 years old
## 8568             14 years old
## 8569    18 years old or older
## 8570             15 years old
## 8571             16 years old
## 8572             17 years old
## 8573             16 years old
## 8574             14 years old
## 8575             16 years old
## 8576             17 years old
## 8577             15 years old
## 8578             16 years old
## 8579             17 years old
## 8580             17 years old
## 8581             16 years old
## 8582             15 years old
## 8583             16 years old
## 8584             17 years old
## 8585             16 years old
## 8586             17 years old
## 8587             14 years old
## 8588             17 years old
## 8589             14 years old
## 8590    18 years old or older
## 8591             15 years old
## 8592             17 years old
## 8593             15 years old
## 8594             17 years old
## 8595             17 years old
## 8596             15 years old
## 8597             17 years old
## 8598             16 years old
## 8599             16 years old
## 8600    18 years old or older
## 8601             15 years old
## 8602             17 years old
## 8603             16 years old
## 8604    18 years old or older
## 8605             14 years old
## 8606             17 years old
## 8607             15 years old
## 8608             15 years old
## 8609             16 years old
## 8610             16 years old
## 8611             15 years old
## 8612             17 years old
## 8613             16 years old
## 8614    18 years old or older
## 8615             15 years old
## 8616             16 years old
## 8617             16 years old
## 8618             14 years old
## 8619             17 years old
## 8620             15 years old
## 8621             15 years old
## 8622             16 years old
## 8623             16 years old
## 8624    18 years old or older
## 8625    18 years old or older
## 8626             15 years old
## 8627             17 years old
## 8628             15 years old
## 8629             15 years old
## 8630             17 years old
## 8631             17 years old
## 8632             16 years old
## 8633    18 years old or older
## 8634             17 years old
## 8635             15 years old
## 8636             15 years old
## 8637    18 years old or older
## 8638             14 years old
## 8639    18 years old or older
## 8640             15 years old
## 8641             17 years old
## 8642             15 years old
## 8643  12 years old or younger
## 8644             17 years old
## 8645             15 years old
## 8646             16 years old
## 8647             16 years old
## 8648             15 years old
## 8649             16 years old
## 8650             16 years old
## 8651             17 years old
## 8652             16 years old
## 8653             17 years old
## 8654             17 years old
## 8655    18 years old or older
## 8656    18 years old or older
## 8657    18 years old or older
## 8658             15 years old
## 8659             16 years old
## 8660             15 years old
## 8661             17 years old
## 8662             15 years old
## 8663             17 years old
## 8664             16 years old
## 8665             17 years old
## 8666    18 years old or older
## 8667             15 years old
## 8668    18 years old or older
## 8669             16 years old
## 8670             17 years old
## 8671             16 years old
## 8672    18 years old or older
## 8673             17 years old
## 8674             17 years old
## 8675    18 years old or older
## 8676             17 years old
## 8677    18 years old or older
## 8678             15 years old
## 8679             17 years old
## 8680             15 years old
## 8681             16 years old
## 8682             16 years old
## 8683    18 years old or older
## 8684             16 years old
## 8685    18 years old or older
## 8686             15 years old
## 8687    18 years old or older
## 8688             16 years old
## 8689             15 years old
## 8690             15 years old
## 8691    18 years old or older
## 8692                     <NA>
## 8693             16 years old
## 8694             16 years old
## 8695             15 years old
## 8696    18 years old or older
## 8697             17 years old
## 8698    18 years old or older
## 8699             17 years old
## 8700             15 years old
## 8701             17 years old
## 8702             15 years old
## 8703             17 years old
## 8704             15 years old
## 8705             16 years old
## 8706             17 years old
## 8707             17 years old
## 8708             15 years old
## 8709    18 years old or older
## 8710    18 years old or older
## 8711             17 years old
## 8712             16 years old
## 8713             17 years old
## 8714             15 years old
## 8715             16 years old
## 8716             15 years old
## 8717             15 years old
## 8718             17 years old
## 8719             16 years old
## 8720             16 years old
## 8721             17 years old
## 8722             16 years old
## 8723    18 years old or older
## 8724             17 years old
## 8725             16 years old
## 8726             17 years old
## 8727             16 years old
## 8728             16 years old
## 8729             17 years old
## 8730             16 years old
## 8731             16 years old
## 8732             17 years old
## 8733             17 years old
## 8734             16 years old
## 8735             16 years old
## 8736             14 years old
## 8737             16 years old
## 8738    18 years old or older
## 8739             14 years old
## 8740             17 years old
## 8741             16 years old
## 8742             17 years old
## 8743             17 years old
## 8744             15 years old
## 8745             16 years old
## 8746             14 years old
## 8747             16 years old
## 8748             15 years old
## 8749             16 years old
## 8750             14 years old
## 8751             17 years old
## 8752    18 years old or older
## 8753             17 years old
## 8754             15 years old
## 8755             16 years old
## 8756             15 years old
## 8757             15 years old
## 8758             17 years old
## 8759             17 years old
## 8760             16 years old
## 8761             17 years old
## 8762             15 years old
## 8763             17 years old
## 8764    18 years old or older
## 8765             17 years old
## 8766             15 years old
## 8767             17 years old
## 8768    18 years old or older
## 8769             17 years old
## 8770             17 years old
## 8771    18 years old or older
## 8772             16 years old
## 8773             15 years old
## 8774             16 years old
## 8775    18 years old or older
## 8776             16 years old
## 8777             16 years old
## 8778    18 years old or older
## 8779             14 years old
## 8780             16 years old
## 8781             15 years old
## 8782             16 years old
## 8783             17 years old
## 8784             16 years old
## 8785             16 years old
## 8786    18 years old or older
## 8787             17 years old
## 8788             17 years old
## 8789             14 years old
## 8790             17 years old
## 8791             15 years old
## 8792             17 years old
## 8793             14 years old
## 8794             16 years old
## 8795             15 years old
## 8796    18 years old or older
## 8797             14 years old
## 8798             15 years old
## 8799             15 years old
## 8800             17 years old
## 8801             17 years old
## 8802             15 years old
## 8803             16 years old
## 8804             17 years old
## 8805             17 years old
## 8806    18 years old or older
## 8807             14 years old
## 8808             16 years old
## 8809             16 years old
## 8810             15 years old
## 8811             15 years old
## 8812             16 years old
## 8813             14 years old
## 8814             15 years old
## 8815             15 years old
## 8816             17 years old
## 8817             14 years old
## 8818             17 years old
## 8819             15 years old
## 8820             16 years old
## 8821             15 years old
## 8822             16 years old
## 8823             14 years old
## 8824             16 years old
## 8825             15 years old
## 8826             14 years old
## 8827             16 years old
## 8828             15 years old
## 8829             17 years old
## 8830             15 years old
## 8831    18 years old or older
## 8832             15 years old
## 8833    18 years old or older
## 8834    18 years old or older
## 8835             15 years old
## 8836    18 years old or older
## 8837             15 years old
## 8838             17 years old
## 8839             14 years old
## 8840             16 years old
## 8841    18 years old or older
## 8842    18 years old or older
## 8843             15 years old
## 8844    18 years old or older
## 8845             15 years old
## 8846    18 years old or older
## 8847    18 years old or older
## 8848             15 years old
## 8849             17 years old
## 8850             14 years old
## 8851             15 years old
## 8852             14 years old
## 8853    18 years old or older
## 8854             14 years old
## 8855    18 years old or older
## 8856             17 years old
## 8857             16 years old
## 8858    18 years old or older
## 8859             14 years old
## 8860    18 years old or older
## 8861             16 years old
## 8862    18 years old or older
## 8863             16 years old
## 8864    18 years old or older
## 8865             16 years old
## 8866    18 years old or older
## 8867             14 years old
## 8868             17 years old
## 8869    18 years old or older
## 8870             16 years old
## 8871             15 years old
## 8872    18 years old or older
## 8873             15 years old
## 8874    18 years old or older
## 8875             15 years old
## 8876             17 years old
## 8877             14 years old
## 8878    18 years old or older
## 8879             15 years old
## 8880             15 years old
## 8881    18 years old or older
## 8882             14 years old
## 8883    18 years old or older
## 8884    18 years old or older
## 8885             15 years old
## 8886    18 years old or older
## 8887             15 years old
## 8888    18 years old or older
## 8889             15 years old
## 8890    18 years old or older
## 8891             15 years old
## 8892    18 years old or older
## 8893             14 years old
## 8894             17 years old
## 8895             14 years old
## 8896    18 years old or older
## 8897             16 years old
## 8898    18 years old or older
## 8899    18 years old or older
## 8900             16 years old
## 8901             15 years old
## 8902             16 years old
## 8903    18 years old or older
## 8904             16 years old
## 8905             16 years old
## 8906             17 years old
## 8907             17 years old
## 8908             16 years old
## 8909    18 years old or older
## 8910             16 years old
## 8911             17 years old
## 8912    18 years old or older
## 8913             17 years old
## 8914             16 years old
## 8915             17 years old
## 8916    18 years old or older
## 8917             17 years old
## 8918    18 years old or older
## 8919             16 years old
## 8920             15 years old
## 8921             17 years old
## 8922    18 years old or older
## 8923             17 years old
## 8924             17 years old
## 8925             15 years old
## 8926             16 years old
## 8927             17 years old
## 8928    18 years old or older
## 8929             17 years old
## 8930    18 years old or older
## 8931             17 years old
## 8932             16 years old
## 8933             16 years old
## 8934    18 years old or older
## 8935             17 years old
## 8936             17 years old
## 8937             16 years old
## 8938             16 years old
## 8939             17 years old
## 8940             17 years old
## 8941             16 years old
## 8942             17 years old
## 8943    18 years old or older
## 8944             17 years old
## 8945             17 years old
## 8946             16 years old
## 8947    18 years old or older
## 8948             17 years old
## 8949             17 years old
## 8950    18 years old or older
## 8951             15 years old
## 8952             17 years old
## 8953             17 years old
## 8954             15 years old
## 8955             16 years old
## 8956             16 years old
## 8957    18 years old or older
## 8958             16 years old
## 8959             16 years old
## 8960             16 years old
## 8961             17 years old
## 8962             17 years old
## 8963    18 years old or older
## 8964             16 years old
## 8965             16 years old
## 8966             16 years old
## 8967    18 years old or older
## 8968             16 years old
## 8969    18 years old or older
## 8970             16 years old
## 8971    18 years old or older
## 8972             17 years old
## 8973             17 years old
## 8974             16 years old
## 8975             16 years old
## 8976    18 years old or older
## 8977    18 years old or older
## 8978             16 years old
## 8979    18 years old or older
## 8980             17 years old
## 8981             16 years old
## 8982    18 years old or older
## 8983             16 years old
## 8984             16 years old
## 8985             16 years old
## 8986             17 years old
## 8987             16 years old
## 8988             16 years old
## 8989             16 years old
## 8990             17 years old
## 8991             15 years old
## 8992             16 years old
## 8993             16 years old
## 8994    18 years old or older
## 8995    18 years old or older
## 8996             17 years old
## 8997             16 years old
## 8998    18 years old or older
## 8999             17 years old
## 9000             17 years old
## 9001    18 years old or older
## 9002             16 years old
## 9003             17 years old
## 9004    18 years old or older
## 9005             15 years old
## 9006             16 years old
## 9007    18 years old or older
## 9008    18 years old or older
## 9009    18 years old or older
## 9010    18 years old or older
## 9011             17 years old
## 9012             17 years old
## 9013    18 years old or older
## 9014             17 years old
## 9015             17 years old
## 9016             15 years old
## 9017    18 years old or older
## 9018    18 years old or older
## 9019             16 years old
## 9020    18 years old or older
## 9021             16 years old
## 9022             17 years old
## 9023             17 years old
## 9024             16 years old
## 9025             15 years old
## 9026    18 years old or older
## 9027             17 years old
## 9028             17 years old
## 9029             16 years old
## 9030             15 years old
## 9031    18 years old or older
## 9032             17 years old
## 9033             17 years old
## 9034             16 years old
## 9035             15 years old
## 9036             16 years old
## 9037    18 years old or older
## 9038             17 years old
## 9039             16 years old
## 9040             16 years old
## 9041             15 years old
## 9042    18 years old or older
## 9043             17 years old
## 9044             16 years old
## 9045             17 years old
## 9046             16 years old
## 9047             17 years old
## 9048             15 years old
## 9049             16 years old
## 9050             14 years old
## 9051             17 years old
## 9052             16 years old
## 9053             15 years old
## 9054    18 years old or older
## 9055    18 years old or older
## 9056             16 years old
## 9057             17 years old
## 9058             15 years old
## 9059             16 years old
## 9060             16 years old
## 9061             15 years old
## 9062    18 years old or older
## 9063    18 years old or older
## 9064             16 years old
## 9065             16 years old
## 9066             14 years old
## 9067             15 years old
## 9068             17 years old
## 9069             17 years old
## 9070             17 years old
## 9071             15 years old
## 9072             15 years old
## 9073    18 years old or older
## 9074    18 years old or older
## 9075             16 years old
## 9076             16 years old
## 9077             16 years old
## 9078             16 years old
## 9079    18 years old or older
## 9080             17 years old
## 9081             16 years old
## 9082             17 years old
## 9083             15 years old
## 9084             17 years old
## 9085             16 years old
## 9086             16 years old
## 9087             17 years old
## 9088             15 years old
## 9089             17 years old
## 9090             16 years old
## 9091    18 years old or older
## 9092    18 years old or older
## 9093             15 years old
## 9094             17 years old
## 9095             16 years old
## 9096             15 years old
## 9097             17 years old
## 9098             15 years old
## 9099    18 years old or older
## 9100    18 years old or older
## 9101             14 years old
## 9102    18 years old or older
## 9103    18 years old or older
## 9104             15 years old
## 9105    18 years old or older
## 9106    18 years old or older
## 9107             14 years old
## 9108    18 years old or older
## 9109             15 years old
## 9110    18 years old or older
## 9111             15 years old
## 9112             17 years old
## 9113             14 years old
## 9114    18 years old or older
## 9115             15 years old
## 9116             16 years old
## 9117    18 years old or older
## 9118             17 years old
## 9119             17 years old
## 9120    18 years old or older
## 9121    18 years old or older
## 9122             16 years old
## 9123             17 years old
## 9124             15 years old
## 9125             17 years old
## 9126             17 years old
## 9127             16 years old
## 9128             16 years old
## 9129             14 years old
## 9130             17 years old
## 9131             15 years old
## 9132             15 years old
## 9133    18 years old or older
## 9134             15 years old
## 9135             16 years old
## 9136             15 years old
## 9137             15 years old
## 9138             16 years old
## 9139             15 years old
## 9140             16 years old
## 9141             17 years old
## 9142             16 years old
## 9143             15 years old
## 9144             14 years old
## 9145             17 years old
## 9146             15 years old
## 9147             15 years old
## 9148    18 years old or older
## 9149             14 years old
## 9150             17 years old
## 9151             16 years old
## 9152             15 years old
## 9153             16 years old
## 9154             17 years old
## 9155             15 years old
## 9156             15 years old
## 9157             15 years old
## 9158             15 years old
## 9159             16 years old
## 9160             16 years old
## 9161             16 years old
## 9162             16 years old
## 9163             17 years old
## 9164             14 years old
## 9165             15 years old
## 9166             15 years old
## 9167             15 years old
## 9168             17 years old
## 9169             16 years old
## 9170             15 years old
## 9171             16 years old
## 9172             17 years old
## 9173             16 years old
## 9174    18 years old or older
## 9175    18 years old or older
## 9176             14 years old
## 9177    18 years old or older
## 9178             15 years old
## 9179             15 years old
## 9180    18 years old or older
## 9181             16 years old
## 9182             17 years old
## 9183             16 years old
## 9184             15 years old
## 9185             14 years old
## 9186             15 years old
## 9187             15 years old
## 9188             16 years old
## 9189             14 years old
## 9190    18 years old or older
## 9191             16 years old
## 9192             15 years old
## 9193             15 years old
## 9194             16 years old
## 9195             15 years old
## 9196    18 years old or older
## 9197             15 years old
## 9198             14 years old
## 9199             16 years old
## 9200             15 years old
## 9201             15 years old
## 9202             17 years old
## 9203    18 years old or older
## 9204             14 years old
## 9205             17 years old
## 9206             15 years old
## 9207             15 years old
## 9208             15 years old
## 9209             17 years old
## 9210             17 years old
## 9211             17 years old
## 9212             16 years old
## 9213             16 years old
## 9214             16 years old
## 9215             17 years old
## 9216             17 years old
## 9217             17 years old
## 9218    18 years old or older
## 9219             16 years old
## 9220             17 years old
## 9221             16 years old
## 9222             15 years old
## 9223             16 years old
## 9224             16 years old
## 9225             14 years old
## 9226    18 years old or older
## 9227             16 years old
## 9228             14 years old
## 9229             14 years old
## 9230             17 years old
## 9231             15 years old
## 9232             16 years old
## 9233             16 years old
## 9234             16 years old
## 9235             15 years old
## 9236             15 years old
## 9237             14 years old
## 9238             15 years old
## 9239             17 years old
## 9240             16 years old
## 9241             16 years old
## 9242             16 years old
## 9243             15 years old
## 9244             15 years old
## 9245             15 years old
## 9246             16 years old
## 9247             16 years old
## 9248             17 years old
## 9249             17 years old
## 9250             15 years old
## 9251             16 years old
## 9252             15 years old
## 9253             15 years old
## 9254             16 years old
## 9255    18 years old or older
## 9256             15 years old
## 9257             16 years old
## 9258    18 years old or older
## 9259             17 years old
## 9260             15 years old
## 9261    18 years old or older
## 9262             17 years old
## 9263    18 years old or older
## 9264    18 years old or older
## 9265             15 years old
## 9266             17 years old
## 9267    18 years old or older
## 9268             17 years old
## 9269             16 years old
## 9270             16 years old
## 9271             15 years old
## 9272             17 years old
## 9273    18 years old or older
## 9274    18 years old or older
## 9275             15 years old
## 9276             15 years old
## 9277             17 years old
## 9278    18 years old or older
## 9279             16 years old
## 9280             17 years old
## 9281             16 years old
## 9282             16 years old
## 9283             16 years old
## 9284    18 years old or older
## 9285             17 years old
## 9286    18 years old or older
## 9287             16 years old
## 9288    18 years old or older
## 9289             16 years old
## 9290             16 years old
## 9291    18 years old or older
## 9292             16 years old
## 9293             17 years old
## 9294    18 years old or older
## 9295             16 years old
## 9296             17 years old
## 9297    18 years old or older
## 9298             15 years old
## 9299    18 years old or older
## 9300    18 years old or older
## 9301             17 years old
## 9302             15 years old
## 9303             16 years old
## 9304             16 years old
## 9305    18 years old or older
## 9306             16 years old
## 9307             16 years old
## 9308             15 years old
## 9309             17 years old
## 9310             17 years old
## 9311             16 years old
## 9312             15 years old
## 9313             15 years old
## 9314    18 years old or older
## 9315             16 years old
## 9316             15 years old
## 9317             15 years old
## 9318    18 years old or older
## 9319             17 years old
## 9320             15 years old
## 9321             15 years old
## 9322             17 years old
## 9323    18 years old or older
## 9324             16 years old
## 9325             16 years old
## 9326    18 years old or older
## 9327             16 years old
## 9328             15 years old
## 9329             17 years old
## 9330             14 years old
## 9331             15 years old
## 9332             17 years old
## 9333             16 years old
## 9334             15 years old
## 9335             17 years old
## 9336    18 years old or older
## 9337             14 years old
## 9338             15 years old
## 9339             17 years old
## 9340    18 years old or older
## 9341             15 years old
## 9342             17 years old
## 9343             17 years old
## 9344             15 years old
## 9345             14 years old
## 9346             17 years old
## 9347    18 years old or older
## 9348             16 years old
## 9349             16 years old
## 9350             15 years old
## 9351    18 years old or older
## 9352             16 years old
## 9353             15 years old
## 9354             16 years old
## 9355    18 years old or older
## 9356             14 years old
## 9357             14 years old
## 9358             15 years old
## 9359             15 years old
## 9360             15 years old
## 9361             14 years old
## 9362             16 years old
## 9363             15 years old
## 9364             15 years old
## 9365             15 years old
## 9366             15 years old
## 9367             16 years old
## 9368             16 years old
## 9369             17 years old
## 9370             16 years old
## 9371    18 years old or older
## 9372    18 years old or older
## 9373             16 years old
## 9374    18 years old or older
## 9375             17 years old
## 9376    18 years old or older
## 9377             16 years old
## 9378             17 years old
## 9379             16 years old
## 9380             17 years old
## 9381             17 years old
## 9382             16 years old
## 9383    18 years old or older
## 9384    18 years old or older
## 9385             15 years old
## 9386             15 years old
## 9387             16 years old
## 9388             16 years old
## 9389             16 years old
## 9390    18 years old or older
## 9391             17 years old
## 9392             15 years old
## 9393             16 years old
## 9394             17 years old
## 9395    18 years old or older
## 9396             17 years old
## 9397             17 years old
## 9398    18 years old or older
## 9399             16 years old
## 9400             17 years old
## 9401             17 years old
## 9402             16 years old
## 9403    18 years old or older
## 9404    18 years old or older
## 9405             17 years old
## 9406             17 years old
## 9407             15 years old
## 9408             16 years old
## 9409             17 years old
## 9410             16 years old
## 9411    18 years old or older
## 9412    18 years old or older
## 9413             16 years old
## 9414    18 years old or older
## 9415             16 years old
## 9416    18 years old or older
## 9417             16 years old
## 9418             17 years old
## 9419             15 years old
## 9420             17 years old
## 9421             17 years old
## 9422             14 years old
## 9423             17 years old
## 9424             16 years old
## 9425             16 years old
## 9426    18 years old or older
## 9427    18 years old or older
## 9428    18 years old or older
## 9429    18 years old or older
## 9430             15 years old
## 9431             16 years old
## 9432             16 years old
## 9433    18 years old or older
## 9434             16 years old
## 9435             16 years old
## 9436             16 years old
## 9437    18 years old or older
## 9438             16 years old
## 9439             15 years old
## 9440             17 years old
## 9441             17 years old
## 9442             16 years old
## 9443    18 years old or older
## 9444    18 years old or older
## 9445    18 years old or older
## 9446             15 years old
## 9447             17 years old
## 9448             16 years old
## 9449    18 years old or older
## 9450             17 years old
## 9451             15 years old
## 9452             17 years old
## 9453             15 years old
## 9454    18 years old or older
## 9455             15 years old
## 9456             17 years old
## 9457             15 years old
## 9458             16 years old
## 9459    18 years old or older
## 9460             15 years old
## 9461             16 years old
## 9462             17 years old
## 9463             17 years old
## 9464    18 years old or older
## 9465             15 years old
## 9466    18 years old or older
## 9467             17 years old
## 9468             17 years old
## 9469             17 years old
## 9470             17 years old
## 9471             17 years old
## 9472             15 years old
## 9473             15 years old
## 9474             15 years old
## 9475             15 years old
## 9476             15 years old
## 9477             15 years old
## 9478             15 years old
## 9479             15 years old
## 9480             14 years old
## 9481             15 years old
## 9482             14 years old
## 9483             14 years old
## 9484             15 years old
## 9485             15 years old
## 9486             15 years old
## 9487             15 years old
## 9488             15 years old
## 9489             15 years old
## 9490             15 years old
## 9491             15 years old
## 9492             14 years old
## 9493             15 years old
## 9494             15 years old
## 9495             15 years old
## 9496             15 years old
## 9497             14 years old
## 9498             15 years old
## 9499             14 years old
## 9500             14 years old
## 9501             14 years old
## 9502             15 years old
## 9503             15 years old
## 9504             15 years old
## 9505             14 years old
## 9506             17 years old
## 9507             15 years old
## 9508             16 years old
## 9509             17 years old
## 9510             17 years old
## 9511    18 years old or older
## 9512             16 years old
## 9513             16 years old
## 9514             17 years old
## 9515             16 years old
## 9516             16 years old
## 9517             16 years old
## 9518             16 years old
## 9519             17 years old
## 9520             15 years old
## 9521             17 years old
## 9522    18 years old or older
## 9523             15 years old
## 9524             17 years old
## 9525             16 years old
## 9526             15 years old
## 9527             16 years old
## 9528    18 years old or older
## 9529             16 years old
## 9530             16 years old
## 9531             17 years old
## 9532             16 years old
## 9533             17 years old
## 9534             16 years old
## 9535             16 years old
## 9536             17 years old
## 9537             15 years old
## 9538             17 years old
## 9539             16 years old
## 9540             16 years old
## 9541             15 years old
## 9542             17 years old
## 9543             16 years old
## 9544             16 years old
## 9545             17 years old
## 9546             16 years old
## 9547             17 years old
## 9548             15 years old
## 9549             17 years old
## 9550    18 years old or older
## 9551             16 years old
## 9552             17 years old
## 9553             17 years old
## 9554             16 years old
## 9555             16 years old
## 9556             16 years old
## 9557             17 years old
## 9558    18 years old or older
## 9559             15 years old
## 9560    18 years old or older
## 9561             16 years old
## 9562    18 years old or older
## 9563             16 years old
## 9564             17 years old
## 9565    18 years old or older
## 9566             16 years old
## 9567    18 years old or older
## 9568             17 years old
## 9569    18 years old or older
## 9570             17 years old
## 9571             17 years old
## 9572             17 years old
## 9573             16 years old
## 9574             16 years old
## 9575             17 years old
## 9576             15 years old
## 9577    18 years old or older
## 9578             16 years old
## 9579             16 years old
## 9580             16 years old
## 9581             17 years old
## 9582             16 years old
## 9583    18 years old or older
## 9584             17 years old
## 9585             16 years old
## 9586             17 years old
## 9587             15 years old
## 9588    18 years old or older
## 9589             17 years old
## 9590             16 years old
## 9591             13 years old
## 9592             17 years old
## 9593             16 years old
## 9594    18 years old or older
## 9595             17 years old
## 9596             16 years old
## 9597             17 years old
## 9598             17 years old
## 9599    18 years old or older
## 9600             16 years old
## 9601             16 years old
## 9602             17 years old
## 9603             16 years old
## 9604    18 years old or older
## 9605             17 years old
## 9606    18 years old or older
## 9607             16 years old
## 9608             17 years old
## 9609             17 years old
## 9610             16 years old
## 9611             17 years old
## 9612             16 years old
## 9613    18 years old or older
## 9614             17 years old
## 9615             17 years old
## 9616             15 years old
## 9617             17 years old
## 9618             16 years old
## 9619             17 years old
## 9620             17 years old
## 9621             17 years old
## 9622    18 years old or older
## 9623             16 years old
## 9624    18 years old or older
## 9625             17 years old
## 9626             16 years old
## 9627    18 years old or older
## 9628             17 years old
## 9629    18 years old or older
## 9630    18 years old or older
## 9631             17 years old
## 9632             16 years old
## 9633             17 years old
## 9634             17 years old
## 9635             16 years old
## 9636             17 years old
## 9637             17 years old
## 9638             17 years old
## 9639             16 years old
## 9640    18 years old or older
## 9641             16 years old
## 9642    18 years old or older
## 9643             17 years old
## 9644             17 years old
## 9645             17 years old
## 9646             15 years old
## 9647             15 years old
## 9648             16 years old
## 9649             15 years old
## 9650             16 years old
## 9651             16 years old
## 9652             16 years old
## 9653             17 years old
## 9654             16 years old
## 9655             17 years old
## 9656             15 years old
## 9657             15 years old
## 9658             15 years old
## 9659             16 years old
## 9660             15 years old
## 9661             16 years old
## 9662             14 years old
## 9663             17 years old
## 9664             17 years old
## 9665             16 years old
## 9666             14 years old
## 9667             17 years old
## 9668             15 years old
## 9669             16 years old
## 9670             15 years old
## 9671             16 years old
## 9672             15 years old
## 9673             16 years old
## 9674             14 years old
## 9675             17 years old
## 9676             14 years old
## 9677             16 years old
## 9678             16 years old
## 9679             17 years old
## 9680    18 years old or older
## 9681             17 years old
## 9682    18 years old or older
## 9683             16 years old
## 9684             17 years old
## 9685             16 years old
## 9686    18 years old or older
## 9687             16 years old
## 9688    18 years old or older
## 9689             15 years old
## 9690    18 years old or older
## 9691             16 years old
## 9692    18 years old or older
## 9693             17 years old
## 9694             17 years old
## 9695    18 years old or older
## 9696    18 years old or older
## 9697             16 years old
## 9698             17 years old
## 9699             16 years old
## 9700             17 years old
## 9701             16 years old
## 9702             16 years old
## 9703             17 years old
## 9704    18 years old or older
## 9705             17 years old
## 9706             17 years old
## 9707             15 years old
## 9708             16 years old
## 9709    18 years old or older
## 9710             16 years old
## 9711             16 years old
## 9712             16 years old
## 9713    18 years old or older
## 9714             16 years old
## 9715             16 years old
## 9716             16 years old
## 9717             17 years old
## 9718             17 years old
## 9719             17 years old
## 9720             17 years old
## 9721             15 years old
## 9722             16 years old
## 9723             15 years old
## 9724             16 years old
## 9725             17 years old
## 9726             14 years old
## 9727             17 years old
## 9728             16 years old
## 9729             17 years old
## 9730             15 years old
## 9731             16 years old
## 9732    18 years old or older
## 9733    18 years old or older
## 9734             15 years old
## 9735             17 years old
## 9736             15 years old
## 9737             16 years old
## 9738             14 years old
## 9739    18 years old or older
## 9740             17 years old
## 9741             15 years old
## 9742             17 years old
## 9743             16 years old
## 9744             16 years old
## 9745             15 years old
## 9746             17 years old
## 9747    18 years old or older
## 9748             15 years old
## 9749             17 years old
## 9750             16 years old
## 9751             16 years old
## 9752             15 years old
## 9753             16 years old
## 9754    18 years old or older
## 9755             15 years old
## 9756             17 years old
## 9757             15 years old
## 9758             17 years old
## 9759    18 years old or older
## 9760             14 years old
## 9761             17 years old
## 9762             16 years old
## 9763             16 years old
## 9764             15 years old
## 9765             17 years old
## 9766    18 years old or older
## 9767    18 years old or older
## 9768             17 years old
## 9769             16 years old
## 9770             16 years old
## 9771             14 years old
## 9772             17 years old
## 9773             17 years old
## 9774    18 years old or older
## 9775             15 years old
## 9776             17 years old
## 9777             15 years old
## 9778             15 years old
## 9779             15 years old
## 9780    18 years old or older
## 9781    18 years old or older
## 9782             15 years old
## 9783             17 years old
## 9784             16 years old
## 9785             14 years old
## 9786             15 years old
## 9787             15 years old
## 9788    18 years old or older
## 9789    18 years old or older
## 9790             15 years old
## 9791             17 years old
## 9792             16 years old
## 9793             16 years old
## 9794             15 years old
## 9795             16 years old
## 9796             15 years old
## 9797    18 years old or older
## 9798             16 years old
## 9799             15 years old
## 9800             15 years old
## 9801             17 years old
## 9802             17 years old
## 9803    18 years old or older
## 9804             15 years old
## 9805             16 years old
## 9806             17 years old
## 9807             16 years old
## 9808             17 years old
## 9809             16 years old
## 9810             15 years old
## 9811             17 years old
## 9812    18 years old or older
## 9813             17 years old
## 9814             15 years old
## 9815             17 years old
## 9816             16 years old
## 9817             16 years old
## 9818             14 years old
## 9819             17 years old
## 9820             17 years old
## 9821             15 years old
## 9822             17 years old
## 9823             16 years old
## 9824             16 years old
## 9825             15 years old
## 9826             17 years old
## 9827    18 years old or older
## 9828    18 years old or older
## 9829             15 years old
## 9830             17 years old
## 9831             15 years old
## 9832             16 years old
## 9833             15 years old
## 9834    18 years old or older
## 9835             17 years old
## 9836    18 years old or older
## 9837             14 years old
## 9838             16 years old
## 9839             15 years old
## 9840             15 years old
## 9841             15 years old
## 9842             17 years old
## 9843    18 years old or older
## 9844    18 years old or older
## 9845             14 years old
## 9846             17 years old
## 9847             16 years old
## 9848             17 years old
## 9849             15 years old
## 9850             16 years old
## 9851    18 years old or older
## 9852    18 years old or older
## 9853             14 years old
## 9854             16 years old
## 9855             15 years old
## 9856             15 years old
## 9857             15 years old
## 9858             15 years old
## 9859             16 years old
## 9860             15 years old
## 9861             15 years old
## 9862             15 years old
## 9863             17 years old
## 9864             17 years old
## 9865             17 years old
## 9866             16 years old
## 9867             16 years old
## 9868             17 years old
## 9869             17 years old
## 9870    18 years old or older
## 9871    18 years old or older
## 9872    18 years old or older
## 9873    18 years old or older
## 9874    18 years old or older
## 9875             16 years old
## 9876             17 years old
## 9877    18 years old or older
## 9878             17 years old
## 9879             17 years old
## 9880    18 years old or older
## 9881    18 years old or older
## 9882             17 years old
## 9883             17 years old
## 9884             17 years old
## 9885             17 years old
## 9886    18 years old or older
## 9887    18 years old or older
## 9888             17 years old
## 9889    18 years old or older
## 9890             17 years old
## 9891             16 years old
## 9892    18 years old or older
## 9893    18 years old or older
## 9894             17 years old
## 9895             17 years old
## 9896             16 years old
## 9897    18 years old or older
## 9898             16 years old
## 9899    18 years old or older
## 9900             17 years old
## 9901    18 years old or older
## 9902             17 years old
## 9903             17 years old
## 9904             17 years old
## 9905    18 years old or older
## 9906             17 years old
## 9907    18 years old or older
## 9908    18 years old or older
## 9909             17 years old
## 9910             16 years old
## 9911             16 years old
## 9912             15 years old
## 9913             15 years old
## 9914             15 years old
## 9915             17 years old
## 9916             15 years old
## 9917             17 years old
## 9918             16 years old
## 9919             16 years old
## 9920             16 years old
## 9921             17 years old
## 9922             17 years old
## 9923    18 years old or older
## 9924             17 years old
## 9925             14 years old
## 9926             17 years old
## 9927             15 years old
## 9928             15 years old
## 9929    18 years old or older
## 9930             15 years old
## 9931             14 years old
## 9932             16 years old
## 9933             17 years old
## 9934             15 years old
## 9935             17 years old
## 9936             15 years old
## 9937             15 years old
## 9938             17 years old
## 9939             16 years old
## 9940    18 years old or older
## 9941             15 years old
## 9942             15 years old
## 9943             15 years old
## 9944             16 years old
## 9945             16 years old
## 9946             14 years old
## 9947             17 years old
## 9948             17 years old
## 9949             16 years old
## 9950             16 years old
## 9951             16 years old
## 9952             15 years old
## 9953             15 years old
## 9954             15 years old
## 9955             15 years old
## 9956             14 years old
## 9957  12 years old or younger
## 9958             15 years old
## 9959             15 years old
## 9960             16 years old
## 9961             14 years old
## 9962             15 years old
## 9963             15 years old
## 9964             15 years old
## 9965             15 years old
## 9966             15 years old
## 9967             16 years old
## 9968             16 years old
## 9969             15 years old
## 9970             14 years old
## 9971    18 years old or older
## 9972             17 years old
## 9973             17 years old
## 9974             17 years old
## 9975             15 years old
## 9976             17 years old
## 9977             15 years old
## 9978             17 years old
## 9979             17 years old
## 9980             16 years old
## 9981             15 years old
## 9982             14 years old
## 9983             16 years old
## 9984    18 years old or older
## 9985             16 years old
## 9986             16 years old
## 9987    18 years old or older
## 9988             17 years old
## 9989             15 years old
## 9990             16 years old
## 9991             15 years old
## 9992             15 years old
## 9993             17 years old
## 9994             16 years old
## 9995             15 years old
## 9996             17 years old
## 9997             16 years old
## 9998             16 years old
## 9999             16 years old
## 10000            14 years old
## 10001            16 years old
## 10002            16 years old
## 10003            16 years old
## 10004            15 years old
## 10005            17 years old
## 10006            15 years old
## 10007            16 years old
## 10008            15 years old
## 10009   18 years old or older
## 10010            17 years old
## 10011            15 years old
## 10012            16 years old
## 10013            15 years old
## 10014            15 years old
## 10015            17 years old
## 10016            16 years old
## 10017            17 years old
## 10018            15 years old
## 10019            16 years old
## 10020            15 years old
## 10021            15 years old
## 10022            16 years old
## 10023            15 years old
## 10024            17 years old
## 10025            16 years old
## 10026            17 years old
## 10027            17 years old
## 10028            17 years old
## 10029            16 years old
## 10030            14 years old
## 10031            17 years old
## 10032            14 years old
## 10033            16 years old
## 10034            16 years old
## 10035            17 years old
## 10036            14 years old
## 10037            15 years old
## 10038            14 years old
## 10039            17 years old
## 10040            15 years old
## 10041            15 years old
## 10042            14 years old
## 10043            16 years old
## 10044            17 years old
## 10045            17 years old
## 10046            15 years old
## 10047            14 years old
## 10048            16 years old
## 10049            14 years old
## 10050            17 years old
## 10051   18 years old or older
## 10052            17 years old
## 10053            15 years old
## 10054            15 years old
## 10055            17 years old
## 10056   18 years old or older
## 10057            16 years old
## 10058            17 years old
## 10059            16 years old
## 10060   18 years old or older
## 10061            15 years old
## 10062            15 years old
## 10063            15 years old
## 10064   18 years old or older
## 10065   18 years old or older
## 10066            16 years old
## 10067            17 years old
## 10068            15 years old
## 10069   18 years old or older
## 10070   18 years old or older
## 10071            16 years old
## 10072   18 years old or older
## 10073            16 years old
## 10074   18 years old or older
## 10075            15 years old
## 10076   18 years old or older
## 10077            17 years old
## 10078            16 years old
## 10079            17 years old
## 10080   18 years old or older
## 10081            16 years old
## 10082   18 years old or older
## 10083   18 years old or older
## 10084            16 years old
## 10085            17 years old
## 10086            16 years old
## 10087   18 years old or older
## 10088   18 years old or older
## 10089            16 years old
## 10090            16 years old
## 10091            14 years old
## 10092            16 years old
## 10093            14 years old
## 10094            16 years old
## 10095            15 years old
## 10096   18 years old or older
## 10097            16 years old
## 10098   18 years old or older
## 10099            16 years old
## 10100            15 years old
## 10101            17 years old
## 10102   18 years old or older
## 10103            16 years old
## 10104   18 years old or older
## 10105            16 years old
## 10106            15 years old
## 10107            17 years old
## 10108            14 years old
## 10109   18 years old or older
## 10110   18 years old or older
## 10111            17 years old
## 10112            17 years old
## 10113   18 years old or older
## 10114            17 years old
## 10115            15 years old
## 10116            15 years old
## 10117            17 years old
## 10118            17 years old
## 10119            15 years old
## 10120            14 years old
## 10121            17 years old
## 10122            17 years old
## 10123            15 years old
## 10124            17 years old
## 10125            17 years old
## 10126            15 years old
## 10127   18 years old or older
## 10128            16 years old
## 10129            15 years old
## 10130            15 years old
## 10131   18 years old or older
## 10132            17 years old
## 10133            16 years old
## 10134            17 years old
## 10135            17 years old
## 10136            15 years old
## 10137            15 years old
## 10138   18 years old or older
## 10139            17 years old
## 10140            15 years old
## 10141            15 years old
## 10142   18 years old or older
## 10143            17 years old
## 10144            16 years old
## 10145            14 years old
## 10146            15 years old
## 10147            14 years old
## 10148            15 years old
## 10149            14 years old
## 10150            17 years old
## 10151            17 years old
## 10152            15 years old
## 10153            15 years old
## 10154            17 years old
## 10155            16 years old
## 10156            16 years old
## 10157            14 years old
## 10158            17 years old
## 10159            17 years old
## 10160            16 years old
## 10161            14 years old
## 10162            17 years old
## 10163            17 years old
## 10164            17 years old
## 10165            17 years old
## 10166            17 years old
## 10167            16 years old
## 10168            15 years old
## 10169   18 years old or older
## 10170            16 years old
## 10171            14 years old
## 10172   18 years old or older
## 10173            16 years old
## 10174            15 years old
## 10175   18 years old or older
## 10176            15 years old
## 10177            17 years old
## 10178            15 years old
## 10179            17 years old
## 10180            14 years old
## 10181            17 years old
## 10182            15 years old
## 10183            16 years old
## 10184            14 years old
## 10185            17 years old
## 10186            16 years old
## 10187            17 years old
## 10188            14 years old
## 10189            17 years old
## 10190            17 years old
## 10191            16 years old
## 10192            17 years old
## 10193            17 years old
## 10194            15 years old
## 10195            16 years old
## 10196            16 years old
## 10197   18 years old or older
## 10198            16 years old
## 10199            17 years old
## 10200            15 years old
## 10201   18 years old or older
## 10202            16 years old
## 10203            15 years old
## 10204   18 years old or older
## 10205            14 years old
## 10206   18 years old or older
## 10207            17 years old
## 10208            17 years old
## 10209            17 years old
## 10210            15 years old
## 10211            17 years old
## 10212            16 years old
## 10213   18 years old or older
## 10214            16 years old
## 10215            16 years old
## 10216            15 years old
## 10217            17 years old
## 10218            15 years old
## 10219            16 years old
## 10220            15 years old
## 10221            17 years old
## 10222            17 years old
## 10223            14 years old
## 10224            17 years old
## 10225   18 years old or older
## 10226            17 years old
## 10227            16 years old
## 10228            17 years old
## 10229            15 years old
## 10230            17 years old
## 10231            14 years old
## 10232            17 years old
## 10233            16 years old
## 10234            16 years old
## 10235            15 years old
## 10236   18 years old or older
## 10237            15 years old
## 10238            16 years old
## 10239            15 years old
## 10240            15 years old
## 10241   18 years old or older
## 10242            16 years old
## 10243            16 years old
## 10244            14 years old
## 10245   18 years old or older
## 10246            16 years old
## 10247            17 years old
## 10248            15 years old
## 10249   18 years old or older
## 10250            16 years old
## 10251            14 years old
## 10252            17 years old
## 10253   18 years old or older
## 10254            15 years old
## 10255            17 years old
## 10256            17 years old
## 10257            17 years old
## 10258            16 years old
## 10259            14 years old
## 10260            15 years old
## 10261   18 years old or older
## 10262            17 years old
## 10263            17 years old
## 10264            16 years old
## 10265            16 years old
## 10266            15 years old
## 10267            15 years old
## 10268   18 years old or older
## 10269            17 years old
## 10270            16 years old
## 10271            16 years old
## 10272            14 years old
## 10273            15 years old
## 10274   18 years old or older
## 10275            16 years old
## 10276   18 years old or older
## 10277            17 years old
## 10278            15 years old
## 10279            14 years old
## 10280            16 years old
## 10281   18 years old or older
## 10282            17 years old
## 10283            17 years old
## 10284            16 years old
## 10285            15 years old
## 10286            15 years old
## 10287            17 years old
## 10288            17 years old
## 10289            16 years old
## 10290   18 years old or older
## 10291            16 years old
## 10292            15 years old
## 10293            15 years old
## 10294            15 years old
## 10295            17 years old
## 10296            16 years old
## 10297            17 years old
## 10298            16 years old
## 10299            14 years old
## 10300            15 years old
## 10301            16 years old
## 10302   18 years old or older
## 10303   18 years old or older
## 10304            15 years old
## 10305            15 years old
## 10306            15 years old
## 10307            15 years old
## 10308   18 years old or older
## 10309            17 years old
## 10310            14 years old
## 10311            15 years old
## 10312            16 years old
## 10313            17 years old
## 10314            16 years old
## 10315            15 years old
## 10316            15 years old
## 10317            15 years old
## 10318            15 years old
## 10319            14 years old
## 10320            15 years old
## 10321            16 years old
## 10322            17 years old
## 10323            16 years old
## 10324            17 years old
## 10325            17 years old
## 10326            15 years old
## 10327            14 years old
## 10328            15 years old
## 10329            15 years old
## 10330            17 years old
## 10331            15 years old
## 10332            15 years old
## 10333            17 years old
## 10334            15 years old
## 10335            17 years old
## 10336            17 years old
## 10337            14 years old
## 10338            14 years old
## 10339            15 years old
## 10340            17 years old
## 10341            17 years old
## 10342            17 years old
## 10343            15 years old
## 10344            14 years old
## 10345            16 years old
## 10346   18 years old or older
## 10347            16 years old
## 10348            17 years old
## 10349            15 years old
## 10350            14 years old
## 10351            15 years old
## 10352            14 years old
## 10353            14 years old
## 10354            16 years old
## 10355            15 years old
## 10356            17 years old
## 10357   18 years old or older
## 10358            17 years old
## 10359            14 years old
## 10360            15 years old
## 10361   18 years old or older
## 10362            17 years old
## 10363            17 years old
## 10364            14 years old
## 10365            15 years old
## 10366   18 years old or older
## 10367            17 years old
## 10368            17 years old
## 10369            16 years old
## 10370            16 years old
## 10371            17 years old
## 10372   18 years old or older
## 10373            16 years old
## 10374            14 years old
## 10375            15 years old
## 10376            14 years old
## 10377            15 years old
## 10378            14 years old
## 10379            14 years old
## 10380            15 years old
## 10381            16 years old
## 10382            15 years old
## 10383            16 years old
## 10384            17 years old
## 10385            14 years old
## 10386            16 years old
## 10387            15 years old
## 10388            16 years old
## 10389            17 years old
## 10390            16 years old
## 10391            16 years old
## 10392            14 years old
## 10393            14 years old
## 10394            16 years old
## 10395            16 years old
## 10396            17 years old
## 10397            16 years old
## 10398            16 years old
## 10399   18 years old or older
## 10400            15 years old
## 10401            15 years old
## 10402            15 years old
## 10403   18 years old or older
## 10404            17 years old
## 10405            14 years old
## 10406   18 years old or older
## 10407            16 years old
## 10408            17 years old
## 10409            16 years old
## 10410            15 years old
## 10411            17 years old
## 10412            15 years old
## 10413            15 years old
## 10414            16 years old
## 10415            16 years old
## 10416            16 years old
## 10417            17 years old
## 10418            17 years old
## 10419            17 years old
## 10420            14 years old
## 10421            15 years old
## 10422            16 years old
## 10423            15 years old
## 10424            17 years old
## 10425            14 years old
## 10426            14 years old
## 10427            16 years old
## 10428            16 years old
## 10429            16 years old
## 10430            14 years old
## 10431            15 years old
## 10432            16 years old
## 10433            16 years old
## 10434            17 years old
## 10435   18 years old or older
## 10436            15 years old
## 10437            15 years old
## 10438            15 years old
## 10439            15 years old
## 10440            16 years old
## 10441            16 years old
## 10442            17 years old
## 10443            17 years old
## 10444            14 years old
## 10445            15 years old
## 10446            15 years old
## 10447            17 years old
## 10448            16 years old
## 10449            16 years old
## 10450            14 years old
## 10451            15 years old
## 10452            17 years old
## 10453            15 years old
## 10454            17 years old
## 10455            14 years old
## 10456            14 years old
## 10457   18 years old or older
## 10458            17 years old
## 10459   18 years old or older
## 10460            17 years old
## 10461   18 years old or older
## 10462   18 years old or older
## 10463            17 years old
## 10464   18 years old or older
## 10465   18 years old or older
## 10466   18 years old or older
## 10467   18 years old or older
## 10468            17 years old
## 10469   18 years old or older
## 10470   18 years old or older
## 10471   18 years old or older
## 10472            17 years old
## 10473   18 years old or older
## 10474   18 years old or older
## 10475   18 years old or older
## 10476   18 years old or older
## 10477   18 years old or older
## 10478            17 years old
## 10479            17 years old
## 10480            17 years old
## 10481            17 years old
## 10482   18 years old or older
## 10483            16 years old
## 10484   18 years old or older
## 10485   18 years old or older
## 10486            16 years old
## 10487            15 years old
## 10488            17 years old
## 10489            16 years old
## 10490            17 years old
## 10491            15 years old
## 10492            16 years old
## 10493            15 years old
## 10494            17 years old
## 10495            16 years old
## 10496            16 years old
## 10497            17 years old
## 10498            15 years old
## 10499            15 years old
## 10500            17 years old
## 10501            15 years old
## 10502            17 years old
## 10503            15 years old
## 10504 12 years old or younger
## 10505            15 years old
## 10506            17 years old
## 10507            14 years old
## 10508            15 years old
## 10509            16 years old
## 10510            14 years old
## 10511            17 years old
## 10512            15 years old
## 10513            15 years old
## 10514            17 years old
## 10515            15 years old
## 10516            16 years old
## 10517            16 years old
## 10518            15 years old
## 10519            17 years old
## 10520            16 years old
## 10521            14 years old
## 10522            15 years old
## 10523            15 years old
## 10524            16 years old
## 10525            16 years old
## 10526            15 years old
## 10527            15 years old
## 10528            17 years old
## 10529            15 years old
## 10530            17 years old
## 10531            17 years old
## 10532            14 years old
## 10533            16 years old
## 10534            17 years old
## 10535            15 years old
## 10536            16 years old
## 10537            16 years old
## 10538            15 years old
## 10539            15 years old
## 10540            15 years old
## 10541            17 years old
## 10542            17 years old
## 10543            15 years old
## 10544            16 years old
## 10545            16 years old
## 10546            16 years old
## 10547            17 years old
## 10548            15 years old
## 10549            17 years old
## 10550            15 years old
## 10551            17 years old
## 10552            17 years old
## 10553            14 years old
## 10554            15 years old
## 10555            16 years old
## 10556            15 years old
## 10557            16 years old
## 10558            16 years old
## 10559            16 years old
## 10560            16 years old
## 10561            15 years old
## 10562            17 years old
## 10563            16 years old
## 10564            16 years old
## 10565            16 years old
## 10566            16 years old
## 10567            15 years old
## 10568            15 years old
## 10569            16 years old
## 10570            16 years old
## 10571            15 years old
## 10572            15 years old
## 10573            16 years old
## 10574            16 years old
## 10575            16 years old
## 10576   18 years old or older
## 10577   18 years old or older
## 10578   18 years old or older
## 10579   18 years old or older
## 10580   18 years old or older
## 10581   18 years old or older
## 10582   18 years old or older
## 10583            17 years old
## 10584   18 years old or older
## 10585   18 years old or older
## 10586   18 years old or older
## 10587            15 years old
## 10588            15 years old
## 10589            15 years old
## 10590            16 years old
## 10591            16 years old
## 10592            17 years old
## 10593            16 years old
## 10594   18 years old or older
## 10595            16 years old
## 10596            14 years old
## 10597            15 years old
## 10598            17 years old
## 10599   18 years old or older
## 10600            16 years old
## 10601            15 years old
## 10602            15 years old
## 10603            16 years old
## 10604            17 years old
## 10605            17 years old
## 10606   18 years old or older
## 10607            17 years old
## 10608            16 years old
## 10609            15 years old
## 10610            14 years old
## 10611            16 years old
## 10612            16 years old
## 10613            16 years old
## 10614            17 years old
## 10615            14 years old
## 10616            15 years old
## 10617            15 years old
## 10618            17 years old
## 10619            17 years old
## 10620            16 years old
## 10621   18 years old or older
## 10622            16 years old
## 10623            16 years old
## 10624            15 years old
## 10625            16 years old
## 10626            16 years old
## 10627            17 years old
## 10628            16 years old
## 10629   18 years old or older
## 10630            15 years old
## 10631            15 years old
## 10632            14 years old
## 10633            16 years old
## 10634            16 years old
## 10635            17 years old
## 10636            17 years old
## 10637            15 years old
## 10638            16 years old
## 10639            15 years old
## 10640   18 years old or older
## 10641            16 years old
## 10642            17 years old
## 10643            14 years old
## 10644            16 years old
## 10645            17 years old
## 10646            17 years old
## 10647            17 years old
## 10648   18 years old or older
## 10649            16 years old
## 10650            15 years old
## 10651            15 years old
## 10652            16 years old
## 10653            16 years old
## 10654   18 years old or older
## 10655   18 years old or older
## 10656            17 years old
## 10657            16 years old
## 10658            15 years old
## 10659            15 years old
## 10660            16 years old
## 10661            17 years old
## 10662            17 years old
## 10663            16 years old
## 10664   18 years old or older
## 10665            16 years old
## 10666            14 years old
## 10667            14 years old
## 10668            16 years old
## 10669            16 years old
## 10670            17 years old
## 10671            17 years old
## 10672            17 years old
## 10673            16 years old
## 10674            14 years old
## 10675            14 years old
## 10676            16 years old
## 10677   18 years old or older
## 10678            17 years old
## 10679            17 years old
## 10680            16 years old
## 10681            15 years old
## 10682            15 years old
## 10683            17 years old
## 10684            17 years old
## 10685            17 years old
## 10686            15 years old
## 10687            15 years old
## 10688            14 years old
## 10689            17 years old
## 10690            16 years old
## 10691   18 years old or older
## 10692            15 years old
## 10693            16 years old
## 10694            15 years old
## 10695            15 years old
## 10696            16 years old
## 10697            16 years old
## 10698            17 years old
## 10699            16 years old
## 10700            14 years old
## 10701            15 years old
## 10702            16 years old
## 10703   18 years old or older
## 10704            16 years old
## 10705   18 years old or older
## 10706            16 years old
## 10707            15 years old
## 10708            15 years old
## 10709            16 years old
## 10710            17 years old
## 10711   18 years old or older
## 10712            17 years old
## 10713   18 years old or older
## 10714            16 years old
## 10715            15 years old
## 10716            15 years old
## 10717            16 years old
## 10718            17 years old
## 10719            17 years old
## 10720            16 years old
## 10721   18 years old or older
## 10722            16 years old
## 10723            14 years old
## 10724            16 years old
## 10725            16 years old
## 10726            17 years old
## 10727   18 years old or older
## 10728            17 years old
## 10729   18 years old or older
## 10730            16 years old
## 10731            15 years old
## 10732            15 years old
## 10733            15 years old
## 10734            17 years old
## 10735   18 years old or older
## 10736            17 years old
## 10737   18 years old or older
## 10738            14 years old
## 10739            15 years old
## 10740            15 years old
## 10741            16 years old
## 10742            16 years old
## 10743   18 years old or older
## 10744            14 years old
## 10745            15 years old
## 10746            15 years old
## 10747            15 years old
## 10748            17 years old
## 10749            16 years old
## 10750            17 years old
## 10751            16 years old
## 10752            14 years old
## 10753            15 years old
## 10754            15 years old
## 10755            17 years old
## 10756            17 years old
## 10757            17 years old
## 10758   18 years old or older
## 10759            16 years old
## 10760            15 years old
## 10761            15 years old
## 10762            15 years old
## 10763            16 years old
## 10764            17 years old
## 10765   18 years old or older
## 10766            17 years old
## 10767            17 years old
## 10768            14 years old
## 10769            15 years old
## 10770            17 years old
## 10771            17 years old
## 10772            16 years old
## 10773            17 years old
## 10774            17 years old
## 10775            16 years old
## 10776            17 years old
## 10777            17 years old
## 10778            17 years old
## 10779            17 years old
## 10780            17 years old
## 10781            16 years old
## 10782   18 years old or older
## 10783   18 years old or older
## 10784            17 years old
## 10785   18 years old or older
## 10786            17 years old
## 10787            16 years old
## 10788   18 years old or older
## 10789            15 years old
## 10790            15 years old
## 10791            14 years old
## 10792            14 years old
## 10793            15 years old
## 10794            16 years old
## 10795            17 years old
## 10796            16 years old
## 10797   18 years old or older
## 10798            17 years old
## 10799            16 years old
## 10800            15 years old
## 10801            14 years old
## 10802            16 years old
## 10803            16 years old
## 10804            17 years old
## 10805   18 years old or older
## 10806            16 years old
## 10807            14 years old
## 10808            14 years old
## 10809            17 years old
## 10810            17 years old
## 10811            17 years old
## 10812            17 years old
## 10813            16 years old
## 10814            15 years old
## 10815            14 years old
## 10816            16 years old
## 10817            17 years old
## 10818            16 years old
## 10819   18 years old or older
## 10820            17 years old
## 10821            16 years old
## 10822            15 years old
## 10823            15 years old
## 10824            16 years old
## 10825            16 years old
## 10826            16 years old
## 10827            17 years old
## 10828            17 years old
## 10829            15 years old
## 10830            14 years old
## 10831            15 years old
## 10832            16 years old
## 10833            16 years old
## 10834            16 years old
## 10835   18 years old or older
## 10836   18 years old or older
## 10837            16 years old
## 10838            14 years old
## 10839            14 years old
## 10840            16 years old
## 10841            16 years old
## 10842   18 years old or older
## 10843   18 years old or older
## 10844            15 years old
## 10845            14 years old
## 10846            15 years old
## 10847            15 years old
## 10848            17 years old
## 10849            16 years old
## 10850   18 years old or older
## 10851   18 years old or older
## 10852            16 years old
## 10853            15 years old
## 10854            15 years old
## 10855            17 years old
## 10856            16 years old
## 10857   18 years old or older
## 10858   18 years old or older
## 10859            15 years old
## 10860            15 years old
## 10861            17 years old
## 10862            16 years old
## 10863   18 years old or older
## 10864   18 years old or older
## 10865            16 years old
## 10866            15 years old
## 10867            15 years old
## 10868            17 years old
## 10869            17 years old
## 10870   18 years old or older
## 10871            17 years old
## 10872            15 years old
## 10873            14 years old
## 10874            14 years old
## 10875            16 years old
## 10876            17 years old
## 10877            16 years old
## 10878            17 years old
## 10879   18 years old or older
## 10880            15 years old
## 10881            14 years old
## 10882            15 years old
## 10883            16 years old
## 10884            17 years old
## 10885   18 years old or older
## 10886   18 years old or older
## 10887            15 years old
## 10888            14 years old
## 10889            15 years old
## 10890            14 years old
## 10891            16 years old
## 10892            15 years old
## 10893            17 years old
## 10894            17 years old
## 10895   18 years old or older
## 10896   18 years old or older
## 10897            16 years old
## 10898            14 years old
## 10899            14 years old
## 10900            15 years old
## 10901            16 years old
## 10902   18 years old or older
## 10903            17 years old
## 10904   18 years old or older
## 10905            16 years old
## 10906            15 years old
## 10907            14 years old
## 10908            15 years old
## 10909            16 years old
## 10910   18 years old or older
## 10911   18 years old or older
## 10912            15 years old
## 10913            14 years old
## 10914            15 years old
## 10915            17 years old
## 10916            17 years old
## 10917            17 years old
## 10918            17 years old
## 10919            16 years old
## 10920            15 years old
## 10921            14 years old
## 10922            16 years old
## 10923            17 years old
## 10924            17 years old
## 10925            17 years old
## 10926            17 years old
## 10927            15 years old
## 10928            16 years old
## 10929            14 years old
## 10930            15 years old
## 10931            17 years old
## 10932   18 years old or older
## 10933            17 years old
## 10934            17 years old
## 10935            15 years old
## 10936            16 years old
## 10937            15 years old
## 10938            16 years old
## 10939            17 years old
## 10940            17 years old
## 10941            17 years old
## 10942            17 years old
## 10943            16 years old
## 10944            14 years old
## 10945            15 years old
## 10946            16 years old
## 10947            17 years old
## 10948            17 years old
## 10949   18 years old or older
## 10950   18 years old or older
## 10951            16 years old
## 10952            14 years old
## 10953            15 years old
## 10954            16 years old
## 10955            16 years old
## 10956            17 years old
## 10957   18 years old or older
## 10958   18 years old or older
## 10959            15 years old
## 10960            14 years old
## 10961            15 years old
## 10962            16 years old
## 10963            16 years old
## 10964            16 years old
## 10965            17 years old
## 10966   18 years old or older
## 10967            16 years old
## 10968            14 years old
## 10969            15 years old
## 10970            17 years old
## 10971            17 years old
## 10972            17 years old
## 10973            17 years old
## 10974            17 years old
## 10975            14 years old
## 10976   18 years old or older
## 10977            17 years old
## 10978            15 years old
## 10979            16 years old
## 10980   18 years old or older
## 10981 12 years old or younger
## 10982                    <NA>
## 10983            17 years old
## 10984            15 years old
## 10985            17 years old
## 10986            15 years old
## 10987            16 years old
## 10988            17 years old
## 10989            15 years old
## 10990            17 years old
## 10991            16 years old
## 10992   18 years old or older
## 10993            16 years old
## 10994   18 years old or older
## 10995            15 years old
## 10996            17 years old
## 10997   18 years old or older
## 10998            14 years old
## 10999   18 years old or older
## 11000            16 years old
## 11001   18 years old or older
## 11002            16 years old
## 11003            17 years old
## 11004            14 years old
## 11005            16 years old
## 11006            16 years old
## 11007   18 years old or older
## 11008            15 years old
## 11009            17 years old
## 11010   18 years old or older
## 11011            15 years old
## 11012            17 years old
## 11013            16 years old
## 11014            15 years old
## 11015            16 years old
## 11016            16 years old
## 11017            15 years old
## 11018            16 years old
## 11019            15 years old
## 11020            16 years old
## 11021            17 years old
## 11022            15 years old
## 11023            17 years old
## 11024            16 years old
## 11025            16 years old
## 11026            17 years old
## 11027            14 years old
## 11028            16 years old
## 11029            16 years old
## 11030            17 years old
## 11031            16 years old
## 11032            16 years old
## 11033            14 years old
## 11034            15 years old
## 11035            15 years old
## 11036            15 years old
## 11037            16 years old
## 11038            16 years old
## 11039            15 years old
## 11040            17 years old
## 11041            17 years old
## 11042            15 years old
## 11043            17 years old
## 11044            16 years old
## 11045            15 years old
## 11046            16 years old
## 11047            15 years old
## 11048            14 years old
## 11049            16 years old
## 11050            17 years old
## 11051            14 years old
## 11052            15 years old
## 11053            14 years old
## 11054            14 years old
## 11055            17 years old
## 11056            16 years old
## 11057            15 years old
## 11058            16 years old
## 11059            17 years old
## 11060            15 years old
## 11061            15 years old
## 11062            14 years old
## 11063            14 years old
## 11064            16 years old
## 11065            17 years old
## 11066            15 years old
## 11067            15 years old
## 11068            14 years old
## 11069            15 years old
## 11070            17 years old
## 11071            16 years old
## 11072            15 years old
## 11073            15 years old
## 11074            15 years old
## 11075            15 years old
## 11076            17 years old
## 11077            16 years old
## 11078            15 years old
## 11079            16 years old
## 11080            15 years old
## 11081            14 years old
## 11082            16 years old
## 11083            17 years old
## 11084            14 years old
## 11085            15 years old
## 11086            15 years old
## 11087            15 years old
## 11088            16 years old
## 11089            15 years old
## 11090            16 years old
## 11091            14 years old
## 11092            15 years old
## 11093            15 years old
## 11094            16 years old
## 11095            14 years old
## 11096            15 years old
## 11097            16 years old
## 11098            14 years old
## 11099            15 years old
## 11100            15 years old
## 11101            17 years old
## 11102            17 years old
## 11103            14 years old
## 11104            17 years old
## 11105            17 years old
## 11106            15 years old
## 11107            16 years old
## 11108            14 years old
## 11109            15 years old
## 11110            16 years old
## 11111            14 years old
## 11112            15 years old
## 11113            17 years old
## 11114            15 years old
## 11115            15 years old
## 11116            14 years old
## 11117            15 years old
## 11118            17 years old
## 11119            14 years old
## 11120            15 years old
## 11121            14 years old
## 11122            15 years old
## 11123            16 years old
## 11124            15 years old
## 11125            16 years old
## 11126            15 years old
## 11127            15 years old
## 11128   18 years old or older
## 11129            17 years old
## 11130            17 years old
## 11131            16 years old
## 11132            17 years old
## 11133            16 years old
## 11134            17 years old
## 11135            17 years old
## 11136            17 years old
## 11137            16 years old
## 11138            17 years old
## 11139   18 years old or older
## 11140            16 years old
## 11141            16 years old
## 11142   18 years old or older
## 11143            17 years old
## 11144            17 years old
## 11145            16 years old
## 11146   18 years old or older
## 11147   18 years old or older
## 11148   18 years old or older
## 11149            15 years old
## 11150   18 years old or older
## 11151 12 years old or younger
## 11152            15 years old
## 11153            17 years old
## 11154            16 years old
## 11155   18 years old or older
## 11156   18 years old or older
## 11157   18 years old or older
## 11158            15 years old
## 11159            15 years old
## 11160   18 years old or older
## 11161            17 years old
## 11162   18 years old or older
## 11163            16 years old
## 11164   18 years old or older
## 11165            16 years old
## 11166            16 years old
## 11167   18 years old or older
## 11168   18 years old or older
## 11169   18 years old or older
## 11170            16 years old
## 11171            17 years old
## 11172   18 years old or older
## 11173   18 years old or older
## 11174            17 years old
## 11175            17 years old
## 11176            17 years old
## 11177   18 years old or older
## 11178   18 years old or older
## 11179   18 years old or older
## 11180            15 years old
## 11181            17 years old
## 11182   18 years old or older
## 11183   18 years old or older
## 11184            16 years old
## 11185   18 years old or older
## 11186            16 years old
## 11187            17 years old
## 11188            15 years old
## 11189            16 years old
## 11190            15 years old
## 11191            16 years old
## 11192            15 years old
## 11193            17 years old
## 11194            15 years old
## 11195            17 years old
## 11196            16 years old
## 11197            17 years old
## 11198            14 years old
## 11199            17 years old
## 11200            14 years old
## 11201            16 years old
## 11202            14 years old
## 11203            16 years old
## 11204            14 years old
## 11205            16 years old
## 11206            14 years old
## 11207            16 years old
## 11208            15 years old
## 11209            16 years old
## 11210            14 years old
## 11211            17 years old
## 11212            15 years old
## 11213            16 years old
## 11214            17 years old
## 11215            15 years old
## 11216   18 years old or older
## 11217            14 years old
## 11218            17 years old
## 11219   18 years old or older
## 11220   18 years old or older
## 11221            15 years old
## 11222            17 years old
## 11223            15 years old
## 11224   18 years old or older
## 11225            16 years old
## 11226            17 years old
## 11227            16 years old
## 11228   18 years old or older
## 11229            16 years old
## 11230            16 years old
## 11231            15 years old
## 11232            16 years old
## 11233            16 years old
## 11234   18 years old or older
## 11235            15 years old
## 11236   18 years old or older
## 11237            15 years old
## 11238            17 years old
## 11239            15 years old
## 11240            17 years old
## 11241            16 years old
## 11242            15 years old
## 11243            15 years old
## 11244            17 years old
## 11245            15 years old
## 11246            17 years old
## 11247            15 years old
## 11248   18 years old or older
## 11249            16 years old
## 11250            17 years old
## 11251            16 years old
## 11252            15 years old
## 11253            16 years old
## 11254            17 years old
## 11255            16 years old
## 11256            14 years old
## 11257            14 years old
## 11258            16 years old
## 11259            14 years old
## 11260            17 years old
## 11261            15 years old
## 11262            17 years old
## 11263            15 years old
## 11264            17 years old
## 11265            15 years old
## 11266            17 years old
## 11267            16 years old
## 11268            16 years old
## 11269            15 years old
## 11270            16 years old
## 11271            14 years old
## 11272 12 years old or younger
## 11273            15 years old
## 11274            17 years old
## 11275            17 years old
## 11276            14 years old
## 11277            17 years old
## 11278            15 years old
## 11279            14 years old
## 11280            17 years old
## 11281            17 years old
## 11282            16 years old
## 11283            15 years old
## 11284            17 years old
## 11285            16 years old
## 11286            15 years old
## 11287            16 years old
## 11288            15 years old
## 11289            14 years old
## 11290            17 years old
## 11291            15 years old
## 11292            15 years old
## 11293            16 years old
## 11294            17 years old
## 11295            14 years old
## 11296            17 years old
## 11297   18 years old or older
## 11298            14 years old
## 11299            17 years old
## 11300            15 years old
## 11301            15 years old
## 11302            16 years old
## 11303   18 years old or older
## 11304            15 years old
## 11305            17 years old
## 11306            16 years old
## 11307            15 years old
## 11308            16 years old
## 11309            16 years old
## 11310            14 years old
## 11311            15 years old
## 11312            15 years old
## 11313            15 years old
## 11314            15 years old
## 11315            15 years old
## 11316            15 years old
## 11317            15 years old
## 11318            14 years old
## 11319            15 years old
## 11320            15 years old
## 11321            15 years old
## 11322            15 years old
## 11323            15 years old
## 11324            16 years old
## 11325            16 years old
## 11326            15 years old
## 11327            15 years old
## 11328            14 years old
## 11329            16 years old
## 11330            16 years old
## 11331            16 years old
## 11332            16 years old
## 11333            16 years old
## 11334            16 years old
## 11335            16 years old
## 11336            15 years old
## 11337            16 years old
## 11338            14 years old
## 11339            16 years old
## 11340            15 years old
## 11341            14 years old
## 11342            14 years old
## 11343            15 years old
## 11344            15 years old
## 11345            16 years old
## 11346            14 years old
## 11347            16 years old
## 11348            16 years old
## 11349            15 years old
## 11350            15 years old
## 11351            16 years old
## 11352            16 years old
## 11353            16 years old
## 11354            15 years old
## 11355            14 years old
## 11356            16 years old
## 11357            14 years old
## 11358            16 years old
## 11359            14 years old
## 11360            16 years old
## 11361            15 years old
## 11362            16 years old
## 11363            14 years old
## 11364            15 years old
## 11365            15 years old
## 11366            16 years old
## 11367            14 years old
## 11368            16 years old
## 11369            16 years old
## 11370            14 years old
## 11371            14 years old
## 11372            15 years old
## 11373            16 years old
## 11374            16 years old
## 11375            14 years old
## 11376            17 years old
## 11377            17 years old
## 11378            17 years old
## 11379            17 years old
## 11380            17 years old
## 11381            17 years old
## 11382            16 years old
## 11383   18 years old or older
## 11384   18 years old or older
## 11385            17 years old
## 11386            17 years old
## 11387            17 years old
## 11388            16 years old
## 11389            17 years old
## 11390   18 years old or older
## 11391            17 years old
## 11392            17 years old
## 11393   18 years old or older
## 11394   18 years old or older
## 11395   18 years old or older
## 11396            17 years old
## 11397            17 years old
## 11398   18 years old or older
## 11399            17 years old
## 11400   18 years old or older
## 11401            16 years old
## 11402            17 years old
## 11403            17 years old
## 11404   18 years old or older
## 11405            17 years old
## 11406            17 years old
## 11407            16 years old
## 11408   18 years old or older
## 11409            17 years old
## 11410            17 years old
## 11411            16 years old
## 11412            17 years old
## 11413   18 years old or older
## 11414   18 years old or older
## 11415            17 years old
## 11416   18 years old or older
## 11417            17 years old
## 11418   18 years old or older
## 11419            16 years old
## 11420   18 years old or older
## 11421            17 years old
## 11422            17 years old
## 11423            17 years old
## 11424            16 years old
## 11425            17 years old
## 11426            16 years old
## 11427            16 years old
## 11428            16 years old
## 11429            17 years old
## 11430            16 years old
## 11431            16 years old
## 11432            16 years old
## 11433            16 years old
## 11434            15 years old
## 11435            15 years old
## 11436            15 years old
## 11437            14 years old
## 11438            14 years old
## 11439            16 years old
## 11440            14 years old
## 11441            14 years old
## 11442            15 years old
## 11443            14 years old
## 11444            14 years old
## 11445            15 years old
## 11446            14 years old
## 11447            15 years old
## 11448            15 years old
## 11449            15 years old
## 11450            15 years old
## 11451            15 years old
## 11452            16 years old
## 11453            16 years old
## 11454            16 years old
## 11455            15 years old
## 11456            15 years old
## 11457            16 years old
## 11458            16 years old
## 11459            16 years old
## 11460            16 years old
## 11461            15 years old
## 11462            16 years old
## 11463            15 years old
## 11464            16 years old
## 11465            15 years old
## 11466            16 years old
## 11467            16 years old
## 11468            15 years old
## 11469   18 years old or older
## 11470            17 years old
## 11471            16 years old
## 11472            14 years old
## 11473            15 years old
## 11474            15 years old
## 11475            15 years old
## 11476            15 years old
## 11477            14 years old
## 11478            15 years old
## 11479            14 years old
## 11480            15 years old
## 11481            14 years old
## 11482            15 years old
## 11483            14 years old
## 11484            14 years old
## 11485            14 years old
## 11486            15 years old
## 11487            15 years old
## 11488            15 years old
## 11489            16 years old
## 11490            15 years old
## 11491            16 years old
## 11492            15 years old
## 11493            14 years old
## 11494            15 years old
## 11495            16 years old
## 11496            14 years old
## 11497            16 years old
## 11498   18 years old or older
## 11499            16 years old
## 11500            15 years old
## 11501            17 years old
## 11502            17 years old
## 11503            15 years old
## 11504            17 years old
## 11505            15 years old
## 11506            15 years old
## 11507            16 years old
## 11508            16 years old
## 11509            15 years old
## 11510            16 years old
## 11511            15 years old
## 11512            14 years old
## 11513            16 years old
## 11514            15 years old
## 11515            15 years old
## 11516            14 years old
## 11517            15 years old
## 11518            14 years old
## 11519            14 years old
## 11520            15 years old
## 11521            15 years old
## 11522            14 years old
## 11523   18 years old or older
## 11524            15 years old
## 11525            17 years old
## 11526            14 years old
## 11527            14 years old
## 11528            15 years old
## 11529            16 years old
## 11530            15 years old
## 11531            16 years old
## 11532 12 years old or younger
## 11533            15 years old
## 11534            15 years old
## 11535            14 years old
## 11536            15 years old
## 11537            15 years old
## 11538            14 years old
## 11539            15 years old
## 11540            15 years old
## 11541            15 years old
## 11542            16 years old
## 11543            16 years old
## 11544            14 years old
## 11545            15 years old
## 11546            15 years old
## 11547            15 years old
## 11548            16 years old
## 11549            15 years old
## 11550            16 years old
## 11551            15 years old
## 11552            14 years old
## 11553            16 years old
## 11554            16 years old
## 11555            16 years old
## 11556            16 years old
## 11557            16 years old
## 11558   18 years old or older
## 11559            16 years old
## 11560            15 years old
## 11561            14 years old
## 11562            14 years old
## 11563   18 years old or older
## 11564            14 years old
## 11565            16 years old
## 11566            16 years old
## 11567            15 years old
## 11568            16 years old
## 11569            17 years old
## 11570            14 years old
## 11571            16 years old
## 11572            15 years old
## 11573            16 years old
## 11574            15 years old
## 11575            16 years old
## 11576            16 years old
## 11577            17 years old
## 11578            16 years old
## 11579            16 years old
## 11580            17 years old
## 11581            16 years old
## 11582            15 years old
## 11583            16 years old
## 11584            17 years old
## 11585            15 years old
## 11586            17 years old
## 11587            14 years old
## 11588            15 years old
## 11589            16 years old
## 11590            14 years old
## 11591            17 years old
## 11592            14 years old
## 11593            16 years old
## 11594            15 years old
## 11595            15 years old
## 11596            15 years old
## 11597            15 years old
## 11598            16 years old
## 11599            17 years old
## 11600            16 years old
## 11601            14 years old
## 11602            14 years old
## 11603            15 years old
## 11604            15 years old
## 11605            15 years old
## 11606            16 years old
## 11607            16 years old
## 11608                    <NA>
## 11609            16 years old
## 11610            15 years old
## 11611            17 years old
## 11612            16 years old
## 11613   18 years old or older
## 11614            17 years old
## 11615            15 years old
## 11616            16 years old
## 11617            16 years old
## 11618            16 years old
## 11619            16 years old
## 11620            14 years old
## 11621            15 years old
## 11622            15 years old
## 11623            16 years old
## 11624            15 years old
## 11625            15 years old
## 11626            16 years old
## 11627            16 years old
## 11628            14 years old
## 11629            15 years old
## 11630            15 years old
## 11631            17 years old
## 11632   18 years old or older
## 11633            15 years old
## 11634            15 years old
## 11635   18 years old or older
## 11636   18 years old or older
## 11637   18 years old or older
## 11638   18 years old or older
## 11639   18 years old or older
## 11640            15 years old
## 11641   18 years old or older
## 11642   18 years old or older
## 11643   18 years old or older
## 11644            15 years old
## 11645            14 years old
## 11646   18 years old or older
## 11647            15 years old
## 11648            15 years old
## 11649            15 years old
## 11650            16 years old
## 11651            16 years old
## 11652            14 years old
## 11653            15 years old
## 11654            15 years old
## 11655            15 years old
## 11656            16 years old
## 11657            14 years old
## 11658            14 years old
## 11659            14 years old
## 11660            15 years old
## 11661            14 years old
## 11662            14 years old
## 11663            15 years old
## 11664            16 years old
## 11665            16 years old
## 11666            16 years old
## 11667            16 years old
## 11668            17 years old
## 11669            15 years old
## 11670            17 years old
## 11671            15 years old
## 11672            17 years old
## 11673            16 years old
## 11674            17 years old
## 11675            15 years old
## 11676            17 years old
## 11677            16 years old
## 11678            16 years old
## 11679            17 years old
## 11680            17 years old
## 11681            16 years old
## 11682            17 years old
## 11683            15 years old
## 11684            16 years old
## 11685            15 years old
## 11686            15 years old
## 11687            15 years old
## 11688            14 years old
## 11689            15 years old
## 11690            16 years old
## 11691            16 years old
## 11692            15 years old
## 11693            15 years old
## 11694            15 years old
## 11695            15 years old
## 11696            15 years old
## 11697            16 years old
## 11698            16 years old
## 11699            16 years old
## 11700            14 years old
## 11701            14 years old
## 11702            15 years old
## 11703            14 years old
## 11704            14 years old
## 11705            14 years old
## 11706            14 years old
## 11707            14 years old
## 11708            17 years old
## 11709            16 years old
## 11710            15 years old
## 11711            16 years old
## 11712            16 years old
## 11713   18 years old or older
## 11714   18 years old or older
## 11715            17 years old
## 11716   18 years old or older
## 11717            17 years old
## 11718            16 years old
## 11719   18 years old or older
## 11720            17 years old
## 11721            17 years old
## 11722            17 years old
## 11723            15 years old
## 11724            16 years old
## 11725            16 years old
## 11726            16 years old
## 11727            16 years old
## 11728            16 years old
## 11729            15 years old
## 11730            15 years old
## 11731            15 years old
## 11732            15 years old
## 11733            15 years old
## 11734            15 years old
## 11735            15 years old
## 11736            14 years old
## 11737   18 years old or older
## 11738            17 years old
## 11739            17 years old
## 11740   18 years old or older
## 11741            17 years old
## 11742            17 years old
## 11743   18 years old or older
## 11744   18 years old or older
## 11745            17 years old
## 11746            17 years old
## 11747   18 years old or older
## 11748            17 years old
## 11749   18 years old or older
## 11750   18 years old or older
## 11751            17 years old
## 11752            15 years old
## 11753            15 years old
## 11754            14 years old
## 11755            14 years old
## 11756            15 years old
## 11757            15 years old
## 11758            15 years old
## 11759            15 years old
## 11760            15 years old
## 11761            14 years old
## 11762            15 years old
## 11763   18 years old or older
## 11764   18 years old or older
## 11765   18 years old or older
## 11766   18 years old or older
## 11767   18 years old or older
## 11768                    <NA>
## 11769   18 years old or older
## 11770   18 years old or older
## 11771   18 years old or older
## 11772            15 years old
## 11773            16 years old
## 11774            16 years old
## 11775            15 years old
## 11776            16 years old
## 11777            16 years old
## 11778            16 years old
## 11779            14 years old
## 11780            15 years old
## 11781            14 years old
## 11782            15 years old
## 11783            15 years old
## 11784            14 years old
## 11785            14 years old
## 11786            14 years old
## 11787            15 years old
## 11788            14 years old
## 11789            15 years old
## 11790   18 years old or older
## 11791   18 years old or older
## 11792            17 years old
## 11793   18 years old or older
## 11794            17 years old
## 11795   18 years old or older
## 11796            17 years old
## 11797   18 years old or older
## 11798            16 years old
## 11799            16 years old
## 11800            16 years old
## 11801            15 years old
## 11802            16 years old
## 11803            16 years old
## 11804            15 years old
## 11805            16 years old
## 11806            15 years old
## 11807            16 years old
## 11808            16 years old
## 11809            16 years old
## 11810            16 years old
## 11811            16 years old
## 11812            16 years old
## 11813            17 years old
## 11814            16 years old
## 11815            16 years old
## 11816            16 years old
## 11817            16 years old
## 11818            16 years old
## 11819            15 years old
## 11820            15 years old
## 11821            16 years old
## 11822            15 years old
## 11823            17 years old
## 11824            15 years old
## 11825            17 years old
## 11826            17 years old
## 11827            17 years old
## 11828            16 years old
## 11829            17 years old
## 11830            17 years old
## 11831            16 years old
## 11832            16 years old
## 11833            16 years old
## 11834            17 years old
## 11835            16 years old
## 11836            16 years old
## 11837            17 years old
## 11838            17 years old
## 11839            17 years old
## 11840            14 years old
## 11841            17 years old
## 11842                    <NA>
## 11843            16 years old
## 11844            16 years old
## 11845            17 years old
## 11846            16 years old
## 11847            17 years old
## 11848            17 years old
## 11849 12 years old or younger
## 11850                    <NA>
## 11851            16 years old
## 11852            16 years old
## 11853            16 years old
## 11854            17 years old
## 11855            17 years old
## 11856            17 years old
## 11857   18 years old or older
## 11858   18 years old or older
## 11859   18 years old or older
## 11860   18 years old or older
## 11861   18 years old or older
## 11862            15 years old
## 11863            16 years old
## 11864            15 years old
## 11865 12 years old or younger
## 11866            15 years old
## 11867            16 years old
## 11868            16 years old
## 11869            15 years old
## 11870            15 years old
## 11871            15 years old
## 11872            15 years old
## 11873            15 years old
## 11874            14 years old
## 11875            15 years old
## 11876            14 years old
## 11877            15 years old
## 11878            15 years old
## 11879            15 years old
## 11880            14 years old
## 11881            17 years old
## 11882            15 years old
## 11883            14 years old
## 11884            14 years old
## 11885            14 years old
## 11886            14 years old
## 11887            16 years old
## 11888            16 years old
## 11889            14 years old
## 11890            15 years old
## 11891            15 years old
## 11892            15 years old
## 11893            15 years old
## 11894            16 years old
## 11895            16 years old
## 11896            14 years old
## 11897            15 years old
## 11898            15 years old
## 11899            16 years old
## 11900            15 years old
## 11901            15 years old
## 11902            15 years old
## 11903            14 years old
## 11904            16 years old
## 11905            16 years old
## 11906            14 years old
## 11907            14 years old
## 11908            15 years old
## 11909            14 years old
## 11910            14 years old
## 11911            14 years old
## 11912            15 years old
## 11913            14 years old
## 11914            14 years old
## 11915            15 years old
## 11916            15 years old
## 11917            14 years old
## 11918            15 years old
## 11919            16 years old
## 11920            15 years old
## 11921            16 years old
## 11922            14 years old
## 11923            15 years old
## 11924            14 years old
## 11925            15 years old
## 11926            14 years old
## 11927            16 years old
## 11928            14 years old
## 11929            16 years old
## 11930            15 years old
## 11931            16 years old
## 11932            14 years old
## 11933            14 years old
## 11934            16 years old
## 11935            14 years old
## 11936            15 years old
## 11937            15 years old
## 11938            14 years old
## 11939            14 years old
## 11940            17 years old
## 11941            16 years old
## 11942            15 years old
## 11943            16 years old
## 11944            15 years old
## 11945            16 years old
## 11946            16 years old
## 11947            17 years old
## 11948   18 years old or older
## 11949            17 years old
## 11950   18 years old or older
## 11951   18 years old or older
## 11952            17 years old
## 11953   18 years old or older
## 11954   18 years old or older
## 11955            15 years old
## 11956            15 years old
## 11957            15 years old
## 11958            15 years old
## 11959            16 years old
## 11960            15 years old
## 11961            16 years old
## 11962            16 years old
## 11963            15 years old
## 11964            15 years old
## 11965            16 years old
## 11966            16 years old
## 11967            15 years old
## 11968            15 years old
## 11969            15 years old
## 11970            16 years old
## 11971            17 years old
## 11972            15 years old
## 11973            16 years old
## 11974            15 years old
## 11975            16 years old
## 11976            14 years old
## 11977            15 years old
## 11978            16 years old
## 11979   18 years old or older
## 11980            14 years old
## 11981            16 years old
## 11982   18 years old or older
## 11983            16 years old
## 11984   18 years old or older
## 11985            17 years old
## 11986            16 years old
## 11987            17 years old
## 11988            17 years old
## 11989            16 years old
## 11990            16 years old
## 11991            17 years old
## 11992            16 years old
## 11993            14 years old
## 11994            16 years old
## 11995            14 years old
## 11996            13 years old
## 11997            17 years old
## 11998            17 years old
## 11999   18 years old or older
## 12000            17 years old
## 12001   18 years old or older
## 12002            17 years old
## 12003            17 years old
## 12004            17 years old
## 12005            16 years old
## 12006            16 years old
## 12007            17 years old
## 12008            17 years old
## 12009            17 years old
## 12010            17 years old
## 12011            15 years old
## 12012            14 years old
## 12013            15 years old
## 12014            14 years old
## 12015            16 years old
## 12016            15 years old
## 12017            16 years old
## 12018            16 years old
## 12019            17 years old
## 12020            15 years old
## 12021            16 years old
## 12022            16 years old
## 12023            16 years old
## 12024            16 years old
## 12025            14 years old
## 12026            14 years old
## 12027            17 years old
## 12028            16 years old
## 12029            15 years old
## 12030            16 years old
## 12031            15 years old
## 12032            15 years old
## 12033            15 years old
## 12034            15 years old
## 12035            15 years old
## 12036            15 years old
## 12037            15 years old
## 12038            16 years old
## 12039   18 years old or older
## 12040            15 years old
## 12041   18 years old or older
## 12042            16 years old
## 12043            15 years old
## 12044            14 years old
## 12045            15 years old
## 12046            14 years old
## 12047            15 years old
## 12048            14 years old
## 12049            15 years old
## 12050            15 years old
## 12051            14 years old
## 12052            15 years old
## 12053            14 years old
## 12054            14 years old
## 12055            15 years old
## 12056            15 years old
## 12057            15 years old
## 12058            17 years old
## 12059            16 years old
## 12060            15 years old
## 12061            16 years old
## 12062            15 years old
## 12063            16 years old
## 12064            15 years old
## 12065            15 years old
## 12066            16 years old
## 12067            14 years old
## 12068            15 years old
## 12069            15 years old
## 12070            14 years old
## 12071            15 years old
## 12072            15 years old
## 12073            15 years old
## 12074            15 years old
## 12075            14 years old
## 12076            15 years old
## 12077            15 years old
## 12078            14 years old
## 12079            16 years old
## 12080            15 years old
## 12081            16 years old
## 12082            15 years old
## 12083            15 years old
## 12084            17 years old
## 12085            15 years old
## 12086            16 years old
## 12087            17 years old
## 12088            16 years old
## 12089   18 years old or older
## 12090            16 years old
## 12091            17 years old
## 12092            15 years old
## 12093            14 years old
## 12094            15 years old
## 12095   18 years old or older
## 12096            17 years old
## 12097            14 years old
## 12098            16 years old
## 12099   18 years old or older
## 12100            17 years old
## 12101            17 years old
## 12102            14 years old
## 12103            15 years old
## 12104            16 years old
## 12105            14 years old
## 12106            15 years old
## 12107            15 years old
## 12108            17 years old
## 12109            14 years old
## 12110            15 years old
## 12111            15 years old
## 12112            14 years old
## 12113            15 years old
## 12114            17 years old
## 12115            15 years old
## 12116            17 years old
## 12117            14 years old
## 12118   18 years old or older
## 12119            16 years old
## 12120            17 years old
## 12121   18 years old or older
## 12122            16 years old
## 12123            16 years old
## 12124            17 years old
## 12125            16 years old
## 12126            17 years old
## 12127            15 years old
## 12128            14 years old
## 12129            14 years old
## 12130            14 years old
## 12131            15 years old
## 12132            15 years old
## 12133            15 years old
## 12134            14 years old
## 12135            15 years old
## 12136            14 years old
## 12137            14 years old
## 12138            15 years old
## 12139            15 years old
## 12140            16 years old
## 12141            15 years old
## 12142            15 years old
## 12143            15 years old
## 12144            14 years old
## 12145            14 years old
## 12146            15 years old
## 12147            16 years old
## 12148            16 years old
## 12149            17 years old
## 12150            17 years old
## 12151            17 years old
## 12152            16 years old
## 12153            15 years old
## 12154            14 years old
## 12155            14 years old
## 12156            14 years old
## 12157            15 years old
## 12158            15 years old
## 12159            15 years old
## 12160            15 years old
## 12161            14 years old
## 12162            15 years old
## 12163            14 years old
## 12164            14 years old
## 12165            14 years old
## 12166            17 years old
## 12167   18 years old or older
## 12168            17 years old
## 12169   18 years old or older
## 12170   18 years old or older
## 12171            17 years old
## 12172            16 years old
## 12173            17 years old
## 12174            17 years old
## 12175   18 years old or older
## 12176            15 years old
## 12177            15 years old
## 12178            15 years old
## 12179            16 years old
## 12180            15 years old
## 12181            16 years old
## 12182            15 years old
## 12183            15 years old
## 12184            17 years old
## 12185            16 years old
## 12186            16 years old
## 12187            16 years old
## 12188            16 years old
## 12189            15 years old
## 12190            16 years old
## 12191            16 years old
## 12192   18 years old or older
## 12193            16 years old
## 12194            16 years old
## 12195            17 years old
## 12196            17 years old
## 12197            17 years old
## 12198   18 years old or older
## 12199            15 years old
## 12200            16 years old
## 12201            16 years old
## 12202            16 years old
## 12203            16 years old
## 12204            15 years old
## 12205            15 years old
## 12206            15 years old
## 12207            16 years old
## 12208            16 years old
## 12209            15 years old
## 12210            16 years old
## 12211            14 years old
## 12212            16 years old
## 12213            15 years old
## 12214            16 years old
## 12215            16 years old
## 12216            17 years old
## 12217            15 years old
## 12218            15 years old
## 12219            14 years old
## 12220            17 years old
## 12221            16 years old
## 12222            17 years old
## 12223            16 years old
## 12224            17 years old
## 12225            17 years old
## 12226            17 years old
## 12227            16 years old
## 12228            16 years old
## 12229            16 years old
## 12230            16 years old
## 12231            16 years old
## 12232            15 years old
## 12233   18 years old or older
## 12234   18 years old or older
## 12235            16 years old
## 12236   18 years old or older
## 12237            15 years old
## 12238            17 years old
## 12239            15 years old
## 12240            16 years old
## 12241            16 years old
## 12242            17 years old
## 12243            16 years old
## 12244            16 years old
## 12245   18 years old or older
## 12246            16 years old
## 12247            16 years old
## 12248            17 years old
## 12249            17 years old
## 12250            17 years old
## 12251   18 years old or older
## 12252            16 years old
## 12253   18 years old or older
## 12254            16 years old
## 12255            17 years old
## 12256            16 years old
## 12257            17 years old
## 12258            17 years old
## 12259            16 years old
## 12260            16 years old
## 12261            17 years old
## 12262            17 years old
## 12263            15 years old
## 12264            15 years old
## 12265            17 years old
## 12266            16 years old
## 12267            16 years old
## 12268            15 years old
## 12269            14 years old
## 12270            15 years old
## 12271            16 years old
## 12272            17 years old
## 12273            15 years old
## 12274            16 years old
## 12275            16 years old
## 12276            17 years old
## 12277   18 years old or older
## 12278            17 years old
## 12279            16 years old
## 12280            17 years old
## 12281   18 years old or older
## 12282            17 years old
## 12283   18 years old or older
## 12284            17 years old
## 12285            17 years old
## 12286            16 years old
## 12287            16 years old
## 12288            15 years old
## 12289            17 years old
## 12290            15 years old
## 12291   18 years old or older
## 12292            15 years old
## 12293            15 years old
## 12294            15 years old
## 12295            15 years old
## 12296            15 years old
## 12297            17 years old
## 12298            15 years old
## 12299            15 years old
## 12300            16 years old
## 12301            17 years old
## 12302            17 years old
## 12303   18 years old or older
## 12304            16 years old
## 12305            17 years old
## 12306            17 years old
## 12307   18 years old or older
## 12308            17 years old
## 12309            17 years old
## 12310            15 years old
## 12311            16 years old
## 12312            15 years old
## 12313            15 years old
## 12314            16 years old
## 12315            14 years old
## 12316            15 years old
## 12317            15 years old
## 12318            15 years old
## 12319            14 years old
## 12320            17 years old
## 12321            15 years old
## 12322            15 years old
## 12323            14 years old
## 12324            15 years old
## 12325            15 years old
## 12326            14 years old
## 12327            14 years old
## 12328   18 years old or older
## 12329            15 years old
## 12330            17 years old
## 12331            15 years old
## 12332            17 years old
## 12333   18 years old or older
## 12334            16 years old
## 12335   18 years old or older
## 12336   18 years old or older
## 12337            17 years old
## 12338            15 years old
## 12339            14 years old
## 12340            14 years old
## 12341            15 years old
## 12342            14 years old
## 12343            15 years old
## 12344            17 years old
## 12345            15 years old
## 12346            16 years old
## 12347            17 years old
## 12348            15 years old
## 12349            14 years old
## 12350            15 years old
## 12351            15 years old
## 12352            15 years old
## 12353            16 years old
## 12354            15 years old
## 12355            15 years old
## 12356            17 years old
## 12357            15 years old
## 12358            15 years old
## 12359            14 years old
## 12360            14 years old
## 12361            15 years old
## 12362   18 years old or older
## 12363   18 years old or older
## 12364   18 years old or older
## 12365   18 years old or older
## 12366   18 years old or older
## 12367   18 years old or older
## 12368   18 years old or older
## 12369   18 years old or older
## 12370            17 years old
## 12371   18 years old or older
## 12372            17 years old
## 12373            17 years old
## 12374   18 years old or older
## 12375            17 years old
## 12376   18 years old or older
## 12377            17 years old
## 12378   18 years old or older
## 12379            17 years old
## 12380            14 years old
## 12381            17 years old
## 12382            15 years old
## 12383   18 years old or older
## 12384            15 years old
## 12385            16 years old
## 12386   18 years old or older
## 12387            14 years old
## 12388            17 years old
## 12389   18 years old or older
## 12390            15 years old
## 12391            15 years old
## 12392            15 years old
## 12393   18 years old or older
## 12394            16 years old
## 12395            16 years old
## 12396            15 years old
## 12397            16 years old
## 12398            17 years old
## 12399            17 years old
## 12400   18 years old or older
## 12401            17 years old
## 12402            15 years old
## 12403            16 years old
## 12404            17 years old
## 12405            15 years old
## 12406   18 years old or older
## 12407            15 years old
## 12408            14 years old
## 12409            14 years old
## 12410            15 years old
## 12411            17 years old
## 12412            16 years old
## 12413   18 years old or older
## 12414            17 years old
## 12415            16 years old
## 12416            15 years old
## 12417            17 years old
## 12418            16 years old
## 12419            16 years old
## 12420            15 years old
## 12421            15 years old
## 12422            15 years old
## 12423            17 years old
## 12424            15 years old
## 12425            16 years old
## 12426            15 years old
## 12427            15 years old
## 12428            15 years old
## 12429            15 years old
## 12430            15 years old
## 12431            16 years old
## 12432            16 years old
## 12433            16 years old
## 12434            17 years old
## 12435            17 years old
## 12436            15 years old
## 12437            17 years old
## 12438            15 years old
## 12439            16 years old
## 12440   18 years old or older
## 12441            14 years old
## 12442            16 years old
## 12443            16 years old
## 12444            16 years old
## 12445            16 years old
## 12446            15 years old
## 12447            14 years old
## 12448            15 years old
## 12449            17 years old
## 12450            17 years old
## 12451            15 years old
## 12452            17 years old
## 12453   18 years old or older
## 12454            17 years old
## 12455            17 years old
## 12456   18 years old or older
## 12457            17 years old
## 12458            17 years old
## 12459            15 years old
## 12460            15 years old
## 12461            14 years old
## 12462            15 years old
## 12463            15 years old
## 12464            15 years old
## 12465            15 years old
## 12466            15 years old
## 12467            14 years old
## 12468            15 years old
## 12469            15 years old
## 12470            15 years old
## 12471            14 years old
## 12472            15 years old
## 12473            14 years old
## 12474            14 years old
## 12475            15 years old
## 12476            14 years old
## 12477            14 years old
## 12478            17 years old
## 12479            16 years old
## 12480            16 years old
## 12481   18 years old or older
## 12482   18 years old or older
## 12483            16 years old
## 12484            15 years old
## 12485            17 years old
## 12486            16 years old
## 12487   18 years old or older
## 12488            17 years old
## 12489            16 years old
## 12490            17 years old
## 12491            17 years old
## 12492            16 years old
## 12493            17 years old
## 12494            17 years old
## 12495            17 years old
## 12496            16 years old
## 12497            16 years old
## 12498            16 years old
## 12499            14 years old
## 12500            15 years old
## 12501            16 years old
## 12502            15 years old
## 12503            15 years old
## 12504            16 years old
## 12505            16 years old
## 12506            16 years old
## 12507            16 years old
## 12508            15 years old
## 12509            15 years old
## 12510            14 years old
## 12511            14 years old
## 12512            14 years old
## 12513            15 years old
## 12514            15 years old
## 12515            15 years old
## 12516            15 years old
## 12517            14 years old
## 12518            15 years old
## 12519            14 years old
## 12520            14 years old
## 12521            14 years old
## 12522            16 years old
## 12523            14 years old
## 12524            15 years old
## 12525            16 years old
## 12526            15 years old
## 12527            14 years old
## 12528            16 years old
## 12529            16 years old
## 12530            16 years old
## 12531            15 years old
## 12532            14 years old
## 12533            14 years old
## 12534            14 years old
## 12535            16 years old
## 12536            15 years old
## 12537            14 years old
## 12538            15 years old
## 12539            15 years old
## 12540            16 years old
## 12541            15 years old
## 12542            17 years old
## 12543            16 years old
## 12544            15 years old
## 12545            17 years old
## 12546            15 years old
## 12547            16 years old
## 12548   18 years old or older
## 12549   18 years old or older
## 12550            15 years old
## 12551            16 years old
## 12552            17 years old
## 12553            15 years old
## 12554            16 years old
## 12555            16 years old
## 12556            15 years old
## 12557            16 years old
## 12558            16 years old
## 12559            15 years old
## 12560            15 years old
## 12561            17 years old
## 12562            16 years old
## 12563 12 years old or younger
## 12564            16 years old
## 12565            15 years old
## 12566            16 years old
## 12567            14 years old
## 12568            16 years old
## 12569            16 years old
## 12570            17 years old
## 12571            15 years old
## 12572            16 years old
## 12573            15 years old
## 12574            15 years old
## 12575            17 years old
## 12576            15 years old
## 12577            15 years old
## 12578            15 years old
## 12579            14 years old
## 12580            15 years old
## 12581            15 years old
## 12582            14 years old
## 12583            16 years old
## 12584            14 years old
## 12585            15 years old
## 12586            14 years old
## 12587            16 years old
## 12588            14 years old
## 12589            14 years old
## 12590            14 years old
## 12591            15 years old
## 12592            14 years old
## 12593            17 years old
## 12594            15 years old
## 12595            15 years old
## 12596            16 years old
## 12597            16 years old
## 12598            16 years old
## 12599            15 years old
## 12600            16 years old
## 12601            16 years old
## 12602            16 years old
## 12603            16 years old
## 12604            17 years old
## 12605            15 years old
## 12606            15 years old
## 12607            15 years old
## 12608            16 years old
## 12609            17 years old
## 12610            16 years old
## 12611            16 years old
## 12612            17 years old
## 12613            17 years old
## 12614            17 years old
## 12615   18 years old or older
## 12616            17 years old
## 12617            17 years old
## 12618            17 years old
## 12619            16 years old
## 12620            17 years old
## 12621            17 years old
## 12622            16 years old
## 12623   18 years old or older
## 12624            17 years old
## 12625   18 years old or older
## 12626            17 years old
## 12627            17 years old
## 12628            17 years old
## 12629   18 years old or older
## 12630   18 years old or older
## 12631            16 years old
## 12632            16 years old
## 12633            17 years old
## 12634            16 years old
## 12635            16 years old
## 12636            14 years old
## 12637            17 years old
## 12638            17 years old
## 12639   18 years old or older
## 12640            17 years old
## 12641   18 years old or older
## 12642   18 years old or older
## 12643   18 years old or older
## 12644   18 years old or older
## 12645   18 years old or older
## 12646            17 years old
## 12647   18 years old or older
## 12648   18 years old or older
## 12649   18 years old or older
## 12650            17 years old
## 12651            17 years old
## 12652            17 years old
## 12653   18 years old or older
## 12654   18 years old or older
## 12655   18 years old or older
## 12656   18 years old or older
## 12657            17 years old
## 12658            17 years old
## 12659   18 years old or older
## 12660   18 years old or older
## 12661            17 years old
## 12662            17 years old
## 12663            17 years old
## 12664   18 years old or older
## 12665   18 years old or older
## 12666            17 years old
## 12667            17 years old
## 12668   18 years old or older
## 12669            17 years old
## 12670   18 years old or older
## 12671            16 years old
## 12672            17 years old
## 12673            17 years old
## 12674            16 years old
## 12675            17 years old
## 12676            16 years old
## 12677            17 years old
## 12678            16 years old
## 12679            16 years old
## 12680            15 years old
## 12681            15 years old
## 12682            16 years old
## 12683            15 years old
## 12684            15 years old
## 12685            15 years old
## 12686            16 years old
## 12687            16 years old
## 12688            15 years old
## 12689            16 years old
## 12690            15 years old
## 12691            15 years old
## 12692            15 years old
## 12693            15 years old
## 12694            16 years old
## 12695            15 years old
## 12696            15 years old
## 12697            15 years old
## 12698            16 years old
## 12699            15 years old
## 12700            15 years old
## 12701            16 years old
## 12702            16 years old
## 12703            15 years old
## 12704            16 years old
## 12705            15 years old
## 12706            15 years old
## 12707   18 years old or older
## 12708            16 years old
## 12709            17 years old
## 12710            15 years old
## 12711            16 years old
## 12712            17 years old
## 12713            15 years old
## 12714            15 years old
## 12715            17 years old
## 12716            16 years old
## 12717   18 years old or older
## 12718            16 years old
## 12719            15 years old
## 12720            16 years old
## 12721            17 years old
## 12722            15 years old
## 12723            16 years old
## 12724            15 years old
## 12725            15 years old
## 12726            15 years old
## 12727            15 years old
## 12728            14 years old
## 12729            16 years old
## 12730            15 years old
## 12731            16 years old
## 12732   18 years old or older
## 12733            14 years old
## 12734            15 years old
## 12735            15 years old
## 12736            16 years old
## 12737            16 years old
## 12738 12 years old or younger
## 12739            14 years old
## 12740            16 years old
## 12741            14 years old
## 12742            15 years old
## 12743            15 years old
## 12744            16 years old
## 12745            17 years old
## 12746            15 years old
## 12747            16 years old
## 12748            16 years old
## 12749            14 years old
## 12750            16 years old
## 12751            17 years old
## 12752            15 years old
## 12753            14 years old
## 12754            14 years old
## 12755            15 years old
## 12756            16 years old
## 12757            16 years old
## 12758            16 years old
## 12759            15 years old
## 12760            15 years old
## 12761            15 years old
## 12762            16 years old
## 12763            15 years old
## 12764   18 years old or older
## 12765            17 years old
## 12766            15 years old
## 12767            16 years old
## 12768            15 years old
## 12769            17 years old
## 12770            14 years old
## 12771            15 years old
## 12772            14 years old
## 12773            14 years old
## 12774            14 years old
## 12775            14 years old
## 12776            15 years old
## 12777            16 years old
## 12778            14 years old
## 12779            14 years old
## 12780            14 years old
## 12781            14 years old
## 12782            15 years old
## 12783            15 years old
## 12784            14 years old
## 12785            14 years old
## 12786            15 years old
## 12787            15 years old
## 12788            15 years old
## 12789            15 years old
## 12790            15 years old
## 12791            17 years old
## 12792            15 years old
## 12793            16 years old
## 12794            15 years old
## 12795            15 years old
## 12796            16 years old
## 12797            16 years old
## 12798            15 years old
## 12799            15 years old
## 12800            16 years old
## 12801            15 years old
## 12802            15 years old
## 12803            16 years old
## 12804            17 years old
## 12805            16 years old
## 12806            16 years old
## 12807            17 years old
## 12808            16 years old
## 12809            17 years old
## 12810            16 years old
## 12811            16 years old
## 12812            16 years old
## 12813   18 years old or older
## 12814            15 years old
## 12815   18 years old or older
## 12816            16 years old
## 12817            16 years old
## 12818            16 years old
## 12819            15 years old
## 12820            16 years old
## 12821            17 years old
## 12822            17 years old
## 12823            16 years old
## 12824            17 years old
## 12825            16 years old
## 12826            16 years old
## 12827            15 years old
## 12828            15 years old
## 12829            15 years old
## 12830            16 years old
## 12831            16 years old
## 12832            17 years old
## 12833   18 years old or older
## 12834            17 years old
## 12835            17 years old
## 12836            17 years old
## 12837            17 years old
## 12838            17 years old
## 12839            17 years old
## 12840            17 years old
## 12841   18 years old or older
## 12842   18 years old or older
## 12843            17 years old
## 12844   18 years old or older
## 12845   18 years old or older
## 12846            17 years old
## 12847            17 years old
## 12848            17 years old
## 12849   18 years old or older
## 12850            17 years old
## 12851            17 years old
## 12852            17 years old
## 12853            15 years old
## 12854            15 years old
## 12855            15 years old
## 12856            15 years old
## 12857            15 years old
## 12858            15 years old
## 12859            15 years old
## 12860            15 years old
## 12861            15 years old
## 12862            15 years old
## 12863            15 years old
## 12864            15 years old
## 12865            14 years old
## 12866            15 years old
## 12867            15 years old
## 12868            14 years old
## 12869            14 years old
## 12870            15 years old
## 12871            14 years old
## 12872            15 years old
## 12873            14 years old
## 12874            16 years old
## 12875            17 years old
## 12876            15 years old
## 12877            16 years old
## 12878            16 years old
## 12879            16 years old
## 12880            16 years old
## 12881            15 years old
## 12882            16 years old
## 12883            16 years old
## 12884            16 years old
## 12885            15 years old
## 12886            16 years old
## 12887            15 years old
## 12888            15 years old
## 12889            15 years old
## 12890            17 years old
## 12891            15 years old
## 12892            17 years old
## 12893            16 years old
## 12894            15 years old
## 12895            16 years old
## 12896            15 years old
## 12897            15 years old
## 12898            14 years old
## 12899            14 years old
## 12900            14 years old
## 12901            14 years old
## 12902            15 years old
## 12903            15 years old
## 12904            15 years old
## 12905            14 years old
## 12906            14 years old
## 12907            14 years old
## 12908            15 years old
## 12909            14 years old
## 12910            14 years old
## 12911            14 years old
## 12912            14 years old
## 12913            14 years old
## 12914            15 years old
## 12915            14 years old
## 12916            15 years old
## 12917            15 years old
## 12918            14 years old
## 12919            14 years old
## 12920            15 years old
## 12921            14 years old
## 12922            14 years old
## 12923            14 years old
## 12924            15 years old
## 12925            14 years old
## 12926            15 years old
## 12927            14 years old
## 12928            15 years old
## 12929            14 years old
## 12930            14 years old
## 12931            14 years old
## 12932            14 years old
## 12933            15 years old
## 12934            15 years old
## 12935            14 years old
## 12936            15 years old
## 12937            14 years old
## 12938            15 years old
## 12939            15 years old
## 12940            14 years old
## 12941                    <NA>
## 12942            14 years old
## 12943            15 years old
## 12944            15 years old
## 12945            13 years old
## 12946            14 years old
## 12947            14 years old
## 12948            15 years old
## 12949            15 years old
## 12950            14 years old
## 12951            14 years old
## 12952                    <NA>
## 12953            14 years old
## 12954            15 years old
## 12955            14 years old
## 12956            14 years old
## 12957            14 years old
## 12958            15 years old
## 12959            14 years old
## 12960            14 years old
## 12961            14 years old
## 12962            15 years old
## 12963            15 years old
## 12964            16 years old
## 12965            16 years old
## 12966            15 years old
## 12967            16 years old
## 12968            15 years old
## 12969            16 years old
## 12970            15 years old
## 12971            15 years old
## 12972            15 years old
## 12973            16 years old
## 12974            16 years old
## 12975            15 years old
## 12976            16 years old
## 12977            15 years old
## 12978            16 years old
## 12979            16 years old
## 12980            16 years old
## 12981            15 years old
## 12982            15 years old
## 12983            16 years old
## 12984            16 years old
## 12985            16 years old
## 12986            15 years old
## 12987            15 years old
## 12988            16 years old
## 12989            16 years old
## 12990            16 years old
## 12991            15 years old
## 12992            15 years old
## 12993            16 years old
## 12994            16 years old
## 12995            15 years old
## 12996            16 years old
## 12997            15 years old
## 12998            15 years old
## 12999            15 years old
## 13000            15 years old
## 13001            14 years old
## 13002            15 years old
## 13003            14 years old
## 13004            15 years old
## 13005            15 years old
## 13006            14 years old
## 13007            17 years old
## 13008            16 years old
## 13009            16 years old
## 13010            17 years old
## 13011            16 years old
## 13012            16 years old
## 13013            17 years old
## 13014            16 years old
## 13015            16 years old
## 13016            16 years old
## 13017            17 years old
## 13018            17 years old
## 13019            17 years old
## 13020            14 years old
## 13021            15 years old
## 13022            14 years old
## 13023            14 years old
## 13024            14 years old
## 13025            15 years old
## 13026            15 years old
## 13027            14 years old
## 13028            14 years old
## 13029            14 years old
## 13030            14 years old
## 13031            15 years old
## 13032            14 years old
## 13033            15 years old
## 13034            15 years old
## 13035            16 years old
## 13036            15 years old
## 13037            16 years old
## 13038            17 years old
## 13039            15 years old
## 13040            16 years old
## 13041            16 years old
## 13042            15 years old
## 13043            15 years old
## 13044            15 years old
## 13045            15 years old
## 13046            16 years old
## 13047            15 years old
## 13048            16 years old
## 13049            16 years old
## 13050            16 years old
## 13051            16 years old
## 13052            15 years old
## 13053            16 years old
## 13054            15 years old
## 13055            15 years old
## 13056            16 years old
## 13057            16 years old
## 13058            15 years old
## 13059            15 years old
## 13060            15 years old
## 13061            15 years old
## 13062            16 years old
## 13063            16 years old
## 13064            16 years old
## 13065            16 years old
## 13066            15 years old
## 13067            17 years old
## 13068            17 years old
## 13069            17 years old
## 13070            17 years old
## 13071            17 years old
## 13072            17 years old
## 13073            17 years old
## 13074            17 years old
## 13075            16 years old
## 13076            16 years old
## 13077            16 years old
## 13078            16 years old
## 13079            16 years old
## 13080            15 years old
## 13081            16 years old
## 13082            16 years old
## 13083            16 years old
## 13084            15 years old
## 13085            16 years old
## 13086            16 years old
## 13087            15 years old
## 13088            15 years old
## 13089            14 years old
## 13090            15 years old
## 13091            15 years old
## 13092                    <NA>
## 13093            15 years old
## 13094            15 years old
## 13095            14 years old
## 13096            15 years old
## 13097            14 years old
## 13098            17 years old
## 13099            17 years old
## 13100            17 years old
## 13101            17 years old
## 13102            17 years old
## 13103            16 years old
## 13104            16 years old
## 13105            16 years old
## 13106            17 years old
## 13107            17 years old
## 13108   18 years old or older
## 13109            17 years old
## 13110   18 years old or older
## 13111   18 years old or older
## 13112            17 years old
## 13113            16 years old
## 13114            17 years old
## 13115   18 years old or older
## 13116            17 years old
## 13117            17 years old
## 13118            17 years old
## 13119            17 years old
## 13120            17 years old
## 13121            17 years old
## 13122            17 years old
## 13123            16 years old
## 13124            17 years old
## 13125            16 years old
## 13126            17 years old
## 13127            17 years old
## 13128            17 years old
## 13129            16 years old
## 13130            16 years old
## 13131            17 years old
## 13132            16 years old
## 13133            17 years old
## 13134   18 years old or older
## 13135            16 years old
## 13136            16 years old
## 13137            14 years old
## 13138            15 years old
## 13139            16 years old
## 13140            17 years old
## 13141            16 years old
## 13142            16 years old
## 13143            16 years old
## 13144            16 years old
## 13145            17 years old
## 13146            16 years old
## 13147            17 years old
## 13148                    <NA>
## 13149            16 years old
## 13150            17 years old
## 13151            16 years old
## 13152            17 years old
## 13153            15 years old
## 13154            17 years old
## 13155            16 years old
## 13156            13 years old
## 13157            13 years old
## 13158            15 years old
## 13159 12 years old or younger
## 13160            13 years old
## 13161 12 years old or younger
## 13162            15 years old
## 13163            16 years old
## 13164            17 years old
## 13165            16 years old
## 13166   18 years old or older
## 13167            16 years old
## 13168            16 years old
## 13169            15 years old
## 13170            15 years old
## 13171            17 years old
## 13172            16 years old
## 13173            13 years old
## 13174            13 years old
## 13175            13 years old
## 13176            16 years old
## 13177            14 years old
## 13178            15 years old
## 13179            16 years old
## 13180            16 years old
## 13181            16 years old
## 13182            17 years old
## 13183 12 years old or younger
## 13184            17 years old
## 13185            17 years old
## 13186 12 years old or younger
## 13187            17 years old
## 13188            16 years old
## 13189            16 years old
## 13190            15 years old
## 13191            16 years old
## 13192            16 years old
## 13193            16 years old
## 13194            15 years old
## 13195            17 years old
## 13196            16 years old
## 13197            16 years old
## 13198            14 years old
## 13199            17 years old
## 13200            17 years old
## 13201            17 years old
## 13202   18 years old or older
## 13203            16 years old
## 13204            16 years old
## 13205            14 years old
## 13206            15 years old
## 13207            15 years old
## 13208            15 years old
## 13209            15 years old
## 13210            14 years old
## 13211            14 years old
## 13212            14 years old
## 13213            15 years old
## 13214            16 years old
## 13215 12 years old or younger
## 13216            15 years old
## 13217            13 years old
## 13218            15 years old
## 13219            17 years old
## 13220            17 years old
## 13221            17 years old
## 13222   18 years old or older
## 13223            17 years old
## 13224            16 years old
## 13225            14 years old
## 13226   18 years old or older
## 13227            17 years old
## 13228            17 years old
## 13229   18 years old or older
## 13230            16 years old
## 13231            16 years old
## 13232            17 years old
## 13233            16 years old
## 13234            16 years old
## 13235            15 years old
## 13236   18 years old or older
## 13237   18 years old or older
## 13238            15 years old
## 13239            16 years old
## 13240   18 years old or older
## 13241            15 years old
## 13242            17 years old
## 13243            15 years old
## 13244            16 years old
## 13245   18 years old or older
## 13246            15 years old
## 13247            16 years old
## 13248            16 years old
## 13249            16 years old
## 13250   18 years old or older
## 13251            17 years old
## 13252            17 years old
## 13253            13 years old
## 13254            15 years old
## 13255            17 years old
## 13256            16 years old
## 13257            15 years old
## 13258            17 years old
## 13259            16 years old
## 13260            16 years old
## 13261            17 years old
## 13262   18 years old or older
## 13263 12 years old or younger
## 13264            17 years old
## 13265            16 years old
## 13266            17 years old
## 13267            16 years old
## 13268            16 years old
## 13269            16 years old
## 13270            16 years old
## 13271            15 years old
## 13272            15 years old
## 13273            16 years old
## 13274            15 years old
## 13275            16 years old
## 13276            16 years old
## 13277            16 years old
## 13278            16 years old
## 13279            16 years old
## 13280            15 years old
## 13281            15 years old
## 13282            17 years old
## 13283            16 years old
## 13284            16 years old
## 13285            17 years old
## 13286            17 years old
## 13287            16 years old
## 13288            15 years old
## 13289            14 years old
## 13290            15 years old
## 13291            15 years old
## 13292            15 years old
## 13293            15 years old
## 13294            15 years old
## 13295            15 years old
## 13296            15 years old
## 13297            15 years old
## 13298            14 years old
## 13299            15 years old
## 13300            14 years old
## 13301            14 years old
## 13302            14 years old
## 13303            14 years old
## 13304            14 years old
## 13305            14 years old
## 13306            15 years old
## 13307            14 years old
## 13308            14 years old
## 13309            14 years old
## 13310            15 years old
## 13311            15 years old
## 13312            14 years old
## 13313            15 years old
## 13314            15 years old
## 13315            14 years old
## 13316            14 years old
## 13317            15 years old
## 13318            14 years old
## 13319            14 years old
## 13320            14 years old
## 13321            15 years old
## 13322            15 years old
## 13323            14 years old
## 13324            15 years old
## 13325            15 years old
## 13326            15 years old
## 13327            14 years old
## 13328            14 years old
## 13329            14 years old
## 13330            15 years old
## 13331            14 years old
## 13332            14 years old
## 13333            14 years old
## 13334            15 years old
## 13335            14 years old
## 13336            14 years old
## 13337            14 years old
## 13338            15 years old
## 13339            14 years old
## 13340            15 years old
## 13341            14 years old
## 13342            15 years old
## 13343            15 years old
## 13344            14 years old
## 13345            14 years old
## 13346            14 years old
## 13347            15 years old
## 13348            15 years old
## 13349            14 years old
## 13350            15 years old
## 13351            15 years old
## 13352            14 years old
## 13353            14 years old
## 13354            15 years old
## 13355            15 years old
## 13356            14 years old
## 13357            14 years old
## 13358            14 years old
## 13359            15 years old
## 13360            14 years old
## 13361            14 years old
## 13362            14 years old
## 13363            14 years old
## 13364            15 years old
## 13365                    <NA>
## 13366            16 years old
## 13367                    <NA>
## 13368            16 years old
## 13369            15 years old
## 13370            16 years old
## 13371            15 years old
## 13372            15 years old
## 13373            15 years old
## 13374            15 years old
## 13375            16 years old
## 13376            15 years old
## 13377            16 years old
## 13378            15 years old
## 13379            16 years old
## 13380                    <NA>
## 13381            15 years old
## 13382            15 years old
## 13383            15 years old
## 13384            15 years old
## 13385            15 years old
## 13386            15 years old
## 13387            16 years old
## 13388            15 years old
## 13389            15 years old
## 13390            15 years old
## 13391            15 years old
## 13392            15 years old
## 13393            15 years old
## 13394            15 years old
## 13395            16 years old
## 13396            15 years old
## 13397            16 years old
## 13398            16 years old
## 13399            16 years old
## 13400            16 years old
## 13401            15 years old
## 13402                    <NA>
## 13403            15 years old
## 13404            16 years old
## 13405            15 years old
## 13406            16 years old
## 13407            15 years old
## 13408            15 years old
## 13409            15 years old
## 13410            17 years old
## 13411            16 years old
## 13412            16 years old
## 13413            16 years old
## 13414                    <NA>
## 13415            16 years old
## 13416            15 years old
## 13417            16 years old
## 13418            16 years old
## 13419            16 years old
## 13420            16 years old
## 13421            16 years old
## 13422            16 years old
## 13423            15 years old
## 13424            16 years old
## 13425            16 years old
## 13426            16 years old
## 13427            16 years old
## 13428            16 years old
## 13429            15 years old
## 13430            16 years old
## 13431            16 years old
## 13432            15 years old
## 13433            16 years old
## 13434            15 years old
## 13435            17 years old
## 13436            16 years old
## 13437            17 years old
## 13438            16 years old
## 13439            17 years old
## 13440            16 years old
## 13441            16 years old
## 13442            17 years old
## 13443            17 years old
## 13444            17 years old
## 13445            16 years old
## 13446            17 years old
## 13447            16 years old
## 13448            16 years old
## 13449            17 years old
## 13450            17 years old
## 13451            16 years old
## 13452            17 years old
## 13453            16 years old
## 13454            16 years old
## 13455            16 years old
## 13456            17 years old
## 13457            16 years old
## 13458            17 years old
## 13459            17 years old
## 13460            17 years old
## 13461            16 years old
## 13462            16 years old
## 13463            17 years old
## 13464            16 years old
## 13465            17 years old
## 13466            16 years old
## 13467            17 years old
## 13468            16 years old
## 13469            16 years old
## 13470            17 years old
## 13471            17 years old
## 13472            17 years old
## 13473            17 years old
## 13474            16 years old
## 13475            16 years old
## 13476            16 years old
## 13477                    <NA>
## 13478            17 years old
## 13479            17 years old
## 13480            16 years old
## 13481            16 years old
## 13482            16 years old
## 13483            16 years old
## 13484            17 years old
## 13485            17 years old
## 13486            16 years old
## 13487            17 years old
## 13488            16 years old
## 13489            16 years old
## 13490            17 years old
## 13491            16 years old
## 13492            17 years old
## 13493            16 years old
## 13494            16 years old
## 13495            17 years old
## 13496            17 years old
## 13497            16 years old
## 13498            16 years old
## 13499            16 years old
## 13500            17 years old
## 13501                    <NA>
## 13502            17 years old
## 13503            16 years old
## 13504            16 years old
## 13505                    <NA>
## 13506            16 years old
## 13507   18 years old or older
## 13508                    <NA>
## 13509   18 years old or older
## 13510            17 years old
## 13511            17 years old
## 13512            17 years old
## 13513   18 years old or older
## 13514   18 years old or older
## 13515            17 years old
## 13516   18 years old or older
## 13517   18 years old or older
## 13518            17 years old
## 13519                    <NA>
## 13520            17 years old
## 13521            17 years old
## 13522            17 years old
## 13523            17 years old
## 13524   18 years old or older
## 13525            17 years old
## 13526            16 years old
## 13527   18 years old or older
## 13528   18 years old or older
## 13529   18 years old or older
## 13530            17 years old
## 13531            17 years old
## 13532   18 years old or older
## 13533            17 years old
## 13534   18 years old or older
## 13535   18 years old or older
## 13536            17 years old
## 13537   18 years old or older
## 13538   18 years old or older
## 13539            17 years old
## 13540   18 years old or older
## 13541            17 years old
## 13542   18 years old or older
## 13543            17 years old
## 13544            17 years old
## 13545            17 years old
## 13546            17 years old
## 13547   18 years old or older
## 13548   18 years old or older
## 13549   18 years old or older
## 13550            17 years old
## 13551            17 years old
## 13552            17 years old
## 13553   18 years old or older
## 13554            17 years old
## 13555   18 years old or older
## 13556            17 years old
## 13557            17 years old
## 13558            17 years old
## 13559            17 years old
## 13560   18 years old or older
## 13561   18 years old or older
## 13562            14 years old
## 13563            14 years old
## 13564            14 years old
## 13565            15 years old
## 13566            14 years old
## 13567            14 years old
## 13568            14 years old
## 13569            14 years old
## 13570            13 years old
## 13571            15 years old
## 13572            14 years old
## 13573            15 years old
## 13574            15 years old
## 13575            15 years old
## 13576            14 years old
## 13577            14 years old
## 13578            14 years old
## 13579            15 years old
## 13580            15 years old
## 13581            14 years old
## 13582                    <NA>
## 13583            14 years old
## 13584            15 years old
## 13585            14 years old
## 13586            14 years old
## 13587            15 years old
## 13588            14 years old
## 13589            15 years old
## 13590            15 years old
## 13591            15 years old
## 13592            15 years old
## 13593            15 years old
## 13594            14 years old
## 13595            14 years old
## 13596            15 years old
## 13597            14 years old
## 13598            14 years old
## 13599            15 years old
## 13600            14 years old
## 13601            15 years old
## 13602            14 years old
## 13603            15 years old
## 13604            15 years old
## 13605            16 years old
## 13606            15 years old
## 13607            14 years old
## 13608            14 years old
## 13609            14 years old
## 13610            15 years old
## 13611            14 years old
## 13612            15 years old
## 13613            15 years old
## 13614            14 years old
## 13615            14 years old
## 13616            14 years old
## 13617            15 years old
## 13618            14 years old
## 13619            14 years old
## 13620            14 years old
## 13621                    <NA>
## 13622            15 years old
## 13623            14 years old
## 13624            15 years old
## 13625            14 years old
## 13626            14 years old
## 13627            15 years old
## 13628            15 years old
## 13629            14 years old
## 13630            14 years old
## 13631            15 years old
## 13632            14 years old
## 13633            15 years old
## 13634            14 years old
## 13635            15 years old
## 13636            14 years old
## 13637            14 years old
## 13638            15 years old
## 13639            14 years old
## 13640            16 years old
## 13641            15 years old
## 13642            15 years old
## 13643            15 years old
## 13644            16 years old
## 13645            15 years old
## 13646            15 years old
## 13647            16 years old
## 13648            15 years old
## 13649            15 years old
## 13650            16 years old
## 13651            15 years old
## 13652            15 years old
## 13653            15 years old
## 13654            15 years old
## 13655            15 years old
## 13656            15 years old
## 13657            15 years old
## 13658            15 years old
## 13659            16 years old
## 13660            15 years old
## 13661            16 years old
## 13662            15 years old
## 13663            16 years old
## 13664            15 years old
## 13665            16 years old
## 13666            15 years old
## 13667            16 years old
## 13668            15 years old
## 13669            15 years old
## 13670            17 years old
## 13671            15 years old
## 13672            15 years old
## 13673            15 years old
## 13674            16 years old
## 13675            16 years old
## 13676            15 years old
## 13677            16 years old
## 13678                    <NA>
## 13679            16 years old
## 13680            15 years old
## 13681            16 years old
## 13682            16 years old
## 13683            16 years old
## 13684            15 years old
## 13685            15 years old
## 13686            16 years old
## 13687            15 years old
## 13688            15 years old
## 13689            14 years old
## 13690            15 years old
## 13691            15 years old
## 13692            15 years old
## 13693            15 years old
## 13694            16 years old
## 13695            15 years old
## 13696            15 years old
## 13697            15 years old
## 13698            15 years old
## 13699            17 years old
## 13700            17 years old
## 13701            15 years old
## 13702            15 years old
## 13703            16 years old
## 13704            15 years old
## 13705            16 years old
## 13706            16 years old
## 13707            16 years old
## 13708   18 years old or older
## 13709            17 years old
## 13710            17 years old
## 13711            16 years old
## 13712            16 years old
## 13713            17 years old
## 13714            16 years old
## 13715            17 years old
## 13716            16 years old
## 13717            16 years old
## 13718            16 years old
## 13719            16 years old
## 13720            17 years old
## 13721            16 years old
## 13722            16 years old
## 13723            17 years old
## 13724            16 years old
## 13725            16 years old
## 13726            17 years old
## 13727            16 years old
## 13728            17 years old
## 13729            16 years old
## 13730            16 years old
## 13731            16 years old
## 13732            16 years old
## 13733            16 years old
## 13734            16 years old
## 13735            16 years old
## 13736                    <NA>
## 13737            17 years old
## 13738                    <NA>
## 13739            16 years old
## 13740            17 years old
## 13741            16 years old
## 13742                    <NA>
## 13743            16 years old
## 13744            17 years old
## 13745            17 years old
## 13746            16 years old
## 13747            16 years old
## 13748            17 years old
## 13749 12 years old or younger
## 13750            16 years old
## 13751            16 years old
## 13752            17 years old
## 13753            16 years old
## 13754            17 years old
## 13755            17 years old
## 13756            16 years old
## 13757            17 years old
## 13758            16 years old
## 13759            16 years old
## 13760            17 years old
## 13761            16 years old
## 13762            17 years old
## 13763            17 years old
## 13764            16 years old
## 13765   18 years old or older
## 13766            16 years old
## 13767            16 years old
## 13768            16 years old
## 13769            16 years old
## 13770            17 years old
## 13771            17 years old
## 13772            17 years old
## 13773            17 years old
## 13774   18 years old or older
## 13775            17 years old
## 13776            17 years old
## 13777   18 years old or older
## 13778            17 years old
## 13779            17 years old
## 13780            17 years old
## 13781   18 years old or older
## 13782                    <NA>
## 13783            17 years old
## 13784   18 years old or older
## 13785            17 years old
## 13786   18 years old or older
## 13787            17 years old
## 13788   18 years old or older
## 13789            17 years old
## 13790            17 years old
## 13791            17 years old
## 13792   18 years old or older
## 13793   18 years old or older
## 13794            17 years old
## 13795   18 years old or older
## 13796            17 years old
## 13797            17 years old
## 13798   18 years old or older
## 13799   18 years old or older
## 13800            17 years old
## 13801            17 years old
## 13802            17 years old
## 13803            17 years old
## 13804            17 years old
## 13805            17 years old
## 13806   18 years old or older
## 13807            17 years old
## 13808   18 years old or older
## 13809            17 years old
## 13810   18 years old or older
## 13811            17 years old
## 13812            17 years old
## 13813            14 years old
## 13814            14 years old
## 13815            14 years old
## 13816            14 years old
## 13817            15 years old
## 13818            15 years old
## 13819            15 years old
## 13820            15 years old
## 13821            14 years old
## 13822            14 years old
## 13823            14 years old
## 13824            14 years old
## 13825            14 years old
## 13826            14 years old
## 13827            14 years old
## 13828            15 years old
## 13829            14 years old
## 13830            14 years old
## 13831            15 years old
## 13832            15 years old
## 13833            14 years old
## 13834            15 years old
## 13835            15 years old
## 13836            15 years old
## 13837            14 years old
## 13838            14 years old
## 13839            14 years old
## 13840            15 years old
## 13841            14 years old
## 13842            14 years old
## 13843            14 years old
## 13844            14 years old
## 13845            14 years old
## 13846            15 years old
## 13847            15 years old
## 13848            14 years old
## 13849            15 years old
## 13850            15 years old
## 13851            15 years old
## 13852            15 years old
## 13853            14 years old
## 13854            16 years old
## 13855            15 years old
## 13856            14 years old
## 13857            14 years old
## 13858            14 years old
## 13859            14 years old
## 13860            15 years old
## 13861            15 years old
## 13862            15 years old
## 13863            14 years old
## 13864            15 years old
## 13865            14 years old
## 13866            15 years old
## 13867            14 years old
## 13868            15 years old
## 13869            14 years old
## 13870            14 years old
## 13871            15 years old
## 13872            15 years old
## 13873            14 years old
## 13874            15 years old
## 13875            15 years old
## 13876            14 years old
## 13877            15 years old
## 13878            14 years old
## 13879            14 years old
## 13880            15 years old
## 13881            15 years old
## 13882            15 years old
## 13883            14 years old
## 13884            14 years old
## 13885            14 years old
## 13886            15 years old
## 13887            15 years old
## 13888            15 years old
## 13889            15 years old
## 13890            14 years old
## 13891            13 years old
## 13892            16 years old
## 13893            15 years old
## 13894            16 years old
## 13895            15 years old
## 13896            16 years old
## 13897            14 years old
## 13898            14 years old
## 13899            14 years old
## 13900            16 years old
## 13901            15 years old
## 13902            15 years old
## 13903                    <NA>
## 13904            15 years old
## 13905            16 years old
## 13906            16 years old
## 13907            15 years old
## 13908            16 years old
## 13909            15 years old
## 13910            16 years old
## 13911            16 years old
## 13912            15 years old
## 13913            16 years old
## 13914            15 years old
## 13915            15 years old
## 13916            15 years old
## 13917            16 years old
## 13918            15 years old
## 13919            16 years old
## 13920            16 years old
## 13921            15 years old
## 13922            15 years old
## 13923            15 years old
## 13924            16 years old
## 13925            16 years old
## 13926            15 years old
## 13927            16 years old
## 13928            15 years old
## 13929            15 years old
## 13930            15 years old
## 13931            16 years old
## 13932            15 years old
## 13933            16 years old
## 13934            16 years old
## 13935            16 years old
## 13936            16 years old
## 13937            15 years old
## 13938            16 years old
## 13939            16 years old
## 13940            15 years old
## 13941            16 years old
## 13942            15 years old
## 13943            15 years old
## 13944            15 years old
## 13945            15 years old
## 13946            16 years old
## 13947            15 years old
## 13948            15 years old
## 13949            16 years old
## 13950            15 years old
## 13951            16 years old
## 13952            15 years old
## 13953            17 years old
## 13954            17 years old
## 13955            16 years old
## 13956            16 years old
## 13957            16 years old
## 13958            16 years old
## 13959            16 years old
## 13960            17 years old
## 13961            16 years old
## 13962            16 years old
## 13963            16 years old
## 13964            17 years old
## 13965            17 years old
## 13966            16 years old
## 13967            17 years old
## 13968            16 years old
## 13969            17 years old
## 13970            16 years old
## 13971            16 years old
## 13972            16 years old
## 13973            17 years old
## 13974            16 years old
## 13975            16 years old
## 13976            17 years old
## 13977            16 years old
## 13978            17 years old
## 13979            17 years old
## 13980            16 years old
## 13981            16 years old
## 13982            16 years old
## 13983            16 years old
## 13984            16 years old
## 13985            17 years old
## 13986            17 years old
## 13987            16 years old
## 13988            16 years old
## 13989            16 years old
## 13990   18 years old or older
## 13991            16 years old
## 13992            17 years old
## 13993            17 years old
## 13994            16 years old
## 13995            16 years old
## 13996            17 years old
## 13997            17 years old
## 13998            16 years old
## 13999            17 years old
## 14000            16 years old
## 14001            16 years old
## 14002            17 years old
## 14003            16 years old
## 14004            16 years old
## 14005            17 years old
## 14006            16 years old
## 14007            16 years old
## 14008            17 years old
## 14009            16 years old
## 14010            17 years old
## 14011            17 years old
## 14012            16 years old
## 14013            16 years old
## 14014            17 years old
## 14015   18 years old or older
## 14016            17 years old
## 14017   18 years old or older
## 14018            17 years old
## 14019            17 years old
## 14020            17 years old
## 14021            17 years old
## 14022            17 years old
## 14023            17 years old
## 14024   18 years old or older
## 14025            17 years old
## 14026   18 years old or older
## 14027            17 years old
## 14028                    <NA>
## 14029            17 years old
## 14030            17 years old
## 14031            17 years old
## 14032            17 years old
## 14033   18 years old or older
## 14034            17 years old
## 14035            17 years old
## 14036   18 years old or older
## 14037   18 years old or older
## 14038            17 years old
## 14039   18 years old or older
## 14040            17 years old
## 14041                    <NA>
## 14042   18 years old or older
## 14043   18 years old or older
## 14044            17 years old
## 14045   18 years old or older
## 14046   18 years old or older
## 14047            17 years old
## 14048            17 years old
## 14049            17 years old
## 14050            17 years old
## 14051            17 years old
## 14052            17 years old
## 14053            17 years old
## 14054   18 years old or older
## 14055                    <NA>
## 14056   18 years old or older
## 14057            16 years old
## 14058   18 years old or older
## 14059            16 years old
## 14060            15 years old
## 14061            16 years old
## 14062            15 years old
## 14063            15 years old
## 14064            16 years old
## 14065            17 years old
## 14066            16 years old
## 14067            17 years old
## 14068                    <NA>
## 14069   18 years old or older
## 14070            15 years old
## 14071            17 years old
## 14072   18 years old or older
## 14073            17 years old
## 14074            16 years old
## 14075            16 years old
## 14076   18 years old or older
## 14077            17 years old
## 14078   18 years old or older
## 14079            16 years old
## 14080            16 years old
## 14081            17 years old
## 14082            16 years old
## 14083            17 years old
## 14084            16 years old
## 14085            16 years old
## 14086            16 years old
## 14087   18 years old or older
## 14088            15 years old
## 14089            14 years old
## 14090            15 years old
## 14091            14 years old
## 14092            14 years old
## 14093            15 years old
## 14094            15 years old
## 14095            15 years old
## 14096            14 years old
## 14097            14 years old
## 14098            15 years old
## 14099            15 years old
## 14100            15 years old
## 14101            14 years old
## 14102            15 years old
## 14103            14 years old
## 14104            14 years old
## 14105            14 years old
## 14106            14 years old
## 14107            14 years old
## 14108            15 years old
## 14109            14 years old
## 14110            15 years old
## 14111            14 years old
## 14112            14 years old
## 14113            15 years old
## 14114            15 years old
## 14115            14 years old
## 14116            15 years old
## 14117                    <NA>
## 14118            15 years old
## 14119            15 years old
## 14120            15 years old
## 14121            15 years old
## 14122            16 years old
## 14123            15 years old
## 14124            15 years old
## 14125            15 years old
## 14126            14 years old
## 14127            14 years old
## 14128            14 years old
## 14129            15 years old
## 14130            14 years old
## 14131            14 years old
## 14132            14 years old
## 14133            15 years old
## 14134            14 years old
## 14135            14 years old
## 14136            14 years old
## 14137            15 years old
## 14138            14 years old
## 14139            15 years old
## 14140            15 years old
## 14141            14 years old
## 14142            14 years old
## 14143            14 years old
## 14144            14 years old
## 14145            14 years old
## 14146            14 years old
## 14147            14 years old
## 14148            15 years old
## 14149            14 years old
## 14150            15 years old
## 14151            15 years old
## 14152            14 years old
## 14153            14 years old
## 14154            14 years old
## 14155            15 years old
## 14156            14 years old
## 14157            14 years old
## 14158            16 years old
## 14159            15 years old
## 14160                    <NA>
## 14161            15 years old
## 14162            16 years old
## 14163            15 years old
## 14164            15 years old
## 14165            15 years old
## 14166            15 years old
## 14167            15 years old
## 14168            16 years old
## 14169                    <NA>
## 14170            15 years old
## 14171                    <NA>
## 14172                    <NA>
## 14173                    <NA>
## 14174            15 years old
## 14175                    <NA>
## 14176                    <NA>
## 14177            15 years old
## 14178            15 years old
## 14179                    <NA>
## 14180                    <NA>
## 14181            15 years old
## 14182                    <NA>
## 14183            15 years old
## 14184            15 years old
## 14185            15 years old
## 14186            15 years old
## 14187            15 years old
## 14188            15 years old
## 14189            16 years old
## 14190                    <NA>
## 14191            16 years old
## 14192            15 years old
## 14193            15 years old
## 14194            16 years old
## 14195            16 years old
## 14196            16 years old
## 14197            15 years old
## 14198            15 years old
## 14199            16 years old
## 14200                    <NA>
## 14201                    <NA>
## 14202            16 years old
## 14203            16 years old
## 14204                    <NA>
## 14205            16 years old
## 14206            15 years old
## 14207            16 years old
## 14208            16 years old
## 14209            15 years old
## 14210                    <NA>
## 14211            15 years old
## 14212            15 years old
## 14213            15 years old
## 14214            17 years old
## 14215            16 years old
## 14216                    <NA>
## 14217            16 years old
## 14218            15 years old
## 14219            15 years old
## 14220            16 years old
## 14221            16 years old
## 14222            16 years old
## 14223            15 years old
## 14224            15 years old
## 14225            15 years old
## 14226            15 years old
## 14227            15 years old
## 14228            16 years old
## 14229                    <NA>
## 14230            15 years old
## 14231            15 years old
## 14232            16 years old
## 14233            16 years old
## 14234            16 years old
## 14235            15 years old
## 14236            16 years old
## 14237            16 years old
## 14238            15 years old
## 14239            17 years old
## 14240            16 years old
## 14241            16 years old
## 14242            17 years old
## 14243            16 years old
## 14244                    <NA>
## 14245            16 years old
## 14246            16 years old
## 14247            16 years old
## 14248            16 years old
## 14249            17 years old
## 14250            16 years old
## 14251            17 years old
## 14252            16 years old
## 14253            16 years old
## 14254            16 years old
## 14255            17 years old
## 14256                    <NA>
## 14257            17 years old
## 14258            16 years old
## 14259                    <NA>
## 14260            16 years old
## 14261            17 years old
## 14262            17 years old
## 14263            17 years old
## 14264            17 years old
## 14265                    <NA>
## 14266                    <NA>
## 14267            17 years old
## 14268            17 years old
## 14269   18 years old or older
## 14270            16 years old
## 14271            17 years old
## 14272            16 years old
## 14273            17 years old
## 14274            17 years old
## 14275            16 years old
## 14276            16 years old
## 14277            16 years old
## 14278            16 years old
## 14279            17 years old
## 14280            16 years old
## 14281            16 years old
## 14282            17 years old
## 14283            17 years old
## 14284            17 years old
## 14285                    <NA>
## 14286            16 years old
## 14287                    <NA>
## 14288            16 years old
## 14289            17 years old
## 14290            17 years old
## 14291            16 years old
## 14292            16 years old
## 14293            17 years old
## 14294            16 years old
## 14295            17 years old
## 14296            17 years old
## 14297            16 years old
## 14298            17 years old
## 14299            17 years old
## 14300            17 years old
## 14301            17 years old
## 14302            17 years old
## 14303            17 years old
## 14304            16 years old
## 14305            17 years old
## 14306            17 years old
## 14307            16 years old
## 14308            17 years old
## 14309            17 years old
## 14310   18 years old or older
## 14311   18 years old or older
## 14312            17 years old
## 14313   18 years old or older
## 14314 12 years old or younger
## 14315   18 years old or older
## 14316   18 years old or older
## 14317            17 years old
## 14318   18 years old or older
## 14319            17 years old
## 14320            17 years old
## 14321            17 years old
## 14322   18 years old or older
## 14323   18 years old or older
## 14324                    <NA>
## 14325            17 years old
## 14326   18 years old or older
## 14327   18 years old or older
## 14328   18 years old or older
## 14329            17 years old
## 14330   18 years old or older
## 14331   18 years old or older
## 14332            17 years old
## 14333   18 years old or older
## 14334                    <NA>
## 14335            17 years old
## 14336            17 years old
## 14337            17 years old
## 14338            17 years old
## 14339   18 years old or older
## 14340                    <NA>
## 14341                    <NA>
## 14342   18 years old or older
## 14343   18 years old or older
## 14344   18 years old or older
## 14345   18 years old or older
## 14346   18 years old or older
## 14347            17 years old
## 14348            17 years old
## 14349            17 years old
## 14350            17 years old
## 14351            17 years old
## 14352            17 years old
## 14353            17 years old
## 14354   18 years old or older
## 14355            17 years old
## 14356            17 years old
## 14357            17 years old
## 14358                    <NA>
## 14359   18 years old or older
## 14360   18 years old or older
## 14361   18 years old or older
## 14362            17 years old
## 14363   18 years old or older
## 14364            17 years old
## 14365   18 years old or older
## 14366   18 years old or older
## 14367            17 years old
## 14368            17 years old
## 14369            17 years old
## 14370                    <NA>
## 14371                    <NA>
## 14372            17 years old
## 14373   18 years old or older
## 14374   18 years old or older
## 14375                    <NA>
## 14376            17 years old
## 14377            17 years old
## 14378   18 years old or older
## 14379   18 years old or older
## 14380   18 years old or older
## 14381                    <NA>
## 14382            17 years old
## 14383            17 years old
## 14384            16 years old
## 14385            16 years old
## 14386            17 years old
## 14387            16 years old
## 14388            15 years old
## 14389            17 years old
## 14390            16 years old
## 14391   18 years old or older
## 14392            15 years old
## 14393            15 years old
## 14394            16 years old
## 14395            16 years old
## 14396            17 years old
## 14397   18 years old or older
## 14398            16 years old
## 14399            17 years old
## 14400   18 years old or older
## 14401   18 years old or older
## 14402   18 years old or older
## 14403   18 years old or older
## 14404            17 years old
## 14405            16 years old
## 14406            13 years old
## 14407            14 years old
## 14408            15 years old
## 14409            15 years old
## 14410            14 years old
## 14411            15 years old
## 14412            14 years old
## 14413            14 years old
## 14414            15 years old
## 14415            16 years old
## 14416            14 years old
## 14417            14 years old
## 14418            14 years old
## 14419            15 years old
## 14420            14 years old
## 14421            14 years old
## 14422            14 years old
## 14423            14 years old
## 14424            15 years old
## 14425            15 years old
## 14426            14 years old
## 14427            15 years old
## 14428            14 years old
## 14429            15 years old
## 14430            14 years old
## 14431            15 years old
## 14432            14 years old
## 14433            14 years old
## 14434            14 years old
## 14435            15 years old
## 14436            14 years old
## 14437            15 years old
## 14438            15 years old
## 14439            15 years old
## 14440            14 years old
## 14441            15 years old
## 14442            16 years old
## 14443            15 years old
## 14444                    <NA>
## 14445            16 years old
## 14446            16 years old
## 14447            15 years old
## 14448            15 years old
## 14449            15 years old
## 14450            16 years old
## 14451            15 years old
## 14452            16 years old
## 14453            15 years old
## 14454 12 years old or younger
## 14455            17 years old
## 14456            16 years old
## 14457            17 years old
## 14458            16 years old
## 14459            15 years old
## 14460            16 years old
## 14461            15 years old
## 14462            15 years old
## 14463            15 years old
## 14464            16 years old
## 14465            15 years old
## 14466            16 years old
## 14467            16 years old
## 14468            15 years old
## 14469            16 years old
## 14470            16 years old
## 14471 12 years old or younger
## 14472            16 years old
## 14473            16 years old
## 14474            14 years old
## 14475            17 years old
## 14476            15 years old
## 14477            15 years old
## 14478            17 years old
## 14479            17 years old
## 14480            17 years old
## 14481            17 years old
## 14482            16 years old
## 14483            17 years old
## 14484            16 years old
## 14485            16 years old
## 14486   18 years old or older
## 14487            16 years old
## 14488            17 years old
## 14489   18 years old or older
## 14490            17 years old
## 14491            16 years old
## 14492            17 years old
## 14493            17 years old
## 14494            16 years old
## 14495            17 years old
## 14496            16 years old
## 14497            16 years old
## 14498            16 years old
## 14499            17 years old
## 14500            16 years old
## 14501            16 years old
## 14502            17 years old
## 14503            16 years old
## 14504            16 years old
## 14505            16 years old
## 14506   18 years old or older
## 14507            17 years old
## 14508   18 years old or older
## 14509   18 years old or older
## 14510   18 years old or older
## 14511            17 years old
## 14512   18 years old or older
## 14513   18 years old or older
## 14514            17 years old
## 14515   18 years old or older
## 14516   18 years old or older
## 14517            17 years old
## 14518   18 years old or older
## 14519   18 years old or older
## 14520            17 years old
## 14521            17 years old
## 14522            14 years old
## 14523            15 years old
## 14524            15 years old
## 14525            14 years old
## 14526            14 years old
## 14527            15 years old
## 14528            14 years old
## 14529            15 years old
## 14530            15 years old
## 14531            15 years old
## 14532            15 years old
## 14533            14 years old
## 14534            15 years old
## 14535            15 years old
## 14536            14 years old
## 14537            14 years old
## 14538            14 years old
## 14539            15 years old
## 14540            15 years old
## 14541            15 years old
## 14542            16 years old
## 14543            16 years old
## 14544            15 years old
## 14545            16 years old
## 14546            16 years old
## 14547            15 years old
## 14548            16 years old
## 14549            16 years old
## 14550            16 years old
## 14551            15 years old
## 14552            16 years old
## 14553            15 years old
## 14554            15 years old
## 14555            16 years old
## 14556            17 years old
## 14557            16 years old
## 14558            16 years old
## 14559            17 years old
## 14560            17 years old
## 14561            16 years old
## 14562            17 years old
## 14563            17 years old
## 14564            16 years old
## 14565            17 years old
## 14566            16 years old
## 14567            16 years old
## 14568            17 years old
## 14569            16 years old
## 14570            16 years old
## 14571            16 years old
## 14572            17 years old
## 14573            17 years old
## 14574   18 years old or older
## 14575            17 years old
## 14576            16 years old
## 14577   18 years old or older
## 14578            17 years old
## 14579   18 years old or older
## 14580            17 years old
## 14581            17 years old
## 14582                    <NA>
## 14583   18 years old or older
## 14584   18 years old or older
## 14585            17 years old
## 14586            17 years old
## 14587            17 years old
## 14588   18 years old or older
## 14589            17 years old
## 14590            17 years old
## 14591   18 years old or older
## 14592   18 years old or older
## 14593 12 years old or younger
## 14594   18 years old or older
## 14595   18 years old or older
## 14596            16 years old
## 14597            17 years old
## 14598            14 years old
## 14599            17 years old
## 14600            15 years old
## 14601            17 years old
## 14602            14 years old
## 14603            17 years old
## 14604   18 years old or older
## 14605            16 years old
## 14606            16 years old
## 14607            15 years old
## 14608            15 years old
## 14609            15 years old
## 14610            16 years old
## 14611            15 years old
## 14612            14 years old
## 14613            17 years old
## 14614            15 years old
## 14615            16 years old
## 14616            16 years old
## 14617            17 years old
## 14618            17 years old
## 14619            16 years old
## 14620            17 years old
## 14621            16 years old
## 14622            16 years old
## 14623            16 years old
## 14624            17 years old
## 14625            16 years old
## 14626            16 years old
## 14627            16 years old
## 14628            16 years old
## 14629            16 years old
## 14630            16 years old
## 14631            16 years old
## 14632            16 years old
## 14633            15 years old
## 14634            16 years old
## 14635            15 years old
## 14636            15 years old
## 14637            16 years old
## 14638            15 years old
## 14639            15 years old
## 14640            16 years old
## 14641            15 years old
## 14642            15 years old
## 14643            16 years old
## 14644            16 years old
## 14645            15 years old
## 14646            15 years old
## 14647            17 years old
## 14648            17 years old
## 14649   18 years old or older
## 14650            17 years old
## 14651            17 years old
## 14652            13 years old
## 14653            17 years old
## 14654            17 years old
## 14655            17 years old
## 14656   18 years old or older
## 14657   18 years old or older
## 14658            17 years old
## 14659            17 years old
## 14660            17 years old
## 14661            17 years old
## 14662            17 years old
## 14663            14 years old
## 14664            15 years old
## 14665            14 years old
## 14666            14 years old
## 14667            14 years old
## 14668            14 years old
## 14669            14 years old
## 14670            14 years old
## 14671            14 years old
## 14672            14 years old
## 14673            14 years old
## 14674            14 years old
## 14675            13 years old
## 14676            14 years old
## 14677            15 years old
## 14678            14 years old
## 14679            14 years old
## 14680            14 years old
## 14681            15 years old
## 14682            16 years old
## 14683            16 years old
## 14684            17 years old
## 14685            17 years old
## 14686            16 years old
## 14687            16 years old
## 14688            16 years old
## 14689            16 years old
## 14690            16 years old
## 14691            16 years old
## 14692            16 years old
## 14693            17 years old
## 14694            17 years old
## 14695            16 years old
## 14696            17 years old
## 14697            17 years old
## 14698            16 years old
## 14699            16 years old
## 14700            16 years old
## 14701            16 years old
## 14702            16 years old
## 14703            16 years old
## 14704            16 years old
## 14705            17 years old
## 14706   18 years old or older
## 14707            17 years old
## 14708            16 years old
## 14709            16 years old
## 14710            16 years old
## 14711            17 years old
## 14712            16 years old
## 14713            15 years old
## 14714            16 years old
## 14715            15 years old
## 14716            16 years old
## 14717            15 years old
## 14718            15 years old
## 14719            15 years old
## 14720            15 years old
## 14721            15 years old
## 14722            16 years old
## 14723            15 years old
## 14724            15 years old
## 14725            16 years old
## 14726            17 years old
## 14727            16 years old
## 14728            16 years old
## 14729            15 years old
## 14730            16 years old
## 14731            14 years old
## 14732            15 years old
## 14733            15 years old
## 14734            15 years old
## 14735            15 years old
## 14736            15 years old
## 14737            16 years old
## 14738            16 years old
## 14739            16 years old
## 14740            16 years old
## 14741            16 years old
## 14742            15 years old
## 14743            15 years old
## 14744            16 years old
## 14745            17 years old
## 14746            16 years old
## 14747            16 years old
## 14748            16 years old
## 14749            16 years old
## 14750            16 years old
## 14751            16 years old
## 14752            16 years old
## 14753            17 years old
## 14754            17 years old
## 14755            16 years old
## 14756            16 years old
## 14757            17 years old
## 14758            16 years old
## 14759            17 years old
## 14760            16 years old
## 14761            16 years old
## 14762            17 years old
## 14763            17 years old
## 14764            17 years old
## 14765            16 years old
## 14766            16 years old
## 14767            16 years old
## 14768            16 years old
## 14769            16 years old
## 14770            16 years old
## 14771            16 years old
## 14772            15 years old
## 14773            15 years old
## 14774            15 years old
## 14775            15 years old
## 14776            15 years old
## 14777            15 years old
## 14778            15 years old
## 14779            15 years old
## 14780            16 years old
## 14781            16 years old
## 14782            16 years old
## 14783            16 years old
## 14784            15 years old
## 14785            15 years old
## 14786            15 years old
## 14787            16 years old
## 14788            16 years old
## 14789            15 years old
## 14790            15 years old
## 14791            15 years old
## 14792            15 years old
## 14793            16 years old
## 14794            15 years old
## 14795            15 years old
## 14796            16 years old
## 14797            15 years old
## 14798            15 years old
## 14799            15 years old
## 14800            15 years old
## 14801            16 years old
## 14802            16 years old
## 14803            15 years old
## 14804            17 years old
## 14805            16 years old
## 14806            16 years old
## 14807            16 years old
## 14808            16 years old
## 14809            15 years old
## 14810            16 years old
## 14811            16 years old
## 14812   18 years old or older
## 14813            16 years old
## 14814            15 years old
## 14815            16 years old
## 14816            16 years old
## 14817            17 years old
## 14818            17 years old
## 14819            17 years old
## 14820 12 years old or younger
## 14821            17 years old
## 14822            17 years old
## 14823   18 years old or older
## 14824            16 years old
## 14825            17 years old
## 14826            17 years old
## 14827   18 years old or older
## 14828            17 years old
## 14829            17 years old
## 14830            17 years old
## 14831            17 years old
## 14832            17 years old
## 14833            16 years old
## 14834            17 years old
## 14835            17 years old
## 14836            16 years old
## 14837            16 years old
## 14838            17 years old
## 14839            16 years old
## 14840            16 years old
## 14841            15 years old
## 14842            15 years old
## 14843            17 years old
## 14844            16 years old
## 14845            17 years old
## 14846            15 years old
## 14847            17 years old
## 14848            16 years old
## 14849            16 years old
## 14850            14 years old
## 14851            15 years old
## 14852            15 years old
## 14853   18 years old or older
## 14854            16 years old
## 14855            16 years old
## 14856            15 years old
## 14857            17 years old
## 14858            16 years old
## 14859            16 years old
## 14860            15 years old
## 14861            15 years old
## 14862            15 years old
## 14863            15 years old
## 14864            17 years old
## 14865            17 years old
## 14866            16 years old
## 14867            14 years old
## 14868            16 years old
## 14869            16 years old
## 14870            14 years old
## 14871            14 years old
## 14872            17 years old
## 14873            17 years old
## 14874            16 years old
## 14875            16 years old
## 14876            16 years old
## 14877            16 years old
## 14878            17 years old
## 14879            16 years old
## 14880            17 years old
## 14881            17 years old
## 14882            16 years old
## 14883            17 years old
## 14884            16 years old
## 14885            16 years old
## 14886            17 years old
## 14887            16 years old
## 14888            16 years old
## 14889            17 years old
## 14890            17 years old
## 14891            16 years old
## 14892            16 years old
## 14893            16 years old
## 14894            17 years old
## 14895            16 years old
## 14896            16 years old
## 14897            16 years old
## 14898            17 years old
## 14899            17 years old
## 14900            16 years old
## 14901            16 years old
## 14902            16 years old
## 14903            16 years old
## 14904            16 years old
## 14905            16 years old
## 14906            17 years old
## 14907            17 years old
## 14908            17 years old
## 14909            17 years old
## 14910            17 years old
## 14911   18 years old or older
## 14912   18 years old or older
## 14913            17 years old
## 14914            17 years old
## 14915            17 years old
## 14916            17 years old
## 14917   18 years old or older
## 14918            17 years old
## 14919            17 years old
## 14920            15 years old
## 14921            15 years old
## 14922            15 years old
## 14923            15 years old
## 14924            15 years old
## 14925            15 years old
## 14926            15 years old
## 14927            14 years old
## 14928            16 years old
## 14929            16 years old
## 14930            15 years old
## 14931            15 years old
## 14932            15 years old
## 14933            15 years old
## 14934            15 years old
## 14935            15 years old
## 14936            15 years old
## 14937            16 years old
## 14938            15 years old
## 14939            15 years old
## 14940            16 years old
## 14941            15 years old
## 14942            16 years old
## 14943            17 years old
## 14944            16 years old
## 14945            15 years old
## 14946            15 years old
## 14947            15 years old
## 14948            16 years old
## 14949            15 years old
## 14950            15 years old
## 14951            15 years old
## 14952            15 years old
## 14953            15 years old
## 14954            16 years old
## 14955            15 years old
## 14956            15 years old
## 14957            16 years old
## 14958            15 years old
## 14959            16 years old
## 14960            15 years old
## 14961            15 years old
## 14962            15 years old
## 14963            15 years old
## 14964            16 years old
## 14965            15 years old
## 14966            16 years old
## 14967            16 years old
## 14968            16 years old
## 14969            16 years old
## 14970            15 years old
## 14971            15 years old
## 14972            15 years old
## 14973            15 years old
## 14974            16 years old
## 14975            15 years old
## 14976            15 years old
## 14977            15 years old
## 14978            15 years old
## 14979            16 years old
## 14980            16 years old
## 14981            16 years old
## 14982            16 years old
## 14983            15 years old
## 14984            17 years old
## 14985            15 years old
## 14986            16 years old
## 14987            15 years old
## 14988            16 years old
## 14989            15 years old
## 14990            16 years old
## 14991            15 years old
## 14992            16 years old
## 14993            16 years old
## 14994            17 years old
## 14995            14 years old
## 14996            16 years old
## 14997            16 years old
## 14998            16 years old
## 14999            16 years old
## 15000            15 years old
## 15001            14 years old
## 15002            16 years old
## 15003            16 years old
## 15004            15 years old
## 15005            15 years old
## 15006            14 years old
## 15007            15 years old
## 15008            16 years old
## 15009            17 years old
## 15010            16 years old
## 15011            17 years old
## 15012            17 years old
## 15013            17 years old
## 15014            17 years old
## 15015            16 years old
## 15016            17 years old
## 15017            17 years old
## 15018            16 years old
## 15019            16 years old
## 15020   18 years old or older
## 15021            15 years old
## 15022            15 years old
## 15023            15 years old
## 15024            14 years old
## 15025            14 years old
## 15026            14 years old
## 15027            15 years old
## 15028            14 years old
## 15029            14 years old
## 15030            14 years old
## 15031            14 years old
## 15032            14 years old
## 15033            15 years old
## 15034            14 years old
## 15035            14 years old
## 15036            14 years old
## 15037            14 years old
## 15038            14 years old
## 15039            14 years old
## 15040            14 years old
## 15041            14 years old
## 15042            14 years old
## 15043            14 years old
## 15044            15 years old
## 15045            14 years old
## 15046            14 years old
## 15047            14 years old
## 15048            14 years old
## 15049            14 years old
## 15050            14 years old
## 15051            14 years old
## 15052            14 years old
## 15053            15 years old
## 15054            14 years old
## 15055            14 years old
## 15056            14 years old
## 15057            14 years old
## 15058            14 years old
## 15059            14 years old
## 15060            17 years old
## 15061            16 years old
## 15062            15 years old
## 15063            15 years old
## 15064            16 years old
## 15065            15 years old
## 15066            16 years old
## 15067            16 years old
## 15068            16 years old
## 15069            15 years old
## 15070            15 years old
## 15071            17 years old
## 15072            17 years old
## 15073            17 years old
## 15074            16 years old
## 15075            16 years old
## 15076            17 years old
## 15077            17 years old
## 15078            17 years old
## 15079            14 years old
## 15080            14 years old
## 15081            14 years old
## 15082            14 years old
## 15083            14 years old
## 15084            14 years old
## 15085            15 years old
## 15086            14 years old
## 15087            14 years old
## 15088            14 years old
## 15089            14 years old
## 15090            14 years old
## 15091            15 years old
## 15092            14 years old
## 15093            14 years old
## 15094            14 years old
## 15095            16 years old
## 15096            17 years old
## 15097            16 years old
## 15098   18 years old or older
## 15099   18 years old or older
## 15100            17 years old
## 15101            13 years old
## 15102            17 years old
## 15103            17 years old
## 15104   18 years old or older
## 15105   18 years old or older
## 15106            17 years old
## 15107            15 years old
## 15108            17 years old
## 15109            17 years old
## 15110   18 years old or older
## 15111            17 years old
## 15112            17 years old
## 15113            17 years old
## 15114            17 years old
## 15115            17 years old
## 15116            16 years old
## 15117            15 years old
## 15118            15 years old
## 15119            16 years old
## 15120            14 years old
## 15121            15 years old
## 15122            15 years old
## 15123            15 years old
## 15124            16 years old
## 15125            15 years old
## 15126            15 years old
## 15127            15 years old
## 15128            16 years old
## 15129            16 years old
## 15130            16 years old
## 15131            16 years old
## 15132            15 years old
## 15133            15 years old
## 15134            15 years old
## 15135            15 years old
## 15136            15 years old
## 15137            15 years old
## 15138            14 years old
## 15139            14 years old
## 15140            15 years old
## 15141            14 years old
## 15142            14 years old
## 15143            14 years old
## 15144            14 years old
## 15145            14 years old
## 15146            14 years old
## 15147            14 years old
## 15148            14 years old
## 15149            14 years old
## 15150            14 years old
## 15151            14 years old
## 15152            14 years old
## 15153            14 years old
## 15154            14 years old
## 15155            16 years old
## 15156            16 years old
## 15157            16 years old
## 15158            16 years old
## 15159            16 years old
## 15160            16 years old
## 15161            16 years old
## 15162            17 years old
## 15163            16 years old
## 15164            16 years old
## 15165            16 years old
## 15166            16 years old
## 15167            16 years old
## 15168            16 years old
## 15169            16 years old
## 15170            16 years old
## 15171            16 years old
## 15172            16 years old
## 15173            16 years old
## 15174            16 years old
## 15175            17 years old
## 15176            16 years old
## 15177            16 years old
## 15178            16 years old
## 15179            15 years old
## 15180            15 years old
## 15181            16 years old
## 15182            15 years old
## 15183            15 years old
## 15184            15 years old
## 15185            16 years old
## 15186            16 years old
## 15187            15 years old
## 15188            16 years old
## 15189            15 years old
## 15190            15 years old
## 15191            15 years old
## 15192            15 years old
## 15193            16 years old
## 15194            16 years old
## 15195            17 years old
## 15196            17 years old
## 15197            17 years old
## 15198   18 years old or older
## 15199            17 years old
## 15200            17 years old
## 15201            17 years old
## 15202            17 years old
## 15203            17 years old
## 15204            17 years old
## 15205            17 years old
## 15206            17 years old
## 15207            15 years old
## 15208            15 years old
## 15209            15 years old
## 15210            15 years old
## 15211            15 years old
## 15212            15 years old
## 15213            15 years old
## 15214            15 years old
## 15215            15 years old
## 15216            16 years old
## 15217            16 years old
## 15218            15 years old
## 15219            15 years old
## 15220            15 years old
## 15221            15 years old
## 15222            15 years old
## 15223            15 years old
## 15224            15 years old
## 15225   18 years old or older
## 15226            17 years old
## 15227            17 years old
## 15228            17 years old
## 15229            17 years old
## 15230            17 years old
## 15231   18 years old or older
## 15232            17 years old
## 15233            14 years old
## 15234            15 years old
## 15235            15 years old
## 15236            15 years old
## 15237            15 years old
## 15238            15 years old
## 15239            14 years old
## 15240            14 years old
## 15241            14 years old
## 15242            14 years old
## 15243            14 years old
## 15244            15 years old
## 15245            14 years old
## 15246            14 years old
## 15247            14 years old
## 15248            14 years old
## 15249            14 years old
## 15250            14 years old
## 15251            14 years old
## 15252            16 years old
## 15253            14 years old
## 15254            15 years old
## 15255            14 years old
## 15256            14 years old
## 15257            16 years old
## 15258            14 years old
## 15259            14 years old
## 15260            14 years old
## 15261            16 years old
## 15262            14 years old
## 15263            15 years old
## 15264            15 years old
## 15265            14 years old
## 15266            14 years old
## 15267            15 years old
## 15268            14 years old
## 15269            14 years old
## 15270            14 years old
## 15271            15 years old
## 15272            14 years old
## 15273            14 years old
## 15274            16 years old
## 15275            17 years old
## 15276            16 years old
## 15277            16 years old
## 15278            16 years old
## 15279            16 years old
## 15280            17 years old
## 15281            15 years old
## 15282            15 years old
## 15283            14 years old
## 15284            16 years old
## 15285            17 years old
## 15286            17 years old
## 15287            15 years old
## 15288            14 years old
## 15289            16 years old
## 15290            16 years old
## 15291            16 years old
## 15292            16 years old
## 15293            17 years old
## 15294            16 years old
## 15295            16 years old
## 15296            16 years old
## 15297            17 years old
## 15298            16 years old
## 15299            16 years old
## 15300            16 years old
## 15301            16 years old
## 15302            16 years old
## 15303            16 years old
## 15304            17 years old
## 15305            16 years old
## 15306            16 years old
## 15307            16 years old
## 15308            14 years old
## 15309            17 years old
## 15310   18 years old or older
## 15311            17 years old
## 15312            17 years old
## 15313            16 years old
## 15314            14 years old
## 15315            17 years old
## 15316            15 years old
## 15317            16 years old
## 15318            15 years old
## 15319 12 years old or younger
## 15320            15 years old
## 15321            15 years old
## 15322            16 years old
## 15323            15 years old
## 15324            16 years old
## 15325            15 years old
## 15326            14 years old
## 15327            15 years old
## 15328            15 years old
## 15329            15 years old
## 15330            15 years old
## 15331            15 years old
## 15332            15 years old
## 15333            15 years old
## 15334            15 years old
## 15335            14 years old
## 15336            15 years old
## 15337            14 years old
## 15338            14 years old
## 15339            14 years old
## 15340            14 years old
## 15341            14 years old
## 15342            14 years old
## 15343            15 years old
## 15344            14 years old
## 15345            14 years old
## 15346            15 years old
## 15347            14 years old
## 15348            14 years old
## 15349            17 years old
## 15350            15 years old
## 15351            14 years old
## 15352            14 years old
## 15353            16 years old
## 15354            14 years old
## 15355            14 years old
## 15356            17 years old
## 15357            17 years old
## 15358 12 years old or younger
## 15359            17 years old
## 15360   18 years old or older
## 15361            16 years old
## 15362            17 years old
## 15363            16 years old
## 15364            17 years old
## 15365            17 years old
## 15366            17 years old
## 15367            16 years old
## 15368            17 years old
## 15369            17 years old
## 15370            16 years old
## 15371            16 years old
## 15372            17 years old
## 15373            17 years old
## 15374            17 years old
## 15375            16 years old
## 15376            17 years old
## 15377            17 years old
## 15378            16 years old
## 15379            17 years old
## 15380            16 years old
## 15381   18 years old or older
## 15382            15 years old
## 15383            15 years old
## 15384            15 years old
## 15385            16 years old
## 15386            15 years old
## 15387            16 years old
## 15388            17 years old
## 15389            15 years old
## 15390            15 years old
## 15391            15 years old
## 15392            15 years old
## 15393            15 years old
## 15394            15 years old
## 15395            15 years old
## 15396            16 years old
## 15397            15 years old
## 15398            16 years old
## 15399            17 years old
## 15400            16 years old
## 15401   18 years old or older
## 15402   18 years old or older
## 15403            17 years old
## 15404            17 years old
## 15405            16 years old
## 15406            17 years old
## 15407            17 years old
## 15408            17 years old
## 15409 12 years old or younger
## 15410            17 years old
## 15411            16 years old
## 15412            17 years old
## 15413            17 years old
## 15414            17 years old
## 15415            14 years old
## 15416            17 years old
## 15417            16 years old
## 15418            16 years old
## 15419            16 years old
## 15420   18 years old or older
## 15421            16 years old
## 15422            16 years old
## 15423            16 years old
## 15424            15 years old
## 15425            15 years old
## 15426            15 years old
## 15427            15 years old
## 15428            15 years old
## 15429            15 years old
## 15430            15 years old
## 15431            15 years old
## 15432            14 years old
## 15433            15 years old
## 15434            15 years old
## 15435            16 years old
## 15436            16 years old
## 15437            16 years old
## 15438            15 years old
## 15439            15 years old
## 15440            17 years old
## 15441            15 years old
## 15442            16 years old
## 15443            15 years old
## 15444            15 years old
## 15445            16 years old
## 15446            17 years old
## 15447            17 years old
## 15448            16 years old
## 15449            16 years old
## 15450            15 years old
## 15451            17 years old
## 15452            16 years old
## 15453            17 years old
## 15454            17 years old
## 15455            16 years old
## 15456            17 years old
## 15457            17 years old
## 15458            17 years old
## 15459   18 years old or older
## 15460            17 years old
## 15461            17 years old
## 15462            17 years old
## 15463            17 years old
## 15464            17 years old
## 15465            16 years old
## 15466            17 years old
## 15467            17 years old
## 15468            17 years old
## 15469            17 years old
## 15470            16 years old
## 15471            17 years old
## 15472            16 years old
## 15473            16 years old
## 15474            17 years old
## 15475            16 years old
## 15476            16 years old
## 15477            16 years old
## 15478            16 years old
## 15479            16 years old
## 15480            16 years old
## 15481            17 years old
## 15482            16 years old
## 15483            16 years old
## 15484            16 years old
## 15485            17 years old
## 15486            16 years old
## 15487            17 years old
## 15488            16 years old
## 15489            17 years old
## 15490            16 years old
## 15491            16 years old
## 15492   18 years old or older
## 15493   18 years old or older
## 15494            17 years old
## 15495            17 years old
## 15496            17 years old
## 15497   18 years old or older
## 15498            16 years old
## 15499            14 years old
## 15500            14 years old
## 15501            14 years old
## 15502            14 years old
## 15503            14 years old
## 15504            17 years old
## 15505            14 years old
## 15506            14 years old
## 15507            14 years old
## 15508            14 years old
## 15509            15 years old
## 15510            15 years old
## 15511            16 years old
## 15512            14 years old
## 15513            14 years old
## 15514            15 years old
## 15515            14 years old
## 15516            15 years old
## 15517            14 years old
## 15518            14 years old
## 15519            14 years old
## 15520            15 years old
## 15521            15 years old
## 15522            16 years old
## 15523            15 years old
## 15524            15 years old
## 15525            15 years old
## 15526            15 years old
## 15527            15 years old
## 15528            15 years old
## 15529            16 years old
## 15530            15 years old
## 15531            15 years old
## 15532            14 years old
## 15533            15 years old
## 15534            15 years old
## 15535            15 years old
## 15536            15 years old
## 15537            15 years old
## 15538            15 years old
## 15539            16 years old
## 15540            16 years old
## 15541            15 years old
## 15542            15 years old
## 15543            15 years old
## 15544            16 years old
## 15545            15 years old
## 15546            14 years old
## 15547            16 years old
## 15548            16 years old
## 15549            15 years old
## 15550            16 years old
## 15551            15 years old
## 15552            15 years old
## 15553            15 years old
## 15554            16 years old
## 15555            14 years old
## 15556            15 years old
## 15557            14 years old
## 15558            14 years old
## 15559            14 years old
## 15560            16 years old
## 15561            16 years old
## 15562            15 years old
## 15563            14 years old
## 15564            15 years old
## 15565            15 years old
## 15566            16 years old
## 15567            16 years old
## 15568            16 years old
## 15569            16 years old
## 15570            15 years old
## 15571            16 years old
## 15572            15 years old
## 15573            15 years old
## 15574            16 years old
## 15575            16 years old
## 15576            17 years old
## 15577            15 years old
## 15578            16 years old
## 15579            15 years old
## 15580            17 years old
## 15581            15 years old
## 15582            17 years old
## 15583            16 years old
## 15584            15 years old
## 15585            16 years old
## 15586            15 years old
## 15587            17 years old
## 15588            15 years old
## 15589            15 years old
## 15590            15 years old
## 15591            16 years old
## 15592            16 years old
## 15593            16 years old
## 15594            15 years old
## 15595            16 years old
## 15596            16 years old
## 15597            16 years old
## 15598            15 years old
## 15599            17 years old
## 15600            17 years old
## 15601            15 years old
## 15602            17 years old
## 15603            16 years old
## 15604            16 years old
## 15605            17 years old
## 15606   18 years old or older
## 15607            16 years old
## 15608            16 years old
## 15609            17 years old
## 15610            16 years old
## 15611            16 years old
## 15612            16 years old
## 15613            16 years old
## 15614            16 years old
## 15615            17 years old
## 15616            16 years old
## 15617            16 years old
## 15618   18 years old or older
## 15619            17 years old
## 15620            15 years old
## 15621            15 years old
## 15622            15 years old
## 15623            15 years old
## 15624            15 years old
## 15625            15 years old
## 15626            15 years old
## 15627            15 years old
## 15628            15 years old
## 15629            15 years old
## 15630            15 years old
## 15631            15 years old
## 15632            15 years old
## 15633            15 years old
## 15634            16 years old
## 15635            16 years old
## 15636            17 years old
## 15637            16 years old
## 15638            17 years old
## 15639            16 years old
## 15640            15 years old
## 15641            14 years old
## 15642            14 years old
## 15643            14 years old
## 15644            15 years old
## 15645            15 years old
## 15646            15 years old
## 15647            14 years old
## 15648            14 years old
## 15649            14 years old
## 15650            14 years old
## 15651            14 years old
## 15652            14 years old
## 15653            14 years old
## 15654            14 years old
## 15655            14 years old
## 15656            15 years old
## 15657            14 years old
## 15658            14 years old
## 15659            17 years old
## 15660            17 years old
## 15661            14 years old
## 15662            17 years old
## 15663            17 years old
## 15664            15 years old
## 15665            17 years old
## 15666            17 years old
## 15667            17 years old
## 15668            17 years old
## 15669            16 years old
## 15670            16 years old
## 15671            16 years old
## 15672            16 years old
## 15673   18 years old or older
## 15674            15 years old
## 15675            16 years old
## 15676            14 years old
## 15677            14 years old
## 15678            16 years old
## 15679            16 years old
## 15680            14 years old
## 15681            14 years old
## 15682            14 years old
## 15683            15 years old
## 15684            15 years old
## 15685            14 years old
## 15686            15 years old
## 15687            16 years old
## 15688            14 years old
## 15689            15 years old
## 15690            15 years old
## 15691            14 years old
## 15692            15 years old
## 15693            15 years old
## 15694            14 years old
## 15695            14 years old
## 15696            17 years old
## 15697            14 years old
## 15698            14 years old
## 15699            14 years old
## 15700            16 years old
## 15701            14 years old
## 15702            14 years old
## 15703            14 years old
## 15704            14 years old
## 15705            14 years old
## 15706            14 years old
## 15707            16 years old
## 15708            15 years old
## 15709            14 years old
## 15710            15 years old
## 15711            14 years old
## 15712            15 years old
## 15713            14 years old
## 15714            17 years old
## 15715            16 years old
## 15716            16 years old
## 15717            16 years old
## 15718            16 years old
## 15719            16 years old
## 15720            16 years old
## 15721            16 years old
## 15722            16 years old
## 15723            16 years old
## 15724            16 years old
## 15725            17 years old
## 15726            17 years old
## 15727   18 years old or older
## 15728            17 years old
## 15729            16 years old
## 15730            16 years old
## 15731            15 years old
## 15732            15 years old
## 15733            15 years old
## 15734            15 years old
## 15735            15 years old
## 15736            15 years old
## 15737            15 years old
## 15738            15 years old
## 15739            16 years old
## 15740            15 years old
## 15741            15 years old
## 15742            16 years old
## 15743            15 years old
## 15744            15 years old
## 15745            15 years old
## 15746            15 years old
## 15747            15 years old
## 15748            15 years old
## 15749            15 years old
## 15750            17 years old
## 15751            17 years old
## 15752            15 years old
## 15753   18 years old or older
## 15754            16 years old
## 15755            16 years old
## 15756            17 years old
## 15757            15 years old
## 15758   18 years old or older
## 15759            15 years old
## 15760            15 years old
## 15761            16 years old
## 15762            16 years old
## 15763            16 years old
## 15764            16 years old
## 15765            15 years old
## 15766            15 years old
## 15767            15 years old
## 15768            15 years old
## 15769            15 years old
## 15770            15 years old
## 15771            15 years old
## 15772            16 years old
## 15773            15 years old
## 15774            15 years old
## 15775            15 years old
## 15776            16 years old
## 15777            16 years old
## 15778            15 years old
## 15779            15 years old
## 15780            15 years old
## 15781            16 years old
## 15782            16 years old
## 15783            15 years old
## 15784            15 years old
## 15785            14 years old
## 15786            14 years old
## 15787            15 years old
## 15788            14 years old
## 15789            14 years old
## 15790            14 years old
## 15791            14 years old
## 15792            14 years old
## 15793            14 years old
## 15794            14 years old
## 15795            14 years old
## 15796            14 years old
## 15797            15 years old
## 15798            15 years old
## 15799            15 years old
## 15800            14 years old
## 15801            15 years old
## 15802            14 years old
## 15803            14 years old
## 15804            14 years old
## 15805            16 years old
## 15806            14 years old
## 15807            14 years old
## 15808            14 years old
## 15809            14 years old
## 15810            14 years old
## 15811            15 years old
## 15812            14 years old
## 15813            14 years old
## 15814            14 years old
## 15815            15 years old
## 15816            14 years old
## 15817            14 years old
## 15818            14 years old
## 15819            14 years old
## 15820            15 years old
## 15821            14 years old
## 15822            14 years old
## 15823            15 years old
## 15824            14 years old
## 15825            13 years old
## 15826            14 years old
## 15827            14 years old
## 15828            15 years old
## 15829            16 years old
## 15830            16 years old
## 15831            15 years old
## 15832            16 years old
## 15833            17 years old
## 15834            15 years old
## 15835            17 years old
## 15836   18 years old or older
## 15837            15 years old
## 15838            15 years old
## 15839            15 years old
## 15840            15 years old
## 15841            16 years old
## 15842            17 years old
## 15843            17 years old
## 15844            17 years old
## 15845   18 years old or older
## 15846            17 years old
## 15847            17 years old
## 15848            16 years old
## 15849            17 years old
## 15850            16 years old
## 15851            17 years old
## 15852   18 years old or older
## 15853            17 years old
## 15854            15 years old
## 15855            17 years old
## 15856            16 years old
## 15857            17 years old
## 15858            16 years old
## 15859            17 years old
## 15860            17 years old
## 15861            16 years old
## 15862            14 years old
## 15863            14 years old
## 15864            14 years old
## 15865            14 years old
## 15866            14 years old
## 15867            14 years old
## 15868            14 years old
## 15869            14 years old
## 15870            14 years old
## 15871            14 years old
## 15872            14 years old
## 15873            14 years old
## 15874            14 years old
## 15875            14 years old
## 15876            14 years old
## 15877            14 years old
## 15878            14 years old
## 15879            16 years old
## 15880            15 years old
## 15881            15 years old
## 15882            15 years old
## 15883            15 years old
## 15884            15 years old
## 15885            14 years old
## 15886            16 years old
## 15887            14 years old
## 15888            16 years old
## 15889            15 years old
## 15890            15 years old
## 15891            15 years old
## 15892            15 years old
## 15893            16 years old
## 15894            14 years old
## 15895            16 years old
## 15896            17 years old
## 15897            17 years old
## 15898            16 years old
## 15899            17 years old
## 15900            15 years old
## 15901            17 years old
## 15902            14 years old
## 15903            15 years old
## 15904            15 years old
## 15905            14 years old
## 15906            14 years old
## 15907            14 years old
## 15908            14 years old
## 15909            15 years old
## 15910            14 years old
## 15911            14 years old
## 15912            16 years old
## 15913            14 years old
## 15914            15 years old
## 15915            15 years old
## 15916            15 years old
## 15917            15 years old
## 15918            15 years old
## 15919            15 years old
## 15920            15 years old
## 15921            15 years old
## 15922            16 years old
## 15923            16 years old
## 15924            16 years old
## 15925   18 years old or older
## 15926            16 years old
## 15927            16 years old
## 15928            16 years old
## 15929            16 years old
## 15930            17 years old
## 15931            16 years old
## 15932            16 years old
## 15933            17 years old
## 15934            17 years old
## 15935            16 years old
## 15936            17 years old
## 15937            16 years old
## 15938            16 years old
## 15939            17 years old
## 15940            16 years old
## 15941            17 years old
## 15942            17 years old
## 15943            17 years old
## 15944            17 years old
## 15945            15 years old
## 15946            14 years old
## 15947            14 years old
## 15948            14 years old
## 15949            14 years old
## 15950            15 years old
## 15951            14 years old
## 15952            14 years old
## 15953            14 years old
## 15954            14 years old
## 15955            15 years old
## 15956            14 years old
## 15957            14 years old
## 15958            14 years old
## 15959            14 years old
## 15960            14 years old
## 15961            15 years old
## 15962            15 years old
## 15963            15 years old
## 15964            16 years old
## 15965            16 years old
## 15966            15 years old
## 15967            15 years old
## 15968            15 years old
## 15969            16 years old
## 15970            15 years old
## 15971            15 years old
## 15972            15 years old
## 15973            15 years old
## 15974            15 years old
## 15975            15 years old
## 15976            15 years old
## 15977            15 years old
## 15978            16 years old
## 15979            15 years old
## 15980   18 years old or older
## 15981            17 years old
## 15982            17 years old
## 15983 12 years old or younger
## 15984            17 years old
## 15985            17 years old
## 15986            17 years old
## 15987            17 years old
## 15988            17 years old
## 15989   18 years old or older
## 15990            17 years old
## 15991   18 years old or older
## 15992   18 years old or older
## 15993            17 years old
## 15994   18 years old or older
## 15995            16 years old
## 15996            16 years old
## 15997            16 years old
## 15998            16 years old
## 15999            16 years old
## 16000            16 years old
## 16001            16 years old
## 16002            16 years old
## 16003            16 years old
## 16004            16 years old
## 16005            16 years old
## 16006            16 years old
## 16007            16 years old
## 16008            16 years old
## 16009            16 years old
## 16010            16 years old
## 16011            17 years old
## 16012            16 years old
## 16013            16 years old
## 16014            17 years old
## 16015            17 years old
## 16016            15 years old
## 16017            17 years old
## 16018            17 years old
## 16019            14 years old
## 16020   18 years old or older
## 16021            15 years old
## 16022            16 years old
## 16023            16 years old
## 16024            15 years old
## 16025            15 years old
## 16026            15 years old
## 16027            15 years old
## 16028            14 years old
## 16029            15 years old
## 16030            15 years old
## 16031            15 years old
## 16032            14 years old
## 16033            14 years old
## 16034            15 years old
## 16035            16 years old
## 16036            14 years old
## 16037            15 years old
## 16038            14 years old
## 16039            15 years old
## 16040            15 years old
## 16041            15 years old
## 16042            16 years old
## 16043            16 years old
## 16044            14 years old
## 16045            15 years old
## 16046            15 years old
## 16047            15 years old
## 16048            15 years old
## 16049            15 years old
## 16050            15 years old
## 16051            15 years old
## 16052            15 years old
## 16053            15 years old
## 16054            15 years old
## 16055            15 years old
## 16056            15 years old
## 16057            15 years old
## 16058            15 years old
## 16059            15 years old
## 16060            15 years old
## 16061            16 years old
## 16062            15 years old
## 16063            15 years old
## 16064            16 years old
## 16065            15 years old
## 16066            15 years old
## 16067            15 years old
## 16068            15 years old
## 16069            17 years old
## 16070            15 years old
## 16071            15 years old
## 16072            15 years old
## 16073            15 years old
## 16074            15 years old
## 16075            15 years old
## 16076            16 years old
## 16077            15 years old
## 16078            15 years old
## 16079            15 years old
## 16080            14 years old
## 16081            15 years old
## 16082            15 years old
## 16083            16 years old
## 16084            14 years old
## 16085            14 years old
## 16086            14 years old
## 16087            15 years old
## 16088            14 years old
## 16089            14 years old
## 16090            14 years old
## 16091            14 years old
## 16092            14 years old
## 16093            15 years old
## 16094            15 years old
## 16095            15 years old
## 16096            14 years old
## 16097            14 years old
## 16098            14 years old
## 16099            16 years old
## 16100            16 years old
## 16101            16 years old
## 16102            16 years old
## 16103            16 years old
## 16104            16 years old
## 16105            16 years old
## 16106            16 years old
## 16107            17 years old
## 16108            16 years old
## 16109            16 years old
## 16110            16 years old
## 16111            16 years old
## 16112            16 years old
## 16113            16 years old
## 16114            16 years old
## 16115            16 years old
## 16116            16 years old
## 16117            17 years old
## 16118            17 years old
## 16119            16 years old
## 16120            16 years old
## 16121   18 years old or older
## 16122            15 years old
## 16123   18 years old or older
## 16124            17 years old
## 16125            15 years old
## 16126            17 years old
## 16127            17 years old
## 16128            16 years old
## 16129            16 years old
## 16130            17 years old
## 16131            16 years old
## 16132            17 years old
## 16133            17 years old
## 16134            17 years old
## 16135            17 years old
## 16136            17 years old
## 16137            17 years old
## 16138   18 years old or older
## 16139            17 years old
## 16140            16 years old
## 16141            17 years old
## 16142            15 years old
## 16143            16 years old
## 16144            17 years old
## 16145   18 years old or older
## 16146            17 years old
## 16147            17 years old
## 16148            17 years old
## 16149            16 years old
## 16150            16 years old
## 16151            16 years old
## 16152            16 years old
## 16153            16 years old
## 16154            16 years old
## 16155            16 years old
## 16156            16 years old
## 16157            16 years old
## 16158            16 years old
## 16159            17 years old
## 16160            17 years old
## 16161            16 years old
## 16162            16 years old
## 16163            15 years old
## 16164            14 years old
## 16165            15 years old
## 16166            15 years old
## 16167            15 years old
## 16168            15 years old
## 16169            16 years old
## 16170            15 years old
## 16171            15 years old
## 16172            15 years old
## 16173            16 years old
## 16174            15 years old
## 16175            15 years old
## 16176            15 years old
## 16177            15 years old
## 16178            15 years old
## 16179            15 years old
## 16180            15 years old
## 16181            15 years old
## 16182            15 years old
## 16183            15 years old
## 16184            15 years old
## 16185            15 years old
## 16186            15 years old
## 16187            17 years old
## 16188            16 years old
## 16189            16 years old
## 16190            16 years old
## 16191            16 years old
## 16192            16 years old
## 16193            16 years old
## 16194            15 years old
## 16195            16 years old
## 16196            16 years old
## 16197            16 years old
## 16198            16 years old
## 16199            16 years old
## 16200            17 years old
## 16201            17 years old
## 16202            16 years old
## 16203            15 years old
## 16204            17 years old
## 16205            16 years old
## 16206            17 years old
## 16207            15 years old
## 16208            15 years old
## 16209            15 years old
## 16210            15 years old
## 16211            15 years old
## 16212            15 years old
## 16213            16 years old
## 16214            15 years old
## 16215            15 years old
## 16216            15 years old
## 16217            15 years old
## 16218            15 years old
## 16219            16 years old
## 16220            15 years old
## 16221            15 years old
## 16222            17 years old
## 16223            17 years old
## 16224            16 years old
## 16225            16 years old
## 16226            16 years old
## 16227            16 years old
## 16228            17 years old
## 16229            16 years old
## 16230            17 years old
## 16231            17 years old
## 16232            16 years old
## 16233            16 years old
## 16234            16 years old
## 16235            17 years old
## 16236            16 years old
## 16237            17 years old
## 16238            16 years old
## 16239            16 years old
## 16240            17 years old
## 16241            17 years old
## 16242            17 years old
## 16243            17 years old
## 16244            17 years old
## 16245            16 years old
## 16246            16 years old
## 16247            17 years old
## 16248            16 years old
## 16249            16 years old
## 16250            16 years old
## 16251            16 years old
## 16252            16 years old
## 16253            17 years old
## 16254            17 years old
## 16255            16 years old
## 16256            15 years old
## 16257            14 years old
## 16258            14 years old
## 16259            15 years old
## 16260            16 years old
## 16261            14 years old
## 16262            14 years old
## 16263            15 years old
## 16264            14 years old
## 16265            14 years old
## 16266            14 years old
## 16267            14 years old
## 16268            15 years old
## 16269            14 years old
## 16270            14 years old
## 16271            16 years old
## 16272            14 years old
## 16273            14 years old
## 16274            14 years old
## 16275            17 years old
## 16276            15 years old
## 16277            15 years old
## 16278            14 years old
## 16279            15 years old
## 16280            14 years old
## 16281            14 years old
## 16282            14 years old
## 16283            17 years old
## 16284            14 years old
## 16285            15 years old
## 16286            15 years old
## 16287            15 years old
## 16288            15 years old
## 16289            15 years old
## 16290            16 years old
## 16291            15 years old
## 16292            15 years old
## 16293            15 years old
## 16294            15 years old
## 16295            15 years old
## 16296            15 years old
## 16297            15 years old
## 16298            15 years old
## 16299            15 years old
## 16300            15 years old
## 16301            15 years old
## 16302                    <NA>
## 16303            15 years old
## 16304            15 years old
## 16305            16 years old
## 16306            15 years old
## 16307            15 years old
## 16308            16 years old
## 16309            15 years old
## 16310            16 years old
## 16311            14 years old
## 16312            14 years old
## 16313            14 years old
## 16314            14 years old
## 16315            14 years old
## 16316            14 years old
## 16317            14 years old
## 16318            14 years old
## 16319            14 years old
## 16320            14 years old
## 16321            14 years old
## 16322            14 years old
## 16323            14 years old
## 16324            15 years old
## 16325            14 years old
## 16326            14 years old
## 16327            14 years old
## 16328            14 years old
## 16329            14 years old
## 16330            14 years old
## 16331            14 years old
## 16332            14 years old
## 16333            14 years old
## 16334            14 years old
## 16335            15 years old
## 16336            16 years old
## 16337            17 years old
## 16338            17 years old
## 16339            17 years old
## 16340            17 years old
## 16341            16 years old
## 16342            15 years old
## 16343            16 years old
## 16344            17 years old
## 16345            16 years old
## 16346            17 years old
## 16347            17 years old
## 16348            14 years old
## 16349            17 years old
## 16350            15 years old
## 16351            17 years old
## 16352            17 years old
## 16353            15 years old
## 16354            16 years old
## 16355            16 years old
## 16356            16 years old
## 16357            16 years old
## 16358            16 years old
## 16359            16 years old
## 16360            17 years old
## 16361   18 years old or older
## 16362   18 years old or older
## 16363            16 years old
## 16364            16 years old
## 16365            16 years old
## 16366            16 years old
## 16367            16 years old
## 16368            17 years old
## 16369            16 years old
## 16370 12 years old or younger
## 16371            17 years old
## 16372            16 years old
## 16373            16 years old
## 16374            16 years old
## 16375            16 years old
## 16376            16 years old
## 16377            16 years old
## 16378            17 years old
## 16379            16 years old
## 16380            17 years old
## 16381            14 years old
## 16382            15 years old
## 16383            15 years old
## 16384            15 years old
## 16385            15 years old
## 16386            15 years old
## 16387            16 years old
## 16388            15 years old
## 16389            15 years old
## 16390            17 years old
## 16391            15 years old
## 16392            15 years old
## 16393            17 years old
## 16394            16 years old
## 16395            17 years old
## 16396            16 years old
## 16397            15 years old
## 16398            15 years old
## 16399            15 years old
## 16400            15 years old
## 16401            16 years old
## 16402            15 years old
## 16403            15 years old
## 16404            15 years old
## 16405            15 years old
## 16406            16 years old
## 16407            17 years old
## 16408            17 years old
## 16409            16 years old
## 16410            14 years old
## 16411            14 years old
## 16412            14 years old
## 16413            14 years old
## 16414            15 years old
## 16415            16 years old
## 16416            15 years old
## 16417            15 years old
## 16418            14 years old
## 16419            14 years old
## 16420            14 years old
## 16421            14 years old
## 16422            14 years old
## 16423            14 years old
## 16424            14 years old
## 16425            16 years old
## 16426            14 years old
## 16427            14 years old
## 16428            16 years old
## 16429            15 years old
## 16430            13 years old
## 16431            16 years old
## 16432            15 years old
## 16433            15 years old
## 16434            16 years old
## 16435            15 years old
## 16436            16 years old
## 16437   18 years old or older
## 16438            15 years old
## 16439            14 years old
## 16440            14 years old
## 16441            15 years old
## 16442            14 years old
## 16443            15 years old
## 16444            14 years old
## 16445            14 years old
## 16446            15 years old
## 16447            15 years old
## 16448            14 years old
## 16449            14 years old
## 16450            14 years old
## 16451            14 years old
## 16452            14 years old
## 16453            16 years old
## 16454            14 years old
## 16455            13 years old
## 16456            16 years old
## 16457            14 years old
## 16458            17 years old
## 16459            14 years old
## 16460            15 years old
## 16461            15 years old
## 16462            16 years old
## 16463            14 years old
## 16464            15 years old
## 16465            17 years old
## 16466            16 years old
## 16467            15 years old
## 16468            15 years old
## 16469            14 years old
## 16470            14 years old
## 16471            14 years old
## 16472            14 years old
## 16473            14 years old
## 16474            15 years old
## 16475            14 years old
## 16476            14 years old
## 16477            15 years old
## 16478            14 years old
## 16479            14 years old
## 16480            14 years old
## 16481            15 years old
## 16482            16 years old
## 16483            16 years old
## 16484            16 years old
## 16485            15 years old
## 16486            17 years old
## 16487            15 years old
## 16488            17 years old
## 16489            16 years old
## 16490            15 years old
## 16491            15 years old
## 16492            17 years old
## 16493            14 years old
## 16494            14 years old
## 16495            16 years old
## 16496            14 years old
## 16497            16 years old
## 16498            14 years old
## 16499            17 years old
## 16500            17 years old
## 16501            17 years old
## 16502            16 years old
## 16503            14 years old
## 16504            16 years old
## 16505            16 years old
## 16506            17 years old
## 16507            16 years old
## 16508            16 years old
## 16509            17 years old
## 16510            16 years old
## 16511            15 years old
## 16512   18 years old or older
## 16513            16 years old
## 16514            17 years old
## 16515            17 years old
## 16516            16 years old
## 16517            17 years old
## 16518            15 years old
## 16519            17 years old
## 16520            16 years old
## 16521            17 years old
## 16522            16 years old
## 16523            16 years old
## 16524            16 years old
## 16525            16 years old
## 16526            17 years old
## 16527            16 years old
## 16528            16 years old
## 16529            17 years old
## 16530            16 years old
## 16531            16 years old
## 16532            17 years old
## 16533            16 years old
## 16534            16 years old
## 16535            17 years old
## 16536            16 years old
## 16537            16 years old
## 16538            16 years old
## 16539            16 years old
## 16540            16 years old
## 16541            16 years old
## 16542            16 years old
## 16543   18 years old or older
## 16544            16 years old
## 16545            17 years old
## 16546            15 years old
## 16547            15 years old
## 16548            14 years old
## 16549            14 years old
## 16550            15 years old
## 16551            14 years old
## 16552            14 years old
## 16553            14 years old
## 16554            16 years old
## 16555            14 years old
## 16556            14 years old
## 16557            14 years old
## 16558            16 years old
## 16559            14 years old
## 16560            15 years old
## 16561            14 years old
## 16562            14 years old
## 16563            15 years old
## 16564            17 years old
## 16565            14 years old
## 16566            14 years old
## 16567            15 years old
## 16568            16 years old
## 16569            14 years old
## 16570            16 years old
## 16571            14 years old
## 16572            16 years old
## 16573            14 years old
## 16574            17 years old
## 16575            15 years old
## 16576            17 years old
## 16577            15 years old
## 16578            14 years old
## 16579            15 years old
## 16580            14 years old
## 16581            15 years old
## 16582            15 years old
## 16583            16 years old
## 16584            16 years old
## 16585            15 years old
## 16586            16 years old
## 16587            16 years old
## 16588            16 years old
## 16589            15 years old
## 16590            16 years old
## 16591            15 years old
## 16592            15 years old
## 16593            15 years old
## 16594            16 years old
## 16595            15 years old
## 16596            16 years old
## 16597            15 years old
## 16598            15 years old
## 16599            16 years old
## 16600            15 years old
## 16601            15 years old
## 16602            15 years old
## 16603            15 years old
## 16604            15 years old
## 16605            15 years old
## 16606            15 years old
## 16607            16 years old
## 16608            15 years old
## 16609            15 years old
## 16610            14 years old
## 16611            14 years old
## 16612            15 years old
## 16613            15 years old
## 16614            15 years old
## 16615            15 years old
## 16616            14 years old
## 16617            15 years old
## 16618            15 years old
## 16619            14 years old
## 16620            15 years old
## 16621            17 years old
## 16622            16 years old
## 16623            15 years old
## 16624            16 years old
## 16625            15 years old
## 16626            17 years old
## 16627            16 years old
## 16628   18 years old or older
## 16629            14 years old
## 16630            14 years old
## 16631            14 years old
## 16632            15 years old
## 16633            15 years old
## 16634            15 years old
## 16635            16 years old
## 16636            15 years old
## 16637            15 years old
## 16638            15 years old
## 16639            15 years old
## 16640            16 years old
## 16641            16 years old
## 16642            16 years old
## 16643            15 years old
## 16644            16 years old
## 16645            15 years old
## 16646            16 years old
## 16647            16 years old
## 16648            15 years old
## 16649            15 years old
## 16650            15 years old
## 16651            16 years old
## 16652            15 years old
## 16653            15 years old
## 16654            15 years old
## 16655            16 years old
## 16656            16 years old
## 16657            15 years old
## 16658            16 years old
## 16659            15 years old
## 16660            16 years old
## 16661   18 years old or older
## 16662            16 years old
## 16663            14 years old
## 16664            16 years old
## 16665            17 years old
## 16666            14 years old
## 16667            14 years old
## 16668            17 years old
## 16669            16 years old
## 16670            17 years old
## 16671            16 years old
## 16672            16 years old
## 16673            17 years old
## 16674            17 years old
## 16675            14 years old
## 16676            15 years old
## 16677            14 years old
## 16678            17 years old
## 16679            17 years old
## 16680            15 years old
## 16681            16 years old
## 16682            16 years old
## 16683            15 years old
## 16684            16 years old
## 16685            15 years old
## 16686            15 years old
## 16687            14 years old
## 16688            15 years old
## 16689            15 years old
## 16690            15 years old
## 16691            15 years old
## 16692            15 years old
## 16693            15 years old
## 16694            15 years old
## 16695            15 years old
## 16696            15 years old
## 16697            16 years old
## 16698            15 years old
## 16699            16 years old
## 16700            15 years old
## 16701            16 years old
## 16702            14 years old
## 16703            14 years old
## 16704            14 years old
## 16705            15 years old
## 16706            17 years old
## 16707            15 years old
## 16708                    <NA>
## 16709            15 years old
## 16710            15 years old
## 16711            15 years old
## 16712            15 years old
## 16713            17 years old
## 16714            14 years old
## 16715            14 years old
## 16716            17 years old
## 16717            16 years old
## 16718            16 years old
## 16719            14 years old
## 16720            14 years old
## 16721            15 years old
## 16722            16 years old
## 16723            16 years old
## 16724            15 years old
## 16725            16 years old
## 16726            16 years old
## 16727            15 years old
## 16728            17 years old
## 16729            17 years old
## 16730            15 years old
## 16731            15 years old
## 16732            15 years old
## 16733   18 years old or older
## 16734            16 years old
## 16735            16 years old
## 16736   18 years old or older
## 16737            17 years old
## 16738            17 years old
## 16739   18 years old or older
## 16740            16 years old
## 16741            16 years old
## 16742            14 years old
## 16743            15 years old
## 16744            14 years old
## 16745            14 years old
## 16746            14 years old
## 16747            15 years old
## 16748            14 years old
## 16749            17 years old
## 16750            14 years old
## 16751            16 years old
## 16752            14 years old
## 16753            15 years old
## 16754            14 years old
## 16755            14 years old
## 16756            16 years old
## 16757            15 years old
## 16758            14 years old
## 16759            15 years old
## 16760            14 years old
## 16761            14 years old
## 16762            14 years old
## 16763            16 years old
## 16764            16 years old
## 16765            16 years old
## 16766            16 years old
## 16767            16 years old
## 16768   18 years old or older
## 16769   18 years old or older
## 16770   18 years old or older
## 16771            17 years old
## 16772            17 years old
## 16773            17 years old
## 16774            16 years old
## 16775   18 years old or older
## 16776   18 years old or older
## 16777            17 years old
## 16778   18 years old or older
## 16779   18 years old or older
## 16780   18 years old or older
## 16781            17 years old
## 16782   18 years old or older
## 16783   18 years old or older
## 16784   18 years old or older
## 16785            16 years old
## 16786            16 years old
## 16787            16 years old
## 16788            16 years old
## 16789            16 years old
## 16790            15 years old
## 16791            16 years old
## 16792            16 years old
## 16793            15 years old
## 16794            16 years old
## 16795            16 years old
## 16796            15 years old
## 16797            15 years old
## 16798            16 years old
## 16799            15 years old
## 16800            15 years old
## 16801            15 years old
## 16802            14 years old
## 16803            16 years old
## 16804            14 years old
## 16805            15 years old
## 16806            14 years old
## 16807            16 years old
## 16808            14 years old
## 16809            14 years old
## 16810            14 years old
## 16811            15 years old
## 16812            15 years old
## 16813            15 years old
## 16814            15 years old
## 16815            15 years old
## 16816            15 years old
## 16817            14 years old
## 16818            14 years old
## 16819            15 years old
## 16820            15 years old
## 16821            16 years old
## 16822            16 years old
## 16823            16 years old
## 16824            17 years old
## 16825            17 years old
## 16826            17 years old
## 16827   18 years old or older
## 16828   18 years old or older
## 16829   18 years old or older
## 16830   18 years old or older
## 16831   18 years old or older
## 16832            17 years old
## 16833   18 years old or older
## 16834   18 years old or older
## 16835   18 years old or older
## 16836   18 years old or older
## 16837   18 years old or older
## 16838            16 years old
## 16839            16 years old
## 16840            16 years old
## 16841            16 years old
## 16842            17 years old
## 16843            17 years old
## 16844            17 years old
## 16845            17 years old
## 16846            17 years old
## 16847            17 years old
## 16848            17 years old
## 16849            17 years old
## 16850            16 years old
## 16851            16 years old
## 16852            16 years old
## 16853            16 years old
## 16854            16 years old
## 16855            17 years old
## 16856            17 years old
## 16857            17 years old
## 16858            17 years old
## 16859            17 years old
## 16860            17 years old
## 16861            17 years old
## 16862            16 years old
## 16863            16 years old
## 16864            16 years old
## 16865            16 years old
## 16866            16 years old
## 16867            16 years old
## 16868            16 years old
## 16869            16 years old
## 16870            17 years old
## 16871            17 years old
## 16872            17 years old
## 16873            17 years old
## 16874            16 years old
## 16875            16 years old
## 16876            16 years old
## 16877            16 years old
## 16878            16 years old
## 16879            17 years old
## 16880            17 years old
## 16881            17 years old
## 16882            17 years old
## 16883            17 years old
## 16884            17 years old
## 16885            17 years old
## 16886            17 years old
## 16887            17 years old
## 16888   18 years old or older
## 16889   18 years old or older
## 16890   18 years old or older
## 16891   18 years old or older
## 16892   18 years old or older
## 16893   18 years old or older
## 16894            15 years old
## 16895            15 years old
## 16896            15 years old
## 16897            15 years old
## 16898            16 years old
## 16899            16 years old
## 16900            16 years old
## 16901            16 years old
## 16902            16 years old
## 16903            17 years old
## 16904            14 years old
## 16905            14 years old
## 16906            15 years old
## 16907            15 years old
## 16908            15 years old
## 16909            15 years old
## 16910            15 years old
## 16911            16 years old
## 16912            16 years old
## 16913            16 years old
## 16914            16 years old
## 16915            16 years old
## 16916            17 years old
## 16917            17 years old
## 16918            17 years old
## 16919   18 years old or older
## 16920 12 years old or younger
## 16921            15 years old
## 16922            15 years old
## 16923            15 years old
## 16924            15 years old
## 16925            15 years old
## 16926            16 years old
## 16927            16 years old
## 16928            16 years old
## 16929            15 years old
## 16930            15 years old
## 16931            15 years old
## 16932            15 years old
## 16933            15 years old
## 16934            15 years old
## 16935            15 years old
## 16936            15 years old
## 16937            15 years old
## 16938            15 years old
## 16939            16 years old
## 16940            16 years old
## 16941            16 years old
## 16942            16 years old
## 16943            16 years old
## 16944            16 years old
## 16945            16 years old
## 16946            17 years old
## 16947            17 years old
## 16948            17 years old
## 16949            17 years old
## 16950            17 years old
## 16951            17 years old
## 16952            14 years old
## 16953            14 years old
## 16954            14 years old
## 16955            15 years old
## 16956            15 years old
## 16957            15 years old
## 16958            15 years old
## 16959            15 years old
## 16960            15 years old
## 16961            14 years old
## 16962            15 years old
## 16963            16 years old
## 16964            16 years old
## 16965            16 years old
## 16966            16 years old
## 16967            17 years old
## 16968            15 years old
## 16969            15 years old
## 16970            15 years old
## 16971            15 years old
## 16972            15 years old
## 16973            15 years old
## 16974            16 years old
## 16975            16 years old
## 16976            16 years old
## 16977            16 years old
## 16978            16 years old
## 16979            16 years old
## 16980            16 years old
## 16981            16 years old
## 16982            14 years old
## 16983            15 years old
## 16984            15 years old
## 16985            15 years old
## 16986            16 years old
## 16987            16 years old
## 16988            16 years old
## 16989            16 years old
## 16990            17 years old
## 16991            17 years old
## 16992            17 years old
## 16993            17 years old
## 16994            17 years old
## 16995            17 years old
## 16996            17 years old
## 16997            14 years old
## 16998            14 years old
## 16999            14 years old
## 17000            14 years old
## 17001            14 years old
## 17002            14 years old
## 17003            15 years old
## 17004            15 years old
## 17005            15 years old
## 17006            15 years old
## 17007            15 years old
## 17008            15 years old
## 17009            15 years old
## 17010            15 years old
## 17011            15 years old
## 17012            15 years old
## 17013            15 years old
## 17014            15 years old
## 17015            14 years old
## 17016            14 years old
## 17017            14 years old
## 17018            14 years old
## 17019            14 years old
## 17020            14 years old
## 17021            14 years old
## 17022            15 years old
## 17023            15 years old
## 17024            15 years old
## 17025            15 years old
## 17026            15 years old
## 17027            16 years old
## 17028            16 years old
## 17029            17 years old
## 17030            17 years old
## 17031            17 years old
## 17032   18 years old or older
## 17033   18 years old or older
## 17034   18 years old or older
## 17035   18 years old or older
## 17036   18 years old or older
## 17037   18 years old or older
## 17038   18 years old or older
## 17039            14 years old
## 17040            14 years old
## 17041            14 years old
## 17042            14 years old
## 17043            15 years old
## 17044            15 years old
## 17045            15 years old
## 17046            15 years old
## 17047            15 years old
## 17048            15 years old
## 17049            15 years old
## 17050            15 years old
## 17051            15 years old
## 17052            17 years old
## 17053            17 years old
## 17054            17 years old
## 17055            17 years old
## 17056            17 years old
## 17057            17 years old
## 17058   18 years old or older
## 17059   18 years old or older
## 17060   18 years old or older
## 17061   18 years old or older
## 17062   18 years old or older
## 17063   18 years old or older
## 17064   18 years old or older
## 17065   18 years old or older
## 17066   18 years old or older
## 17067   18 years old or older
## 17068            16 years old
## 17069            16 years old
## 17070            17 years old
## 17071            17 years old
## 17072            17 years old
## 17073            17 years old
## 17074            17 years old
## 17075            16 years old
## 17076            16 years old
## 17077            17 years old
## 17078            17 years old
## 17079            17 years old
## 17080            17 years old
## 17081            17 years old
## 17082            17 years old
## 17083   18 years old or older
## 17084   18 years old or older
## 17085   18 years old or older
## 17086   18 years old or older
## 17087   18 years old or older
## 17088   18 years old or older
## 17089            15 years old
## 17090            15 years old
## 17091            15 years old
## 17092            15 years old
## 17093            15 years old
## 17094            16 years old
## 17095            16 years old
## 17096            16 years old
## 17097            16 years old
## 17098            16 years old
## 17099            16 years old
## 17100            16 years old
## 17101            16 years old
## 17102            16 years old
## 17103            15 years old
## 17104            15 years old
## 17105            15 years old
## 17106            15 years old
## 17107            16 years old
## 17108            16 years old
## 17109            16 years old
## 17110            16 years old
## 17111            16 years old
## 17112            17 years old
## 17113            17 years old
## 17114            17 years old
## 17115            15 years old
## 17116            16 years old
## 17117            16 years old
## 17118            16 years old
## 17119            16 years old
## 17120            16 years old
## 17121            17 years old
## 17122            17 years old
## 17123            17 years old
## 17124            17 years old
## 17125            17 years old
## 17126            15 years old
## 17127            15 years old
## 17128            15 years old
## 17129            16 years old
## 17130            16 years old
## 17131            16 years old
## 17132            16 years old
## 17133            16 years old
## 17134            16 years old
## 17135            15 years old
## 17136            15 years old
## 17137            15 years old
## 17138            15 years old
## 17139            15 years old
## 17140            15 years old
## 17141            16 years old
## 17142            16 years old
## 17143            14 years old
## 17144            14 years old
## 17145            14 years old
## 17146            14 years old
## 17147            14 years old
## 17148            14 years old
## 17149            15 years old
## 17150            15 years old
## 17151            15 years old
## 17152            15 years old
## 17153            15 years old
## 17154            15 years old
## 17155            15 years old
## 17156            15 years old
## 17157            14 years old
## 17158            14 years old
## 17159            14 years old
## 17160            14 years old
## 17161            14 years old
## 17162            15 years old
## 17163            15 years old
## 17164            15 years old
## 17165            15 years old
## 17166            15 years old
## 17167            15 years old
## 17168            15 years old
## 17169            17 years old
## 17170            17 years old
## 17171            17 years old
## 17172   18 years old or older
## 17173   18 years old or older
## 17174   18 years old or older
## 17175   18 years old or older
## 17176   18 years old or older
## 17177   18 years old or older
## 17178   18 years old or older
## 17179   18 years old or older
## 17180   18 years old or older
## 17181                    <NA>
## 17182            14 years old
## 17183            14 years old
## 17184            14 years old
## 17185            14 years old
## 17186            14 years old
## 17187            14 years old
## 17188            14 years old
## 17189            14 years old
## 17190            14 years old
## 17191            15 years old
## 17192            15 years old
## 17193            15 years old
## 17194            15 years old
## 17195            15 years old
## 17196            15 years old
## 17197            15 years old
## 17198            15 years old
## 17199            15 years old
## 17200            15 years old
## 17201            16 years old
## 17202            16 years old
## 17203            16 years old
## 17204            16 years old
## 17205            16 years old
## 17206            16 years old
## 17207            16 years old
## 17208            16 years old
## 17209            16 years old
## 17210            15 years old
## 17211            16 years old
## 17212            16 years old
## 17213            16 years old
## 17214            17 years old
## 17215   18 years old or older
## 17216 12 years old or younger
## 17217   18 years old or older
## 17218   18 years old or older
## 17219            17 years old
## 17220   18 years old or older
## 17221            17 years old
## 17222   18 years old or older
## 17223            17 years old
## 17224   18 years old or older
## 17225            17 years old
## 17226   18 years old or older
## 17227   18 years old or older
## 17228            17 years old
## 17229   18 years old or older
## 17230   18 years old or older
## 17231            17 years old
## 17232   18 years old or older
## 17233   18 years old or older
## 17234            17 years old
## 17235   18 years old or older
## 17236            16 years old
## 17237            16 years old
## 17238            17 years old
## 17239            16 years old
## 17240            17 years old
## 17241            17 years old
## 17242            17 years old
## 17243            16 years old
## 17244            16 years old
## 17245            16 years old
## 17246            16 years old
## 17247            16 years old
## 17248            17 years old
## 17249            17 years old
## 17250            16 years old
## 17251            17 years old
## 17252            16 years old
## 17253            17 years old
## 17254            17 years old
## 17255            17 years old
## 17256            17 years old
## 17257            16 years old
## 17258            16 years old
## 17259            16 years old
## 17260            17 years old
## 17261            16 years old
## 17262            16 years old
## 17263            17 years old
## 17264            16 years old
## 17265            16 years old
## 17266            17 years old
## 17267            16 years old
## 17268            16 years old
## 17269            16 years old
## 17270            17 years old
## 17271            16 years old
## 17272            17 years old
## 17273            16 years old
## 17274            16 years old
## 17275            17 years old
## 17276            16 years old
## 17277            16 years old
## 17278            16 years old
## 17279            16 years old
## 17280            16 years old
## 17281            17 years old
## 17282            16 years old
## 17283            17 years old
## 17284            17 years old
## 17285            16 years old
## 17286            17 years old
## 17287            17 years old
## 17288            17 years old
## 17289            16 years old
## 17290            15 years old
## 17291            16 years old
## 17292            16 years old
## 17293            15 years old
## 17294            16 years old
## 17295            15 years old
## 17296            16 years old
## 17297            16 years old
## 17298            15 years old
## 17299            17 years old
## 17300            16 years old
## 17301            16 years old
## 17302            16 years old
## 17303            16 years old
## 17304            15 years old
## 17305            16 years old
## 17306            16 years old
## 17307            15 years old
## 17308            14 years old
## 17309            15 years old
## 17310            14 years old
## 17311            14 years old
## 17312            15 years old
## 17313            15 years old
## 17314            14 years old
## 17315            15 years old
## 17316            14 years old
## 17317            14 years old
## 17318            15 years old
## 17319            15 years old
## 17320            14 years old
## 17321            14 years old
## 17322            15 years old
## 17323            15 years old
## 17324            15 years old
## 17325            15 years old
## 17326            15 years old
## 17327            15 years old
## 17328            15 years old
## 17329   18 years old or older
## 17330   18 years old or older
## 17331            17 years old
## 17332   18 years old or older
## 17333   18 years old or older
## 17334   18 years old or older
## 17335   18 years old or older
## 17336            17 years old
## 17337            17 years old
## 17338   18 years old or older
## 17339   18 years old or older
## 17340   18 years old or older
## 17341            16 years old
## 17342            16 years old
## 17343            16 years old
## 17344            16 years old
## 17345            17 years old
## 17346            17 years old
## 17347            17 years old
## 17348            16 years old
## 17349            16 years old
## 17350            16 years old
## 17351            15 years old
## 17352            16 years old
## 17353            16 years old
## 17354            16 years old
## 17355            16 years old
## 17356            16 years old
## 17357            15 years old
## 17358            15 years old
## 17359            16 years old
## 17360            16 years old
## 17361            15 years old
## 17362            16 years old
## 17363            16 years old
## 17364            16 years old
## 17365            15 years old
## 17366            15 years old
## 17367            16 years old
## 17368            15 years old
## 17369            14 years old
## 17370            14 years old
## 17371            15 years old
## 17372            14 years old
## 17373            15 years old
## 17374            14 years old
## 17375            15 years old
## 17376            14 years old
## 17377            15 years old
## 17378            15 years old
## 17379            14 years old
## 17380            15 years old
## 17381            17 years old
## 17382            17 years old
## 17383            17 years old
## 17384            17 years old
## 17385            16 years old
## 17386            16 years old
## 17387            15 years old
## 17388            16 years old
## 17389            16 years old
## 17390            15 years old
## 17391            15 years old
## 17392            16 years old
## 17393            16 years old
## 17394            16 years old
## 17395            17 years old
## 17396            16 years old
## 17397            15 years old
## 17398            16 years old
## 17399            16 years old
## 17400            16 years old
## 17401            16 years old
## 17402            17 years old
## 17403            16 years old
## 17404            16 years old
## 17405            16 years old
## 17406            16 years old
## 17407            16 years old
## 17408            15 years old
## 17409            16 years old
## 17410            16 years old
## 17411            16 years old
## 17412            16 years old
## 17413            17 years old
## 17414            17 years old
## 17415            17 years old
## 17416            17 years old
## 17417            17 years old
## 17418            17 years old
## 17419            17 years old
## 17420            17 years old
## 17421            17 years old
## 17422            17 years old
## 17423            16 years old
## 17424            16 years old
## 17425            14 years old
## 17426            16 years old
## 17427            15 years old
## 17428            16 years old
## 17429            15 years old
## 17430            15 years old
## 17431            16 years old
## 17432            15 years old
## 17433            15 years old
## 17434            14 years old
## 17435            16 years old
## 17436            16 years old
## 17437            16 years old
## 17438            16 years old
## 17439   18 years old or older
## 17440   18 years old or older
## 17441            16 years old
## 17442   18 years old or older
## 17443            17 years old
## 17444   18 years old or older
## 17445            17 years old
## 17446            17 years old
## 17447            17 years old
## 17448            17 years old
## 17449            17 years old
## 17450            16 years old
## 17451            16 years old
## 17452            16 years old
## 17453            17 years old
## 17454            17 years old
## 17455            16 years old
## 17456            17 years old
## 17457            17 years old
## 17458            17 years old
## 17459   18 years old or older
## 17460            16 years old
## 17461            17 years old
## 17462            17 years old
## 17463            17 years old
## 17464            17 years old
## 17465            17 years old
## 17466            17 years old
## 17467            16 years old
## 17468            16 years old
## 17469            16 years old
## 17470            17 years old
## 17471            17 years old
## 17472            17 years old
## 17473   18 years old or older
## 17474            17 years old
## 17475            17 years old
## 17476            17 years old
## 17477            16 years old
## 17478            16 years old
## 17479            17 years old
## 17480            16 years old
## 17481            17 years old
## 17482            17 years old
## 17483            16 years old
## 17484            14 years old
## 17485            17 years old
## 17486            16 years old
## 17487            17 years old
## 17488   18 years old or older
## 17489            17 years old
## 17490            15 years old
## 17491            16 years old
## 17492            17 years old
## 17493            17 years old
## 17494            15 years old
## 17495            16 years old
## 17496            17 years old
## 17497   18 years old or older
## 17498   18 years old or older
## 17499            17 years old
## 17500   18 years old or older
## 17501            17 years old
## 17502            17 years old
## 17503   18 years old or older
## 17504            17 years old
## 17505            17 years old
## 17506            16 years old
## 17507            16 years old
## 17508   18 years old or older
## 17509            17 years old
## 17510            17 years old
## 17511   18 years old or older
## 17512            17 years old
## 17513            17 years old
## 17514            17 years old
## 17515            15 years old
## 17516            17 years old
## 17517            16 years old
## 17518            14 years old
## 17519            15 years old
## 17520            14 years old
## 17521            15 years old
## 17522            14 years old
## 17523            14 years old
## 17524            14 years old
## 17525            14 years old
## 17526            15 years old
## 17527            15 years old
## 17528            15 years old
## 17529            15 years old
## 17530            15 years old
## 17531            15 years old
## 17532            14 years old
## 17533            14 years old
## 17534            15 years old
## 17535            16 years old
## 17536            15 years old
## 17537            15 years old
## 17538            14 years old
## 17539            15 years old
## 17540            15 years old
## 17541            16 years old
## 17542            15 years old
## 17543            15 years old
## 17544            15 years old
## 17545            17 years old
## 17546            15 years old
## 17547            14 years old
## 17548            15 years old
## 17549            16 years old
## 17550            15 years old
## 17551            15 years old
## 17552            16 years old
## 17553            14 years old
## 17554            14 years old
## 17555            16 years old
## 17556            15 years old
## 17557            14 years old
## 17558            15 years old
## 17559            16 years old
## 17560            15 years old
## 17561            15 years old
## 17562            15 years old
## 17563            16 years old
## 17564            14 years old
## 17565            14 years old
## 17566            14 years old
## 17567            14 years old
## 17568            15 years old
## 17569            15 years old
## 17570            16 years old
## 17571            16 years old
## 17572            15 years old
## 17573            15 years old
## 17574            15 years old
## 17575            16 years old
## 17576            16 years old
## 17577            16 years old
## 17578            15 years old
## 17579            15 years old
## 17580            15 years old
## 17581            16 years old
## 17582            15 years old
## 17583            17 years old
## 17584            15 years old
## 17585            15 years old
## 17586            15 years old
## 17587   18 years old or older
## 17588   18 years old or older
## 17589            17 years old
## 17590            17 years old
## 17591            16 years old
## 17592            16 years old
## 17593            16 years old
## 17594            17 years old
## 17595            17 years old
## 17596            16 years old
## 17597            16 years old
## 17598            16 years old
## 17599            17 years old
## 17600            15 years old
## 17601            17 years old
## 17602            15 years old
## 17603   18 years old or older
## 17604            16 years old
## 17605   18 years old or older
## 17606            14 years old
## 17607            16 years old
## 17608            17 years old
## 17609   18 years old or older
## 17610            17 years old
## 17611   18 years old or older
## 17612            17 years old
## 17613   18 years old or older
## 17614   18 years old or older
## 17615            17 years old
## 17616            16 years old
## 17617            15 years old
## 17618            15 years old
## 17619            15 years old
## 17620            15 years old
## 17621            15 years old
## 17622            15 years old
## 17623            16 years old
## 17624            16 years old
## 17625            16 years old
## 17626            16 years old
## 17627            17 years old
## 17628            16 years old
## 17629            15 years old
## 17630            16 years old
## 17631            17 years old
## 17632            17 years old
## 17633            17 years old
## 17634            17 years old
## 17635            17 years old
## 17636            16 years old
## 17637            16 years old
## 17638            17 years old
## 17639            16 years old
## 17640            17 years old
## 17641            17 years old
## 17642            17 years old
## 17643            17 years old
## 17644            17 years old
## 17645            17 years old
## 17646            17 years old
## 17647            17 years old
## 17648            16 years old
## 17649            16 years old
## 17650            15 years old
## 17651            15 years old
## 17652            16 years old
## 17653            16 years old
## 17654            15 years old
## 17655            16 years old
## 17656            16 years old
## 17657            16 years old
## 17658            15 years old
## 17659            15 years old
## 17660            15 years old
## 17661            15 years old
## 17662            16 years old
## 17663            17 years old
## 17664            16 years old
## 17665            17 years old
## 17666            17 years old
## 17667            16 years old
## 17668            17 years old
## 17669            16 years old
## 17670            17 years old
## 17671            17 years old
## 17672            17 years old
## 17673            16 years old
## 17674            17 years old
## 17675            16 years old
## 17676            17 years old
## 17677            17 years old
## 17678            16 years old
## 17679            17 years old
## 17680            17 years old
## 17681            16 years old
## 17682            15 years old
## 17683            16 years old
## 17684            16 years old
## 17685            17 years old
## 17686            17 years old
## 17687            16 years old
## 17688            17 years old
## 17689            17 years old
## 17690   18 years old or older
## 17691            16 years old
## 17692            17 years old
## 17693            17 years old
## 17694            15 years old
## 17695            17 years old
## 17696            15 years old
## 17697            17 years old
## 17698            17 years old
## 17699            17 years old
## 17700   18 years old or older
## 17701            16 years old
## 17702            17 years old
## 17703   18 years old or older
## 17704   18 years old or older
## 17705   18 years old or older
## 17706            16 years old
## 17707            17 years old
## 17708            14 years old
## 17709            15 years old
## 17710            17 years old
## 17711            17 years old
## 17712            17 years old
## 17713            17 years old
## 17714            15 years old
## 17715            15 years old
## 17716            17 years old
## 17717            17 years old
## 17718   18 years old or older
## 17719            16 years old
## 17720            17 years old
## 17721   18 years old or older
## 17722   18 years old or older
## 17723            16 years old
## 17724            15 years old
## 17725            16 years old
## 17726            17 years old
## 17727            17 years old
## 17728            17 years old
## 17729            15 years old
## 17730   18 years old or older
## 17731            17 years old
## 17732            17 years old
## 17733            16 years old
## 17734            17 years old
## 17735            15 years old
## 17736            17 years old
## 17737   18 years old or older
## 17738            15 years old
## 17739   18 years old or older
## 17740            17 years old
## 17741            15 years old
## 17742   18 years old or older
## 17743            17 years old
## 17744            15 years old
## 17745            15 years old
## 17746            17 years old
## 17747            16 years old
## 17748            15 years old
## 17749            16 years old
## 17750            17 years old
## 17751            16 years old
## 17752            16 years old
## 17753            15 years old
## 17754            16 years old
## 17755   18 years old or older
## 17756            15 years old
## 17757            17 years old
## 17758            16 years old
## 17759            14 years old
## 17760            17 years old
## 17761   18 years old or older
## 17762            15 years old
## 17763   18 years old or older
## 17764            16 years old
## 17765            17 years old
## 17766   18 years old or older
## 17767            16 years old
## 17768            15 years old
## 17769            17 years old
## 17770            17 years old
## 17771            17 years old
## 17772            17 years old
## 17773            17 years old
## 17774   18 years old or older
## 17775            17 years old
## 17776            16 years old
## 17777            17 years old
## 17778            15 years old
## 17779            16 years old
## 17780            16 years old
## 17781            16 years old
## 17782   18 years old or older
## 17783            17 years old
## 17784            16 years old
## 17785            17 years old
## 17786            17 years old
## 17787   18 years old or older
## 17788            15 years old
## 17789            15 years old
## 17790            15 years old
## 17791            16 years old
## 17792   18 years old or older
## 17793            14 years old
## 17794   18 years old or older
## 17795            16 years old
## 17796            15 years old
## 17797            17 years old
## 17798            16 years old
## 17799            16 years old
## 17800            15 years old
## 17801            15 years old
## 17802            16 years old
## 17803            17 years old
## 17804            17 years old
## 17805            16 years old
## 17806   18 years old or older
## 17807            17 years old
## 17808            15 years old
## 17809            16 years old
## 17810            16 years old
## 17811            14 years old
## 17812   18 years old or older
## 17813            17 years old
## 17814   18 years old or older
## 17815            14 years old
## 17816            17 years old
## 17817            16 years old
## 17818            14 years old
## 17819            17 years old
## 17820            17 years old
## 17821            16 years old
## 17822            16 years old
## 17823            15 years old
## 17824   18 years old or older
## 17825   18 years old or older
## 17826            15 years old
## 17827   18 years old or older
## 17828            16 years old
## 17829            16 years old
## 17830            15 years old
## 17831   18 years old or older
## 17832            16 years old
## 17833            16 years old
## 17834   18 years old or older
## 17835            17 years old
## 17836            15 years old
## 17837   18 years old or older
## 17838   18 years old or older
## 17839            15 years old
## 17840            17 years old
## 17841            15 years old
## 17842   18 years old or older
## 17843            16 years old
## 17844            15 years old
## 17845            17 years old
## 17846            16 years old
## 17847            17 years old
## 17848            17 years old
## 17849            15 years old
## 17850            15 years old
## 17851            17 years old
## 17852            17 years old
## 17853 12 years old or younger
## 17854            15 years old
## 17855            16 years old
## 17856            15 years old
## 17857            15 years old
## 17858            16 years old
## 17859            16 years old
## 17860            15 years old
## 17861   18 years old or older
## 17862            16 years old
## 17863            15 years old
## 17864            16 years old
## 17865            17 years old
## 17866            16 years old
## 17867            15 years old
## 17868            17 years old
## 17869            17 years old
## 17870            16 years old
## 17871            17 years old
## 17872            17 years old
## 17873            16 years old
## 17874            17 years old
## 17875            17 years old
## 17876            17 years old
## 17877            17 years old
## 17878            16 years old
## 17879            17 years old
## 17880            15 years old
## 17881            17 years old
## 17882            14 years old
## 17883            16 years old
## 17884            14 years old
## 17885            17 years old
## 17886            17 years old
## 17887            17 years old
## 17888            14 years old
## 17889            17 years old
## 17890            17 years old
## 17891            17 years old
## 17892            17 years old
## 17893            15 years old
## 17894            16 years old
## 17895            17 years old
## 17896            15 years old
## 17897            16 years old
## 17898            16 years old
## 17899            17 years old
## 17900            16 years old
## 17901            14 years old
## 17902   18 years old or older
## 17903            16 years old
## 17904            17 years old
## 17905            16 years old
## 17906            14 years old
## 17907            16 years old
## 17908            16 years old
## 17909   18 years old or older
## 17910   18 years old or older
## 17911            16 years old
## 17912            15 years old
## 17913            16 years old
## 17914            17 years old
## 17915            15 years old
## 17916   18 years old or older
## 17917            14 years old
## 17918            16 years old
## 17919   18 years old or older
## 17920            15 years old
## 17921            15 years old
## 17922            17 years old
## 17923            16 years old
## 17924            14 years old
## 17925            15 years old
## 17926   18 years old or older
## 17927   18 years old or older
## 17928            16 years old
## 17929            15 years old
## 17930            16 years old
## 17931            16 years old
## 17932            16 years old
## 17933            17 years old
## 17934            15 years old
## 17935            16 years old
## 17936            16 years old
## 17937            14 years old
## 17938            16 years old
## 17939   18 years old or older
## 17940 12 years old or younger
## 17941            17 years old
## 17942            17 years old
## 17943            14 years old
## 17944            14 years old
## 17945            17 years old
## 17946            15 years old
## 17947            16 years old
## 17948            17 years old
## 17949            14 years old
## 17950            17 years old
## 17951            16 years old
## 17952            17 years old
## 17953            14 years old
## 17954            17 years old
## 17955            15 years old
## 17956            17 years old
## 17957            14 years old
## 17958   18 years old or older
## 17959            16 years old
## 17960            14 years old
## 17961            15 years old
## 17962   18 years old or older
## 17963            15 years old
## 17964            16 years old
## 17965            15 years old
## 17966            14 years old
## 17967            15 years old
## 17968            17 years old
## 17969            15 years old
## 17970            16 years old
## 17971            15 years old
## 17972            17 years old
## 17973            16 years old
## 17974            15 years old
## 17975            16 years old
## 17976            16 years old
## 17977            15 years old
## 17978            17 years old
## 17979            17 years old
## 17980            17 years old
## 17981            15 years old
## 17982            16 years old
## 17983   18 years old or older
## 17984            17 years old
## 17985            17 years old
## 17986            15 years old
## 17987            14 years old
## 17988            16 years old
## 17989            15 years old
## 17990            17 years old
## 17991            17 years old
## 17992            15 years old
## 17993            17 years old
## 17994            14 years old
## 17995            16 years old
## 17996            16 years old
## 17997            15 years old
## 17998            16 years old
## 17999            17 years old
## 18000            15 years old
## 18001            16 years old
## 18002            17 years old
## 18003            15 years old
## 18004   18 years old or older
## 18005            17 years old
## 18006            16 years old
## 18007            17 years old
## 18008            14 years old
## 18009            16 years old
## 18010            16 years old
## 18011   18 years old or older
## 18012            17 years old
## 18013            15 years old
## 18014            17 years old
## 18015            16 years old
## 18016   18 years old or older
## 18017            17 years old
## 18018            16 years old
## 18019            16 years old
## 18020            16 years old
## 18021            15 years old
## 18022            16 years old
## 18023            14 years old
## 18024            17 years old
## 18025            14 years old
## 18026            16 years old
## 18027            17 years old
## 18028            17 years old
## 18029            16 years old
## 18030            17 years old
## 18031   18 years old or older
## 18032            15 years old
## 18033            15 years old
## 18034            14 years old
## 18035            15 years old
## 18036            15 years old
## 18037            16 years old
## 18038            14 years old
## 18039            15 years old
## 18040            15 years old
## 18041            16 years old
## 18042   18 years old or older
## 18043            17 years old
## 18044            16 years old
## 18045            15 years old
## 18046            17 years old
## 18047            15 years old
## 18048            16 years old
## 18049            15 years old
## 18050            17 years old
## 18051            16 years old
## 18052            16 years old
## 18053            16 years old
## 18054            15 years old
## 18055            14 years old
## 18056            17 years old
## 18057            15 years old
## 18058            15 years old
## 18059            15 years old
## 18060            17 years old
## 18061            16 years old
## 18062            16 years old
## 18063            17 years old
## 18064            16 years old
## 18065 12 years old or younger
## 18066            16 years old
## 18067            16 years old
## 18068            16 years old
## 18069            16 years old
## 18070   18 years old or older
## 18071   18 years old or older
## 18072            15 years old
## 18073            17 years old
## 18074            16 years old
## 18075            17 years old
## 18076            16 years old
## 18077            15 years old
## 18078            15 years old
## 18079            14 years old
## 18080            15 years old
## 18081            17 years old
## 18082            15 years old
## 18083            17 years old
## 18084            15 years old
## 18085            16 years old
## 18086            15 years old
## 18087            16 years old
## 18088            15 years old
## 18089   18 years old or older
## 18090            17 years old
## 18091            15 years old
## 18092            14 years old
## 18093            16 years old
## 18094            14 years old
## 18095            15 years old
## 18096            14 years old
## 18097            17 years old
## 18098            15 years old
## 18099            16 years old
## 18100            17 years old
## 18101            14 years old
## 18102            17 years old
## 18103            17 years old
## 18104            15 years old
## 18105            17 years old
## 18106            15 years old
## 18107            16 years old
## 18108            15 years old
## 18109            16 years old
## 18110            16 years old
## 18111            16 years old
## 18112            14 years old
## 18113   18 years old or older
## 18114            15 years old
## 18115            17 years old
## 18116            14 years old
## 18117            16 years old
## 18118            14 years old
## 18119            17 years old
## 18120            16 years old
## 18121            16 years old
## 18122            15 years old
## 18123            14 years old
## 18124            15 years old
## 18125            15 years old
## 18126            15 years old
## 18127            17 years old
## 18128            16 years old
## 18129            16 years old
## 18130            14 years old
## 18131   18 years old or older
## 18132            16 years old
## 18133   18 years old or older
## 18134            14 years old
## 18135   18 years old or older
## 18136            14 years old
## 18137            14 years old
## 18138            15 years old
## 18139            15 years old
## 18140            16 years old
## 18141            16 years old
## 18142            16 years old
## 18143            14 years old
## 18144            15 years old
## 18145            17 years old
## 18146            17 years old
## 18147            16 years old
## 18148            14 years old
## 18149   18 years old or older
## 18150            14 years old
## 18151            16 years old
## 18152            16 years old
## 18153            15 years old
## 18154            16 years old
## 18155            16 years old
## 18156   18 years old or older
## 18157            16 years old
## 18158            17 years old
## 18159            17 years old
## 18160            15 years old
## 18161            16 years old
## 18162            17 years old
## 18163            15 years old
## 18164            16 years old
## 18165            17 years old
## 18166            15 years old
## 18167            17 years old
## 18168            15 years old
## 18169            14 years old
## 18170            15 years old
## 18171            17 years old
## 18172            16 years old
## 18173            15 years old
## 18174            16 years old
## 18175            17 years old
## 18176            15 years old
## 18177            16 years old
## 18178            17 years old
## 18179            17 years old
## 18180            16 years old
## 18181            15 years old
## 18182            16 years old
## 18183            16 years old
## 18184            16 years old
## 18185            16 years old
## 18186            16 years old
## 18187            14 years old
## 18188            15 years old
## 18189            17 years old
## 18190            17 years old
## 18191            14 years old
## 18192            15 years old
## 18193            16 years old
## 18194            16 years old
## 18195            14 years old
## 18196   18 years old or older
## 18197            16 years old
## 18198            16 years old
## 18199            16 years old
## 18200            16 years old
## 18201            14 years old
## 18202            17 years old
## 18203            16 years old
## 18204            17 years old
## 18205 12 years old or younger
## 18206            15 years old
## 18207            17 years old
## 18208            15 years old
## 18209            15 years old
## 18210            15 years old
## 18211            17 years old
## 18212            16 years old
## 18213            17 years old
## 18214   18 years old or older
## 18215            17 years old
## 18216            17 years old
## 18217   18 years old or older
## 18218            15 years old
## 18219            17 years old
## 18220            14 years old
## 18221            17 years old
## 18222            16 years old
## 18223            14 years old
## 18224            14 years old
## 18225            15 years old
## 18226   18 years old or older
## 18227            15 years old
## 18228            16 years old
## 18229            17 years old
## 18230            16 years old
## 18231            16 years old
## 18232            15 years old
## 18233            15 years old
## 18234   18 years old or older
## 18235            15 years old
## 18236            16 years old
## 18237   18 years old or older
## 18238            15 years old
## 18239            15 years old
## 18240            17 years old
## 18241            16 years old
## 18242            15 years old
## 18243            16 years old
## 18244            17 years old
## 18245            15 years old
## 18246            15 years old
## 18247            14 years old
## 18248            15 years old
## 18249            17 years old
## 18250            17 years old
## 18251            15 years old
## 18252            17 years old
## 18253            15 years old
## 18254            16 years old
## 18255            15 years old
## 18256            15 years old
## 18257            14 years old
## 18258            15 years old
## 18259            15 years old
## 18260   18 years old or older
## 18261            15 years old
## 18262            15 years old
## 18263   18 years old or older
## 18264            16 years old
## 18265            15 years old
## 18266            17 years old
## 18267   18 years old or older
## 18268            16 years old
## 18269   18 years old or older
## 18270            16 years old
## 18271   18 years old or older
## 18272            14 years old
## 18273            14 years old
## 18274            15 years old
## 18275            17 years old
## 18276            15 years old
## 18277            17 years old
## 18278            16 years old
## 18279            15 years old
## 18280            15 years old
## 18281            16 years old
## 18282            16 years old
## 18283   18 years old or older
## 18284            15 years old
## 18285            16 years old
## 18286            16 years old
## 18287            16 years old
## 18288            15 years old
## 18289            17 years old
## 18290            17 years old
## 18291            15 years old
## 18292            17 years old
## 18293            15 years old
## 18294            17 years old
## 18295            15 years old
## 18296            15 years old
## 18297            14 years old
## 18298            17 years old
## 18299            16 years old
## 18300            14 years old
## 18301            17 years old
## 18302            16 years old
## 18303            17 years old
## 18304            15 years old
## 18305            14 years old
## 18306   18 years old or older
## 18307            16 years old
## 18308   18 years old or older
## 18309            17 years old
## 18310            16 years old
## 18311   18 years old or older
## 18312            14 years old
## 18313            15 years old
## 18314            16 years old
## 18315            16 years old
## 18316            14 years old
## 18317            17 years old
## 18318            15 years old
## 18319            17 years old
## 18320            17 years old
## 18321            17 years old
## 18322            16 years old
## 18323            15 years old
## 18324            17 years old
## 18325            16 years old
## 18326            16 years old
## 18327            15 years old
## 18328            17 years old
## 18329            15 years old
## 18330            15 years old
## 18331            15 years old
## 18332            14 years old
## 18333            17 years old
## 18334            17 years old
## 18335            15 years old
## 18336            16 years old
## 18337            15 years old
## 18338            15 years old
## 18339            14 years old
## 18340            16 years old
## 18341            15 years old
## 18342            17 years old
## 18343            15 years old
## 18344            16 years old
## 18345            14 years old
## 18346            16 years old
## 18347            15 years old
## 18348            17 years old
## 18349            17 years old
## 18350            15 years old
## 18351            14 years old
## 18352   18 years old or older
## 18353            15 years old
## 18354            14 years old
## 18355            15 years old
## 18356            16 years old
## 18357            15 years old
## 18358            16 years old
## 18359            15 years old
## 18360            15 years old
## 18361            15 years old
## 18362            16 years old
## 18363            15 years old
## 18364            17 years old
## 18365            17 years old
## 18366   18 years old or older
## 18367            17 years old
## 18368            16 years old
## 18369   18 years old or older
## 18370            16 years old
## 18371            15 years old
## 18372            15 years old
## 18373            16 years old
## 18374            15 years old
## 18375            14 years old
## 18376   18 years old or older
## 18377            16 years old
## 18378   18 years old or older
## 18379            15 years old
## 18380            15 years old
## 18381            15 years old
## 18382            14 years old
## 18383            15 years old
## 18384            14 years old
## 18385            15 years old
## 18386            15 years old
## 18387            14 years old
## 18388            17 years old
## 18389            16 years old
## 18390            17 years old
## 18391            15 years old
## 18392            17 years old
## 18393            15 years old
## 18394            16 years old
## 18395            15 years old
## 18396            14 years old
## 18397            14 years old
## 18398            16 years old
## 18399            15 years old
## 18400   18 years old or older
## 18401   18 years old or older
## 18402            16 years old
## 18403            16 years old
## 18404            14 years old
## 18405            14 years old
## 18406            15 years old
## 18407            15 years old
## 18408            14 years old
## 18409            16 years old
## 18410            14 years old
## 18411   18 years old or older
## 18412            16 years old
## 18413            17 years old
## 18414   18 years old or older
## 18415            15 years old
## 18416            16 years old
## 18417            15 years old
## 18418            17 years old
## 18419            16 years old
## 18420            14 years old
## 18421            14 years old
## 18422            16 years old
## 18423            15 years old
## 18424            16 years old
## 18425            17 years old
## 18426            15 years old
## 18427            17 years old
## 18428            15 years old
## 18429            15 years old
## 18430            14 years old
## 18431            15 years old
## 18432            17 years old
## 18433            17 years old
## 18434            15 years old
## 18435            15 years old
## 18436            17 years old
## 18437   18 years old or older
## 18438            16 years old
## 18439            16 years old
## 18440            17 years old
## 18441            17 years old
## 18442            16 years old
## 18443            13 years old
## 18444            17 years old
## 18445            15 years old
## 18446            15 years old
## 18447            17 years old
## 18448            14 years old
## 18449            16 years old
## 18450            17 years old
## 18451            14 years old
## 18452            15 years old
## 18453            16 years old
## 18454            16 years old
## 18455            17 years old
## 18456            15 years old
## 18457            14 years old
## 18458            15 years old
## 18459            16 years old
## 18460            14 years old
## 18461   18 years old or older
## 18462            16 years old
## 18463            16 years old
## 18464            17 years old
## 18465            15 years old
## 18466            17 years old
## 18467            16 years old
## 18468            16 years old
## 18469            14 years old
## 18470            15 years old
## 18471            15 years old
## 18472            15 years old
## 18473            14 years old
## 18474            16 years old
## 18475   18 years old or older
## 18476            15 years old
## 18477            16 years old
## 18478            14 years old
## 18479            17 years old
## 18480            15 years old
## 18481            17 years old
## 18482            16 years old
## 18483            14 years old
## 18484            15 years old
## 18485            16 years old
## 18486   18 years old or older
## 18487            17 years old
## 18488            14 years old
## 18489            15 years old
## 18490            15 years old
## 18491            14 years old
## 18492            15 years old
## 18493            16 years old
## 18494            15 years old
## 18495            16 years old
## 18496            14 years old
## 18497            15 years old
## 18498            17 years old
## 18499            15 years old
## 18500            14 years old
## 18501            17 years old
## 18502            15 years old
## 18503            16 years old
## 18504            14 years old
## 18505            17 years old
## 18506            15 years old
## 18507            15 years old
## 18508   18 years old or older
## 18509            17 years old
## 18510            17 years old
## 18511            17 years old
## 18512            16 years old
## 18513            15 years old
## 18514            16 years old
## 18515            15 years old
## 18516            17 years old
## 18517            14 years old
## 18518            15 years old
## 18519            16 years old
## 18520            15 years old
## 18521   18 years old or older
## 18522            15 years old
## 18523            17 years old
## 18524            16 years old
## 18525            15 years old
## 18526            16 years old
## 18527   18 years old or older
## 18528            15 years old
## 18529            16 years old
## 18530            15 years old
## 18531            14 years old
## 18532            16 years old
## 18533            16 years old
## 18534            16 years old
## 18535            16 years old
## 18536            15 years old
## 18537            15 years old
## 18538            16 years old
## 18539            17 years old
## 18540            17 years old
## 18541            17 years old
## 18542            15 years old
## 18543            15 years old
## 18544            15 years old
## 18545            17 years old
## 18546            16 years old
## 18547            14 years old
## 18548            16 years old
## 18549            15 years old
## 18550            16 years old
## 18551            15 years old
## 18552            15 years old
## 18553            17 years old
## 18554            15 years old
## 18555            15 years old
## 18556            15 years old
## 18557            16 years old
## 18558            14 years old
## 18559            17 years old
## 18560            15 years old
## 18561            15 years old
## 18562            16 years old
## 18563            15 years old
## 18564            15 years old
## 18565            15 years old
## 18566            15 years old
## 18567            14 years old
## 18568            16 years old
## 18569            14 years old
## 18570            17 years old
## 18571            16 years old
## 18572            14 years old
## 18573            15 years old
## 18574            14 years old
## 18575            14 years old
## 18576            17 years old
## 18577            17 years old
## 18578            17 years old
## 18579            16 years old
## 18580            16 years old
## 18581            15 years old
## 18582            17 years old
## 18583            15 years old
## 18584            14 years old
## 18585            17 years old
## 18586            17 years old
## 18587            17 years old
## 18588            17 years old
## 18589            15 years old
## 18590            16 years old
## 18591            16 years old
## 18592            16 years old
## 18593            16 years old
## 18594            14 years old
## 18595            17 years old
## 18596            17 years old
## 18597            17 years old
## 18598            17 years old
## 18599            17 years old
## 18600   18 years old or older
## 18601            16 years old
## 18602            15 years old
## 18603            15 years old
## 18604            14 years old
## 18605            14 years old
## 18606            14 years old
## 18607            15 years old
## 18608            16 years old
## 18609            16 years old
## 18610            16 years old
## 18611            14 years old
## 18612            15 years old
## 18613            17 years old
## 18614            15 years old
## 18615            14 years old
## 18616            17 years old
## 18617            14 years old
## 18618            14 years old
## 18619            16 years old
## 18620            16 years old
## 18621            14 years old
## 18622            16 years old
## 18623            15 years old
## 18624            17 years old
## 18625            15 years old
## 18626            14 years old
## 18627            17 years old
## 18628            15 years old
## 18629            17 years old
## 18630            15 years old
## 18631            14 years old
## 18632   18 years old or older
## 18633            15 years old
## 18634            15 years old
## 18635            15 years old
## 18636            14 years old
## 18637            14 years old
## 18638            14 years old
## 18639            15 years old
## 18640            15 years old
## 18641            17 years old
## 18642            17 years old
## 18643            15 years old
## 18644            16 years old
## 18645   18 years old or older
## 18646   18 years old or older
## 18647   18 years old or older
## 18648            16 years old
## 18649            15 years old
## 18650            15 years old
## 18651            16 years old
## 18652            16 years old
## 18653            15 years old
## 18654            15 years old
## 18655            16 years old
## 18656            16 years old
## 18657            17 years old
## 18658            16 years old
## 18659            14 years old
## 18660            16 years old
## 18661   18 years old or older
## 18662            16 years old
## 18663            15 years old
## 18664            16 years old
## 18665            15 years old
## 18666            17 years old
## 18667            15 years old
## 18668            16 years old
## 18669   18 years old or older
## 18670            14 years old
## 18671            16 years old
## 18672   18 years old or older
## 18673            17 years old
## 18674            15 years old
## 18675            15 years old
## 18676            16 years old
## 18677            16 years old
## 18678            16 years old
## 18679            16 years old
## 18680            15 years old
## 18681            15 years old
## 18682            16 years old
## 18683            15 years old
## 18684            15 years old
## 18685            15 years old
## 18686            17 years old
## 18687   18 years old or older
## 18688            15 years old
## 18689            15 years old
## 18690            15 years old
## 18691            15 years old
## 18692            17 years old
## 18693            14 years old
## 18694            16 years old
## 18695            17 years old
## 18696            14 years old
## 18697            15 years old
## 18698            15 years old
## 18699            15 years old
## 18700            15 years old
## 18701            15 years old
## 18702            16 years old
## 18703            15 years old
## 18704            14 years old
## 18705            16 years old
## 18706            15 years old
## 18707            16 years old
## 18708            17 years old
## 18709            16 years old
## 18710            16 years old
## 18711            15 years old
## 18712            15 years old
## 18713            16 years old
## 18714            16 years old
## 18715            14 years old
## 18716            15 years old
## 18717            16 years old
## 18718            15 years old
## 18719            14 years old
## 18720            17 years old
## 18721            15 years old
## 18722            14 years old
## 18723            16 years old
## 18724            14 years old
## 18725   18 years old or older
## 18726            16 years old
## 18727            16 years old
## 18728            14 years old
## 18729            16 years old
## 18730            14 years old
## 18731            17 years old
## 18732            17 years old
## 18733            17 years old
## 18734            15 years old
## 18735            16 years old
## 18736            16 years old
## 18737            15 years old
## 18738            17 years old
## 18739            15 years old
## 18740            15 years old
## 18741            14 years old
## 18742            14 years old
## 18743            15 years old
## 18744            17 years old
## 18745            15 years old
## 18746            16 years old
## 18747            16 years old
## 18748            17 years old
## 18749            14 years old
## 18750            15 years old
## 18751            15 years old
## 18752            17 years old
## 18753            14 years old
## 18754            16 years old
## 18755            14 years old
## 18756            15 years old
## 18757   18 years old or older
## 18758            14 years old
## 18759   18 years old or older
## 18760            15 years old
## 18761            17 years old
## 18762            15 years old
## 18763            16 years old
## 18764            15 years old
## 18765            15 years old
## 18766            15 years old
## 18767            16 years old
## 18768            15 years old
## 18769            16 years old
## 18770            15 years old
## 18771            16 years old
## 18772            15 years old
## 18773            15 years old
## 18774            16 years old
## 18775   18 years old or older
## 18776            17 years old
## 18777            17 years old
## 18778            16 years old
## 18779            15 years old
## 18780            15 years old
## 18781            15 years old
## 18782   18 years old or older
## 18783            16 years old
## 18784            15 years old
## 18785            15 years old
## 18786   18 years old or older
## 18787            15 years old
## 18788            14 years old
## 18789            17 years old
## 18790            14 years old
## 18791            15 years old
## 18792            16 years old
## 18793            15 years old
## 18794            16 years old
## 18795            14 years old
## 18796            14 years old
## 18797   18 years old or older
## 18798            14 years old
## 18799            15 years old
## 18800            15 years old
## 18801            14 years old
## 18802            17 years old
## 18803            14 years old
## 18804            17 years old
## 18805            16 years old
## 18806            17 years old
## 18807            15 years old
## 18808            17 years old
## 18809            15 years old
## 18810            15 years old
## 18811            17 years old
## 18812   18 years old or older
## 18813   18 years old or older
## 18814            14 years old
## 18815            16 years old
## 18816            15 years old
## 18817            14 years old
## 18818            14 years old
## 18819            17 years old
## 18820            15 years old
## 18821            14 years old
## 18822            14 years old
## 18823            14 years old
## 18824            16 years old
## 18825            16 years old
## 18826            16 years old
## 18827            14 years old
## 18828            16 years old
## 18829            15 years old
## 18830            17 years old
## 18831            15 years old
## 18832            17 years old
## 18833            16 years old
## 18834            14 years old
## 18835            16 years old
## 18836            14 years old
## 18837            14 years old
## 18838   18 years old or older
## 18839            14 years old
## 18840            16 years old
## 18841            17 years old
## 18842            14 years old
## 18843            17 years old
## 18844            17 years old
## 18845            15 years old
## 18846            16 years old
## 18847            14 years old
## 18848            15 years old
## 18849            16 years old
## 18850            15 years old
## 18851            17 years old
## 18852            16 years old
## 18853   18 years old or older
## 18854            17 years old
## 18855            16 years old
## 18856            16 years old
## 18857            17 years old
## 18858            15 years old
## 18859            15 years old
## 18860            14 years old
## 18861            17 years old
## 18862            15 years old
## 18863            15 years old
## 18864            14 years old
## 18865            14 years old
## 18866            14 years old
## 18867            15 years old
## 18868            16 years old
## 18869            17 years old
## 18870            16 years old
## 18871            15 years old
## 18872            15 years old
## 18873            14 years old
## 18874            15 years old
## 18875            17 years old
## 18876            15 years old
## 18877            14 years old
## 18878            14 years old
## 18879   18 years old or older
## 18880            16 years old
## 18881            15 years old
## 18882            16 years old
## 18883            15 years old
## 18884            15 years old
## 18885            13 years old
## 18886            15 years old
## 18887            15 years old
## 18888            15 years old
## 18889            17 years old
## 18890            15 years old
## 18891   18 years old or older
## 18892            14 years old
## 18893            16 years old
## 18894            15 years old
## 18895            15 years old
## 18896            15 years old
## 18897            15 years old
## 18898            15 years old
## 18899   18 years old or older
## 18900            15 years old
## 18901            14 years old
## 18902   18 years old or older
## 18903            14 years old
## 18904            14 years old
## 18905            16 years old
## 18906            16 years old
## 18907            15 years old
## 18908            14 years old
## 18909            15 years old
## 18910            14 years old
## 18911   18 years old or older
## 18912            14 years old
## 18913            16 years old
## 18914            15 years old
## 18915            14 years old
## 18916            16 years old
## 18917            15 years old
## 18918            15 years old
## 18919            15 years old
## 18920            17 years old
## 18921            15 years old
## 18922            17 years old
## 18923            14 years old
## 18924            15 years old
## 18925            16 years old
## 18926   18 years old or older
## 18927            15 years old
## 18928            15 years old
## 18929            14 years old
## 18930            15 years old
## 18931            15 years old
## 18932            17 years old
## 18933            14 years old
## 18934            15 years old
## 18935            15 years old
## 18936            15 years old
## 18937            16 years old
## 18938            14 years old
## 18939            16 years old
## 18940            17 years old
## 18941            15 years old
## 18942            15 years old
## 18943            17 years old
## 18944            15 years old
## 18945            17 years old
## 18946            14 years old
## 18947            15 years old
## 18948            14 years old
## 18949            15 years old
## 18950            14 years old
## 18951            15 years old
## 18952            14 years old
## 18953            15 years old
## 18954            15 years old
## 18955            16 years old
## 18956            14 years old
## 18957            15 years old
## 18958            15 years old
## 18959            15 years old
## 18960            14 years old
## 18961            17 years old
## 18962            15 years old
## 18963            15 years old
## 18964            16 years old
## 18965            14 years old
## 18966   18 years old or older
## 18967            16 years old
## 18968            15 years old
## 18969            15 years old
## 18970            15 years old
## 18971            15 years old
## 18972            17 years old
## 18973            15 years old
## 18974            16 years old
## 18975            14 years old
## 18976            15 years old
## 18977            15 years old
## 18978            14 years old
## 18979            15 years old
## 18980            16 years old
## 18981            15 years old
## 18982            14 years old
## 18983            17 years old
## 18984            15 years old
## 18985            17 years old
## 18986            16 years old
## 18987            15 years old
## 18988            14 years old
## 18989            17 years old
## 18990            16 years old
## 18991            15 years old
## 18992            16 years old
## 18993            15 years old
## 18994            17 years old
## 18995            14 years old
## 18996            13 years old
## 18997            15 years old
## 18998            15 years old
## 18999            17 years old
## 19000            15 years old
## 19001            14 years old
## 19002            15 years old
## 19003            16 years old
## 19004            16 years old
## 19005   18 years old or older
## 19006            17 years old
## 19007            17 years old
## 19008   18 years old or older
## 19009            15 years old
## 19010            14 years old
## 19011            17 years old
## 19012            15 years old
## 19013            15 years old
## 19014            15 years old
## 19015            14 years old
## 19016   18 years old or older
## 19017   18 years old or older
## 19018 12 years old or younger
## 19019            16 years old
## 19020            16 years old
## 19021            15 years old
## 19022            15 years old
## 19023   18 years old or older
## 19024            14 years old
## 19025            14 years old
## 19026            15 years old
## 19027            15 years old
## 19028            15 years old
## 19029            15 years old
## 19030            14 years old
## 19031            15 years old
## 19032            15 years old
## 19033            17 years old
## 19034            16 years old
## 19035            16 years old
## 19036            16 years old
## 19037            17 years old
## 19038            14 years old
## 19039   18 years old or older
## 19040            14 years old
## 19041   18 years old or older
## 19042   18 years old or older
## 19043            17 years old
## 19044            17 years old
## 19045            15 years old
## 19046            15 years old
## 19047            15 years old
## 19048            14 years old
## 19049            17 years old
## 19050            17 years old
## 19051            17 years old
## 19052            14 years old
## 19053            15 years old
## 19054            15 years old
## 19055            15 years old
## 19056            14 years old
## 19057            15 years old
## 19058            14 years old
## 19059   18 years old or older
## 19060            15 years old
## 19061            17 years old
## 19062            17 years old
## 19063            17 years old
## 19064            17 years old
## 19065            15 years old
## 19066            17 years old
## 19067            16 years old
## 19068            17 years old
## 19069            17 years old
## 19070            14 years old
## 19071            17 years old
## 19072            16 years old
## 19073            16 years old
## 19074            17 years old
## 19075            15 years old
## 19076            17 years old
## 19077            15 years old
## 19078            16 years old
## 19079            14 years old
## 19080            17 years old
## 19081            15 years old
## 19082            15 years old
## 19083            16 years old
## 19084            17 years old
## 19085   18 years old or older
## 19086            16 years old
## 19087            15 years old
## 19088   18 years old or older
## 19089            16 years old
## 19090            16 years old
## 19091            16 years old
## 19092            15 years old
## 19093            16 years old
## 19094            17 years old
## 19095            16 years old
## 19096            16 years old
## 19097            13 years old
## 19098            17 years old
## 19099            17 years old
## 19100            15 years old
## 19101            15 years old
## 19102            17 years old
## 19103            14 years old
## 19104            17 years old
## 19105            16 years old
## 19106            15 years old
## 19107   18 years old or older
## 19108            15 years old
## 19109            15 years old
## 19110            14 years old
## 19111            15 years old
## 19112            16 years old
## 19113            16 years old
## 19114            17 years old
## 19115            14 years old
## 19116            17 years old
## 19117            17 years old
## 19118            16 years old
## 19119            16 years old
## 19120            14 years old
## 19121            17 years old
## 19122            17 years old
## 19123            16 years old
## 19124            17 years old
## 19125            17 years old
## 19126            17 years old
## 19127            15 years old
## 19128            15 years old
## 19129            16 years old
## 19130            15 years old
## 19131            14 years old
## 19132            14 years old
## 19133            14 years old
## 19134            16 years old
## 19135            14 years old
## 19136            16 years old
## 19137            17 years old
## 19138            15 years old
## 19139            16 years old
## 19140            14 years old
## 19141            17 years old
## 19142            14 years old
## 19143            14 years old
## 19144            14 years old
## 19145            14 years old
## 19146            16 years old
## 19147            17 years old
## 19148            15 years old
## 19149            14 years old
## 19150            15 years old
## 19151            16 years old
## 19152            14 years old
## 19153            15 years old
## 19154            16 years old
## 19155            15 years old
## 19156            16 years old
## 19157            16 years old
## 19158   18 years old or older
## 19159            16 years old
## 19160            15 years old
## 19161            16 years old
## 19162            15 years old
## 19163            14 years old
## 19164            14 years old
## 19165            15 years old
## 19166            17 years old
## 19167            15 years old
## 19168            15 years old
## 19169            14 years old
## 19170            15 years old
## 19171            15 years old
## 19172            16 years old
## 19173            17 years old
## 19174            15 years old
## 19175            16 years old
## 19176            15 years old
## 19177            15 years old
## 19178            15 years old
## 19179            16 years old
## 19180            14 years old
## 19181            16 years old
## 19182            17 years old
## 19183            15 years old
## 19184            16 years old
## 19185            16 years old
## 19186            14 years old
## 19187            15 years old
## 19188            14 years old
## 19189            14 years old
## 19190   18 years old or older
## 19191            15 years old
## 19192            17 years old
## 19193            17 years old
## 19194            14 years old
## 19195            15 years old
## 19196            16 years old
## 19197            15 years old
## 19198            14 years old
## 19199            17 years old
## 19200            17 years old
## 19201            14 years old
## 19202            14 years old
## 19203            15 years old
## 19204            14 years old
## 19205            15 years old
## 19206            16 years old
## 19207            15 years old
## 19208            16 years old
## 19209            14 years old
## 19210            15 years old
## 19211            15 years old
## 19212            16 years old
## 19213            16 years old
## 19214            16 years old
## 19215            17 years old
## 19216            15 years old
## 19217            15 years old
## 19218            16 years old
## 19219            15 years old
## 19220   18 years old or older
## 19221            14 years old
## 19222            15 years old
## 19223            15 years old
## 19224            17 years old
## 19225   18 years old or older
## 19226            17 years old
## 19227            14 years old
## 19228            14 years old
## 19229            17 years old
## 19230            16 years old
## 19231            15 years old
## 19232            16 years old
## 19233            15 years old
## 19234            16 years old
## 19235   18 years old or older
## 19236   18 years old or older
## 19237            17 years old
## 19238            17 years old
## 19239            17 years old
## 19240   18 years old or older
## 19241            17 years old
## 19242            17 years old
## 19243            14 years old
## 19244            14 years old
## 19245   18 years old or older
## 19246   18 years old or older
## 19247            16 years old
## 19248            16 years old
## 19249            15 years old
## 19250            16 years old
## 19251   18 years old or older
## 19252   18 years old or older
## 19253            13 years old
## 19254            17 years old
## 19255            15 years old
## 19256            14 years old
## 19257            16 years old
## 19258            15 years old
## 19259            17 years old
## 19260   18 years old or older
## 19261            17 years old
## 19262   18 years old or older
## 19263            15 years old
## 19264            14 years old
## 19265   18 years old or older
## 19266            15 years old
## 19267            16 years old
## 19268            17 years old
## 19269   18 years old or older
## 19270            15 years old
## 19271            16 years old
## 19272            16 years old
## 19273            17 years old
## 19274            15 years old
## 19275            16 years old
## 19276            15 years old
## 19277            16 years old
## 19278            15 years old
## 19279            16 years old
## 19280            16 years old
## 19281            16 years old
## 19282            16 years old
## 19283            15 years old
## 19284            15 years old
## 19285            15 years old
## 19286            15 years old
## 19287            15 years old
## 19288            16 years old
## 19289            15 years old
## 19290            14 years old
## 19291            14 years old
## 19292            17 years old
## 19293   18 years old or older
## 19294            17 years old
## 19295   18 years old or older
## 19296            16 years old
## 19297            15 years old
## 19298            15 years old
## 19299   18 years old or older
## 19300            17 years old
## 19301            15 years old
## 19302            17 years old
## 19303            15 years old
## 19304            14 years old
## 19305            14 years old
## 19306            17 years old
## 19307            17 years old
## 19308            16 years old
## 19309            16 years old
## 19310            14 years old
## 19311            17 years old
## 19312   18 years old or older
## 19313            14 years old
## 19314            16 years old
## 19315            17 years old
## 19316            15 years old
## 19317            15 years old
## 19318            16 years old
## 19319            16 years old
## 19320            17 years old
## 19321            16 years old
## 19322            16 years old
## 19323            16 years old
## 19324            16 years old
## 19325            16 years old
## 19326            16 years old
## 19327            16 years old
## 19328            16 years old
## 19329            15 years old
## 19330            15 years old
## 19331            15 years old
## 19332            15 years old
## 19333            16 years old
## 19334            15 years old
## 19335            15 years old
## 19336            16 years old
## 19337            16 years old
## 19338            16 years old
## 19339            15 years old
## 19340            15 years old
## 19341            17 years old
## 19342            15 years old
## 19343   18 years old or older
## 19344            16 years old
## 19345            15 years old
## 19346            15 years old
## 19347            17 years old
## 19348            17 years old
## 19349            15 years old
## 19350            16 years old
## 19351            16 years old
## 19352   18 years old or older
## 19353            14 years old
## 19354            16 years old
## 19355            16 years old
## 19356            17 years old
## 19357            15 years old
## 19358            15 years old
## 19359            16 years old
## 19360            16 years old
## 19361            15 years old
## 19362            17 years old
## 19363            17 years old
## 19364            16 years old
## 19365            15 years old
## 19366            15 years old
## 19367            14 years old
## 19368            15 years old
## 19369            16 years old
## 19370            15 years old
## 19371            15 years old
## 19372            17 years old
## 19373            15 years old
## 19374            15 years old
## 19375            15 years old
## 19376            15 years old
## 19377            17 years old
## 19378            15 years old
## 19379            16 years old
## 19380            15 years old
## 19381            17 years old
## 19382            15 years old
## 19383            14 years old
## 19384   18 years old or older
## 19385            14 years old
## 19386            16 years old
## 19387            17 years old
## 19388            17 years old
## 19389            15 years old
## 19390            17 years old
## 19391            17 years old
## 19392            14 years old
## 19393            14 years old
## 19394            16 years old
## 19395            15 years old
## 19396            15 years old
## 19397            16 years old
## 19398            16 years old
## 19399            15 years old
## 19400            15 years old
## 19401            15 years old
## 19402            17 years old
## 19403            14 years old
## 19404   18 years old or older
## 19405            15 years old
## 19406            16 years old
## 19407            15 years old
## 19408            15 years old
## 19409            15 years old
## 19410            16 years old
## 19411   18 years old or older
## 19412            16 years old
## 19413            17 years old
## 19414            17 years old
## 19415            16 years old
## 19416            15 years old
## 19417            17 years old
## 19418            16 years old
## 19419            14 years old
## 19420            14 years old
## 19421            16 years old
## 19422            17 years old
## 19423            16 years old
## 19424            14 years old
## 19425            16 years old
## 19426            15 years old
## 19427            15 years old
## 19428            16 years old
## 19429            16 years old
## 19430            15 years old
## 19431            15 years old
## 19432            15 years old
## 19433            15 years old
## 19434   18 years old or older
## 19435   18 years old or older
## 19436            16 years old
## 19437            16 years old
## 19438            14 years old
## 19439            15 years old
## 19440            16 years old
## 19441            17 years old
## 19442            15 years old
## 19443            16 years old
## 19444            15 years old
## 19445            15 years old
## 19446            14 years old
## 19447            16 years old
## 19448            14 years old
## 19449            16 years old
## 19450            16 years old
## 19451            17 years old
## 19452            17 years old
## 19453            15 years old
## 19454            16 years old
## 19455            17 years old
## 19456   18 years old or older
## 19457            15 years old
## 19458            16 years old
## 19459            17 years old
## 19460            17 years old
## 19461            15 years old
## 19462            15 years old
## 19463            14 years old
## 19464            17 years old
## 19465            16 years old
## 19466            16 years old
## 19467            17 years old
## 19468   18 years old or older
## 19469            15 years old
## 19470            14 years old
## 19471            16 years old
## 19472            17 years old
## 19473            15 years old
## 19474            15 years old
## 19475            16 years old
## 19476            15 years old
## 19477            16 years old
## 19478   18 years old or older
## 19479   18 years old or older
## 19480            15 years old
## 19481            16 years old
## 19482            14 years old
## 19483            17 years old
## 19484            15 years old
## 19485            17 years old
## 19486            15 years old
## 19487            16 years old
## 19488            16 years old
## 19489            15 years old
## 19490            15 years old
## 19491            17 years old
## 19492            15 years old
## 19493            17 years old
## 19494            15 years old
## 19495            15 years old
## 19496            15 years old
## 19497            17 years old
## 19498            15 years old
## 19499            15 years old
## 19500            15 years old
## 19501            16 years old
## 19502            16 years old
## 19503            15 years old
## 19504            14 years old
## 19505            15 years old
## 19506            17 years old
## 19507            16 years old
## 19508            17 years old
## 19509            15 years old
## 19510            15 years old
## 19511            16 years old
## 19512            16 years old
## 19513            15 years old
## 19514            15 years old
## 19515            15 years old
## 19516            15 years old
## 19517            15 years old
## 19518            16 years old
## 19519            16 years old
## 19520            15 years old
## 19521            14 years old
## 19522            15 years old
## 19523            15 years old
## 19524   18 years old or older
## 19525            15 years old
## 19526            14 years old
## 19527            14 years old
## 19528            15 years old
## 19529   18 years old or older
## 19530            14 years old
## 19531            15 years old
## 19532            17 years old
## 19533            15 years old
## 19534            16 years old
## 19535   18 years old or older
## 19536            14 years old
## 19537            15 years old
## 19538            17 years old
## 19539            16 years old
## 19540            16 years old
## 19541            16 years old
## 19542            15 years old
## 19543            15 years old
## 19544   18 years old or older
## 19545            16 years old
## 19546            16 years old
## 19547            17 years old
## 19548            15 years old
## 19549            16 years old
## 19550            14 years old
## 19551            17 years old
## 19552            14 years old
## 19553            16 years old
## 19554            15 years old
## 19555            15 years old
## 19556            14 years old
## 19557            16 years old
## 19558            16 years old
## 19559   18 years old or older
## 19560   18 years old or older
## 19561            14 years old
## 19562            14 years old
## 19563            14 years old
## 19564            17 years old
## 19565            14 years old
## 19566            15 years old
## 19567            14 years old
## 19568            17 years old
## 19569   18 years old or older
## 19570            15 years old
## 19571            17 years old
## 19572            15 years old
## 19573   18 years old or older
## 19574            15 years old
## 19575            17 years old
## 19576            16 years old
## 19577   18 years old or older
## 19578            16 years old
## 19579            17 years old
## 19580            15 years old
## 19581            15 years old
## 19582            16 years old
## 19583   18 years old or older
## 19584            17 years old
## 19585            16 years old
## 19586            17 years old
## 19587            15 years old
## 19588            14 years old
## 19589            17 years old
## 19590            17 years old
## 19591            15 years old
## 19592            15 years old
## 19593            16 years old
## 19594            15 years old
## 19595            14 years old
## 19596            15 years old
## 19597            15 years old
## 19598            16 years old
## 19599            17 years old
## 19600            16 years old
## 19601            15 years old
## 19602            15 years old
## 19603   18 years old or older
## 19604            14 years old
## 19605            16 years old
## 19606            16 years old
## 19607            16 years old
## 19608            17 years old
## 19609            15 years old
## 19610            14 years old
## 19611            14 years old
## 19612            15 years old
## 19613            15 years old
## 19614            14 years old
## 19615            17 years old
## 19616   18 years old or older
## 19617            16 years old
## 19618            16 years old
## 19619            15 years old
## 19620            17 years old
## 19621            15 years old
## 19622            15 years old
## 19623            16 years old
## 19624            16 years old
## 19625            17 years old
## 19626            15 years old
## 19627            17 years old
## 19628            17 years old
## 19629   18 years old or older
## 19630   18 years old or older
## 19631            17 years old
## 19632            15 years old
## 19633            16 years old
## 19634   18 years old or older
## 19635            16 years old
## 19636            17 years old
## 19637            16 years old
## 19638   18 years old or older
## 19639            16 years old
## 19640            15 years old
## 19641            15 years old
## 19642            14 years old
## 19643            16 years old
## 19644            15 years old
## 19645   18 years old or older
## 19646   18 years old or older
## 19647            15 years old
## 19648            16 years old
## 19649            15 years old
## 19650            16 years old
## 19651            15 years old
## 19652            14 years old
## 19653            16 years old
## 19654            15 years old
## 19655            14 years old
## 19656   18 years old or older
## 19657            16 years old
## 19658            16 years old
## 19659            16 years old
## 19660            14 years old
## 19661            17 years old
## 19662            14 years old
## 19663            16 years old
## 19664            15 years old
## 19665            14 years old
## 19666            15 years old
## 19667            17 years old
## 19668            15 years old
## 19669            15 years old
## 19670            16 years old
## 19671            16 years old
## 19672   18 years old or older
## 19673            15 years old
## 19674            15 years old
## 19675            16 years old
## 19676            14 years old
## 19677            16 years old
## 19678            15 years old
## 19679            16 years old
## 19680            17 years old
## 19681            17 years old
## 19682            16 years old
## 19683            14 years old
## 19684            15 years old
## 19685            14 years old
## 19686            15 years old
## 19687            14 years old
## 19688            15 years old
## 19689            16 years old
## 19690            17 years old
## 19691            15 years old
## 19692            14 years old
## 19693            16 years old
## 19694            15 years old
## 19695            14 years old
## 19696            16 years old
## 19697            15 years old
## 19698            14 years old
## 19699            15 years old
## 19700   18 years old or older
## 19701            14 years old
## 19702            17 years old
## 19703            16 years old
## 19704            17 years old
## 19705            16 years old
## 19706   18 years old or older
## 19707            13 years old
## 19708            15 years old
## 19709   18 years old or older
## 19710            16 years old
## 19711            14 years old
## 19712            16 years old
## 19713            16 years old
## 19714            17 years old
## 19715            17 years old
## 19716   18 years old or older
## 19717   18 years old or older
## 19718   18 years old or older
## 19719   18 years old or older
## 19720            17 years old
## 19721            16 years old
## 19722            16 years old
## 19723            16 years old
## 19724            15 years old
## 19725            15 years old
## 19726            16 years old
## 19727            16 years old
## 19728            16 years old
## 19729            16 years old
## 19730            15 years old
## 19731            15 years old
## 19732            15 years old
## 19733            15 years old
## 19734            14 years old
## 19735            15 years old
## 19736            15 years old
## 19737            15 years old
## 19738            14 years old
## 19739            15 years old
## 19740            15 years old
## 19741            14 years old
## 19742            15 years old
## 19743            15 years old
## 19744            15 years old
## 19745            15 years old
## 19746            14 years old
## 19747            14 years old
## 19748            15 years old
## 19749            16 years old
## 19750            14 years old
## 19751            14 years old
## 19752            14 years old
## 19753            15 years old
## 19754            14 years old
## 19755            14 years old
## 19756            15 years old
## 19757            14 years old
## 19758            15 years old
## 19759            15 years old
## 19760            15 years old
## 19761            14 years old
## 19762            14 years old
## 19763            15 years old
## 19764            14 years old
## 19765            15 years old
## 19766            15 years old
## 19767            15 years old
## 19768            14 years old
## 19769            14 years old
## 19770            14 years old
## 19771            14 years old
## 19772            15 years old
## 19773            15 years old
## 19774            14 years old
## 19775            15 years old
## 19776            15 years old
## 19777            14 years old
## 19778            14 years old
## 19779            14 years old
## 19780            15 years old
## 19781            15 years old
## 19782            15 years old
## 19783            14 years old
## 19784            15 years old
## 19785            15 years old
## 19786            14 years old
## 19787            15 years old
## 19788            14 years old
## 19789            15 years old
## 19790            15 years old
## 19791            15 years old
## 19792            15 years old
## 19793            15 years old
## 19794            15 years old
## 19795            15 years old
## 19796            15 years old
## 19797            15 years old
## 19798            15 years old
## 19799            14 years old
## 19800            15 years old
## 19801            15 years old
## 19802            15 years old
## 19803            15 years old
## 19804            15 years old
## 19805            15 years old
## 19806            15 years old
## 19807            15 years old
## 19808            15 years old
## 19809            15 years old
## 19810            15 years old
## 19811            15 years old
## 19812            15 years old
## 19813            15 years old
## 19814            14 years old
## 19815            15 years old
## 19816            15 years old
## 19817            14 years old
## 19818            14 years old
## 19819            15 years old
## 19820            14 years old
## 19821            15 years old
## 19822            15 years old
## 19823            15 years old
## 19824            15 years old
## 19825            15 years old
## 19826            15 years old
## 19827            15 years old
## 19828            15 years old
## 19829            16 years old
## 19830            15 years old
## 19831            15 years old
## 19832            15 years old
## 19833            15 years old
## 19834            15 years old
## 19835            15 years old
## 19836            15 years old
## 19837            15 years old
## 19838            15 years old
## 19839            15 years old
## 19840            15 years old
## 19841            14 years old
## 19842            15 years old
## 19843            15 years old
## 19844            14 years old
## 19845            15 years old
## 19846            14 years old
## 19847            14 years old
## 19848            15 years old
## 19849            15 years old
## 19850            15 years old
## 19851            15 years old
## 19852            14 years old
## 19853            14 years old
## 19854            14 years old
## 19855            16 years old
## 19856            14 years old
## 19857            15 years old
## 19858            15 years old
## 19859            15 years old
## 19860            15 years old
## 19861            15 years old
## 19862            15 years old
## 19863            15 years old
## 19864            15 years old
## 19865            14 years old
## 19866            14 years old
## 19867            14 years old
## 19868            15 years old
## 19869            15 years old
## 19870            14 years old
## 19871            15 years old
## 19872            14 years old
## 19873            15 years old
## 19874            15 years old
## 19875            14 years old
## 19876            14 years old
## 19877            15 years old
## 19878            15 years old
## 19879            15 years old
## 19880            15 years old
## 19881            14 years old
## 19882            15 years old
## 19883            15 years old
## 19884            15 years old
## 19885            15 years old
## 19886            15 years old
## 19887            14 years old
## 19888            15 years old
## 19889            14 years old
## 19890            14 years old
## 19891            15 years old
## 19892            15 years old
## 19893            15 years old
## 19894            14 years old
## 19895            15 years old
## 19896            15 years old
## 19897            14 years old
## 19898            15 years old
## 19899            14 years old
## 19900            15 years old
## 19901            14 years old
## 19902            15 years old
## 19903            14 years old
## 19904            14 years old
## 19905            14 years old
## 19906            15 years old
## 19907            14 years old
## 19908            14 years old
## 19909            15 years old
## 19910            15 years old
## 19911            15 years old
## 19912            15 years old
## 19913            14 years old
## 19914            15 years old
## 19915            14 years old
## 19916            14 years old
## 19917            15 years old
## 19918            15 years old
## 19919            14 years old
## 19920            15 years old
## 19921            14 years old
## 19922            14 years old
## 19923            15 years old
## 19924            15 years old
## 19925            15 years old
## 19926            14 years old
## 19927            14 years old
## 19928            15 years old
## 19929            15 years old
## 19930            15 years old
## 19931            15 years old
## 19932            15 years old
## 19933            15 years old
## 19934            15 years old
## 19935            14 years old
## 19936            15 years old
## 19937            15 years old
## 19938            15 years old
## 19939            14 years old
## 19940            15 years old
## 19941            15 years old
## 19942            14 years old
## 19943            15 years old
## 19944            15 years old
## 19945            15 years old
## 19946            15 years old
## 19947            14 years old
## 19948            14 years old
## 19949            15 years old
## 19950            15 years old
## 19951            15 years old
## 19952            15 years old
## 19953            15 years old
## 19954            15 years old
## 19955            15 years old
## 19956            15 years old
## 19957            15 years old
## 19958            15 years old
## 19959            15 years old
## 19960            15 years old
## 19961            14 years old
## 19962            15 years old
## 19963            14 years old
## 19964            15 years old
## 19965            14 years old
## 19966            14 years old
## 19967            15 years old
## 19968            14 years old
## 19969            15 years old
## 19970            15 years old
## 19971            15 years old
## 19972            14 years old
## 19973            15 years old
## 19974            14 years old
## 19975            14 years old
## 19976            15 years old
## 19977            15 years old
## 19978            14 years old
## 19979            14 years old
## 19980            15 years old
## 19981            14 years old
## 19982            14 years old
## 19983            15 years old
## 19984            14 years old
## 19985            15 years old
## 19986            15 years old
## 19987            14 years old
## 19988            14 years old
## 19989            15 years old
## 19990            15 years old
## 19991            15 years old
## 19992            14 years old
## 19993            15 years old
## 19994            15 years old
## 19995            15 years old
## 19996            15 years old
## 19997            14 years old
## 19998            14 years old
## 19999            14 years old
## 20000            15 years old
## 20001            15 years old
## 20002            15 years old
## 20003            15 years old
## 20004            15 years old
## 20005            15 years old
## 20006            15 years old
## 20007            15 years old
## 20008            14 years old
## 20009            15 years old
## 20010            15 years old
## 20011            15 years old
## 20012            15 years old
## 20013            14 years old
## 20014            15 years old
## 20015            15 years old
## 20016            15 years old
## 20017            15 years old
## 20018            15 years old
## 20019            15 years old
## 20020            14 years old
## 20021            15 years old
## 20022            15 years old
## 20023            15 years old
## 20024            14 years old
## 20025            14 years old
## 20026            15 years old
## 20027            15 years old
## 20028            15 years old
## 20029            15 years old
## 20030            15 years old
## 20031            14 years old
## 20032            14 years old
## 20033            15 years old
## 20034            15 years old
## 20035            14 years old
## 20036            15 years old
## 20037            15 years old
## 20038            15 years old
## 20039            14 years old
## 20040            15 years old
## 20041            15 years old
## 20042            14 years old
## 20043            15 years old
## 20044            15 years old
## 20045            14 years old
## 20046            15 years old
## 20047            15 years old
## 20048            15 years old
## 20049            14 years old
## 20050            15 years old
## 20051            15 years old
## 20052            14 years old
## 20053            15 years old
## 20054            15 years old
## 20055            15 years old
## 20056            14 years old
## 20057            15 years old
## 20058            15 years old
## 20059            15 years old
## 20060            16 years old
## 20061            15 years old
## 20062            15 years old
## 20063            15 years old
## 20064            14 years old
## 20065            14 years old
## 20066            14 years old
## 20067            14 years old
## 20068            14 years old
## 20069            15 years old
## 20070            15 years old
## 20071            15 years old
## 20072            15 years old
## 20073            15 years old
## 20074            14 years old
## 20075            15 years old
## 20076            15 years old
## 20077            15 years old
## 20078            14 years old
## 20079            14 years old
## 20080            15 years old
## 20081            14 years old
## 20082            14 years old
## 20083            15 years old
## 20084            15 years old
## 20085            15 years old
## 20086            14 years old
## 20087            15 years old
## 20088            15 years old
## 20089            14 years old
## 20090            15 years old
## 20091            15 years old
## 20092            14 years old
## 20093            14 years old
## 20094            14 years old
## 20095            15 years old
## 20096            15 years old
## 20097            15 years old
## 20098            15 years old
## 20099            14 years old
## 20100            15 years old
## 20101            15 years old
## 20102            16 years old
## 20103            15 years old
# Select specific columns
yrbs_select <- select(yrbs, 
                      age = How_old_are_you,
                      sex = What_is_your_sex,
                      grade = In_what_grade_are_you,
                      height = How_tall_are_you, 
                      weight = How_much_do_you_weigh,
                      Sexual_identity,
                      Neg_mental_health = Current_mental_health)

head(yrbs_select)
##            age    sex      grade height weight         Sexual_identity
## 1 14 years old Female  9th grade   1.65  81.65          Gay or lesbian
## 2 15 years old   Male  9th grade     NA     NA Heterosexual (straight)
## 3 16 years old   Male 11th grade   1.68  74.84                Bisexual
## 4 17 years old Female 10th grade     NA     NA Heterosexual (straight)
## 5 14 years old   Male  9th grade   1.85  56.70 Heterosexual (straight)
## 6 16 years old   Male  9th grade   1.80  72.58 Heterosexual (straight)
##   Neg_mental_health
## 1             Never
## 2         Sometimes
## 3            Rarely
## 4         Sometimes
## 5         Sometimes
## 6              <NA>

Let’s take a closer look at how many students identify with each Sexual_identity category in the yrbs_select object. We can use the count function that we used earlier on this column.

2. filter() - Choose Rows

We see one of the categories is “Don t know what this means”. We can use the filter function to remove responses from students that didn’t understand this question. The filter function will take logic operators such as & (and), | (or), < (less than), > (greater than), ! (not), == (equal). Any time we manipulate the original data object, especially if it is to remove data, we should create a new data object. It is then easy to return to the raw data if needed, as we may want to further investigate this specific group of students in a later analysis. We will create a new data object called yrbs_filter. We will use the filter function on the yrbs_select data object. In the Sexual_identity column, we only want values that do NOT equal (!=) "Don t know what this means". We will print the output by calling the object name yrbs_filter and can see that the row number has decreased from 17,232 to 16,271. Another way to check that this filtering worked is to run the count function on this new data object. We no longer see the category "Don t know what this means".

yrbs_filter <- filter(yrbs_select, Sexual_identity != "Don t know what this means")
yrbs_filter
##                           age    sex                   grade height weight
## 1                14 years old Female               9th grade   1.65  81.65
## 2                15 years old   Male               9th grade     NA     NA
## 3                16 years old   Male              11th grade   1.68  74.84
## 4                17 years old Female              10th grade     NA     NA
## 5                14 years old   Male               9th grade   1.85  56.70
## 6                16 years old   Male               9th grade   1.80  72.58
## 7                17 years old   Male              11th grade   1.83  74.84
## 8                15 years old Female               9th grade   1.52  73.48
## 9                15 years old   Male               9th grade   1.65  61.24
## 10               17 years old Female              11th grade   1.63  53.07
## 11               16 years old   Male              10th grade   1.70  63.50
## 12               15 years old Female               9th grade   1.57  72.12
## 13               15 years old   Male               9th grade   1.68  65.77
## 14      18 years old or older Female              11th grade   1.63 136.08
## 15               15 years old   Male              10th grade   1.75  73.94
## 16               14 years old Female               9th grade   1.68  97.52
## 17               15 years old   Male               9th grade   1.88 122.47
## 18      18 years old or older   Male              11th grade   1.93  68.04
## 19               16 years old Female              11th grade   1.65  49.90
## 20               16 years old Female               9th grade   1.52  52.16
## 21               16 years old   Male              11th grade     NA     NA
## 22               16 years old   Male              10th grade   1.90 131.54
## 23      18 years old or older   Male              12th grade   1.73  95.26
## 24               16 years old Female              11th grade   1.80  83.01
## 25               17 years old Female              11th grade   1.63  59.88
## 26               16 years old Female              10th grade   1.65  68.04
## 27               17 years old Female              12th grade   1.60  47.17
## 28               17 years old Female              11th grade   1.75  74.84
## 29               16 years old   Male              10th grade   1.83  83.92
## 30      18 years old or older Female              12th grade   1.78  74.84
## 31               17 years old   Male              11th grade   1.75  63.50
## 32               16 years old Female              11th grade   1.60  70.31
## 33               16 years old   Male              10th grade   1.78  79.38
## 34      18 years old or older   Male              12th grade   1.85  63.50
## 35               17 years old Female              11th grade   1.65  62.60
## 36               15 years old   Male              10th grade   1.90  69.85
## 37               17 years old Female              12th grade   1.63  53.07
## 38      18 years old or older   Male              11th grade   1.93 111.13
## 39               17 years old   Male              11th grade   1.80 122.47
## 40               17 years old   Male              10th grade   1.73  70.31
## 41               17 years old Female              11th grade   1.63  57.15
## 42               14 years old   Male               9th grade   1.63  56.70
## 43               16 years old Female               9th grade   1.45  44.45
## 44               16 years old Female              11th grade   1.57  73.48
## 45               17 years old   Male              10th grade   1.70  79.38
## 46               17 years old   Male              11th grade   1.75  83.92
## 47               17 years old Female              11th grade   1.57  54.89
## 48               16 years old Female               9th grade   1.65  70.76
## 49               14 years old Female               9th grade   1.52  49.90
## 50               17 years old Female              11th grade   1.65  56.70
## 51               15 years old Female               9th grade   1.63  53.52
## 52               15 years old   Male               9th grade   1.75  72.58
## 53               17 years old Female              11th grade   1.65  99.79
## 54      18 years old or older   Male              12th grade   1.90  77.11
## 55      18 years old or older   Male              12th grade   1.83  80.74
## 56      18 years old or older   Male              11th grade   1.83  86.18
## 57               15 years old Female              10th grade     NA     NA
## 58               17 years old   Male              10th grade   1.80 122.47
## 59               15 years old   Male               9th grade   1.75  61.24
## 60               17 years old Female              11th grade     NA     NA
## 61               14 years old   Male               9th grade   1.75  65.77
## 62               14 years old   Male               9th grade   1.83 111.13
## 63               17 years old   Male              11th grade   1.78  70.31
## 64               15 years old   Male              10th grade   1.75  65.77
## 65               14 years old Female               9th grade   1.55  40.82
## 66               14 years old Female               9th grade   1.63  54.43
## 67               17 years old Female              11th grade   1.65  61.24
## 68               16 years old   Male              10th grade   1.80  86.18
## 69               17 years old Female              12th grade   1.65 113.40
## 70               15 years old   Male              10th grade   1.73  61.24
## 71               17 years old Female              11th grade   1.68  68.04
## 72               17 years old Female              10th grade   1.65  83.92
## 73      18 years old or older Female              11th grade   1.65  79.38
## 74               17 years old Female              11th grade   1.70  54.43
## 75               17 years old   Male              12th grade   1.75  90.72
## 76               17 years old Female              11th grade   1.65  56.70
## 77               15 years old   Male              10th grade   1.88  90.72
## 78               17 years old   Male              10th grade   1.83  74.39
## 79               16 years old Female               9th grade   1.55  46.72
## 80               15 years old   Male               9th grade   1.75  58.51
## 81               15 years old   Male               9th grade   1.83  72.58
## 82               16 years old Female              11th grade   1.60  44.45
## 83               15 years old Female              10th grade   1.57  81.65
## 84               15 years old   Male               9th grade   1.83  89.81
## 85               14 years old   Male               9th grade   1.80  70.31
## 86               15 years old   Male               9th grade   1.73  61.69
## 87               15 years old Female              10th grade   1.68 113.40
## 88               16 years old Female              10th grade   1.63  74.84
## 89               14 years old   Male               9th grade   1.73  62.60
## 90      18 years old or older   Male              12th grade   1.68  71.67
## 91               16 years old   Male              10th grade   1.65  54.43
## 92               15 years old   Male               9th grade   1.60  67.59
## 93               15 years old Female               9th grade     NA     NA
## 94               17 years old Female              10th grade   1.57  63.50
## 95               17 years old   Male              11th grade   1.78  83.92
## 96               16 years old Female              10th grade   1.63  72.58
## 97               17 years old   Male              11th grade   1.78  66.68
## 98               16 years old   Male              11th grade   1.78  72.58
## 99               15 years old   Male              10th grade   1.85  78.02
## 100              17 years old   Male              11th grade   1.88  74.84
## 101              16 years old Female              11th grade   1.55  50.80
## 102              17 years old   Male Ungraded or other grade   1.88 108.86
## 103              17 years old Female              11th grade   1.65  56.70
## 104              17 years old   Male              11th grade   1.73  79.38
## 105              16 years old   Male              11th grade   1.78  72.58
## 106              16 years old Female              11th grade   1.63  58.97
## 107              15 years old Female              10th grade   1.60  53.07
## 108              15 years old Female               9th grade   1.60  66.23
## 109              15 years old Female              10th grade   1.68  62.14
## 110              17 years old   Male              11th grade   1.90  83.92
## 111              16 years old   Male              11th grade   1.85  89.81
## 112              16 years old   Male              10th grade   1.75  97.52
## 113              14 years old Female               9th grade   1.50  54.43
## 114              15 years old Female               9th grade   1.65  72.58
## 115              15 years old   Male               9th grade   1.78  54.89
## 116              17 years old Female              10th grade   1.57  63.50
## 117              15 years old   Male               9th grade   1.85  77.11
## 118              15 years old Female               9th grade   1.63  62.60
## 119              15 years old Female              10th grade   1.63  68.04
## 120              16 years old Female               9th grade   1.70  83.92
## 121              15 years old Female               9th grade   1.65  88.91
## 122              17 years old Female              10th grade   1.52  78.93
## 123              15 years old   Male               9th grade   1.78  49.90
## 124              15 years old Female               9th grade   1.68  54.89
## 125     18 years old or older   Male              11th grade   1.93  97.52
## 126              16 years old Female              11th grade   1.57  71.22
## 127              15 years old Female              10th grade   1.68  66.23
## 128              16 years old   Male              10th grade   1.85  64.86
## 129              17 years old   Male              11th grade   1.75  68.04
## 130              17 years old Female              11th grade   1.55  68.04
## 131              17 years old   Male              10th grade   1.85  70.31
## 132     18 years old or older   Male              12th grade   1.90  77.11
## 133              17 years old Female              11th grade   1.60  48.54
## 134              16 years old   Male              10th grade   1.88  83.92
## 135              17 years old   Male              12th grade   1.83  99.79
## 136              16 years old Female              11th grade     NA     NA
## 137              17 years old   Male              11th grade   1.85 104.33
## 138              17 years old   Male              11th grade   1.93  68.04
## 139              17 years old   Male              11th grade   1.85  56.70
## 140              16 years old   Male              10th grade   1.73  60.33
## 141              17 years old   Male              12th grade   1.80  68.04
## 142              17 years old Female              11th grade   1.65  54.43
## 143              15 years old   Male              10th grade   1.80  68.04
## 144              17 years old Female              11th grade   1.60  56.70
## 145              17 years old   Male              11th grade   1.93 111.13
## 146              17 years old   Male              11th grade   1.88  99.79
## 147              16 years old Female              10th grade   1.50  40.82
## 148              16 years old   Male              11th grade   1.80  61.24
## 149     18 years old or older Female              11th grade   1.68  97.98
## 150              15 years old   Male               9th grade   1.78  75.30
## 151              17 years old   Male              11th grade   1.78  64.86
## 152              17 years old Female              11th grade   1.57  86.18
## 153              15 years old Female              10th grade   1.57  60.78
## 154              14 years old Female               9th grade   1.65  82.56
## 155              15 years old Female               9th grade   1.60  70.76
## 156              17 years old Female              11th grade   1.70 131.54
## 157              17 years old   Male              11th grade   1.88  70.76
## 158              17 years old Female              10th grade   1.70 127.01
## 159              15 years old Female              10th grade     NA     NA
## 160              15 years old   Male               9th grade   1.93  73.03
## 161                      <NA>   Male                    <NA>     NA     NA
## 162     18 years old or older   Male              11th grade   1.83  75.30
## 163              15 years old Female              10th grade   1.70  79.83
## 164              15 years old Female               9th grade   1.60 104.33
## 165              17 years old Female              11th grade   1.60  68.95
## 166              17 years old Female              11th grade   1.50  66.23
## 167              17 years old   Male              11th grade   1.70  88.45
## 168              16 years old Female               9th grade     NA     NA
## 169              15 years old Female               9th grade   1.68  53.52
## 170              16 years old Female              10th grade     NA     NA
## 171              17 years old   Male              11th grade   1.80  63.50
## 172              15 years old   Male               9th grade   1.83  88.91
## 173              17 years old   Male              11th grade   1.78  77.11
## 174              16 years old Female              10th grade   1.60  56.70
## 175              15 years old Female               9th grade   1.50  50.35
## 176              17 years old Female              11th grade   1.68  58.97
## 177              17 years old Female              11th grade   1.45  54.43
## 178              16 years old Female              10th grade   1.63  47.17
## 179              16 years old   Male              10th grade   1.68  64.41
## 180              16 years old   Male              11th grade   1.83  92.99
## 181              16 years old Female              10th grade   1.50  52.62
## 182              15 years old Female               9th grade   1.75  61.24
## 183              16 years old   Male              10th grade   1.85 172.37
## 184              17 years old   Male              11th grade   1.83  55.79
## 185              15 years old Female              10th grade   1.60  70.76
## 186              17 years old Female              11th grade     NA     NA
## 187              14 years old Female               9th grade   1.60  76.20
## 188              15 years old Female               9th grade   1.55  52.16
## 189              16 years old   Male              10th grade   1.68  97.52
## 190              14 years old Female               9th grade   1.57  79.38
## 191              17 years old   Male              11th grade   1.73  84.37
## 192              16 years old Female              10th grade   1.63  77.11
## 193              14 years old Female               9th grade   1.73  50.80
## 194              16 years old   Male              11th grade   1.73  68.04
## 195              15 years old   Male               9th grade   1.75 111.13
## 196              16 years old   Male              10th grade   1.85 102.06
## 197              15 years old   Male               9th grade   1.73  59.88
## 198              16 years old   Male              11th grade   1.70  68.49
## 199              15 years old Female               9th grade   1.55  58.97
## 200              17 years old   Male              11th grade   1.75  56.70
## 201              17 years old Female              11th grade   1.63  86.18
## 202              16 years old   Male              10th grade   1.85  86.64
## 203              15 years old Female               9th grade   1.68  58.97
## 204     18 years old or older Female              11th grade   1.65 117.94
## 205              16 years old   Male              11th grade   1.80  73.94
## 206              16 years old   Male              10th grade   1.75  77.11
## 207              16 years old   Male               9th grade     NA     NA
## 208              17 years old   Male              11th grade   1.85 102.97
## 209              16 years old   Male              11th grade   1.78  61.24
## 210              14 years old   Male               9th grade   1.73  63.50
## 211     18 years old or older   Male              12th grade   1.80  68.04
## 212              15 years old   Male              10th grade   1.80  68.04
## 213              17 years old Female              11th grade     NA     NA
## 214              16 years old Female              10th grade   1.57  88.45
## 215              16 years old   Male               9th grade     NA     NA
## 216              16 years old   Male              10th grade   1.85  87.09
## 217              15 years old Female               9th grade   1.65  98.88
## 218              15 years old Female               9th grade   1.70  56.70
## 219              17 years old Female              11th grade   1.57  82.56
## 220              17 years old   Male              11th grade   1.65  59.42
## 221              16 years old   Male              10th grade   1.75  73.03
## 222              15 years old Female               9th grade   1.63  58.97
## 223              17 years old Female              11th grade   1.63 107.05
## 224              17 years old   Male              11th grade   1.93  72.58
## 225              15 years old   Male               9th grade   1.70  54.43
## 226              15 years old   Male               9th grade   1.65  61.24
## 227              16 years old   Male              10th grade   1.90  86.18
## 228     18 years old or older   Male              11th grade   1.70 114.31
## 229              16 years old Female              10th grade   1.65  61.24
## 230              15 years old   Male               9th grade   1.85  71.22
## 231              17 years old Female              11th grade   1.55  72.12
## 232              16 years old Female              10th grade   1.57  54.89
## 233              15 years old   Male               9th grade   1.75  63.50
## 234              15 years old   Male               9th grade   1.73  63.50
## 235              15 years old   Male               9th grade   1.65  49.90
## 236              15 years old Female               9th grade   1.75  92.53
## 237              15 years old Female               9th grade   1.63  52.16
## 238              14 years old Female               9th grade   1.68  85.28
## 239              16 years old Female              10th grade   1.52  58.06
## 240              14 years old Female               9th grade   1.52  61.24
## 241              14 years old Female               9th grade   1.52  68.04
## 242              14 years old   Male               9th grade   1.75  68.04
## 243              15 years old Female              10th grade   1.57  48.54
## 244              15 years old   Male               9th grade   1.75  62.14
## 245              15 years old Female               9th grade   1.65  53.98
## 246              14 years old   Male               9th grade   1.78  85.73
## 247              15 years old   Male               9th grade   1.75  61.24
## 248              14 years old   Male               9th grade   1.78  61.24
## 249              15 years old   Male               9th grade   1.68  56.70
## 250              15 years old Female               9th grade   1.70  54.43
## 251              17 years old Female              11th grade   1.55  55.34
## 252              15 years old   Male               9th grade   1.83  60.78
## 253              16 years old   Male              10th grade   1.96 147.42
## 254              16 years old Female              11th grade   1.70  58.97
## 255              15 years old Female              10th grade   1.65  56.70
## 256              16 years old   Male              10th grade     NA     NA
## 257              16 years old   Male              10th grade     NA     NA
## 258              15 years old Female              10th grade   1.68  54.43
## 259              15 years old   Male              10th grade   1.75  90.72
## 260              16 years old   Male              10th grade     NA     NA
## 261              16 years old   Male              10th grade   1.68  61.24
## 262              16 years old   Male              10th grade   1.57  54.43
## 263              16 years old Female              10th grade   1.63  49.90
## 264              15 years old Female              10th grade   1.60  50.80
## 265              17 years old Female              10th grade     NA     NA
## 266              17 years old Female              10th grade   1.55  58.97
## 267              15 years old   Male              10th grade   1.90  65.77
## 268              16 years old   Male              10th grade   1.75 106.60
## 269              15 years old Female              10th grade   1.65  61.24
## 270              16 years old Female              10th grade   1.78  81.65
## 271              16 years old   Male              10th grade     NA     NA
## 272              17 years old   Male              10th grade   1.68  81.65
## 273              17 years old Female              10th grade     NA     NA
## 274              16 years old Female              10th grade   1.55  52.16
## 275     18 years old or older Female              12th grade   1.60  81.65
## 276              15 years old Female               9th grade   1.57  68.04
## 277              15 years old Female               9th grade   1.68  58.97
## 278     18 years old or older   Male              12th grade   1.88 131.54
## 279     18 years old or older   Male              12th grade   1.73  67.13
## 280              15 years old   Male               9th grade   1.78  84.37
## 281              14 years old   Male               9th grade   1.78  89.36
## 282              16 years old Female              10th grade   1.45  55.79
## 283     18 years old or older Female              12th grade   1.57  72.58
## 284              16 years old   Male               9th grade     NA     NA
## 285              14 years old   Male               9th grade   1.70  63.05
## 286              15 years old   Male              10th grade   1.75  74.84
## 287              17 years old   Male              12th grade   1.78  88.45
## 288     18 years old or older Female              12th grade   1.63  58.97
## 289              14 years old Female               9th grade   1.63  61.24
## 290              15 years old   Male               9th grade   1.68  61.24
## 291              15 years old Female              10th grade   1.63  72.58
## 292              17 years old Female              12th grade   1.57  63.50
## 293     18 years old or older   Male              12th grade   1.70  65.77
## 294              16 years old Female               9th grade   1.57 104.33
## 295              15 years old Female               9th grade   1.63  54.89
## 296              17 years old   Male              10th grade   1.63  66.68
## 297              17 years old Female              12th grade   1.65  54.43
## 298     18 years old or older Female              12th grade   1.68  81.19
## 299              14 years old Female               9th grade   1.70 124.74
## 300              16 years old   Male              11th grade   1.52  59.42
## 301     18 years old or older Female              12th grade   1.60  70.31
## 302              14 years old   Male               9th grade     NA     NA
## 303              15 years old   Male               9th grade   1.65  53.98
## 304              17 years old Female              10th grade   1.70  81.65
## 305              14 years old   Male               9th grade   1.73  62.60
## 306              17 years old   Male              10th grade   1.80  87.09
## 307     18 years old or older   Male              12th grade   1.80 113.40
## 308     18 years old or older Female              12th grade   1.60  50.80
## 309              14 years old Female               9th grade   1.57  46.27
## 310              15 years old   Male               9th grade   1.65  82.10
## 311              17 years old Female              12th grade   1.57  61.24
## 312     18 years old or older Female              12th grade   1.52  40.82
## 313              17 years old Female              12th grade   1.60  97.98
## 314              14 years old   Male               9th grade     NA     NA
## 315              14 years old Female               9th grade     NA     NA
## 316              17 years old   Male              12th grade   1.80  79.38
## 317              14 years old   Male               9th grade   1.80  92.99
## 318              15 years old Female               9th grade   1.65  68.04
## 319              16 years old   Male              10th grade   1.85  66.23
## 320     18 years old or older   Male              12th grade   1.83  86.18
## 321              17 years old   Male               9th grade   1.73  53.07
## 322              14 years old Female               9th grade     NA     NA
## 323              16 years old Female              10th grade   1.60  49.44
## 324     18 years old or older Female              12th grade   1.63  49.90
## 325              15 years old Female               9th grade     NA     NA
## 326              17 years old   Male              10th grade   1.68  49.90
## 327     18 years old or older   Male              12th grade   1.83  68.04
## 328              17 years old Female              12th grade   1.63  63.05
## 329              16 years old   Male               9th grade     NA     NA
## 330              17 years old Female              11th grade     NA     NA
## 331              17 years old Female              12th grade   1.60  62.60
## 332              14 years old Female               9th grade   1.63  67.59
## 333              15 years old   Male               9th grade     NA     NA
## 334              17 years old Female              11th grade   1.65  88.91
## 335              17 years old   Male              12th grade   1.78 108.41
## 336              17 years old Female              12th grade   1.60  56.70
## 337              14 years old Female               9th grade   1.63  52.16
## 338              15 years old   Male               9th grade   1.70  54.43
## 339              16 years old   Male              10th grade   1.68  79.38
## 340              17 years old Female              12th grade   1.60  68.04
## 341     18 years old or older   Male              12th grade   1.78  61.24
## 342     18 years old or older   Male              12th grade   1.83 108.86
## 343              17 years old   Male              12th grade     NA     NA
## 344              15 years old   Male               9th grade   1.73  58.51
## 345              17 years old   Male              10th grade   1.68  67.13
## 346     18 years old or older Female              12th grade   1.68  82.56
## 347     18 years old or older   Male              12th grade   1.75 101.15
## 348              14 years old   Male               9th grade   1.80  62.14
## 349              15 years old Female               9th grade   1.60  72.12
## 350              15 years old Female              10th grade   1.73  68.04
## 351              17 years old Female              12th grade   1.65  49.90
## 352              17 years old Female              12th grade   1.52  49.90
## 353              15 years old Female               9th grade   1.52  42.18
## 354              16 years old Female               9th grade   1.63  58.97
## 355              16 years old   Male              10th grade   1.78  96.62
## 356              16 years old   Male              10th grade   1.83  79.38
## 357              16 years old Female              10th grade   1.65  61.24
## 358              15 years old Female              10th grade   1.55  44.45
## 359              17 years old   Male              11th grade   1.70  54.43
## 360              15 years old   Male              10th grade   1.85 113.40
## 361              15 years old Female              10th grade   1.50  58.97
## 362              16 years old   Male              10th grade   1.90  54.43
## 363              16 years old Female              10th grade   1.68  56.70
## 364              15 years old Female              10th grade   1.65  52.62
## 365              16 years old Female              10th grade   1.57  74.84
## 366              15 years old Female              10th grade   1.57  83.92
## 367              15 years old   Male               9th grade   1.78  76.20
## 368              15 years old Female              10th grade   1.55  47.17
## 369              16 years old Female               9th grade   1.65  56.70
## 370              15 years old   Male              10th grade   1.80  79.38
## 371              16 years old Female              10th grade   1.60  49.90
## 372              15 years old   Male              10th grade   1.70  60.78
## 373              16 years old   Male              10th grade   1.73  83.92
## 374              17 years old Female              11th grade   1.60  83.46
## 375              15 years old Female              10th grade   1.63  52.16
## 376              15 years old Female              10th grade   1.52  47.63
## 377              16 years old Female              10th grade   1.65  56.25
## 378              15 years old Female               9th grade   1.63  45.36
## 379     18 years old or older   Male              12th grade   1.68  49.90
## 380              16 years old Female              10th grade   1.63  56.70
## 381              15 years old Female              10th grade   1.65  52.62
## 382              15 years old   Male              10th grade   1.80  65.32
## 383     18 years old or older   Male              12th grade   1.75  68.04
## 384              16 years old Female              10th grade   1.68  57.61
## 385              16 years old   Male              10th grade   1.70  57.61
## 386              15 years old   Male               9th grade   1.73  56.70
## 387              15 years old   Male              10th grade   1.80  48.99
## 388              16 years old   Male              11th grade   1.73  72.58
## 389              16 years old Female              10th grade   1.78  56.70
## 390              15 years old   Male              10th grade   1.80  70.31
## 391              15 years old   Male               9th grade   1.73  63.50
## 392              15 years old   Male              10th grade   1.80  81.65
## 393              15 years old Female              10th grade   1.63  48.54
## 394              17 years old Female              12th grade   1.75  68.04
## 395              15 years old   Male              10th grade   1.73  72.58
## 396              14 years old   Male               9th grade     NA     NA
## 397              16 years old   Male              10th grade   1.88  78.02
## 398              16 years old   Male              10th grade   1.73  58.06
## 399              15 years old   Male              10th grade   1.80  77.11
## 400              15 years old   Male              10th grade   1.83  74.84
## 401              15 years old   Male              10th grade   1.63  58.06
## 402              15 years old   Male              10th grade   1.70  51.26
## 403              17 years old   Male              11th grade   1.90  86.18
## 404              15 years old   Male               9th grade   1.78  61.69
## 405              17 years old   Male              12th grade   1.68  61.24
## 406              15 years old   Male              10th grade   1.83  87.09
## 407              15 years old   Male              10th grade   1.85  72.58
## 408              16 years old Female              10th grade   1.63  58.97
## 409              14 years old   Male               9th grade   1.90  68.95
## 410              15 years old   Male               9th grade   1.78  54.43
## 411              15 years old   Male              10th grade   1.78  70.31
## 412              17 years old   Male              11th grade   1.75  70.31
## 413     18 years old or older Female              12th grade   1.68  68.04
## 414     18 years old or older   Male              12th grade   1.75  83.01
## 415              14 years old   Male               9th grade   1.68  66.23
## 416              16 years old Female              11th grade   1.65  64.86
## 417              15 years old   Male              10th grade   1.78 117.94
## 418              15 years old   Male              10th grade   1.68  54.43
## 419              15 years old   Male              10th grade   1.78  61.24
## 420              17 years old   Male              11th grade   1.73  65.77
## 421              14 years old   Male               9th grade   1.63  52.16
## 422              15 years old   Male              10th grade   1.83  60.33
## 423              15 years old   Male              10th grade   1.88  83.92
## 424              16 years old   Male              11th grade   1.83  65.32
## 425              16 years old   Male              11th grade   1.78  58.97
## 426              15 years old Female              10th grade   1.63  77.11
## 427              15 years old   Male              10th grade   1.68  58.97
## 428              17 years old   Male              11th grade   1.70  54.43
## 429              15 years old   Male              10th grade   1.73  50.80
## 430     18 years old or older Female              11th grade   1.57  69.40
## 431              15 years old   Male              10th grade   1.78  99.79
## 432              17 years old   Male              11th grade   1.75  74.84
## 433              17 years old   Male              11th grade   1.85  72.58
## 434              15 years old   Male               9th grade   1.65  58.97
## 435              16 years old   Male              10th grade   1.83  68.04
## 436              16 years old Female              11th grade   1.78  74.84
## 437              16 years old   Male              11th grade   1.80  79.38
## 438              15 years old   Male              10th grade   1.88  77.11
## 439              17 years old Female              11th grade   1.63  61.24
## 440              17 years old   Male              12th grade   1.80 104.33
## 441              15 years old Female               9th grade   1.75  68.95
## 442              16 years old   Male              10th grade   1.70  61.24
## 443              16 years old Female              11th grade     NA     NA
## 444              17 years old   Male              12th grade   1.83  97.52
## 445              17 years old   Male              12th grade   1.83  68.95
## 446              15 years old   Male              10th grade   1.75  67.13
## 447              17 years old Female              11th grade   1.52  56.70
## 448              17 years old   Male              12th grade   1.80  79.38
## 449              14 years old Female               9th grade   1.45  70.76
## 450              14 years old Female               9th grade   1.60  56.70
## 451              15 years old Female               9th grade     NA     NA
## 452              15 years old Female               9th grade   1.60  58.97
## 453              14 years old Female               9th grade   1.57  40.82
## 454              14 years old Female               9th grade   1.65  56.25
## 455              14 years old Female               9th grade   1.68  49.44
## 456     18 years old or older   Male              12th grade   1.73  72.58
## 457              17 years old   Male              12th grade   1.85  85.73
## 458     18 years old or older   Male              12th grade   1.80  90.72
## 459     18 years old or older   Male              12th grade   1.75  87.54
## 460     18 years old or older   Male              12th grade   1.80  77.11
## 461              17 years old Female              12th grade   1.60  86.18
## 462              17 years old Female              12th grade   1.65 104.33
## 463     18 years old or older Female              12th grade   1.70  97.98
## 464     18 years old or older   Male              12th grade   1.68  61.24
## 465     18 years old or older   Male              12th grade   1.83  83.92
## 466     18 years old or older Female              12th grade   1.55  70.31
## 467              17 years old   Male              12th grade   1.90  77.11
## 468     18 years old or older   Male              12th grade   1.73  89.36
## 469              17 years old Female              12th grade   1.57 113.40
## 470              17 years old Female              12th grade   1.70  63.50
## 471              15 years old   Male               9th grade   1.70  57.61
## 472              14 years old   Male               9th grade   1.70  52.16
## 473              14 years old Female               9th grade   1.55  49.90
## 474              15 years old Female               9th grade   1.65  52.16
## 475              15 years old Female               9th grade   1.60  46.72
## 476              15 years old   Male               9th grade   1.85  81.65
## 477              14 years old Female               9th grade   1.73  68.04
## 478              14 years old   Male               9th grade   1.73  64.86
## 479              14 years old Female               9th grade     NA     NA
## 480     18 years old or older   Male              12th grade     NA     NA
## 481              15 years old   Male               9th grade   1.80  65.77
## 482              14 years old Female               9th grade   1.63  81.65
## 483              14 years old   Male               9th grade   1.68  62.60
## 484              15 years old Female               9th grade   1.55  48.08
## 485              14 years old Female               9th grade   1.60  47.63
## 486              15 years old   Male               9th grade   1.75  79.38
## 487              15 years old Female               9th grade     NA     NA
## 488              15 years old   Male               9th grade   1.70  61.24
## 489              15 years old   Male              10th grade   1.68  68.04
## 490              16 years old   Male              10th grade   1.70  86.18
## 491              15 years old Female              10th grade   1.63  96.62
## 492              15 years old   Male              10th grade     NA     NA
## 493              16 years old   Male              10th grade   1.78 120.20
## 494              16 years old Female              10th grade     NA     NA
## 495              16 years old Female              10th grade   1.63  81.65
## 496              16 years old   Male              10th grade   1.68  63.50
## 497              16 years old Female              10th grade   1.57  65.77
## 498              16 years old Female              10th grade   1.65  68.04
## 499              16 years old   Male              10th grade   1.88 127.01
## 500              16 years old   Male              10th grade     NA     NA
## 501              16 years old Female              10th grade   1.57  61.24
## 502              16 years old Female              10th grade     NA     NA
## 503              16 years old Female              10th grade   1.57  43.09
## 504     18 years old or older Female              12th grade   1.57  58.51
## 505              17 years old Female              12th grade   1.70  71.22
## 506              14 years old   Male               9th grade   1.65  45.36
## 507              17 years old Female              11th grade   1.73  56.70
## 508              15 years old Female              10th grade   1.57  54.43
## 509              17 years old Female              12th grade   1.73  61.24
## 510              17 years old Female              12th grade   1.50  63.50
## 511              16 years old   Male               9th grade   1.70  63.50
## 512              16 years old Female              11th grade   1.50  44.45
## 513     18 years old or older Female              12th grade   1.70  58.97
## 514              17 years old   Male              12th grade   1.85 117.94
## 515              15 years old   Male               9th grade   1.75  63.50
## 516              16 years old Female              11th grade   1.78  99.79
## 517              15 years old Female              10th grade   1.57  61.24
## 518              17 years old   Male              12th grade   1.85  74.84
## 519              17 years old Female              12th grade   1.73 104.33
## 520              14 years old Female               9th grade   1.65  68.04
## 521              17 years old Female              11th grade   1.70  72.58
## 522              16 years old   Male              11th grade   1.88  67.59
## 523              17 years old Female              11th grade   1.52  54.43
## 524              15 years old   Male               9th grade     NA     NA
## 525              17 years old Female              11th grade   1.68  99.79
## 526              16 years old   Male              11th grade   1.93  99.79
## 527              17 years old   Male              11th grade   1.93  97.52
## 528              15 years old Female              10th grade   1.63  53.52
## 529              15 years old Female              10th grade   1.60  72.58
## 530     18 years old or older Female              12th grade   1.52  63.50
## 531              17 years old   Male              12th grade   1.75  68.04
## 532              16 years old   Male              11th grade   1.80  61.24
## 533              15 years old Female              10th grade   1.63  65.77
## 534              15 years old   Male              10th grade     NA     NA
## 535              17 years old   Male              12th grade   1.78  74.84
## 536              16 years old Female              11th grade   1.60  67.13
## 537              15 years old   Male              10th grade   1.78  60.78
## 538              16 years old   Male              11th grade   1.70  54.89
## 539              17 years old Female              12th grade   1.63  58.97
## 540              17 years old Female              12th grade   1.55  70.31
## 541              14 years old   Male               9th grade   1.68  63.50
## 542              16 years old   Male              10th grade   1.80  61.24
## 543              15 years old   Male              10th grade   1.73  72.58
## 544              17 years old Female              12th grade   1.60  56.25
## 545     18 years old or older Female              12th grade   1.75  68.04
## 546              17 years old Female              11th grade   1.57  58.97
## 547              17 years old Female              12th grade   1.60  83.92
## 548              17 years old Female              12th grade   1.65  64.41
## 549     18 years old or older Female              12th grade   1.63  52.16
## 550              17 years old Female              12th grade   1.57  47.63
## 551                      <NA>   Male               9th grade     NA     NA
## 552              15 years old Female               9th grade   1.60  54.43
## 553              17 years old Female              11th grade   1.65 102.97
## 554              17 years old Female              12th grade   1.68  68.04
## 555              15 years old Female               9th grade   1.60  57.15
## 556              17 years old Female              11th grade   1.63  95.26
## 557              16 years old   Male              11th grade   1.80  74.84
## 558              16 years old Female              11th grade     NA     NA
## 559              16 years old   Male              12th grade   1.73  52.16
## 560              17 years old Female              12th grade   1.45  59.88
## 561              14 years old Female               9th grade   1.73  53.52
## 562              17 years old   Male              11th grade     NA     NA
## 563              17 years old Female              11th grade   1.68  63.50
## 564              15 years old   Male              10th grade     NA     NA
## 565              17 years old Female              12th grade   1.65  48.54
## 566     18 years old or older Female              12th grade   1.65  56.70
## 567              14 years old   Male               9th grade   1.75  56.70
## 568              15 years old Female               9th grade   1.63  63.50
## 569              16 years old Female              11th grade   1.57  61.24
## 570              17 years old   Male              12th grade   1.78  92.99
## 571              16 years old   Male              11th grade   1.75  83.92
## 572              16 years old Female              11th grade     NA     NA
## 573              16 years old   Male              10th grade   1.83  82.56
## 574              14 years old   Male              10th grade   1.70  50.80
## 575     18 years old or older   Male              12th grade   1.83  94.35
## 576              16 years old   Male              11th grade   1.85 105.24
## 577              16 years old Female              11th grade     NA     NA
## 578              15 years old Female              10th grade   1.50  77.11
## 579     18 years old or older   Male              12th grade   1.90  88.45
## 580              17 years old Female              12th grade     NA     NA
## 581              15 years old Female               9th grade   1.68  44.45
## 582              17 years old Female              11th grade   1.68  77.11
## 583              16 years old   Male              11th grade   1.83  72.58
## 584              16 years old Female              11th grade   1.70  63.50
## 585              17 years old   Male              12th grade   1.73  90.72
## 586              17 years old   Male              12th grade   1.75  79.38
## 587              15 years old   Male               9th grade   1.70 104.33
## 588              16 years old   Male              11th grade   1.90  90.72
## 589              16 years old   Male              10th grade   1.73  90.72
## 590     18 years old or older Female              12th grade   1.60  76.20
## 591              17 years old   Male              12th grade   1.73  63.96
## 592              15 years old Female               9th grade   1.57  68.95
## 593              14 years old Female               9th grade   1.60  42.64
## 594              15 years old Female              10th grade   1.60  46.27
## 595              16 years old Female              10th grade   1.55  52.16
## 596              17 years old   <NA>              12th grade     NA     NA
## 597              17 years old   Male              12th grade   1.73  58.97
## 598              16 years old Female              11th grade   1.57  79.38
## 599              16 years old   Male              10th grade   1.83 127.01
## 600              16 years old Female              10th grade   1.73  93.90
## 601              17 years old   Male              12th grade   1.85  83.92
## 602              17 years old Female              12th grade   1.52  44.45
## 603              14 years old Female               9th grade   1.60  71.22
## 604              16 years old Female              11th grade   1.50  48.99
## 605              14 years old   Male               9th grade     NA     NA
## 606              14 years old Female               9th grade   1.57  52.16
## 607              15 years old Female              10th grade   1.57  52.16
## 608              16 years old   Male              10th grade   1.78  72.58
## 609              17 years old   Male              12th grade   1.75  65.77
## 610              15 years old Female               9th grade   1.55  65.77
## 611              14 years old Female               9th grade   1.60  58.06
## 612              16 years old   Male              11th grade   1.75  86.18
## 613     18 years old or older Female              12th grade     NA     NA
## 614     18 years old or older   Male              12th grade   1.80  70.31
## 615              15 years old   Male               9th grade   1.68  61.24
## 616              14 years old   Male               9th grade     NA     NA
## 617              16 years old   Male              11th grade   1.83  70.31
## 618              14 years old Female               9th grade   1.65  63.50
## 619              17 years old Female              11th grade   1.68  65.77
## 620              17 years old Female              11th grade   1.55  52.16
## 621              16 years old Female              11th grade   1.60  72.58
## 622              16 years old   Male              10th grade   1.80  72.58
## 623              16 years old   Male              11th grade   1.78  62.60
## 624              16 years old Female              10th grade     NA     NA
## 625                      <NA> Female              11th grade     NA     NA
## 626              14 years old Female               9th grade   1.63  70.31
## 627              15 years old   Male              10th grade   1.63  58.97
## 628              16 years old   Male              11th grade   1.83  60.78
## 629              16 years old   Male              11th grade   1.78  72.58
## 630              16 years old Female              11th grade   1.75  79.38
## 631              14 years old   Male               9th grade   1.68  58.06
## 632              15 years old Female              10th grade   1.63  50.35
## 633              17 years old Female              11th grade   1.75  72.58
## 634              17 years old   Male              11th grade   1.75  68.04
## 635              17 years old Female              11th grade     NA     NA
## 636              15 years old Female               9th grade   1.63  52.16
## 637              16 years old Female              11th grade   1.63  49.90
## 638              17 years old Female              11th grade   1.52  53.07
## 639              15 years old Female              10th grade   1.50  47.17
## 640              16 years old Female              11th grade   1.50  55.79
## 641              14 years old   Male               9th grade   1.90  97.52
## 642              16 years old Female              10th grade   1.50  48.54
## 643              16 years old Female              11th grade   1.60  90.72
## 644              16 years old Female              10th grade   1.57  55.79
## 645              17 years old   Male              11th grade   1.85  58.97
## 646              16 years old   Male              11th grade   1.88  66.23
## 647              16 years old Female              11th grade   1.70  81.65
## 648              16 years old Female              11th grade   1.70  51.71
## 649              15 years old   Male              10th grade   1.80  80.74
## 650              17 years old   Male              11th grade   1.75  71.67
## 651              17 years old   Male              11th grade   1.75  83.46
## 652              14 years old   Male               9th grade   1.83  54.43
## 653              16 years old   Male              10th grade   1.75  65.77
## 654              16 years old Female              11th grade   1.70  63.50
## 655              16 years old Female              11th grade   1.65  74.84
## 656              14 years old   Male               9th grade   1.73  54.43
## 657              15 years old Female              10th grade   1.65  81.65
## 658              17 years old   <NA>              11th grade     NA     NA
## 659              16 years old   Male              11th grade   1.68  66.68
## 660              14 years old   Male               9th grade   1.68  52.16
## 661              16 years old   Male              10th grade     NA     NA
## 662              16 years old Female              11th grade   1.63  49.90
## 663              16 years old Female              11th grade   1.65  43.09
## 664              14 years old   Male               9th grade   1.73  65.77
## 665              15 years old Female              10th grade   1.63  52.16
## 666              17 years old   Male              11th grade   1.78 127.01
## 667              16 years old   Male              11th grade   1.70  58.97
## 668              15 years old   Male              10th grade   1.65  58.97
## 669              16 years old   Male              11th grade   1.90 117.94
## 670              16 years old   Male              10th grade   1.80  65.77
## 671              16 years old Female              11th grade   1.70  63.50
## 672              16 years old Female              11th grade   1.65  65.77
## 673              15 years old Female               9th grade   1.63  68.95
## 674              15 years old   Male              10th grade   1.80  90.72
## 675              17 years old   Male              11th grade   1.83 113.40
## 676              16 years old   Male              11th grade   1.78  63.50
## 677              16 years old Female              11th grade   1.60  79.83
## 678              14 years old Female               9th grade   1.68  58.97
## 679              16 years old   Male              11th grade   1.78  78.93
## 680              15 years old   Male              10th grade   1.80  90.72
## 681              16 years old Female              11th grade   1.60  51.26
## 682              15 years old Female               9th grade   1.63  47.63
## 683              15 years old Female              10th grade   1.70  81.65
## 684              16 years old Female              11th grade   1.73  59.42
## 685              16 years old Female              11th grade   1.68  49.44
## 686              16 years old   Male              10th grade   1.68  56.70
## 687              16 years old Female              11th grade   1.63  65.77
## 688              16 years old Female              10th grade   1.68  54.43
## 689              16 years old Female              11th grade   1.65  72.58
## 690              15 years old   Male               9th grade   1.68  58.97
## 691              16 years old Female              10th grade     NA     NA
## 692              16 years old   Male              11th grade     NA     NA
## 693              16 years old Female              11th grade   1.68  70.31
## 694              15 years old Female              10th grade   1.63  68.04
## 695              17 years old Female              12th grade     NA     NA
## 696              16 years old   Male              11th grade   1.80  74.84
## 697              16 years old Female              11th grade   1.63  63.50
## 698              15 years old   Male              10th grade   1.88 106.60
## 699              17 years old   Male              11th grade   1.83  90.72
## 700              17 years old Female              11th grade   1.68  57.61
## 701              15 years old Female              10th grade   1.75  72.58
## 702              16 years old   Male              11th grade   1.75  83.01
## 703              17 years old Female              11th grade   1.50  90.27
## 704              15 years old Female              10th grade   1.60  84.37
## 705              16 years old Female              11th grade   1.73  53.07
## 706              15 years old Female               9th grade   1.63  52.16
## 707              15 years old   Male              10th grade   1.80  91.17
## 708              16 years old   Male              11th grade   1.83  63.50
## 709              17 years old   Male              11th grade   1.78  78.02
## 710              15 years old   Male              10th grade   1.68  99.79
## 711              16 years old Female              11th grade   1.60  49.90
## 712              17 years old   Male              11th grade   1.75  73.94
## 713              16 years old Female              11th grade   1.57  48.08
## 714              16 years old   Male              10th grade   1.73  73.03
## 715              16 years old   Male              11th grade   1.88  72.58
## 716              16 years old Female              10th grade   1.55  54.89
## 717              17 years old   Male Ungraded or other grade   1.50  90.72
## 718              16 years old Female              11th grade   1.52  74.84
## 719              15 years old   Male               9th grade   1.73  61.24
## 720              16 years old   Male              10th grade   1.78  63.50
## 721              16 years old Female              11th grade   1.52  90.72
## 722              15 years old   Male              10th grade   1.63  52.16
## 723              17 years old   Male              11th grade   1.75  90.72
## 724              15 years old Female                    <NA>   1.55  45.81
## 725              16 years old Female              10th grade   1.60  51.71
## 726              16 years old Female              11th grade   1.57  47.63
## 727              15 years old Female              10th grade   1.63  81.65
## 728              15 years old Female               9th grade   1.47  54.43
## 729              15 years old   Male              10th grade   1.75  54.43
## 730              17 years old   Male              11th grade   1.85  77.11
## 731              16 years old   Male              10th grade   1.88 102.06
## 732              16 years old Female              11th grade   1.68  65.32
## 733              15 years old Female               9th grade   1.63  61.24
## 734              15 years old Female              10th grade     NA     NA
## 735              15 years old Female              10th grade   1.65  58.97
## 736              16 years old Female              11th grade   1.63  56.70
## 737              15 years old   Male              10th grade   1.60  55.34
## 738              16 years old   Male              11th grade   1.73  70.31
## 739     18 years old or older Female Ungraded or other grade     NA     NA
## 740              15 years old   Male              10th grade   1.90  97.52
## 741              15 years old   Male              10th grade   1.73  61.69
## 742              17 years old Female              11th grade     NA     NA
## 743              15 years old   Male              10th grade   1.70 104.33
## 744              17 years old   Male              11th grade   1.83  77.11
## 745              17 years old Female              12th grade   1.63  63.50
## 746     18 years old or older Female              12th grade   1.60  55.79
## 747              17 years old Female              12th grade   1.57  54.43
## 748     18 years old or older Female              12th grade   1.63 102.06
## 749              17 years old   Male              12th grade     NA     NA
## 750              17 years old   Male              12th grade   1.75  68.04
## 751     18 years old or older   Male              12th grade   1.78  77.11
## 752              17 years old Female              12th grade   1.60  58.97
## 753     18 years old or older   Male              12th grade   1.78  62.14
## 754              17 years old Female              12th grade   1.63  70.76
## 755     18 years old or older   Male              12th grade   1.88  81.65
## 756              17 years old   Male              12th grade   1.65  72.58
## 757              17 years old Female              12th grade     NA     NA
## 758     18 years old or older   Male              12th grade   1.73  92.99
## 759     18 years old or older   Male              12th grade   1.85  97.52
## 760     18 years old or older Female              12th grade   1.65  68.04
## 761     18 years old or older   Male              12th grade   1.88  83.92
## 762              16 years old Female              12th grade   1.57  49.44
## 763              17 years old   Male              12th grade   1.80  88.45
## 764              17 years old   Male              12th grade   1.73  77.11
## 765              17 years old   Male              12th grade   1.88  75.75
## 766     18 years old or older Female              12th grade   1.63  63.50
## 767              17 years old Female              12th grade   1.63  74.84
## 768     18 years old or older   Male              12th grade   1.85  86.18
## 769     18 years old or older   Male              12th grade   1.80  97.52
## 770     18 years old or older   Male              12th grade   1.83  85.28
## 771              17 years old   Male              12th grade   1.83 115.67
## 772              17 years old Female              12th grade   1.63  63.50
## 773              17 years old Female              12th grade   1.65  58.97
## 774              17 years old Female              12th grade   1.60  48.54
## 775              17 years old   Male              12th grade   1.60  65.77
## 776     18 years old or older   Male              12th grade   1.75  62.60
## 777              17 years old Female              12th grade   1.68  61.24
## 778              17 years old Female              12th grade   1.55  69.85
## 779              17 years old   Male              12th grade   1.83  88.45
## 780              17 years old Female              12th grade   1.70  63.50
## 781              15 years old Female               9th grade     NA     NA
## 782     18 years old or older Female              12th grade     NA     NA
## 783              17 years old Female                    <NA>     NA     NA
## 784     18 years old or older Female              12th grade     NA     NA
## 785              14 years old   Male               9th grade     NA     NA
## 786              15 years old Female               9th grade     NA     NA
## 787              16 years old Female                    <NA>     NA     NA
## 788              17 years old Female              12th grade     NA     NA
## 789     18 years old or older Female              12th grade     NA     NA
## 790              16 years old   Male                    <NA>     NA     NA
## 791              16 years old   Male                    <NA>     NA     NA
## 792     18 years old or older Female              12th grade     NA     NA
## 793              16 years old Female                    <NA>     NA     NA
## 794              15 years old Female               9th grade     NA     NA
## 795              15 years old Female               9th grade     NA     NA
## 796              17 years old   Male                    <NA>     NA     NA
## 797              16 years old Female                    <NA>     NA     NA
## 798              16 years old   Male                    <NA>     NA     NA
## 799              16 years old   Male                    <NA>     NA     NA
## 800              16 years old Female                    <NA>     NA     NA
## 801              17 years old   Male              12th grade     NA     NA
## 802     18 years old or older Female              12th grade     NA     NA
## 803              15 years old Female               9th grade     NA     NA
## 804              15 years old Female               9th grade     NA     NA
## 805              17 years old Female                    <NA>     NA     NA
## 806              17 years old Female              12th grade     NA     NA
## 807     18 years old or older Female              12th grade     NA     NA
## 808              17 years old Female              12th grade     NA     NA
## 809              15 years old   <NA>               9th grade     NA     NA
## 810              17 years old Female              12th grade   1.60  58.97
## 811              17 years old   Male              12th grade   1.78  92.99
## 812              17 years old Female              12th grade   1.57  66.68
## 813              17 years old   Male              12th grade   1.73  62.60
## 814     18 years old or older   Male              12th grade   1.80 111.13
## 815              17 years old Female              12th grade   1.63  57.61
## 816              15 years old   Male               9th grade   1.83  61.69
## 817              15 years old   Male               9th grade   1.78 103.87
## 818              16 years old   Male              11th grade   1.70  53.52
## 819              17 years old Female              11th grade   1.68  92.99
## 820              17 years old   Male              12th grade   1.83  83.92
## 821              14 years old Female               9th grade   1.70  52.16
## 822              14 years old   Male               9th grade   1.73  65.77
## 823              16 years old Female              11th grade   1.57  56.70
## 824              17 years old   Male              12th grade   1.70  65.32
## 825              14 years old Female               9th grade   1.65  57.15
## 826              16 years old Female              11th grade   1.65  63.50
## 827              15 years old   Male               9th grade   1.80  77.11
## 828              17 years old Female              11th grade   1.55  53.07
## 829              17 years old   Male              11th grade   1.80  90.72
## 830     18 years old or older Female              12th grade   1.73  56.70
## 831              16 years old Female              11th grade   1.57  49.90
## 832              17 years old   Male              12th grade   1.83  68.04
## 833              15 years old   Male               9th grade   1.88  68.04
## 834              17 years old   Male              11th grade     NA     NA
## 835              15 years old Female               9th grade   1.55  54.43
## 836              15 years old   Male               9th grade   1.75  79.38
## 837              17 years old Female              11th grade   1.57  48.54
## 838              15 years old   Male               9th grade   1.65  74.84
## 839              16 years old   Male              11th grade     NA     NA
## 840              15 years old   Male               9th grade   1.73  63.05
## 841              15 years old   Male               9th grade   1.57  49.90
## 842              16 years old Female              11th grade     NA     NA
## 843     18 years old or older   Male              12th grade   1.78  68.04
## 844              16 years old   Male              11th grade   1.78  90.72
## 845              15 years old   Male               9th grade   1.65  60.78
## 846              16 years old Female              11th grade   1.65  56.70
## 847              17 years old   Male              12th grade   1.85  73.94
## 848     18 years old or older   Male              12th grade   1.73  70.31
## 849              14 years old Female               9th grade     NA     NA
## 850              17 years old Female              12th grade   1.68  70.31
## 851              15 years old Female              10th grade   1.70  52.16
## 852              14 years old   Male               9th grade   1.78  54.43
## 853              16 years old   Male              11th grade   1.83  68.04
## 854              15 years old Female               9th grade   1.57  44.00
## 855              17 years old   Male              11th grade   1.85  77.11
## 856              17 years old   Male              12th grade   1.73  74.84
## 857              15 years old Female              10th grade   1.32  58.51
## 858              15 years old Female               9th grade   1.70  58.97
## 859              16 years old   Male              11th grade   1.78  65.77
## 860              17 years old   Male              12th grade   1.55  78.02
## 861              15 years old Female               9th grade   1.73  90.27
## 862              17 years old Female              11th grade   1.78 116.12
## 863     18 years old or older   Male              12th grade   1.65  76.20
## 864              14 years old   Male               9th grade   1.78  54.43
## 865     18 years old or older Female              12th grade   1.65  58.97
## 866              15 years old Female              10th grade   1.52  53.98
## 867              14 years old Female               9th grade   1.60  47.63
## 868              17 years old   Male              11th grade   1.80  58.97
## 869              17 years old   Male              12th grade   1.65  68.04
## 870              16 years old Female              10th grade   1.55  48.08
## 871              14 years old Female               9th grade   1.68  49.90
## 872              16 years old Female              11th grade   1.73  61.24
## 873     18 years old or older Female              12th grade     NA     NA
## 874              16 years old Female              10th grade   1.70  52.16
## 875              14 years old   Male               9th grade     NA     NA
## 876              16 years old   Male              11th grade   1.73  54.43
## 877              17 years old   Male              12th grade   1.88  72.58
## 878              16 years old   Male              10th grade   1.68  68.04
## 879              14 years old   Male               9th grade   1.70  79.38
## 880              16 years old   Male              11th grade   1.68  60.78
## 881              14 years old Female               9th grade     NA     NA
## 882              17 years old   Male              11th grade   1.78  94.80
## 883              17 years old   Male              12th grade   1.73  77.11
## 884              15 years old   Male              10th grade   1.73  89.81
## 885              15 years old   Male               9th grade   1.83  99.79
## 886              16 years old   Male              11th grade     NA     NA
## 887              17 years old Female              12th grade   1.70 108.86
## 888              16 years old   Male              10th grade   1.75  63.50
## 889              14 years old   Male               9th grade   1.70  68.04
## 890              17 years old Female              12th grade   1.55  51.26
## 891              14 years old   Male               9th grade   1.70  56.70
## 892              17 years old   Male              11th grade     NA     NA
## 893              17 years old Female              12th grade   1.63  63.50
## 894              15 years old Female              10th grade     NA     NA
## 895              14 years old   Male               9th grade   1.50  39.01
## 896              16 years old Female              11th grade     NA     NA
## 897              17 years old   Male              12th grade   1.68  60.78
## 898              15 years old   Male              10th grade   1.55  61.69
## 899              14 years old   <NA>               9th grade     NA     NA
## 900              16 years old Female              11th grade   1.57  63.50
## 901              17 years old   Male              12th grade   1.60  49.90
## 902              15 years old Female              10th grade   1.70  68.04
## 903              14 years old Female               9th grade   1.52  43.09
## 904              16 years old Female              11th grade   1.60  70.31
## 905     18 years old or older   Male              12th grade   1.78  79.38
## 906              15 years old Female              10th grade     NA     NA
## 907              14 years old   Male               9th grade   1.70  63.50
## 908     18 years old or older   Male              12th grade   1.90  83.92
## 909              15 years old   Male              10th grade   1.68  54.43
## 910              14 years old   Male               9th grade   1.75  55.34
## 911              14 years old Female               9th grade   1.60  56.70
## 912     18 years old or older Female              12th grade   1.65  81.65
## 913              16 years old Female              10th grade   1.50  48.08
## 914              15 years old Female               9th grade   1.63  64.86
## 915              16 years old   Male              10th grade   1.68 141.52
## 916              15 years old Female               9th grade   1.70  54.43
## 917              17 years old   Male              12th grade   1.83  69.85
## 918              16 years old Female              10th grade   1.60  68.04
## 919              14 years old   Male               9th grade   1.75  72.58
## 920              17 years old   Male              12th grade     NA     NA
## 921              15 years old   Male              10th grade   1.65  55.79
## 922              14 years old   Male               9th grade   1.80  80.74
## 923              14 years old   Male               9th grade   1.65  58.97
## 924     18 years old or older   Male              12th grade   1.75  76.66
## 925              15 years old   Male              10th grade   1.80 104.33
## 926              15 years old   Male               9th grade   1.65  57.15
## 927     18 years old or older Female              12th grade   1.50  66.23
## 928              16 years old   Male              10th grade     NA     NA
## 929              14 years old   Male               9th grade   1.78  85.28
## 930              16 years old   Male              11th grade   1.68  77.57
## 931              17 years old Female              12th grade     NA     NA
## 932              15 years old Female              10th grade   1.65 113.40
## 933              17 years old Female              12th grade   1.78  61.24
## 934              14 years old Female               9th grade   1.70  68.04
## 935              15 years old Female              10th grade     NA     NA
## 936              16 years old   Male              11th grade   1.75 102.06
## 937                      <NA>   Male              11th grade     NA     NA
## 938              17 years old   Male              12th grade   1.78  58.97
## 939     18 years old or older   Male              12th grade   1.65  81.65
## 940              16 years old   Male              11th grade   1.73 136.08
## 941              16 years old Female              11th grade   1.52  47.17
## 942              16 years old Female              11th grade   1.55  52.16
## 943              17 years old   Male              12th grade   1.75  84.37
## 944     18 years old or older   Male              12th grade   1.73  49.90
## 945              16 years old   Male              11th grade   1.70  65.77
## 946              17 years old   Male              12th grade     NA     NA
## 947              17 years old Female              12th grade   1.57  46.27
## 948              17 years old   Male              12th grade   1.78  79.38
## 949              16 years old   Male              11th grade   1.73  58.97
## 950              17 years old Female              12th grade   1.65  83.92
## 951     18 years old or older Female              12th grade     NA     NA
## 952              17 years old Female              11th grade   1.55  55.79
## 953              17 years old Female              12th grade   1.52  44.91
## 954              16 years old   Male              11th grade   1.80  54.43
## 955              16 years old   Male              11th grade   1.78  77.11
## 956              16 years old Female              11th grade   1.65  71.22
## 957              16 years old   Male              11th grade   1.65  49.90
## 958              16 years old   Male              11th grade   1.78  83.92
## 959              16 years old   Male              11th grade   1.73  74.84
## 960              17 years old   Male              12th grade   1.68  83.01
## 961     18 years old or older Female              12th grade   1.57  54.43
## 962              17 years old Female              11th grade   1.60  58.97
## 963              17 years old Female              12th grade   1.57  58.97
## 964              16 years old   Male              11th grade   1.80  81.65
## 965              16 years old Female              11th grade   1.60  55.79
## 966              17 years old   Male              12th grade   1.73  68.04
## 967     18 years old or older Female              12th grade   1.52  45.36
## 968              17 years old   Male              12th grade   1.73 111.13
## 969     18 years old or older   Male              12th grade   1.68  90.72
## 970              16 years old   Male              11th grade   1.75  59.42
## 971              17 years old   Male              11th grade   1.78  52.16
## 972              16 years old   Male              11th grade   1.78  76.66
## 973              17 years old Female              12th grade     NA     NA
## 974              16 years old Female              11th grade     NA     NA
## 975              17 years old Female              12th grade   1.73  63.50
## 976              17 years old Female              12th grade   1.55 100.70
## 977     18 years old or older   Male              12th grade   1.70  62.60
## 978              15 years old   Male               9th grade   1.73  70.31
## 979              16 years old Female              10th grade   1.55  56.70
## 980              16 years old Female              11th grade   1.70  90.72
## 981              17 years old Female              12th grade   1.57  45.36
## 982              15 years old   Male               9th grade   1.68  58.97
## 983              15 years old Female              10th grade   1.50  43.09
## 984              16 years old   Male              11th grade   1.78  81.65
## 985              17 years old   Male              12th grade   1.80  61.24
## 986              14 years old   Male               9th grade   1.80  78.02
## 987              16 years old   Male              10th grade   1.80  63.50
## 988              16 years old   Male              11th grade   1.70  84.82
## 989              17 years old Female              12th grade   1.60  56.70
## 990              14 years old   Male               9th grade   1.78  56.70
## 991              15 years old   Male              10th grade   1.83 122.47
## 992              16 years old Female              11th grade   1.75  56.70
## 993     18 years old or older   Male              12th grade   1.88  84.82
## 994              15 years old Female               9th grade   1.65  54.43
## 995              17 years old Female              11th grade   1.57  63.50
## 996              17 years old Female              12th grade     NA     NA
## 997              14 years old   Male               9th grade   1.65  65.77
## 998              15 years old Female              10th grade   1.63  90.72
## 999              16 years old Female              11th grade     NA     NA
## 1000             17 years old Female              12th grade   1.52  63.50
## 1001             15 years old   Male               9th grade     NA     NA
## 1002             15 years old Female              10th grade   1.63  69.40
## 1003             17 years old   Male              11th grade   1.68  54.43
## 1004             17 years old Female              12th grade     NA     NA
## 1005             14 years old Female               9th grade   1.70  65.77
## 1006             15 years old   Male              10th grade   1.70  71.67
## 1007             16 years old   Male              11th grade   1.73 103.87
## 1008             17 years old Female              12th grade   1.47  55.34
## 1009             14 years old Female               9th grade   1.57  77.11
## 1010             15 years old   Male              10th grade   1.83 104.33
## 1011             16 years old Female              11th grade     NA     NA
## 1012             17 years old Female              12th grade   1.55  47.63
## 1013             14 years old Female               9th grade   1.57  87.09
## 1014             16 years old Female              10th grade   1.50  49.90
## 1015             17 years old   Male              11th grade     NA     NA
## 1016             17 years old Female              12th grade     NA     NA
## 1017             14 years old   Male               9th grade   1.68  98.88
## 1018             16 years old Female              10th grade   1.63  61.24
## 1019             16 years old Female              11th grade   1.52  61.24
## 1020             17 years old   Male              12th grade   1.73  72.58
## 1021             14 years old   Male               9th grade   1.60  70.31
## 1022             15 years old Female              10th grade   1.65  58.97
## 1023             16 years old Female              11th grade   1.68  90.72
## 1024             17 years old Female              12th grade   1.65  58.97
## 1025             14 years old Female               9th grade     NA     NA
## 1026             16 years old   Male              11th grade   1.68  52.16
## 1027             17 years old   Male              12th grade   1.70  54.43
## 1028             15 years old   Male               9th grade   1.73  79.38
## 1029             15 years old   Male              10th grade   1.83  68.04
## 1030             16 years old Female              11th grade     NA     NA
## 1031             16 years old   Male              11th grade   1.73 113.40
## 1032    18 years old or older Female              12th grade   1.57  48.99
## 1033             15 years old   Male              10th grade   1.68  58.97
## 1034             16 years old Female              11th grade   1.60  56.70
## 1035             17 years old   Male              12th grade   1.83  72.58
## 1036             14 years old   Male               9th grade   1.70  72.58
## 1037             15 years old Female              10th grade   1.57  54.43
## 1038             16 years old Female              11th grade   1.55  79.38
## 1039             17 years old   Male              12th grade   1.65  81.65
## 1040             14 years old   Male               9th grade   1.73  95.26
## 1041             15 years old Female              10th grade   1.57  52.16
## 1042             16 years old Female              11th grade   1.60  59.88
## 1043             17 years old   Male              12th grade   1.80  73.48
## 1044             15 years old   Male               9th grade   1.83  96.16
## 1045             15 years old Female              10th grade     NA     NA
## 1046             16 years old Female              11th grade     NA     NA
## 1047             17 years old   Male              12th grade   1.68  54.43
## 1048             15 years old Female              10th grade     NA     NA
## 1049             15 years old   Male              10th grade   1.80  84.82
## 1050             16 years old   Male              11th grade   1.73  62.14
## 1051             14 years old Female               9th grade   1.65  49.90
## 1052             16 years old   Male              10th grade   1.75  81.65
## 1053             16 years old Female              11th grade   1.60  68.04
## 1054             15 years old Female               9th grade   1.60  56.70
## 1055             15 years old Female              10th grade     NA     NA
## 1056             16 years old Female              11th grade     NA     NA
## 1057             17 years old   Male              12th grade   1.78  74.84
## 1058             14 years old   Male               9th grade   1.60  46.27
## 1059             15 years old Female              10th grade   1.50  44.45
## 1060             16 years old Female              11th grade   1.63  58.51
## 1061             17 years old Female              12th grade   1.55  37.20
## 1062             14 years old   Male               9th grade     NA     NA
## 1063             15 years old   Male              10th grade   1.83  71.67
## 1064             16 years old Female              11th grade   1.60  56.25
## 1065             17 years old   Male              12th grade   1.75 136.08
## 1066             15 years old   Male               9th grade   1.73  75.75
## 1067             16 years old   Male              10th grade   1.65  58.97
## 1068             16 years old   Male              11th grade   1.68 108.86
## 1069             17 years old   Male              12th grade   1.83 136.08
## 1070             15 years old Female               9th grade     NA     NA
## 1071             16 years old Female              11th grade   1.68  61.24
## 1072             17 years old   Male              12th grade   1.78  62.60
## 1073             15 years old Female               9th grade   1.60  56.70
## 1074             15 years old   Male              10th grade   1.78  68.04
## 1075             16 years old Female              11th grade     NA     NA
## 1076    18 years old or older Female              12th grade   1.52  44.45
## 1077             15 years old   Male              10th grade   1.80  81.65
## 1078             17 years old Female              11th grade   1.50  80.29
## 1079    18 years old or older Female              12th grade   1.57  52.16
## 1080             14 years old Female               9th grade   1.65  72.58
## 1081             16 years old   Male              11th grade   1.80 102.06
## 1082             17 years old   Male              12th grade   1.70  65.77
## 1083             14 years old   Male               9th grade   1.73  88.45
## 1084             15 years old Female              10th grade   1.52  51.71
## 1085             16 years old Female              11th grade   1.50  72.58
## 1086    18 years old or older   Male              12th grade   1.63  49.90
## 1087             15 years old Female              10th grade   1.50  45.36
## 1088             15 years old Female               9th grade   1.68  67.59
## 1089             14 years old Female               9th grade     NA     NA
## 1090             14 years old Female               9th grade     NA     NA
## 1091             17 years old   Male              12th grade     NA     NA
## 1092             17 years old   Male              12th grade     NA     NA
## 1093    18 years old or older Female              12th grade     NA     NA
## 1094    18 years old or older Female              12th grade   1.68  72.58
## 1095             14 years old   Male               9th grade   1.73  61.24
## 1096             17 years old Female              11th grade   1.57  56.70
## 1097             15 years old Female              10th grade   1.63  62.60
## 1098             14 years old Female               9th grade   1.57  58.51
## 1099             14 years old   Male               9th grade   1.73  55.79
## 1100             15 years old Female              10th grade   1.63  54.89
## 1101             17 years old   Male              12th grade   1.78  95.26
## 1102             17 years old Female              12th grade   1.73  51.26
## 1103             14 years old Female               9th grade   1.52  63.50
## 1104             16 years old   Male              11th grade   1.63  65.32
## 1105             15 years old Female              10th grade   1.60  51.26
## 1106             15 years old Female               9th grade   1.63  44.45
## 1107             15 years old   Male               9th grade   1.90 106.60
## 1108             15 years old   Male              10th grade   1.78  58.97
## 1109             17 years old   Male              12th grade   1.75  92.99
## 1110             17 years old Female              12th grade   1.63  56.70
## 1111             14 years old   Male               9th grade   1.80  62.60
## 1112             16 years old   Male              11th grade   1.78  85.73
## 1113             15 years old   Male              10th grade   1.68  45.36
## 1114             15 years old   Male               9th grade   1.80  95.26
## 1115             15 years old Female               9th grade   1.55  48.99
## 1116             16 years old   Male              10th grade   1.78  58.97
## 1117             17 years old Female              12th grade     NA     NA
## 1118    18 years old or older   Male              12th grade   1.78  61.24
## 1119             13 years old   Male               9th grade   1.68  79.38
## 1120             16 years old Female              11th grade   1.52  81.65
## 1121             15 years old   Male              10th grade   1.73 127.01
## 1122             15 years old Female               9th grade     NA     NA
## 1123             15 years old   Male               9th grade   1.68  52.16
## 1124             16 years old Female              10th grade   1.57  58.97
## 1125             17 years old Female              12th grade   1.63  54.43
## 1126             17 years old Female              12th grade   1.68  63.50
## 1127             14 years old   Male               9th grade   1.78 108.86
## 1128             16 years old   Male              10th grade   1.80  69.40
## 1129             15 years old Female               9th grade   1.73 106.60
## 1130             16 years old   Male              10th grade   1.70  54.43
## 1131             17 years old Female              12th grade   1.80  56.70
## 1132             17 years old Female              12th grade   1.68  49.90
## 1133             15 years old Female               9th grade     NA     NA
## 1134             16 years old Female              10th grade   1.68  47.63
## 1135             14 years old Female               9th grade   1.60  75.75
## 1136             15 years old   Male               9th grade   1.83  72.58
## 1137             15 years old   Male              10th grade   1.73  63.50
## 1138             17 years old   Male              12th grade   1.68  79.38
## 1139             17 years old Female              12th grade   1.70  61.24
## 1140             15 years old   Male               9th grade   1.88  63.50
## 1141             16 years old Female              11th grade   1.63  54.43
## 1142             16 years old   Male              10th grade   1.78  65.32
## 1143             14 years old   Male               9th grade   1.68  63.50
## 1144             15 years old Female               9th grade   1.55  43.09
## 1145             16 years old Female              10th grade   1.68  72.58
## 1146             17 years old Female              12th grade   1.57  89.81
## 1147             17 years old   Male              12th grade   1.80  81.19
## 1148             15 years old   Male               9th grade   1.60  81.65
## 1149             16 years old Female              11th grade   1.65  78.02
## 1150             16 years old   Male              10th grade   1.85  87.54
## 1151             14 years old Female               9th grade     NA     NA
## 1152             15 years old Female               9th grade     NA     NA
## 1153             15 years old Female              10th grade   1.60  49.44
## 1154             17 years old   Male              12th grade   1.88  67.13
## 1155             17 years old   Male              12th grade   1.85  65.77
## 1156             15 years old   Male               9th grade   1.70  72.58
## 1157             16 years old   Male              11th grade   1.83  63.50
## 1158             15 years old Female              10th grade     NA     NA
## 1159             15 years old   Male              10th grade   1.68  58.97
## 1160             17 years old Female              12th grade   1.55  38.56
## 1161             14 years old Female               9th grade   1.60  63.50
## 1162             17 years old Female              11th grade   1.65 102.06
## 1163             15 years old   Male              10th grade   1.63  81.65
## 1164             15 years old   Male              10th grade   1.73  66.23
## 1165             17 years old   Male              12th grade   1.80  61.24
## 1166    18 years old or older Female              12th grade   1.68  54.43
## 1167             17 years old   Male              12th grade   1.78  74.84
## 1168             15 years old   Male              10th grade   1.73  97.07
## 1169    18 years old or older   Male              12th grade   1.78  74.84
## 1170             17 years old Female              12th grade     NA     NA
## 1171             15 years old   Male               9th grade   1.85  70.76
## 1172             17 years old Female              12th grade   1.57  49.90
## 1173             15 years old Female              10th grade   1.57  74.84
## 1174             14 years old   Male               9th grade   1.75 108.86
## 1175             15 years old   Male               9th grade   1.83  74.84
## 1176             15 years old Female              10th grade   1.68  58.06
## 1177             17 years old Female              12th grade   1.70  52.16
## 1178    18 years old or older Female              12th grade   1.65  52.16
## 1179             15 years old   Male               9th grade   1.80  65.77
## 1180             16 years old Female              11th grade   1.63  66.68
## 1181             15 years old   Male              10th grade   1.75  61.24
## 1182             14 years old   Male               9th grade   1.70  66.23
## 1183             15 years old Female               9th grade   1.65  58.97
## 1184             15 years old Female              10th grade     NA     NA
## 1185             17 years old   Male              12th grade   1.73  63.50
## 1186             17 years old   Male              12th grade   1.70  54.43
## 1187             14 years old   Male               9th grade     NA     NA
## 1188             17 years old Female              11th grade   1.68  61.24
## 1189                     <NA> Female              10th grade     NA     NA
## 1190             15 years old   Male               9th grade   1.70  52.16
## 1191             14 years old   Male               9th grade   1.70  66.23
## 1192             16 years old   Male              10th grade   1.65  49.90
## 1193             17 years old   Male              12th grade   1.80  74.84
## 1194             16 years old Female              12th grade   1.73  61.24
## 1195             16 years old   Male               9th grade     NA     NA
## 1196             16 years old Female              11th grade   1.65  63.50
## 1197             15 years old   Male              11th grade   1.68  64.41
## 1198             14 years old   Male               9th grade   1.78  72.58
## 1199             16 years old Female              12th grade   1.57  52.62
## 1200             17 years old Female              12th grade   1.52  40.82
## 1201             15 years old Female               9th grade   1.55  53.52
## 1202             17 years old   Male              11th grade   1.73  64.41
## 1203             15 years old   Male              10th grade   1.83  64.41
## 1204             15 years old Female               9th grade     NA     NA
## 1205             14 years old   Male               9th grade   1.88  63.50
## 1206             16 years old   Male              10th grade   1.73  68.04
## 1207             17 years old   Male              12th grade   1.93  72.58
## 1208             17 years old Female              12th grade   1.60  49.90
## 1209             16 years old   Male               9th grade   1.75 102.06
## 1210             16 years old Female              11th grade   1.65  52.16
## 1211  12 years old or younger Female Ungraded or other grade   1.42  97.52
## 1212             15 years old   Male               9th grade   1.80  76.66
## 1213             15 years old Female               9th grade   1.78  70.31
## 1214             15 years old   Male              10th grade   1.63  52.16
## 1215             17 years old Female              12th grade   1.73  52.16
## 1216             17 years old Female              12th grade   1.57  77.11
## 1217             15 years old Female               9th grade   1.60  40.82
## 1218             16 years old   Male              11th grade   1.88  70.31
## 1219             15 years old   <NA>              10th grade     NA     NA
## 1220             15 years old Female               9th grade   1.57  40.37
## 1221             14 years old   Male               9th grade   1.75  63.96
## 1222             16 years old   Male              10th grade   1.73  68.04
## 1223             17 years old   Male              12th grade   1.65  63.50
## 1224             17 years old   Male              12th grade   1.57  51.71
## 1225             14 years old Female               9th grade   1.68  54.43
## 1226             16 years old   Male              10th grade   1.65  49.90
## 1227             15 years old   Male               9th grade   1.73  61.24
## 1228             15 years old Female               9th grade   1.63  52.16
## 1229             15 years old   Male              10th grade   1.63  45.81
## 1230             17 years old Female              12th grade   1.68  49.90
## 1231             17 years old Female              12th grade   1.55  54.89
## 1232             14 years old Female               9th grade   1.60  48.99
## 1233             16 years old Female              11th grade   1.60  52.16
## 1234             15 years old   Male              10th grade   1.88  71.67
## 1235             15 years old Female               9th grade     NA     NA
## 1236             14 years old   Male               9th grade   1.68  56.70
## 1237             15 years old Female              10th grade   1.55  51.71
## 1238             17 years old Female              12th grade   1.73  58.06
## 1239    18 years old or older   Male              12th grade   1.75  52.16
## 1240             14 years old   Male               9th grade   1.70  94.35
## 1241             17 years old   Male              11th grade   1.70  72.58
## 1242             15 years old   Male              10th grade   1.85  74.84
## 1243             15 years old Female               9th grade   1.57  54.43
## 1244             14 years old   Male               9th grade   1.63  43.09
## 1245             15 years old   Male              10th grade   1.70  70.31
## 1246    18 years old or older Female              12th grade   1.60  49.90
## 1247             17 years old Female              12th grade   1.70  67.59
## 1248             15 years old Female                    <NA>     NA     NA
## 1249             16 years old Female              11th grade   1.73  49.90
## 1250             16 years old   Male              10th grade   1.83  72.58
## 1251             14 years old Female               9th grade   1.65  54.43
## 1252             17 years old Female              12th grade   1.57  47.63
## 1253             17 years old   Male              12th grade   1.80  74.84
## 1254             14 years old Female               9th grade   1.68  65.77
## 1255             16 years old Female              11th grade   1.65  45.36
## 1256             15 years old Female              10th grade   1.73  54.43
## 1257             15 years old Female               9th grade   1.50  95.26
## 1258             15 years old   Male              10th grade   1.88  94.80
## 1259             15 years old   Male               9th grade   1.73  54.89
## 1260             15 years old Female               9th grade   1.52  63.50
## 1261             17 years old   Male              12th grade   1.70  62.60
## 1262    18 years old or older Female              12th grade   1.65  53.07
## 1263             15 years old Female               9th grade   1.57  47.63
## 1264             15 years old   Male               9th grade   1.73  60.78
## 1265             14 years old   Male               9th grade   1.85 108.86
## 1266             15 years old   Male               9th grade   1.78  83.92
## 1267             14 years old Female               9th grade   1.60  71.67
## 1268             15 years old Female                    <NA>     NA     NA
## 1269             14 years old Female               9th grade   1.50  45.81
## 1270             14 years old   Male               9th grade   1.80  77.57
## 1271             14 years old Female               9th grade   1.63  52.16
## 1272             17 years old Female              12th grade   1.63  90.72
## 1273             17 years old   Male              11th grade   1.80 108.86
## 1274             14 years old   Male               9th grade   1.60  36.29
## 1275             17 years old Female              12th grade   1.65  51.26
## 1276             17 years old   Male              11th grade   1.75  67.13
## 1277             14 years old Female               9th grade   1.57  52.16
## 1278             17 years old   Male              12th grade   1.85  61.69
## 1279             16 years old Female              11th grade   1.52  52.16
## 1280             15 years old   Male               9th grade   1.68  57.15
## 1281             17 years old Female              12th grade   1.70  56.70
## 1282             16 years old   Male              11th grade     NA     NA
## 1283             14 years old Female               9th grade   1.60  58.97
## 1284             17 years old   Male              12th grade     NA     NA
## 1285             17 years old Female              11th grade     NA     NA
## 1286             14 years old Female               9th grade   1.55  61.69
## 1287             17 years old Female              12th grade   1.63  62.60
## 1288             16 years old Female              11th grade     NA     NA
## 1289             15 years old   Male               9th grade   1.78  79.38
## 1290             17 years old   Male              12th grade   1.83  70.31
## 1291             16 years old Female              11th grade   1.57  55.34
## 1292             15 years old   Male               9th grade   1.75  61.24
## 1293             15 years old   Male               9th grade   1.78  86.18
## 1294             13 years old   Male               9th grade   1.83  88.45
## 1295             17 years old   Male              12th grade   1.65  52.16
## 1296             16 years old Female              11th grade   1.57  46.27
## 1297             15 years old   Male               9th grade   1.68  54.43
## 1298             14 years old Female               9th grade     NA     NA
## 1299             15 years old Female               9th grade   1.70  45.81
## 1300             14 years old Female               9th grade   1.73  77.11
## 1301             14 years old   Male               9th grade   1.65  94.35
## 1302    18 years old or older   Male              12th grade   1.75  64.41
## 1303             14 years old   Male               9th grade   1.70  58.97
## 1304    18 years old or older   Male              12th grade   1.78 132.45
## 1305             16 years old Female              11th grade   1.65  58.06
## 1306             14 years old   Male               9th grade   1.83  56.70
## 1307             17 years old Female              12th grade   1.65  63.50
## 1308             16 years old   Male              11th grade   1.68  58.97
## 1309             14 years old   Male               9th grade   1.60  75.30
## 1310    18 years old or older Female              12th grade   1.63  53.52
## 1311             16 years old Female              11th grade   1.50  46.27
## 1312             14 years old Female               9th grade   1.55  41.73
## 1313             17 years old Female              12th grade   1.60  77.11
## 1314             16 years old Female              11th grade   1.75  83.46
## 1315             14 years old Female               9th grade   1.55  43.09
## 1316             17 years old Female              12th grade   1.57  44.00
## 1317             17 years old   Male              11th grade     NA     NA
## 1318             15 years old   Male               9th grade   1.80  85.73
## 1319             17 years old   Male              12th grade   1.73  72.58
## 1320             16 years old Female              11th grade     NA     NA
## 1321             15 years old Female               9th grade   1.50  40.82
## 1322             16 years old   Male              10th grade   1.78  83.92
## 1323             17 years old   Male              11th grade   1.65  77.11
## 1324             17 years old   Male              12th grade   1.75  90.72
## 1325             16 years old   Male              11th grade   1.83  62.14
## 1326             14 years old Female               9th grade   1.50  45.36
## 1327             16 years old Female              10th grade   1.63  58.97
## 1328             16 years old Female              10th grade   1.65  68.04
## 1329             16 years old Female              11th grade   1.68  57.61
## 1330    18 years old or older Female              12th grade   1.55  43.09
## 1331             17 years old Female              11th grade     NA     NA
## 1332             15 years old   Male               9th grade     NA     NA
## 1333             16 years old   Male              10th grade   1.65  65.77
## 1334             15 years old Female              10th grade   1.50  47.63
## 1335             16 years old   Male              11th grade   1.73  64.86
## 1336    18 years old or older Female              12th grade   1.52  41.28
## 1337             17 years old Female              11th grade   1.65  44.00
## 1338             15 years old   Male               9th grade   1.75  52.16
## 1339             15 years old   Male              10th grade   1.73  61.24
## 1340             16 years old   Male              10th grade   1.85  66.23
## 1341             17 years old   Male              12th grade   1.83  63.96
## 1342             17 years old Female              11th grade   1.50  52.16
## 1343             17 years old Female              12th grade   1.57  64.41
## 1344             16 years old   Male              11th grade   1.83  64.86
## 1345             15 years old   Male               9th grade   1.83  90.72
## 1346             16 years old   Male              10th grade   1.70  61.24
## 1347             16 years old Female              10th grade   1.52  58.06
## 1348             17 years old Female              12th grade   1.50  52.16
## 1349             17 years old Female              11th grade   1.42  43.09
## 1350             17 years old Female              12th grade   1.60  55.79
## 1351             16 years old   Male              11th grade   1.80  63.50
## 1352             14 years old   Male               9th grade   1.65  45.36
## 1353             15 years old   Male               9th grade   1.63  61.24
## 1354             15 years old Female              10th grade     NA     NA
## 1355    18 years old or older Female              12th grade   1.68  72.58
## 1356             17 years old   <NA>              11th grade     NA     NA
## 1357             17 years old   Male              12th grade   1.83  70.31
## 1358             17 years old Female              11th grade   1.60  54.43
## 1359             16 years old   Male               9th grade   1.90  81.65
## 1360             16 years old Female              10th grade   1.55  68.04
## 1361             15 years old Female              10th grade   1.60  49.90
## 1362             17 years old Female              12th grade   1.60  55.79
## 1363             17 years old Female              11th grade   1.42  43.09
## 1364             17 years old Female              12th grade   1.52  68.04
## 1365             17 years old   Male              11th grade   1.70  52.16
## 1366             14 years old   Male               9th grade   1.63  58.97
## 1367             15 years old Female               9th grade   1.52  44.45
## 1368             16 years old   Male              10th grade   1.85  80.29
## 1369             16 years old   Male              10th grade   1.70  79.38
## 1370    18 years old or older Female              12th grade   1.52  54.43
## 1371             16 years old   Male              11th grade   1.80  68.04
## 1372    18 years old or older Female              12th grade   1.60  56.70
## 1373             17 years old   Male              11th grade   1.75  74.84
## 1374             14 years old Female               9th grade   1.52  52.16
## 1375             16 years old Female              10th grade   1.60  55.79
## 1376             16 years old Female              11th grade   1.47  49.90
## 1377             16 years old   Male              11th grade   1.83  74.84
## 1378             15 years old   Male               9th grade   1.70  79.38
## 1379             15 years old Female               9th grade     NA     NA
## 1380             16 years old Female              10th grade   1.60  68.04
## 1381             15 years old Female              10th grade   1.70  63.50
## 1382             17 years old   Male              12th grade   1.88 102.06
## 1383             16 years old Female              11th grade   1.70  47.63
## 1384             17 years old Female              12th grade   1.57  47.63
## 1385             17 years old   Male              11th grade     NA     NA
## 1386             15 years old   Male               9th grade   1.78  99.79
## 1387             16 years old   Male              10th grade   1.68  74.84
## 1388    18 years old or older   Male              12th grade   1.60  63.50
## 1389             16 years old Female              11th grade   1.70  58.51
## 1390             17 years old   Male              12th grade   1.78  65.77
## 1391             17 years old   Male              11th grade   1.63  45.36
## 1392             15 years old Female               9th grade   1.65  54.89
## 1393             15 years old   Male               9th grade     NA     NA
## 1394             15 years old   Male              10th grade   1.70  61.24
## 1395             16 years old Female              10th grade   1.70  45.36
## 1396             16 years old Female              11th grade   1.68  54.43
## 1397             15 years old Female               9th grade   1.50  48.99
## 1398             15 years old Female               9th grade   1.60  66.23
## 1399             15 years old Female              10th grade   1.52  47.17
## 1400             16 years old Female              10th grade   1.57  54.43
## 1401             16 years old   Male              11th grade   1.75  61.24
## 1402    18 years old or older Female              12th grade   1.57  61.24
## 1403             16 years old   Male              11th grade   1.85  83.92
## 1404             15 years old   Male               9th grade   1.75  81.65
## 1405             15 years old Female               9th grade   1.50  38.56
## 1406             15 years old Female              10th grade   1.55  47.63
## 1407             16 years old   Male              10th grade   1.68  58.06
## 1408             17 years old Female              12th grade     NA     NA
## 1409             17 years old Female              11th grade   1.60  53.52
## 1410    18 years old or older   Male              12th grade   1.73  63.50
## 1411             16 years old Female              11th grade   1.68  52.16
## 1412             15 years old Female               9th grade   1.57  58.51
## 1413             14 years old Female               9th grade   1.57  56.70
## 1414             16 years old Female              10th grade   1.52  79.38
## 1415             15 years old   Male              10th grade   1.73  67.59
## 1416    18 years old or older   Male              12th grade   1.78  67.13
## 1417             16 years old Female              11th grade   1.57  61.24
## 1418             17 years old Female              12th grade   1.63  53.52
## 1419             16 years old   Male              11th grade   1.70  68.04
## 1420             14 years old   Male               9th grade   1.70  59.88
## 1421             15 years old   Male               9th grade   1.63  63.50
## 1422             16 years old Female              10th grade   1.60  47.63
## 1423             16 years old Female              10th grade   1.50  50.80
## 1424             16 years old   Male              11th grade   1.68  61.24
## 1425             16 years old   Male              11th grade     NA     NA
## 1426             15 years old Female              10th grade   1.65  63.50
## 1427             15 years old Female              10th grade   1.63  49.90
## 1428             16 years old Female              11th grade   1.60  52.62
## 1429             17 years old Female              12th grade   1.57  63.50
## 1430             17 years old Female              11th grade   1.52  56.70
## 1431             15 years old Female               9th grade   1.55  51.71
## 1432             15 years old Female               9th grade     NA     NA
## 1433             15 years old Female              10th grade   1.50  43.09
## 1434             16 years old Female              10th grade   1.65  70.31
## 1435    18 years old or older Female              12th grade   1.65  99.79
## 1436             16 years old   Male              11th grade   1.70  61.24
## 1437    18 years old or older   Male              12th grade   1.85  81.65
## 1438             17 years old Female              11th grade   1.70  63.50
## 1439             14 years old Female               9th grade   1.57  58.97
## 1440             15 years old   Male               9th grade   1.70  59.88
## 1441             16 years old   Male              10th grade   1.73  72.58
## 1442             15 years old Female              10th grade   1.60  63.50
## 1443             16 years old   Male              11th grade   1.75  77.11
## 1444    18 years old or older   Male              12th grade   1.52  43.55
## 1445             16 years old Female              11th grade   1.73  86.18
## 1446             15 years old Female               9th grade   1.55  43.09
## 1447             15 years old Female              10th grade   1.52  76.20
## 1448             16 years old Female              10th grade   1.60  57.15
## 1449    18 years old or older   Male              12th grade   1.83  81.65
## 1450             17 years old Female              11th grade     NA     NA
## 1451    18 years old or older Female              12th grade   1.55  56.70
## 1452             17 years old Female              11th grade   1.60  56.70
## 1453             14 years old   Male               9th grade   1.80  69.85
## 1454             16 years old   Male              10th grade   1.83  77.57
## 1455             16 years old   Male              10th grade   1.63  51.26
## 1456             17 years old   Male              11th grade   1.70  74.84
## 1457    18 years old or older   Male              12th grade   1.70  69.40
## 1458             16 years old   Male              11th grade   1.68  81.65
## 1459             14 years old Female               9th grade     NA     NA
## 1460             15 years old Female              10th grade   1.55  48.54
## 1461             16 years old Female              10th grade   1.57  53.52
## 1462             17 years old   Male              12th grade   1.75  90.72
## 1463             17 years old Female              11th grade   1.45  46.27
## 1464             17 years old Female              12th grade   1.52  68.04
## 1465             17 years old Female              11th grade   1.45  50.35
## 1466             15 years old Female               9th grade     NA     NA
## 1467             17 years old   Male              10th grade   1.78  72.58
## 1468    18 years old or older Female              12th grade   1.57  54.43
## 1469             16 years old   Male              11th grade   1.90  83.92
## 1470    18 years old or older Female              12th grade   1.60  58.51
## 1471             16 years old Female              11th grade   1.60  41.28
## 1472             16 years old Female               9th grade     NA     NA
## 1473             16 years old   Male               9th grade   1.68 122.47
## 1474             16 years old   Male              10th grade   1.70  52.16
## 1475             15 years old Female              10th grade   1.57  61.24
## 1476             17 years old Female              12th grade   1.73  83.92
## 1477             17 years old Female              11th grade   1.63  52.16
## 1478             16 years old   Male              10th grade   1.85  86.18
## 1479             14 years old Female               9th grade     NA     NA
## 1480             17 years old Female              12th grade   1.73  72.58
## 1481             17 years old Female              11th grade     NA     NA
## 1482    18 years old or older Female              12th grade   1.57  49.44
## 1483             17 years old Female              11th grade   1.60  56.70
## 1484             14 years old   Male               9th grade     NA     NA
## 1485             15 years old   Male               9th grade   1.78  95.71
## 1486             16 years old Female              10th grade   1.47  54.43
## 1487             16 years old   Male              10th grade   1.78  65.77
## 1488             17 years old   Male              12th grade   1.73  62.60
## 1489             17 years old Female              11th grade     NA     NA
## 1490             17 years old   Male              12th grade   1.80  90.72
## 1491             16 years old Female              11th grade     NA     NA
## 1492             15 years old Female               9th grade   1.60  58.51
## 1493             15 years old Female              10th grade   1.50  49.90
## 1494             16 years old Female              10th grade   1.55  52.62
## 1495             17 years old Female              12th grade   1.68  57.15
## 1496             17 years old   Male              11th grade     NA     NA
## 1497    18 years old or older   Male              12th grade   1.83  88.45
## 1498             16 years old Female              11th grade   1.73  58.51
## 1499             14 years old Female               9th grade   1.73  68.04
## 1500             16 years old Female              11th grade     NA     NA
## 1501             15 years old Female               9th grade   1.57  56.70
## 1502             17 years old Female              11th grade   1.65  54.43
## 1503             14 years old Female               9th grade     NA     NA
## 1504             16 years old   Male              11th grade   1.68  57.15
## 1505             14 years old Female               9th grade   1.47  47.63
## 1506             16 years old Female              11th grade   1.57  61.24
## 1507             15 years old   Male               9th grade   1.63  54.43
## 1508             15 years old   Male               9th grade   1.73  72.58
## 1509             15 years old Female               9th grade     NA     NA
## 1510             14 years old   Male               9th grade     NA     NA
## 1511             14 years old Female               9th grade   1.63  48.54
## 1512             15 years old Female               9th grade   1.68  56.70
## 1513             14 years old Female               9th grade   1.52  57.61
## 1514             15 years old Female               9th grade   1.50  44.45
## 1515             14 years old Female               9th grade   1.55  52.16
## 1516             14 years old Female               9th grade   1.68  72.58
## 1517             14 years old   Male               9th grade     NA     NA
## 1518             15 years old Female               9th grade   1.68  68.04
## 1519             15 years old   Male               9th grade   1.78  54.43
## 1520             14 years old Female               9th grade   1.57  47.63
## 1521             15 years old Female               9th grade   1.57  55.79
## 1522             15 years old Female               9th grade   1.60  51.26
## 1523             15 years old Female               9th grade   1.55  54.43
## 1524             15 years old Female               9th grade     NA     NA
## 1525             14 years old   Male               9th grade   1.75  68.04
## 1526             14 years old   Male               9th grade   1.83  56.25
## 1527             15 years old   Male               9th grade   1.80  68.95
## 1528             15 years old Female               9th grade   1.60  54.43
## 1529    18 years old or older Female              12th grade   1.60  63.50
## 1530             17 years old Female              12th grade   1.63  49.44
## 1531             17 years old   Male              11th grade   1.85 117.94
## 1532             16 years old Female              11th grade   1.75  47.17
## 1533             17 years old Female              11th grade   1.65  54.43
## 1534             16 years old   Male              11th grade   1.75  74.84
## 1535             16 years old   Male              11th grade   1.70  70.31
## 1536             17 years old Female              11th grade   1.68  60.33
## 1537    18 years old or older   Male              12th grade   1.70  73.94
## 1538             17 years old Female              12th grade   1.63  63.50
## 1539    18 years old or older Female              12th grade   1.52  72.58
## 1540    18 years old or older   Male              12th grade   1.83  90.72
## 1541    18 years old or older   Male              12th grade   1.83 111.13
## 1542             17 years old Female              12th grade   1.63  52.16
## 1543             17 years old Female              12th grade   1.60  36.29
## 1544             17 years old   Male              12th grade   1.80  68.04
## 1545    18 years old or older Female              12th grade   1.57  89.81
## 1546             17 years old   Male              12th grade     NA     NA
## 1547             16 years old Female              11th grade   1.60  44.00
## 1548             17 years old   Male              12th grade   1.70  63.50
## 1549    18 years old or older   Male              12th grade   1.68  61.24
## 1550             15 years old Female               9th grade   1.65  49.90
## 1551             15 years old Female               9th grade   1.73  49.90
## 1552             15 years old Female               9th grade   1.50  54.43
## 1553             17 years old Female              12th grade   1.60  86.18
## 1554    18 years old or older   Male              12th grade   1.78  71.22
## 1555    18 years old or older   Male              12th grade   1.80  97.52
## 1556    18 years old or older   Male              12th grade   1.85  68.04
## 1557             17 years old Female              12th grade   1.60  61.24
## 1558             17 years old Female              12th grade   1.57  58.97
## 1559    18 years old or older   Male              12th grade   1.80  63.50
## 1560             17 years old   Male              12th grade     NA     NA
## 1561    18 years old or older   Male              12th grade     NA     NA
## 1562             17 years old Female              12th grade   1.73  62.60
## 1563             17 years old Female              12th grade   1.55  54.43
## 1564    18 years old or older   Male              12th grade   1.83  77.11
## 1565    18 years old or older   Male              12th grade   1.78  58.97
## 1566             17 years old Female              12th grade   1.68  58.97
## 1567             17 years old Female              12th grade   1.60  49.90
## 1568             17 years old Female              12th grade   1.73  70.31
## 1569    18 years old or older   Male              12th grade   1.70  54.43
## 1570    18 years old or older   Male              12th grade   1.70  79.38
## 1571             17 years old   Male              12th grade   1.70  63.50
## 1572    18 years old or older Female              12th grade   1.68  58.97
## 1573    18 years old or older   Male              12th grade   1.83 108.86
## 1574             17 years old   Male              12th grade   1.73  74.84
## 1575    18 years old or older   Male              12th grade   1.75  90.72
## 1576             17 years old Female              12th grade   1.63  49.90
## 1577             16 years old   Male              11th grade   1.75  59.88
## 1578             16 years old   Male              11th grade   1.75  83.92
## 1579             14 years old Female               9th grade   1.57  52.16
## 1580             17 years old   Male              11th grade   1.78  91.63
## 1581             15 years old Female              10th grade     NA     NA
## 1582             16 years old   Male              11th grade   1.80 111.13
## 1583             15 years old   Male              10th grade   1.80  86.18
## 1584             16 years old Female              11th grade   1.68  63.50
## 1585             16 years old Female              10th grade   1.55  50.80
## 1586             17 years old   Male              11th grade   1.73  61.24
## 1587             16 years old   Male              10th grade   1.60  49.90
## 1588             17 years old   Male              10th grade   1.63  54.43
## 1589             15 years old   Male              10th grade   1.75  68.04
## 1590             14 years old Female               9th grade   1.57  58.97
## 1591             15 years old Female              10th grade   1.68  49.90
## 1592             17 years old Female              10th grade   1.60  72.12
## 1593             15 years old Female               9th grade   1.63  49.90
## 1594             15 years old Female               9th grade   1.63  68.04
## 1595             16 years old Female              10th grade   1.73  72.58
## 1596             14 years old Female               9th grade   1.60  58.06
## 1597             16 years old Female              10th grade   1.55  49.90
## 1598             15 years old   Male              10th grade   1.57  44.45
## 1599             15 years old Female               9th grade   1.70  44.45
## 1600             15 years old   Male              10th grade   1.78  88.45
## 1601    18 years old or older   Male              12th grade   1.75  72.58
## 1602             14 years old Female               9th grade   1.63  57.15
## 1603             16 years old   Male              10th grade   1.68  54.43
## 1604             16 years old Female              10th grade   1.50  37.65
## 1605             14 years old Female               9th grade   1.63  90.72
## 1606             16 years old Female              10th grade     NA     NA
## 1607             16 years old   Male              11th grade   1.65  57.15
## 1608             15 years old   Male              10th grade   1.85  88.45
## 1609             15 years old   Male               9th grade   1.83  72.58
## 1610             15 years old   Male              10th grade   1.83  70.76
## 1611             15 years old   Male              10th grade   1.68  70.76
## 1612             14 years old   Male               9th grade   1.78  68.04
## 1613             17 years old   Male              11th grade   1.78  79.38
## 1614             16 years old Female              10th grade   1.52  48.08
## 1615             15 years old   Male               9th grade   1.65  68.04
## 1616             16 years old   Male              11th grade   1.90  90.72
## 1617             16 years old   Male              10th grade   1.88  83.92
## 1618             16 years old   Male              10th grade   1.57  47.63
## 1619             15 years old   Male              10th grade     NA     NA
## 1620             15 years old Female               9th grade   1.60  53.98
## 1621             17 years old   Male              11th grade   1.68  77.11
## 1622             16 years old Female              10th grade   1.50  51.71
## 1623             14 years old Female               9th grade   1.60  58.97
## 1624             16 years old Female              10th grade   1.55  47.63
## 1625             15 years old Female               9th grade   1.52  53.07
## 1626    18 years old or older   Male              12th grade   1.83  74.84
## 1627             16 years old   Male              10th grade   1.80  67.13
## 1628             15 years old   Male               9th grade   1.70  60.33
## 1629    18 years old or older Female              12th grade     NA     NA
## 1630             15 years old Female              10th grade   1.65  53.07
## 1631             14 years old Female               9th grade   1.57  61.24
## 1632             16 years old Female              10th grade   1.63  56.70
## 1633             15 years old   Male               9th grade   1.88  62.14
## 1634             15 years old   Male              10th grade   1.83  81.65
## 1635             15 years old   Male               9th grade   1.83  69.40
## 1636             16 years old   Male              10th grade   1.70  70.31
## 1637             15 years old   Male              10th grade   1.78  61.24
## 1638             15 years old   Male              10th grade   1.70  55.34
## 1639             16 years old   Male              10th grade   1.65  56.70
## 1640             16 years old   Male              10th grade   1.70  49.90
## 1641             16 years old Female              10th grade   1.63  53.07
## 1642             16 years old Female              10th grade   1.57  71.22
## 1643             16 years old   Male              10th grade   1.83  70.31
## 1644             16 years old Female              11th grade     NA     NA
## 1645             15 years old Female              10th grade   1.70  56.25
## 1646             15 years old Female              10th grade   1.65  63.05
## 1647             15 years old Female              10th grade   1.63  53.07
## 1648             15 years old   Male              10th grade   1.80  72.58
## 1649             16 years old Female              10th grade     NA     NA
## 1650             16 years old   Male              10th grade   1.70  81.65
## 1651             15 years old Female              10th grade   1.65  56.70
## 1652             16 years old Female              11th grade   1.70  85.28
## 1653             14 years old Female               9th grade   1.55  58.97
## 1654             15 years old   Male              10th grade     NA     NA
## 1655             16 years old Female              10th grade     NA     NA
## 1656             16 years old Female              11th grade   1.70  52.16
## 1657             17 years old Female              11th grade   1.60  65.77
## 1658             16 years old   Male              10th grade   1.65  58.06
## 1659    18 years old or older Female              12th grade   1.55  68.04
## 1660             17 years old Female              11th grade   1.60  61.24
## 1661             16 years old   Male              10th grade   1.68  68.04
## 1662             17 years old Female              11th grade   1.68  86.18
## 1663             17 years old   <NA>              11th grade     NA     NA
## 1664             15 years old Female              10th grade   1.60  52.16
## 1665             17 years old Female              11th grade   1.60  50.35
## 1666             16 years old Female              10th grade   1.60  57.15
## 1667             17 years old Female              11th grade   1.52  54.43
## 1668             16 years old   Male              11th grade   1.78  65.77
## 1669             16 years old   Male              10th grade   1.80  74.84
## 1670             16 years old Female              11th grade   1.60  58.97
## 1671             15 years old Female              10th grade   1.60  93.90
## 1672             16 years old   Male              11th grade   1.83  92.99
## 1673             16 years old Female              11th grade     NA     NA
## 1674             16 years old Female              10th grade   1.57  65.77
## 1675             16 years old Female              11th grade   1.68  63.50
## 1676             17 years old   <NA>              11th grade     NA     NA
## 1677             15 years old Female              10th grade     NA     NA
## 1678             17 years old Female              11th grade   1.52  52.16
## 1679             16 years old Female              11th grade   1.88 141.52
## 1680             15 years old Female              10th grade   1.63  45.36
## 1681             16 years old Female              11th grade   1.68  51.71
## 1682             17 years old   Male              11th grade   1.68  62.14
## 1683             15 years old Female              10th grade     NA     NA
## 1684             17 years old Female              11th grade     NA     NA
## 1685             17 years old Female              11th grade   1.65  43.09
## 1686             17 years old Female              10th grade   1.70  63.96
## 1687             17 years old   Male              11th grade   1.75  56.70
## 1688             16 years old   Male              11th grade   1.70  56.25
## 1689             15 years old   Male              10th grade   1.90 104.33
## 1690             16 years old Female              11th grade   1.75  68.04
## 1691             16 years old Female              11th grade   1.57  54.43
## 1692             15 years old Female              10th grade   1.60  46.72
## 1693             17 years old Female              11th grade   1.50  49.90
## 1694             15 years old Female              10th grade   1.60  68.04
## 1695             16 years old Female              11th grade   1.63  54.43
## 1696             16 years old   Male              11th grade   1.68  81.65
## 1697             16 years old   Male              10th grade   1.78  58.97
## 1698             16 years old   Male              10th grade   1.78  99.79
## 1699             16 years old Female              10th grade   1.57  49.90
## 1700    18 years old or older Female              12th grade     NA     NA
## 1701             16 years old   Male              10th grade   1.70  83.01
## 1702             17 years old   Male              11th grade   1.90 101.61
## 1703             15 years old   Male              10th grade   1.80 115.21
## 1704             17 years old Female              11th grade   1.57  46.72
## 1705             16 years old Female              10th grade     NA     NA
## 1706             17 years old   Male              11th grade   1.68  77.11
## 1707             16 years old   Male              10th grade   1.75  64.86
## 1708             16 years old   Male              10th grade   1.73  75.75
## 1709             17 years old Female              11th grade   1.57 142.88
## 1710             14 years old Female               9th grade   1.55  44.00
## 1711             15 years old   Male               9th grade   1.68  81.65
## 1712             14 years old Female               9th grade     NA     NA
## 1713             15 years old   Male               9th grade   1.60  54.43
## 1714             17 years old Female              12th grade     NA     NA
## 1715             15 years old Female              10th grade   1.63  52.16
## 1716    18 years old or older   Male              12th grade   1.52  59.88
## 1717             14 years old Female               9th grade     NA     NA
## 1718             15 years old Female               9th grade   1.57  61.24
## 1719    18 years old or older Female              12th grade   1.55  49.90
## 1720             16 years old   Male              10th grade   1.70  88.45
## 1721             14 years old   Male               9th grade   1.63  59.42
## 1722             15 years old   Male               9th grade   1.78  58.97
## 1723             17 years old   Male              12th grade   1.75  72.58
## 1724             16 years old Female              10th grade   1.85  63.50
## 1725             14 years old   Male               9th grade     NA     NA
## 1726             17 years old   Male              12th grade   1.70  58.06
## 1727    18 years old or older Female              12th grade   1.55  47.63
## 1728             15 years old Female               9th grade     NA     NA
## 1729             15 years old   Male               9th grade   1.65  56.25
## 1730    18 years old or older   Male              12th grade   1.70  86.18
## 1731             17 years old   Male              12th grade   1.78  86.18
## 1732             14 years old Female               9th grade   1.60  47.63
## 1733             15 years old   Male               9th grade   1.68  77.11
## 1734             17 years old   Male              12th grade     NA     NA
## 1735             15 years old Female              10th grade   1.57  51.26
## 1736             17 years old Female              12th grade   1.65  63.50
## 1737             15 years old   Male               9th grade   1.75  61.24
## 1738             15 years old   Male               9th grade   1.73  63.50
## 1739    18 years old or older   Male              12th grade   1.65  58.97
## 1740             15 years old   Male              10th grade   1.75  58.97
## 1741             14 years old   Male               9th grade   1.73  79.38
## 1742             15 years old   Male               9th grade   1.83  65.77
## 1743             17 years old   Male              12th grade   1.85  99.79
## 1744             16 years old Female              11th grade   1.57  47.63
## 1745             17 years old Female              12th grade   1.68  86.18
## 1746             15 years old   Male               9th grade   1.73  44.45
## 1747             14 years old Female               9th grade   1.63  58.97
## 1748    18 years old or older Female              12th grade   1.52  60.33
## 1749             16 years old   Male              10th grade   1.57  61.69
## 1750             17 years old   Male              12th grade   1.75  99.79
## 1751             15 years old Female               9th grade   1.68  53.52
## 1752             14 years old   Male               9th grade   1.63  54.43
## 1753    18 years old or older Female              12th grade     NA     NA
## 1754             15 years old Female              10th grade   1.55  50.80
## 1755    18 years old or older Female              12th grade   1.68  72.58
## 1756             15 years old   Male               9th grade   1.75  53.52
## 1757    18 years old or older   Male              12th grade   1.73  90.72
## 1758             16 years old   Male              10th grade   1.83 122.47
## 1759    18 years old or older Female              12th grade   1.70  90.72
## 1760             15 years old   Male               9th grade   1.65  72.58
## 1761             14 years old Female               9th grade   1.78  61.69
## 1762             14 years old Female               9th grade   1.68  52.16
## 1763             15 years old Female               9th grade   1.57  57.15
## 1764             17 years old Female              12th grade   1.70  58.06
## 1765             15 years old   Male               9th grade   1.75  70.76
## 1766             14 years old Female               9th grade   1.55  43.55
## 1767             14 years old Female               9th grade   1.60  49.44
## 1768    18 years old or older Female              12th grade   1.47  45.36
## 1769             16 years old Female              10th grade   1.68  73.48
## 1770    18 years old or older   Male              12th grade   1.73  74.84
## 1771             14 years old Female               9th grade   1.55  48.08
## 1772             16 years old   Male               9th grade   1.70  68.04
## 1773             15 years old   Male               9th grade   1.75  65.77
## 1774             15 years old Female               9th grade   1.52  43.09
## 1775    18 years old or older Female              12th grade   1.52  54.43
## 1776             15 years old Female              10th grade   1.57  57.15
## 1777    18 years old or older Female              12th grade   1.68  77.11
## 1778             15 years old Female               9th grade   1.60  45.36
## 1779             15 years old   Male               9th grade   1.80  58.06
## 1780             14 years old Female               9th grade   1.55  47.63
## 1781             17 years old   Male              12th grade   1.83  61.24
## 1782             15 years old   Male              10th grade   1.88  93.90
## 1783             17 years old Female              12th grade   1.57  39.92
## 1784             15 years old Female               9th grade   1.60  52.16
## 1785             14 years old   Male               9th grade   1.78 108.86
## 1786             17 years old   Male              12th grade   1.80  90.72
## 1787             16 years old Female              10th grade   1.50  45.36
## 1788    18 years old or older   Male              12th grade     NA     NA
## 1789             15 years old   Male               9th grade   1.70  56.70
## 1790             17 years old Female              12th grade   1.57  62.60
## 1791             15 years old Female              10th grade   1.47  45.36
## 1792             17 years old   Male              12th grade   1.83  83.92
## 1793             14 years old   Male               9th grade     NA     NA
## 1794             15 years old   Male               9th grade   1.75  58.97
## 1795             15 years old Female               9th grade   1.68  70.76
## 1796             14 years old Female               9th grade     NA     NA
## 1797             17 years old   Male              12th grade   1.90 126.10
## 1798             16 years old Female              10th grade   1.57  90.72
## 1799             17 years old Female              12th grade   1.57  57.15
## 1800             15 years old   Male               9th grade   1.78  65.77
## 1801             17 years old Female              12th grade   1.73  86.18
## 1802             16 years old   Male              10th grade   1.75  62.60
## 1803             17 years old Female              12th grade   1.70  83.92
## 1804             15 years old   Male               9th grade   1.68  58.97
## 1805             15 years old   Male               9th grade   1.63  58.97
## 1806    18 years old or older   Male              12th grade   1.75  63.50
## 1807             15 years old Female              10th grade   1.73  58.97
## 1808             17 years old   Male              12th grade     NA     NA
## 1809             15 years old Female               9th grade   1.55  63.50
## 1810             15 years old   Male               9th grade   1.70  63.50
## 1811             15 years old Female              10th grade   1.63  47.63
## 1812             17 years old   Male              11th grade   1.68  68.04
## 1813             16 years old Female              10th grade   1.60  46.72
## 1814             15 years old Female              10th grade     NA     NA
## 1815             15 years old   Male              10th grade   1.75  54.43
## 1816             16 years old Female              10th grade   1.73  58.97
## 1817             17 years old   Male              11th grade     NA     NA
## 1818             16 years old Female              10th grade   1.75  79.83
## 1819             15 years old   Male              10th grade   1.78  57.61
## 1820             16 years old   Male              10th grade     NA     NA
## 1821             15 years old   Male              10th grade   1.75  63.50
## 1822             15 years old Female              10th grade   1.65  63.50
## 1823             16 years old   Male              10th grade   1.83  60.33
## 1824             15 years old Female               9th grade   1.50  45.36
## 1825             16 years old   Male              11th grade   1.85  75.30
## 1826             16 years old Female              10th grade   1.52  49.90
## 1827             15 years old Female              10th grade   1.63  34.93
## 1828             15 years old Female              10th grade   1.42  54.43
## 1829             16 years old   Male              11th grade   1.88  90.72
## 1830             16 years old Female              10th grade   1.57  47.17
## 1831             15 years old Female              10th grade   1.57  53.07
## 1832             16 years old   Male              10th grade   1.73  72.58
## 1833             14 years old   Male               9th grade   1.60  50.35
## 1834             16 years old Female              10th grade     NA     NA
## 1835             15 years old Female              10th grade   1.65  83.92
## 1836             17 years old   Male              12th grade   1.75  99.79
## 1837             15 years old Female              10th grade   1.65  61.69
## 1838             16 years old Female              10th grade   1.57  43.55
## 1839             15 years old Female              10th grade   1.65  79.38
## 1840             16 years old   Male              11th grade   1.75  68.95
## 1841             15 years old Female              10th grade   1.50  40.82
## 1842             15 years old   Male              10th grade   1.73  56.70
## 1843             16 years old Female              10th grade   1.55  51.71
## 1844             16 years old   Male              10th grade   1.57  56.70
## 1845             16 years old Female              10th grade   1.63  54.43
## 1846             15 years old Female              10th grade   1.60  79.38
## 1847             16 years old   Male              11th grade   1.78  72.58
## 1848             16 years old Female              10th grade   1.57  54.43
## 1849             15 years old   Male              10th grade   1.70  72.58
## 1850             15 years old Female              10th grade   1.57  57.15
## 1851             16 years old   Male              10th grade     NA     NA
## 1852             16 years old   Male              10th grade     NA     NA
## 1853             17 years old   Male              11th grade   1.73  70.31
## 1854             15 years old Female              10th grade   1.60  56.70
## 1855             16 years old Female              10th grade   1.65  68.04
## 1856             16 years old   Male              10th grade   1.63  72.58
## 1857             15 years old   Male              10th grade   1.78  70.31
## 1858             15 years old   Male               9th grade   1.78  72.58
## 1859             17 years old Female              11th grade     NA     NA
## 1860             16 years old Female              11th grade   1.65  53.52
## 1861             16 years old   Male              10th grade     NA     NA
## 1862             14 years old Female               9th grade   1.60  52.16
## 1863             16 years old   Male              10th grade   1.70  63.50
## 1864             16 years old Female              11th grade   1.60  71.67
## 1865             15 years old   Male              10th grade   1.80  63.50
## 1866             15 years old   Male               9th grade   1.70  54.43
## 1867             15 years old Female              10th grade     NA     NA
## 1868             14 years old Female               9th grade   1.63  52.16
## 1869             15 years old Female              10th grade   1.63  54.43
## 1870             15 years old Female              10th grade   1.60  49.90
## 1871             15 years old   Male               9th grade   1.96  66.68
## 1872             16 years old Female              10th grade   1.63  49.90
## 1873             17 years old   Male              12th grade   1.85  72.58
## 1874             14 years old Female               9th grade   1.52  43.09
## 1875             15 years old   Male              10th grade     NA     NA
## 1876             16 years old   Male              10th grade   1.75  70.31
## 1877             16 years old Female              10th grade     NA     NA
## 1878             15 years old Female               9th grade   1.57  52.16
## 1879             15 years old Female              10th grade   1.65  54.43
## 1880             17 years old   Male              12th grade   1.93 104.33
## 1881             14 years old Female               9th grade   1.52  45.36
## 1882             17 years old Female              11th grade   1.68  61.24
## 1883    18 years old or older   Male              12th grade   1.73  74.84
## 1884             14 years old   Male               9th grade   1.70  46.27
## 1885             15 years old   Male              10th grade     NA     NA
## 1886             15 years old   Male              10th grade   1.88  63.50
## 1887             17 years old   Male              11th grade     NA     NA
## 1888             15 years old Female              10th grade   1.75  56.70
## 1889             17 years old Female              11th grade   1.60  55.34
## 1890             15 years old   Male               9th grade   1.75  53.98
## 1891             16 years old   Male              10th grade   1.73  61.24
## 1892             14 years old Female               9th grade   1.63  67.59
## 1893             17 years old   Male              11th grade   1.63  65.77
## 1894             14 years old   Male               9th grade   1.75  70.31
## 1895             15 years old Female              10th grade   1.65  99.79
## 1896             15 years old Female              10th grade   1.55  61.24
## 1897             16 years old Female              10th grade   1.60  68.04
## 1898             16 years old Female               9th grade   1.60  52.62
## 1899             15 years old Female              10th grade   1.55  47.63
## 1900             15 years old Female              10th grade   1.57  56.70
## 1901             16 years old Female              10th grade   1.63  68.04
## 1902             15 years old   Male               9th grade   1.78  47.63
## 1903             15 years old Female               9th grade   1.68  63.50
## 1904             16 years old Female              10th grade   1.60  46.72
## 1905             16 years old Female              10th grade   1.57  61.24
## 1906             14 years old Female               9th grade   1.47  45.36
## 1907             15 years old Female              10th grade   1.63  43.09
## 1908             16 years old   Male              11th grade   1.88  88.91
## 1909             16 years old Female              11th grade     NA     NA
## 1910             14 years old   Male               9th grade   1.60  75.75
## 1911             14 years old   Male               9th grade   1.75  57.61
## 1912             15 years old   Male              10th grade   1.68  54.43
## 1913             15 years old Female              10th grade   1.55  56.70
## 1914             15 years old   Male               9th grade   1.65  50.80
## 1915             16 years old   Male              11th grade   1.70  64.41
## 1916             17 years old Female              11th grade   1.63  58.97
## 1917             15 years old   Male              10th grade     NA     NA
## 1918             14 years old   Male               9th grade   1.63  72.58
## 1919             15 years old Female              10th grade   1.55  52.62
## 1920             14 years old   Male               9th grade     NA     NA
## 1921             15 years old Female              10th grade     NA     NA
## 1922             17 years old   Male              12th grade   1.70  82.56
## 1923             15 years old Female              10th grade   1.60  49.90
## 1924             14 years old   Male               9th grade   1.65  78.93
## 1925             15 years old Female              10th grade   1.63  65.77
## 1926             15 years old Female               9th grade   1.70  86.18
## 1927    18 years old or older Female              12th grade   1.68  58.97
## 1928    18 years old or older   Male              12th grade   1.73  56.70
## 1929    18 years old or older Female              12th grade   1.65  63.50
## 1930             17 years old Female              12th grade   1.63  61.24
## 1931             17 years old   Male              12th grade   1.83  65.77
## 1932             16 years old   Male              11th grade   1.70  81.65
## 1933    18 years old or older Female              12th grade   1.65  58.97
## 1934    18 years old or older   Male              12th grade   1.60  63.50
## 1935             17 years old   Male              12th grade   1.83  59.88
## 1936             17 years old   Male              12th grade   1.83  68.04
## 1937    18 years old or older   Male              12th grade   1.83  78.02
## 1938             16 years old Female              11th grade   1.60 104.33
## 1939    18 years old or older Female              12th grade   1.65  70.31
## 1940    18 years old or older   Male              12th grade   1.78  71.67
## 1941    18 years old or older Female              12th grade   1.60  52.16
## 1942             17 years old Female              11th grade   1.68  65.77
## 1943             16 years old Female              11th grade   1.52  56.70
## 1944             16 years old   Male              11th grade   1.75  63.50
## 1945             16 years old Female              11th grade   1.65  54.43
## 1946             17 years old Female              11th grade   1.63  72.58
## 1947             17 years old Female              11th grade   1.70  88.45
## 1948             17 years old   Male              11th grade   1.63  56.70
## 1949    18 years old or older Female              12th grade   1.63  81.65
## 1950    18 years old or older   Male              12th grade   1.88  83.01
## 1951             17 years old   Male              11th grade   1.80  73.94
## 1952             17 years old   Male              11th grade   1.78  65.77
## 1953  12 years old or younger Female Ungraded or other grade     NA     NA
## 1954             17 years old Female              11th grade     NA     NA
## 1955             16 years old Female              11th grade   1.55  52.62
## 1956             17 years old Female              11th grade   1.60  74.84
## 1957             14 years old   Male               9th grade   1.65  54.43
## 1958             15 years old Female               9th grade     NA     NA
## 1959             15 years old Female               9th grade     NA     NA
## 1960             15 years old Female              10th grade   1.65  54.43
## 1961             15 years old Female              10th grade   1.65  50.80
## 1962             14 years old Female               9th grade   1.57  48.54
## 1963             15 years old Female               9th grade   1.65  74.84
## 1964             16 years old Female              10th grade   1.60  45.36
## 1965             14 years old   Male               9th grade   1.65  56.70
## 1966             15 years old Female               9th grade   1.70  60.78
## 1967             15 years old   Male               9th grade   1.80  68.04
## 1968             16 years old Female              10th grade     NA     NA
## 1969             15 years old Female               9th grade   1.63  54.43
## 1970             14 years old Female               9th grade   1.52  47.63
## 1971             15 years old Female               9th grade     NA     NA
## 1972             16 years old Female              10th grade   1.70  54.43
## 1973             15 years old   Male              10th grade   1.70  55.79
## 1974             16 years old   Male              10th grade     NA     NA
## 1975             15 years old   Male              10th grade   1.75  65.77
## 1976             14 years old   Male               9th grade     NA     NA
## 1977             14 years old Female               9th grade   1.60  45.36
## 1978             14 years old Female               9th grade   1.68  61.24
## 1979             15 years old   Male               9th grade   1.80  65.77
## 1980             15 years old   Male               9th grade   1.75  86.18
## 1981             16 years old   Male              10th grade   1.75  74.84
## 1982             14 years old Female               9th grade   1.55  45.36
## 1983             15 years old   Male               9th grade   1.88  65.77
## 1984    18 years old or older   Male              12th grade   1.78  72.58
## 1985             17 years old   Male              12th grade   1.68  45.36
## 1986             17 years old Female              12th grade   1.78  65.77
## 1987             17 years old   Male              12th grade   1.90 101.61
## 1988             15 years old Female              10th grade   1.60  42.64
## 1989             17 years old   Male              12th grade   1.78  56.70
## 1990             15 years old Female              10th grade   1.68  58.97
## 1991    18 years old or older Female              12th grade   1.63 124.29
## 1992             16 years old   Male              10th grade   1.75  54.43
## 1993             17 years old   Male              12th grade   1.70  61.24
## 1994    18 years old or older Female              12th grade   1.75 104.33
## 1995             14 years old Female               9th grade   1.55  54.89
## 1996    18 years old or older Female              12th grade   1.80  92.53
## 1997             15 years old Female              10th grade   1.50  45.36
## 1998             17 years old   Male              12th grade   1.80  77.11
## 1999             15 years old Female              10th grade   1.68  79.38
## 2000             16 years old Female              10th grade     NA     NA
## 2001             16 years old   Male              10th grade   1.80  72.58
## 2002    18 years old or older Female              12th grade   1.57  50.80
## 2003    18 years old or older   Male              12th grade   1.65  83.92
## 2004             15 years old Female              10th grade   1.63  53.52
## 2005             17 years old Female              12th grade   1.65  49.90
## 2006             16 years old   Male              10th grade   1.80  58.97
## 2007             17 years old Female              12th grade   1.63  53.07
## 2008             16 years old Female              10th grade   1.70  56.70
## 2009             17 years old   Male              12th grade   1.83  70.31
## 2010    18 years old or older Female              12th grade   1.68  60.78
## 2011             15 years old   Male              10th grade   1.73  74.84
## 2012    18 years old or older Female              12th grade   1.68  81.19
## 2013             15 years old   Male              10th grade   1.60  58.06
## 2014    18 years old or older Female              12th grade   1.75  56.70
## 2015             15 years old   Male              10th grade   1.93  77.57
## 2016             17 years old   Male              12th grade   1.70  70.31
## 2017             17 years old Female              12th grade   1.63  52.16
## 2018             17 years old Female              12th grade   1.70  90.72
## 2019             17 years old Female              12th grade   1.60  71.67
## 2020             16 years old Female              10th grade   1.65  55.79
## 2021             16 years old Female              10th grade   1.68  48.08
## 2022    18 years old or older Female              12th grade   1.70  57.61
## 2023             15 years old   Male              10th grade   1.73  54.89
## 2024             17 years old Female              12th grade   1.52  53.52
## 2025             15 years old Female              10th grade   1.57  74.84
## 2026             17 years old   Male              12th grade   1.85  95.26
## 2027             15 years old   Male              10th grade   1.83  76.20
## 2028             16 years old   Male              10th grade   1.78  64.41
## 2029             17 years old Female              12th grade   1.73  65.77
## 2030             16 years old Female              10th grade   1.52  50.35
## 2031    18 years old or older   Male              12th grade   1.73  65.77
## 2032             15 years old   Male              10th grade   1.75  48.99
## 2033             14 years old   Male               9th grade   1.75  77.11
## 2034             16 years old Female              11th grade   1.60  68.04
## 2035             15 years old   Male               9th grade   1.85 111.13
## 2036             15 years old Female              10th grade   1.70  45.36
## 2037             17 years old Female              12th grade   1.83  88.45
## 2038             15 years old   Male               9th grade   1.65  74.84
## 2039             17 years old Female              11th grade   1.50  49.44
## 2040             14 years old Female               9th grade   1.52  42.64
## 2041             15 years old Female              10th grade   1.60  60.33
## 2042             14 years old Female               9th grade   1.57  55.34
## 2043             17 years old   Male              11th grade   1.78  58.97
## 2044             15 years old Female               9th grade   1.57  79.38
## 2045             16 years old   Male              10th grade   1.63  54.43
## 2046             16 years old Female              10th grade   1.63  77.11
## 2047             16 years old   Male              11th grade   1.85  64.41
## 2048             15 years old Female               9th grade   1.52  52.16
## 2049             16 years old   Male              10th grade   1.75  81.65
## 2050             14 years old Female               9th grade   1.60  48.99
## 2051             16 years old Female              11th grade   1.57  56.70
## 2052             15 years old Female               9th grade   1.63  61.24
## 2053             15 years old Female              10th grade   1.60  46.72
## 2054             15 years old Female               9th grade   1.70  81.65
## 2055             16 years old Female              10th grade   1.65  48.54
## 2056             14 years old Female               9th grade     NA     NA
## 2057             14 years old Female               9th grade   1.68  61.24
## 2058             14 years old   Male               9th grade   1.80  72.58
## 2059             16 years old   Male              10th grade   1.63  54.43
## 2060             16 years old   Male              11th grade   1.88  73.48
## 2061             15 years old   Male               9th grade   1.80  72.58
## 2062             15 years old Female              10th grade   1.65  65.77
## 2063             15 years old Female               9th grade   1.65  83.92
## 2064             17 years old Female              11th grade   1.80  68.04
## 2065             14 years old Female               9th grade   1.70  58.97
## 2066             16 years old Female              10th grade   1.60  56.70
## 2067             14 years old   Male               9th grade   1.78  45.36
## 2068             14 years old   Male               9th grade   1.78  58.97
## 2069             16 years old Female              10th grade   1.55  54.43
## 2070             15 years old   Male               9th grade   1.80  61.24
## 2071             16 years old Female              11th grade   1.75  68.04
## 2072             14 years old Female               9th grade     NA     NA
## 2073             16 years old   Male              10th grade   1.68  61.24
## 2074             15 years old   Male               9th grade   1.83  90.72
## 2075             17 years old   Male              11th grade   1.65  81.65
## 2076             14 years old   Male               9th grade   1.85  68.04
## 2077             16 years old   Male              10th grade   1.75  58.97
## 2078             17 years old Female              11th grade   1.63  58.97
## 2079             15 years old   Male               9th grade   1.96  95.26
## 2080             15 years old Female               9th grade   1.70  53.52
## 2081             15 years old   Male              10th grade   1.80  65.77
## 2082             17 years old Female              11th grade   1.55  56.70
## 2083             14 years old Female               9th grade   1.63  61.69
## 2084             15 years old Female               9th grade   1.63  55.34
## 2085             16 years old Female              10th grade   1.60  52.16
## 2086             14 years old Female               9th grade   1.55  54.89
## 2087             17 years old   Male              11th grade   1.80  63.05
## 2088             14 years old   Male               9th grade   1.50  45.36
## 2089             16 years old Female              10th grade   1.63  54.43
## 2090             14 years old Female               9th grade   1.57  49.44
## 2091             17 years old Female              11th grade     NA     NA
## 2092             15 years old Female               9th grade   1.65  59.88
## 2093             15 years old Female              10th grade   1.57  56.70
## 2094             15 years old   Male               9th grade     NA     NA
## 2095             17 years old   Male              11th grade   1.93  99.79
## 2096             15 years old Female               9th grade   1.70  57.61
## 2097             15 years old Female              10th grade   1.55  46.27
## 2098             17 years old Female              11th grade   1.50  51.26
## 2099             16 years old   Male              11th grade   1.78  52.16
## 2100             15 years old Female               9th grade   1.60  53.07
## 2101             16 years old Female              10th grade   1.85  70.76
## 2102             17 years old Female              11th grade   1.63  58.06
## 2103             14 years old Female               9th grade   1.57  60.78
## 2104             16 years old   Male              11th grade   1.80 113.40
## 2105             14 years old Female               9th grade     NA     NA
## 2106             16 years old Female              10th grade     NA     NA
## 2107             17 years old   Male              11th grade   1.73  58.97
## 2108             14 years old Female               9th grade   1.57  46.27
## 2109             17 years old Female              11th grade   1.63  52.16
## 2110             15 years old Female               9th grade     NA     NA
## 2111             15 years old Female              10th grade   1.73  63.50
## 2112             16 years old Female              11th grade   1.57  45.36
## 2113             14 years old   Male               9th grade   1.83  90.72
## 2114             16 years old Female              11th grade   1.57  56.70
## 2115             14 years old Female               9th grade   1.63  49.90
## 2116             16 years old   Male              10th grade   1.75  65.77
## 2117             17 years old   Male              12th grade   1.55  63.50
## 2118             14 years old Female               9th grade     NA     NA
## 2119             14 years old Female               9th grade   1.60  40.82
## 2120             14 years old Female               9th grade   1.50  53.52
## 2121             15 years old Female               9th grade   1.63  71.67
## 2122             14 years old   Male               9th grade   1.78  83.01
## 2123             15 years old   Male               9th grade   1.70  54.43
## 2124             14 years old   Male               9th grade   1.70  67.13
## 2125             15 years old   Male               9th grade   1.65  54.43
## 2126             14 years old Female               9th grade   1.57  42.64
## 2127             15 years old   Male              10th grade   1.70  58.97
## 2128             15 years old   Male              10th grade   1.52  47.63
## 2129             16 years old Female              10th grade   1.63  54.43
## 2130             15 years old Female              10th grade   1.60  45.81
## 2131             15 years old Female              10th grade   1.60  83.92
## 2132             15 years old   Male              10th grade   1.68  68.95
## 2133             16 years old Female              10th grade   1.68  68.04
## 2134             15 years old Female              10th grade   1.55  45.36
## 2135             16 years old Female              10th grade   1.75  64.41
## 2136             15 years old Female               9th grade   1.57  46.27
## 2137             16 years old   Male              10th grade   1.83  54.43
## 2138             15 years old Female              10th grade   1.63  44.45
## 2139             15 years old   Male              10th grade   1.85  72.58
## 2140             16 years old   Male              10th grade   1.73  65.77
## 2141             16 years old   Male              10th grade   1.70  56.70
## 2142             15 years old Female              10th grade   1.52  54.43
## 2143             17 years old Female              12th grade   1.68  54.43
## 2144             17 years old   Male              11th grade   1.75  67.13
## 2145             15 years old Female              10th grade   1.52  56.70
## 2146             16 years old   Male              10th grade   1.65  48.54
## 2147             15 years old   Male              10th grade   1.83 111.13
## 2148             17 years old   Male              12th grade   1.78  54.43
## 2149             17 years old   Male              12th grade   1.90  75.75
## 2150             17 years old Female              12th grade   1.70  68.04
## 2151             15 years old Female              10th grade   1.63  58.51
## 2152             17 years old Female              12th grade     NA     NA
## 2153             17 years old Female              12th grade   1.68  81.65
## 2154             16 years old Female              12th grade   1.68  56.70
## 2155             17 years old   Male              12th grade   1.83  56.70
## 2156    18 years old or older   Male              12th grade   1.68  76.20
## 2157             17 years old   Male              12th grade   1.70  58.97
## 2158    18 years old or older Female              12th grade   1.52  68.04
## 2159    18 years old or older   Male              12th grade   1.75  78.02
## 2160             15 years old   Male              10th grade   1.88  86.18
## 2161             16 years old   Male              10th grade   1.85  77.11
## 2162             16 years old   Male              10th grade     NA     NA
## 2163             17 years old Female              12th grade   1.60  52.16
## 2164             17 years old   Male              12th grade   1.75 108.86
## 2165             17 years old   Male              12th grade   1.88  86.18
## 2166    18 years old or older   Male              12th grade   2.03 108.86
## 2167    18 years old or older   Male              12th grade   1.73 113.40
## 2168             17 years old Female              12th grade   1.73 120.66
## 2169    18 years old or older   Male              12th grade   1.75  65.77
## 2170    18 years old or older Female              12th grade   1.50  39.46
## 2171             17 years old Female              12th grade   1.65  45.36
## 2172             17 years old Female              12th grade     NA     NA
## 2173             17 years old Female              12th grade   1.68  81.65
## 2174             17 years old   Male              12th grade   1.70  56.70
## 2175    18 years old or older   Male              12th grade   1.96  92.99
## 2176             16 years old   Male              12th grade   1.80  81.65
## 2177             14 years old   Male               9th grade   1.70  68.04
## 2178             16 years old   Male              10th grade   1.83 149.69
## 2179             14 years old Female               9th grade   1.73  58.06
## 2180             15 years old   Male               9th grade   1.73  91.17
## 2181             14 years old Female               9th grade   1.63  61.69
## 2182             15 years old Female              10th grade   1.60  53.52
## 2183             15 years old Female               9th grade   1.63  56.70
## 2184             14 years old Female               9th grade   1.57  56.70
## 2185             14 years old Female               9th grade     NA     NA
## 2186             15 years old Female               9th grade   1.60  68.04
## 2187             15 years old   Male               9th grade   1.75  61.24
## 2188             14 years old   Male               9th grade   1.80  52.16
## 2189             14 years old Female               9th grade   1.57  61.24
## 2190             14 years old Female               9th grade   1.52  45.36
## 2191             16 years old Female               9th grade   1.60  58.97
## 2192             17 years old   Male              11th grade   1.78  77.11
## 2193             16 years old   Male              11th grade   1.80  73.94
## 2194             17 years old   Male              11th grade   1.68  54.43
## 2195             17 years old Female              11th grade   1.68  64.41
## 2196             16 years old Female              11th grade   1.68  49.90
## 2197             16 years old   Male              11th grade   1.90  90.72
## 2198             17 years old Female              11th grade   1.63  62.60
## 2199             17 years old   Male              11th grade   1.70  54.43
## 2200    18 years old or older   Male              11th grade   1.70  76.20
## 2201             16 years old   Male              11th grade   1.70  78.47
## 2202             16 years old Female              11th grade   1.68  72.58
## 2203             16 years old Female              11th grade   1.55  72.12
## 2204             16 years old Female              11th grade   1.57  68.04
## 2205             16 years old Female              11th grade   1.63  65.77
## 2206             16 years old   Male              11th grade   1.70  58.97
## 2207             16 years old   Male              11th grade     NA     NA
## 2208             16 years old   Male              11th grade   1.73  65.77
## 2209             16 years old   Male              11th grade   1.80  90.72
## 2210             17 years old Female              11th grade   1.65  58.97
## 2211             16 years old Female              11th grade   1.73  83.92
## 2212             17 years old   Male              11th grade   1.80  75.30
## 2213             16 years old   Male              11th grade   1.78  70.31
## 2214             16 years old Female              11th grade   1.75 142.43
## 2215    18 years old or older   Male              12th grade   1.78  67.59
## 2216             17 years old Female              12th grade   1.60  64.41
## 2217             17 years old Female              12th grade   1.63  72.58
## 2218    18 years old or older   Male              10th grade   1.65  68.04
## 2219    18 years old or older   Male              10th grade   1.80  83.92
## 2220             15 years old Female               9th grade   1.63  58.97
## 2221             16 years old   Male              10th grade   1.88  79.38
## 2222             14 years old   Male               9th grade   1.73  61.24
## 2223             14 years old Female               9th grade   1.57  53.52
## 2224             14 years old   Male               9th grade   1.68  57.61
## 2225             14 years old Female               9th grade   1.55  48.54
## 2226             15 years old Female              10th grade   1.73  58.97
## 2227             14 years old Female               9th grade   1.52  45.36
## 2228             15 years old Female               9th grade   1.73  56.25
## 2229             15 years old Female              10th grade   1.32  43.55
## 2230             15 years old   Male              10th grade   1.60  54.43
## 2231             16 years old Female              10th grade   1.60  31.75
## 2232             14 years old   Male               9th grade   1.83  65.77
## 2233             14 years old Female               9th grade   1.63  99.79
## 2234             15 years old Female              10th grade   1.57  56.70
## 2235             16 years old   Male              11th grade   1.80  72.58
## 2236             16 years old   Male              10th grade   1.83  61.69
## 2237             15 years old Female              10th grade     NA     NA
## 2238             15 years old   Male               9th grade   1.75  57.15
## 2239             14 years old   Male               9th grade   1.85  72.58
## 2240             14 years old Female               9th grade     NA     NA
## 2241             15 years old Female              10th grade   1.63  54.43
## 2242             15 years old Female               9th grade   1.57  43.09
## 2243             14 years old   Male               9th grade   1.63  49.90
## 2244             14 years old   Male               9th grade   1.78  77.11
## 2245             17 years old   Male              10th grade   1.83  61.24
## 2246             15 years old Female               9th grade   1.47  46.27
## 2247             15 years old   Male               9th grade   1.78  77.57
## 2248             15 years old Female              10th grade     NA     NA
## 2249             15 years old Female               9th grade   1.60  52.16
## 2250             14 years old   Male               9th grade   1.75  56.25
## 2251             15 years old Female              10th grade   1.57  54.43
## 2252             16 years old Female              10th grade   1.70  55.34
## 2253             17 years old   Male              11th grade     NA     NA
## 2254    18 years old or older Female              12th grade   1.63  68.04
## 2255             15 years old   Male              10th grade   1.88  76.20
## 2256             17 years old   Male              12th grade   1.88  92.99
## 2257             16 years old   Male              11th grade   1.78  61.24
## 2258    18 years old or older   Male              11th grade     NA     NA
## 2259             17 years old   Male              12th grade   1.85  59.42
## 2260             17 years old   Male              12th grade   1.75  58.97
## 2261             16 years old   Male              11th grade   1.85  70.76
## 2262             16 years old Female              11th grade   1.68 104.33
## 2263             16 years old   Male              11th grade   1.83 113.40
## 2264             16 years old   Male              11th grade   1.63  49.90
## 2265             17 years old   Male              12th grade   1.73  68.04
## 2266             14 years old Female               9th grade   1.63  43.09
## 2267             17 years old   Male              11th grade   1.83 113.40
## 2268             17 years old   Male              12th grade   1.75  74.84
## 2269             17 years old   Male              11th grade   1.83  65.77
## 2270             17 years old Female              12th grade   1.68  61.24
## 2271             17 years old Female              12th grade   1.63  55.34
## 2272    18 years old or older Female              12th grade   1.63  58.97
## 2273    18 years old or older   Male              12th grade   1.83  56.70
## 2274             16 years old Female              10th grade   1.60  65.77
## 2275             16 years old   Male              11th grade   1.68  72.58
## 2276    18 years old or older Female              12th grade   1.68  56.70
## 2277             16 years old   Male              11th grade     NA     NA
## 2278             17 years old   Male              12th grade   1.75 103.87
## 2279             15 years old Female              10th grade   1.57  74.84
## 2280             15 years old   Male              10th grade   1.70  63.50
## 2281             17 years old Female              11th grade   1.65  58.97
## 2282             17 years old   Male              11th grade   1.70  77.57
## 2283             17 years old   Male              12th grade   1.68  68.04
## 2284             14 years old Female               9th grade   1.60  44.45
## 2285             16 years old Female              10th grade   1.78  62.60
## 2286    18 years old or older   Male              12th grade   1.83  81.65
## 2287             17 years old   Male              12th grade   1.80  97.52
## 2288             16 years old Female              11th grade   1.50  53.98
## 2289             17 years old Female              12th grade   1.78  93.90
## 2290             17 years old Female              12th grade     NA     NA
## 2291             17 years old Female              11th grade   1.63  63.50
## 2292             17 years old   Male              12th grade   1.80 108.86
## 2293             17 years old Female              12th grade   1.68  51.71
## 2294             17 years old   Male              12th grade   1.78  73.94
## 2295             16 years old   Male              11th grade   1.80  68.95
## 2296             17 years old   Male              12th grade   1.70  68.04
## 2297    18 years old or older   Male              12th grade   1.85  78.93
## 2298    18 years old or older Female              12th grade   1.63  93.90
## 2299    18 years old or older   Male              12th grade   1.80  68.95
## 2300             15 years old Female              10th grade   1.50  42.64
## 2301             17 years old   Male              12th grade     NA     NA
## 2302             17 years old Female              12th grade   1.52  49.90
## 2303             15 years old Female              10th grade   1.65  54.43
## 2304             17 years old Female              12th grade   1.55  49.90
## 2305    18 years old or older   Male              12th grade   1.88  74.84
## 2306             17 years old Female              12th grade   1.57  48.99
## 2307    18 years old or older   Male              12th grade   1.73  64.41
## 2308             17 years old   Male              11th grade   1.78  56.70
## 2309    18 years old or older   Male              12th grade   1.65  70.31
## 2310    18 years old or older Female              12th grade   1.65  58.97
## 2311             16 years old   Male              11th grade   1.75  68.04
## 2312             17 years old   Male              12th grade   1.83  74.84
## 2313    18 years old or older Female              12th grade   1.60  68.95
## 2314    18 years old or older   Male              12th grade   1.70  54.43
## 2315             15 years old Female              10th grade     NA     NA
## 2316             17 years old Female              11th grade   1.75  75.30
## 2317             17 years old Female              11th grade   1.63  49.90
## 2318    18 years old or older   Male              12th grade   2.01 140.62
## 2319    18 years old or older Female              12th grade   1.68  54.43
## 2320    18 years old or older   Male              12th grade   1.83  72.58
## 2321    18 years old or older   Male              12th grade   1.80  65.77
## 2322             17 years old   Male              12th grade   1.78  86.18
## 2323             15 years old Female              10th grade   1.70  58.97
## 2324             16 years old Female              11th grade   1.60  72.58
## 2325             14 years old   Male               9th grade   1.68  80.74
## 2326    18 years old or older Female              12th grade   1.63  77.11
## 2327             17 years old   Male              12th grade   1.90  83.92
## 2328             16 years old   Male              11th grade   1.70  78.47
## 2329    18 years old or older   Male              12th grade   1.80  81.65
## 2330             17 years old Female              12th grade     NA     NA
## 2331             17 years old   Male              12th grade   1.85  81.65
## 2332    18 years old or older   Male              12th grade   1.83  63.50
## 2333             17 years old Female              11th grade   1.78 115.67
## 2334    18 years old or older Female              12th grade   1.75  79.38
## 2335             17 years old Female              12th grade   1.63  72.58
## 2336             17 years old   Male              11th grade   1.60  65.77
## 2337             17 years old Female              12th grade   1.63  52.16
## 2338    18 years old or older   Male              12th grade   1.78  58.97
## 2339             16 years old Female              10th grade   1.63  48.08
## 2340    18 years old or older Female              12th grade   1.50  58.97
## 2341             17 years old   Male              11th grade   1.80  74.84
## 2342             17 years old Female              12th grade   1.55  47.63
## 2343             15 years old Female              10th grade     NA     NA
## 2344             17 years old   Male              10th grade   1.73  65.77
## 2345             16 years old Female              10th grade   1.68  54.43
## 2346             15 years old Female              10th grade   1.68  68.49
## 2347             15 years old   Male              10th grade   1.83  85.73
## 2348             15 years old   Male              10th grade   1.75  81.65
## 2349             16 years old   Male              10th grade   1.60  68.04
## 2350             15 years old   Male              10th grade     NA     NA
## 2351             16 years old   Male              10th grade   1.80 104.33
## 2352             16 years old Female              10th grade     NA     NA
## 2353             15 years old Female              10th grade   1.57  33.57
## 2354             15 years old   Male              10th grade   1.68  58.06
## 2355             15 years old   Male              10th grade   1.68  63.50
## 2356             15 years old   Male              10th grade   1.83  86.18
## 2357             16 years old   Male              10th grade     NA     NA
## 2358             15 years old   Male               9th grade   1.85  65.77
## 2359             15 years old   Male               9th grade   1.75  54.43
## 2360    18 years old or older   Male              12th grade   1.75  62.14
## 2361             16 years old Female              11th grade   1.57  81.65
## 2362             17 years old Female              12th grade   1.52  40.82
## 2363             17 years old   Male              11th grade   1.85  77.11
## 2364    18 years old or older   Male              11th grade   1.78  99.79
## 2365             17 years old Female              12th grade   1.70  86.18
## 2366             17 years old   Male              11th grade   1.68  63.50
## 2367    18 years old or older   Male              11th grade   1.70  95.26
## 2368    18 years old or older Female              12th grade   1.73  97.07
## 2369             17 years old   Male              11th grade   1.73  72.58
## 2370    18 years old or older Female              12th grade   1.70  58.97
## 2371             16 years old   Male              11th grade   1.80  70.31
## 2372             17 years old Female              12th grade   1.63  65.77
## 2373             17 years old   Male              11th grade   1.78  86.18
## 2374    18 years old or older Female              12th grade   1.55  41.28
## 2375             17 years old   Male              11th grade   1.80  90.72
## 2376    18 years old or older   Male              12th grade   1.73  83.92
## 2377    18 years old or older   Male              12th grade   1.73  74.84
## 2378             17 years old Female              11th grade     NA     NA
## 2379             14 years old Female               9th grade   1.55  45.36
## 2380             17 years old   Male              11th grade   1.78  72.58
## 2381             17 years old Female              12th grade   1.63  59.88
## 2382             16 years old   Male              11th grade   1.73  81.65
## 2383    18 years old or older Female              12th grade   1.55  60.78
## 2384             16 years old Female              11th grade   1.55  48.99
## 2385    18 years old or older   Male              12th grade   1.78  81.65
## 2386             16 years old   Male              11th grade   1.68  88.45
## 2387             17 years old Female              12th grade   1.60  86.18
## 2388             16 years old   Male              11th grade   1.88 130.18
## 2389             17 years old   Male              12th grade     NA     NA
## 2390             17 years old Female              12th grade   1.55  53.98
## 2391             16 years old   Male              11th grade   1.88 106.60
## 2392             15 years old Female               9th grade   1.50  43.55
## 2393             17 years old Female              11th grade   1.52  57.15
## 2394    18 years old or older   Male              12th grade   1.75  70.31
## 2395    18 years old or older   Male              12th grade     NA     NA
## 2396             17 years old   Male              12th grade   1.90  79.38
## 2397             17 years old   Male              12th grade   1.73 104.33
## 2398             17 years old   Male              12th grade   1.80  84.82
## 2399             17 years old   Male              11th grade   1.83 104.33
## 2400             15 years old Female               9th grade   1.57  51.26
## 2401             14 years old   Male               9th grade   1.83 108.86
## 2402             17 years old   Male              12th grade   1.75  68.04
## 2403             14 years old   Male               9th grade   1.78  77.57
## 2404             14 years old   Male               9th grade   1.70  65.32
## 2405             17 years old Female              12th grade   1.60  90.72
## 2406             17 years old   Male              12th grade   1.75  67.13
## 2407             16 years old   Male              11th grade   1.78  54.43
## 2408             15 years old Female               9th grade   1.68  50.35
## 2409             17 years old   Male              12th grade   1.68  68.04
## 2410             17 years old   Male              11th grade   1.80 129.28
## 2411             17 years old Female              12th grade   1.70  50.80
## 2412             14 years old   Male               9th grade   1.78  63.50
## 2413             15 years old Female               9th grade   1.73  65.77
## 2414             14 years old Female               9th grade     NA     NA
## 2415             14 years old   Male               9th grade   1.70  61.24
## 2416             14 years old Female               9th grade   1.63  68.04
## 2417             15 years old Female               9th grade   1.52  52.16
## 2418             14 years old   Male               9th grade   1.78  81.65
## 2419             14 years old Female               9th grade   1.60  57.15
## 2420             15 years old   Male               9th grade   1.88  56.70
## 2421             15 years old Female               9th grade     NA     NA
## 2422             15 years old Female              10th grade   1.60  83.92
## 2423             16 years old Female              10th grade   1.52  54.43
## 2424             16 years old Female              10th grade   1.60  73.94
## 2425             15 years old   Male              10th grade   1.70  92.99
## 2426             16 years old Female              10th grade   1.60  68.04
## 2427             17 years old Female              11th grade     NA     NA
## 2428             17 years old Female              11th grade   1.50  92.99
## 2429             17 years old   Male              12th grade   1.70  68.04
## 2430             14 years old Female               9th grade   1.50  45.36
## 2431             16 years old Female              10th grade   1.75 150.14
## 2432             17 years old Female              10th grade   1.57  54.43
## 2433             17 years old   Male              11th grade   1.83  88.91
## 2434             17 years old Female              11th grade   1.55  49.90
## 2435    18 years old or older Female              12th grade   1.63  58.06
## 2436    18 years old or older   Male              12th grade   1.60  45.36
## 2437             14 years old Female               9th grade   1.63  48.08
## 2438             14 years old   Male               9th grade   1.63  81.19
## 2439             16 years old   Male              10th grade   1.75 120.20
## 2440             15 years old   Male                    <NA>   1.73  68.95
## 2441             16 years old Female              11th grade   1.57  78.02
## 2442             17 years old Female              11th grade   1.60 104.33
## 2443             17 years old   Male              12th grade   1.70  68.04
## 2444             17 years old Female              12th grade   1.60  58.97
## 2445             15 years old   Male               9th grade     NA     NA
## 2446             14 years old   Male               9th grade   1.75  58.97
## 2447             16 years old   Male              10th grade   1.78  73.03
## 2448             15 years old Female              10th grade   1.63  58.97
## 2449             17 years old   Male              11th grade   1.70  52.16
## 2450             17 years old   Male              12th grade   1.83  99.79
## 2451    18 years old or older Female              12th grade   1.85  89.36
## 2452             14 years old   Male               9th grade   1.73  62.14
## 2453             14 years old   Male               9th grade     NA     NA
## 2454             16 years old Female              10th grade   1.55  79.38
## 2455             16 years old Female              10th grade   1.60  47.17
## 2456             17 years old Female              11th grade   1.45  54.43
## 2457             16 years old Female              11th grade   1.63  63.50
## 2458             17 years old Female              12th grade   1.52  53.98
## 2459             14 years old Female               9th grade     NA     NA
## 2460             14 years old   Male               9th grade     NA     NA
## 2461             15 years old   Male              10th grade   1.68  81.65
## 2462             16 years old Female              10th grade   1.65  62.14
## 2463             16 years old   Male              11th grade   1.83  71.67
## 2464             16 years old Female              11th grade   1.57  54.43
## 2465             15 years old Female               9th grade   1.60  56.70
## 2466             14 years old Female               9th grade   1.63  82.56
## 2467             17 years old Female              10th grade   1.68  71.67
## 2468             16 years old   Male              10th grade   1.75  72.58
## 2469             17 years old Female              11th grade   1.70  54.43
## 2470             16 years old   Male              11th grade   1.85  63.50
## 2471    18 years old or older Female              12th grade   1.57 129.28
## 2472             17 years old Female              12th grade   1.60  58.97
## 2473             14 years old Female               9th grade   1.55  58.06
## 2474             16 years old Female              10th grade   1.47  40.82
## 2475             15 years old   <NA>              10th grade     NA     NA
## 2476             17 years old   Male              11th grade   1.65  54.43
## 2477             14 years old Female               9th grade   1.63  82.56
## 2478             14 years old Female               9th grade   1.55  48.99
## 2479             15 years old Female              10th grade   1.57  49.90
## 2480             16 years old Female              10th grade   1.68  72.58
## 2481             16 years old Female              11th grade   1.55  50.80
## 2482             14 years old Female               9th grade   1.68 158.76
## 2483             16 years old   Male              10th grade   1.63  61.69
## 2484             16 years old   Male              10th grade   1.73  61.24
## 2485             16 years old   Male              11th grade   1.75  61.24
## 2486             17 years old   Male              11th grade   1.70  63.50
## 2487             17 years old Female              12th grade   1.68  72.12
## 2488    18 years old or older   Male              12th grade   1.90  81.65
## 2489             15 years old Female               9th grade   1.55  54.43
## 2490             14 years old   Male               9th grade   1.80  89.81
## 2491             16 years old   Male              10th grade   1.83  83.92
## 2492             16 years old Female              10th grade   1.45  45.36
## 2493             14 years old   Male               9th grade     NA     NA
## 2494             15 years old   Male               9th grade   1.73  65.77
## 2495             16 years old Female              10th grade   1.63  58.97
## 2496             16 years old   Male               9th grade   1.96  79.38
## 2497             14 years old Female               9th grade   1.65  58.97
## 2498             16 years old   Male              11th grade   1.83  68.04
## 2499             15 years old   Male              10th grade   1.73  72.58
## 2500             16 years old   Male              11th grade   1.75 139.71
## 2501             17 years old Female              11th grade     NA     NA
## 2502             17 years old   Male              12th grade   1.65  86.64
## 2503             17 years old   Male              12th grade   1.73  61.69
## 2504             15 years old Female               9th grade   1.63  52.16
## 2505             14 years old Female               9th grade   1.55  56.70
## 2506             15 years old Female              10th grade     NA     NA
## 2507             16 years old Female              10th grade   1.65  74.84
## 2508             16 years old Female              11th grade   1.57  56.70
## 2509    18 years old or older Female              12th grade   1.60  49.90
## 2510             17 years old Female              12th grade   1.68  52.16
## 2511             16 years old   Male               9th grade   1.73  62.60
## 2512             16 years old   Male              10th grade   1.75  83.92
## 2513             15 years old   Male              10th grade   1.83  86.18
## 2514             17 years old   Male              11th grade   1.68  90.72
## 2515             17 years old   Male              11th grade   1.73  63.96
## 2516    18 years old or older   Male              12th grade   1.83  99.79
## 2517             14 years old   Male               9th grade   1.65  56.70
## 2518             15 years old   Male               9th grade   1.75  63.50
## 2519             16 years old Female              10th grade   1.65  54.43
## 2520             16 years old Female              10th grade     NA     NA
## 2521             16 years old   Male              11th grade   1.83 108.86
## 2522             16 years old Female              11th grade   1.63  51.71
## 2523             14 years old   Male               9th grade   1.70  68.04
## 2524             17 years old   Male              11th grade   1.75  61.24
## 2525             16 years old Female              11th grade   1.57  70.76
## 2526             16 years old Female              11th grade   1.68  68.04
## 2527             14 years old   Male               9th grade   1.57  54.43
## 2528             14 years old Female               9th grade   1.57  54.89
## 2529             16 years old Female              10th grade   1.68  84.37
## 2530             16 years old Female              10th grade   1.68 143.34
## 2531             16 years old Female              11th grade   1.63  73.94
## 2532    18 years old or older   Male              11th grade   1.85 102.06
## 2533             17 years old   Male              12th grade   1.83  68.04
## 2534             17 years old Female              12th grade   1.52  56.70
## 2535             15 years old Female               9th grade     NA     NA
## 2536             15 years old   Male               9th grade   1.73  68.04
## 2537             15 years old   Male              10th grade   1.75  90.72
## 2538    18 years old or older Female              12th grade   1.55  49.90
## 2539             17 years old   Male              12th grade   1.75  77.11
## 2540             15 years old Female               9th grade   1.73  53.52
## 2541             14 years old Female               9th grade     NA     NA
## 2542             16 years old Female              10th grade     NA     NA
## 2543             16 years old   Male              10th grade   1.83  65.77
## 2544             17 years old   Male              11th grade   1.83 104.33
## 2545             17 years old Female              11th grade   1.70  72.58
## 2546    18 years old or older   Male              12th grade   1.90  71.22
## 2547             17 years old Female              12th grade   1.57  61.24
## 2548             15 years old   Male               9th grade   1.52  54.43
## 2549             14 years old   Male               9th grade   1.63 101.15
## 2550             16 years old   Male              10th grade   1.63  54.43
## 2551             15 years old   <NA>              10th grade     NA     NA
## 2552             17 years old Female              11th grade   1.57  90.72
## 2553             17 years old   Male              11th grade   1.83  61.24
## 2554             17 years old Female              12th grade   1.55  98.43
## 2555    18 years old or older Female              12th grade   1.65  65.77
## 2556             15 years old Female               9th grade   1.60  77.11
## 2557             17 years old   Male              11th grade   1.78  77.11
## 2558             14 years old   Male               9th grade   1.75 117.94
## 2559             17 years old   Male              11th grade   1.96  90.72
## 2560             16 years old   Male              11th grade   1.83  79.38
## 2561    18 years old or older Female              12th grade   1.63  58.97
## 2562    18 years old or older   Male              12th grade   1.80  65.77
## 2563             15 years old Female               9th grade     NA     NA
## 2564    18 years old or older Female              12th grade   1.68  68.04
## 2565             17 years old Female              12th grade   1.57  54.43
## 2566    18 years old or older Female              12th grade   1.55  65.77
## 2567    18 years old or older Female              12th grade   1.52  62.60
## 2568    18 years old or older Female              12th grade   1.57  53.52
## 2569    18 years old or older   Male              12th grade   1.70  63.50
## 2570             15 years old Female               9th grade   1.70  54.43
## 2571             16 years old   Male              11th grade   1.93  73.48
## 2572             16 years old   Male              10th grade   1.80  99.79
## 2573             17 years old Female              11th grade   1.57  65.77
## 2574             15 years old Female              10th grade   1.68  90.72
## 2575             17 years old   Male              11th grade   2.01  86.18
## 2576             15 years old Female               9th grade   1.65  58.97
## 2577    18 years old or older Female              12th grade   1.55  77.11
## 2578             15 years old Female              10th grade   1.75 104.33
## 2579    18 years old or older Female              12th grade   1.68  65.77
## 2580             14 years old Female               9th grade   1.63  65.77
## 2581             17 years old Female              12th grade   1.78  72.58
## 2582             15 years old Female              10th grade   1.55  59.88
## 2583    18 years old or older   Male              12th grade   1.73  59.88
## 2584    18 years old or older Female              12th grade   1.50  49.90
## 2585             15 years old   Male               9th grade   1.68  52.16
## 2586             15 years old Female               9th grade   1.65  61.24
## 2587             17 years old   Male              12th grade   1.73  83.92
## 2588             16 years old Female              10th grade   1.57  52.16
## 2589             17 years old Female              12th grade   1.63  58.97
## 2590             14 years old   Male               9th grade   1.75  64.41
## 2591             17 years old Female              12th grade   1.57  51.71
## 2592             15 years old   Male              10th grade   1.68  45.36
## 2593    18 years old or older   Male              12th grade   1.70  72.58
## 2594             15 years old   Male               9th grade   1.78  61.24
## 2595             17 years old   Male              12th grade   1.68  88.45
## 2596             15 years old   Male              10th grade   1.85  90.72
## 2597             15 years old   Male               9th grade   1.75  72.58
## 2598             17 years old Female              11th grade   1.78  58.97
## 2599             16 years old   Male              10th grade   1.83 129.28
## 2600             17 years old Female              12th grade   1.52  60.78
## 2601             15 years old   Male               9th grade   1.75  65.77
## 2602             17 years old Female              12th grade   1.52  37.20
## 2603             16 years old   Male              10th grade   1.65  56.70
## 2604             17 years old Female              12th grade   1.63  59.42
## 2605             15 years old   Male               9th grade   1.75  68.04
## 2606             17 years old   Male              12th grade   1.57  42.18
## 2607             16 years old Female              10th grade   1.68  77.11
## 2608             17 years old Female              12th grade   1.63  72.58
## 2609             15 years old   Male               9th grade   1.68  68.04
## 2610    18 years old or older   Male              12th grade   1.83 113.40
## 2611             15 years old   Male              10th grade     NA     NA
## 2612             14 years old Female               9th grade   1.70  77.57
## 2613             17 years old Female              12th grade   1.63  77.11
## 2614             16 years old   Male              10th grade   1.80  95.26
## 2615    18 years old or older Female              12th grade   1.68  68.04
## 2616    18 years old or older   Male              12th grade   1.78  63.50
## 2617             16 years old Female              10th grade   1.57  86.18
## 2618             17 years old   Male              11th grade   1.93 124.74
## 2619             14 years old   Male               9th grade   1.68  47.63
## 2620             17 years old   Male              12th grade   1.85  86.64
## 2621             15 years old Female              10th grade   1.50  39.92
## 2622             17 years old Female              12th grade   1.50  47.63
## 2623             17 years old   Male              11th grade   1.98 115.67
## 2624             15 years old   Male              10th grade   1.88  98.43
## 2625    18 years old or older   Male              12th grade   1.80  63.50
## 2626             14 years old Female               9th grade   1.60  51.71
## 2627    18 years old or older   Male              12th grade   1.73  63.50
## 2628             16 years old   Male              10th grade   1.78  83.01
## 2629             16 years old Female              10th grade   1.68  55.79
## 2630    18 years old or older Female              12th grade   1.68  54.43
## 2631             15 years old   Male               9th grade   1.73  68.95
## 2632             17 years old   Male              12th grade   1.70  65.32
## 2633             15 years old   Male              10th grade   1.70  59.88
## 2634             17 years old Female              12th grade   1.70 117.03
## 2635             14 years old   Male               9th grade   1.75  63.50
## 2636    18 years old or older   Male              12th grade   1.88  80.29
## 2637             16 years old   Male              10th grade   1.73  70.76
## 2638    18 years old or older Female              12th grade   1.70  98.43
## 2639             16 years old Female              11th grade   1.65 104.33
## 2640             15 years old Female              10th grade   1.57  52.62
## 2641             17 years old Female              12th grade   1.60  76.66
## 2642             17 years old Female              12th grade   1.63  56.70
## 2643             16 years old Female              10th grade   1.55  63.50
## 2644    18 years old or older   Male              12th grade   1.73  78.47
## 2645             14 years old   Male               9th grade     NA     NA
## 2646             17 years old Female              11th grade   1.55  45.36
## 2647             16 years old   Male              10th grade   1.70  63.50
## 2648    18 years old or older Female              12th grade   1.63  54.43
## 2649             15 years old   Male               9th grade   1.80  54.43
## 2650    18 years old or older Female              12th grade   1.52  53.07
## 2651             16 years old   Male              10th grade   1.73  49.44
## 2652    18 years old or older Female              12th grade     NA     NA
## 2653             14 years old   Male               9th grade   1.63  48.54
## 2654             17 years old Female              12th grade     NA     NA
## 2655             16 years old   Male              10th grade   1.80  72.58
## 2656             15 years old Female               9th grade   1.60  49.90
## 2657             15 years old Female               9th grade   1.57  90.27
## 2658             15 years old Female              10th grade   1.68  56.70
## 2659             17 years old Female              11th grade   1.75  71.67
## 2660             15 years old   Male               9th grade     NA     NA
## 2661             16 years old Female              10th grade   1.60  79.38
## 2662             17 years old Female              11th grade   1.55  47.17
## 2663             15 years old Female               9th grade   1.63  51.71
## 2664    18 years old or older   Male              12th grade   1.83 132.00
## 2665             16 years old   Male               9th grade   1.68  68.04
## 2666             16 years old Female              10th grade   1.55  54.43
## 2667             15 years old Female               9th grade   1.75  68.04
## 2668             16 years old Female              10th grade   1.63  62.60
## 2669             17 years old   Male              11th grade   1.70  77.11
## 2670             15 years old   Male               9th grade   1.80  71.67
## 2671             16 years old Female              10th grade   1.65  74.84
## 2672             15 years old Female              10th grade   1.73  68.04
## 2673             15 years old Female               9th grade   1.52  63.50
## 2674             15 years old   Male               9th grade   1.75 107.05
## 2675             17 years old Female              11th grade   1.70  52.16
## 2676             16 years old Female              11th grade   1.63  48.99
## 2677             17 years old Female              12th grade   1.55  56.70
## 2678             15 years old Female              10th grade   1.50  43.09
## 2679             17 years old Female              11th grade   1.70  53.98
## 2680             16 years old   Male               9th grade   1.65  56.70
## 2681             16 years old Female              10th grade   1.42  48.99
## 2682             17 years old Female              11th grade   1.65  91.17
## 2683             17 years old   Male              11th grade   1.73 106.60
## 2684             15 years old Female              10th grade   1.65  38.56
## 2685    18 years old or older Female              11th grade   1.50  53.07
## 2686             15 years old   Male               9th grade   1.75  69.85
## 2687             16 years old Female              10th grade   1.60  54.43
## 2688             15 years old   Male              10th grade   1.90  72.58
## 2689             17 years old   Male              11th grade   1.93  99.79
## 2690             17 years old Female              11th grade   1.68  90.72
## 2691             15 years old   Male               9th grade   1.75  58.97
## 2692             15 years old   Male              10th grade   1.70  72.58
## 2693             17 years old   Male              11th grade   1.80  63.50
## 2694             15 years old   Male               9th grade   1.78  99.79
## 2695             16 years old Female              10th grade   1.60  57.61
## 2696             14 years old   Male               9th grade   1.83  76.20
## 2697             17 years old   Male              11th grade   1.90 108.86
## 2698             15 years old   Male               9th grade   1.68  53.98
## 2699             15 years old   Male              10th grade   1.78  54.43
## 2700             15 years old Female              10th grade   1.55  81.65
## 2701             17 years old   Male              11th grade   1.70  63.05
## 2702             15 years old   Male              10th grade   1.73  68.04
## 2703             17 years old Female              11th grade   1.63  44.91
## 2704             14 years old Female               9th grade   1.68  49.90
## 2705             15 years old Female              10th grade   1.70  59.88
## 2706             15 years old   Male               9th grade   1.78  56.70
## 2707             15 years old   Male              10th grade   1.90  82.56
## 2708             16 years old   Male               9th grade   1.70  92.99
## 2709             16 years old Female              10th grade   1.63 104.33
## 2710             14 years old Female               9th grade   1.68  63.50
## 2711             15 years old   Male              10th grade   1.78  90.27
## 2712             16 years old Female              11th grade   1.57  40.82
## 2713             15 years old Female               9th grade   1.57  68.04
## 2714             17 years old   Male              11th grade   1.80  74.84
## 2715             16 years old Female              10th grade   1.55  40.37
## 2716             16 years old Female              11th grade   1.63 117.94
## 2717             14 years old   Male               9th grade   1.65  49.90
## 2718             16 years old   Male               9th grade   1.78  54.43
## 2719             15 years old Female              10th grade   1.70  68.04
## 2720             16 years old   Male              10th grade   1.83  90.72
## 2721             14 years old   Male               9th grade     NA     NA
## 2722             16 years old   Male              10th grade   1.88  81.65
## 2723             16 years old Female              10th grade   1.60  65.77
## 2724             17 years old   Male              11th grade   1.70 108.86
## 2725             16 years old   Male               9th grade   1.65 104.33
## 2726             14 years old Female               9th grade   1.60 117.94
## 2727             15 years old   Male               9th grade   1.68  54.43
## 2728             14 years old Female               9th grade   1.65  68.04
## 2729    18 years old or older Female              12th grade   1.60  64.41
## 2730             16 years old   Male              10th grade   1.68  63.50
## 2731    18 years old or older   Male              11th grade   1.80  78.93
## 2732             14 years old Female               9th grade   1.57  78.02
## 2733    18 years old or older Female              12th grade   1.52  70.31
## 2734             16 years old   Male              10th grade   1.73  57.61
## 2735    18 years old or older Female              11th grade   1.65  74.84
## 2736             15 years old Female               9th grade   1.65  48.99
## 2737             17 years old   Male              12th grade   1.75  86.18
## 2738             17 years old   Male              10th grade   1.78  74.39
## 2739             17 years old   Male              11th grade   1.85  66.23
## 2740             15 years old Female               9th grade   1.55  52.16
## 2741    18 years old or older Female              12th grade   1.55  44.45
## 2742             16 years old Female              10th grade   1.57  49.90
## 2743             16 years old   Male              11th grade   1.73  79.38
## 2744             15 years old Female               9th grade   1.63  60.33
## 2745    18 years old or older   Male              12th grade   1.68  49.90
## 2746             16 years old   Male              11th grade   1.80  95.26
## 2747             15 years old   Male               9th grade   1.73  88.00
## 2748             16 years old Female              11th grade   1.52  55.34
## 2749             16 years old   Male              10th grade   1.75  57.15
## 2750             17 years old   Male              11th grade   1.65  58.97
## 2751             14 years old   Male               9th grade   1.68  49.90
## 2752             17 years old   Male              11th grade   1.75  76.20
## 2753             17 years old   Male              12th grade   1.78  61.69
## 2754             16 years old Female              11th grade   1.57  56.25
## 2755             15 years old Female               9th grade   1.47  34.02
## 2756             17 years old Female              10th grade   1.60  49.90
## 2757             16 years old Female              11th grade   1.63  56.70
## 2758             15 years old Female               9th grade   1.52  40.82
## 2759    18 years old or older Female              12th grade   1.70  74.84
## 2760             17 years old   Male              11th grade   1.78  70.76
## 2761             17 years old Female              11th grade   1.50  47.63
## 2762             14 years old   Male               9th grade   1.55  47.63
## 2763    18 years old or older Female              12th grade   1.63  61.24
## 2764             16 years old Female              10th grade   1.50  40.82
## 2765             14 years old Female               9th grade   1.60  58.97
## 2766             15 years old Female               9th grade   1.55  52.16
## 2767             17 years old Female              12th grade   1.65  71.67
## 2768             16 years old   Male              10th grade   1.83 116.58
## 2769             16 years old   Male              11th grade   1.83  84.37
## 2770             16 years old Female               9th grade   1.73  77.11
## 2771    18 years old or older Female              12th grade   1.70  65.77
## 2772             15 years old   Male              10th grade   1.68  56.70
## 2773             17 years old Female              11th grade     NA     NA
## 2774             15 years old   Male               9th grade   1.78  54.43
## 2775             17 years old   Male              12th grade   1.73  65.77
## 2776             16 years old   Male              10th grade   1.78  55.79
## 2777             16 years old Female              11th grade   1.57  54.43
## 2778             14 years old   Male               9th grade   1.65  68.04
## 2779             16 years old Female              11th grade   1.70  68.04
## 2780             17 years old   Male              11th grade   1.78  92.08
## 2781             15 years old Female               9th grade   1.70  54.43
## 2782             17 years old Female              12th grade   1.73  65.77
## 2783             17 years old Female              11th grade   1.63  83.92
## 2784             15 years old   Male               9th grade   1.96  67.59
## 2785             17 years old Female              12th grade   1.57 115.67
## 2786             15 years old Female              10th grade   1.70  64.86
## 2787             17 years old   Male              11th grade   1.78  86.18
## 2788             16 years old   Male               9th grade   1.57  72.58
## 2789    18 years old or older   Male              12th grade   1.83  61.69
## 2790             17 years old Female              10th grade   1.63  72.58
## 2791             17 years old   Male              11th grade   1.73  95.26
## 2792             15 years old Female               9th grade   1.55  43.55
## 2793             17 years old   Male              12th grade   1.88 113.40
## 2794             16 years old Female              10th grade   1.63  90.72
## 2795             17 years old Female              11th grade   1.63  67.59
## 2796             15 years old   Male               9th grade   1.80  63.50
## 2797             17 years old Female              12th grade   1.55  55.79
## 2798             14 years old Female               9th grade   1.70  52.16
## 2799             17 years old Female              12th grade   1.57  63.50
## 2800             14 years old Female               9th grade   1.57  47.63
## 2801    18 years old or older   Male              12th grade   1.73  95.26
## 2802             14 years old Female               9th grade   1.55  49.90
## 2803             15 years old Female               9th grade   1.63  48.99
## 2804             16 years old Female              11th grade   1.65  77.11
## 2805             15 years old   Male               9th grade     NA     NA
## 2806             15 years old   Male               9th grade   1.70  58.97
## 2807             15 years old   Male               9th grade   1.65  61.24
## 2808    18 years old or older   Male              12th grade   1.90  77.11
## 2809             15 years old   Male              10th grade   1.70  54.43
## 2810             17 years old Female              11th grade   1.65  55.79
## 2811             14 years old   Male               9th grade   1.83  88.45
## 2812             17 years old Female              12th grade   1.68  68.95
## 2813             15 years old   Male              10th grade   1.65  99.79
## 2814             17 years old Female              11th grade   1.63  74.84
## 2815             17 years old   Male              12th grade   1.83 106.60
## 2816             16 years old   Male              10th grade   1.73  78.02
## 2817             17 years old Female              12th grade   1.63  52.16
## 2818             17 years old Female              12th grade   1.60  69.85
## 2819             17 years old   Male              12th grade   1.78  54.43
## 2820             17 years old Female              12th grade   1.65 108.86
## 2821    18 years old or older Female              12th grade   1.52  49.90
## 2822             17 years old   Male              11th grade   1.68  54.43
## 2823    18 years old or older Female              12th grade     NA     NA
## 2824             17 years old   Male              12th grade   1.78  68.04
## 2825             17 years old Female              11th grade   1.65  74.84
## 2826             17 years old   Male              12th grade     NA     NA
## 2827    18 years old or older   Male              12th grade   1.75  81.19
## 2828    18 years old or older Female              12th grade   1.65  59.88
## 2829    18 years old or older   Male              12th grade   1.68  61.24
## 2830             17 years old   Male              12th grade   1.78  76.20
## 2831    18 years old or older   Male              12th grade   1.73  58.97
## 2832    18 years old or older   Male              12th grade   1.83  74.84
## 2833             17 years old   Male              12th grade   1.78  54.43
## 2834    18 years old or older Female              12th grade   1.63  78.93
## 2835    18 years old or older Female              11th grade   1.57  48.99
## 2836             15 years old   Male               9th grade   1.70  59.88
## 2837             15 years old Female              10th grade   1.55  58.51
## 2838    18 years old or older   Male              12th grade   1.88  92.53
## 2839             16 years old   Male              11th grade   1.75  57.61
## 2840             14 years old   Male               9th grade   1.68  52.16
## 2841             16 years old Female              10th grade   1.70  52.16
## 2842             15 years old   Male              10th grade   1.78  68.04
## 2843             15 years old Female               9th grade   1.68  52.62
## 2844             16 years old Female              10th grade   1.63  58.97
## 2845             17 years old Female              12th grade   1.75  68.04
## 2846             16 years old Female              11th grade     NA     NA
## 2847             15 years old Female               9th grade   1.55  47.63
## 2848             15 years old Female              10th grade   1.52  46.72
## 2849    18 years old or older   Male              12th grade   1.80  90.72
## 2850             16 years old Female              11th grade   1.68  49.90
## 2851             15 years old Female               9th grade   1.65  58.97
## 2852             15 years old   Male              10th grade     NA     NA
## 2853             17 years old   Male              12th grade   1.78  58.97
## 2854             14 years old   Male               9th grade   1.65  56.70
## 2855    18 years old or older   Male              12th grade     NA     NA
## 2856    18 years old or older   Male              12th grade   1.83  92.99
## 2857             15 years old Female              10th grade     NA     NA
## 2858             14 years old   Male               9th grade   1.80  90.72
## 2859             16 years old   Male              10th grade   1.70  56.70
## 2860             16 years old Female              11th grade   1.60  54.43
## 2861             16 years old Female              10th grade   1.52  47.63
## 2862             16 years old Female              11th grade   1.57  52.16
## 2863             16 years old   Male              10th grade   1.73  83.01
## 2864             17 years old Female              12th grade   1.63  53.07
## 2865             14 years old   Male               9th grade   1.73  65.77
## 2866  12 years old or younger Female               9th grade     NA     NA
## 2867             17 years old   Male              11th grade   1.85  81.65
## 2868             14 years old Female               9th grade   1.63  68.04
## 2869             15 years old Female              10th grade   1.50  44.00
## 2870             17 years old Female              11th grade   1.68  58.97
## 2871             15 years old   Male               9th grade   1.78  56.70
## 2872             15 years old Female              10th grade   1.70  79.83
## 2873             16 years old Female              11th grade   1.50  48.08
## 2874             17 years old Female              11th grade   1.75  88.45
## 2875             15 years old   Male               9th grade   1.78  73.48
## 2876             14 years old Female               9th grade   1.57  44.00
## 2877    18 years old or older   Male              12th grade   1.65  79.83
## 2878             16 years old Female              10th grade   1.63  83.01
## 2879             15 years old   Male              10th grade   1.78  61.69
## 2880    18 years old or older Female              12th grade   1.63  58.97
## 2881             16 years old Female              11th grade   1.57  52.62
## 2882             14 years old Female               9th grade   1.65  48.08
## 2883             16 years old   Male              10th grade   1.80  77.57
## 2884             16 years old   Male              10th grade   1.75  65.32
## 2885             17 years old   Male              11th grade   1.83  80.74
## 2886             14 years old   Male               9th grade   1.75  56.70
## 2887             16 years old   Male              10th grade   1.68 100.70
## 2888             16 years old Female              11th grade     NA     NA
## 2889             17 years old   Male              11th grade   1.88  63.50
## 2890             14 years old Female               9th grade   1.68  68.04
## 2891             15 years old Female              10th grade   1.60  53.07
## 2892             14 years old Female               9th grade     NA     NA
## 2893    18 years old or older Female              12th grade   1.55  47.63
## 2894             16 years old   Male              11th grade   1.83 117.94
## 2895             14 years old   Male               9th grade   1.80  70.31
## 2896             15 years old Female              10th grade   1.65  60.78
## 2897             17 years old Female              11th grade   1.70  81.65
## 2898             15 years old   Male               9th grade   1.78  56.70
## 2899             16 years old Female              11th grade   1.60  58.06
## 2900             16 years old Female              10th grade   1.63  56.70
## 2901             15 years old   Male               9th grade   1.70  45.36
## 2902             16 years old   Male              10th grade   1.85  52.16
## 2903    18 years old or older Female              12th grade   1.65  58.97
## 2904    18 years old or older   Male              12th grade   1.85  79.83
## 2905             17 years old   Male              11th grade   1.73  53.07
## 2906             14 years old Female               9th grade   1.63  58.97
## 2907             16 years old Female              10th grade   1.60  45.36
## 2908    18 years old or older   Male              12th grade   1.73  80.29
## 2909             16 years old   Male              11th grade   1.85  86.18
## 2910             14 years old Female               9th grade   1.65  56.70
## 2911             15 years old Female              10th grade   1.68  68.04
## 2912             17 years old   Male              12th grade   1.78  74.84
## 2913             16 years old   Male              11th grade   1.88 111.13
## 2914             15 years old Female               9th grade   1.70  63.50
## 2915             15 years old Female              10th grade   1.68  74.84
## 2916             17 years old Female              11th grade   1.78  70.31
## 2917             15 years old   Male               9th grade   1.63  45.81
## 2918             16 years old Female              10th grade   1.65  63.96
## 2919             17 years old   Male              12th grade   1.75  99.79
## 2920             17 years old Female              11th grade   1.55  68.04
## 2921             15 years old Female               9th grade   1.65  58.97
## 2922    18 years old or older   Male              12th grade   1.78  61.24
## 2923             16 years old Female              11th grade   1.65  66.23
## 2924             15 years old Female               9th grade   1.63  54.43
## 2925             16 years old Female              10th grade   1.55  52.16
## 2926             17 years old   Male              12th grade   1.80  62.14
## 2927             16 years old Female              11th grade   1.57  70.31
## 2928             14 years old Female               9th grade   1.57  48.99
## 2929             15 years old   Male              10th grade   1.83  70.31
## 2930    18 years old or older   Male              12th grade   1.90  71.67
## 2931             17 years old Female              11th grade   1.60  58.97
## 2932             15 years old   Male               9th grade   1.70  74.84
## 2933             17 years old   Male              11th grade   1.80 117.94
## 2934             17 years old   Male              12th grade   1.78  72.58
## 2935             15 years old Female               9th grade   1.57  68.04
## 2936             14 years old   Male               9th grade   1.73  58.51
## 2937             16 years old Female              10th grade   1.55  54.43
## 2938    18 years old or older Female              12th grade   1.60  47.63
## 2939             15 years old Female               9th grade   1.57  59.88
## 2940             15 years old   Male               9th grade   1.57  61.24
## 2941    18 years old or older   Male              12th grade   1.70  73.48
## 2942             15 years old   Male               9th grade   1.75  80.74
## 2943             15 years old   Male               9th grade   1.75  65.77
## 2944             15 years old   Male              10th grade   1.75  56.70
## 2945             17 years old Female              12th grade   1.42  61.24
## 2946             15 years old Female               9th grade   1.52  83.92
## 2947             14 years old Female               9th grade   1.63  59.88
## 2948             15 years old Female              10th grade   1.65  54.43
## 2949             17 years old   Male              12th grade   1.93  74.84
## 2950             15 years old   Male               9th grade   1.70  61.24
## 2951             15 years old Female               9th grade   1.68  58.51
## 2952             15 years old Female              10th grade   1.50  40.82
## 2953             17 years old Female              12th grade   1.75  67.59
## 2954             14 years old Female               9th grade   1.68  49.90
## 2955             15 years old Female               9th grade   1.50  52.16
## 2956             16 years old   Male              10th grade   1.80  90.72
## 2957    18 years old or older   Male              12th grade   1.73  47.63
## 2958             15 years old Female               9th grade   1.52  40.82
## 2959             15 years old   Male              10th grade   1.90  83.46
## 2960    18 years old or older   Male              12th grade   1.85  74.84
## 2961             15 years old Female               9th grade   1.60  74.84
## 2962             15 years old Female               9th grade   1.80 140.16
## 2963             17 years old Female              12th grade   1.57  47.63
## 2964             15 years old   Male               9th grade   1.75  61.24
## 2965             16 years old   Male              10th grade   1.80  74.84
## 2966             17 years old Female              12th grade   1.68  92.53
## 2967             15 years old   Male               9th grade   1.70  88.45
## 2968             15 years old   Male              10th grade   1.85  68.04
## 2969    18 years old or older   Male              12th grade   1.85  72.58
## 2970             14 years old Female               9th grade   1.65  52.16
## 2971             15 years old Female               9th grade   1.57  46.72
## 2972             15 years old Female              10th grade   1.63  61.24
## 2973    18 years old or older Female              12th grade   1.60  47.17
## 2974             14 years old Female               9th grade   1.68  60.33
## 2975             15 years old Female               9th grade   1.63  43.55
## 2976             15 years old Female              10th grade   1.65  53.52
## 2977             17 years old Female              12th grade   1.68  58.06
## 2978             14 years old Female               9th grade   1.60  81.65
## 2979             16 years old   Male              10th grade   1.73  76.20
## 2980    18 years old or older   Male              12th grade   1.80  65.77
## 2981                     <NA> Female               9th grade     NA     NA
## 2982             14 years old Female               9th grade   1.60  52.16
## 2983             15 years old   Male              10th grade   1.80  63.50
## 2984    18 years old or older Female              12th grade   1.75  63.50
## 2985             15 years old   Male               9th grade   1.75  65.77
## 2986             14 years old Female               9th grade   1.57  68.95
## 2987             15 years old   Male              10th grade   1.73  61.24
## 2988             17 years old Female              12th grade   1.60  58.97
## 2989             14 years old Female               9th grade   1.63  48.08
## 2990             15 years old Female               9th grade   1.70  72.58
## 2991             15 years old Female              10th grade   1.63  50.80
## 2992    18 years old or older   Male              12th grade   1.83  71.22
## 2993             15 years old   Male               9th grade   1.63  43.09
## 2994             14 years old   Male               9th grade     NA     NA
## 2995             15 years old Female              10th grade   1.57  43.55
## 2996             17 years old   Male              12th grade   1.80 106.14
## 2997             15 years old Female               9th grade   1.57  48.99
## 2998             15 years old Female              10th grade   1.63  58.97
## 2999    18 years old or older Female              12th grade   1.80  88.00
## 3000             14 years old   Male               9th grade   1.63  65.77
## 3001             15 years old   Male              10th grade   1.73  83.92
## 3002    18 years old or older Female              12th grade     NA     NA
## 3003             15 years old Female               9th grade   1.60  43.09
## 3004             15 years old Female               9th grade   1.68  65.77
## 3005             16 years old Female              10th grade     NA     NA
## 3006             17 years old Female              12th grade   1.57  43.55
## 3007             15 years old Female               9th grade     NA     NA
## 3008             14 years old   Male               9th grade   1.78  88.45
## 3009             16 years old   Male              10th grade   1.88  81.65
## 3010    18 years old or older Female              12th grade     NA     NA
## 3011             14 years old Female               9th grade   1.57  54.43
## 3012             15 years old Female               9th grade   1.63  52.16
## 3013             15 years old   Male              10th grade   1.65  56.70
## 3014    18 years old or older   Male              12th grade   1.83  67.13
## 3015             15 years old   Male               9th grade   1.85  61.24
## 3016    18 years old or older   Male              12th grade   1.83  72.58
## 3017             14 years old Female               9th grade   1.50  52.16
## 3018             15 years old Female               9th grade   1.57  48.54
## 3019             15 years old Female              10th grade     NA     NA
## 3020             15 years old   Male               9th grade   1.83  72.58
## 3021             17 years old   Male              12th grade   1.83  77.11
## 3022             14 years old   Male               9th grade   1.88  77.11
## 3023             15 years old   Male               9th grade   1.78  74.39
## 3024             17 years old   Male              12th grade   1.80  77.11
## 3025                     <NA> Female               9th grade     NA     NA
## 3026             15 years old Female               9th grade   1.57  52.16
## 3027    18 years old or older   Male              12th grade   1.70  63.50
## 3028             14 years old Female               9th grade   1.60  95.71
## 3029             15 years old   Male               9th grade   1.68  58.97
## 3030             17 years old Female              12th grade   1.73  99.79
## 3031             15 years old   Male               9th grade   1.68  68.95
## 3032             15 years old   Male               9th grade   1.68  62.14
## 3033             17 years old Female              12th grade   1.57  74.84
## 3034             15 years old   Male               9th grade     NA     NA
## 3035             15 years old Female               9th grade   1.60  43.55
## 3036    18 years old or older Female              12th grade   1.63  56.70
## 3037             16 years old   Male              10th grade   1.75  71.22
## 3038             16 years old Female              11th grade   1.63  65.77
## 3039             16 years old   Male              11th grade   1.83 132.45
## 3040             17 years old Female              12th grade   1.52  37.65
## 3041             15 years old Female              10th grade   1.73  56.70
## 3042             16 years old   Male              10th grade   1.75  65.77
## 3043    18 years old or older Female              12th grade   1.63  60.33
## 3044             17 years old   Male              10th grade   1.83  77.11
## 3045             15 years old Female              10th grade   1.55  66.23
## 3046             17 years old   Male              12th grade   1.90  90.72
## 3047    18 years old or older   Male              12th grade   1.80  58.97
## 3048             17 years old   Male              11th grade   1.68  68.04
## 3049    18 years old or older   Male              12th grade   1.68  77.11
## 3050             15 years old Female              10th grade   1.65  58.97
## 3051    18 years old or older   Male              11th grade   1.73  79.38
## 3052             16 years old Female              11th grade     NA     NA
## 3053    18 years old or older   Male              12th grade   1.83 158.76
## 3054             15 years old   Male              10th grade   1.88 111.13
## 3055             17 years old   Male              10th grade   1.85  77.11
## 3056             17 years old   Male              11th grade   1.80  86.18
## 3057             16 years old Female              11th grade   1.73  54.89
## 3058             16 years old Female              11th grade   1.57  54.43
## 3059    18 years old or older   Male              12th grade   1.83  56.70
## 3060             16 years old   Male              10th grade   1.80  83.92
## 3061             17 years old Female              11th grade   1.60  64.86
## 3062             17 years old Female              12th grade   1.73 102.06
## 3063             16 years old Female              10th grade   1.73  58.97
## 3064             17 years old   Male              11th grade   1.75  54.43
## 3065             17 years old   Male              11th grade   1.75  68.04
## 3066             17 years old Female              12th grade   1.70  47.63
## 3067             16 years old Female              10th grade   1.65  54.43
## 3068             16 years old Female              11th grade   1.63  56.70
## 3069             16 years old   Male              11th grade   1.75  95.26
## 3070    18 years old or older   Male              12th grade   1.68  61.24
## 3071             16 years old   Male              10th grade   1.80 131.54
## 3072             17 years old Female              11th grade   1.60  56.70
## 3073             16 years old   Male              11th grade   1.75  56.70
## 3074    18 years old or older Female              12th grade   1.70  68.04
## 3075             15 years old   Male              10th grade   1.85  88.91
## 3076    18 years old or older   Male              12th grade   1.78  65.77
## 3077             16 years old Female              10th grade   1.63  90.72
## 3078             17 years old Female              11th grade   1.57  65.77
## 3079             17 years old   Male              11th grade   1.70  64.86
## 3080    18 years old or older Female              12th grade   1.63  90.72
## 3081             16 years old   Male              11th grade   1.68  49.90
## 3082             17 years old Female              11th grade   1.55  47.63
## 3083             17 years old Female              12th grade   1.75  65.77
## 3084             16 years old   Male              10th grade   1.85  81.65
## 3085             16 years old   Male              11th grade   1.80  61.24
## 3086             16 years old Female              10th grade   1.68 104.33
## 3087             17 years old   Male              10th grade   1.75  54.89
## 3088             17 years old   Male              12th grade   1.85  83.46
## 3089             16 years old Female              10th grade   1.70  52.62
## 3090             16 years old Female              11th grade   1.78  99.79
## 3091             16 years old   Male              11th grade   1.83  63.50
## 3092    18 years old or older Female              12th grade   1.70  61.24
## 3093             16 years old   Male              10th grade   1.83  56.70
## 3094             17 years old   Male              11th grade   1.90  65.77
## 3095             16 years old   Male              11th grade     NA     NA
## 3096             17 years old Female              12th grade   1.68  53.07
## 3097             16 years old Female              10th grade   1.57  50.35
## 3098             16 years old   Male              11th grade     NA     NA
## 3099             16 years old   Male              11th grade   1.78  72.58
## 3100    18 years old or older   Male              12th grade   1.75  68.04
## 3101             16 years old Female              10th grade   1.57  56.70
## 3102             16 years old   Male              11th grade   1.78  56.25
## 3103             16 years old   Male              10th grade   1.63  65.77
## 3104    18 years old or older Female              12th grade   1.68  58.97
## 3105             16 years old   Male              10th grade   1.73  48.54
## 3106             17 years old   Male              11th grade   1.80  63.50
## 3107             16 years old Female              11th grade   1.60  54.43
## 3108             16 years old   Male              10th grade   1.68  78.02
## 3109             16 years old Female              11th grade   1.60  75.75
## 3110             17 years old Female              11th grade   1.65  52.16
## 3111    18 years old or older   Male              12th grade   1.70  90.72
## 3112             15 years old Female              10th grade   1.60  72.58
## 3113             17 years old Female              11th grade   1.57  72.58
## 3114             17 years old   Male              11th grade   1.93  79.38
## 3115             17 years old Female              12th grade   1.73  56.70
## 3116             17 years old   Male              11th grade   1.78  58.97
## 3117             17 years old   Male              11th grade   1.80  62.14
## 3118             17 years old Female              12th grade   1.60  65.77
## 3119             16 years old Female              10th grade   1.73  65.77
## 3120             17 years old Female              11th grade     NA     NA
## 3121    18 years old or older   Male              11th grade   1.83  93.44
## 3122             16 years old   Male              11th grade   1.73  70.31
## 3123             16 years old   Male              11th grade   1.70  69.85
## 3124             17 years old Female              12th grade   1.68 113.40
## 3125             16 years old   Male              10th grade   1.83  70.31
## 3126             17 years old Female              11th grade   1.63  49.90
## 3127             17 years old Female              11th grade     NA     NA
## 3128    18 years old or older Female              12th grade   1.63  68.04
## 3129             16 years old Female              10th grade   1.57  50.80
## 3130             16 years old   Male              11th grade   1.93 104.33
## 3131             16 years old   Male              11th grade   1.73  80.74
## 3132    18 years old or older   Male              12th grade   1.73  62.60
## 3133             16 years old Female              10th grade   1.65  49.90
## 3134             16 years old Female              11th grade   1.63  49.44
## 3135             17 years old Female              11th grade     NA     NA
## 3136    18 years old or older Female              12th grade   1.60  58.97
## 3137    18 years old or older   Male              12th grade   1.78  68.04
## 3138             16 years old Female              10th grade   1.52  53.52
## 3139             17 years old Female              12th grade   1.57  81.65
## 3140             16 years old   Male              10th grade   1.78  68.49
## 3141             15 years old   Male               9th grade   1.70  64.41
## 3142             17 years old Female              12th grade   1.65  66.23
## 3143             14 years old Female               9th grade   1.60  68.04
## 3144             17 years old   Male              11th grade   1.75  74.84
## 3145             17 years old   Male              12th grade   1.83 102.06
## 3146             15 years old Female              10th grade   1.52  68.95
## 3147             14 years old Female               9th grade   1.75  59.88
## 3148             17 years old   Male              11th grade   1.83  68.04
## 3149    18 years old or older Female              12th grade   1.73  56.70
## 3150             17 years old   Male              12th grade   1.88  72.58
## 3151             15 years old Female              10th grade   1.80  49.90
## 3152             15 years old Female               9th grade   1.63  68.04
## 3153             16 years old   Male              11th grade   1.83 122.47
## 3154             15 years old   Male              10th grade   1.80  76.20
## 3155             15 years old   Male               9th grade   1.80  71.22
## 3156    18 years old or older   Male              12th grade   1.73  78.93
## 3157             17 years old Female              11th grade   1.55  79.38
## 3158             17 years old Female              12th grade   1.55  49.90
## 3159             16 years old Female              10th grade   1.63  54.43
## 3160             15 years old   Male               9th grade   1.83  91.17
## 3161    18 years old or older   Male              12th grade   1.70  50.80
## 3162             15 years old Female              10th grade   1.63  70.31
## 3163             17 years old Female              12th grade   1.60  56.70
## 3164             15 years old Female              10th grade   1.60  58.97
## 3165             17 years old   Male              11th grade   1.80  64.41
## 3166             17 years old Female              12th grade   1.68  61.24
## 3167             15 years old Female              10th grade   1.65  97.52
## 3168             14 years old Female               9th grade   1.60  61.24
## 3169             16 years old Female              11th grade   1.73  67.13
## 3170             15 years old Female              10th grade   1.63  54.43
## 3171             16 years old   Male               9th grade   1.65  66.23
## 3172    18 years old or older   Male              12th grade   1.65  61.24
## 3173             16 years old Female              10th grade   1.55  68.04
## 3174    18 years old or older   Male              12th grade   1.73  86.18
## 3175             17 years old   Male              10th grade   1.75  97.52
## 3176    18 years old or older Female              12th grade   1.63  77.11
## 3177             15 years old   Male              10th grade   1.83  86.18
## 3178             15 years old Female               9th grade     NA     NA
## 3179             16 years old Female              11th grade   1.70  53.52
## 3180    18 years old or older Female              12th grade   1.57  72.58
## 3181             16 years old Female              10th grade   1.52  43.55
## 3182             14 years old Female               9th grade   1.73  49.90
## 3183             17 years old   Male              11th grade   1.70  56.70
## 3184             17 years old   Male              12th grade   1.88  68.95
## 3185             15 years old Female              10th grade   1.60  80.29
## 3186             15 years old   Male              10th grade   1.78  63.50
## 3187             16 years old Female              11th grade   1.55  76.66
## 3188             16 years old Female              10th grade   1.73  74.84
## 3189             16 years old Female              11th grade   1.65  70.31
## 3190    18 years old or older   Male              12th grade   1.85  77.11
## 3191             16 years old   Male              10th grade   1.80 102.06
## 3192             15 years old Female               9th grade   1.68  58.97
## 3193             17 years old   Male              11th grade   1.78  83.01
## 3194    18 years old or older   Male              12th grade   1.70  69.40
## 3195             16 years old Female               9th grade   1.57  99.79
## 3196             14 years old   Male               9th grade   1.78  67.13
## 3197             16 years old   Male              11th grade   1.65  70.31
## 3198    18 years old or older   Male              12th grade   1.63  63.96
## 3199             16 years old   Male              10th grade   1.75  68.04
## 3200    18 years old or older Female              12th grade   1.68  52.16
## 3201             16 years old Female              10th grade   1.57  56.70
## 3202    18 years old or older   Male              12th grade   1.73  67.13
## 3203             16 years old Female              10th grade   1.55  68.04
## 3204             15 years old Female               9th grade     NA     NA
## 3205             17 years old   Male              11th grade   1.73  79.38
## 3206             15 years old   Male               9th grade   1.85  58.97
## 3207             14 years old   Male               9th grade   1.73  61.24
## 3208             15 years old   Male               9th grade   1.78  67.13
## 3209             14 years old Female               9th grade   1.52  40.82
## 3210             14 years old   Male               9th grade   1.73 107.96
## 3211             14 years old   Male               9th grade   1.80  63.50
## 3212             14 years old Female               9th grade   1.63  56.70
## 3213             15 years old   Male               9th grade   1.85  68.04
## 3214             14 years old   Male               9th grade   1.63  44.45
## 3215             15 years old Female               9th grade   1.55  47.63
## 3216             15 years old   Male               9th grade   1.90 111.13
## 3217             15 years old Female               9th grade   1.68  68.04
## 3218             16 years old   Male               9th grade   1.80  72.58
## 3219             14 years old   Male               9th grade   1.68  61.24
## 3220             14 years old   Male               9th grade   1.70  73.48
## 3221             15 years old   Male               9th grade   1.68  61.24
## 3222             14 years old Female               9th grade   1.65  99.79
## 3223             15 years old   Male               9th grade   1.75  63.50
## 3224             14 years old   Male               9th grade   1.80  63.50
## 3225             14 years old   Male               9th grade   1.73  97.07
## 3226                     <NA> Female               9th grade     NA     NA
## 3227             15 years old   Male               9th grade   1.68  52.16
## 3228             14 years old Female               9th grade   1.68  56.70
## 3229             15 years old   Male               9th grade   1.68  51.26
## 3230             14 years old Female               9th grade   1.63  45.36
## 3231             15 years old   Male               9th grade     NA     NA
## 3232             15 years old   Male               9th grade   1.63  56.70
## 3233             15 years old   Male               9th grade   1.83  72.58
## 3234             15 years old   Male               9th grade   1.75  72.58
## 3235             14 years old Female               9th grade   1.78  49.90
## 3236             14 years old   Male               9th grade   1.73  58.97
## 3237             15 years old Female               9th grade     NA     NA
## 3238             14 years old Female               9th grade   1.57  80.74
## 3239             14 years old   Male               9th grade   1.73  63.50
## 3240             15 years old Female               9th grade   1.55  70.76
## 3241             14 years old Female               9th grade   1.63  51.71
## 3242             14 years old Female               9th grade   1.55  48.99
## 3243             14 years old   Male               9th grade   1.85  66.68
## 3244             14 years old Female               9th grade     NA     NA
## 3245             15 years old   Male               9th grade   1.73  63.50
## 3246             14 years old Female               9th grade   1.63  54.43
## 3247             15 years old Female               9th grade   1.60  52.62
## 3248             15 years old   Male               9th grade     NA     NA
## 3249             14 years old Female               9th grade   1.75  94.35
## 3250             15 years old Female               9th grade   1.55  49.90
## 3251             15 years old   Male               9th grade   1.83  65.77
## 3252             15 years old Female               9th grade   1.68  54.43
## 3253             16 years old   Male              11th grade   1.68  99.79
## 3254             16 years old   Male              11th grade   1.88  72.58
## 3255             17 years old Female              12th grade   1.65  99.79
## 3256             15 years old   Male              10th grade   1.83  58.51
## 3257             17 years old   Male              11th grade   1.85  97.52
## 3258             15 years old   Male              10th grade   1.83  68.04
## 3259    18 years old or older Female              12th grade   1.65  56.70
## 3260             16 years old Female              10th grade   1.60  55.34
## 3261             16 years old   Male              10th grade   1.83  63.50
## 3262             16 years old   Male              11th grade   1.63  52.16
## 3263             16 years old   Male              10th grade   1.83  95.26
## 3264             17 years old Female              11th grade   1.73  58.97
## 3265             15 years old Female              10th grade   1.68  56.70
## 3266             16 years old Female              10th grade   1.73  74.84
## 3267             17 years old   Male              12th grade   1.90 101.61
## 3268             16 years old   Male              11th grade   1.83 104.33
## 3269             17 years old   Male              12th grade   1.93  88.45
## 3270             17 years old Female              11th grade   1.55  68.04
## 3271             15 years old   Male              10th grade   1.73  77.11
## 3272             16 years old   Male              10th grade   1.65  56.70
## 3273             17 years old Female              12th grade     NA     NA
## 3274             16 years old   Male              10th grade   1.70  60.78
## 3275             16 years old   Male              11th grade   1.85  83.92
## 3276             16 years old Female              11th grade   1.60  53.07
## 3277             15 years old Female              10th grade   1.65  63.50
## 3278             16 years old   Male              10th grade   1.78  63.50
## 3279             17 years old   Male              11th grade   1.73  63.50
## 3280             15 years old Female              10th grade   1.57  54.43
## 3281             17 years old Female              11th grade   1.68  47.63
## 3282             15 years old   Male              10th grade   1.93 122.47
## 3283             15 years old Female              10th grade   1.65  69.85
## 3284             16 years old   Male              10th grade   1.83 104.33
## 3285             17 years old   Male              11th grade   1.70  78.47
## 3286             17 years old   Male              11th grade   1.78  65.77
## 3287             15 years old Female              10th grade   1.68  63.50
## 3288             15 years old   Male              10th grade   1.70  74.84
## 3289             16 years old   Male              10th grade   1.83  70.31
## 3290    18 years old or older   Male              12th grade   1.90 113.40
## 3291             17 years old   Male              12th grade   1.80  74.84
## 3292             15 years old   Male              10th grade   1.80  72.58
## 3293             17 years old Female              12th grade   1.63  54.43
## 3294             15 years old   Male              10th grade   1.75  88.45
## 3295             15 years old   Male              10th grade   1.73  79.38
## 3296             16 years old   Male              11th grade   1.83  63.50
## 3297             17 years old   Male              11th grade   1.83  68.04
## 3298             15 years old Female              10th grade   1.52  47.63
## 3299             15 years old Female              10th grade   1.57  47.63
## 3300             17 years old Female              11th grade   1.65  52.16
## 3301             17 years old   Male              11th grade   1.90  70.76
## 3302             17 years old   Male              12th grade   1.88  71.22
## 3303             16 years old   Male              10th grade   1.80  63.50
## 3304             17 years old Female              12th grade     NA     NA
## 3305             17 years old   Male              11th grade   1.88  93.44
## 3306             15 years old Female              10th grade   1.60  58.97
## 3307             15 years old Female              10th grade   1.65  53.07
## 3308             17 years old Female              12th grade   1.88  49.90
## 3309             16 years old   Male              10th grade   1.80  90.72
## 3310             15 years old Female              10th grade   1.70  68.04
## 3311             15 years old   Male              10th grade   1.80  80.74
## 3312    18 years old or older Female              12th grade   1.68  56.70
## 3313             17 years old Female              11th grade   1.68  52.16
## 3314             16 years old Female              10th grade   1.57  54.43
## 3315             15 years old   Male              10th grade   1.78  72.58
## 3316             17 years old   Male              11th grade     NA     NA
## 3317    18 years old or older   Male              12th grade   1.78  68.04
## 3318             15 years old Female              10th grade   1.70  54.43
## 3319             17 years old Female              11th grade   1.63  52.16
## 3320             15 years old Female              10th grade   1.65  74.84
## 3321             16 years old   Male              10th grade   1.78  65.77
## 3322    18 years old or older Female              12th grade   1.78  65.77
## 3323             17 years old   Male              11th grade   1.80  72.58
## 3324             17 years old Female              11th grade   1.50  96.62
## 3325             16 years old   Male              11th grade   1.60  62.60
## 3326             16 years old   Male              11th grade   1.78  65.32
## 3327    18 years old or older   Male              12th grade   1.80  77.11
## 3328    18 years old or older Female              12th grade   1.57  79.38
## 3329             16 years old Female              10th grade   1.57  49.90
## 3330             17 years old Female              12th grade   1.55  49.90
## 3331             16 years old   Male              11th grade   1.80  77.11
## 3332             15 years old Female              10th grade   1.75  53.07
## 3333    18 years old or older Female              12th grade   1.63  61.24
## 3334             15 years old Female              10th grade   1.60  65.77
## 3335             15 years old   Male              10th grade   1.90  97.52
## 3336             15 years old   Male              10th grade   1.88  68.04
## 3337             16 years old Female              10th grade   1.70  56.70
## 3338             17 years old Female              11th grade   1.60  58.97
## 3339    18 years old or older Female              12th grade   1.57  48.99
## 3340             15 years old Female              10th grade   1.65  58.97
## 3341             16 years old   Male              10th grade   1.85  68.04
## 3342             16 years old Female              10th grade   1.80  61.24
## 3343             16 years old Female              11th grade   1.65  74.84
## 3344             15 years old Female              10th grade   1.70  54.43
## 3345             17 years old Female              12th grade   1.68  58.97
## 3346             16 years old Female              10th grade   1.70  65.77
## 3347             16 years old Female              10th grade   1.63  58.97
## 3348             17 years old   Male              11th grade   1.78  70.31
## 3349             17 years old   Male              12th grade   1.83 117.94
## 3350             17 years old   Male              11th grade   1.80  79.38
## 3351             17 years old   Male              11th grade   1.70  68.04
## 3352             16 years old   Male              11th grade   1.83  74.84
## 3353             16 years old Female              10th grade   1.83  69.85
## 3354             15 years old   Male              10th grade   1.90  83.92
## 3355             15 years old Female              10th grade     NA     NA
## 3356             16 years old   Male              11th grade   1.80  54.43
## 3357             16 years old Female              11th grade   1.57  62.60
## 3358             15 years old   Male              10th grade   1.73  62.14
## 3359             16 years old Female              10th grade   1.65  61.24
## 3360             16 years old   Male              10th grade   1.80  65.77
## 3361             16 years old   Male              10th grade   1.75  58.97
## 3362    18 years old or older Female              12th grade   1.65  58.51
## 3363             14 years old Female               9th grade   1.60  54.43
## 3364             17 years old   Male              11th grade   1.75  65.77
## 3365    18 years old or older Female              12th grade   1.68  57.61
## 3366             16 years old Female              10th grade   1.63  56.70
## 3367             15 years old Female               9th grade   1.57  62.14
## 3368             17 years old   Male              11th grade   1.73  63.50
## 3369             16 years old   Male              11th grade   1.83  70.31
## 3370             17 years old   Male              11th grade   1.70  73.94
## 3371    18 years old or older   Male              12th grade   1.78 115.67
## 3372             14 years old Female               9th grade   1.65  81.65
## 3373             17 years old Female              11th grade   1.70  97.07
## 3374             16 years old Female              10th grade   1.55  56.70
## 3375             14 years old   Male               9th grade   1.75  95.26
## 3376             17 years old Female              11th grade   1.68  72.58
## 3377    18 years old or older   Male              12th grade   1.73  79.38
## 3378             16 years old   Male              10th grade   1.80  72.58
## 3379             14 years old   Male               9th grade   1.70  52.16
## 3380             17 years old Female              11th grade   1.63  54.43
## 3381    18 years old or older   Male              12th grade   1.68  72.58
## 3382             15 years old   Male              10th grade   1.65  58.97
## 3383    18 years old or older Female              12th grade   1.73  68.04
## 3384             14 years old Female               9th grade   1.55  46.72
## 3385             17 years old Female              11th grade   1.75  70.31
## 3386    18 years old or older   Male              12th grade     NA     NA
## 3387             15 years old   Male              10th grade     NA     NA
## 3388             15 years old Female               9th grade   1.57  49.44
## 3389    18 years old or older Female              12th grade   1.57  51.71
## 3390             16 years old Female              10th grade     NA     NA
## 3391             15 years old Female               9th grade   1.57  49.90
## 3392             17 years old   Male              11th grade     NA     NA
## 3393             17 years old Female              12th grade     NA     NA
## 3394             15 years old   Male               9th grade     NA     NA
## 3395             15 years old   Male              10th grade   1.85  61.69
## 3396             15 years old   Male               9th grade   1.80  63.50
## 3397             17 years old   Male              11th grade   1.88  77.11
## 3398             17 years old   Male              12th grade   1.75  77.11
## 3399             15 years old   Male               9th grade     NA     NA
## 3400             17 years old   Male              11th grade   1.88  65.77
## 3401             17 years old   Male              12th grade   1.80  81.65
## 3402             15 years old   Male              10th grade   1.73  72.58
## 3403             15 years old   Male               9th grade   1.73  63.50
## 3404             16 years old Female              11th grade   1.75  81.65
## 3405             17 years old   Male              11th grade   1.80  56.70
## 3406             16 years old   Male              10th grade   1.70  61.24
## 3407             15 years old Female               9th grade     NA     NA
## 3408             15 years old   Male               9th grade   1.98  58.97
## 3409             16 years old   Male              10th grade   1.70  74.84
## 3410             15 years old   Male               9th grade   1.83  54.43
## 3411             16 years old Female              11th grade   1.65  45.36
## 3412    18 years old or older   Male              12th grade   1.88  70.31
## 3413             16 years old   Male              10th grade   1.78  71.67
## 3414             17 years old Female              11th grade   1.68  72.58
## 3415             17 years old   Male              12th grade   1.78  72.58
## 3416             16 years old Female              10th grade   1.70  62.14
## 3417    18 years old or older Female              12th grade   1.60  63.96
## 3418             16 years old Female               9th grade   1.73  68.04
## 3419             17 years old Female              12th grade   1.63  52.16
## 3420             15 years old Female              10th grade   1.60  49.44
## 3421             14 years old   Male               9th grade   1.63  64.41
## 3422             16 years old   Male              11th grade   1.90  83.46
## 3423    18 years old or older   Male              12th grade   1.78  99.79
## 3424             16 years old   Male              10th grade   1.78  86.18
## 3425             15 years old   Male               9th grade   1.68  72.58
## 3426             16 years old   Male              11th grade   1.75  77.11
## 3427             17 years old Female              11th grade   1.57 129.73
## 3428             17 years old   Male              12th grade   1.78  99.79
## 3429             15 years old   Male               9th grade     NA     NA
## 3430    18 years old or older Female              12th grade   1.60  74.84
## 3431             16 years old   Male              10th grade   1.78  58.97
## 3432             14 years old Female               9th grade   1.70  86.18
## 3433    18 years old or older Female              12th grade   1.73 126.10
## 3434             15 years old   Male              10th grade   1.75  65.77
## 3435             15 years old   Male              10th grade     NA     NA
## 3436             16 years old Female              11th grade   1.65  68.04
## 3437             16 years old   Male              11th grade   1.75 104.33
## 3438             15 years old Female              10th grade   1.73  81.65
## 3439             14 years old Female               9th grade   1.57  90.27
## 3440             16 years old   Male              11th grade   1.85  58.97
## 3441    18 years old or older   Male              12th grade   1.85  63.50
## 3442             17 years old Female              11th grade   1.73  58.97
## 3443             15 years old Female              10th grade   1.57  53.98
## 3444    18 years old or older Female              12th grade   1.55  56.70
## 3445             16 years old   Male              10th grade   1.83 120.20
## 3446             14 years old   Male               9th grade   1.73  80.29
## 3447             17 years old   Male              11th grade   1.78  88.00
## 3448             17 years old   Male              11th grade   1.75  61.24
## 3449             17 years old Female              12th grade   1.63  53.52
## 3450             16 years old Female              10th grade   1.65  86.18
## 3451    18 years old or older   Male              11th grade   1.83  72.58
## 3452             17 years old   Male              12th grade   1.80  97.52
## 3453             17 years old Female              12th grade   1.55  78.93
## 3454             15 years old   Male               9th grade   1.80  70.31
## 3455             17 years old Female              11th grade   1.63  54.43
## 3456             15 years old Female              10th grade   1.65  52.62
## 3457             15 years old Female               9th grade   1.65  61.69
## 3458             16 years old   Male              11th grade   1.83  73.03
## 3459    18 years old or older   Male              12th grade   1.75  81.65
## 3460             14 years old   Male               9th grade   1.70  56.70
## 3461             17 years old   Male              11th grade   1.70  54.43
## 3462             16 years old Female              11th grade   1.63  66.23
## 3463    18 years old or older   Male              12th grade   1.73  74.84
## 3464             15 years old   Male               9th grade   1.78  97.52
## 3465             17 years old   Male              11th grade   1.80  52.16
## 3466             17 years old   Male              11th grade   1.88  99.79
## 3467    18 years old or older   Male              12th grade   1.85  65.77
## 3468             14 years old   Male               9th grade   1.80  90.27
## 3469             17 years old Female              11th grade   1.68  72.58
## 3470             16 years old   Male              11th grade     NA     NA
## 3471             15 years old Female              10th grade   1.70  95.26
## 3472             16 years old   Male              10th grade   1.83 125.19
## 3473             17 years old Female              11th grade   1.57  72.58
## 3474    18 years old or older Female              12th grade   1.65  54.43
## 3475             16 years old   Male              10th grade   1.78  74.84
## 3476             15 years old   Male               9th grade   1.65  61.24
## 3477             16 years old Female              11th grade   1.65  56.25
## 3478    18 years old or older Female              12th grade   1.70  61.24
## 3479             15 years old Female              10th grade   1.57  81.65
## 3480             15 years old Female               9th grade   1.68  58.97
## 3481    18 years old or older   Male              12th grade   1.63  52.16
## 3482             15 years old   Male              10th grade   1.70  92.99
## 3483             15 years old   Male               9th grade   1.68  54.43
## 3484             16 years old   Male              11th grade   1.75  75.75
## 3485    18 years old or older   <NA>              12th grade     NA     NA
## 3486    18 years old or older   Male              12th grade   1.73  90.72
## 3487    18 years old or older Female              12th grade   1.65 136.08
## 3488             14 years old Female               9th grade   1.55  49.90
## 3489             17 years old   Male              11th grade   1.73  71.67
## 3490             16 years old Female              11th grade   1.57  72.58
## 3491    18 years old or older Female              12th grade   1.65  68.49
## 3492    18 years old or older Female              12th grade   1.60  74.84
## 3493             14 years old   Male               9th grade   1.78  63.05
## 3494             14 years old Female               9th grade   1.60  36.29
## 3495    18 years old or older   Male              12th grade   1.75  70.31
## 3496             16 years old   Male              11th grade   1.70  61.24
## 3497             17 years old Female              12th grade   1.75  68.04
## 3498             15 years old Female               9th grade   1.73  64.41
## 3499             16 years old Female              11th grade   1.52  47.63
## 3500             17 years old Female              12th grade   1.65  56.70
## 3501             16 years old   Male              11th grade   1.80  67.13
## 3502    18 years old or older Female              12th grade   1.52  50.80
## 3503             15 years old   Male               9th grade   1.73  54.43
## 3504             15 years old   Male               9th grade   1.80  71.22
## 3505             14 years old Female               9th grade   1.68  81.65
## 3506             17 years old Female              12th grade   1.60  70.31
## 3507             17 years old   Male              11th grade   1.70  81.65
## 3508    18 years old or older Female              12th grade   1.63  90.72
## 3509             15 years old Female              10th grade   1.63  72.58
## 3510             14 years old   Male               9th grade   1.57  46.72
## 3511             15 years old Female               9th grade   1.70  58.97
## 3512             17 years old   Male              12th grade   1.83  65.77
## 3513             17 years old   Male              11th grade   1.70  65.77
## 3514    18 years old or older Female              12th grade   1.63  52.16
## 3515             16 years old   Male              10th grade   1.70  59.42
## 3516             16 years old   Male              10th grade   1.60  61.24
## 3517             14 years old Female               9th grade   1.60  47.17
## 3518             14 years old   Male               9th grade   1.73  68.04
## 3519             17 years old Female              11th grade   1.63  58.97
## 3520             16 years old   Male              11th grade   1.83  92.08
## 3521             17 years old Female              12th grade   1.68  88.45
## 3522             14 years old   Male               9th grade   1.75  72.58
## 3523             14 years old Female               9th grade   1.80  90.72
## 3524             16 years old Female              11th grade   1.57  52.16
## 3525             17 years old   Male              12th grade   1.65  39.46
## 3526             15 years old Female               9th grade     NA     NA
## 3527             15 years old Female               9th grade   1.60  65.77
## 3528             17 years old   Male              12th grade   1.80  69.40
## 3529             17 years old   Male              11th grade   1.70  68.04
## 3530    18 years old or older   Male              12th grade   1.73  61.24
## 3531             15 years old Female              10th grade   1.63  52.16
## 3532                     <NA>   Male              10th grade     NA     NA
## 3533             15 years old Female               9th grade     NA     NA
## 3534             14 years old Female               9th grade   1.68  45.81
## 3535             17 years old Female              12th grade   1.70  72.58
## 3536             17 years old   Male              11th grade   1.78  92.99
## 3537             17 years old Female              12th grade   1.65  71.67
## 3538             16 years old   Male              10th grade   1.78  56.70
## 3539             14 years old   Male               9th grade   1.75  76.20
## 3540             15 years old   Male               9th grade   1.75  69.85
## 3541    18 years old or older Female              12th grade   1.52  45.36
## 3542             16 years old   Male              11th grade   1.85  73.48
## 3543    18 years old or older Female              12th grade     NA     NA
## 3544             15 years old Female               9th grade   1.75  54.43
## 3545             15 years old   Male               9th grade   1.75  46.27
## 3546             17 years old   Male              12th grade   1.73  81.65
## 3547             17 years old   Male              11th grade   1.78  68.04
## 3548             17 years old   Male              12th grade   1.83  97.52
## 3549             15 years old   Male              10th grade   1.68  68.49
## 3550             16 years old   Male              10th grade   1.83  77.11
## 3551             14 years old   Male               9th grade   1.65  49.90
## 3552             15 years old   Male                    <NA>   1.83  58.97
## 3553             17 years old Female              11th grade   1.52  65.77
## 3554    18 years old or older Female              12th grade   1.63  49.90
## 3555             14 years old   Male               9th grade   1.68  54.43
## 3556             15 years old Female               9th grade   1.78  86.18
## 3557             17 years old Female              12th grade   1.60  56.25
## 3558             17 years old   Male              11th grade   1.96 120.20
## 3559    18 years old or older   Male              12th grade   1.83  63.50
## 3560             16 years old   Male              10th grade   1.85  86.18
## 3561             15 years old Female               9th grade     NA     NA
## 3562             14 years old Female               9th grade   1.70  49.44
## 3563    18 years old or older Female              12th grade   1.63  77.11
## 3564             17 years old   Male              11th grade   1.80  70.31
## 3565    18 years old or older Female              12th grade   1.83  58.97
## 3566             14 years old   Male               9th grade   1.60  49.90
## 3567             15 years old   Male               9th grade   1.80  58.97
## 3568             16 years old Female              11th grade   1.52  61.24
## 3569             16 years old Female              11th grade     NA     NA
## 3570    18 years old or older   Male              12th grade   1.80  72.58
## 3571             15 years old   Male               9th grade   1.80  86.18
## 3572             14 years old   Male               9th grade   1.75  63.50
## 3573             17 years old   Male              11th grade   1.70  88.45
## 3574             17 years old   Male              12th grade   1.68  63.50
## 3575             17 years old   Male              12th grade   1.78  79.38
## 3576             16 years old Female              10th grade   1.73  77.11
## 3577             15 years old Female              10th grade   1.68  56.70
## 3578             15 years old Female               9th grade   1.52  49.90
## 3579             15 years old   Male               9th grade   1.73  77.11
## 3580             17 years old   Male              11th grade   1.78  90.72
## 3581             16 years old Female              12th grade   1.75  60.33
## 3582             16 years old   Male              10th grade   1.78  58.97
## 3583             15 years old Female              10th grade   1.70  58.97
## 3584             14 years old Female               9th grade     NA     NA
## 3585             14 years old Female               9th grade   1.57  54.43
## 3586             17 years old   Male              11th grade   1.70  63.50
## 3587             17 years old   Male              12th grade   1.80  92.99
## 3588             15 years old   Male              10th grade   1.80  81.65
## 3589             15 years old   Male              10th grade   1.70  61.24
## 3590             14 years old Female               9th grade   1.60  48.99
## 3591             15 years old Female               9th grade   1.65  61.24
## 3592    18 years old or older   Male              12th grade   1.78  79.38
## 3593             16 years old Female              11th grade   1.52  49.90
## 3594             17 years old Female              12th grade   1.80  81.65
## 3595             14 years old Female               9th grade   1.52  49.44
## 3596    18 years old or older Female              12th grade   1.68  64.41
## 3597             17 years old   Male              11th grade   1.83  97.52
## 3598             17 years old Female              12th grade   1.73  70.31
## 3599             15 years old Female              10th grade   1.60  63.50
## 3600             15 years old   Male               9th grade     NA     NA
## 3601             14 years old Female               9th grade   1.57  44.45
## 3602    18 years old or older Female              12th grade   1.50  88.91
## 3603             17 years old   Male              11th grade   1.83 104.33
## 3604             17 years old Female              12th grade   1.73  74.84
## 3605             15 years old Female              10th grade   1.75  58.06
## 3606             15 years old   Male              10th grade   1.70  88.45
## 3607             15 years old   Male               9th grade   1.75  68.04
## 3608             14 years old   Male               9th grade   1.75  83.92
## 3609    18 years old or older Female              12th grade   1.60  57.61
## 3610             16 years old   Male              11th grade   1.80  49.90
## 3611             16 years old   Male              10th grade   1.80 120.20
## 3612             15 years old Female              10th grade   1.68  65.77
## 3613             14 years old Female               9th grade   1.57  47.17
## 3614             15 years old Female               9th grade   1.57  51.26
## 3615             17 years old Female              11th grade   1.57  61.24
## 3616    18 years old or older   Male              12th grade   1.90  78.02
## 3617             16 years old   Male              10th grade   1.68  58.97
## 3618             16 years old Female              10th grade   1.57  44.45
## 3619             14 years old Female               9th grade   1.65  58.51
## 3620             15 years old Female               9th grade   1.55  49.44
## 3621             16 years old Female              11th grade   1.52  52.16
## 3622             15 years old   Male              10th grade   1.80  61.69
## 3623             15 years old   Male               9th grade   1.73  61.69
## 3624             15 years old   Male               9th grade   1.78  99.79
## 3625             17 years old   Male              12th grade   1.83  70.31
## 3626             16 years old Female              11th grade   1.60  81.65
## 3627             16 years old   Male              10th grade   1.73  77.11
## 3628             15 years old   Male              10th grade   1.85  79.38
## 3629             14 years old Female               9th grade     NA     NA
## 3630             17 years old Female              12th grade   1.63  56.70
## 3631             17 years old Female              11th grade   1.57  45.36
## 3632             16 years old Female              10th grade   1.65  49.90
## 3633             16 years old   Male              10th grade   1.75 112.49
## 3634             15 years old   Male               9th grade   1.78  76.20
## 3635             15 years old   Male               9th grade   1.78  67.59
## 3636             14 years old Female               9th grade     NA     NA
## 3637             17 years old Female              12th grade   1.68  74.84
## 3638             16 years old   Male              11th grade   1.90  79.83
## 3639             16 years old   Male              10th grade   1.68  62.60
## 3640             16 years old   Male              10th grade   1.85  95.26
## 3641             14 years old Female                    <NA>   1.55  69.85
## 3642             14 years old   Male               9th grade   1.80  72.58
## 3643             17 years old   Male              11th grade   1.88  71.22
## 3644             17 years old Female              11th grade   1.68  57.15
## 3645             15 years old   Male              10th grade   1.75  65.77
## 3646             15 years old   Male               9th grade   1.78  56.70
## 3647             14 years old Female               9th grade   1.68  72.58
## 3648             16 years old   Male              11th grade   1.78  70.31
## 3649             15 years old   Male              10th grade   1.73  74.39
## 3650             16 years old   Male              11th grade   1.70  81.65
## 3651             17 years old   Male              11th grade   1.83  89.36
## 3652             17 years old Female              11th grade   1.63  58.97
## 3653             17 years old Female              11th grade   1.70  58.97
## 3654             16 years old Female              11th grade     NA     NA
## 3655             16 years old Female              10th grade   1.50  68.04
## 3656             15 years old Female              10th grade   1.73  58.97
## 3657             15 years old Female              10th grade   1.63  52.16
## 3658             16 years old Female              10th grade   1.60  83.92
## 3659             16 years old   Male              10th grade   1.73  72.58
## 3660             16 years old   Male              10th grade   1.75  74.84
## 3661             15 years old   Male              10th grade   1.65  54.43
## 3662             14 years old Female               9th grade   1.68  90.72
## 3663             17 years old Female              10th grade   1.73  86.18
## 3664             16 years old   Male              10th grade   1.65  55.34
## 3665             15 years old Female              10th grade   1.60  63.50
## 3666             15 years old   Male               9th grade   1.68  64.41
## 3667             16 years old   Male               9th grade   1.73  58.97
## 3668             15 years old Female               9th grade   1.60  55.79
## 3669             16 years old   Male               9th grade   1.83  77.11
## 3670             17 years old   Male              11th grade   1.78  74.84
## 3671             17 years old   Male              11th grade   1.78  92.99
## 3672             16 years old   Male              11th grade   1.80  77.11
## 3673             17 years old Female              11th grade   1.65 102.06
## 3674             16 years old   Male              11th grade   1.65  86.18
## 3675             15 years old   Male               9th grade   1.73  51.26
## 3676             14 years old   Male               9th grade   1.65 106.60
## 3677             16 years old Female              10th grade   1.63  65.77
## 3678             15 years old   Male              10th grade   1.75  77.11
## 3679             16 years old Female              10th grade   1.70  83.92
## 3680             16 years old Female              10th grade   1.52  45.36
## 3681             16 years old   Male              10th grade   1.68  92.53
## 3682             15 years old Female               9th grade     NA     NA
## 3683             14 years old   Male               9th grade   1.60  43.09
## 3684             15 years old Female               9th grade   1.60  59.88
## 3685             17 years old   Male              10th grade     NA     NA
## 3686             16 years old   Male              10th grade     NA     NA
## 3687                     <NA> Female              10th grade     NA     NA
## 3688             15 years old   Male              10th grade   1.75  88.45
## 3689             14 years old   Male               9th grade   1.80  97.52
## 3690             17 years old   Male              12th grade   1.85  86.18
## 3691             17 years old   Male              11th grade   1.68  61.24
## 3692             15 years old   Male               9th grade   1.75  67.13
## 3693             17 years old   Male              12th grade   1.78  70.31
## 3694             17 years old   Male              11th grade   1.68  65.77
## 3695             16 years old   Male              10th grade   1.68  56.70
## 3696             14 years old   Male               9th grade   1.80  81.65
## 3697    18 years old or older   Male              12th grade   1.83  61.24
## 3698             16 years old   Male              11th grade   1.73  65.77
## 3699             16 years old   Male              10th grade   1.78  79.38
## 3700    18 years old or older   Male              12th grade   1.96  97.52
## 3701             16 years old   Male              11th grade   1.83 102.06
## 3702             15 years old   Male              10th grade   1.78  74.39
## 3703             15 years old   Male               9th grade   1.70  84.82
## 3704    18 years old or older   Male              12th grade   1.88  71.67
## 3705             17 years old   Male              11th grade   1.88  81.65
## 3706             16 years old   Male               9th grade   1.63  54.43
## 3707    18 years old or older   Male              12th grade   1.83  77.11
## 3708             17 years old   Male              11th grade   1.88  68.04
## 3709             15 years old   <NA>               9th grade     NA     NA
## 3710             17 years old   Male              12th grade   1.83  65.77
## 3711             17 years old   Male              11th grade   1.83  86.18
## 3712             14 years old   Male               9th grade   1.83  68.49
## 3713             17 years old   Male              12th grade   1.83  88.45
## 3714             17 years old   Male              11th grade   1.78  63.50
## 3715             15 years old   Male              10th grade   1.83  65.77
## 3716    18 years old or older   Male              12th grade   1.78  65.77
## 3717             16 years old   Male              11th grade   1.88  99.79
## 3718             16 years old   Male              10th grade   1.68  49.90
## 3719             15 years old   Male               9th grade   1.68  58.97
## 3720    18 years old or older   Male              12th grade   1.75  71.67
## 3721             17 years old   Male              11th grade   1.85  77.11
## 3722             15 years old   Male              10th grade   1.73  54.43
## 3723    18 years old or older   Male              12th grade   1.75  81.65
## 3724             17 years old   Male              11th grade   1.88  88.45
## 3725             16 years old   Male              10th grade   1.70  99.79
## 3726             14 years old   Male               9th grade   1.68  75.75
## 3727    18 years old or older   Male              12th grade   1.88  88.45
## 3728             16 years old   Male              11th grade     NA     NA
## 3729             15 years old   Male              10th grade   1.68  61.24
## 3730             14 years old   Male               9th grade     NA     NA
## 3731    18 years old or older   Male              12th grade   1.85  80.74
## 3732             16 years old   Male              11th grade   1.96 102.06
## 3733             16 years old   Male              10th grade   1.73  68.04
## 3734    18 years old or older   Male              12th grade   1.83  83.01
## 3735             17 years old   Male              11th grade   1.85  84.37
## 3736             15 years old   Male              10th grade   1.83  96.62
## 3737             14 years old   Male               9th grade   1.75  61.24
## 3738    18 years old or older   Male              12th grade   1.70  65.77
## 3739             16 years old   Male              11th grade   1.83  58.97
## 3740             16 years old   Male              10th grade   1.85  72.58
## 3741             14 years old   Male               9th grade   1.63  58.97
## 3742             16 years old   Male              10th grade   1.80  79.38
## 3743             15 years old   Male               9th grade   1.85  65.77
## 3744             15 years old   Male              10th grade   1.75  73.03
## 3745             14 years old   Male               9th grade   1.78  80.29
## 3746             16 years old   Male              10th grade   1.78  70.31
## 3747             15 years old   Male               9th grade   1.80  63.50
## 3748             17 years old   Male              12th grade   1.78  75.75
## 3749             16 years old   Male              10th grade   1.83  59.88
## 3750             14 years old   Male               9th grade   1.78  58.97
## 3751    18 years old or older   Male              12th grade   1.78  61.24
## 3752             16 years old   Male              10th grade   1.88  77.11
## 3753             15 years old   Male               9th grade     NA     NA
## 3754             14 years old   Male               9th grade   1.80  56.70
## 3755    18 years old or older   Male              12th grade   1.83  72.58
## 3756             15 years old   Male              10th grade   1.73  73.94
## 3757             15 years old   Male               9th grade   1.68  60.33
## 3758    18 years old or older   Male              12th grade   1.80  78.02
## 3759             16 years old   Male              11th grade   1.85  87.09
## 3760             16 years old   Male              10th grade   1.75  63.50
## 3761    18 years old or older   Male              12th grade   1.83  94.35
## 3762             16 years old   Male              11th grade   1.83 112.49
## 3763             16 years old   Male              10th grade   1.78  54.43
## 3764             17 years old   Male              12th grade   1.90  81.65
## 3765             16 years old   Male              11th grade   1.75  65.32
## 3766             15 years old   Male              10th grade   1.75  61.24
## 3767             15 years old   Male               9th grade   1.90  77.11
## 3768             16 years old   Male              10th grade   1.78  88.45
## 3769             15 years old   Male               9th grade   1.88  79.38
## 3770    18 years old or older   Male              12th grade   1.80  72.58
## 3771             15 years old   Male               9th grade   1.96  81.65
## 3772    18 years old or older   Male              12th grade   1.93 147.42
## 3773             15 years old   Male              11th grade   1.73  88.45
## 3774             14 years old   Male               9th grade   1.83  65.77
## 3775             17 years old   Male              12th grade   1.70  72.58
## 3776    18 years old or older   Male              12th grade   1.70  58.97
## 3777             17 years old   Male              11th grade   1.80  87.09
## 3778             17 years old   Male              12th grade   1.90  68.04
## 3779             16 years old Female              10th grade   1.65  86.18
## 3780             17 years old   Male              11th grade   1.88 113.40
## 3781             16 years old Female              10th grade   1.68  56.70
## 3782             17 years old   Male              12th grade   1.80  72.12
## 3783             14 years old Female               9th grade   1.65  52.16
## 3784             17 years old Female              11th grade   1.50  79.38
## 3785             16 years old   Male              10th grade   1.83 104.33
## 3786             17 years old   Male              12th grade   1.78  92.99
## 3787             14 years old Female               9th grade   1.57  49.44
## 3788             17 years old   Male              11th grade   1.75  61.69
## 3789             15 years old   Male              10th grade   1.68  58.97
## 3790             17 years old Female              12th grade   1.60  55.34
## 3791             14 years old   Male               9th grade   1.68  47.63
## 3792             17 years old   Male              11th grade   1.88  99.79
## 3793             16 years old Female              10th grade   1.68  58.97
## 3794             17 years old Female              12th grade   1.65  81.65
## 3795             15 years old   Male              10th grade   1.78  71.67
## 3796             17 years old   Male              12th grade   1.75  54.43
## 3797             15 years old Female              10th grade   1.60  81.65
## 3798             17 years old Female              12th grade   1.70  52.16
## 3799             14 years old Female               9th grade   1.65  56.70
## 3800             17 years old   Male              11th grade     NA     NA
## 3801             17 years old   Male              12th grade   1.90  86.18
## 3802             15 years old   Male               9th grade   1.78  74.84
## 3803             17 years old Female              11th grade   1.65  58.97
## 3804             15 years old   Male              10th grade   1.80  97.07
## 3805    18 years old or older Female              12th grade   1.63  53.98
## 3806             15 years old   Male              10th grade   1.65  61.24
## 3807             17 years old Female              11th grade   1.60  53.98
## 3808             15 years old Female              10th grade   1.78  74.84
## 3809             17 years old   Male              12th grade   1.68  63.50
## 3810             15 years old   Male              10th grade   1.73  95.26
## 3811             16 years old   Male              11th grade   1.68  58.97
## 3812             17 years old   Male              10th grade   1.65  43.55
## 3813             17 years old   Male              12th grade   1.73  70.31
## 3814             15 years old   Male               9th grade   1.65  60.33
## 3815             17 years old Female              11th grade   1.52  44.00
## 3816             15 years old Female              10th grade   1.52  52.16
## 3817    18 years old or older   Male              12th grade   1.63  68.04
## 3818             16 years old   Male              10th grade   1.85  83.92
## 3819             16 years old   Male              11th grade   1.78  90.72
## 3820             15 years old   Male              10th grade   1.78  68.95
## 3821             17 years old   Male              12th grade   1.73  73.48
## 3822             14 years old   Male               9th grade   1.73  58.06
## 3823             17 years old   Male              11th grade   1.85  95.26
## 3824             16 years old   Male              10th grade   1.85 117.94
## 3825             17 years old   Male              12th grade   1.78  69.40
## 3826             15 years old   Male              10th grade   1.75  77.11
## 3827             15 years old Female              10th grade   1.60  71.22
## 3828             17 years old   Male              12th grade   1.68  65.77
## 3829             14 years old Female               9th grade   1.68  49.90
## 3830             16 years old   Male              11th grade   1.88  61.24
## 3831             16 years old Female              10th grade   1.52  43.09
## 3832             17 years old   Male              12th grade   1.75  63.50
## 3833             16 years old Female              11th grade   1.73  82.56
## 3834             16 years old   Male              10th grade   1.70  86.18
## 3835             17 years old Female              12th grade   1.60  70.31
## 3836             15 years old   Male               9th grade   1.73  49.90
## 3837             17 years old   Male              11th grade   1.78  62.60
## 3838             16 years old Female              10th grade   1.63  81.65
## 3839             17 years old   Male              12th grade   1.75  62.14
## 3840             14 years old   Male               9th grade   1.68  48.99
## 3841             17 years old Female              11th grade   1.75  57.15
## 3842             15 years old   Male              10th grade   1.88  76.20
## 3843             17 years old   Male              12th grade     NA     NA
## 3844             14 years old   Male               9th grade   1.57  63.50
## 3845             16 years old   Male              11th grade   1.78  61.24
## 3846    18 years old or older   Male              12th grade   1.80 104.33
## 3847             15 years old Female               9th grade   1.68  47.17
## 3848             16 years old   Male              11th grade   1.85 147.42
## 3849             14 years old Female               9th grade   1.57  44.45
## 3850             16 years old   Male              11th grade   1.70  41.73
## 3851             15 years old Female               9th grade   1.75  63.50
## 3852             17 years old Female              12th grade     NA     NA
## 3853             16 years old   Male              10th grade   1.70  82.56
## 3854             15 years old Female               9th grade   1.70  44.91
## 3855             17 years old   Male              11th grade   1.78 107.96
## 3856             15 years old Female              10th grade   1.68 100.25
## 3857             15 years old   Male               9th grade   1.70  57.15
## 3858             17 years old   Male              11th grade   1.85  63.50
## 3859             16 years old Female              10th grade     NA     NA
## 3860             17 years old   Male              12th grade   1.75  54.43
## 3861             14 years old   Male               9th grade   1.83  72.58
## 3862             16 years old   <NA>              11th grade     NA     NA
## 3863             15 years old Female              10th grade   1.65  58.97
## 3864    18 years old or older Female              12th grade   1.63  64.86
## 3865             14 years old Female               9th grade   1.70  52.16
## 3866             16 years old   Male              11th grade   1.80  68.04
## 3867             15 years old   Male              10th grade   1.70  52.16
## 3868             17 years old   Male              12th grade   1.85  75.75
## 3869             15 years old   Male              10th grade   1.83  54.43
## 3870             16 years old   Male              10th grade   1.78  76.20
## 3871             15 years old   Male              10th grade   1.63 106.60
## 3872             15 years old   Male              10th grade   1.83 111.13
## 3873             17 years old   Male              11th grade   1.85  79.38
## 3874             15 years old Female              10th grade   1.60  49.90
## 3875             14 years old   Male               9th grade   1.80  68.04
## 3876             17 years old   Male              11th grade   1.78  91.17
## 3877    18 years old or older   Male              12th grade   1.75  83.92
## 3878             15 years old   Male               9th grade   1.78  63.50
## 3879             17 years old   Male              11th grade   1.83  81.65
## 3880             16 years old Female              10th grade   1.63  54.43
## 3881             17 years old Female              12th grade   1.78  70.31
## 3882             14 years old Female               9th grade   1.63  77.11
## 3883             17 years old   Male              11th grade   1.85  79.38
## 3884             15 years old Female              10th grade   1.73  65.77
## 3885    18 years old or older   Male              12th grade   1.85  70.31
## 3886             15 years old   Male               9th grade   1.75  61.24
## 3887             16 years old Female              11th grade   1.73  58.97
## 3888             16 years old Female              10th grade   1.68  49.90
## 3889             17 years old Female              11th grade   1.63  56.70
## 3890             15 years old Female              10th grade   1.68  68.04
## 3891             17 years old   Male              12th grade   1.70  61.24
## 3892             15 years old Female              12th grade   1.63  50.80
## 3893             17 years old   Male              11th grade   1.73  65.77
## 3894             15 years old   Male              10th grade   1.75  65.77
## 3895             16 years old Female              10th grade   1.57  72.58
## 3896             17 years old Female              12th grade   1.63  75.75
## 3897             15 years old   Male               9th grade   1.80 108.86
## 3898             17 years old   Male              11th grade   1.80  77.11
## 3899             16 years old Female              11th grade     NA     NA
## 3900             15 years old   Male              10th grade   1.70  63.50
## 3901             17 years old Female              12th grade   1.60  49.44
## 3902             15 years old   Male               9th grade   1.73  52.16
## 3903             17 years old Female              11th grade   1.63  51.71
## 3904             17 years old   Male              11th grade   1.73  68.04
## 3905             16 years old Female              10th grade   1.60  48.99
## 3906    18 years old or older Female              12th grade   1.70  54.89
## 3907             15 years old   Male               9th grade   1.93  92.99
## 3908             16 years old   Male              11th grade   1.78  61.24
## 3909             15 years old Female              10th grade   1.65  63.05
## 3910             17 years old Female              12th grade   1.63  75.75
## 3911             14 years old Female               9th grade     NA     NA
## 3912             17 years old   Male              11th grade   1.55  53.98
## 3913             16 years old   Male              10th grade   1.83  58.97
## 3914             14 years old Female               9th grade   1.52  45.81
## 3915             16 years old Female              11th grade   1.75  70.76
## 3916             15 years old Female              10th grade   1.57  49.44
## 3917    18 years old or older   Male              12th grade   1.78  79.38
## 3918             17 years old   Male              11th grade   1.78  54.89
## 3919             16 years old   Male              10th grade   1.83  74.84
## 3920             17 years old   Male              12th grade   1.73  65.77
## 3921             15 years old Female               9th grade   1.57  49.90
## 3922             17 years old   Male              11th grade   1.75  83.92
## 3923             16 years old   Male              10th grade   1.70  58.97
## 3924    18 years old or older Female              12th grade   1.70  79.38
## 3925             14 years old   Male               9th grade   1.75  81.65
## 3926             14 years old Female               9th grade   1.63  58.97
## 3927             17 years old   Male              11th grade   1.75  61.24
## 3928             14 years old   Male              10th grade   1.73  54.43
## 3929             17 years old   Male              12th grade   1.93 113.40
## 3930             15 years old   Male               9th grade   1.65  49.90
## 3931             15 years old Female               9th grade   1.68  70.31
## 3932             16 years old   Male              10th grade   1.78  83.92
## 3933             17 years old Female              12th grade   1.63  52.16
## 3934             14 years old   Male               9th grade   1.75  63.50
## 3935             16 years old Female              11th grade   1.55  58.97
## 3936             15 years old Female              10th grade   1.68  56.70
## 3937    18 years old or older   Male              12th grade   1.80  69.40
## 3938             14 years old   Male               9th grade   1.80  81.65
## 3939             16 years old   Male              11th grade   1.83  83.92
## 3940             16 years old   Male              10th grade   1.78  61.24
## 3941             15 years old   Male               9th grade   1.70  61.24
## 3942             17 years old Female              11th grade   1.50  58.97
## 3943             15 years old Female              10th grade     NA     NA
## 3944             17 years old Female              12th grade   1.78  64.86
## 3945             15 years old   Male               9th grade   1.80  68.04
## 3946             16 years old Female              11th grade   1.75  67.59
## 3947             15 years old   Male              10th grade   1.75  58.06
## 3948             17 years old   Male              12th grade   1.78  79.38
## 3949             15 years old   Male               9th grade   1.75  68.04
## 3950             17 years old   Male              11th grade   1.73  74.84
## 3951             16 years old   Male              10th grade   1.65  54.43
## 3952    18 years old or older   Male              12th grade   1.85  62.60
## 3953             13 years old Female               9th grade   1.73  45.81
## 3954             15 years old Female              10th grade   1.60  55.79
## 3955    18 years old or older Female              12th grade   1.70  81.65
## 3956             14 years old   Male               9th grade   1.75  56.70
## 3957             15 years old Female              10th grade   1.70  54.43
## 3958             14 years old Female               9th grade   1.68  54.43
## 3959             15 years old Female               9th grade   1.60  54.43
## 3960             14 years old Female               9th grade   1.52  40.82
## 3961             15 years old Female              10th grade   1.63  56.25
## 3962             17 years old   Male              10th grade   1.78 108.86
## 3963             17 years old Female              11th grade   1.78  71.22
## 3964             17 years old   Male              11th grade   1.78 113.40
## 3965             17 years old   Male              12th grade   1.78  58.97
## 3966    18 years old or older   Male              12th grade   1.73  68.04
## 3967             14 years old Female               9th grade   1.60  57.15
## 3968             15 years old   Male               9th grade   1.75  64.86
## 3969             15 years old Female              10th grade     NA     NA
## 3970             15 years old   Male              10th grade   1.88  79.38
## 3971             17 years old Female              11th grade   1.70  68.04
## 3972             15 years old   Male               9th grade   1.73  81.65
## 3973             13 years old Female               9th grade     NA     NA
## 3974             16 years old   Male              10th grade   1.80  83.92
## 3975             15 years old Female              10th grade   1.68  92.99
## 3976             16 years old   Male              11th grade   1.80  72.58
## 3977             16 years old   Male              11th grade   1.85  74.84
## 3978    18 years old or older Female              12th grade   1.47  54.43
## 3979             17 years old Female              12th grade   1.70  65.77
## 3980             15 years old   Male               9th grade   1.65  83.01
## 3981             15 years old   Male              10th grade   1.93  79.38
## 3982             16 years old   Male              10th grade   1.78  95.26
## 3983             17 years old   Male              11th grade   1.78  95.26
## 3984             17 years old Female              12th grade   1.68  61.24
## 3985             17 years old Female              12th grade   1.68  61.24
## 3986    18 years old or older Female              12th grade   1.75 131.54
## 3987             15 years old Female               9th grade   1.63  44.91
## 3988             15 years old Female               9th grade   1.63  46.27
## 3989             16 years old Female              10th grade   1.55  52.16
## 3990             15 years old Female              10th grade   1.65  42.18
## 3991             17 years old Female              11th grade   1.65  72.58
## 3992             17 years old Female              11th grade   1.60  61.24
## 3993             17 years old Female              12th grade   1.60  49.90
## 3994             17 years old Female              12th grade   1.75  56.70
## 3995             15 years old Female               9th grade   1.68  63.50
## 3996             14 years old Female               9th grade   1.60  53.52
## 3997             15 years old   Male              10th grade   1.73  65.77
## 3998             15 years old   Male              10th grade   1.78  57.61
## 3999             17 years old Female              11th grade   1.70  70.31
## 4000    18 years old or older Female              12th grade   1.57  59.88
## 4001             14 years old   Male               9th grade   1.75  61.24
## 4002             15 years old   Male               9th grade   1.73  68.04
## 4003             15 years old   Male              10th grade   1.78  77.11
## 4004             16 years old   Male              10th grade   1.93  70.31
## 4005             17 years old   Male              11th grade     NA     NA
## 4006             17 years old Female              11th grade   1.65  65.77
## 4007             17 years old Female              12th grade   1.70  58.06
## 4008    18 years old or older Female              12th grade   1.57  58.97
## 4009             15 years old   Male               9th grade   1.70  55.34
## 4010             16 years old Female              10th grade   1.68  56.70
## 4011             15 years old   Male              10th grade   1.83 113.40
## 4012             17 years old   Male              11th grade   1.75  77.11
## 4013             17 years old Female              11th grade     NA     NA
## 4014             17 years old Female              12th grade   1.57  53.98
## 4015             17 years old Female              12th grade   1.80 108.86
## 4016             15 years old Female               9th grade   1.65  49.90
## 4017             16 years old Female              10th grade   1.68  54.43
## 4018             15 years old Female              10th grade   1.70  54.89
## 4019             17 years old   Male              11th grade   1.68  40.82
## 4020             17 years old Female              11th grade   1.55  45.36
## 4021             17 years old   Male              12th grade   1.78  56.70
## 4022    18 years old or older   Male              12th grade   1.78 104.33
## 4023             15 years old   Male               9th grade   1.70  51.71
## 4024             14 years old Female               9th grade   1.63  77.57
## 4025             15 years old Female              10th grade     NA     NA
## 4026             16 years old   Male              10th grade   1.73 102.06
## 4027             16 years old   Male              11th grade   1.78  72.58
## 4028             16 years old Female              11th grade   1.57  48.54
## 4029             17 years old Female              12th grade   1.55  47.63
## 4030    18 years old or older   Male              12th grade   1.85 102.06
## 4031             14 years old   Male               9th grade   1.80  68.04
## 4032             15 years old   Male               9th grade   1.63  61.69
## 4033             16 years old   Male              10th grade   1.70  68.95
## 4034             15 years old Female              10th grade   1.70  78.47
## 4035             16 years old   Male              11th grade   1.83  58.97
## 4036             14 years old Female               9th grade   1.63  56.70
## 4037                     <NA>   Male              10th grade     NA     NA
## 4038             17 years old Female              11th grade     NA     NA
## 4039             16 years old Female              11th grade   1.68  58.97
## 4040             17 years old   Male              12th grade   1.78  83.92
## 4041    18 years old or older   Male              12th grade   1.75  71.22
## 4042             14 years old Female               9th grade   1.55  43.09
## 4043             15 years old Female              10th grade   1.73 111.13
## 4044             16 years old Female              10th grade   1.73  53.52
## 4045    18 years old or older   Male              11th grade     NA     NA
## 4046             16 years old   Male              11th grade   1.70  69.40
## 4047    18 years old or older   Male              12th grade   1.83  65.77
## 4048    18 years old or older Female              12th grade   1.60  49.90
## 4049             15 years old Female               9th grade   1.63  79.38
## 4050             14 years old   Male               9th grade   1.75 108.86
## 4051             16 years old Female              10th grade   1.65  67.13
## 4052             15 years old   Male              10th grade   1.80  71.22
## 4053             17 years old Female              11th grade   1.80  89.81
## 4054             16 years old   Male              11th grade   1.80  90.72
## 4055             17 years old Female              12th grade   1.50  54.43
## 4056             17 years old Female              12th grade   1.70  70.31
## 4057             15 years old   Male               9th grade   1.68  63.50
## 4058             15 years old   Male               9th grade   1.75  76.66
## 4059             16 years old   Male              10th grade   1.70  58.06
## 4060             16 years old   Male              10th grade   1.70  95.26
## 4061             17 years old Female              11th grade   1.75 127.92
## 4062    18 years old or older   Male              12th grade   1.78  61.24
## 4063    18 years old or older   Male              12th grade   1.88 124.74
## 4064             16 years old Female              10th grade   1.55  44.45
## 4065             14 years old Female               9th grade   1.60  48.99
## 4066             15 years old Female              10th grade   1.63  63.50
## 4067             16 years old   Male              12th grade   1.83  95.26
## 4068    18 years old or older Female              12th grade   1.60  63.50
## 4069             15 years old   Male               9th grade   1.70  58.97
## 4070             15 years old   Male              10th grade   1.83 104.33
## 4071             17 years old Female              11th grade   1.75  54.43
## 4072             17 years old Female              12th grade   1.63  83.92
## 4073             17 years old Female              12th grade   1.68  86.18
## 4074             15 years old   Male               9th grade   1.83  74.84
## 4075             17 years old   Male              11th grade   1.80 140.62
## 4076    18 years old or older Female              12th grade   1.63  71.67
## 4077             17 years old Female              12th grade   1.63  61.24
## 4078             14 years old Female               9th grade     NA     NA
## 4079             16 years old Female              11th grade     NA     NA
## 4080    18 years old or older   Male              12th grade   1.83  86.18
## 4081             14 years old   Male               9th grade   1.73  66.23
## 4082             14 years old Female                    <NA>   1.70  48.99
## 4083             16 years old Female              11th grade   1.83  68.49
## 4084             17 years old Female              12th grade   1.60  58.51
## 4085             17 years old   Male              12th grade   1.85  74.84
## 4086             15 years old Female               9th grade   1.68  79.38
## 4087             16 years old Female              11th grade   1.70  74.84
## 4088             17 years old Female              12th grade   1.70  58.06
## 4089             17 years old Female              12th grade     NA     NA
## 4090             14 years old Female               9th grade   1.57  45.36
## 4091             14 years old   Male               9th grade   1.65  58.06
## 4092    18 years old or older   Male              12th grade   1.83  71.22
## 4093             17 years old   Male              12th grade   1.73  73.94
## 4094             15 years old   Male               9th grade   1.68  46.72
## 4095             14 years old Female               9th grade   1.57  48.99
## 4096             16 years old Female              10th grade   1.75  58.97
## 4097             15 years old Female               9th grade   1.52  41.28
## 4098             15 years old Female               9th grade   1.63  55.79
## 4099             16 years old   Male              10th grade   1.75  66.68
## 4100    18 years old or older   Male              10th grade   1.55 136.08
## 4101             16 years old Female              11th grade   1.63  61.24
## 4102             17 years old Female              12th grade   1.75  59.88
## 4103    18 years old or older Female              12th grade   1.57  50.80
## 4104             16 years old   Male               9th grade   1.70  94.35
## 4105             15 years old   Male               9th grade   1.73  61.24
## 4106             15 years old   Male               9th grade   1.78  65.77
## 4107             15 years old   Male               9th grade   1.63  54.89
## 4108             15 years old Female              10th grade   1.65  56.25
## 4109             16 years old Female              10th grade   1.55  39.92
## 4110             16 years old   Male              11th grade   1.65  58.97
## 4111    18 years old or older   Male              12th grade   1.83  65.77
## 4112             17 years old   Male              12th grade   1.80  68.04
## 4113             15 years old   Male               9th grade   1.78  63.05
## 4114             14 years old Female               9th grade     NA     NA
## 4115             16 years old Female              10th grade   1.68  53.52
## 4116             15 years old Female              10th grade   1.68  68.04
## 4117             16 years old   Male              11th grade   1.75  55.79
## 4118    18 years old or older   Male              11th grade   1.90  68.49
## 4119             17 years old Female              12th grade   1.52  72.58
## 4120    18 years old or older   Male              12th grade     NA     NA
## 4121             15 years old   Male               9th grade   1.75  58.06
## 4122             15 years old Female              10th grade   1.60  56.70
## 4123             16 years old Female              10th grade   1.57  86.18
## 4124             16 years old   Male              11th grade   1.68  51.26
## 4125             17 years old Female              12th grade   1.70  58.97
## 4126    18 years old or older   Male              12th grade   1.80  82.56
## 4127             15 years old   Male               9th grade   1.90 102.06
## 4128             14 years old   Male               9th grade   1.68  72.58
## 4129             16 years old   Male               9th grade   1.88  90.72
## 4130    18 years old or older Female              12th grade   1.55  43.09
## 4131             15 years old Female              10th grade   1.70 106.60
## 4132             15 years old Female               9th grade   1.60  55.79
## 4133             17 years old Female              12th grade   1.73  59.88
## 4134             17 years old   Male              11th grade   1.73  54.43
## 4135             16 years old   Male              10th grade   1.68  56.70
## 4136             16 years old   Male              11th grade   1.83  72.58
## 4137             15 years old Female               9th grade   1.60  86.18
## 4138    18 years old or older   Male              12th grade   1.83  77.11
## 4139             15 years old   Male              10th grade   1.88  61.24
## 4140             17 years old   Male              11th grade   1.73  61.69
## 4141             15 years old   Male               9th grade   1.60  67.13
## 4142             17 years old Female              12th grade   1.70  63.50
## 4143             15 years old Female               9th grade   1.68  56.70
## 4144             17 years old   Male              12th grade   1.68  61.24
## 4145             16 years old Female              10th grade   1.60  89.81
## 4146             16 years old   Male              11th grade   1.83  72.58
## 4147             17 years old Female              12th grade   1.70  68.04
## 4148             16 years old Female              10th grade   1.60  50.80
## 4149    18 years old or older   Male              11th grade   1.73  71.67
## 4150             14 years old Female               9th grade   1.78  79.38
## 4151    18 years old or older Female              12th grade   1.70  82.56
## 4152             17 years old   Male              10th grade     NA     NA
## 4153             16 years old   Male              11th grade   1.78 110.22
## 4154             15 years old   Male              10th grade   1.73  63.50
## 4155             17 years old   Male              11th grade   1.83  67.13
## 4156             15 years old Female               9th grade   1.63  43.09
## 4157    18 years old or older Female              12th grade     NA     NA
## 4158             15 years old Female              10th grade   1.75  79.38
## 4159    18 years old or older   Male              12th grade   1.78  56.70
## 4160             14 years old Female               9th grade   1.68  45.36
## 4161             17 years old Female              12th grade   1.73  68.04
## 4162             16 years old   Male               9th grade   1.83  63.50
## 4163             17 years old Female              12th grade   1.52  54.43
## 4164             15 years old   Male              10th grade   1.80  61.24
## 4165    18 years old or older Female              12th grade   1.68  86.18
## 4166             16 years old Female              10th grade   1.63  54.43
## 4167             15 years old Female               9th grade     NA     NA
## 4168             17 years old   Male              12th grade   1.65  63.50
## 4169             16 years old   Male              10th grade   1.78  54.43
## 4170             16 years old   Male               9th grade     NA     NA
## 4171    18 years old or older Female              12th grade   1.73  77.11
## 4172             15 years old   Male              10th grade   1.80  65.77
## 4173             16 years old   Male              11th grade   1.70  68.04
## 4174             14 years old   Male               9th grade   1.73  63.50
## 4175    18 years old or older Female              12th grade   1.70  91.17
## 4176             15 years old   Male              10th grade   1.70  65.77
## 4177             16 years old   Male               9th grade   1.75  86.18
## 4178             15 years old Female              10th grade     NA     NA
## 4179             17 years old Female              11th grade   1.57  58.97
## 4180             15 years old Female               9th grade   1.57  38.56
## 4181             17 years old   Male              10th grade   1.65  63.50
## 4182             16 years old Female              11th grade     NA     NA
## 4183             15 years old   Male               9th grade   1.65  77.11
## 4184             17 years old Female              12th grade   1.52  61.24
## 4185             16 years old   Male              11th grade   1.78  95.26
## 4186             15 years old Female               9th grade     NA     NA
## 4187    18 years old or older Female              12th grade   1.63  63.50
## 4188             15 years old   Male              10th grade   1.80  49.90
## 4189    18 years old or older   Male              11th grade   1.63  99.79
## 4190             15 years old   Male              10th grade   1.70  56.70
## 4191             16 years old   Male              11th grade   1.85  65.77
## 4192             14 years old Female               9th grade   1.63  95.26
## 4193    18 years old or older Female              12th grade   1.55  95.26
## 4194             15 years old Female              10th grade     NA     NA
## 4195             16 years old   Male              11th grade   1.80  83.92
## 4196             14 years old Female               9th grade   1.63  45.36
## 4197             17 years old Female              12th grade   1.57  52.16
## 4198             15 years old Female              10th grade   1.60  63.50
## 4199             17 years old Female              11th grade   1.57  48.08
## 4200             15 years old Female               9th grade   1.60  61.24
## 4201             17 years old   Male              12th grade   1.90  97.52
## 4202             15 years old Female              10th grade   1.63  57.15
## 4203             16 years old Female              11th grade   1.63  68.04
## 4204             15 years old Female               9th grade     NA     NA
## 4205             17 years old Female              12th grade   1.65  49.90
## 4206             17 years old Female              10th grade   1.57  81.65
## 4207             17 years old Female              11th grade   1.60  57.15
## 4208    18 years old or older Female              12th grade   1.57  47.63
## 4209             15 years old Female              10th grade   1.57  54.43
## 4210             16 years old Female              11th grade   1.52  68.04
## 4211             16 years old   Male               9th grade   1.63  51.26
## 4212    18 years old or older   Male              12th grade   1.73  74.84
## 4213             15 years old Female              10th grade   1.73  49.44
## 4214             17 years old Female              11th grade   1.65  54.43
## 4215             15 years old   Male               9th grade   1.80  74.39
## 4216             17 years old   Male              12th grade   1.78  58.97
## 4217             16 years old   Male              10th grade     NA     NA
## 4218             17 years old   Male              11th grade   1.73  72.58
## 4219    18 years old or older Female              12th grade   1.73  90.72
## 4220  12 years old or younger Female              10th grade     NA     NA
## 4221             17 years old   Male              11th grade     NA     NA
## 4222             17 years old   Male              10th grade   1.65  58.97
## 4223             15 years old   Male              10th grade   1.78  57.61
## 4224             16 years old   Male              10th grade   1.83  81.65
## 4225             16 years old Female              10th grade   1.50  58.97
## 4226             16 years old Female              11th grade   1.55  72.58
## 4227             16 years old Female              10th grade   1.57  79.38
## 4228             16 years old   Male              10th grade   1.73  54.43
## 4229             17 years old Female              11th grade   1.55  77.11
## 4230             15 years old   Male               9th grade   1.75  80.29
## 4231             15 years old Female               9th grade   1.68  63.50
## 4232             15 years old Female              10th grade   1.63  98.43
## 4233             16 years old   Male               9th grade   1.75  52.16
## 4234             16 years old   Male              10th grade   1.65  54.43
## 4235             16 years old   Male              10th grade   1.78  61.24
## 4236             16 years old   Male              11th grade   1.85  70.31
## 4237             16 years old   Male              10th grade   1.65  72.58
## 4238             17 years old Female              10th grade   1.60  90.72
## 4239             16 years old Female              10th grade   1.55  54.43
## 4240             17 years old Female              11th grade   1.60  58.97
## 4241             17 years old Female              11th grade   1.55  42.18
## 4242             16 years old Female              10th grade   1.55  52.62
## 4243             17 years old Female              11th grade   1.55  61.69
## 4244             15 years old   Male               9th grade   1.75  58.97
## 4245             14 years old   Male               9th grade   1.75  64.86
## 4246             16 years old Female              10th grade     NA     NA
## 4247             16 years old   Male              11th grade   1.60  58.51
## 4248    18 years old or older Female              12th grade   1.63  58.06
## 4249             15 years old Female               9th grade     NA     NA
## 4250             15 years old   Male              10th grade   1.75  72.58
## 4251             17 years old Female              11th grade   1.68  54.43
## 4252             17 years old Female              12th grade   1.73  63.50
## 4253             14 years old   Male               9th grade   1.40  45.36
## 4254             16 years old   Male              10th grade   1.80  65.77
## 4255             17 years old Female              11th grade   1.63  46.72
## 4256             17 years old   Male              12th grade   1.85  86.18
## 4257             14 years old   Male               9th grade   1.75  70.31
## 4258             15 years old   Male              10th grade   1.78  70.31
## 4259             16 years old Female              11th grade   1.60  77.11
## 4260             17 years old   Male              12th grade   1.83  70.31
## 4261             15 years old Female               9th grade   1.52  44.00
## 4262             16 years old   Male              10th grade   1.68  56.70
## 4263             16 years old Female              11th grade   1.57  54.43
## 4264             17 years old   Male              12th grade   1.70  65.77
## 4265             14 years old   Male               9th grade   1.73  83.92
## 4266             16 years old Female              10th grade   1.57  59.88
## 4267             16 years old   Male              11th grade     NA     NA
## 4268             15 years old   Male               9th grade   1.68  47.63
## 4269             17 years old Female              11th grade   1.70  61.24
## 4270             17 years old Female              11th grade   1.70  61.24
## 4271    18 years old or older   Male              12th grade   1.83  77.11
## 4272             15 years old   Male               9th grade   1.70  58.97
## 4273             16 years old Female              10th grade   1.63  52.16
## 4274             16 years old   Male              11th grade   1.73  63.50
## 4275             14 years old   Male               9th grade   1.70  58.97
## 4276             15 years old Female              10th grade   1.65  65.77
## 4277             16 years old Female              11th grade   1.65  56.70
## 4278    18 years old or older   Male              12th grade   1.78  73.03
## 4279             15 years old   Male               9th grade   1.65  50.80
## 4280             16 years old Female              10th grade   1.68  59.88
## 4281             16 years old Female              11th grade   1.65  49.90
## 4282             17 years old   Male              12th grade   1.75  80.74
## 4283             14 years old   Male               9th grade   1.83  94.80
## 4284             15 years old   Male              10th grade   1.83  70.31
## 4285             16 years old   Male              11th grade   1.83  72.58
## 4286             17 years old Female              12th grade   1.63  56.70
## 4287             14 years old Female               9th grade   1.63  60.78
## 4288             16 years old   Male              10th grade   1.80  65.77
## 4289             17 years old   Male              11th grade   1.65  56.70
## 4290    18 years old or older Female              12th grade   1.63  61.24
## 4291             15 years old Female               9th grade   1.70  68.04
## 4292             16 years old   Male              10th grade   1.70  58.97
## 4293             16 years old Female              11th grade     NA     NA
## 4294             17 years old Female              12th grade   1.60  57.61
## 4295             15 years old   Male               9th grade   1.68  68.04
## 4296             15 years old Female              10th grade   1.65  54.43
## 4297             17 years old   Male              11th grade   1.83  70.31
## 4298    18 years old or older Female              12th grade   1.57  56.70
## 4299             15 years old   Male               9th grade   1.73  48.99
## 4300             16 years old Female              10th grade   1.68  64.41
## 4301    18 years old or older   Male              12th grade   1.78  71.67
## 4302             15 years old Female              10th grade   1.70  56.70
## 4303             17 years old   Male              11th grade   1.75  61.24
## 4304             17 years old Female              12th grade   1.63  62.60
## 4305             16 years old   Male              10th grade   1.75  61.69
## 4306    18 years old or older Female              12th grade   1.65  61.24
## 4307             16 years old Female              10th grade   1.57  47.63
## 4308    18 years old or older   Male              12th grade   1.85  64.41
## 4309             14 years old Female               9th grade   1.63  58.06
## 4310             15 years old Female              10th grade   1.60  56.70
## 4311             16 years old   Male              11th grade   1.73  77.11
## 4312    18 years old or older Female              12th grade   1.60  49.90
## 4313    18 years old or older Female              12th grade   1.55  58.97
## 4314             15 years old   Male              10th grade   1.68  57.61
## 4315    18 years old or older   Male              12th grade   1.90  65.77
## 4316             15 years old Female              10th grade   1.57  54.43
## 4317    18 years old or older   Male              12th grade   1.75  58.97
## 4318    18 years old or older Female              12th grade   1.63  58.51
## 4319             15 years old Female               9th grade   1.57  63.50
## 4320             16 years old   Male              10th grade   1.68  62.60
## 4321             17 years old   Male              11th grade   1.70  56.70
## 4322    18 years old or older Female              12th grade   1.55  62.60
## 4323             17 years old Female              12th grade   1.55  58.97
## 4324             14 years old   Male               9th grade   1.70  59.42
## 4325             15 years old   Male               9th grade   1.80  86.18
## 4326             14 years old   Male               9th grade   1.78  58.97
## 4327             15 years old Female               9th grade   1.68  90.72
## 4328             15 years old Female               9th grade   1.57  47.63
## 4329    18 years old or older Female              12th grade   1.73  61.24
## 4330    18 years old or older   Male              12th grade   1.85  72.58
## 4331             16 years old   Male              10th grade   1.70  71.22
## 4332             15 years old   Male               9th grade   1.73  85.73
## 4333             15 years old   Male              10th grade   1.83  92.99
## 4334    18 years old or older Female              12th grade   1.60  81.65
## 4335             15 years old   Male               9th grade   1.85  66.68
## 4336             15 years old Female              10th grade   1.65  68.04
## 4337    18 years old or older Female              12th grade   1.55  48.54
## 4338    18 years old or older Female              12th grade   1.57  52.16
## 4339             14 years old Female               9th grade   1.70 108.86
## 4340             16 years old Female               9th grade   1.68  77.11
## 4341    18 years old or older   Male              12th grade   1.80  74.84
## 4342             15 years old Female               9th grade   1.70  73.94
## 4343             15 years old Female               9th grade   1.68  54.89
## 4344             17 years old Female              12th grade   1.70  61.24
## 4345    18 years old or older   Male              12th grade   1.88 122.47
## 4346             14 years old Female               9th grade   1.70  51.26
## 4347             15 years old Female               9th grade   1.60  86.18
## 4348             15 years old Female               9th grade     NA     NA
## 4349             17 years old Female              10th grade   1.57  48.54
## 4350             17 years old   Male              12th grade   1.93 145.15
## 4351             17 years old   Male              12th grade   1.83 110.22
## 4352             15 years old   Male               9th grade   1.70  61.24
## 4353             16 years old Female              10th grade   1.65  63.50
## 4354    18 years old or older   Male              12th grade   1.90  90.72
## 4355             14 years old   Male               9th grade   1.78 113.40
## 4356             15 years old   <NA>               9th grade     NA     NA
## 4357             16 years old Female               9th grade     NA     NA
## 4358             15 years old Female               9th grade   1.78 101.61
## 4359             16 years old   Male               9th grade   1.78 138.35
## 4360             15 years old   Male               9th grade   1.68  55.79
## 4361             15 years old Female              10th grade   1.57  52.16
## 4362    18 years old or older   Male              12th grade   1.80  86.18
## 4363             15 years old Female               9th grade   1.55  48.99
## 4364             15 years old Female               9th grade   1.57  48.99
## 4365    18 years old or older Female              12th grade   1.65  65.77
## 4366    18 years old or older   Male              12th grade   1.75  61.24
## 4367             15 years old   Male              10th grade   1.78  72.58
## 4368             14 years old Female               9th grade   1.83 104.33
## 4369             14 years old Female               9th grade   1.50  37.65
## 4370             14 years old Female               9th grade   1.63  56.70
## 4371             16 years old Female              10th grade   1.55  45.81
## 4372    18 years old or older   Male              12th grade   1.73  63.50
## 4373             17 years old Female              12th grade   1.60  50.80
## 4374             15 years old   Male               9th grade   1.83 109.77
## 4375             15 years old   Male                    <NA>   1.75  92.99
## 4376             15 years old   Male               9th grade   1.85  77.57
## 4377             15 years old   Male              10th grade   1.93  77.11
## 4378    18 years old or older   Male              12th grade   1.78  86.18
## 4379    18 years old or older   Male              12th grade   1.73  56.70
## 4380             15 years old Female               9th grade     NA     NA
## 4381             14 years old Female               9th grade   1.70 113.40
## 4382    18 years old or older Female              12th grade   1.60  72.58
## 4383    18 years old or older   Male              12th grade   1.96 124.74
## 4384             15 years old Female               9th grade   1.52  47.63
## 4385    18 years old or older   Male              12th grade   1.85  70.31
## 4386             15 years old   Male               9th grade     NA     NA
## 4387             15 years old Female               9th grade   1.65  68.04
## 4388             16 years old   Male              10th grade   1.93  79.38
## 4389    18 years old or older   Male              12th grade   1.83  74.84
## 4390             17 years old   Male              12th grade   1.70  72.58
## 4391             16 years old Female               9th grade     NA     NA
## 4392             15 years old Female               9th grade   1.50  42.18
## 4393             15 years old   Male              10th grade   1.57  49.90
## 4394    18 years old or older   Male              12th grade     NA     NA
## 4395             15 years old   Male               9th grade   1.83  81.65
## 4396             15 years old Female               9th grade   1.65  52.62
## 4397             16 years old Female              10th grade   1.70  61.24
## 4398             17 years old   Male              11th grade   1.73  61.24
## 4399             17 years old Female              11th grade   1.68  64.86
## 4400             16 years old Female              10th grade   1.65 104.33
## 4401             16 years old   Male              10th grade   1.88  95.26
## 4402             16 years old Female              11th grade   1.63  86.18
## 4403             15 years old Female              10th grade   1.57  44.00
## 4404             16 years old Female              10th grade   1.60  54.43
## 4405    18 years old or older   Male              12th grade   1.90  83.92
## 4406    18 years old or older   Male              12th grade   1.88  81.65
## 4407             15 years old   Male              10th grade   1.80 113.40
## 4408             16 years old Female              10th grade   1.70  76.66
## 4409             16 years old   Male              11th grade   1.83  95.26
## 4410             16 years old Female              10th grade   1.68 121.11
## 4411             15 years old Female              10th grade     NA     NA
## 4412             17 years old   Male              11th grade   1.80  83.92
## 4413             17 years old   Male              11th grade   1.63  49.90
## 4414             16 years old   Male              10th grade   1.70  54.89
## 4415             17 years old   Male              10th grade   1.90  88.45
## 4416             15 years old   Male              10th grade   1.83  65.77
## 4417             17 years old Female              11th grade   1.73  59.88
## 4418             17 years old   Male              11th grade   1.80  72.58
## 4419             16 years old Female              10th grade   1.55  52.16
## 4420             17 years old   Male              11th grade   1.96  63.96
## 4421             16 years old Female              11th grade   1.60  77.57
## 4422             16 years old Female              11th grade     NA     NA
## 4423             17 years old   Male              10th grade   1.68  65.77
## 4424             16 years old   Male              11th grade   1.96  79.83
## 4425             15 years old Female              10th grade   1.70  45.81
## 4426             16 years old   Male              11th grade   1.75  96.62
## 4427    18 years old or older Female              11th grade   1.55  65.32
## 4428             15 years old   Male              10th grade   1.80  83.46
## 4429             16 years old   Male              10th grade   1.83  73.94
## 4430             17 years old Female              11th grade   1.57  58.97
## 4431             17 years old   Male              12th grade   1.73  74.84
## 4432             16 years old   Male              10th grade   1.73  61.24
## 4433             16 years old Female              10th grade   1.65  81.65
## 4434             16 years old Female              11th grade   1.60  48.08
## 4435             17 years old   Male              11th grade   1.78  58.97
## 4436             15 years old Female              10th grade   1.65  58.97
## 4437             16 years old   Male              10th grade   1.73  90.72
## 4438             17 years old Female              11th grade   1.68  68.04
## 4439             17 years old Female              12th grade   1.57  57.61
## 4440             15 years old   Male              10th grade   1.83  79.83
## 4441             16 years old Female              10th grade   1.57  54.43
## 4442             17 years old Female              11th grade   1.65 102.06
## 4443             17 years old   Male              11th grade   1.68 106.60
## 4444             15 years old Female              10th grade   1.57  49.44
## 4445             14 years old Female               9th grade   1.60  68.04
## 4446             15 years old Female              10th grade   1.57  77.11
## 4447             17 years old   Male              11th grade   1.85  78.47
## 4448    18 years old or older   Male              12th grade   1.80  73.94
## 4449             16 years old Female              11th grade     NA     NA
## 4450             16 years old Female              10th grade   1.68  68.04
## 4451             17 years old   Male              11th grade   1.75  97.98
## 4452             15 years old   Male              10th grade   1.80  73.94
## 4453             16 years old Female              10th grade   1.68  63.50
## 4454             17 years old   Male              12th grade   1.83  81.65
## 4455    18 years old or older Female              12th grade   1.73  97.52
## 4456    18 years old or older   Male              12th grade   1.83  79.83
## 4457    18 years old or older Female              12th grade   1.57  56.70
## 4458    18 years old or older   Male              12th grade   1.83  61.69
## 4459    18 years old or older   Male              12th grade   1.85  74.84
## 4460             15 years old   Male              10th grade   1.63  53.98
## 4461             17 years old   Male              11th grade   1.70  82.56
## 4462             17 years old   Male              11th grade   1.83  70.31
## 4463             15 years old   Male              10th grade     NA     NA
## 4464             15 years old   Male              10th grade   1.70  58.06
## 4465             17 years old Female              11th grade   1.65  76.20
## 4466             17 years old   Male              12th grade   1.78  74.84
## 4467             16 years old Female              10th grade     NA     NA
## 4468             15 years old   Male              10th grade   1.83  68.04
## 4469             15 years old Female              10th grade   1.57  58.97
## 4470             16 years old Female              11th grade   1.63  53.98
## 4471             16 years old Female              10th grade   1.65  77.11
## 4472             15 years old Female              10th grade   1.65  56.70
## 4473             16 years old   Male              10th grade   1.80  72.58
## 4474             17 years old   Male              11th grade   1.83  63.50
## 4475             15 years old   Male              10th grade   1.83  73.94
## 4476             14 years old Female               9th grade   1.57  45.81
## 4477    18 years old or older Female              12th grade   1.68  94.35
## 4478    18 years old or older Female              12th grade     NA     NA
## 4479             15 years old Female               9th grade   1.63  44.00
## 4480             16 years old Female              10th grade   1.60  44.91
## 4481             16 years old Female              10th grade   1.68  61.24
## 4482             16 years old Female              10th grade     NA     NA
## 4483             16 years old Female              10th grade   1.75  61.24
## 4484             15 years old Female               9th grade   1.57  55.79
## 4485             16 years old Female              11th grade   1.60  72.58
## 4486             14 years old   Male               9th grade   1.78  70.31
## 4487             15 years old   Male               9th grade   1.73  88.00
## 4488    18 years old or older Female              12th grade   1.70  58.97
## 4489    18 years old or older Female              12th grade   1.75  65.77
## 4490    18 years old or older   Male              12th grade   1.78 124.74
## 4491             15 years old Female              10th grade   1.60  52.62
## 4492             16 years old Female              10th grade   1.63  47.63
## 4493             14 years old Female               9th grade   1.63  61.24
## 4494             15 years old   Male              10th grade   1.83  68.04
## 4495             17 years old Female              12th grade   1.65  68.04
## 4496             16 years old Female              10th grade   1.63  93.44
## 4497             15 years old Female              10th grade   1.70  70.31
## 4498    18 years old or older   Male              12th grade   1.83  64.86
## 4499             15 years old Female               9th grade   1.63  54.43
## 4500    18 years old or older Female              12th grade   1.63  63.50
## 4501             15 years old Female              10th grade   1.63  49.90
## 4502             17 years old   Male              11th grade   1.78  65.77
## 4503             16 years old   Male              11th grade   1.88  79.38
## 4504             15 years old   Male              10th grade   1.75  83.92
## 4505             17 years old   Male              11th grade   1.83  88.45
## 4506             14 years old   Male               9th grade   1.70  63.50
## 4507             15 years old   Male              10th grade   1.68  55.34
## 4508             16 years old   Male              11th grade   1.68  68.95
## 4509             17 years old   Male              11th grade   1.80  95.26
## 4510             15 years old   Male               9th grade   1.75  68.04
## 4511             14 years old Female               9th grade   1.63  56.70
## 4512             15 years old Female               9th grade   1.65  64.41
## 4513             14 years old Female               9th grade   1.73  67.59
## 4514             16 years old Female              11th grade   1.78  58.97
## 4515             15 years old Female               9th grade   1.60  47.63
## 4516             17 years old Female              11th grade   1.73  58.97
## 4517             15 years old Female              10th grade   1.60  49.90
## 4518             17 years old   Male              12th grade   1.90  72.58
## 4519             16 years old Female              10th grade   1.63  46.27
## 4520             17 years old   Male              12th grade   1.75  63.50
## 4521             16 years old Female              11th grade   1.57  55.79
## 4522             16 years old Female              10th grade   1.65  63.50
## 4523             17 years old Female              11th grade   1.65  86.18
## 4524             15 years old Female               9th grade   1.63  56.70
## 4525             17 years old   Male              11th grade   1.75  68.04
## 4526             15 years old Female              10th grade   1.52  65.77
## 4527             16 years old   Male              11th grade   1.83  72.58
## 4528             17 years old Female              11th grade   1.83  65.77
## 4529             16 years old Female              10th grade   1.57  47.63
## 4530             17 years old   Male              11th grade   1.80 106.60
## 4531             17 years old Female              11th grade   1.65  68.04
## 4532             16 years old   Male              10th grade   1.83  62.14
## 4533             17 years old   Male              11th grade   1.78 120.20
## 4534             17 years old   Male              11th grade   1.68  58.97
## 4535             16 years old Female              10th grade   1.80  81.65
## 4536             15 years old   Male               9th grade   1.83  77.11
## 4537             17 years old Female              11th grade   1.70  62.60
## 4538             15 years old Female              10th grade   1.70  99.79
## 4539             15 years old Female              10th grade   1.65  63.05
## 4540             15 years old Female               9th grade   1.68  56.70
## 4541             17 years old Female              11th grade   1.63  57.61
## 4542             15 years old Female              10th grade   1.75  49.90
## 4543             15 years old Female               9th grade   1.65  54.89
## 4544             17 years old Female              11th grade   1.60  63.50
## 4545             15 years old   Male              10th grade   1.73  72.58
## 4546             17 years old Female              12th grade   1.80  79.38
## 4547             17 years old   Male              11th grade   1.85  69.40
## 4548             16 years old   Male              10th grade   1.88  73.03
## 4549             17 years old   Male              12th grade   1.83  69.85
## 4550             16 years old   Male              10th grade   1.85  95.26
## 4551             16 years old Female              11th grade   1.57  45.36
## 4552             16 years old Female              11th grade   1.68  63.50
## 4553             15 years old Female              10th grade   1.65  61.24
## 4554             16 years old Female              10th grade   1.63  49.90
## 4555             17 years old   Male              11th grade   1.78  54.43
## 4556             17 years old   Male              11th grade   1.68  79.38
## 4557             14 years old   Male               9th grade   1.73  51.71
## 4558             15 years old Female               9th grade   1.60  68.04
## 4559             17 years old   Male              12th grade   1.88  82.56
## 4560             15 years old   Male              10th grade   1.80  72.58
## 4561             16 years old   Male              11th grade   1.80  68.04
## 4562             14 years old   Male               9th grade   1.75  67.13
## 4563             16 years old   Male              10th grade   1.70  58.97
## 4564    18 years old or older   Male              12th grade   1.78  65.77
## 4565             15 years old Female               9th grade   1.60  59.88
## 4566             17 years old Female              11th grade   1.80  63.50
## 4567             15 years old Female              10th grade   1.63  63.50
## 4568    18 years old or older Female              12th grade   1.60  52.62
## 4569             17 years old   Male              11th grade   1.75  72.58
## 4570             16 years old Female              11th grade   1.63  54.43
## 4571             17 years old Female              11th grade   1.68  54.43
## 4572             16 years old Female              11th grade   1.65  72.58
## 4573    18 years old or older Female              11th grade   1.70  59.88
## 4574             16 years old Female              11th grade   1.73  54.43
## 4575             16 years old Female              11th grade   1.63  87.54
## 4576             17 years old Female              11th grade   1.75  63.50
## 4577             16 years old Female              11th grade   1.65  68.04
## 4578             16 years old Female              11th grade   1.68  58.97
## 4579             17 years old Female              11th grade   1.60 117.94
## 4580    18 years old or older Female              12th grade   1.63  63.50
## 4581    18 years old or older   Male              12th grade   1.68  61.24
## 4582    18 years old or older Female              12th grade   1.78  77.11
## 4583             17 years old Female              12th grade   1.57  74.39
## 4584             17 years old Female              12th grade   1.75  77.11
## 4585             17 years old Female              11th grade   1.63  49.90
## 4586             17 years old Female              11th grade   1.68  61.24
## 4587             17 years old Female              11th grade   1.60  56.70
## 4588             17 years old Female              12th grade   1.68  63.50
## 4589    18 years old or older   <NA>              12th grade     NA     NA
## 4590             17 years old   Male              12th grade   1.90  88.45
## 4591             17 years old Female              12th grade   1.63  56.70
## 4592    18 years old or older Female              12th grade   1.70  54.43
## 4593             17 years old   <NA>              11th grade     NA     NA
## 4594    18 years old or older Female              12th grade   1.60  86.18
## 4595             17 years old Female              12th grade   1.63  52.16
## 4596    18 years old or older Female              12th grade   1.65  70.31
## 4597             17 years old   Male              12th grade   1.73  65.77
## 4598             17 years old Female              12th grade   1.68  58.06
## 4599             15 years old   Male              10th grade   1.83 108.86
## 4600             15 years old Female              10th grade   1.65  83.92
## 4601             16 years old   Male              10th grade   1.65  68.04
## 4602             16 years old Female              10th grade   1.57  81.65
## 4603             17 years old Female              10th grade   1.70  68.95
## 4604             17 years old Female              10th grade   1.70  81.65
## 4605             17 years old Female              11th grade   1.75  59.42
## 4606             16 years old   Male              10th grade     NA     NA
## 4607             16 years old Female              10th grade   1.68  74.84
## 4608             15 years old   Male              10th grade   1.83  78.47
## 4609             16 years old   Male              10th grade   1.85 108.86
## 4610             15 years old Female               9th grade   1.63  99.79
## 4611             14 years old Female               9th grade   1.68  68.04
## 4612             15 years old Female               9th grade   1.63  89.81
## 4613             14 years old Female               9th grade   1.55  53.52
## 4614             15 years old   Male               9th grade   1.63  52.16
## 4615             15 years old Female               9th grade   1.60  84.82
## 4616             14 years old Female               9th grade   1.57  69.85
## 4617             16 years old   Male              10th grade   1.73  63.50
## 4618             16 years old Female              10th grade   1.63 104.33
## 4619             16 years old Female               9th grade   1.45  49.90
## 4620             16 years old   Male              10th grade   1.73  83.01
## 4621             17 years old   Male              10th grade   1.80 143.79
## 4622             14 years old   Male               9th grade   1.70  69.85
## 4623             16 years old   Male              10th grade   1.70  78.47
## 4624             15 years old   Male               9th grade   1.80  56.25
## 4625             16 years old   Male              10th grade   1.78 101.61
## 4626             14 years old Female               9th grade   1.55  56.70
## 4627             16 years old   Male              10th grade   1.73  82.56
## 4628             16 years old   Male              10th grade     NA     NA
## 4629             15 years old Female               9th grade   1.65  67.13
## 4630             16 years old Female              11th grade     NA     NA
## 4631             17 years old Female              12th grade   1.68  68.04
## 4632             15 years old   Male              10th grade   1.78  95.26
## 4633             16 years old   Male              10th grade   1.85  76.20
## 4634             15 years old   Male               9th grade   1.83 101.15
## 4635             17 years old   Male              12th grade   1.73  61.69
## 4636             14 years old   Male               9th grade   1.63  56.70
## 4637             15 years old   Male              10th grade   2.01 127.01
## 4638             14 years old Female               9th grade   1.60  44.45
## 4639             16 years old   Male              11th grade   1.83 158.76
## 4640             17 years old Female              11th grade   1.65  53.98
## 4641             17 years old   Male              11th grade   1.70  49.90
## 4642             17 years old   Male              12th grade   1.93  88.45
## 4643             16 years old   Male              10th grade   1.78  83.92
## 4644             15 years old   Male              10th grade   1.73  68.04
## 4645             14 years old   Male               9th grade   1.88  78.47
## 4646             16 years old Female              10th grade   1.63  49.90
## 4647             16 years old Female               9th grade   1.57  95.26
## 4648             16 years old   Male              10th grade   1.80  83.92
## 4649             16 years old Female              10th grade     NA     NA
## 4650             16 years old   Male              10th grade   1.73  72.58
## 4651             16 years old Female              10th grade   1.57  46.27
## 4652             15 years old Female               9th grade   1.55  63.50
## 4653             15 years old   Male              10th grade   1.98  71.22
## 4654             16 years old Female               9th grade   1.65 130.18
## 4655             14 years old   Male               9th grade   1.78  65.32
## 4656             16 years old   Male              10th grade   1.85  83.92
## 4657             15 years old   Male               9th grade   1.78 104.33
## 4658             15 years old   Male              10th grade   1.73  73.03
## 4659             14 years old Female               9th grade   1.70  53.98
## 4660             17 years old   Male              10th grade   1.80  79.38
## 4661             14 years old   Male               9th grade   1.65  56.70
## 4662             16 years old Female              11th grade   1.52  55.34
## 4663    18 years old or older   Male              12th grade   1.78  68.04
## 4664             16 years old   Male              11th grade   1.80  84.37
## 4665    18 years old or older Female              12th grade   1.70  80.74
## 4666    18 years old or older Female              12th grade     NA     NA
## 4667             17 years old Female              11th grade   1.55  52.16
## 4668             17 years old   Male              11th grade   1.78  74.39
## 4669    18 years old or older Female              12th grade   1.63  81.65
## 4670             17 years old Female              11th grade   1.68 115.67
## 4671    18 years old or older   Male              12th grade   1.63 103.42
## 4672    18 years old or older Female              12th grade   1.73  81.65
## 4673    18 years old or older Female              12th grade   1.57  47.63
## 4674             17 years old   Male              11th grade   1.83  76.20
## 4675             17 years old Female              12th grade   1.70  58.97
## 4676             17 years old   Male              12th grade   1.85  72.58
## 4677             16 years old Female              11th grade     NA     NA
## 4678    18 years old or older   Male              12th grade   1.63  98.43
## 4679             16 years old Female              11th grade   1.73  92.99
## 4680             16 years old   Male              12th grade   1.83  88.45
## 4681             16 years old   Male              11th grade   1.80  90.72
## 4682    18 years old or older Female              12th grade   1.63  98.88
## 4683             17 years old   Male              11th grade   1.83  99.79
## 4684    18 years old or older Female              12th grade   1.55  68.04
## 4685    18 years old or older   Male              12th grade   1.88  78.93
## 4686             16 years old   Male              11th grade   1.75  74.84
## 4687    18 years old or older Female              12th grade   1.63  43.09
## 4688             17 years old   Male              11th grade   1.68  64.41
## 4689    18 years old or older Female              12th grade   1.73 102.06
## 4690    18 years old or older   Male              11th grade   1.88  68.04
## 4691             17 years old   Male              12th grade   1.85  63.50
## 4692             17 years old   Male              11th grade   1.70  63.96
## 4693    18 years old or older Female              12th grade   1.60  64.41
## 4694    18 years old or older Female              11th grade   1.57  90.72
## 4695             17 years old   Male              11th grade   1.90  72.58
## 4696             17 years old   Male              12th grade   1.75  55.79
## 4697    18 years old or older   Male              12th grade   1.83  70.31
## 4698             17 years old   Male              11th grade   1.75  63.50
## 4699             17 years old   Male              11th grade   1.73  70.31
## 4700    18 years old or older Female              12th grade   1.68  82.56
## 4701    18 years old or older   Male              12th grade   1.73 121.11
## 4702             16 years old   Male              11th grade   1.73  54.43
## 4703             17 years old   Male              11th grade   1.70  74.84
## 4704    18 years old or older   Male              12th grade   1.90  74.84
## 4705             16 years old   Male              11th grade   1.78  72.58
## 4706             16 years old Female              11th grade   1.63  61.24
## 4707    18 years old or older Female              12th grade   1.68  71.67
## 4708             16 years old   Male              11th grade   1.70  69.40
## 4709             16 years old Female              11th grade   1.63  68.04
## 4710    18 years old or older   Male              12th grade   1.80  66.68
## 4711             17 years old   Male              12th grade   1.78  65.77
## 4712             16 years old   Male              11th grade   1.80  99.79
## 4713             17 years old   Male              11th grade   1.78  99.79
## 4714             17 years old Female              12th grade   1.68 102.06
## 4715             16 years old   Male              11th grade   1.68  50.80
## 4716             17 years old   Male              12th grade   1.90 104.33
## 4717             17 years old Female              11th grade   1.68  73.48
## 4718             17 years old   Male              11th grade   1.65  63.50
## 4719             17 years old Female              12th grade   1.60  49.90
## 4720             16 years old Female              11th grade   1.63  90.72
## 4721             16 years old   Male              11th grade   1.68  71.67
## 4722             16 years old   Male              10th grade     NA     NA
## 4723             16 years old Female              10th grade   1.65  61.24
## 4724             15 years old Female              10th grade   1.73  63.50
## 4725             15 years old   Male              10th grade   1.68  70.31
## 4726             16 years old   Male              10th grade   1.68  54.43
## 4727             15 years old Female              10th grade   1.57  58.97
## 4728             15 years old   Male              10th grade     NA     NA
## 4729             16 years old Female              10th grade     NA     NA
## 4730             16 years old   Male              10th grade   1.63  49.90
## 4731             15 years old   Male              10th grade   1.85  89.81
## 4732             15 years old   Male              10th grade   1.65  49.90
## 4733             15 years old Female              10th grade   1.63  45.36
## 4734             15 years old   Male              10th grade   1.68  65.32
## 4735             15 years old   Male              10th grade   1.80  76.66
## 4736             15 years old Female              10th grade   1.60  51.26
## 4737             16 years old Female              10th grade   1.57  64.41
## 4738             15 years old   Male              10th grade   1.78  80.74
## 4739             15 years old   Male              10th grade   1.70  72.58
## 4740             16 years old Female              10th grade   1.70  72.58
## 4741             17 years old   Male              11th grade   1.80  65.77
## 4742             15 years old Female              10th grade   1.68  81.65
## 4743             16 years old Female              10th grade   1.60  43.09
## 4744             17 years old Female              11th grade   1.57  61.24
## 4745             17 years old   Male              11th grade   1.80  79.38
## 4746             16 years old Female              10th grade   1.57  66.23
## 4747             16 years old   Male              10th grade   1.83  78.93
## 4748             16 years old Female              11th grade   1.60  59.88
## 4749             16 years old   Male              10th grade   1.96  72.58
## 4750             16 years old Female              10th grade   1.70  77.11
## 4751             15 years old Female              10th grade   1.70  58.97
## 4752             15 years old Female              10th grade     NA     NA
## 4753             16 years old Female              10th grade   1.70  55.34
## 4754             15 years old Female              10th grade   1.60  50.35
## 4755             16 years old Female              11th grade   1.57  54.43
## 4756             16 years old Female              11th grade   1.68  58.97
## 4757             15 years old   Male              10th grade   1.73  77.11
## 4758             15 years old Female              10th grade   1.60  72.58
## 4759             16 years old   Male              11th grade     NA     NA
## 4760             16 years old   Male              11th grade   1.88  90.72
## 4761             16 years old Female              10th grade   1.65  65.77
## 4762             15 years old Female              10th grade   1.60  51.71
## 4763             16 years old Female              11th grade   1.65  58.97
## 4764             16 years old Female              10th grade   1.60  58.97
## 4765             16 years old   Male              11th grade   1.85  63.50
## 4766             16 years old Female              11th grade   1.55  61.24
## 4767             16 years old   Male              10th grade     NA     NA
## 4768             16 years old Female              11th grade   1.73  72.58
## 4769             16 years old   Male              11th grade   1.78  61.24
## 4770             16 years old   Male              10th grade   1.90  87.09
## 4771             15 years old Female              10th grade   1.57  45.36
## 4772             16 years old   Male              10th grade   1.68  90.72
## 4773    18 years old or older   Male              12th grade     NA     NA
## 4774             16 years old   Male              10th grade   1.83  96.16
## 4775             16 years old Female              10th grade   1.65 108.86
## 4776             17 years old Female              12th grade   1.60  53.07
## 4777             16 years old   Male              11th grade   1.80  59.88
## 4778             15 years old Female              10th grade   1.68  52.16
## 4779             15 years old   Male              10th grade   1.75  79.38
## 4780             17 years old Female              11th grade   1.60  54.43
## 4781             17 years old   Male                    <NA>   1.88  73.48
## 4782             15 years old Female              10th grade   1.60  49.90
## 4783             16 years old   Male              11th grade   1.83  63.50
## 4784             16 years old   Male              11th grade   1.83  61.24
## 4785             16 years old Female              10th grade   1.60  54.43
## 4786             15 years old Female              10th grade   1.68  54.43
## 4787             16 years old   Male              11th grade   1.78  58.06
## 4788             16 years old Female              10th grade   1.50  48.99
## 4789             16 years old Female              10th grade   1.65  68.04
## 4790             16 years old Female              11th grade   1.60  52.16
## 4791             16 years old   Male              10th grade   1.78  78.02
## 4792             15 years old Female              10th grade   1.70  58.97
## 4793             17 years old   Male              11th grade   1.80  74.84
## 4794             16 years old Female              11th grade   1.73  61.24
## 4795             15 years old   Male              10th grade   1.70  58.06
## 4796             16 years old Female              10th grade     NA     NA
## 4797             16 years old Female              11th grade   1.68  81.65
## 4798             17 years old Female              11th grade   1.65  58.97
## 4799             16 years old Female              10th grade   1.68  58.97
## 4800             16 years old Female              10th grade   1.52  61.24
## 4801             17 years old Female              11th grade   1.63  52.16
## 4802             17 years old   Male              11th grade   1.83  70.31
## 4803             16 years old   Male              10th grade   1.80  71.22
## 4804             14 years old   Male               9th grade   1.78  47.63
## 4805             14 years old Female               9th grade   1.63  49.90
## 4806             15 years old   Male               9th grade   1.80  67.13
## 4807             17 years old   Male              12th grade   1.83  86.18
## 4808             17 years old Female              12th grade   1.60  45.81
## 4809    18 years old or older   Male              12th grade   1.68  60.78
## 4810             17 years old   Male              12th grade   1.85  99.79
## 4811             15 years old Female               9th grade   1.63  56.70
## 4812             15 years old   Male              10th grade   1.73  61.24
## 4813    18 years old or older   Male              12th grade   1.85 136.08
## 4814             14 years old   Male               9th grade   1.63  63.50
## 4815             15 years old   Male               9th grade   1.73  79.38
## 4816             17 years old   Male              12th grade   1.88  83.92
## 4817    18 years old or older   Male              12th grade   1.65  54.43
## 4818             14 years old Female               9th grade   1.65  45.36
## 4819             15 years old   Male               9th grade   1.78  63.96
## 4820             17 years old   Male              12th grade   1.83  95.26
## 4821    18 years old or older   Male              12th grade   1.85 107.05
## 4822             15 years old   Male               9th grade   1.78  68.04
## 4823             15 years old   Male               9th grade   1.78  61.24
## 4824             14 years old   Male               9th grade   1.73  54.43
## 4825             14 years old   Male               9th grade   1.73  77.11
## 4826             16 years old   Male               9th grade   1.73  61.69
## 4827    18 years old or older Female              12th grade   1.52  52.16
## 4828             17 years old   Male              12th grade   1.83  65.77
## 4829             15 years old   Male               9th grade   1.80  62.60
## 4830             14 years old   Male               9th grade   1.70  54.43
## 4831    18 years old or older   Male              12th grade   1.70  48.99
## 4832             15 years old   Male               9th grade   1.65  72.58
## 4833             17 years old Female              12th grade   1.60  71.22
## 4834    18 years old or older   Male              12th grade   1.55  63.50
## 4835             14 years old   Male               9th grade   1.70  65.77
## 4836             14 years old Female               9th grade   1.57  51.26
## 4837             17 years old Female              12th grade   1.68  59.88
## 4838             15 years old   Male               9th grade   1.78  90.72
## 4839             17 years old   Male              12th grade   1.85 127.01
## 4840             14 years old   Male               9th grade   1.78  63.50
## 4841    18 years old or older   Male              12th grade   1.70  68.04
## 4842    18 years old or older Female              12th grade   1.65  97.98
## 4843    18 years old or older   Male              12th grade   1.85 111.13
## 4844             14 years old   Male               9th grade   1.88  70.31
## 4845             14 years old   Male               9th grade   1.83  68.04
## 4846    18 years old or older   Male              12th grade   1.70  58.97
## 4847             17 years old Female              12th grade   1.73  61.24
## 4848             14 years old Female               9th grade   1.57  43.55
## 4849    18 years old or older   Male              12th grade   1.78  54.43
## 4850             17 years old   Male              12th grade   1.80  64.41
## 4851             17 years old   Male              12th grade   1.78  63.50
## 4852             15 years old Female               9th grade   1.75  81.65
## 4853             17 years old   Male              12th grade   1.93 136.08
## 4854    18 years old or older Female              12th grade   1.68  72.58
## 4855             17 years old   Male              12th grade   1.75  78.93
## 4856             14 years old   Male               9th grade     NA     NA
## 4857    18 years old or older   Male              12th grade   1.83  83.92
## 4858    18 years old or older   Male              12th grade   1.90 108.86
## 4859             17 years old Female              11th grade   1.70  90.72
## 4860             16 years old Female              11th grade   1.57  63.50
## 4861             16 years old Female              11th grade     NA     NA
## 4862             16 years old Female              11th grade     NA     NA
## 4863             16 years old Female              11th grade   1.60  58.97
## 4864             15 years old   Male               9th grade   1.80  88.45
## 4865    18 years old or older   Male              12th grade   1.88  67.59
## 4866    18 years old or older   Male              12th grade   1.85  86.18
## 4867             14 years old Female               9th grade   1.57  58.06
## 4868             17 years old Female              11th grade   1.63  52.16
## 4869             15 years old   Male               9th grade   1.65  49.90
## 4870             17 years old Female              12th grade   1.52  68.04
## 4871    18 years old or older Female              12th grade   1.52  93.44
## 4872             15 years old   Male               9th grade   1.68  56.70
## 4873             17 years old Female              12th grade   1.80  90.72
## 4874             17 years old   Male              11th grade   1.78  79.38
## 4875             16 years old   Male              11th grade   1.83  64.86
## 4876             14 years old Female               9th grade   1.63  51.26
## 4877    18 years old or older   Male              12th grade   1.83  74.84
## 4878             17 years old   Male              12th grade   1.80  58.06
## 4879    18 years old or older Female              12th grade   1.52  48.99
## 4880             16 years old Female              11th grade   1.63  63.50
## 4881             15 years old Female              10th grade   1.63  63.50
## 4882             14 years old Female               9th grade   1.65  57.61
## 4883             15 years old Female              10th grade     NA     NA
## 4884             15 years old   Male              10th grade   1.90 106.60
## 4885             14 years old   Male               9th grade   1.55  45.36
## 4886             15 years old Female              10th grade   1.63  47.63
## 4887             16 years old   Male              10th grade   1.65  58.97
## 4888             14 years old Female               9th grade   1.75  51.71
## 4889             14 years old Female               9th grade     NA     NA
## 4890             15 years old   Male               9th grade   1.78  63.50
## 4891             16 years old   Male              10th grade   1.65  61.69
## 4892             16 years old   Male              10th grade   1.85  99.79
## 4893             15 years old   Male               9th grade   1.85  65.77
## 4894             16 years old   Male              10th grade   1.85 108.86
## 4895             16 years old   Male              10th grade   1.80  56.70
## 4896             14 years old Female               9th grade     NA     NA
## 4897             15 years old Female              10th grade   1.73  54.43
## 4898             15 years old   Male              10th grade   1.73  58.97
## 4899             15 years old   Male               9th grade   1.75  62.60
## 4900             15 years old   Male               9th grade   1.90  65.77
## 4901             15 years old Female               9th grade   1.75  63.50
## 4902             17 years old   Male              10th grade   1.80 108.86
## 4903             16 years old   Male              10th grade   1.78  90.72
## 4904             14 years old   Male               9th grade   1.70  50.80
## 4905             15 years old Female               9th grade   1.60  48.54
## 4906             14 years old Female               9th grade   1.68  48.99
## 4907             14 years old Female               9th grade   1.63  50.80
## 4908             16 years old   Male              10th grade   1.68  49.90
## 4909             14 years old Female               9th grade   1.70  58.97
## 4910             15 years old Female               9th grade   1.63  68.04
## 4911             15 years old Female               9th grade   1.60  79.38
## 4912             16 years old   Male              10th grade   1.78  56.70
## 4913             15 years old Female               9th grade   1.65  57.15
## 4914             15 years old   Male              10th grade   1.75  70.31
## 4915             15 years old   Male              10th grade   1.78  79.38
## 4916             14 years old   Male               9th grade   1.73  74.84
## 4917             15 years old   Male               9th grade   1.83  79.38
## 4918             16 years old   Male              10th grade   1.78 104.33
## 4919             15 years old Female               9th grade   1.63  58.97
## 4920             14 years old Female               9th grade   1.70  68.04
## 4921             15 years old   Male              10th grade   1.75  68.04
## 4922             16 years old   Male              10th grade   1.68  67.59
## 4923             15 years old   Male               9th grade   1.83  69.85
## 4924             16 years old   Male              10th grade   1.88  92.08
## 4925             15 years old Female              10th grade   1.52  44.00
## 4926             14 years old Female               9th grade   1.57  58.97
## 4927             15 years old Female               9th grade   1.75  61.24
## 4928             14 years old   Male               9th grade   1.78  68.04
## 4929             15 years old Female              10th grade   1.65  81.65
## 4930             16 years old   Male              10th grade   1.78  68.04
## 4931             15 years old   Male               9th grade   1.75  63.50
## 4932             14 years old   Male               9th grade   1.73  59.88
## 4933             15 years old   Male              10th grade   1.78  81.65
## 4934             15 years old Female              10th grade   1.63  68.04
## 4935             15 years old Female               9th grade   1.57  63.50
## 4936             15 years old   Male               9th grade   1.70  97.98
## 4937             15 years old   Male              10th grade   1.80  60.33
## 4938             16 years old   Male              10th grade   1.83  61.69
## 4939             14 years old Female               9th grade   1.75  56.70
## 4940             16 years old   Male               9th grade   1.75  52.16
## 4941             15 years old Female              10th grade   1.65  78.02
## 4942             15 years old   Male              10th grade   1.80  71.22
## 4943             14 years old   Male               9th grade     NA     NA
## 4944             15 years old   Male               9th grade   1.68  52.16
## 4945             14 years old   Male               9th grade   1.73  85.73
## 4946                     <NA>   Male               9th grade     NA     NA
## 4947             15 years old Female              10th grade   1.63  49.90
## 4948             16 years old   Male              10th grade   1.80  61.24
## 4949             16 years old   Male              10th grade   1.78  86.18
## 4950             16 years old Female              10th grade   1.70  63.50
## 4951             15 years old Female               9th grade   1.52  41.28
## 4952             17 years old   Male              12th grade   1.93  70.31
## 4953             17 years old Female              12th grade   1.57  44.45
## 4954             16 years old   Male              11th grade   1.75  65.77
## 4955             16 years old Female              11th grade   1.60  43.55
## 4956             17 years old Female              11th grade   1.63  56.70
## 4957             17 years old Female              11th grade   1.57  51.71
## 4958             16 years old Female              11th grade   1.60  55.34
## 4959    18 years old or older   Male              12th grade   1.73  97.52
## 4960             17 years old   Male              11th grade   1.70  68.95
## 4961             16 years old Female              11th grade   1.73 102.06
## 4962    18 years old or older Female              12th grade   1.57  65.77
## 4963             17 years old   Male              12th grade   1.83  68.04
## 4964             17 years old   Male              12th grade   1.73  63.50
## 4965             17 years old Female              12th grade   1.75  72.58
## 4966             16 years old   <NA>              11th grade     NA     NA
## 4967    18 years old or older Female              12th grade   1.73  55.79
## 4968             17 years old Female              12th grade   1.68  81.65
## 4969             17 years old Female              12th grade   1.70  52.16
## 4970             17 years old Female              12th grade   1.60  56.70
## 4971             17 years old   Male              11th grade   1.65  48.08
## 4972             17 years old   Male              12th grade   1.88  67.59
## 4973             17 years old   Male              12th grade   1.80 122.47
## 4974             16 years old   Male              11th grade   1.78  61.69
## 4975             16 years old   <NA>              11th grade     NA     NA
## 4976             17 years old   Male              12th grade   1.78  70.31
## 4977    18 years old or older   Male              12th grade   1.83  72.58
## 4978    18 years old or older   Male              12th grade   1.75  97.52
## 4979    18 years old or older   Male              12th grade   1.80  79.38
## 4980             17 years old   Male              11th grade   1.83  80.74
## 4981             17 years old Female              11th grade   1.68  57.15
## 4982    18 years old or older   Male              12th grade   1.96  77.11
## 4983    18 years old or older   Male              12th grade   1.85  75.75
## 4984             16 years old   Male              11th grade   1.83  81.65
## 4985             17 years old   Male              11th grade   1.70  74.84
## 4986             17 years old   Male              12th grade   1.83  90.72
## 4987             17 years old Female              11th grade   1.68  83.92
## 4988    18 years old or older   Male              12th grade   1.73  61.69
## 4989             17 years old Female              12th grade   1.60  63.50
## 4990             16 years old Female              11th grade   1.55  69.85
## 4991             17 years old Female              11th grade   1.65  57.15
## 4992    18 years old or older   Male              12th grade   1.85  86.18
## 4993             17 years old Female              12th grade     NA     NA
## 4994    18 years old or older Female              12th grade   1.70  61.24
## 4995             17 years old Female              11th grade   1.70  63.96
## 4996    18 years old or older Female              12th grade   1.47  90.72
## 4997             17 years old   Male              12th grade   1.78  60.33
## 4998             17 years old Female              11th grade   1.73  59.88
## 4999             17 years old   Male              11th grade   1.78  68.04
## 5000    18 years old or older   Male              12th grade   1.83  74.84
## 5001    18 years old or older   Male              12th grade   1.70  63.50
## 5002             17 years old   Male              11th grade   1.80  79.38
## 5003             16 years old Female              11th grade   1.75  74.84
## 5004    18 years old or older Female              12th grade   1.65  86.18
## 5005             17 years old Female              12th grade   1.68 102.06
## 5006    18 years old or older   Male              12th grade   1.75  92.99
## 5007    18 years old or older   Male              12th grade   1.83  80.74
## 5008    18 years old or older   Male              12th grade   1.88  78.02
## 5009             17 years old Female              12th grade   1.65  68.95
## 5010    18 years old or older   Male              12th grade   1.85  99.79
## 5011             17 years old Female              12th grade   1.63  63.50
## 5012             17 years old   Male              11th grade   1.83  78.02
## 5013             16 years old   Male              11th grade   1.80  78.47
## 5014             17 years old   Male              11th grade   1.83  70.76
## 5015             17 years old Female              12th grade     NA     NA
## 5016    18 years old or older Female              12th grade   1.68  57.15
## 5017             17 years old   Male              11th grade   1.83  70.31
## 5018             17 years old   Male              11th grade   1.73  64.41
## 5019             17 years old   Male              12th grade   1.73  93.44
## 5020    18 years old or older Female              12th grade   1.68  56.70
## 5021             17 years old   Male              12th grade   1.75 108.86
## 5022             16 years old Female              11th grade   1.63  56.25
## 5023             17 years old Female              12th grade   1.63  52.16
## 5024    18 years old or older Female              12th grade   1.55  52.16
## 5025    18 years old or older   Male              12th grade   1.88 106.60
## 5026    18 years old or older   Male              12th grade   1.85  76.20
## 5027             16 years old   Male              11th grade   1.83 127.01
## 5028             15 years old   Male               9th grade   1.70  54.43
## 5029             16 years old   Male              11th grade   1.85  72.58
## 5030             14 years old   Male               9th grade   1.75  58.51
## 5031             15 years old Female               9th grade   1.70  61.24
## 5032             17 years old   Male              11th grade   1.73  74.84
## 5033             15 years old   Male               9th grade   1.70  49.90
## 5034             16 years old Female              11th grade   1.57  53.52
## 5035             15 years old Female               9th grade   1.78  99.79
## 5036             17 years old   Male              11th grade     NA     NA
## 5037             14 years old   Male               9th grade   1.78  68.49
## 5038             14 years old Female               9th grade   1.75  55.79
## 5039             16 years old   Male              11th grade   1.63  90.72
## 5040             16 years old   Male              11th grade   1.73  76.20
## 5041             16 years old   Male              11th grade   1.75  95.26
## 5042             14 years old   Male               9th grade   1.73  72.58
## 5043             14 years old   Male               9th grade     NA     NA
## 5044             17 years old   Male              11th grade   1.78  61.24
## 5045             14 years old   Male               9th grade   1.83  74.84
## 5046             17 years old   Male              11th grade   1.80  63.50
## 5047             16 years old   Male              11th grade   1.78  90.72
## 5048             14 years old   Male               9th grade   1.78  75.30
## 5049             15 years old   Male               9th grade   1.70  61.24
## 5050             14 years old Female               9th grade   1.52  47.63
## 5051             17 years old   Male              11th grade   1.75  73.48
## 5052             14 years old   Male               9th grade     NA     NA
## 5053             16 years old Female              11th grade   1.57  58.97
## 5054             15 years old   Male               9th grade   1.70  58.97
## 5055             17 years old Female              11th grade   1.50  86.18
## 5056             15 years old   Male               9th grade   1.85  92.99
## 5057             16 years old   Male              11th grade   1.83  72.58
## 5058             15 years old   Male               9th grade   1.63 122.47
## 5059             17 years old   Male              11th grade   1.73  57.15
## 5060             14 years old   Male               9th grade   1.63  45.36
## 5061             16 years old   Male              11th grade   1.70  68.04
## 5062             15 years old   Male               9th grade   1.78  70.76
## 5063             16 years old   Male              11th grade   1.83  68.04
## 5064             15 years old   Male               9th grade   1.80  75.75
## 5065             14 years old Female               9th grade   1.60  86.18
## 5066             17 years old Female              11th grade   1.65  60.33
## 5067             15 years old Female               9th grade   1.70  61.24
## 5068             17 years old Female              11th grade   1.52  49.90
## 5069             17 years old Female              11th grade   1.60  56.70
## 5070             14 years old   Male               9th grade   1.88  70.31
## 5071             17 years old Female              11th grade   1.70  56.70
## 5072             16 years old Female              11th grade     NA     NA
## 5073             15 years old   Male               9th grade   1.73  86.18
## 5074             16 years old   Male              11th grade   1.88  72.58
## 5075             15 years old Female               9th grade   1.63  51.71
## 5076             16 years old Female              11th grade     NA     NA
## 5077             14 years old Female               9th grade   1.63  57.61
## 5078             16 years old Female              11th grade   1.60  61.24
## 5079             14 years old Female               9th grade   1.63  66.23
## 5080             17 years old   Male              11th grade   1.85  79.38
## 5081             14 years old Female               9th grade   1.65  89.81
## 5082             16 years old   Male              11th grade   1.68  83.92
## 5083             14 years old Female               9th grade   1.70  58.97
## 5084             17 years old   Male              11th grade   1.80  64.41
## 5085             15 years old Female               9th grade   1.70  75.75
## 5086             14 years old   Male               9th grade   1.73  65.77
## 5087    18 years old or older   Male              12th grade   1.78  97.52
## 5088             14 years old Female               9th grade   1.70 116.12
## 5089             15 years old Female              10th grade   1.52  45.36
## 5090             16 years old   Male              10th grade   1.70  68.04
## 5091             15 years old   Male              10th grade   1.68  65.32
## 5092    18 years old or older Female              12th grade   1.83  58.97
## 5093             17 years old Female              12th grade   1.65  61.24
## 5094             16 years old   Male              10th grade   1.83  95.26
## 5095             16 years old   Male              10th grade   1.65  74.84
## 5096    18 years old or older Female              12th grade   1.63 104.33
## 5097             17 years old Female              12th grade   1.73  90.72
## 5098             16 years old   Male              10th grade   1.85  81.65
## 5099             16 years old Female              10th grade   1.57  52.62
## 5100             17 years old Female              12th grade   1.83  56.70
## 5101             17 years old Female              12th grade   1.65  97.52
## 5102             16 years old   Male              10th grade   1.90 120.66
## 5103             16 years old Female              10th grade   1.73  58.97
## 5104             15 years old Female              10th grade   1.65  61.24
## 5105             15 years old Female              10th grade   1.55  49.90
## 5106    18 years old or older   Male              12th grade   1.75  70.31
## 5107             15 years old   Male              10th grade   1.80  68.04
## 5108             16 years old Female              10th grade   1.73  88.91
## 5109             17 years old   Male              12th grade   1.88  68.04
## 5110             17 years old Female              12th grade   1.55  61.24
## 5111             15 years old Female              10th grade     NA     NA
## 5112             16 years old   Male              10th grade   1.70  65.77
## 5113    18 years old or older Female              12th grade   1.60 154.22
## 5114             15 years old Female              10th grade   1.68  82.56
## 5115             17 years old Female              12th grade   1.60  68.04
## 5116             16 years old   Male              10th grade     NA     NA
## 5117             17 years old Female              12th grade   1.73  83.92
## 5118             17 years old   Male              10th grade   1.80 104.33
## 5119             15 years old   Male              10th grade   1.85  68.04
## 5120             15 years old Female              10th grade   1.60  44.45
## 5121             16 years old Female              10th grade   1.70  65.77
## 5122             16 years old   Male              10th grade   1.70 117.94
## 5123             17 years old Female              12th grade   1.65  61.24
## 5124             16 years old Female              10th grade   1.78  54.43
## 5125             17 years old Female              12th grade   1.68  63.50
## 5126             15 years old   Male              10th grade   1.63  53.52
## 5127    18 years old or older Female              12th grade   1.83  68.04
## 5128             17 years old   Male              12th grade     NA     NA
## 5129             15 years old   Male              10th grade   1.78  58.06
## 5130             17 years old   Male              12th grade   1.80  68.04
## 5131             16 years old   Male              10th grade   1.75  74.84
## 5132             16 years old   Male              10th grade   1.65  72.58
## 5133             17 years old   Male              12th grade   1.75 102.06
## 5134             15 years old Female              10th grade   1.75  65.77
## 5135    18 years old or older Female              12th grade   1.60  54.43
## 5136             15 years old Female              10th grade   1.57  57.15
## 5137    18 years old or older   Male              12th grade   1.80  61.24
## 5138             16 years old   Male                    <NA>   1.73  56.25
## 5139             17 years old Female              12th grade   1.57 100.70
## 5140             17 years old   Male              10th grade   1.65 127.46
## 5141             15 years old   Male              10th grade   1.70  68.04
## 5142             17 years old Female              12th grade   1.75  68.04
## 5143             15 years old   Male               9th grade   1.80  81.65
## 5144             17 years old Female              12th grade   1.70  45.36
## 5145             17 years old Female              12th grade   1.63  55.34
## 5146             14 years old Female               9th grade   1.47  44.45
## 5147             16 years old Female              10th grade   1.52  59.42
## 5148             17 years old Female              12th grade   1.75  63.50
## 5149             15 years old   Male              10th grade   1.75  79.38
## 5150             14 years old Female               9th grade   1.55  52.16
## 5151             15 years old   Male              10th grade   1.73  61.24
## 5152             17 years old Female              12th grade   1.57  52.16
## 5153             16 years old   Male              10th grade   1.83  63.50
## 5154             15 years old   Male              10th grade   1.70  58.97
## 5155             17 years old   Male              12th grade   1.88  70.31
## 5156             15 years old Female               9th grade   1.65  56.70
## 5157             14 years old   Male               9th grade   1.80  70.31
## 5158             16 years old Female              10th grade   1.63  67.59
## 5159             15 years old   Male              10th grade   1.75  97.52
## 5160             16 years old   Male              10th grade   1.83  77.11
## 5161             15 years old Female              10th grade   1.70  56.70
## 5162             16 years old   Male              10th grade   1.73  77.11
## 5163             14 years old   Male               9th grade   1.70  65.77
## 5164             15 years old   Male              10th grade     NA     NA
## 5165             15 years old   Male               9th grade   1.80  71.22
## 5166             15 years old Female               9th grade   1.70  64.41
## 5167             15 years old   Male               9th grade   1.57  81.65
## 5168             15 years old Female               9th grade   1.60  49.90
## 5169             14 years old   Male               9th grade   1.70  79.38
## 5170             15 years old Female              10th grade   1.50  54.43
## 5171    18 years old or older   Male              12th grade   1.80  74.39
## 5172             15 years old   Male               9th grade   1.78  61.24
## 5173             16 years old   Male              10th grade   1.68  61.24
## 5174             17 years old   Male              11th grade   1.73  88.91
## 5175             14 years old Female               9th grade   1.70  81.65
## 5176             15 years old   Male               9th grade   1.83  69.40
## 5177             17 years old Female              12th grade   1.68  64.86
## 5178             17 years old Female              11th grade   1.68  72.58
## 5179    18 years old or older Female              12th grade   1.75  86.18
## 5180             15 years old Female               9th grade   1.60  58.97
## 5181             15 years old   Male               9th grade   1.83  65.77
## 5182             16 years old   Male              10th grade   1.73  88.91
## 5183             17 years old Female              11th grade   1.63  68.04
## 5184    18 years old or older   Male              12th grade   1.73  55.34
## 5185             14 years old Female               9th grade   1.68  63.50
## 5186             16 years old Female              10th grade   1.65  65.77
## 5187             17 years old Female              11th grade   1.65  99.79
## 5188             17 years old   Male              12th grade   1.65  53.52
## 5189             15 years old Female               9th grade   1.63  59.88
## 5190             15 years old   Male               9th grade   1.75  71.67
## 5191             15 years old Female              10th grade   1.55  53.98
## 5192             15 years old   Male               9th grade   1.65  45.81
## 5193             16 years old Female              10th grade   1.60  58.97
## 5194             16 years old Female              11th grade   1.57  54.89
## 5195    18 years old or older Female              12th grade   1.70  61.24
## 5196             15 years old Female               9th grade   1.70  56.70
## 5197             16 years old   Male              10th grade   1.75  59.88
## 5198             16 years old Female              11th grade   1.57  48.08
## 5199    18 years old or older Female              12th grade   1.70  76.20
## 5200             15 years old Female               9th grade   1.68  88.91
## 5201             15 years old   Male              10th grade   1.73  61.24
## 5202             16 years old   Male              11th grade   1.78  62.14
## 5203             17 years old   Male              12th grade   1.78  66.68
## 5204             14 years old   Male               9th grade   1.88 102.06
## 5205             15 years old   Male               9th grade   1.75  51.71
## 5206             15 years old   Male               9th grade   1.65  54.43
## 5207             16 years old Female              10th grade   1.60  53.07
## 5208             17 years old   Male              11th grade   1.80  72.58
## 5209             17 years old   Male              12th grade   1.83  88.45
## 5210             15 years old Female               9th grade   1.65  54.43
## 5211             15 years old Female              10th grade   1.55  62.60
## 5212             17 years old   Male              11th grade   1.78  88.45
## 5213             17 years old Female              12th grade   1.75  63.50
## 5214             15 years old   Male               9th grade   1.85 106.60
## 5215             16 years old   Male              10th grade   1.63  56.70
## 5216    18 years old or older Female              12th grade   1.55  47.63
## 5217             15 years old Female               9th grade   1.60  63.50
## 5218             16 years old Female              10th grade   1.80  65.77
## 5219             17 years old   Male              11th grade   1.78  63.50
## 5220             17 years old Female              12th grade   1.65  65.77
## 5221             15 years old Female               9th grade   1.60  54.43
## 5222             14 years old   Male               9th grade   1.65  47.17
## 5223             16 years old   Male              10th grade   1.85  77.11
## 5224             17 years old Female              11th grade   1.65  54.43
## 5225             15 years old   Male               9th grade   1.75  65.32
## 5226             15 years old   Male              10th grade   1.73  63.50
## 5227             16 years old   Male              11th grade   1.83  86.18
## 5228             15 years old   Male               9th grade   1.52  44.00
## 5229             15 years old   Male              10th grade   1.75  74.84
## 5230             17 years old Female              11th grade   1.57  74.84
## 5231             17 years old Female              12th grade   1.63  65.32
## 5232             15 years old   Male               9th grade   1.68  56.70
## 5233             15 years old Female              10th grade   1.57  49.90
## 5234             17 years old Female              11th grade   1.63  62.14
## 5235    18 years old or older   Male              12th grade   1.80  79.38
## 5236             15 years old Female               9th grade   1.52  52.16
## 5237             15 years old   Male               9th grade   1.68  58.97
## 5238             16 years old   Male              10th grade   1.75 109.77
## 5239             17 years old Female              11th grade   1.68  54.43
## 5240             16 years old   Male              10th grade   1.85  80.74
## 5241             17 years old   Male              11th grade   1.90  91.17
## 5242    18 years old or older Female              12th grade   1.57  79.38
## 5243             15 years old   Male               9th grade   1.83  72.58
## 5244             15 years old Female              10th grade   1.60  65.77
## 5245             16 years old Female              11th grade   1.80  80.74
## 5246             17 years old Female              12th grade   1.65  68.04
## 5247             15 years old Female               9th grade   1.63  53.07
## 5248             15 years old   Male              10th grade   1.78  77.11
## 5249             17 years old Female              11th grade   1.75  77.11
## 5250    18 years old or older Female              12th grade   1.65  40.82
## 5251             15 years old Female               9th grade   1.63  86.18
## 5252             16 years old   Male              10th grade   1.78  78.93
## 5253             17 years old Female              11th grade   1.63  65.77
## 5254    18 years old or older Female              12th grade     NA     NA
## 5255             15 years old Female               9th grade   1.68  68.04
## 5256             14 years old Female               9th grade   1.63  50.80
## 5257             15 years old   Male               9th grade   1.68  48.99
## 5258             16 years old   Male               9th grade   1.78  66.68
## 5259             15 years old   Male               9th grade   1.75  61.24
## 5260             16 years old   Male               9th grade   1.78  77.11
## 5261             14 years old Female               9th grade   1.73  58.97
## 5262             15 years old Female               9th grade   1.78  65.77
## 5263             15 years old Female               9th grade   1.68  61.24
## 5264             15 years old Female               9th grade     NA     NA
## 5265             16 years old   Male               9th grade   1.85  81.65
## 5266             15 years old Female               9th grade   1.68  56.70
## 5267             15 years old Female               9th grade   1.65  58.97
## 5268    18 years old or older Female              12th grade   1.78  72.58
## 5269    18 years old or older Female              11th grade     NA     NA
## 5270    18 years old or older Female              12th grade   1.60  68.04
## 5271             16 years old   Male              10th grade   1.80  63.50
## 5272             17 years old   Male              11th grade   1.85  65.77
## 5273    18 years old or older   Male              12th grade   1.75  74.84
## 5274             16 years old Female              10th grade   1.63  54.43
## 5275             17 years old Female              11th grade   1.75  60.78
## 5276    18 years old or older   Male              12th grade   1.93  88.45
## 5277             16 years old Female              10th grade   1.63  47.63
## 5278             17 years old Female              11th grade   1.63  44.00
## 5279    18 years old or older Female              12th grade   1.70  69.40
## 5280             16 years old   Male              10th grade   1.78  65.77
## 5281    18 years old or older Female              12th grade   1.63  54.43
## 5282             16 years old   Male              10th grade   1.88  88.45
## 5283             17 years old Female              11th grade   1.65  58.97
## 5284             17 years old Female              11th grade   1.73  86.18
## 5285    18 years old or older   Male              11th grade   1.70  52.16
## 5286    18 years old or older Female              12th grade   1.63  72.58
## 5287             16 years old Female              10th grade   1.65  49.90
## 5288             17 years old   Male              11th grade   1.85  68.04
## 5289             17 years old Female              12th grade   1.60  47.63
## 5290             15 years old   Male              10th grade   1.75  88.45
## 5291    18 years old or older Female              12th grade   1.70  56.70
## 5292             15 years old Female              10th grade   1.57  52.16
## 5293             17 years old Female              11th grade   1.73  86.18
## 5294    18 years old or older Female              12th grade   1.73  61.24
## 5295             16 years old Female              10th grade   1.68  56.70
## 5296             17 years old   Male              11th grade   1.70  74.39
## 5297    18 years old or older   Male              12th grade     NA     NA
## 5298             16 years old Female              10th grade   1.75  56.70
## 5299             17 years old   Male              11th grade   1.78  74.84
## 5300             17 years old Female              12th grade   1.68  61.24
## 5301             16 years old   Male              10th grade   1.85  71.22
## 5302             17 years old   Male                    <NA>   1.70  68.04
## 5303             16 years old   Male              10th grade   1.75  58.06
## 5304    18 years old or older Female              12th grade   1.55  54.43
## 5305             14 years old Female               9th grade   1.50  43.09
## 5306             16 years old   Male              11th grade   1.70  90.72
## 5307             16 years old   Male              10th grade   1.75  70.31
## 5308    18 years old or older   Male              12th grade   1.80  81.65
## 5309             15 years old   Male               9th grade   1.75  67.13
## 5310             16 years old Female              11th grade   1.65  49.90
## 5311             16 years old   Male              10th grade   1.88  81.65
## 5312    18 years old or older   Male              12th grade   1.73  87.09
## 5313             15 years old Female               9th grade   1.60  67.13
## 5314             16 years old   Male              11th grade   1.75  81.65
## 5315             15 years old   Male              10th grade   1.70  79.38
## 5316    18 years old or older Female              12th grade   1.63  67.13
## 5317             15 years old Female               9th grade   1.65  61.69
## 5318             17 years old Female              11th grade     NA     NA
## 5319             15 years old Female              10th grade   1.60  56.70
## 5320             17 years old Female              12th grade   1.65  56.70
## 5321             15 years old   Male               9th grade   1.73  83.01
## 5322             16 years old Female              11th grade   1.65  65.77
## 5323             16 years old   Male              11th grade   1.85  65.77
## 5324             16 years old Female              10th grade   1.70  52.16
## 5325    18 years old or older   Male              12th grade   1.78  77.11
## 5326             14 years old Female               9th grade   1.78  63.50
## 5327    18 years old or older Female              12th grade   1.78  74.84
## 5328             15 years old   Male               9th grade   1.88  76.20
## 5329             15 years old Female              10th grade   1.65  52.16
## 5330    18 years old or older Female              12th grade   1.63  58.06
## 5331             15 years old   Male               9th grade   1.83  68.04
## 5332             16 years old   Male              11th grade   1.90  79.38
## 5333             15 years old   Male              10th grade   1.78  62.60
## 5334             17 years old Female              12th grade   1.75  68.04
## 5335             15 years old Female               9th grade   1.57  52.16
## 5336             17 years old Female              11th grade   1.60  56.70
## 5337             16 years old   Male              10th grade   1.68  54.89
## 5338    18 years old or older Female              12th grade   1.57  57.15
## 5339             17 years old   Male              11th grade   1.96  95.26
## 5340             17 years old Female              10th grade   1.60  72.58
## 5341             17 years old Female              12th grade   1.68 108.86
## 5342             17 years old   Male              11th grade   1.85  79.38
## 5343             16 years old   Male              10th grade   1.65  72.58
## 5344             17 years old Female              12th grade   1.63  51.71
## 5345             15 years old   Male               9th grade   1.60  58.97
## 5346             16 years old Female              11th grade   1.60  48.54
## 5347             16 years old Female              11th grade   1.60  54.43
## 5348             14 years old   Male               9th grade   1.73  55.79
## 5349             17 years old   Male              11th grade   1.83  72.58
## 5350             15 years old Female               9th grade   1.57  50.35
## 5351             14 years old   Male               9th grade   1.63  53.07
## 5352             16 years old   Male              10th grade   1.80 104.33
## 5353             17 years old   Male              12th grade   1.73  97.52
## 5354             17 years old   Male              12th grade   1.78  65.77
## 5355  12 years old or younger   Male Ungraded or other grade   1.47  35.38
## 5356             15 years old   Male               9th grade   1.73  58.97
## 5357             17 years old   Male              11th grade   1.75 106.14
## 5358             16 years old   Male               9th grade   1.57  52.16
## 5359             16 years old   Male              10th grade   1.80  86.18
## 5360    18 years old or older   Male              12th grade   1.75  81.65
## 5361             17 years old   Male              11th grade   1.63  52.16
## 5362             17 years old Female              11th grade   1.60  63.05
## 5363             14 years old Female               9th grade   1.70  54.43
## 5364             16 years old   Male              11th grade   1.73  86.18
## 5365             14 years old Female               9th grade   1.57  77.11
## 5366             15 years old Female              10th grade   1.68  68.04
## 5367             17 years old Female              12th grade   1.65  63.50
## 5368             17 years old Female              12th grade   1.63  48.08
## 5369             17 years old Female              11th grade     NA     NA
## 5370             17 years old   Male              11th grade   1.73  70.31
## 5371             14 years old   Male               9th grade   1.65  50.80
## 5372    18 years old or older Female              11th grade   1.47 102.06
## 5373             15 years old   Male              10th grade   1.83  54.43
## 5374             17 years old Female              12th grade   1.63  86.18
## 5375    18 years old or older   Male              12th grade   1.90  90.72
## 5376    18 years old or older   Male              12th grade   1.70  81.65
## 5377             16 years old Female              11th grade   1.63  49.44
## 5378             16 years old   Male              11th grade   1.78  81.65
## 5379             15 years old   Male               9th grade   1.73  62.14
## 5380             15 years old Female              10th grade     NA     NA
## 5381             17 years old   Male              11th grade   1.68  53.52
## 5382             16 years old   Male              11th grade   1.78  52.16
## 5383             14 years old Female               9th grade   1.55  68.04
## 5384             16 years old   Male              10th grade   1.73  53.52
## 5385    18 years old or older   Male              12th grade   1.83  70.31
## 5386    18 years old or older   Male              12th grade   1.83  58.97
## 5387             16 years old   Male              11th grade   1.63  81.65
## 5388             17 years old   Male              11th grade   1.70  54.43
## 5389             15 years old Female               9th grade   1.65  52.16
## 5390             16 years old   Male              11th grade   1.85  90.72
## 5391             14 years old   Male               9th grade   1.68  63.50
## 5392             15 years old   <NA>              10th grade     NA     NA
## 5393             17 years old   Male              12th grade   1.80 113.40
## 5394             17 years old Female              12th grade   1.57  64.86
## 5395             16 years old Female              11th grade   1.63  60.78
## 5396             15 years old Female               9th grade   1.52  46.72
## 5397             17 years old   Male              11th grade   1.83 111.13
## 5398             15 years old Female               9th grade   1.70  61.24
## 5399             15 years old   Male              10th grade   1.70  60.78
## 5400             17 years old   Male              12th grade   1.78  65.77
## 5401    18 years old or older   Male              12th grade   1.88  90.72
## 5402             16 years old   Male              11th grade   1.88  95.26
## 5403             14 years old Female               9th grade   1.65  63.50
## 5404             17 years old   Male              11th grade   1.80 106.60
## 5405             14 years old Female               9th grade   1.57  61.24
## 5406             15 years old   Male              10th grade   1.85 104.33
## 5407    18 years old or older Female              12th grade   1.57  72.58
## 5408    18 years old or older Female              12th grade   1.75  81.65
## 5409             15 years old   Male              10th grade   1.73  65.77
## 5410             14 years old   Male               9th grade     NA     NA
## 5411             15 years old Female              10th grade   1.70  56.70
## 5412             16 years old   Male              11th grade   1.80 101.61
## 5413             17 years old   Male              11th grade     NA     NA
## 5414             14 years old   Male               9th grade   1.80  83.92
## 5415             16 years old   Male              11th grade   1.70  68.04
## 5416             15 years old Female               9th grade   1.60  73.94
## 5417             15 years old Female              10th grade   1.52  47.17
## 5418             17 years old   Male              12th grade   1.70  56.70
## 5419             17 years old   Male              12th grade   1.78  49.90
## 5420             16 years old Female              10th grade   1.68  51.71
## 5421             14 years old   Male               9th grade   1.68  67.13
## 5422             16 years old Female              11th grade   1.65  48.54
## 5423             15 years old   Male               9th grade   1.68  52.16
## 5424             16 years old   Male              10th grade   1.80  77.11
## 5425             17 years old   Male              12th grade   1.60  49.44
## 5426    18 years old or older   Male              12th grade   1.83  74.84
## 5427             17 years old   Male              11th grade   1.80  65.77
## 5428             15 years old   Male               9th grade   1.78  58.97
## 5429             16 years old   Male              11th grade     NA     NA
## 5430             14 years old Female               9th grade   1.60  63.96
## 5431             16 years old   Male              10th grade   1.73  87.54
## 5432    18 years old or older   Male              12th grade   1.80  83.92
## 5433    18 years old or older Female              12th grade   1.63  81.65
## 5434             15 years old Female               9th grade   1.52  45.36
## 5435             16 years old Female              11th grade   1.63  58.97
## 5436             14 years old   Male               9th grade   1.75  81.65
## 5437             17 years old Female              11th grade   1.65  74.84
## 5438             15 years old Female               9th grade   1.63  50.35
## 5439             15 years old   Male              10th grade   1.73  58.97
## 5440             16 years old   Male              11th grade   1.88  74.84
## 5441             14 years old Female               9th grade   1.57  65.77
## 5442    18 years old or older   Male              11th grade   1.83  95.26
## 5443             16 years old Female               9th grade   1.63  89.81
## 5444             15 years old Female               9th grade   1.57  43.09
## 5445             15 years old   Male              10th grade   1.75  58.51
## 5446    18 years old or older Female              12th grade   1.65  54.43
## 5447             17 years old Female              12th grade   1.65  86.18
## 5448             17 years old Female              11th grade   1.63  76.20
## 5449             15 years old   Male               9th grade   1.80  66.23
## 5450             15 years old Female               9th grade   1.57  52.16
## 5451             17 years old   Male              12th grade   1.78  58.97
## 5452    18 years old or older Female              11th grade   1.68  56.70
## 5453             17 years old   Male              11th grade   1.73  58.51
## 5454             15 years old   Male               9th grade   1.78  72.58
## 5455             16 years old   Male              11th grade   1.75  83.92
## 5456             14 years old Female               9th grade     NA     NA
## 5457             17 years old   Male              11th grade   1.90  99.34
## 5458    18 years old or older Female              11th grade     NA     NA
## 5459             15 years old Female               9th grade   1.60  54.43
## 5460             16 years old   Male              11th grade   1.85 115.67
## 5461             16 years old Female               9th grade   1.57  56.70
## 5462             14 years old   Male               9th grade   1.83  68.95
## 5463             16 years old   Male              11th grade   1.68  53.52
## 5464             17 years old Female              11th grade   1.57  67.59
## 5465             14 years old Female               9th grade   1.68  53.52
## 5466             16 years old   Male              11th grade   1.78  98.43
## 5467             15 years old Female               9th grade   1.57  51.26
## 5468             15 years old   Male               9th grade   1.80  86.18
## 5469             14 years old   Male               9th grade   1.68  64.86
## 5470             16 years old Female              11th grade   1.57  59.42
## 5471             15 years old Female               9th grade   1.55  68.95
## 5472             14 years old   Male               9th grade   1.75  61.24
## 5473             16 years old Female              10th grade   1.57  50.80
## 5474    18 years old or older   Male              12th grade   1.70  52.16
## 5475             17 years old Female              11th grade   1.52  45.36
## 5476             17 years old Female              11th grade   1.52  68.04
## 5477             16 years old Female              10th grade   1.52  67.13
## 5478             17 years old Female              11th grade   1.55  48.99
## 5479    18 years old or older Female              12th grade   1.60  57.15
## 5480             16 years old   Male              10th grade   1.63 108.86
## 5481             17 years old Female              11th grade   1.50  49.90
## 5482             17 years old   Male              11th grade   1.78  58.06
## 5483             17 years old   Male              11th grade   1.80  81.65
## 5484             16 years old Female              11th grade   1.60  50.80
## 5485             16 years old Female              10th grade     NA     NA
## 5486             16 years old Female              10th grade   1.70  89.81
## 5487             16 years old   Male              10th grade   1.75  61.24
## 5488             15 years old Female              10th grade   1.63  70.31
## 5489             17 years old Female              12th grade   1.57  74.84
## 5490             16 years old Female              10th grade   1.60  56.70
## 5491             16 years old   Male              10th grade   1.68 131.54
## 5492             14 years old Female               9th grade   1.60  48.54
## 5493             17 years old Female              11th grade   1.60  49.90
## 5494             17 years old Female              11th grade   1.55  54.89
## 5495             17 years old Female              11th grade   1.65  71.67
## 5496             16 years old   Male              10th grade   1.75  54.43
## 5497             16 years old   Male              10th grade   1.78  79.38
## 5498             17 years old Female              11th grade   1.73  70.31
## 5499             16 years old   Male              10th grade   1.83  90.72
## 5500             16 years old   Male              10th grade   1.78  65.77
## 5501             16 years old   Male              10th grade   1.78  79.38
## 5502             16 years old   Male              11th grade   1.73  68.04
## 5503             16 years old   Male              11th grade   1.75  72.58
## 5504             17 years old Female              11th grade   1.68 122.02
## 5505             17 years old   Male              11th grade   1.70  61.24
## 5506             17 years old   Male              11th grade   1.80  63.50
## 5507             17 years old Female              10th grade   1.63  68.04
## 5508             16 years old Female              10th grade   1.52  68.49
## 5509             16 years old Female              11th grade   1.57  52.16
## 5510    18 years old or older   Male              12th grade   1.78  80.74
## 5511             17 years old Female              11th grade   1.70  65.77
## 5512    18 years old or older Female              12th grade   1.65  81.65
## 5513             17 years old   Male              11th grade   1.75  81.65
## 5514             16 years old   Male              10th grade   1.80  79.38
## 5515             15 years old Female              10th grade   1.57  63.50
## 5516             16 years old   Male              10th grade   1.65  49.90
## 5517             17 years old Female              11th grade     NA     NA
## 5518    18 years old or older   Male              12th grade     NA     NA
## 5519             17 years old Female              12th grade   1.57  44.91
## 5520             15 years old Female               9th grade   1.70  56.70
## 5521             17 years old   Male              12th grade   1.68  58.06
## 5522             15 years old   Male               9th grade   1.73  63.50
## 5523             15 years old Female               9th grade   1.60  52.16
## 5524             15 years old   Male               9th grade   1.75  90.72
## 5525             15 years old Female               9th grade   1.55  54.43
## 5526             14 years old   Male               9th grade   1.70  50.35
## 5527             15 years old Female               9th grade   1.63  72.58
## 5528             14 years old Female               9th grade   1.70  50.80
## 5529             15 years old   Male               9th grade   1.68  72.58
## 5530             15 years old   Male               9th grade   1.80  75.75
## 5531             14 years old Female               9th grade     NA     NA
## 5532             14 years old Female               9th grade   1.70  81.65
## 5533             15 years old Female               9th grade   1.68  63.50
## 5534             15 years old   Male               9th grade   1.65  49.90
## 5535             15 years old Female               9th grade   1.55  56.70
## 5536             14 years old Female               9th grade   1.52  45.36
## 5537             15 years old Female               9th grade   1.50  43.55
## 5538             15 years old   Male               9th grade   1.60  63.50
## 5539             14 years old Female               9th grade   1.52  72.58
## 5540             15 years old Female               9th grade   1.60  88.45
## 5541             17 years old Female              12th grade   1.70  71.67
## 5542             17 years old Female              11th grade   1.50  45.36
## 5543             15 years old   Male              10th grade   1.73 117.94
## 5544    18 years old or older Female              12th grade   1.73  54.43
## 5545             17 years old Female              11th grade   1.50  58.97
## 5546             17 years old Female              11th grade   1.60  48.54
## 5547             17 years old Female              11th grade   1.65  56.25
## 5548             17 years old Female              12th grade   1.57  58.97
## 5549             17 years old   Male              11th grade   1.80  99.79
## 5550             17 years old   Male              12th grade   1.73  82.56
## 5551             16 years old Female              10th grade   1.68  52.16
## 5552    18 years old or older Female              12th grade   1.68  70.31
## 5553             16 years old Female              10th grade   1.60  48.54
## 5554             15 years old Female              10th grade   1.57  61.24
## 5555             16 years old Female              10th grade   1.68  62.14
## 5556             16 years old Female              10th grade     NA     NA
## 5557             17 years old Female              11th grade   1.73  54.43
## 5558             17 years old Female              12th grade   1.75  92.08
## 5559             17 years old Female              11th grade   1.57  54.43
## 5560             17 years old   Male              11th grade   1.73 102.06
## 5561    18 years old or older Female              12th grade   1.55  63.50
## 5562             16 years old Female              10th grade     NA     NA
## 5563             15 years old Female              10th grade   1.50  52.62
## 5564             17 years old   Male              11th grade   1.60  45.36
## 5565             15 years old Female              10th grade   1.57  54.43
## 5566             16 years old Female              11th grade   1.60  56.70
## 5567             16 years old Female              10th grade   1.60  64.86
## 5568             17 years old Female              11th grade   1.70  80.74
## 5569             16 years old   Male              10th grade   1.68  62.60
## 5570             16 years old Female              10th grade   1.57 113.40
## 5571             17 years old Female              11th grade   1.57  54.43
## 5572             17 years old Female              11th grade   1.70  61.24
## 5573             17 years old Female              11th grade   1.55  52.16
## 5574    18 years old or older   Male              12th grade   1.75  58.97
## 5575             16 years old   Male              10th grade   1.83  62.60
## 5576             17 years old Female              11th grade   1.57  51.71
## 5577             17 years old Female              11th grade   1.57  57.61
## 5578    18 years old or older Female              12th grade   1.60  49.90
## 5579             17 years old Female              11th grade   1.52  56.70
## 5580    18 years old or older   Male              12th grade   1.70  56.70
## 5581             17 years old   Male              11th grade   1.65  88.45
## 5582             16 years old Female              10th grade   1.57  79.38
## 5583             16 years old   Male              10th grade   1.85  90.72
## 5584             16 years old   Male              10th grade   1.78  72.58
## 5585             17 years old   Male              11th grade   1.75  77.11
## 5586    18 years old or older   Male              12th grade   1.85  70.31
## 5587             15 years old Female              10th grade   1.63  59.88
## 5588             16 years old Female              10th grade   1.73  84.37
## 5589             14 years old   Male               9th grade   1.68  54.43
## 5590             17 years old   Male              12th grade   1.78  74.84
## 5591             17 years old   Male              12th grade   1.75 125.19
## 5592             16 years old Female              10th grade   1.52  60.33
## 5593             15 years old Female               9th grade   1.63  52.16
## 5594             15 years old Female               9th grade   1.50  43.09
## 5595             15 years old   Male               9th grade   1.83 131.54
## 5596             14 years old Female               9th grade   1.60  48.54
## 5597             15 years old   Male               9th grade   1.73  90.72
## 5598             14 years old   Male               9th grade   1.73  70.76
## 5599             15 years old   Male               9th grade   1.60  50.35
## 5600             15 years old Female               9th grade   1.70  54.43
## 5601             15 years old   Male               9th grade   1.78 111.13
## 5602             15 years old   Male               9th grade     NA     NA
## 5603             14 years old Female               9th grade   1.63  72.58
## 5604             16 years old   Male               9th grade   1.85  68.04
## 5605             15 years old Female               9th grade   1.68  61.24
## 5606             15 years old   Male               9th grade   1.73  63.50
## 5607             15 years old   Male               9th grade   1.80  98.43
## 5608             15 years old Female               9th grade   1.60  75.75
## 5609             15 years old Female               9th grade   1.60  56.70
## 5610             15 years old Female               9th grade   1.63  53.98
## 5611             14 years old   Male               9th grade   1.60  49.90
## 5612             15 years old   Male               9th grade   1.57  68.04
## 5613             14 years old Female               9th grade   1.52  72.58
## 5614             14 years old Female               9th grade     NA     NA
## 5615             14 years old Female               9th grade   1.73  61.69
## 5616             17 years old Female              11th grade   1.63  47.63
## 5617             16 years old   Male              10th grade   1.75  63.50
## 5618             17 years old Female              11th grade   1.50  57.61
## 5619    18 years old or older Female              12th grade   1.60  69.40
## 5620             17 years old Female              11th grade   1.68  61.24
## 5621             15 years old Female              10th grade   1.55  57.61
## 5622             16 years old   Male              10th grade   1.75  86.18
## 5623             16 years old   Male              11th grade   1.73  62.60
## 5624             17 years old Female              12th grade   1.63 104.33
## 5625             17 years old   Male              11th grade   1.78  70.31
## 5626             16 years old   Male              10th grade     NA     NA
## 5627             17 years old   Male              11th grade   1.70  90.72
## 5628             15 years old Female              10th grade   1.57  49.90
## 5629             15 years old Female               9th grade   1.65  68.04
## 5630             15 years old Female               9th grade   1.70  59.42
## 5631             17 years old   Male              11th grade     NA     NA
## 5632             16 years old Female              11th grade   1.63  65.77
## 5633             16 years old Female              10th grade   1.63  58.97
## 5634             17 years old Female              11th grade   1.57  72.58
## 5635             17 years old Female              11th grade     NA     NA
## 5636             16 years old Female              10th grade   1.57  44.91
## 5637             15 years old   Male               9th grade   1.75  54.43
## 5638             16 years old   Male              11th grade   1.85  66.68
## 5639             17 years old Female              11th grade   1.55  49.90
## 5640             15 years old Female              10th grade   1.60  53.07
## 5641             16 years old Female              10th grade   1.57  54.43
## 5642             14 years old Female               9th grade   1.63  53.98
## 5643             16 years old Female              10th grade   1.65  47.63
## 5644             16 years old   Male              11th grade   1.65  49.90
## 5645             16 years old   Male              10th grade   1.73  52.16
## 5646             17 years old   Male              11th grade   1.73  49.90
## 5647             16 years old Female              11th grade   1.57  48.08
## 5648             16 years old   Male              10th grade   1.78  86.18
## 5649             16 years old Female              11th grade   1.75  57.61
## 5650             16 years old   Male              10th grade   1.73  57.15
## 5651             15 years old Female               9th grade   1.65  59.88
## 5652             17 years old Female              11th grade   1.65  65.77
## 5653             17 years old Female              11th grade   1.60  57.15
## 5654             15 years old Female              10th grade   1.57  61.24
## 5655             16 years old   Male              10th grade   1.78  72.58
## 5656             14 years old   Male               9th grade   1.73  56.70
## 5657             14 years old   Male               9th grade   1.90  81.65
## 5658             17 years old Female              11th grade   1.57  54.43
## 5659             17 years old   Male              11th grade   1.93 122.47
## 5660             16 years old   Male              10th grade   1.70  52.16
## 5661             15 years old   Male               9th grade   1.70  72.58
## 5662             14 years old Female               9th grade   1.68  49.90
## 5663             17 years old Female              11th grade   1.73  45.36
## 5664             17 years old Female              11th grade   1.50  47.63
## 5665             16 years old   Male              10th grade   1.73  78.47
## 5666             16 years old   Male              10th grade   1.65  67.13
## 5667             14 years old   Male               9th grade   1.75  54.43
## 5668             15 years old   Male               9th grade   1.70  64.41
## 5669    18 years old or older   Male              12th grade   1.73  76.20
## 5670             16 years old   Male              11th grade   1.73  97.07
## 5671             15 years old Female              10th grade   1.57  52.16
## 5672             16 years old   Male              10th grade   1.83  58.97
## 5673             17 years old Female              11th grade   1.70  64.86
## 5674             16 years old Female              10th grade   1.65  63.50
## 5675             17 years old Female              11th grade   1.55  52.16
## 5676             16 years old   Male              10th grade   1.60  45.36
## 5677             16 years old   Male              10th grade   1.68  56.70
## 5678             16 years old   Male              10th grade   1.78  61.24
## 5679             16 years old Female              10th grade   1.70  58.97
## 5680    18 years old or older   Male              12th grade   1.78  89.36
## 5681    18 years old or older   Male              12th grade   1.83  70.31
## 5682             14 years old   Male               9th grade   1.60  78.02
## 5683    18 years old or older   Male              12th grade   1.80 134.72
## 5684    18 years old or older Female              12th grade     NA     NA
## 5685             15 years old   Male               9th grade     NA     NA
## 5686    18 years old or older   Male              12th grade     NA     NA
## 5687    18 years old or older   Male              12th grade   1.83 106.14
## 5688             14 years old Female               9th grade   1.40  47.63
## 5689    18 years old or older   Male              12th grade   1.80  77.11
## 5690    18 years old or older   Male              12th grade     NA     NA
## 5691             14 years old Female               9th grade   1.52  48.08
## 5692    18 years old or older   Male              12th grade   1.73  83.46
## 5693             15 years old Female               9th grade   1.55  44.00
## 5694    18 years old or older   Male              12th grade   1.85  77.57
## 5695             16 years old   Male               9th grade   1.90  77.11
## 5696    18 years old or older   Male              12th grade   1.83  63.50
## 5697             14 years old   Male               9th grade   1.65  83.92
## 5698    18 years old or older Female              12th grade   1.57  77.11
## 5699             14 years old Female               9th grade   1.52  56.70
## 5700    18 years old or older   Male              12th grade   1.68  58.97
## 5701    18 years old or older Female              12th grade   1.60  74.84
## 5702             14 years old Female               9th grade   1.63  68.04
## 5703    18 years old or older Female              12th grade   1.68  65.77
## 5704             14 years old Female               9th grade   1.68 140.62
## 5705    18 years old or older   Male              12th grade   1.70  54.43
## 5706    18 years old or older   Male              12th grade   1.65  62.60
## 5707             15 years old   Male               9th grade   1.68  86.18
## 5708    18 years old or older   Male              12th grade   1.96 115.67
## 5709             15 years old Female               9th grade   1.57  75.75
## 5710    18 years old or older Female              12th grade   1.60  49.90
## 5711    18 years old or older   Male              12th grade   1.80  63.50
## 5712    18 years old or older   Male              12th grade   1.78  70.31
## 5713             15 years old   Male               9th grade   1.75 167.38
## 5714             16 years old   Male               9th grade   1.73  63.50
## 5715    18 years old or older   Male              12th grade   1.78  83.92
## 5716    18 years old or older   Male              12th grade   1.83  77.11
## 5717             15 years old   Male               9th grade   1.63  40.82
## 5718             17 years old   Male              11th grade   1.83 106.60
## 5719             16 years old Female              10th grade   1.63  54.43
## 5720             16 years old Female              10th grade     NA     NA
## 5721             17 years old Female              11th grade   1.63  80.74
## 5722             16 years old Female              10th grade   1.63  62.14
## 5723             16 years old Female              10th grade   1.65  81.65
## 5724             17 years old   Male              11th grade   1.75  95.26
## 5725             17 years old Female              11th grade   1.60  99.79
## 5726             16 years old Female              10th grade   1.63  54.89
## 5727             15 years old   Male              10th grade   1.80  64.41
## 5728             16 years old   Male              11th grade   1.78  66.68
## 5729             17 years old   Male              11th grade   1.65  81.19
## 5730             15 years old Female              10th grade   1.70  56.70
## 5731             15 years old   Male              10th grade   1.78  59.88
## 5732             16 years old Female              11th grade   1.68  61.24
## 5733             17 years old Female              11th grade   1.57  58.97
## 5734             16 years old   Male              10th grade   1.80  66.68
## 5735             16 years old   Male              10th grade   1.83  88.45
## 5736             15 years old Female              10th grade   1.75  65.77
## 5737             17 years old Female              11th grade     NA     NA
## 5738             16 years old Female              10th grade     NA     NA
## 5739             17 years old Female              11th grade   1.70 117.94
## 5740             17 years old   Male              11th grade   1.70  65.77
## 5741             16 years old   Male              10th grade   1.68  58.97
## 5742             16 years old   Male              10th grade   1.78  61.24
## 5743    18 years old or older   Male              12th grade     NA     NA
## 5744             15 years old Female               9th grade   1.70  54.43
## 5745             15 years old Female              10th grade   1.80  99.79
## 5746             16 years old   Male              11th grade   1.70  91.63
## 5747             17 years old   Male              11th grade     NA     NA
## 5748             16 years old Female              10th grade   1.65  58.97
## 5749             16 years old   Male              10th grade   1.73 122.47
## 5750             17 years old   Male              11th grade   1.83 112.95
## 5751             16 years old   Male              11th grade   1.78  70.31
## 5752             15 years old Female              10th grade   1.63  58.97
## 5753             16 years old Female              10th grade   1.57  63.50
## 5754             17 years old Female              12th grade   1.55  77.11
## 5755             15 years old Female              10th grade   1.60  65.77
## 5756             15 years old Female              10th grade   1.55  54.89
## 5757             17 years old   Male              11th grade   1.73  90.72
## 5758             16 years old   Male              10th grade     NA     NA
## 5759             15 years old Female              10th grade   1.57  53.07
## 5760             16 years old   Male              11th grade   1.78 111.13
## 5761             16 years old Female              11th grade   1.63  54.43
## 5762             17 years old   Male              11th grade   1.78  88.45
## 5763             17 years old Female              10th grade   1.55  79.38
## 5764             15 years old Female              10th grade   1.63  99.79
## 5765             15 years old Female              10th grade   1.68  84.82
## 5766             16 years old   Male              10th grade   1.73  66.68
## 5767             17 years old   Male              11th grade   1.78 117.94
## 5768             15 years old Female               9th grade   1.65  58.97
## 5769             15 years old   Male               9th grade   1.73  54.43
## 5770             15 years old Female               9th grade   1.68  74.84
## 5771             15 years old   Male               9th grade   1.68  53.52
## 5772             15 years old Female               9th grade   1.65  59.88
## 5773             14 years old Female               9th grade   1.55  58.51
## 5774             15 years old   Male               9th grade   1.70  67.13
## 5775             15 years old Female               9th grade   1.60  53.07
## 5776             15 years old   Male               9th grade   1.83  63.50
## 5777             15 years old Female               9th grade   1.57  54.43
## 5778             15 years old Female               9th grade   1.60  82.10
## 5779             15 years old Female               9th grade   1.65  81.65
## 5780             15 years old Female               9th grade   1.50  45.36
## 5781             14 years old Female               9th grade   1.65  58.97
## 5782             15 years old Female               9th grade   1.75  70.31
## 5783             14 years old Female               9th grade   1.65  68.04
## 5784             15 years old Female               9th grade   1.63  47.63
## 5785             15 years old Female               9th grade   1.55  44.00
## 5786             15 years old Female               9th grade     NA     NA
## 5787             17 years old Female              12th grade   1.63 104.33
## 5788             17 years old   Male              12th grade   1.80 110.22
## 5789             17 years old   Male              12th grade   1.68  72.58
## 5790             17 years old   Male              12th grade   1.83 117.94
## 5791    18 years old or older   Male              12th grade   1.85  83.92
## 5792             17 years old   Male              12th grade   1.75 129.28
## 5793             17 years old   Male              12th grade   1.75  68.04
## 5794             17 years old   Male              12th grade   1.80 104.33
## 5795             17 years old   Male              12th grade   1.85  72.58
## 5796    18 years old or older   Male              12th grade   1.73  63.50
## 5797             17 years old Female              12th grade   1.57  58.06
## 5798             17 years old Female              12th grade   1.60 109.77
## 5799             17 years old Female              12th grade   1.57  57.61
## 5800             17 years old Female              12th grade   1.73  54.43
## 5801             17 years old Female              12th grade   1.63  67.59
## 5802             17 years old Female              12th grade   1.65  73.94
## 5803             17 years old   Male              12th grade   1.57  49.90
## 5804             17 years old Female              11th grade   1.63  53.52
## 5805             14 years old Female               9th grade     NA     NA
## 5806             17 years old Female              10th grade   1.63  83.92
## 5807             16 years old Female               9th grade   1.63  81.65
## 5808             17 years old Female              12th grade   1.63  68.04
## 5809             16 years old   Male               9th grade     NA     NA
## 5810             15 years old Female              10th grade   1.60  46.27
## 5811    18 years old or older Female              12th grade   1.52  56.70
## 5812             15 years old Female              10th grade   1.57  54.43
## 5813             16 years old   Male              11th grade   1.75  61.24
## 5814    18 years old or older Female              12th grade     NA     NA
## 5815             14 years old Female               9th grade   1.60  77.11
## 5816             17 years old   Male              11th grade   1.75  79.38
## 5817             17 years old   Male              12th grade   1.75  58.06
## 5818             16 years old Female              11th grade   1.63  85.73
## 5819             17 years old Female              12th grade   1.75  82.56
## 5820             16 years old   Male              10th grade   1.78  65.77
## 5821    18 years old or older   Male              10th grade   1.88  58.97
## 5822             17 years old Female              12th grade   1.55  65.77
## 5823             17 years old Female              12th grade   1.68  54.89
## 5824             16 years old   Male              10th grade   1.73  58.97
## 5825             15 years old Female              10th grade   1.78  90.72
## 5826             16 years old Female              11th grade   1.52  51.26
## 5827    18 years old or older   Male              12th grade   1.65  63.50
## 5828    18 years old or older   Male              12th grade   1.75  71.22
## 5829             17 years old   Male              11th grade   1.83  79.38
## 5830             15 years old Female              10th grade   1.78  58.51
## 5831             17 years old   Male              11th grade   1.75  96.62
## 5832                     <NA>   Male              12th grade     NA     NA
## 5833             15 years old   Male               9th grade   1.70  77.11
## 5834    18 years old or older   Male              12th grade     NA     NA
## 5835             17 years old   Male              12th grade   1.78  88.45
## 5836             15 years old Female              10th grade   1.63  63.50
## 5837             17 years old   Male              11th grade   1.73  95.26
## 5838                     <NA>   Male              11th grade     NA     NA
## 5839             17 years old Female              11th grade   1.55  58.97
## 5840             16 years old Female              11th grade   1.57  59.42
## 5841             15 years old   Male              10th grade   1.75  65.77
## 5842             17 years old Female              11th grade   1.60  56.70
## 5843             15 years old   Male               9th grade   1.80  79.38
## 5844             16 years old   Male              10th grade   1.73  58.97
## 5845             17 years old   Male              11th grade   1.73  63.50
## 5846    18 years old or older Female              12th grade   1.63  77.11
## 5847             16 years old Female              10th grade   1.57  70.31
## 5848             16 years old   Male              10th grade   1.83  86.18
## 5849             14 years old Female               9th grade   1.63  62.60
## 5850    18 years old or older Female              12th grade   1.63  54.43
## 5851             16 years old Female              11th grade   1.63  54.43
## 5852    18 years old or older   Male              12th grade   1.78  76.20
## 5853             16 years old Female              10th grade   1.57  58.97
## 5854             15 years old   Male               9th grade   1.80  79.38
## 5855             16 years old   Male              11th grade   1.73  56.70
## 5856             16 years old   Male              10th grade   1.73  48.08
## 5857             15 years old Female               9th grade   1.65  81.65
## 5858    18 years old or older Female              12th grade   1.68  81.65
## 5859             15 years old   Male              10th grade   1.80 104.33
## 5860    18 years old or older Female              12th grade   1.68  61.24
## 5861             16 years old Female              11th grade   1.70  72.58
## 5862             15 years old Female              10th grade   1.57  45.36
## 5863    18 years old or older   Male              12th grade   1.80  81.65
## 5864    18 years old or older   Male              12th grade   1.90  83.92
## 5865             15 years old Female              10th grade   1.68  59.88
## 5866             17 years old   Male              12th grade   1.83  65.77
## 5867             17 years old Female              11th grade     NA     NA
## 5868             16 years old Female              11th grade   1.57  49.90
## 5869             15 years old   Male              10th grade   1.90  73.48
## 5870             17 years old   Male              11th grade   1.78  74.84
## 5871             16 years old Female              10th grade   1.65  63.50
## 5872    18 years old or older Female              12th grade   1.65  58.97
## 5873    18 years old or older   Male              12th grade   1.78 113.40
## 5874             14 years old Female               9th grade   1.55  63.50
## 5875             15 years old   Male               9th grade   1.70  72.58
## 5876             16 years old Female              11th grade   1.63  61.24
## 5877             16 years old Female              10th grade   1.65  54.43
## 5878             15 years old Female              10th grade   1.78  54.43
## 5879             15 years old Female               9th grade     NA     NA
## 5880             15 years old Female              10th grade   1.70  74.84
## 5881             16 years old Female              11th grade   1.63  57.61
## 5882             15 years old   Male              10th grade   1.75  98.88
## 5883             17 years old Female              12th grade     NA     NA
## 5884    18 years old or older   Male              12th grade   1.80 115.67
## 5885    18 years old or older Female Ungraded or other grade   1.65  77.11
## 5886             17 years old Female              11th grade     NA     NA
## 5887             16 years old Female              10th grade   1.57  44.45
## 5888             16 years old Female              11th grade   1.60  63.50
## 5889             16 years old Female              10th grade   1.65  56.25
## 5890    18 years old or older Female              12th grade   1.73  72.12
## 5891             16 years old Female               9th grade     NA     NA
## 5892             15 years old Female               9th grade   1.73  71.22
## 5893             17 years old Female              11th grade   1.63 104.33
## 5894             16 years old Female              10th grade   1.68  58.97
## 5895             16 years old Female              11th grade   1.52  99.79
## 5896             16 years old Female              10th grade   1.60  52.16
## 5897             17 years old Female              12th grade   1.60 138.80
## 5898             15 years old Female               9th grade   1.65  52.16
## 5899             15 years old   Male               9th grade     NA     NA
## 5900             16 years old Female              11th grade   1.68  61.24
## 5901             16 years old Female              10th grade   1.60  56.70
## 5902             17 years old   Male              12th grade   1.73  77.11
## 5903    18 years old or older   Male              12th grade   1.83  60.78
## 5904             15 years old Female               9th grade   1.80  76.20
## 5905             15 years old   Male               9th grade   1.75  64.86
## 5906             17 years old   Male              11th grade   1.70  63.50
## 5907             15 years old Female              10th grade   1.65  65.32
## 5908             16 years old Female              11th grade   1.80  61.24
## 5909             16 years old Female              10th grade   1.70  58.97
## 5910    18 years old or older   Male              12th grade   1.78  74.84
## 5911             15 years old Female               9th grade   1.75  58.97
## 5912             14 years old Female               9th grade   1.57  58.97
## 5913    18 years old or older   Male              11th grade   1.73  48.08
## 5914             16 years old Female              10th grade   1.57  61.24
## 5915             16 years old Female              11th grade     NA     NA
## 5916             15 years old Female              10th grade   1.73  58.97
## 5917             17 years old Female              12th grade   1.63  79.38
## 5918             17 years old Female              11th grade   1.63  44.45
## 5919             15 years old   Male              10th grade   1.73  62.60
## 5920             14 years old   Male               9th grade   1.90 104.33
## 5921             16 years old Female              12th grade   1.60  67.59
## 5922             16 years old   Male              10th grade   1.75  62.60
## 5923             16 years old   Male              11th grade     NA     NA
## 5924             16 years old Female              10th grade   1.60  68.04
## 5925    18 years old or older Female              12th grade   1.63  58.97
## 5926    18 years old or older Female              12th grade   1.60  81.65
## 5927             17 years old   Male              11th grade   1.75  61.24
## 5928             15 years old   Male               9th grade   1.85  72.58
## 5929             17 years old   Male              11th grade   1.78 154.68
## 5930             16 years old   Male              10th grade   1.78  99.79
## 5931             16 years old Female              11th grade   1.68 100.70
## 5932             15 years old Female              10th grade   1.55  57.15
## 5933             17 years old   Male              12th grade   1.73  92.99
## 5934    18 years old or older Female              12th grade   1.68  81.65
## 5935             15 years old Female               9th grade   1.63  95.26
## 5936             16 years old   Male              11th grade   1.83  65.77
## 5937             16 years old Female              11th grade   1.70  86.18
## 5938             15 years old   Male               9th grade   1.75  63.50
## 5939             17 years old   Male              12th grade   1.80 104.33
## 5940             17 years old   Male              12th grade   1.73  81.65
## 5941             14 years old   Male               9th grade   1.75  97.98
## 5942             15 years old   Male               9th grade   1.70 101.61
## 5943             16 years old Female              11th grade   1.75  90.72
## 5944             16 years old   Male              10th grade   1.73  63.96
## 5945             16 years old   Male              11th grade   1.73  63.50
## 5946             14 years old Female               9th grade   1.52  38.56
## 5947    18 years old or older Female              12th grade   1.68  77.11
## 5948             17 years old   Male              12th grade   1.75  69.40
## 5949             15 years old Female               9th grade   1.65  64.86
## 5950             16 years old   Male              10th grade   1.73  86.18
## 5951    18 years old or older   Male              11th grade   1.78  81.65
## 5952             16 years old   Male              10th grade   1.70  71.22
## 5953             16 years old   Male              10th grade   1.73  61.24
## 5954             16 years old   Male              10th grade   1.80  74.84
## 5955             15 years old   Male              10th grade   1.73  90.72
## 5956             16 years old Female              10th grade   1.63  49.90
## 5957             16 years old Female              10th grade   1.60  61.24
## 5958    18 years old or older   Male              12th grade   1.75  55.79
## 5959             16 years old Female              10th grade   1.63  55.79
## 5960    18 years old or older   Male              12th grade   1.73  72.58
## 5961    18 years old or older   Male              12th grade   1.85  97.98
## 5962             15 years old Female               9th grade   1.63  49.90
## 5963             14 years old Female               9th grade   1.68  54.43
## 5964             17 years old   Male              12th grade   1.83  68.04
## 5965             17 years old   Male              10th grade   1.68  95.26
## 5966             16 years old Female              10th grade   1.57  63.50
## 5967    18 years old or older Female              12th grade   1.78  73.03
## 5968    18 years old or older   Male              12th grade   1.80  72.58
## 5969             15 years old Female               9th grade   1.55  76.66
## 5970             15 years old   Male               9th grade   1.68  65.77
## 5971             16 years old   Male              11th grade   1.70  63.50
## 5972             17 years old Female              11th grade     NA     NA
## 5973             16 years old Female              10th grade   1.57  47.63
## 5974    18 years old or older Female              12th grade     NA     NA
## 5975             17 years old   Male              12th grade   1.88  68.95
## 5976             15 years old Female               9th grade     NA     NA
## 5977             14 years old   Male               9th grade   1.68  53.07
## 5978             16 years old Female              10th grade   1.68  63.50
## 5979             16 years old   Male              10th grade   1.75  70.76
## 5980             16 years old   Male              10th grade   1.78 128.37
## 5981             15 years old   Male              10th grade   1.70  81.65
## 5982             15 years old Female              10th grade   1.73  86.18
## 5983             16 years old Female              11th grade   1.63  58.97
## 5984             14 years old   Male               9th grade   1.83  81.19
## 5985             17 years old Female              11th grade   1.73  58.97
## 5986             15 years old Female              10th grade   1.65  47.17
## 5987             17 years old Female              11th grade   1.68  58.06
## 5988    18 years old or older Female              12th grade   1.63  56.70
## 5989    18 years old or older Female              12th grade   1.57  65.77
## 5990             14 years old   Male               9th grade   1.73  45.36
## 5991             15 years old   Male               9th grade   1.73  97.52
## 5992             17 years old   Male              11th grade   1.70  86.18
## 5993             17 years old Female              11th grade   1.57  49.44
## 5994             16 years old Female              10th grade     NA     NA
## 5995             15 years old   Male              11th grade   1.80  72.58
## 5996             16 years old Female              11th grade   1.68  97.52
## 5997             15 years old   Male               9th grade   1.70  55.79
## 5998    18 years old or older Female              12th grade   1.60  83.92
## 5999             17 years old   Male              12th grade   1.78  58.97
## 6000             17 years old   Male              10th grade   1.73  79.38
## 6001             14 years old Female               9th grade   1.70  72.58
## 6002             17 years old Female              12th grade   1.63  59.88
## 6003    18 years old or older Female              12th grade   1.60  56.70
## 6004             16 years old   Male              10th grade   1.70  74.39
## 6005             17 years old   Male              11th grade   1.78  60.78
## 6006    18 years old or older Female              11th grade   1.42  58.97
## 6007             17 years old   Male              12th grade   1.68  63.50
## 6008             17 years old Female              11th grade   1.60  46.27
## 6009             15 years old   Male               9th grade   1.73  86.18
## 6010             17 years old Female              12th grade   1.52  45.36
## 6011             17 years old Female              12th grade   1.63  68.04
## 6012             16 years old   Male              10th grade   1.83  77.11
## 6013             16 years old   Male              11th grade   1.70  56.70
## 6014             17 years old   Male              11th grade   1.75  54.89
## 6015             17 years old   Male              12th grade   1.68  76.20
## 6016             17 years old   Male              12th grade   1.80 127.01
## 6017             17 years old   Male              10th grade     NA     NA
## 6018             17 years old   Male              11th grade   1.55 100.70
## 6019             17 years old   Male              11th grade   1.78  86.18
## 6020    18 years old or older Female              12th grade   1.55  67.59
## 6021             16 years old   Male              10th grade   1.80  92.99
## 6022    18 years old or older   Male              11th grade   1.88  99.79
## 6023             16 years old   Male              11th grade   1.85  92.99
## 6024             15 years old Female               9th grade   1.52  63.05
## 6025             17 years old Female              12th grade   1.63  54.43
## 6026             16 years old   Male               9th grade     NA     NA
## 6027             16 years old Female              11th grade   1.63  68.04
## 6028             17 years old   Male              11th grade   1.85  69.85
## 6029             16 years old   Male               9th grade   1.78  58.97
## 6030             17 years old   Male              11th grade   1.75  88.91
## 6031             17 years old   Male              11th grade   1.80  99.34
## 6032             15 years old   Male               9th grade   1.78  86.18
## 6033             17 years old Female              12th grade   1.60  80.29
## 6034             17 years old Female              11th grade   1.57  52.16
## 6035             14 years old Female               9th grade   1.55  49.90
## 6036             17 years old Female              12th grade   1.60  61.24
## 6037    18 years old or older Female              12th grade   1.68 102.51
## 6038             16 years old   Male              10th grade   1.73  90.72
## 6039             17 years old Female              11th grade   1.63  54.43
## 6040             17 years old Female              11th grade   1.63  51.71
## 6041    18 years old or older Female              12th grade   1.57  88.91
## 6042             17 years old   Male              11th grade   1.80  86.18
## 6043             17 years old   Male              11th grade   1.88 112.49
## 6044             15 years old   Male               9th grade   1.83  99.79
## 6045    18 years old or older Female              12th grade   1.57  70.76
## 6046    18 years old or older Female              12th grade   1.65  60.33
## 6047             15 years old   Male              10th grade   1.73  68.04
## 6048             15 years old Female               9th grade   1.65  56.70
## 6049             16 years old   Male              10th grade   1.80  84.82
## 6050             14 years old Female               9th grade   1.57  49.90
## 6051             16 years old   Male              10th grade   1.78  58.97
## 6052             17 years old   Male              11th grade   1.75  58.97
## 6053             17 years old   Male                    <NA>   2.03  58.97
## 6054             17 years old   Male              12th grade   1.80 104.33
## 6055             17 years old Female              12th grade   1.60  57.61
## 6056             15 years old Female               9th grade     NA     NA
## 6057             16 years old Female              10th grade   1.63  63.50
## 6058             15 years old   Male               9th grade   1.68  69.40
## 6059             16 years old   Male              10th grade   1.80 161.48
## 6060             15 years old   Male               9th grade   1.80  91.17
## 6061             16 years old Female              10th grade   1.78  59.88
## 6062             16 years old   Male               9th grade   1.83  90.72
## 6063             16 years old   Male              10th grade   1.73  68.04
## 6064             17 years old   Male              10th grade   1.60  69.40
## 6065             15 years old   Male               9th grade   1.75 102.51
## 6066             15 years old Female               9th grade   1.55  43.09
## 6067             14 years old Female               9th grade   1.57  52.16
## 6068             16 years old Female              10th grade   1.63  60.33
## 6069             15 years old   Male               9th grade     NA     NA
## 6070             16 years old Female              10th grade   1.68  54.43
## 6071             14 years old Female               9th grade     NA     NA
## 6072             16 years old Female              10th grade   1.60  54.89
## 6073             14 years old Female               9th grade   1.68  54.43
## 6074             15 years old   Male              10th grade   1.73  58.97
## 6075             14 years old   Male               9th grade   1.80  95.26
## 6076             15 years old Female              10th grade   1.63  51.26
## 6077             15 years old   Male              10th grade   1.63  80.74
## 6078             15 years old   Male              10th grade   1.73  57.15
## 6079             16 years old   Male              10th grade   1.65  58.97
## 6080             16 years old Female              10th grade   1.52  74.84
## 6081             17 years old Female              12th grade   1.60  49.90
## 6082             17 years old Female              11th grade   1.57  60.33
## 6083             15 years old   Male               9th grade   1.65  49.90
## 6084             16 years old Female              10th grade     NA     NA
## 6085             17 years old   Male              12th grade   1.83 124.74
## 6086             16 years old   Male              11th grade   1.78 106.60
## 6087    18 years old or older   Male              12th grade   1.85  72.58
## 6088             16 years old   Male               9th grade   1.80  68.04
## 6089             15 years old Female              10th grade   1.65  62.60
## 6090             15 years old Female               9th grade   1.63  76.66
## 6091             15 years old Female              10th grade     NA     NA
## 6092             17 years old Female              12th grade   1.73  63.50
## 6093             16 years old   Male              11th grade   1.78  81.65
## 6094             16 years old Female              11th grade   1.55  49.90
## 6095    18 years old or older Female              12th grade   1.65  61.24
## 6096             15 years old Female               9th grade   1.68  79.83
## 6097    18 years old or older Female              12th grade   1.55  87.54
## 6098    18 years old or older   Male              11th grade   1.73 116.12
## 6099             15 years old   Male               9th grade   1.68  49.44
## 6100             15 years old Female               9th grade   1.68  49.90
## 6101             16 years old   Male              10th grade     NA     NA
## 6102             15 years old Female              10th grade   1.52  54.43
## 6103             16 years old Female               9th grade     NA     NA
## 6104             16 years old   Male              10th grade   1.93  97.07
## 6105             15 years old   Male              10th grade   1.73  81.65
## 6106    18 years old or older Female              12th grade   1.57  54.43
## 6107             16 years old Female              11th grade   1.68  62.60
## 6108             17 years old   Male              11th grade   1.73  68.95
## 6109             17 years old Female              12th grade   1.57  49.44
## 6110             14 years old Female               9th grade   1.60  60.33
## 6111             16 years old Female              10th grade   1.52  72.58
## 6112    18 years old or older   Male              12th grade   1.80  68.95
## 6113    18 years old or older   Male              12th grade   1.83  68.04
## 6114             17 years old Female              11th grade   1.52  45.81
## 6115             15 years old   Male               9th grade   1.70  93.44
## 6116             14 years old   Male               9th grade   1.78  57.15
## 6117             16 years old Female              10th grade   1.80  61.24
## 6118             17 years old   Male              10th grade   1.88  68.04
## 6119             17 years old Female              12th grade   1.60  70.31
## 6120             17 years old   Male              11th grade   1.70  77.11
## 6121             14 years old Female               9th grade     NA     NA
## 6122             15 years old   Male              10th grade   1.70  58.97
## 6123    18 years old or older Female              12th grade   1.60  59.88
## 6124             17 years old Female              12th grade   1.52  76.20
## 6125             15 years old   Male               9th grade   1.73  83.92
## 6126             16 years old   Male              10th grade   1.70  56.70
## 6127             16 years old   Male              10th grade   1.65  61.24
## 6128             17 years old   Male              12th grade   1.80 111.13
## 6129             17 years old   Male              11th grade   1.78  97.52
## 6130             17 years old Female              11th grade   1.63  63.50
## 6131             17 years old   Male              12th grade   1.78 102.06
## 6132             15 years old   Male               9th grade   1.80  90.72
## 6133             15 years old Female              10th grade     NA     NA
## 6134             16 years old   Male              10th grade   1.78  52.16
## 6135             15 years old Female               9th grade   1.57  45.36
## 6136    18 years old or older   Male              12th grade   1.73  58.97
## 6137             17 years old   Male               9th grade     NA     NA
## 6138             15 years old   Male              10th grade   1.75  53.52
## 6139    18 years old or older   Male              12th grade   1.75  68.04
## 6140             17 years old   Male              11th grade   1.75  61.24
## 6141             14 years old   Male               9th grade     NA     NA
## 6142             16 years old Female               9th grade   1.57  54.43
## 6143             16 years old   Male              10th grade   1.65  80.74
## 6144             14 years old Female              10th grade   1.70  68.04
## 6145    18 years old or older Female              12th grade     NA     NA
## 6146             17 years old   Male              11th grade   1.75  90.72
## 6147             14 years old Female               9th grade   1.68  71.67
## 6148             16 years old Female              10th grade   1.63  48.99
## 6149    18 years old or older Female              12th grade   1.65  61.24
## 6150             17 years old   Male              12th grade   1.78  68.04
## 6151             14 years old Female               9th grade   1.63  52.16
## 6152             15 years old Female               9th grade   1.68  76.66
## 6153             16 years old Female              10th grade   1.68  68.04
## 6154             17 years old   Male              10th grade   1.68  72.58
## 6155    18 years old or older Female              12th grade   1.60  86.18
## 6156             16 years old   Male              11th grade   1.78 107.05
## 6157             17 years old Female              11th grade   1.70  58.06
## 6158    18 years old or older Female              12th grade   1.57  62.14
## 6159             14 years old Female               9th grade     NA     NA
## 6160             15 years old Female               9th grade     NA     NA
## 6161             15 years old Female              10th grade   1.60  50.80
## 6162             17 years old   Male              12th grade   1.78  84.37
## 6163             16 years old   Male              11th grade   1.73  54.43
## 6164    18 years old or older   Male              12th grade   1.90  81.65
## 6165             16 years old   Male               9th grade     NA     NA
## 6166             17 years old   Male              12th grade   1.68  82.56
## 6167             17 years old   Male              12th grade   1.73  58.97
## 6168             17 years old Female              11th grade   1.65  74.84
## 6169    18 years old or older   Male              12th grade   1.68  86.18
## 6170             15 years old   Male               9th grade   1.65  82.10
## 6171             15 years old Female               9th grade   1.55  55.34
## 6172             15 years old   Male              10th grade   1.75 156.49
## 6173             16 years old Female              10th grade   1.57  58.06
## 6174    18 years old or older   Male              12th grade   1.88  97.52
## 6175             16 years old   Male              11th grade   1.83 107.50
## 6176             17 years old   Male              11th grade   1.85  68.04
## 6177    18 years old or older   Male              12th grade   1.68  54.43
## 6178             15 years old Female               9th grade   1.65  53.98
## 6179             15 years old   Male              10th grade   1.78  84.82
## 6180             16 years old Female              10th grade   1.60  53.52
## 6181    18 years old or older Female              12th grade   1.63  93.90
## 6182             16 years old Female              11th grade   1.57  60.33
## 6183             16 years old Female              10th grade   1.47  44.91
## 6184    18 years old or older Female              12th grade   1.57  63.50
## 6185             14 years old Female               9th grade   1.52  56.25
## 6186             17 years old   Male              12th grade   1.73  97.52
## 6187             16 years old   Male              11th grade   1.83  69.85
## 6188    18 years old or older Female              11th grade   1.63  52.62
## 6189    18 years old or older   Male              12th grade   1.80  63.96
## 6190             15 years old   Male               9th grade   1.52  40.82
## 6191    18 years old or older   Male              12th grade   1.75 113.40
## 6192             17 years old   Male              11th grade     NA     NA
## 6193             16 years old   Male              11th grade   1.88  72.58
## 6194             17 years old   Male              12th grade   1.75  83.92
## 6195             15 years old Female               9th grade   1.63  66.68
## 6196             16 years old Female              10th grade   1.75  72.58
## 6197             15 years old Female              10th grade   1.63  72.58
## 6198             17 years old   Male              12th grade   1.73  71.22
## 6199             17 years old Female              10th grade   1.60  39.01
## 6200             17 years old   Male              11th grade   1.88 113.40
## 6201             16 years old Female              11th grade   1.70  61.24
## 6202             15 years old Female               9th grade   1.73  58.97
## 6203             17 years old   Male              12th grade   1.75 127.01
## 6204    18 years old or older Female              12th grade   1.68  63.50
## 6205    18 years old or older Female              12th grade   1.63  92.99
## 6206    18 years old or older   Male              12th grade   1.75 111.13
## 6207    18 years old or older Female              12th grade   1.60  72.58
## 6208             16 years old   Male              10th grade   1.85  56.70
## 6209             16 years old Female              10th grade   1.60  71.22
## 6210    18 years old or older Female              12th grade   1.65 113.40
## 6211             17 years old   Male              11th grade   1.75  54.43
## 6212             15 years old   Male               9th grade     NA     NA
## 6213             17 years old   Male              12th grade   1.83  74.84
## 6214             16 years old   Male              10th grade   1.60  54.43
## 6215    18 years old or older Female              11th grade   1.60  92.99
## 6216             17 years old   Male              11th grade   1.75 113.40
## 6217             14 years old Female               9th grade   1.68  68.04
## 6218             16 years old   Male              10th grade   1.73  61.24
## 6219             15 years old Female              10th grade     NA     NA
## 6220             17 years old   Male              11th grade   1.85  81.19
## 6221             17 years old Female              11th grade   1.65  94.80
## 6222             15 years old Female                    <NA>     NA     NA
## 6223             16 years old   Male              10th grade   1.70  73.48
## 6224             16 years old   Male              10th grade   1.68  63.50
## 6225    18 years old or older   Male              12th grade   1.73 104.78
## 6226             16 years old Female              11th grade   1.63  57.15
## 6227             16 years old   Male              10th grade   1.78  94.35
## 6228             16 years old   Male              10th grade   1.78  58.97
## 6229             16 years old Female              10th grade   1.57  72.58
## 6230    18 years old or older   Male              12th grade   1.80 104.33
## 6231             16 years old Female              11th grade   1.57  58.97
## 6232             17 years old   Male              10th grade   1.65 121.11
## 6233    18 years old or older Female              12th grade   1.65  72.58
## 6234             15 years old   Male               9th grade   1.73  83.92
## 6235             17 years old   Male              11th grade   1.73  95.26
## 6236             17 years old   Male              11th grade   1.73  56.25
## 6237             16 years old   Male              10th grade   1.70  58.97
## 6238             16 years old Female              11th grade   1.52  58.97
## 6239             15 years old   Male              10th grade   1.73  74.84
## 6240             15 years old   Male              10th grade   1.75  68.95
## 6241             16 years old   Male              10th grade     NA     NA
## 6242    18 years old or older   Male              12th grade   1.80  88.45
## 6243             16 years old   Male              11th grade   1.75  49.90
## 6244             17 years old Female              11th grade   1.60 113.40
## 6245    18 years old or older   Male              12th grade   1.73  95.26
## 6246             16 years old   Male              10th grade   1.78  58.97
## 6247             15 years old   Male              10th grade   1.83  97.07
## 6248    18 years old or older   Male              12th grade   1.68  68.04
## 6249             17 years old Female              11th grade     NA     NA
## 6250             17 years old Female              11th grade   1.60  68.04
## 6251             15 years old   Male               9th grade   1.68  50.80
## 6252             17 years old Female              12th grade   1.65  79.38
## 6253             15 years old   Male              10th grade     NA     NA
## 6254             15 years old Female              10th grade     NA     NA
## 6255    18 years old or older Female              12th grade   1.70  61.24
## 6256             17 years old Female              11th grade   1.57  81.65
## 6257             16 years old Female              11th grade     NA     NA
## 6258             16 years old Female               9th grade   1.63  49.90
## 6259    18 years old or older Female              12th grade   1.65  61.24
## 6260             16 years old Female              10th grade     NA     NA
## 6261    18 years old or older   Male              12th grade   1.68  52.16
## 6262             17 years old   Male              10th grade   1.65  59.88
## 6263             14 years old Female               9th grade   1.70  55.79
## 6264             16 years old Female              10th grade     NA     NA
## 6265             15 years old Female              10th grade     NA     NA
## 6266             17 years old Female              12th grade   1.57  53.52
## 6267             16 years old   Male              11th grade   1.78  56.70
## 6268             16 years old Female              11th grade   1.68  77.11
## 6269             14 years old Female               9th grade   1.55  54.43
## 6270             17 years old Female              12th grade   1.63  95.26
## 6271             16 years old Female              10th grade   1.60  45.36
## 6272             16 years old   Male              10th grade   1.78  54.43
## 6273                     <NA>   Male              10th grade     NA     NA
## 6274    18 years old or older Female              11th grade     NA     NA
## 6275             15 years old Female               9th grade     NA     NA
## 6276    18 years old or older   Male              12th grade   1.63  66.68
## 6277             16 years old Female              10th grade     NA     NA
## 6278             17 years old Female              11th grade   1.57  58.97
## 6279             17 years old   Male              11th grade   1.78  68.04
## 6280    18 years old or older   Male              12th grade   1.78  69.85
## 6281             15 years old   Male              10th grade   1.90  99.79
## 6282             16 years old Female              10th grade   1.65  54.43
## 6283    18 years old or older Female              11th grade   1.65  70.31
## 6284             17 years old   Male              11th grade   1.73 113.40
## 6285             16 years old Female               9th grade   1.63  77.11
## 6286    18 years old or older   Male              12th grade   1.68  58.97
## 6287             15 years old   Male              10th grade   1.75  88.45
## 6288    18 years old or older   Male              11th grade   1.83  88.45
## 6289             17 years old Female              11th grade   1.63  72.58
## 6290             17 years old   Male              10th grade   1.83  77.11
## 6291    18 years old or older Female              12th grade   1.68  61.24
## 6292             17 years old Female              11th grade   1.57  81.65
## 6293             16 years old   Male              11th grade   1.80  98.43
## 6294             15 years old Female              10th grade     NA     NA
## 6295             17 years old Female              12th grade   1.68  68.04
## 6296             16 years old Female              11th grade   1.57  64.41
## 6297             16 years old   Male              10th grade   1.83  90.72
## 6298             16 years old Female              10th grade   1.63  86.18
## 6299    18 years old or older Female              12th grade   1.63  71.67
## 6300             17 years old   Male              11th grade     NA     NA
## 6301             16 years old Female              10th grade   1.60  49.90
## 6302    18 years old or older Female              12th grade   1.57  58.97
## 6303             17 years old Female              11th grade     NA     NA
## 6304             16 years old   Male              10th grade     NA     NA
## 6305             16 years old Female              10th grade   1.65  50.80
## 6306    18 years old or older   Male              12th grade   1.73  65.77
## 6307             15 years old   Male              10th grade   1.80  81.19
## 6308    18 years old or older   Male              12th grade   1.75  54.43
## 6309             16 years old Female              11th grade   1.65  81.65
## 6310    18 years old or older Female              12th grade   1.73 117.94
## 6311             15 years old   Male               9th grade   1.63  52.16
## 6312             15 years old   Male               9th grade   1.65  88.45
## 6313             15 years old   Male               9th grade   1.60  69.40
## 6314             15 years old Female               9th grade   1.65  53.52
## 6315             15 years old   Male               9th grade   1.75  53.98
## 6316             14 years old Female               9th grade     NA     NA
## 6317             15 years old   Male               9th grade   1.75  90.72
## 6318             14 years old Female               9th grade     NA     NA
## 6319             15 years old Female              10th grade     NA     NA
## 6320             15 years old Female               9th grade   1.68  58.97
## 6321             15 years old Female               9th grade   1.60  46.27
## 6322             14 years old Female               9th grade   1.60  53.52
## 6323             14 years old   Male               9th grade   1.93  85.28
## 6324             14 years old Female               9th grade   1.60  54.43
## 6325             14 years old   Male               9th grade   1.75 111.59
## 6326             14 years old Female               9th grade   1.60  83.92
## 6327             17 years old Female              12th grade   1.60  63.50
## 6328             14 years old Female               9th grade   1.75  63.50
## 6329             15 years old   Male               9th grade   1.73  95.26
## 6330             14 years old Female               9th grade   1.52  52.16
## 6331             15 years old   Male               9th grade   1.73 106.60
## 6332             14 years old Female               9th grade   1.65  53.52
## 6333             16 years old   Male               9th grade     NA     NA
## 6334    18 years old or older Female              12th grade   1.60  66.23
## 6335             17 years old   Male              12th grade   1.83  88.45
## 6336             15 years old   Male              10th grade   1.80  68.04
## 6337             14 years old   Male               9th grade     NA     NA
## 6338             17 years old Female              12th grade   1.55  88.45
## 6339             15 years old   Male              10th grade   1.75  61.24
## 6340             17 years old Female              12th grade   1.65  65.77
## 6341             15 years old Female              10th grade     NA     NA
## 6342             16 years old   Male              11th grade   1.83  88.45
## 6343             17 years old Female              12th grade   1.70  86.18
## 6344             15 years old   Male               9th grade     NA     NA
## 6345             15 years old Female              10th grade   1.70  92.99
## 6346             17 years old Female              12th grade   1.50  67.13
## 6347             15 years old   Male              10th grade   1.68  50.80
## 6348             17 years old Female              12th grade   1.63  49.90
## 6349             16 years old Female              11th grade   1.63  45.36
## 6350             16 years old Female              11th grade   1.75  63.96
## 6351             14 years old Female               9th grade   1.55  54.43
## 6352    18 years old or older Female              12th grade   1.55  54.43
## 6353             17 years old Female              12th grade   1.52  38.56
## 6354             15 years old Female              10th grade   1.60  61.24
## 6355             16 years old Female              10th grade   1.57  52.62
## 6356    18 years old or older   Male              12th grade   1.83  81.65
## 6357             16 years old Female              11th grade   1.60  61.69
## 6358             16 years old Female              11th grade   1.65  69.40
## 6359             17 years old   Male              11th grade   1.93 158.76
## 6360             16 years old Female              11th grade   1.60  53.07
## 6361             16 years old Female              11th grade   1.57  49.90
## 6362             15 years old Female              10th grade   1.75  61.24
## 6363             16 years old   Male              11th grade   1.68  51.26
## 6364             16 years old Female              11th grade   1.57  56.70
## 6365             17 years old Female              12th grade   1.63  95.26
## 6366             17 years old   Male              12th grade   1.63  70.31
## 6367             15 years old Female              10th grade     NA     NA
## 6368             17 years old Female              12th grade   1.60  90.72
## 6369             16 years old Female              11th grade   1.52  56.70
## 6370             16 years old   Male              11th grade   1.70  70.31
## 6371             14 years old   Male               9th grade   1.60  45.81
## 6372             17 years old   Male              11th grade   1.85  99.79
## 6373             16 years old Female              11th grade   1.50  47.63
## 6374             15 years old   Male              10th grade   1.78  70.31
## 6375             17 years old Female              11th grade   1.60  50.35
## 6376             17 years old   Male              11th grade   1.68  61.24
## 6377             16 years old   Male              11th grade   1.75  72.58
## 6378             17 years old Female              12th grade   1.68  53.52
## 6379             17 years old   Male              12th grade   1.73 127.01
## 6380             16 years old   Male              11th grade   1.65  56.70
## 6381             15 years old   Male              10th grade   1.78 111.13
## 6382             16 years old   Male              11th grade   1.83  88.45
## 6383             14 years old   Male               9th grade   1.73 104.33
## 6384             14 years old Female               9th grade   1.63  43.09
## 6385             14 years old Female               9th grade   1.57  49.90
## 6386             16 years old Female              11th grade   1.60  53.52
## 6387             15 years old   Male              10th grade   1.80  99.79
## 6388             16 years old   Male              11th grade   1.80  75.75
## 6389             16 years old Female              11th grade   1.60  79.83
## 6390             17 years old   Male              12th grade   1.88  74.84
## 6391             16 years old Female              11th grade   1.68  57.61
## 6392             14 years old   Male               9th grade   1.60  58.51
## 6393             16 years old   Male              10th grade   1.75  71.22
## 6394             16 years old   Male              11th grade   1.63  64.41
## 6395             14 years old Female               9th grade   1.57  50.80
## 6396    18 years old or older Female              12th grade   1.55  54.43
## 6397             17 years old   Male              11th grade   1.75  49.90
## 6398             14 years old   Male               9th grade   1.75 113.40
## 6399             17 years old Female              11th grade   1.55  51.26
## 6400             17 years old Female              11th grade   1.63  60.78
## 6401             16 years old Female              11th grade   1.52  45.36
## 6402    18 years old or older Female              11th grade   1.57  62.60
## 6403             17 years old   Male              12th grade   1.70  58.97
## 6404             16 years old   Male              11th grade   1.88 136.08
## 6405             16 years old Female              10th grade   1.50  43.09
## 6406             17 years old Female              10th grade   1.65  57.15
## 6407             16 years old Female              11th grade   1.57  72.58
## 6408             15 years old Female              10th grade   1.52  42.18
## 6409             16 years old   Male              10th grade   1.65  56.25
## 6410             17 years old   Male              11th grade   1.83 104.33
## 6411             15 years old Female              10th grade   1.55  57.61
## 6412             17 years old Female              12th grade   1.57  71.67
## 6413             14 years old Female               9th grade   1.60  50.80
## 6414             15 years old   Male              10th grade   1.78  79.38
## 6415             14 years old   Male               9th grade   1.75  72.58
## 6416             15 years old   Male               9th grade   1.75 118.84
## 6417             16 years old Female              11th grade   1.78  61.24
## 6418             14 years old   Male               9th grade   1.75  65.77
## 6419             17 years old   Male              11th grade   1.88  92.99
## 6420             16 years old   Male              10th grade   1.63  57.15
## 6421             14 years old   Male               9th grade     NA     NA
## 6422             17 years old Female              12th grade   1.65  99.79
## 6423             16 years old   Male              11th grade   1.68  61.24
## 6424             14 years old Female               9th grade   1.70  74.84
## 6425             16 years old   Male              11th grade   1.78  65.77
## 6426                     <NA>   Male              10th grade     NA     NA
## 6427             15 years old   Male               9th grade   1.83 108.86
## 6428    18 years old or older   Male              12th grade   1.60  55.79
## 6429             15 years old   Male               9th grade   1.68  77.11
## 6430             16 years old   Male              11th grade   1.65  59.88
## 6431             14 years old   Male               9th grade   1.90  99.79
## 6432             14 years old   Male               9th grade     NA     NA
## 6433             16 years old Female              11th grade   1.68  63.50
## 6434    18 years old or older Female              12th grade     NA     NA
## 6435             17 years old Female              11th grade   1.68  69.85
## 6436             15 years old   Male               9th grade   1.83  90.72
## 6437             16 years old Female              11th grade   1.68  58.97
## 6438             15 years old   Male              10th grade   1.78  71.67
## 6439             17 years old   Male              11th grade   1.73  99.34
## 6440             16 years old Female               9th grade   1.63  45.36
## 6441             16 years old   Male              11th grade   1.90 149.69
## 6442             15 years old   Male              10th grade   1.65  90.72
## 6443    18 years old or older Female              12th grade   1.55  43.09
## 6444             15 years old Female              10th grade   1.57  54.43
## 6445             15 years old   Male               9th grade   1.68  95.26
## 6446             17 years old   Male              11th grade   1.68  81.65
## 6447             16 years old   Male              10th grade   1.75  72.12
## 6448             16 years old   Male              10th grade   1.65  95.26
## 6449             14 years old   Male               9th grade   1.68  54.89
## 6450             17 years old Female              12th grade   1.73  68.04
## 6451             14 years old Female               9th grade     NA     NA
## 6452             15 years old   Male              10th grade   1.78  74.84
## 6453             16 years old   Male               9th grade   1.73  93.90
## 6454             17 years old   Male              12th grade   1.93 130.64
## 6455             17 years old   Male              11th grade   1.78  90.72
## 6456             14 years old   Male               9th grade   1.85 103.42
## 6457             15 years old   Male               9th grade   1.80 117.94
## 6458             16 years old   Male              11th grade   1.80  77.11
## 6459             16 years old   Male              10th grade   1.73  74.39
## 6460             17 years old Female              12th grade   1.60  46.27
## 6461             17 years old   Male              12th grade     NA     NA
## 6462             17 years old Female              12th grade   1.52  68.04
## 6463    18 years old or older Female              12th grade   1.60  61.69
## 6464             17 years old Female              11th grade   1.57  50.80
## 6465             17 years old   Male              10th grade   1.75  86.18
## 6466             16 years old Female              10th grade   1.40  45.36
## 6467             17 years old Female              12th grade   1.75  86.18
## 6468             17 years old   Male              12th grade   1.83  76.20
## 6469    18 years old or older Female              12th grade   1.70  70.31
## 6470             16 years old Female              11th grade   1.73  51.71
## 6471             17 years old Female              12th grade   1.57  68.95
## 6472    18 years old or older Female              12th grade   1.65  77.11
## 6473             16 years old Female              11th grade   1.55  58.97
## 6474             17 years old   Male              12th grade   1.80  53.98
## 6475             17 years old   Male              12th grade   1.85  89.36
## 6476             15 years old   <NA>              10th grade     NA     NA
## 6477             16 years old   Male                    <NA>   1.70  74.84
## 6478    18 years old or older Female               9th grade   1.63  66.68
## 6479    18 years old or older Female              12th grade   1.55  49.90
## 6480             16 years old   Male              11th grade   1.78  70.31
## 6481             15 years old   Male              10th grade   1.68  63.96
## 6482             17 years old   Male              12th grade   1.83  68.04
## 6483    18 years old or older   Male              12th grade   1.83  97.52
## 6484             15 years old   Male               9th grade   1.70  62.60
## 6485    18 years old or older Female              12th grade   1.50  52.16
## 6486             16 years old   Male              11th grade   1.75  83.92
## 6487    18 years old or older Female              12th grade   1.65  83.92
## 6488             14 years old Female               9th grade   1.70  79.38
## 6489             16 years old Female              11th grade   1.65  60.33
## 6490    18 years old or older Female              12th grade   1.68  51.71
## 6491             15 years old   Male               9th grade   1.73  99.79
## 6492             16 years old Female              11th grade     NA     NA
## 6493             17 years old   Male              11th grade   1.80  72.58
## 6494             16 years old   Male              11th grade   1.70  56.70
## 6495             15 years old Female               9th grade   1.55  87.54
## 6496             16 years old Female              11th grade   1.65  52.16
## 6497    18 years old or older Female              12th grade   1.63  49.90
## 6498             17 years old Female              11th grade   1.57  62.60
## 6499             17 years old Female              12th grade   1.73  81.65
## 6500    18 years old or older   Male              12th grade   1.83  78.93
## 6501             14 years old   Male               9th grade   1.68  72.58
## 6502             14 years old   Male              10th grade   1.85  65.77
## 6503             17 years old Female              12th grade   1.65  58.97
## 6504             15 years old   Male              10th grade   1.75  68.49
## 6505             14 years old   Male               9th grade   1.57  39.01
## 6506             15 years old Female              10th grade   1.68  73.94
## 6507             15 years old   Male              10th grade   1.78  58.97
## 6508                     <NA>   Male               9th grade     NA     NA
## 6509             15 years old Female              10th grade   1.45  46.72
## 6510             16 years old Female              11th grade     NA     NA
## 6511             14 years old Female               9th grade   1.68  55.79
## 6512             17 years old   Male              12th grade   1.88  74.84
## 6513    18 years old or older   Male              12th grade   1.73  63.50
## 6514             15 years old   Male              10th grade   1.65  49.44
## 6515             14 years old   Male               9th grade   1.63  53.52
## 6516             16 years old Female              10th grade   1.68  63.50
## 6517             15 years old   Male               9th grade   1.78  79.38
## 6518             15 years old   Male              10th grade   1.75  58.97
## 6519             14 years old   Male               9th grade   1.70  74.84
## 6520             16 years old Female              11th grade   1.75  58.97
## 6521             15 years old Female               9th grade   1.52  40.82
## 6522             17 years old Female              11th grade   1.60  49.90
## 6523             14 years old Female               9th grade   1.68  86.18
## 6524             14 years old Female               9th grade   1.60  52.16
## 6525             16 years old Female              10th grade   1.50  86.18
## 6526             16 years old Female               9th grade     NA     NA
## 6527             15 years old   Male              10th grade   1.73  83.92
## 6528             16 years old   Male              10th grade   1.88  96.16
## 6529             14 years old Female               9th grade   1.65  51.71
## 6530    18 years old or older   Male              12th grade   1.80  68.04
## 6531             15 years old   Male               9th grade   1.65  49.90
## 6532             14 years old   Male               9th grade   1.65  61.69
## 6533             16 years old Female               9th grade   1.50  61.24
## 6534    18 years old or older   Male              12th grade   1.73  81.65
## 6535             15 years old Female               9th grade   1.68  57.15
## 6536             15 years old Female              10th grade   1.68  49.90
## 6537             16 years old Female              10th grade   1.55  51.71
## 6538             16 years old Female              10th grade   1.65  58.97
## 6539             16 years old Female              10th grade   1.57  52.16
## 6540             15 years old Female              10th grade   1.55  72.58
## 6541             17 years old Female              12th grade   1.78 113.40
## 6542             17 years old   Male              12th grade   1.73 122.47
## 6543             15 years old Female               9th grade   1.50  42.64
## 6544             15 years old Female              10th grade   1.55  77.11
## 6545             16 years old Female              11th grade   1.57  58.97
## 6546             17 years old Female              12th grade   1.63  72.58
## 6547             15 years old Female               9th grade   1.65  83.01
## 6548             16 years old   Male              10th grade   1.80 102.06
## 6549             16 years old   Male              10th grade   1.70  72.58
## 6550    18 years old or older Female              12th grade   1.60  81.65
## 6551             16 years old Female              10th grade   1.60  63.50
## 6552             15 years old   Male               9th grade   1.70  55.34
## 6553             14 years old Female               9th grade   1.68  62.60
## 6554             16 years old   Male              11th grade   1.68  74.84
## 6555             14 years old Female               9th grade   1.63  49.90
## 6556             15 years old Female              10th grade   1.55  54.43
## 6557             15 years old   Male               9th grade   1.68  54.43
## 6558             15 years old   Male              10th grade   1.68  68.04
## 6559             14 years old   Male               9th grade   1.73  40.82
## 6560             17 years old Female              11th grade     NA     NA
## 6561             16 years old   Male              10th grade     NA     NA
## 6562             14 years old   Male               9th grade   1.60  86.18
## 6563             16 years old Female              11th grade   1.63  59.88
## 6564             14 years old Female               9th grade   1.65  81.65
## 6565             15 years old   Male              10th grade   1.70  72.58
## 6566             14 years old Female               9th grade   1.60  49.90
## 6567             16 years old   Male              11th grade   1.73  95.26
## 6568             15 years old Female              10th grade   1.55  50.35
## 6569             14 years old   Male               9th grade   1.42  49.90
## 6570             17 years old   Male              11th grade     NA     NA
## 6571             15 years old Female              10th grade   1.57  89.36
## 6572             14 years old   Male               9th grade   1.73  83.01
## 6573             17 years old Female              11th grade   1.52  49.90
## 6574             14 years old Female               9th grade   1.42  40.37
## 6575             16 years old Female              11th grade   1.60  56.70
## 6576             14 years old Female               9th grade   1.68  71.67
## 6577             16 years old Female              11th grade     NA     NA
## 6578             14 years old Female               9th grade   1.52  56.70
## 6579             17 years old Female              11th grade   1.50  81.19
## 6580             16 years old Female              10th grade   1.50  58.06
## 6581             14 years old Female               9th grade     NA     NA
## 6582             16 years old   Male              11th grade   1.75  77.11
## 6583             15 years old   Male               9th grade   1.75  59.88
## 6584             16 years old Female              11th grade   1.73  74.84
## 6585             14 years old Female               9th grade   1.55  57.61
## 6586             16 years old   Male              11th grade   1.70  82.10
## 6587             14 years old Female               9th grade     NA     NA
## 6588    18 years old or older   Male              12th grade   1.75  61.24
## 6589             14 years old Female               9th grade     NA     NA
## 6590             14 years old   Male               9th grade   1.60  77.11
## 6591    18 years old or older Female              12th grade   1.45  65.32
## 6592             14 years old Female               9th grade   1.57  57.15
## 6593             17 years old   Male              12th grade   1.63  53.52
## 6594             15 years old Female               9th grade     NA     NA
## 6595             17 years old   Male              12th grade   1.52  67.59
## 6596    18 years old or older   Male              12th grade   1.65  58.97
## 6597             15 years old Female               9th grade     NA     NA
## 6598             17 years old   Male              11th grade   1.68 112.95
## 6599             14 years old Female               9th grade     NA     NA
## 6600    18 years old or older Female              11th grade   1.57  74.39
## 6601             14 years old   Male               9th grade   1.57  48.99
## 6602             17 years old   Male              11th grade   1.68  67.13
## 6603    18 years old or older Female              12th grade     NA     NA
## 6604             17 years old Female              11th grade   1.60  68.04
## 6605             14 years old Female               9th grade     NA     NA
## 6606             16 years old   Male              11th grade   1.60  41.73
## 6607             16 years old   Male              11th grade   1.85  92.08
## 6608             14 years old Female               9th grade   1.50  49.44
## 6609             16 years old Female              11th grade   1.60 104.33
## 6610             16 years old Female              11th grade   1.57  74.84
## 6611             16 years old   Male              11th grade   1.68  58.97
## 6612             15 years old Female               9th grade   1.47  54.43
## 6613             15 years old   Male               9th grade   1.73  57.61
## 6614             16 years old Female              11th grade   1.52  44.91
## 6615             17 years old Female              12th grade   1.60  60.78
## 6616             15 years old   Male               9th grade   1.65  65.77
## 6617             17 years old Female              11th grade   1.60  60.33
## 6618             15 years old   Male              10th grade   1.73  82.56
## 6619             14 years old Female               9th grade   1.63  53.07
## 6620             16 years old   Male              11th grade   1.68  53.98
## 6621             15 years old Female              10th grade   1.65  99.34
## 6622             16 years old Female              11th grade   1.73  90.72
## 6623             14 years old Female               9th grade   1.63  86.18
## 6624             16 years old Female              11th grade   1.60  56.70
## 6625             16 years old   Male              10th grade     NA     NA
## 6626             14 years old Female               9th grade     NA     NA
## 6627             16 years old   Male              11th grade   1.70  95.26
## 6628             15 years old   Male              10th grade   1.80  86.18
## 6629             14 years old Female               9th grade   1.60  57.15
## 6630             16 years old Female              11th grade   1.68  79.38
## 6631             14 years old   Male               9th grade   1.52  54.43
## 6632             16 years old   Male              11th grade   1.65  63.05
## 6633             15 years old Female               9th grade   1.60  60.78
## 6634             17 years old Female              11th grade   1.55  54.43
## 6635             14 years old Female               9th grade   1.55  52.16
## 6636             15 years old   Male              10th grade   1.70  63.96
## 6637             14 years old Female               9th grade   1.60  63.50
## 6638             14 years old   Male               9th grade     NA     NA
## 6639             16 years old Female              11th grade   1.88 176.90
## 6640             16 years old   Male              11th grade   1.75  87.09
## 6641             16 years old Female              11th grade   1.78  58.97
## 6642             15 years old Female              10th grade   1.68  54.43
## 6643             17 years old Female              11th grade   1.68  65.77
## 6644             15 years old Female              10th grade   1.60  54.43
## 6645             15 years old Female              10th grade   1.80  81.65
## 6646             15 years old   Male              10th grade   1.60  57.15
## 6647             17 years old   Male              12th grade   1.80  77.11
## 6648             16 years old   Male              11th grade   1.70  63.50
## 6649             14 years old   Male               9th grade   1.75  54.43
## 6650             14 years old Female               9th grade   1.60  60.78
## 6651             16 years old   Male              11th grade   1.83  74.84
## 6652             15 years old   Male              10th grade   1.83  57.61
## 6653             17 years old   <NA>              12th grade     NA     NA
## 6654             15 years old   Male              10th grade   1.75  58.06
## 6655             17 years old Female              11th grade   1.57  54.43
## 6656             16 years old Female              11th grade   1.65  54.43
## 6657  12 years old or younger Female Ungraded or other grade     NA     NA
## 6658             14 years old   Male               9th grade   1.55  56.70
## 6659             17 years old   Male              11th grade   1.88  92.99
## 6660             16 years old Female              10th grade   1.60  52.16
## 6661             14 years old Female               9th grade     NA     NA
## 6662             16 years old Female              11th grade   1.65  53.52
## 6663             15 years old Female               9th grade   1.60  54.43
## 6664             14 years old Female               9th grade   1.70  63.50
## 6665             17 years old Female              12th grade   1.70  72.58
## 6666             17 years old Female              12th grade   1.70  58.97
## 6667             16 years old   Male              11th grade   1.65  90.72
## 6668             14 years old   Male               9th grade   1.70  58.97
## 6669             15 years old Female               9th grade     NA     NA
## 6670    18 years old or older Female              12th grade   1.60  49.90
## 6671             16 years old Female              10th grade   1.73  65.32
## 6672             14 years old Female               9th grade   1.73  70.76
## 6673             16 years old Female              11th grade   1.73  85.73
## 6674             16 years old   Male              10th grade   1.80  79.38
## 6675             16 years old Female              11th grade   1.75  81.65
## 6676             16 years old   Male              10th grade   1.96  54.43
## 6677             15 years old Female              10th grade   1.52  40.82
## 6678             17 years old   Male              12th grade   1.83 117.03
## 6679             15 years old Female              10th grade   1.68  65.77
## 6680             15 years old   <NA>              10th grade     NA     NA
## 6681             16 years old   Male              11th grade   1.90  84.37
## 6682             14 years old Female               9th grade   1.63  53.98
## 6683             17 years old Female              11th grade   1.63  57.61
## 6684             15 years old Female              10th grade   1.68  54.43
## 6685    18 years old or older Female              12th grade     NA     NA
## 6686             16 years old Female              11th grade   1.65  50.35
## 6687             15 years old   Male              10th grade   1.78  90.72
## 6688             17 years old   Male              12th grade   1.65  52.16
## 6689             16 years old   Male              11th grade   1.78  88.45
## 6690             16 years old Female              11th grade   1.63  54.43
## 6691             17 years old Female              12th grade   1.52  45.36
## 6692    18 years old or older Female              12th grade   1.68  74.39
## 6693             17 years old Female              12th grade   1.83  54.43
## 6694             14 years old Female               9th grade   1.63  54.43
## 6695             16 years old   Male              11th grade   1.73  60.33
## 6696    18 years old or older   Male              12th grade   1.93  74.84
## 6697             16 years old   Male              11th grade   1.70  79.38
## 6698             17 years old   Male              12th grade   1.63  63.50
## 6699             14 years old Female               9th grade     NA     NA
## 6700    18 years old or older Female              12th grade     NA     NA
## 6701             16 years old Female              11th grade   1.57  53.52
## 6702             15 years old Female              10th grade   1.60  52.16
## 6703             17 years old   Male              11th grade   1.78 108.86
## 6704             17 years old   Male              11th grade   1.75  68.04
## 6705             17 years old   Male              11th grade   1.83  77.11
## 6706             15 years old Female               9th grade   1.52  46.72
## 6707             14 years old Female               9th grade   1.57  42.64
## 6708             15 years old Female              10th grade   1.57  51.71
## 6709  12 years old or younger Female               9th grade     NA     NA
## 6710             15 years old   Male              10th grade   1.78 111.13
## 6711    18 years old or older   Male              12th grade   1.73  74.84
## 6712    18 years old or older Female              12th grade   1.75  60.78
## 6713             16 years old   Male              11th grade   1.83  63.50
## 6714             16 years old Female              11th grade   1.70  81.65
## 6715             14 years old Female               9th grade   1.75  61.24
## 6716             16 years old   Male              11th grade   1.78  83.92
## 6717             14 years old   Male               9th grade   1.75  68.04
## 6718             15 years old   Male              10th grade   1.65  58.97
## 6719             17 years old   Male              11th grade   1.75  66.68
## 6720             16 years old Female              11th grade   1.73  70.31
## 6721             15 years old   Male              10th grade   1.78 108.86
## 6722                     <NA> Female              11th grade     NA     NA
## 6723             15 years old   Male              10th grade   1.85  93.44
## 6724             17 years old Female              12th grade   1.60  70.76
## 6725    18 years old or older Female              12th grade   1.80 136.08
## 6726             16 years old   Male              10th grade   1.80  72.12
## 6727             14 years old Female               9th grade   1.63  58.97
## 6728             15 years old Female              10th grade   1.60  58.97
## 6729             15 years old Female              10th grade   1.63  81.65
## 6730             17 years old Female              12th grade   1.52  54.43
## 6731             15 years old   Male              10th grade     NA     NA
## 6732             16 years old Female              11th grade   1.68 138.35
## 6733             17 years old Female              12th grade   1.50  54.43
## 6734    18 years old or older Female              12th grade     NA     NA
## 6735             17 years old   Male              12th grade   1.63  48.99
## 6736    18 years old or older   Male              12th grade   1.83  70.31
## 6737             17 years old   Male              12th grade   1.80 122.47
## 6738             17 years old   Male              12th grade   1.75  56.70
## 6739             16 years old   Male              11th grade   1.75  72.58
## 6740             17 years old Female              12th grade   1.55  47.17
## 6741             15 years old   Male               9th grade   1.75  50.35
## 6742             17 years old Female              12th grade   1.65  58.06
## 6743    18 years old or older   Male              12th grade   1.78  90.72
## 6744             16 years old Female              11th grade   1.55  43.09
## 6745             17 years old Female              11th grade   1.68  61.24
## 6746             16 years old   Male              11th grade   1.73  74.84
## 6747             15 years old   Male              10th grade   1.70  49.90
## 6748             16 years old Female              11th grade   1.63  58.97
## 6749             17 years old Female              11th grade   1.57  63.50
## 6750             17 years old Female              11th grade   1.65  62.60
## 6751             16 years old   Male              11th grade   1.73  49.44
## 6752             17 years old   Male              11th grade   1.75  83.01
## 6753             16 years old   Male              11th grade   1.78 113.40
## 6754             16 years old   Male              11th grade     NA     NA
## 6755             16 years old Female              11th grade   1.63  65.77
## 6756             15 years old Female              10th grade   1.57  52.16
## 6757             16 years old Female              11th grade   1.52  62.14
## 6758             17 years old   Male              11th grade     NA     NA
## 6759             16 years old Female              11th grade   1.52  39.46
## 6760             15 years old Female              10th grade   1.65  61.24
## 6761             16 years old Female              11th grade   1.60  54.43
## 6762             16 years old   Male              11th grade   1.68  43.09
## 6763             16 years old Female              11th grade   1.55  59.88
## 6764             17 years old   Male              11th grade   1.68  81.65
## 6765             17 years old   Male              11th grade   1.73  95.26
## 6766    18 years old or older   Male              12th grade   1.80  70.31
## 6767    18 years old or older   Male              12th grade   1.75  63.50
## 6768             17 years old Female              12th grade   1.63  48.08
## 6769             17 years old Female              12th grade   1.60  61.24
## 6770             16 years old   Male              10th grade   1.83  61.24
## 6771             15 years old Female              10th grade   1.60  44.45
## 6772    18 years old or older   Male              12th grade   1.78  73.48
## 6773             15 years old   Male              10th grade   1.75  64.41
## 6774             15 years old   Male              10th grade     NA     NA
## 6775             17 years old   Male              11th grade   1.90  62.60
## 6776             16 years old   Male              10th grade   1.68  62.60
## 6777             16 years old Female              10th grade     NA     NA
## 6778             16 years old Female              11th grade   1.63  48.99
## 6779             17 years old   Male              12th grade   1.80  62.60
## 6780             15 years old Female              10th grade   1.73  53.98
## 6781             16 years old   Male              11th grade   1.70  63.50
## 6782    18 years old or older Female              12th grade   1.57  48.08
## 6783             15 years old Female              10th grade   1.52  47.63
## 6784             17 years old   Male              11th grade   1.78 104.33
## 6785             17 years old   Male              12th grade   1.83  83.92
## 6786             16 years old Female              10th grade   1.68  54.43
## 6787             15 years old Female              10th grade   1.55  51.71
## 6788             17 years old Female              11th grade   1.63  68.04
## 6789             17 years old Female              12th grade   1.57  83.92
## 6790             15 years old Female              10th grade   1.63  64.41
## 6791             15 years old   Male              10th grade   1.68  64.86
## 6792             17 years old   Male              11th grade   1.73  63.50
## 6793             15 years old Female              10th grade   1.65  65.77
## 6794             17 years old Female              11th grade   1.65  65.77
## 6795             16 years old   Male              11th grade   1.75  68.04
## 6796             16 years old Female              11th grade   1.60  99.79
## 6797             16 years old Female              10th grade   1.60  72.58
## 6798             16 years old Female              11th grade   1.65  58.06
## 6799    18 years old or older Female              12th grade   1.68  64.41
## 6800             15 years old   Male              10th grade   1.78  65.77
## 6801             17 years old   Male              12th grade   1.60  54.43
## 6802             16 years old Female              11th grade   1.55  54.43
## 6803             16 years old   Male              11th grade   1.83  68.04
## 6804             15 years old Female              10th grade   1.52  53.52
## 6805             16 years old   Male              11th grade   1.80  54.43
## 6806             15 years old Female              10th grade   1.65  57.61
## 6807             15 years old   Male              10th grade   1.80  68.04
## 6808             16 years old Female              11th grade   1.80  76.20
## 6809             15 years old   Male              10th grade   1.68  63.05
## 6810             15 years old Female              10th grade   1.57  54.43
## 6811             16 years old   Male              11th grade   1.70  49.90
## 6812             15 years old   Male              10th grade   1.80  61.24
## 6813             16 years old Female              10th grade   1.55  57.15
## 6814             16 years old Female              11th grade     NA     NA
## 6815             15 years old Female              10th grade   1.65  61.24
## 6816             16 years old Female              10th grade   1.52  53.52
## 6817             17 years old   Male              12th grade   1.83  80.74
## 6818             15 years old Female              10th grade     NA     NA
## 6819             16 years old Female              10th grade   1.73  74.84
## 6820             16 years old Female              11th grade   1.75  74.84
## 6821             17 years old   Male              11th grade   1.85  68.04
## 6822             16 years old   Male              10th grade   1.90  95.26
## 6823             16 years old Female              10th grade     NA     NA
## 6824             17 years old   Male              11th grade   1.78  68.04
## 6825             15 years old   Male              10th grade   1.65  61.24
## 6826             16 years old   Male              11th grade   1.85  76.20
## 6827             17 years old Female              12th grade   1.57  72.58
## 6828             15 years old   <NA>              10th grade     NA     NA
## 6829             15 years old   Male              10th grade   1.75  79.83
## 6830             16 years old   Male              11th grade   1.78  56.70
## 6831             13 years old Female               9th grade     NA     NA
## 6832             15 years old Female              10th grade   1.63  46.72
## 6833             16 years old Female              10th grade   1.80  65.77
## 6834             15 years old   Male              10th grade   1.60  68.04
## 6835             16 years old   Male              11th grade   1.70  96.16
## 6836             15 years old   Male              10th grade   1.75  65.77
## 6837             16 years old Female              10th grade   1.73  74.84
## 6838             15 years old   Male              10th grade   1.70  52.62
## 6839             17 years old Female              10th grade   1.60  53.52
## 6840             15 years old Female              10th grade   1.65  57.15
## 6841             16 years old Female              10th grade   1.60  56.70
## 6842             16 years old   Male              10th grade   1.75  91.63
## 6843             15 years old Female              10th grade   1.50  60.78
## 6844             15 years old Female              10th grade   1.65  52.16
## 6845             16 years old   Male              10th grade   1.78  77.11
## 6846             16 years old   Male              10th grade   1.75  63.50
## 6847             16 years old Female              10th grade   1.57  61.24
## 6848             15 years old   Male              10th grade   1.75  72.58
## 6849             16 years old   Male              10th grade   1.65  63.50
## 6850             15 years old   Male              10th grade   1.63  56.70
## 6851             17 years old Female              10th grade   1.63  56.70
## 6852             16 years old   Male              10th grade   1.78  87.54
## 6853             16 years old   Male              12th grade     NA     NA
## 6854             16 years old Female              10th grade   1.57  52.16
## 6855             15 years old Female              10th grade   1.55  70.31
## 6856             15 years old Female              10th grade   1.55  46.27
## 6857             15 years old   Male              10th grade   1.70  63.50
## 6858             15 years old Female              10th grade   1.57  53.52
## 6859             15 years old   Male              10th grade   1.70  61.24
## 6860             15 years old   Male              10th grade   1.80  67.13
## 6861    18 years old or older   Male              11th grade   1.80  56.70
## 6862             16 years old Female              10th grade   1.70  61.24
## 6863             16 years old Female              10th grade   1.60  52.16
## 6864             16 years old Female              10th grade   1.65  63.50
## 6865             15 years old Female              10th grade   1.57  51.26
## 6866             16 years old Female              10th grade   1.65  72.58
## 6867             16 years old   Male              10th grade   1.75  68.95
## 6868             16 years old   Male              10th grade   1.85  83.92
## 6869             15 years old   Male              10th grade   1.85 127.01
## 6870             15 years old Female              10th grade   1.68  59.88
## 6871             15 years old   Male              10th grade   1.68  47.63
## 6872             16 years old   Male              10th grade   1.70  59.88
## 6873             15 years old Female              10th grade   1.57  48.08
## 6874             15 years old Female              10th grade   1.57  54.43
## 6875             16 years old Female              10th grade   1.70  70.31
## 6876             16 years old Female              10th grade   1.65  65.77
## 6877             16 years old   Male              10th grade   1.63  54.43
## 6878    18 years old or older   Male              12th grade   1.73  63.50
## 6879             15 years old Female              10th grade   1.55  56.70
## 6880             15 years old   Male              10th grade   1.78  56.70
## 6881             16 years old   Male              10th grade   1.83 113.40
## 6882             15 years old Female              10th grade   1.75  70.31
## 6883             16 years old   Male              10th grade   1.88  71.67
## 6884             15 years old   Male              10th grade   1.78  54.43
## 6885             16 years old Female              10th grade     NA     NA
## 6886             16 years old Female              10th grade   1.57  52.16
## 6887             15 years old   Male              10th grade   1.60  49.90
## 6888             15 years old   Male              10th grade   1.88  74.84
## 6889             15 years old Female              10th grade     NA     NA
## 6890             16 years old   Male              10th grade   1.75  78.47
## 6891             16 years old   Male              10th grade     NA     NA
## 6892             16 years old Female              10th grade   1.57  49.90
## 6893             16 years old Female              10th grade   1.63  51.71
## 6894             17 years old   Male              11th grade   1.83  78.47
## 6895             16 years old Female              10th grade   1.60  47.17
## 6896             16 years old Female              10th grade   1.57  57.61
## 6897             16 years old   Male              10th grade   1.80  60.33
## 6898             15 years old Female              10th grade   1.73  63.50
## 6899             17 years old Female              10th grade   1.52  54.43
## 6900             16 years old Female              10th grade   1.63  61.24
## 6901             15 years old Female              10th grade     NA     NA
## 6902             16 years old   Male              10th grade   1.78  58.97
## 6903             16 years old   Male              10th grade   1.73 108.86
## 6904             16 years old   Male              10th grade   1.70  81.65
## 6905             16 years old   Male              10th grade   1.68  58.97
## 6906             15 years old   Male              10th grade   1.70  68.04
## 6907             16 years old   Male              10th grade   1.68  75.75
## 6908             15 years old Female              10th grade   1.63  63.50
## 6909             15 years old Female              10th grade   1.63  44.45
## 6910             15 years old Female              10th grade   1.60  56.70
## 6911             15 years old Female              10th grade   1.57  61.24
## 6912             16 years old   Male              10th grade   1.65  66.23
## 6913             15 years old   Male              10th grade   1.80  68.04
## 6914             15 years old   Male              10th grade   1.75  65.77
## 6915             16 years old Female              10th grade   1.60  45.36
## 6916             15 years old   Male              10th grade   1.63  66.23
## 6917             15 years old Female              10th grade     NA     NA
## 6918             15 years old Female              10th grade   1.57  68.04
## 6919             16 years old Female              10th grade   1.57  52.16
## 6920             16 years old   Male              10th grade   1.70  68.04
## 6921             16 years old   Male              10th grade   1.70  70.31
## 6922             16 years old   Male              10th grade   1.88 180.99
## 6923             16 years old Female              10th grade   1.73 111.13
## 6924             15 years old   Male              10th grade   1.63  68.95
## 6925             15 years old Female              10th grade   1.60  64.41
## 6926             16 years old   Male              10th grade   1.60  44.00
## 6927             15 years old   Male              10th grade   1.85  68.95
## 6928             16 years old   Male              10th grade   1.65  68.04
## 6929             15 years old   Male               9th grade   1.60  62.14
## 6930             17 years old   Male              11th grade   1.85  94.35
## 6931             16 years old Female              11th grade   1.60  49.90
## 6932             16 years old   Male              10th grade   1.68  63.50
## 6933    18 years old or older   Male              12th grade     NA     NA
## 6934             17 years old   Male              11th grade   1.85  70.76
## 6935             16 years old Female              10th grade   1.63  57.15
## 6936             17 years old   Male              11th grade   1.78 104.33
## 6937             17 years old Female              11th grade   1.57  54.89
## 6938             14 years old   Male               9th grade   1.85  83.46
## 6939             15 years old Female              10th grade   1.68  54.43
## 6940             17 years old   Male              11th grade   1.78  70.76
## 6941             15 years old Female              10th grade     NA     NA
## 6942             16 years old   Male              11th grade   1.78  77.11
## 6943             15 years old Female              10th grade   1.50  40.82
## 6944             17 years old   Male              11th grade   1.75  68.04
## 6945             14 years old Female               9th grade   1.65  62.14
## 6946    18 years old or older   Male              12th grade   1.85 108.86
## 6947             16 years old   Male              11th grade   1.70  61.24
## 6948             16 years old Female              11th grade   1.55  57.61
## 6949             16 years old Female              11th grade   1.63  68.04
## 6950             16 years old Female              10th grade   1.65  58.06
## 6951             16 years old Female              10th grade   1.70  69.40
## 6952             15 years old   Male              10th grade   1.70  52.16
## 6953             16 years old Female              11th grade     NA     NA
## 6954             15 years old   Male               9th grade   1.80  95.26
## 6955             16 years old   Male              10th grade   1.85  60.33
## 6956             15 years old Female              10th grade   1.70  74.39
## 6957             16 years old   Male              11th grade   1.83  78.93
## 6958             14 years old   Male               9th grade   1.73  54.43
## 6959             16 years old Female              10th grade   1.73  80.29
## 6960             16 years old Female              10th grade   1.68  61.24
## 6961             17 years old Female              12th grade   1.60  74.84
## 6962             14 years old Female               9th grade   1.65  50.80
## 6963             16 years old Female              10th grade   1.75  61.24
## 6964             15 years old   Male               9th grade   1.68  58.97
## 6965             16 years old Female              11th grade   1.60  40.82
## 6966             16 years old Female              11th grade   1.60  72.58
## 6967             15 years old   Male              10th grade   1.70  58.97
## 6968             16 years old   Male              10th grade   1.70  58.97
## 6969             14 years old Female               9th grade   1.65  51.26
## 6970             14 years old Female              10th grade   1.70  87.09
## 6971             16 years old   Male              11th grade   1.78  77.11
## 6972             17 years old Female              11th grade   1.68  62.60
## 6973             15 years old Female               9th grade   1.70  51.26
## 6974             16 years old   Male              10th grade   1.78  66.68
## 6975             16 years old Female              10th grade   1.68  66.23
## 6976             15 years old Female              10th grade   1.63  65.77
## 6977             16 years old   Male              11th grade   1.75  71.22
## 6978    18 years old or older Female              12th grade   1.63  61.24
## 6979             15 years old   Male               9th grade   1.75  54.43
## 6980             16 years old Female              10th grade     NA     NA
## 6981             16 years old   Male              10th grade   1.78  81.19
## 6982             16 years old Female              10th grade     NA     NA
## 6983             16 years old Female              11th grade   1.57  47.17
## 6984             16 years old Female              11th grade   1.65  65.77
## 6985             14 years old Female               9th grade   1.65  58.06
## 6986             17 years old Female              11th grade   1.60  61.24
## 6987             16 years old Female              10th grade   1.63  56.70
## 6988             17 years old Female              11th grade   1.65  68.04
## 6989             15 years old   Male               9th grade   1.65  70.31
## 6990             17 years old Female              11th grade   1.73  57.61
## 6991             16 years old Female              10th grade   1.65 111.13
## 6992             16 years old Female              10th grade   1.57  46.72
## 6993             16 years old Female              10th grade     NA     NA
## 6994             15 years old Female              10th grade   1.78  74.84
## 6995             15 years old   Male               9th grade   1.73  56.70
## 6996             17 years old   Male              11th grade   1.65  59.88
## 6997             16 years old Female              11th grade   1.75 122.93
## 6998             17 years old   Male              11th grade   1.78  72.12
## 6999             14 years old   Male               9th grade   1.83  77.11
## 7000             17 years old   Male              11th grade   1.70  58.97
## 7001    18 years old or older Female              12th grade   1.60  58.51
## 7002             17 years old Female              11th grade   1.57  69.40
## 7003             14 years old Female               9th grade   1.65  56.25
## 7004             16 years old Female              10th grade   1.60  63.50
## 7005             16 years old Female              11th grade   1.63  59.42
## 7006             17 years old Female              11th grade   1.50  47.63
## 7007             16 years old Female              10th grade   1.60  60.78
## 7008             15 years old   Male              10th grade   1.75  64.41
## 7009             16 years old   Male              11th grade   1.88  74.84
## 7010             17 years old   Male              11th grade   1.68  79.38
## 7011             16 years old Female              11th grade   1.65  74.39
## 7012             17 years old Female              11th grade   1.70  57.61
## 7013             15 years old Female              10th grade   1.57  43.09
## 7014             16 years old Female              10th grade   1.63  60.78
## 7015             14 years old Female               9th grade   1.60  58.51
## 7016             15 years old Female              10th grade   1.52  38.56
## 7017             17 years old Female              11th grade     NA     NA
## 7018             17 years old Female              11th grade   1.55  92.08
## 7019             16 years old Female              10th grade   1.50  55.79
## 7020             14 years old Female               9th grade   1.60  56.70
## 7021             16 years old Female              11th grade   1.60  57.15
## 7022             16 years old Female              11th grade   1.63  58.06
## 7023             15 years old Female              10th grade     NA     NA
## 7024             15 years old   Male              10th grade   1.83  78.02
## 7025             15 years old Female               9th grade   1.52  52.16
## 7026             16 years old   Male              11th grade   1.83  90.27
## 7027             15 years old Female              10th grade   1.60  58.97
## 7028             16 years old Female              11th grade   1.65  54.43
## 7029             14 years old   Male               9th grade   1.78  63.50
## 7030             16 years old Female              11th grade   1.73  56.70
## 7031             16 years old Female              11th grade   1.65  71.67
## 7032             17 years old Female              11th grade   1.63  58.06
## 7033             17 years old   Male              12th grade   1.70  49.90
## 7034             15 years old Female               9th grade   1.68  52.62
## 7035             15 years old Female              10th grade   1.73  59.42
## 7036             13 years old Female               9th grade   1.60  64.86
## 7037             16 years old   Male              10th grade   1.88  77.11
## 7038             14 years old   Male               9th grade   1.80  81.65
## 7039             14 years old Female               9th grade   1.60  56.70
## 7040             14 years old   Male               9th grade   1.68  56.70
## 7041             15 years old Female              10th grade   1.68  67.13
## 7042             14 years old Female               9th grade   1.68  86.18
## 7043             17 years old Female              11th grade   1.75  70.76
## 7044             15 years old Female               9th grade   1.70  59.88
## 7045             15 years old Female              10th grade   1.68  55.34
## 7046             14 years old Female               9th grade   1.73  58.51
## 7047             16 years old Female              10th grade   1.63  81.65
## 7048             15 years old Female               9th grade   1.65  53.52
## 7049             16 years old   Male              10th grade     NA     NA
## 7050             15 years old   Male               9th grade   1.75  83.92
## 7051             16 years old   Male              11th grade   1.73  70.31
## 7052             14 years old Female               9th grade     NA     NA
## 7053             14 years old Female               9th grade   1.57  44.91
## 7054             15 years old Female               9th grade   1.60  58.97
## 7055             16 years old   Male              10th grade   1.73  46.72
## 7056             14 years old   Male               9th grade   1.90  71.67
## 7057             16 years old Female              10th grade     NA     NA
## 7058             15 years old   Male               9th grade   1.75  58.06
## 7059             17 years old Female              11th grade   1.60  44.91
## 7060             15 years old Female               9th grade   1.75  68.04
## 7061             15 years old   Male               9th grade   1.70  54.43
## 7062             14 years old   Male               9th grade   1.73  58.06
## 7063             16 years old Female              11th grade   1.65  62.14
## 7064             14 years old Female               9th grade   1.63  60.33
## 7065             16 years old   Male              11th grade   1.75  72.58
## 7066             14 years old   Male               9th grade   1.68  54.43
## 7067             15 years old   Male              10th grade   1.85  72.58
## 7068             15 years old Female               9th grade   1.60  53.98
## 7069             15 years old   Male              10th grade   1.90  61.24
## 7070             15 years old Female              10th grade   1.60  87.09
## 7071             15 years old   Male               9th grade   1.73  72.58
## 7072             16 years old   Male              11th grade   1.73  87.09
## 7073             15 years old Female               9th grade   1.60  56.70
## 7074             16 years old   Male              10th grade   1.88  78.47
## 7075             14 years old Female               9th grade   1.45  72.58
## 7076             14 years old Female               9th grade   1.73 106.60
## 7077             15 years old Female               9th grade   1.60  65.77
## 7078             17 years old   Male              11th grade   1.78  81.65
## 7079             16 years old   Male              10th grade   1.90  63.50
## 7080             17 years old   Male              12th grade   1.65  54.43
## 7081             15 years old Female              10th grade   1.65  58.97
## 7082             14 years old Female               9th grade   1.65  54.43
## 7083             17 years old   Male              11th grade   1.85  74.84
## 7084             17 years old Female              12th grade   1.68  55.34
## 7085             16 years old   Male              10th grade   1.75  70.31
## 7086             14 years old   Male               9th grade   1.65  45.36
## 7087             17 years old   Male              11th grade   1.73  64.86
## 7088    18 years old or older   Male              12th grade   1.73  56.70
## 7089             16 years old Female              10th grade     NA     NA
## 7090             17 years old Female              12th grade   1.75  56.70
## 7091             16 years old Female              10th grade   1.70  70.31
## 7092             14 years old Female               9th grade   1.63  58.06
## 7093    18 years old or older   Male              12th grade   1.78  54.43
## 7094             15 years old Female              10th grade     NA     NA
## 7095             14 years old   Male               9th grade   1.70  50.35
## 7096    18 years old or older   Male              12th grade   1.78 108.86
## 7097             15 years old   Male              10th grade   1.75  49.90
## 7098             14 years old Female               9th grade   1.65  54.43
## 7099             17 years old Female              11th grade     NA     NA
## 7100             16 years old Female              10th grade     NA     NA
## 7101             14 years old   Male               9th grade   1.75  68.04
## 7102             16 years old   Male              11th grade   1.80  61.24
## 7103             17 years old   Male              12th grade   1.57  70.31
## 7104             16 years old Female              10th grade   1.65  50.80
## 7105             14 years old   Male               9th grade   1.63  58.97
## 7106             17 years old Female              12th grade   1.55  49.90
## 7107             15 years old Female              10th grade   1.63  48.99
## 7108             17 years old   Male              12th grade   1.75  68.04
## 7109             14 years old   Male               9th grade   1.60  49.44
## 7110             16 years old   Male              11th grade   1.83  68.04
## 7111             17 years old   Male              12th grade   1.75  63.50
## 7112             16 years old   Male              10th grade     NA     NA
## 7113             16 years old Female              11th grade   1.57  47.17
## 7114             17 years old   Male              12th grade   1.75  81.65
## 7115             16 years old   Male              10th grade   1.70  56.70
## 7116             15 years old Female               9th grade   1.63  74.39
## 7117             17 years old   Male              12th grade   1.78  62.60
## 7118             16 years old Female              10th grade     NA     NA
## 7119             15 years old   Male               9th grade   1.65  68.04
## 7120    18 years old or older   Male              12th grade   1.63  49.90
## 7121             16 years old   Male              10th grade   1.83  68.04
## 7122             15 years old Female               9th grade   1.57  50.80
## 7123             15 years old   Male              10th grade   1.65  61.24
## 7124             14 years old Female               9th grade   1.65  54.43
## 7125             17 years old   Male              11th grade   1.88  79.38
## 7126             17 years old   Male              12th grade   1.68  73.94
## 7127             15 years old   Male              10th grade   1.70  49.90
## 7128             15 years old Female               9th grade   1.68  54.43
## 7129             15 years old   Male              10th grade   1.63  51.71
## 7130             15 years old Female               9th grade   1.55  47.63
## 7131    18 years old or older   Male              12th grade   1.68  56.25
## 7132             16 years old   Male              10th grade   1.60  45.36
## 7133             15 years old   Male               9th grade   1.68  54.43
## 7134             16 years old   Male              11th grade     NA     NA
## 7135    18 years old or older   Male              12th grade   1.70  56.70
## 7136             16 years old Female              10th grade   1.70  63.50
## 7137             15 years old Female               9th grade   1.75  61.24
## 7138             17 years old   Male              12th grade   1.75  72.58
## 7139             17 years old Female              12th grade   1.63  47.63
## 7140             16 years old Female              10th grade   1.70  54.43
## 7141             15 years old Female               9th grade   1.60  45.36
## 7142             16 years old   Male              10th grade   1.70  67.59
## 7143             15 years old Female               9th grade   1.60  54.43
## 7144             17 years old   Male              11th grade   1.73  74.39
## 7145             16 years old   Male              10th grade   1.65  58.97
## 7146             14 years old   Male               9th grade   1.68  48.54
## 7147             15 years old Female              10th grade   1.68  58.97
## 7148             15 years old   Male               9th grade   1.73  61.24
## 7149             16 years old   Male              11th grade   1.90  86.18
## 7150    18 years old or older   Male              12th grade   1.78  70.31
## 7151             15 years old   Male              10th grade   1.78  56.70
## 7152             14 years old   Male               9th grade   1.70  58.97
## 7153             17 years old Female              11th grade   1.73  68.04
## 7154             17 years old   Male              12th grade   1.83  48.99
## 7155             16 years old   Male              10th grade   1.88  62.60
## 7156             14 years old   Male               9th grade   1.68  68.04
## 7157             17 years old   Male              12th grade   1.75  65.77
## 7158    18 years old or older   Male              12th grade   1.80  63.50
## 7159             16 years old Female              10th grade   1.57  49.90
## 7160             15 years old Female               9th grade   1.68  58.97
## 7161             16 years old   Male              11th grade   1.75  68.95
## 7162    18 years old or older   Male              12th grade   1.78  74.84
## 7163             16 years old   Male              11th grade   1.70  58.97
## 7164             15 years old   Male               9th grade   1.65  58.51
## 7165    18 years old or older   Male              12th grade   1.75  70.31
## 7166             17 years old   Male              12th grade   1.73  65.77
## 7167             16 years old   Male              10th grade   1.78  66.68
## 7168             15 years old   Male               9th grade   1.65 108.86
## 7169    18 years old or older   Male              12th grade   1.75  61.24
## 7170    18 years old or older   Male              12th grade   1.78  73.03
## 7171             15 years old Female               9th grade   1.55  37.20
## 7172             17 years old   Male              12th grade   1.85  70.31
## 7173    18 years old or older   Male              12th grade   1.83  74.84
## 7174             15 years old   Male              10th grade   1.83  70.31
## 7175             15 years old   Male               9th grade   1.88  68.04
## 7176    18 years old or older   Male              12th grade   1.70  70.31
## 7177             17 years old Female              12th grade   1.60  58.97
## 7178             17 years old   Male              11th grade   1.80  68.04
## 7179             17 years old   Male              12th grade   1.83  68.04
## 7180             14 years old   Male               9th grade   1.73  90.72
## 7181             16 years old   Male              11th grade   1.80  67.13
## 7182             15 years old   Male               9th grade   1.57  62.60
## 7183             16 years old   Male              11th grade   1.93 113.40
## 7184             15 years old Female              10th grade   1.68  53.52
## 7185             15 years old   Male               9th grade   1.70  58.97
## 7186             15 years old Female               9th grade   1.65  44.91
## 7187             14 years old Female               9th grade   1.63  52.16
## 7188             15 years old   Male               9th grade   1.70  54.89
## 7189             14 years old   Male               9th grade   1.68  63.50
## 7190             16 years old Female              10th grade   1.60  43.09
## 7191             15 years old Female               9th grade   1.70  54.43
## 7192             14 years old Female               9th grade   1.57  48.08
## 7193             15 years old Female              10th grade     NA     NA
## 7194             14 years old Female               9th grade   1.68  61.24
## 7195             14 years old   Male               9th grade   1.55  44.45
## 7196             15 years old Female               9th grade   1.60  52.16
## 7197             15 years old   Male               9th grade   1.80  63.05
## 7198             17 years old   Male              12th grade   1.80  65.77
## 7199             15 years old Female              10th grade   1.68  68.04
## 7200             15 years old Female               9th grade   1.57  45.36
## 7201             15 years old   Male               9th grade   1.78  68.04
## 7202             15 years old   Male               9th grade   1.75  69.40
## 7203             15 years old   Male               9th grade   1.60  43.55
## 7204             17 years old   Male              11th grade   1.85  74.84
## 7205             15 years old Female               9th grade   1.65  45.36
## 7206             16 years old   Male              10th grade   1.75  63.50
## 7207             17 years old   Male              11th grade   1.85  72.12
## 7208    18 years old or older   Male              12th grade   1.73  72.58
## 7209             15 years old   Male               9th grade   1.65  86.18
## 7210             15 years old Female              10th grade   1.60  49.90
## 7211             15 years old   Male              10th grade   1.35  95.71
## 7212             17 years old   Male              11th grade   1.65  61.24
## 7213             14 years old   Male               9th grade   1.52  47.63
## 7214             16 years old   Male              10th grade   1.90  79.38
## 7215             16 years old   Male              11th grade   1.70  61.24
## 7216             17 years old   Male              12th grade   1.73  64.41
## 7217    18 years old or older   Male              12th grade   1.88 135.17
## 7218             14 years old   Male               9th grade   1.70  76.66
## 7219    18 years old or older   Male              12th grade   1.68 136.08
## 7220             16 years old Female               9th grade   1.65  52.16
## 7221             17 years old   Male              11th grade   1.70  95.26
## 7222             15 years old   Male               9th grade   1.70  63.50
## 7223             15 years old   Male              10th grade   1.83  64.41
## 7224    18 years old or older   Male              12th grade   1.70  70.31
## 7225             16 years old   Male              10th grade     NA     NA
## 7226             15 years old Female               9th grade   1.52  52.16
## 7227             16 years old   Male              10th grade   1.65  54.43
## 7228             16 years old   Male              11th grade   1.70  95.26
## 7229             16 years old   Male              11th grade   1.83  60.33
## 7230             17 years old   Male              11th grade   1.88  63.96
## 7231             16 years old   Male              10th grade   1.88  79.38
## 7232             14 years old   Male               9th grade   1.68  99.79
## 7233             16 years old   Male              10th grade   1.80 108.41
## 7234             17 years old   Male              12th grade   1.70  54.43
## 7235             17 years old   Male              12th grade   1.83  97.52
## 7236             15 years old Female              10th grade   1.63  81.65
## 7237    18 years old or older   Male              11th grade   1.70  68.04
## 7238    18 years old or older   Male              11th grade   1.60  58.97
## 7239             15 years old   Male              10th grade   1.78  85.73
## 7240             15 years old Female              10th grade   1.70  65.77
## 7241             15 years old Female              10th grade   1.57  51.71
## 7242             15 years old Female              10th grade   1.57  44.91
## 7243             16 years old   Male              10th grade   1.65  58.97
## 7244             15 years old Female              10th grade   1.55  48.08
## 7245             14 years old   Male               9th grade   1.68  48.99
## 7246             16 years old Female              10th grade   1.68  52.16
## 7247             15 years old Female               9th grade   1.57  47.63
## 7248             14 years old Female               9th grade   1.55  43.09
## 7249             15 years old Female               9th grade   1.68  53.07
## 7250             17 years old   Male              12th grade   1.85  73.48
## 7251             17 years old Female              11th grade   1.63  58.97
## 7252             16 years old Female              11th grade     NA     NA
## 7253             15 years old Female               9th grade   1.52  54.89
## 7254             15 years old   Male               9th grade   1.78  77.11
## 7255             16 years old Female              11th grade   1.35  50.80
## 7256             17 years old   Male              11th grade   1.78  77.11
## 7257             15 years old   Male               9th grade   1.65  84.37
## 7258    18 years old or older   Male              12th grade   1.75  58.06
## 7259             17 years old   Male              11th grade   1.73  54.43
## 7260             17 years old Female              11th grade   1.63  75.30
## 7261             15 years old Female               9th grade   1.60  58.97
## 7262             15 years old   Male               9th grade   1.75  54.43
## 7263             17 years old Female              12th grade   1.52  65.77
## 7264             15 years old   Male               9th grade   1.75  84.37
## 7265             15 years old Female               9th grade   1.73  56.70
## 7266    18 years old or older Female              12th grade   1.60  58.97
## 7267             16 years old Female              11th grade   1.68  54.43
## 7268             17 years old Female              11th grade   1.83  70.31
## 7269             15 years old   Male               9th grade   1.83  63.50
## 7270             14 years old   Male               9th grade   1.78  81.65
## 7271    18 years old or older Female              12th grade   1.78  62.60
## 7272             16 years old Female              11th grade   1.55  52.62
## 7273    18 years old or older Female              11th grade     NA     NA
## 7274             15 years old   Male               9th grade   1.70  97.52
## 7275             15 years old Female               9th grade   1.50  52.16
## 7276    18 years old or older   Male              12th grade   1.80  74.84
## 7277             17 years old Female              11th grade   1.55  44.00
## 7278             17 years old Female              11th grade     NA     NA
## 7279             15 years old   Male               9th grade   1.65  53.52
## 7280             15 years old   Male               9th grade   1.80  90.72
## 7281    18 years old or older Female              12th grade   1.40  40.37
## 7282             14 years old Female               9th grade   1.60  47.63
## 7283             15 years old Female               9th grade   1.68  54.43
## 7284             14 years old   Male               9th grade   1.73  52.62
## 7285    18 years old or older Female              12th grade   1.63  67.59
## 7286             17 years old Female              11th grade   1.60  77.11
## 7287             14 years old   Male               9th grade   1.68  60.33
## 7288             15 years old   Male               9th grade   1.60  41.73
## 7289    18 years old or older Female              12th grade   1.65  53.52
## 7290             17 years old   Male              11th grade   1.70  65.77
## 7291             15 years old Female               9th grade   1.57  47.63
## 7292             15 years old   Male               9th grade   1.65 108.86
## 7293    18 years old or older   Male              12th grade   1.80  72.58
## 7294             17 years old Female              11th grade   1.60  60.78
## 7295             15 years old Female               9th grade   1.65  50.80
## 7296             14 years old Female               9th grade   1.55  54.43
## 7297             17 years old   Male              12th grade   1.96  65.77
## 7298             16 years old   Male              11th grade   1.80  81.65
## 7299             16 years old   Male              11th grade   1.75  90.72
## 7300             14 years old Female               9th grade   1.65  99.79
## 7301             14 years old   Male               9th grade   1.70  57.15
## 7302             17 years old   Male              12th grade   1.73  81.65
## 7303             17 years old Female              11th grade   1.68 112.49
## 7304             14 years old   Male               9th grade   1.78  79.83
## 7305             16 years old Female              10th grade   1.65  63.50
## 7306    18 years old or older   Male              12th grade   1.83  74.84
## 7307             16 years old Female              11th grade   1.55  44.45
## 7308             16 years old   Male              10th grade   1.88  92.99
## 7309             16 years old   Male              11th grade   1.45  49.90
## 7310             14 years old   Male               9th grade   1.78  58.97
## 7311    18 years old or older Female              12th grade   1.57  63.50
## 7312             16 years old Female              11th grade   1.57  67.13
## 7313             16 years old   Male              10th grade   1.70  64.41
## 7314             15 years old Female              10th grade   1.68  65.77
## 7315             15 years old Female              10th grade   1.50  49.44
## 7316             15 years old   Male              10th grade   1.75  97.52
## 7317             15 years old Female               9th grade     NA     NA
## 7318             17 years old   Male              12th grade   1.70  90.72
## 7319             17 years old   Male              11th grade   1.78 108.86
## 7320             15 years old Female              10th grade   1.75  81.65
## 7321             15 years old Female               9th grade   1.63  58.06
## 7322    18 years old or older   Male              12th grade   1.70  58.06
## 7323             17 years old   Male              11th grade   1.78  72.58
## 7324    18 years old or older   <NA>              12th grade     NA     NA
## 7325             15 years old Female              10th grade   1.63  69.40
## 7326             14 years old Female               9th grade   1.50  54.43
## 7327             17 years old   Male              12th grade   1.83 111.13
## 7328             14 years old   <NA>               9th grade     NA     NA
## 7329             17 years old   Male              12th grade   1.70  61.24
## 7330             15 years old Female              10th grade   1.60  49.44
## 7331             15 years old   Male              10th grade   1.80  63.50
## 7332             15 years old   Male               9th grade   1.73  79.38
## 7333             17 years old   Male              12th grade   1.70 108.41
## 7334             14 years old   Male               9th grade   1.78  83.92
## 7335             16 years old   Male              10th grade   1.73  74.84
## 7336             15 years old   Male              10th grade   1.80  75.30
## 7337             14 years old Female               9th grade   1.65  63.05
## 7338             17 years old Female              12th grade   1.60  54.43
## 7339             15 years old   Male               9th grade   1.98  50.35
## 7340             17 years old   Male              12th grade   1.93  68.04
## 7341             16 years old Female              10th grade   1.50  53.52
## 7342             17 years old Female              10th grade   1.73  92.99
## 7343             15 years old   Male               9th grade   1.80  79.38
## 7344             17 years old   Male              12th grade   1.88 124.74
## 7345             15 years old Female               9th grade   1.60  95.26
## 7346             17 years old Female              11th grade   1.52  55.79
## 7347             17 years old Female              12th grade   1.55  75.30
## 7348             17 years old   Male              10th grade     NA     NA
## 7349             15 years old Female              10th grade   1.57  75.30
## 7350             15 years old   Male               9th grade   1.68  49.90
## 7351    18 years old or older Female              12th grade   1.63  79.38
## 7352             15 years old   Male               9th grade   1.75  90.72
## 7353             16 years old   Male              11th grade   1.80  72.58
## 7354             17 years old Female              12th grade   1.63  53.07
## 7355             15 years old   Male              10th grade   1.78 113.40
## 7356             16 years old Female              10th grade   1.65  68.04
## 7357             15 years old   Male               9th grade   1.78 113.40
## 7358    18 years old or older Female              12th grade   1.57  53.07
## 7359    18 years old or older   Male              12th grade   1.80  58.97
## 7360             16 years old Female              11th grade   1.65  74.84
## 7361             15 years old Female              10th grade   1.65  62.14
## 7362             15 years old Female              10th grade   1.68 111.13
## 7363             16 years old   Male               9th grade   1.83  77.11
## 7364    18 years old or older Female              12th grade   1.50  45.36
## 7365             15 years old Female               9th grade   1.70  62.60
## 7366             17 years old   Male              11th grade   1.78  54.43
## 7367    18 years old or older Female              12th grade   1.70  81.65
## 7368             16 years old   Male              11th grade   1.60  61.24
## 7369             15 years old   Male              10th grade   1.75  83.92
## 7370             15 years old Female              10th grade   1.52  52.62
## 7371             16 years old   Male               9th grade     NA     NA
## 7372             16 years old   Male              11th grade   1.73  81.65
## 7373    18 years old or older   Male              12th grade   1.80  72.58
## 7374             16 years old Female              10th grade   1.63  63.50
## 7375             16 years old   Male              10th grade   1.75  75.30
## 7376             14 years old   Male               9th grade   1.75  65.32
## 7377    18 years old or older Female              12th grade   1.63  89.81
## 7378             17 years old Female              11th grade   1.65  73.94
## 7379             17 years old   Male              12th grade   1.70  61.24
## 7380             15 years old   Male              10th grade   1.78  60.78
## 7381             16 years old Female              10th grade   1.68  65.77
## 7382             15 years old Female               9th grade     NA     NA
## 7383             17 years old Female              12th grade   1.78  80.74
## 7384             15 years old   Male               9th grade   1.73  64.41
## 7385             17 years old   Male              11th grade   1.75  86.18
## 7386             17 years old Female              12th grade   1.55  46.27
## 7387             17 years old   Male              11th grade   1.70 113.40
## 7388             13 years old   Male               9th grade   1.75  66.68
## 7389             17 years old Female              12th grade   1.55  60.78
## 7390             15 years old   Male               9th grade   1.73 119.75
## 7391             16 years old   Male               9th grade   1.88 130.64
## 7392             17 years old Female              11th grade   1.68  54.43
## 7393             17 years old Female              12th grade   1.65  79.38
## 7394             15 years old   Male               9th grade     NA     NA
## 7395             17 years old Female              12th grade   1.55  83.92
## 7396             14 years old Female               9th grade   1.78 107.05
## 7397             17 years old   Male              11th grade   1.85  88.45
## 7398    18 years old or older   Male              12th grade   1.83  56.70
## 7399             16 years old Female              10th grade   1.68  77.11
## 7400             16 years old Female              10th grade   1.50  56.70
## 7401             16 years old   Male               9th grade   1.73  81.65
## 7402             17 years old   Male              12th grade   1.83  61.24
## 7403             16 years old   Male              11th grade   1.75  74.84
## 7404             16 years old Female              10th grade   1.60  52.16
## 7405             15 years old Female              10th grade   1.70  54.43
## 7406             14 years old   Male               9th grade   1.85  61.24
## 7407             16 years old   Male              11th grade   1.80 104.33
## 7408    18 years old or older   Male              12th grade   1.70  71.22
## 7409             15 years old Female               9th grade   1.88 172.37
## 7410             16 years old   Male               9th grade   1.70 102.06
## 7411             17 years old Female              12th grade   1.55  54.43
## 7412             15 years old Female               9th grade   1.73  58.97
## 7413    18 years old or older   Male              12th grade   1.75  56.70
## 7414             17 years old   Male              11th grade   1.83  85.28
## 7415             16 years old   Male              10th grade   1.83  72.58
## 7416             15 years old Female              10th grade   1.70  74.84
## 7417             14 years old   Male               9th grade   1.73  68.04
## 7418             15 years old Female               9th grade   1.63  61.69
## 7419             16 years old Female              10th grade   1.57  58.97
## 7420             17 years old   Male              12th grade   1.75  63.50
## 7421             16 years old Female              10th grade   1.60  52.62
## 7422             17 years old   Male              12th grade   1.78 108.86
## 7423             15 years old Female               9th grade   1.52  36.74
## 7424             17 years old   Male              12th grade   1.80  61.69
## 7425             16 years old Female              10th grade   1.63  65.77
## 7426             15 years old   Male              10th grade   1.85  66.23
## 7427             14 years old   Male               9th grade   1.83  70.31
## 7428    18 years old or older Female              12th grade   1.60  61.24
## 7429    18 years old or older   Male              11th grade   1.70  68.04
## 7430             17 years old Female              12th grade   1.63  53.52
## 7431             16 years old   Male              10th grade   1.83  68.95
## 7432             15 years old   Male              10th grade   1.83  52.16
## 7433             15 years old   Male               9th grade   1.70  55.79
## 7434             17 years old   Male              12th grade   1.75  61.24
## 7435             14 years old Female               9th grade   1.52  68.04
## 7436             15 years old   Male               9th grade   1.63  99.79
## 7437             15 years old   Male              10th grade     NA     NA
## 7438             17 years old Female              10th grade   1.73  94.35
## 7439             16 years old Female              10th grade   1.52  53.07
## 7440             16 years old Female              10th grade     NA     NA
## 7441             16 years old   Male              10th grade   1.70  56.70
## 7442    18 years old or older Female              12th grade   1.57  48.08
## 7443             17 years old   Male              12th grade   1.75  63.50
## 7444    18 years old or older   Male              12th grade   1.78  86.18
## 7445             17 years old Female              12th grade   1.63 127.01
## 7446             16 years old Female              10th grade   1.60  52.16
## 7447             17 years old Female              11th grade   1.63 104.33
## 7448             16 years old   Male              10th grade   1.75  77.11
## 7449             16 years old Female              11th grade   1.70  81.65
## 7450             16 years old   Male              10th grade   1.68  81.65
## 7451             16 years old   Male              11th grade   1.78  96.16
## 7452             16 years old   Male              11th grade   1.96 131.54
## 7453             15 years old Female              10th grade     NA     NA
## 7454             17 years old   Male              11th grade   1.78  63.50
## 7455             17 years old   Male              11th grade   1.60  54.43
## 7456             15 years old   Male              10th grade     NA     NA
## 7457             16 years old   Male              11th grade   1.68  77.11
## 7458             17 years old   Male              11th grade   1.70  58.97
## 7459             16 years old Female              10th grade   1.63  79.38
## 7460             16 years old Female              11th grade   1.63  56.70
## 7461             17 years old   Male              10th grade   1.80  95.26
## 7462             17 years old Female              11th grade   1.70  79.38
## 7463             17 years old   Male              11th grade   1.96 140.62
## 7464             17 years old   <NA>              11th grade     NA     NA
## 7465             17 years old   Male              11th grade   1.80  79.38
## 7466             17 years old   Male              11th grade     NA     NA
## 7467             16 years old   Male              10th grade   1.78  97.07
## 7468             17 years old Female              11th grade   1.68  72.58
## 7469             17 years old   <NA>              11th grade     NA     NA
## 7470             17 years old Female              11th grade   1.68  58.97
## 7471             17 years old   Male              11th grade   1.65  55.34
## 7472             17 years old Female              11th grade   1.63  74.84
## 7473             16 years old   Male              11th grade   1.73  61.24
## 7474    18 years old or older   Male              12th grade   1.65  90.72
## 7475             14 years old   Male               9th grade   1.65  52.62
## 7476             17 years old Female              12th grade   1.60  63.50
## 7477             15 years old   Male               9th grade   1.85 127.01
## 7478             17 years old   Male              12th grade   1.80 113.40
## 7479             16 years old Female               9th grade   1.52  58.97
## 7480             16 years old Female               9th grade   1.57  77.11
## 7481             17 years old   Male              12th grade   1.96  82.56
## 7482             15 years old Female               9th grade   1.57  43.09
## 7483             15 years old Female               9th grade     NA     NA
## 7484    18 years old or older Female              12th grade   1.57  48.54
## 7485             16 years old Female               9th grade   1.60  45.81
## 7486    18 years old or older   Male              12th grade   1.68  54.89
## 7487    18 years old or older Female              12th grade   1.52  83.92
## 7488             15 years old   Male               9th grade   1.65  69.40
## 7489             14 years old   Male               9th grade   1.75 127.01
## 7490             17 years old Female              12th grade   1.63  79.38
## 7491             17 years old Female              12th grade   1.52  57.15
## 7492                     <NA>   Male               9th grade     NA     NA
## 7493             17 years old Female              12th grade   1.55  79.83
## 7494    18 years old or older Female              12th grade   1.60  55.79
## 7495             15 years old   Male               9th grade   1.68  81.65
## 7496             17 years old   Male              12th grade   1.85  65.77
## 7497             17 years old Female              12th grade   1.80  54.43
## 7498             14 years old   Male               9th grade   1.85  74.39
## 7499    18 years old or older   Male              12th grade   1.85 149.69
## 7500    18 years old or older   Male              12th grade   1.73  65.77
## 7501             15 years old   Male               9th grade   1.80  68.04
## 7502             15 years old Female               9th grade   1.57  53.98
## 7503             17 years old Female              12th grade   1.70  70.31
## 7504             16 years old   Male              10th grade   1.78  92.99
## 7505             17 years old   Male              12th grade   1.78  79.38
## 7506             17 years old Female              12th grade   1.63  61.24
## 7507             15 years old   Male              10th grade   1.75  68.95
## 7508             17 years old Female              12th grade   1.57  54.43
## 7509    18 years old or older   Male              12th grade   1.80  74.84
## 7510             17 years old Female              12th grade   1.60  86.18
## 7511             16 years old   Male              11th grade   1.70  61.24
## 7512             16 years old Female              11th grade   1.68  52.62
## 7513             16 years old Female              11th grade   1.68  54.43
## 7514    18 years old or older   Male              12th grade   1.88  86.18
## 7515             17 years old   Male              11th grade   1.60  53.07
## 7516             15 years old Female              10th grade   1.63  49.90
## 7517             17 years old   Male              12th grade   1.75  71.67
## 7518             17 years old Female              11th grade   1.65  58.06
## 7519    18 years old or older   Male              12th grade   1.73  63.50
## 7520             15 years old   Male              10th grade   1.90 161.03
## 7521             15 years old Female              10th grade   1.75  61.69
## 7522             15 years old Female               9th grade   1.73  68.04
## 7523             16 years old Female              11th grade   1.70  52.16
## 7524    18 years old or older Female              12th grade   1.57  51.26
## 7525             16 years old Female              11th grade   1.83 106.60
## 7526    18 years old or older Female              12th grade   1.70  68.04
## 7527             16 years old Female              11th grade     NA     NA
## 7528    18 years old or older Female              12th grade   1.63  49.90
## 7529             17 years old   Male              12th grade   1.70 122.47
## 7530             16 years old   Male              11th grade   1.88  89.36
## 7531             16 years old Female              10th grade   1.60  51.71
## 7532             17 years old Female              11th grade   1.68  83.92
## 7533             14 years old Female               9th grade     NA     NA
## 7534             15 years old Female              10th grade   1.60  62.14
## 7535             16 years old   Male              10th grade   1.70  54.43
## 7536             17 years old Female              11th grade   1.70  58.51
## 7537             15 years old   Male              10th grade   1.65  67.59
## 7538    18 years old or older   Male              12th grade   2.01 104.33
## 7539             16 years old   Male              11th grade   1.70  58.97
## 7540    18 years old or older   Male              12th grade   1.83 108.86
## 7541    18 years old or older Female              12th grade   1.68  81.65
## 7542             17 years old Female              12th grade   1.63  61.69
## 7543             15 years old   Male              10th grade   1.90  88.45
## 7544             15 years old   Male              10th grade   1.80  58.97
## 7545             16 years old   Male              11th grade   1.70  69.85
## 7546             14 years old Female               9th grade   1.60  44.45
## 7547             16 years old   Male              11th grade   1.83  63.50
## 7548             17 years old Female              12th grade   1.63  54.43
## 7549             16 years old Female              11th grade   1.60  65.77
## 7550             16 years old   Male              10th grade   1.80  48.08
## 7551             15 years old Female              10th grade     NA     NA
## 7552             16 years old   Male              11th grade   1.85  68.04
## 7553    18 years old or older   Male              12th grade   1.88  58.97
## 7554             14 years old   Male               9th grade   1.75  97.52
## 7555             15 years old Female              10th grade     NA     NA
## 7556             14 years old   Male               9th grade   1.73  98.43
## 7557             15 years old   Male              10th grade   1.80  81.65
## 7558    18 years old or older Female              12th grade   1.57  48.99
## 7559             14 years old Female               9th grade   1.47  53.98
## 7560             16 years old Female              10th grade   1.68  72.58
## 7561             15 years old   Male               9th grade   1.78 113.40
## 7562             15 years old   Male              10th grade   1.88 115.21
## 7563             15 years old Female               9th grade   1.65  74.84
## 7564             16 years old   Male              10th grade   1.85  72.58
## 7565             17 years old   Male              11th grade   1.90  78.93
## 7566    18 years old or older   Male              12th grade   1.65  96.62
## 7567             15 years old Female               9th grade   1.68  72.58
## 7568             17 years old Female              10th grade   1.55  48.54
## 7569             17 years old   Male              11th grade   1.93  91.17
## 7570             15 years old   Male               9th grade   1.80  80.74
## 7571             16 years old   Male              10th grade   1.73  68.04
## 7572             16 years old   Male              11th grade   1.75  56.70
## 7573    18 years old or older   Male              12th grade   1.80  79.38
## 7574             14 years old   Male               9th grade   1.73  72.58
## 7575             15 years old   Male              10th grade   1.88  66.23
## 7576             16 years old Female              11th grade   1.70  97.98
## 7577    18 years old or older   Male              12th grade   1.88  90.27
## 7578             14 years old   Male               9th grade   1.63  58.06
## 7579             15 years old Female              10th grade     NA     NA
## 7580             16 years old Female              11th grade   1.70  61.24
## 7581             17 years old   Male              12th grade   1.65  54.43
## 7582             15 years old   Male               9th grade   1.75  76.20
## 7583             16 years old Female              10th grade   1.65  54.43
## 7584    18 years old or older Female              12th grade   1.55  49.90
## 7585             16 years old Female               9th grade   1.57  46.72
## 7586             16 years old   Male              10th grade   1.90  79.38
## 7587             17 years old   Male              11th grade   1.75  68.04
## 7588             17 years old Female              12th grade   1.63  52.16
## 7589             16 years old Female               9th grade   1.55  51.71
## 7590             15 years old   Male              10th grade   1.90  79.38
## 7591             17 years old   Male              11th grade   1.75  81.65
## 7592             15 years old Female               9th grade   1.60  44.45
## 7593             15 years old   Male               9th grade     NA     NA
## 7594             16 years old Female              10th grade   1.55  60.33
## 7595             17 years old   Male              11th grade   1.75  65.77
## 7596    18 years old or older   Male              12th grade   1.70  52.16
## 7597             14 years old Female               9th grade   1.60  65.77
## 7598             16 years old   Male              10th grade   1.80  73.94
## 7599             16 years old Female              10th grade   1.73  63.50
## 7600             17 years old   Male              11th grade   1.75  79.38
## 7601             17 years old   Male              12th grade   1.80  77.11
## 7602             16 years old   Male              10th grade   1.68  72.58
## 7603             17 years old Female              11th grade   1.45  59.88
## 7604    18 years old or older   Male              12th grade   1.80  74.84
## 7605             15 years old   Male               9th grade   1.60  63.50
## 7606             16 years old   Male              10th grade   1.68  76.66
## 7607             15 years old   Male               9th grade   1.75  88.91
## 7608             16 years old   Male              10th grade   1.85  68.04
## 7609             14 years old Female               9th grade   1.55  44.00
## 7610             16 years old   Male              10th grade   1.83  70.31
## 7611             17 years old   Male              11th grade   1.90  56.70
## 7612             14 years old Female               9th grade   1.57  55.79
## 7613             14 years old Female               9th grade   1.60  63.50
## 7614             16 years old   Male              10th grade   1.83 117.94
## 7615    18 years old or older   Male              12th grade   1.78 106.60
## 7616             15 years old Female               9th grade   1.68  57.61
## 7617             14 years old Female               9th grade   1.70  80.29
## 7618             16 years old Female              10th grade   1.65  54.43
## 7619             17 years old   Male              11th grade   1.73  60.78
## 7620    18 years old or older   Male              12th grade   1.75  99.79
## 7621             15 years old   Male               9th grade   1.63  54.43
## 7622             15 years old Female               9th grade   1.57  50.35
## 7623             15 years old   Male               9th grade   1.78  68.04
## 7624             16 years old Female              10th grade   1.63  64.86
## 7625             17 years old Female              11th grade   1.63  49.90
## 7626    18 years old or older   Male              12th grade   1.83  67.13
## 7627             14 years old   Male               9th grade   1.60  52.16
## 7628             15 years old   Male               9th grade   1.73  96.62
## 7629             15 years old Female               9th grade   1.63  50.35
## 7630             16 years old Female              10th grade   1.70  78.93
## 7631             16 years old Female              11th grade   1.60  52.16
## 7632             17 years old   Male              12th grade   1.83  61.24
## 7633             15 years old Female               9th grade   1.65  48.99
## 7634             16 years old Female              10th grade   1.70  61.24
## 7635             16 years old Female              11th grade   1.65  54.89
## 7636             17 years old   Male              11th grade   1.75  74.84
## 7637             15 years old   Male               9th grade   1.78  79.38
## 7638             15 years old Female               9th grade   1.60  79.38
## 7639             16 years old   Male              10th grade   1.73  94.35
## 7640             16 years old   Male              11th grade   1.70  63.96
## 7641             17 years old   Male              12th grade   1.75  68.04
## 7642             15 years old Female               9th grade     NA     NA
## 7643             16 years old Female               9th grade   1.70  60.33
## 7644             16 years old Female              10th grade   1.68  68.04
## 7645             17 years old Female              11th grade   1.70  58.97
## 7646             16 years old Female               9th grade   1.68  65.32
## 7647             16 years old   Male              10th grade   1.80 122.47
## 7648             16 years old   Male              11th grade   1.73  54.43
## 7649    18 years old or older Female              12th grade   1.50  37.20
## 7650             15 years old   Male               9th grade   1.55  56.25
## 7651             15 years old Female              10th grade   1.65  56.25
## 7652             17 years old Female              11th grade   1.68  56.70
## 7653             17 years old   Male              12th grade   1.83  80.74
## 7654             15 years old Female               9th grade   1.68  56.70
## 7655             16 years old Female              10th grade   1.85  86.18
## 7656             17 years old Female              11th grade   1.63  81.65
## 7657    18 years old or older   Male              12th grade   1.78  81.65
## 7658             15 years old   Male               9th grade   1.78  61.24
## 7659             16 years old Female              10th grade   1.73 102.06
## 7660             16 years old Female              11th grade   1.65  65.77
## 7661             15 years old Female               9th grade   1.55  43.09
## 7662             15 years old   Male               9th grade   1.85  90.72
## 7663             16 years old   Male              10th grade   1.80 113.40
## 7664             17 years old Female              11th grade   1.68  58.97
## 7665             17 years old   Male              12th grade   1.93  83.92
## 7666             15 years old Female               9th grade   1.57  58.51
## 7667             16 years old Female              10th grade   1.78  58.97
## 7668             16 years old Female              11th grade   1.65  46.72
## 7669    18 years old or older   Male              12th grade   1.78  74.84
## 7670             15 years old Female               9th grade   1.75  70.31
## 7671             16 years old Female              10th grade   1.65  45.36
## 7672             17 years old   Male              11th grade   1.88  65.77
## 7673             17 years old   Male              12th grade   1.63  61.24
## 7674             15 years old   Male               9th grade   1.78  64.41
## 7675             16 years old Female              10th grade   1.60  61.69
## 7676             16 years old Female              11th grade   1.75  70.31
## 7677             17 years old Female              11th grade   1.60  56.25
## 7678    18 years old or older Female              12th grade   1.65  57.61
## 7679             17 years old Female              11th grade   1.73  48.99
## 7680    18 years old or older Female              12th grade   1.57  47.63
## 7681             15 years old Female               9th grade   1.68  68.04
## 7682             17 years old Female              10th grade   1.50  54.43
## 7683             17 years old   Male              12th grade   1.85  58.97
## 7684             16 years old Female              11th grade   1.65  73.48
## 7685    18 years old or older   Male              12th grade   1.80  70.31
## 7686             15 years old   Male               9th grade   1.85  58.97
## 7687    18 years old or older   Male              12th grade   1.78 104.33
## 7688             17 years old   Male              11th grade   1.78  61.24
## 7689             16 years old   Male              10th grade     NA     NA
## 7690    18 years old or older   Male              11th grade   1.80 108.86
## 7691    18 years old or older Female              12th grade   1.70  52.16
## 7692             14 years old Female               9th grade   1.65  70.31
## 7693             16 years old Female              10th grade   1.65  53.52
## 7694             15 years old Female               9th grade   1.73 114.31
## 7695             17 years old   Male              11th grade   1.80  81.65
## 7696             16 years old   Male              11th grade   1.75 108.86
## 7697    18 years old or older   Male              12th grade   1.70  62.14
## 7698             14 years old Female               9th grade   1.60 104.33
## 7699             15 years old Female               9th grade   1.73  95.26
## 7700             16 years old   Male              10th grade     NA     NA
## 7701             17 years old   Male              11th grade   1.85  88.45
## 7702             17 years old   Male              12th grade   1.85 111.13
## 7703    18 years old or older Female              12th grade   1.57  68.04
## 7704             17 years old Female              11th grade   1.65  81.65
## 7705             15 years old Female               9th grade   1.57  54.43
## 7706             16 years old   Male              10th grade   1.68  56.25
## 7707             17 years old   Male              12th grade   1.70  64.86
## 7708             15 years old   Male               9th grade   1.68  77.11
## 7709             17 years old Female              11th grade   1.57  86.18
## 7710             15 years old   Male               9th grade   1.85 102.06
## 7711             16 years old Female              10th grade   1.63  52.62
## 7712    18 years old or older Female              12th grade   1.75 102.06
## 7713             14 years old   Male               9th grade   1.73  52.62
## 7714             16 years old   Male              11th grade   1.73  78.02
## 7715             16 years old Female              10th grade   1.55  63.50
## 7716             16 years old Female              11th grade   1.57  61.24
## 7717             15 years old   Male               9th grade   1.70  65.77
## 7718             16 years old Female              10th grade   1.52  48.08
## 7719             15 years old Female               9th grade   1.65  48.08
## 7720             16 years old Female              11th grade   1.70  58.97
## 7721             17 years old   Male              11th grade   1.70  58.97
## 7722    18 years old or older   Male              12th grade   1.88  79.83
## 7723             15 years old   Male               9th grade   1.73  65.77
## 7724             16 years old   Male              10th grade   1.70  95.71
## 7725             15 years old   Male               9th grade   1.80  68.04
## 7726             17 years old Female              11th grade   1.63  77.11
## 7727             16 years old Female              10th grade   1.65  63.50
## 7728             16 years old Female              11th grade   1.68  81.65
## 7729    18 years old or older   Male              12th grade   1.93 104.33
## 7730             14 years old Female               9th grade   1.63  54.43
## 7731             17 years old   Male              10th grade   1.70  92.99
## 7732             16 years old   Male              10th grade   1.85  62.60
## 7733             17 years old Female              11th grade   1.57  40.82
## 7734             17 years old Female              12th grade   1.52  86.18
## 7735             16 years old   Male              10th grade   1.80  90.72
## 7736    18 years old or older   Male              12th grade   1.65  65.32
## 7737             14 years old Female               9th grade   1.68  53.98
## 7738             16 years old Female              11th grade   1.60  86.18
## 7739             17 years old Female              12th grade   1.57  51.71
## 7740             14 years old Female               9th grade   1.60  43.09
## 7741             17 years old   Male              10th grade   1.73  79.38
## 7742    18 years old or older Female              12th grade   1.65  45.36
## 7743             15 years old Female               9th grade   1.60  54.89
## 7744             16 years old Female              11th grade   1.68  62.60
## 7745             16 years old Female              10th grade   1.63  51.71
## 7746             17 years old   Male              11th grade   1.83  86.18
## 7747             17 years old Female              12th grade   1.57  99.79
## 7748             15 years old   Male               9th grade   1.73  61.24
## 7749             16 years old Female              10th grade   1.75  79.38
## 7750             14 years old Female               9th grade   1.68  56.70
## 7751    18 years old or older Female              11th grade   1.60  68.95
## 7752             17 years old   Male              11th grade   1.78 144.24
## 7753             15 years old   Male               9th grade   1.78  61.69
## 7754             16 years old Female              10th grade   1.60  56.70
## 7755             15 years old   Male              11th grade   1.78  65.77
## 7756             15 years old Female               9th grade   1.63  48.54
## 7757             16 years old Female              10th grade   1.75  56.70
## 7758    18 years old or older   Male              12th grade   1.83  83.01
## 7759             17 years old   Male              11th grade     NA     NA
## 7760             15 years old Female               9th grade   1.70  81.65
## 7761    18 years old or older Female              12th grade   1.60  58.97
## 7762             15 years old Female               9th grade     NA     NA
## 7763             16 years old Female              11th grade   1.60  58.51
## 7764             16 years old   Male              10th grade   1.78 109.77
## 7765             17 years old   Male              11th grade   1.68  73.03
## 7766             14 years old Female               9th grade   1.68  52.16
## 7767             17 years old   Male              12th grade   1.85  92.99
## 7768             17 years old   Male              11th grade   1.57  85.73
## 7769             17 years old   Male              10th grade   1.80 106.60
## 7770             17 years old   Male              11th grade   1.78  86.18
## 7771             17 years old   Male              12th grade   1.75  58.97
## 7772             14 years old   Male               9th grade   1.80  59.42
## 7773             15 years old   Male               9th grade   1.83  99.79
## 7774             15 years old   Male              10th grade   1.65  54.43
## 7775             17 years old Female              11th grade   1.70  74.84
## 7776             15 years old Female               9th grade   1.63  54.43
## 7777             16 years old   Male              10th grade   1.68  63.50
## 7778             15 years old   Male               9th grade   1.70  49.90
## 7779             17 years old   Male              11th grade   1.90  73.94
## 7780             16 years old   Male              10th grade     NA     NA
## 7781             16 years old   Male              11th grade   1.70  56.70
## 7782    18 years old or older Female              12th grade   1.57  58.06
## 7783             15 years old   Male               9th grade   1.73  77.11
## 7784             16 years old   Male              10th grade   1.88  90.72
## 7785             15 years old   Male               9th grade   1.75  85.28
## 7786             16 years old   Male              11th grade   1.68  47.63
## 7787             17 years old   Male              11th grade   1.80  72.58
## 7788             15 years old Female               9th grade   1.65  62.60
## 7789             16 years old   Male              10th grade   1.85  95.26
## 7790    18 years old or older   Male              12th grade   1.75 112.49
## 7791             17 years old Female              11th grade   1.55  63.50
## 7792             16 years old   Male              10th grade   1.80  68.04
## 7793             17 years old   Male              11th grade   1.88  70.31
## 7794    18 years old or older   Male              12th grade   1.75  62.60
## 7795             14 years old   Male               9th grade   1.85  65.77
## 7796             15 years old Female              10th grade   1.70  61.69
## 7797             17 years old Female              12th grade   1.70 131.09
## 7798             15 years old   Male               9th grade   1.78  65.77
## 7799             17 years old   Male              11th grade   1.85 131.54
## 7800             16 years old   Male              10th grade   1.63  77.11
## 7801             17 years old   Male              11th grade   1.85  86.18
## 7802    18 years old or older Female              12th grade   1.52  47.63
## 7803             14 years old   Male               9th grade   1.80 115.67
## 7804             16 years old   Male              11th grade   1.83  72.58
## 7805             16 years old   Male              10th grade   1.65  55.79
## 7806             17 years old   Male              11th grade   1.83  74.84
## 7807    18 years old or older   Male              12th grade   1.73  61.24
## 7808             15 years old   Male               9th grade   1.73  53.52
## 7809             15 years old   Male              10th grade   1.68  53.98
## 7810             15 years old Female               9th grade   1.60  57.61
## 7811             17 years old Female              11th grade     NA     NA
## 7812             16 years old Female              10th grade   1.60  63.50
## 7813             17 years old   Male              11th grade   1.65  79.38
## 7814             17 years old   Male              12th grade   1.78  81.65
## 7815    18 years old or older Female              12th grade   1.45  45.36
## 7816             16 years old   Male              10th grade   1.63  66.23
## 7817             14 years old   Male               9th grade   1.65  54.43
## 7818             17 years old   Male              11th grade   1.68  57.61
## 7819             17 years old   Male              12th grade   1.70  52.16
## 7820             15 years old   Male              10th grade   1.73  68.04
## 7821             16 years old   Male               9th grade   1.73  83.92
## 7822    18 years old or older Female              12th grade   1.57  56.70
## 7823             15 years old   Male              10th grade   1.78  73.94
## 7824             14 years old   Male               9th grade   1.80  94.35
## 7825             17 years old   Male              11th grade   1.75  68.04
## 7826             17 years old   Male              12th grade   1.78  79.38
## 7827             15 years old   Male              10th grade   1.80  77.11
## 7828             15 years old   Male               9th grade   1.78  69.85
## 7829             17 years old   Male              11th grade   1.75  63.50
## 7830    18 years old or older   Male              12th grade   1.73  90.72
## 7831             15 years old Female              10th grade   1.65  54.43
## 7832             14 years old Female               9th grade   1.78  74.84
## 7833             16 years old   Male              11th grade   1.73  65.77
## 7834             17 years old   Male              12th grade   1.85 105.24
## 7835             16 years old Female              10th grade   1.57  49.44
## 7836             15 years old Female               9th grade   1.57  78.47
## 7837             16 years old   Male              11th grade   1.88  68.04
## 7838             17 years old Female              11th grade   1.70  81.65
## 7839             15 years old   Male              10th grade   1.88  72.58
## 7840             15 years old Female               9th grade   1.65  68.04
## 7841             17 years old   Male              11th grade   1.80 106.60
## 7842             17 years old   Male              11th grade   1.75  70.31
## 7843             16 years old Female              11th grade   1.63  96.62
## 7844             17 years old   Male              12th grade   1.70 116.58
## 7845             15 years old Female              10th grade   1.75  74.84
## 7846             14 years old Female               9th grade   1.55  58.51
## 7847             16 years old Female              11th grade   1.57  48.08
## 7848             15 years old Female              10th grade   1.85  77.11
## 7849             14 years old   Male               9th grade   1.78  69.85
## 7850             16 years old   Male              11th grade   1.73  79.38
## 7851             15 years old   Male              10th grade     NA     NA
## 7852             17 years old   Male              11th grade   1.85 117.94
## 7853             17 years old Female              12th grade   1.63  58.97
## 7854             16 years old Female              10th grade   1.57  77.11
## 7855             16 years old   Male               9th grade   1.70  52.16
## 7856             16 years old Female              11th grade   1.63  68.04
## 7857             17 years old   Male              12th grade   1.70  66.68
## 7858             17 years old Female              12th grade   1.68  79.38
## 7859             16 years old   Male              10th grade   1.78  65.77
## 7860             14 years old   Male               9th grade   1.70  69.85
## 7861             17 years old   Male              11th grade   1.75 111.13
## 7862             17 years old Female              12th grade   1.73  62.60
## 7863             16 years old   Male              10th grade   1.75  74.84
## 7864    18 years old or older Female              12th grade   1.65  68.04
## 7865             17 years old   Male              11th grade   1.88 122.47
## 7866             17 years old   Male              12th grade   1.70  80.29
## 7867             16 years old Female              10th grade   1.68  45.36
## 7868             15 years old   Male               9th grade   1.78  49.44
## 7869             17 years old Female              11th grade   1.55  48.99
## 7870             17 years old   Male              12th grade   1.78  88.45
## 7871             16 years old Female              10th grade   1.68  64.41
## 7872             14 years old   Male               9th grade   1.68  49.90
## 7873             17 years old Female              11th grade   1.50  54.43
## 7874             17 years old Female              12th grade   1.65  50.35
## 7875             17 years old   Male              12th grade   1.75  61.69
## 7876             16 years old   Male              10th grade   1.73  63.05
## 7877             15 years old   Male               9th grade   1.68  67.13
## 7878             17 years old   Male              11th grade   1.73  61.24
## 7879             16 years old   Male              10th grade   1.73  63.50
## 7880             15 years old   Male              10th grade   1.88  84.37
## 7881             14 years old Female               9th grade   1.55  53.07
## 7882             16 years old   Male              11th grade   1.73  83.92
## 7883             17 years old Female              12th grade   1.57  58.97
## 7884             16 years old Female              10th grade   1.75  72.58
## 7885             15 years old Female               9th grade   1.52  49.90
## 7886             17 years old   Male              11th grade   1.75  77.11
## 7887             17 years old Female              11th grade     NA     NA
## 7888             15 years old Female              10th grade   1.75  72.58
## 7889             15 years old   Male               9th grade   1.73  47.63
## 7890             16 years old Female              11th grade   1.73  54.43
## 7891             17 years old Female              11th grade   1.65  54.43
## 7892             16 years old   Male              10th grade   1.75  75.30
## 7893             15 years old Female               9th grade   1.78  89.36
## 7894             17 years old Female              11th grade   1.57  52.16
## 7895             15 years old   Male              10th grade   1.70  45.36
## 7896             14 years old   Male               9th grade   1.70  46.72
## 7897             15 years old Female               9th grade   1.70  54.43
## 7898             16 years old Female              11th grade   1.65  86.18
## 7899             17 years old   Male              11th grade   1.65  61.24
## 7900             16 years old   Male              10th grade   1.78  67.13
## 7901             14 years old   Male               9th grade     NA     NA
## 7902             16 years old Female              11th grade   1.63  74.84
## 7903             17 years old   Male              12th grade   1.75  78.02
## 7904             15 years old   Male               9th grade   1.80 113.40
## 7905             16 years old Female              10th grade   1.70  53.52
## 7906             17 years old   Male              12th grade   1.83  63.50
## 7907             16 years old Female              10th grade   1.63  64.86
## 7908             15 years old Female              10th grade   1.57  46.72
## 7909             16 years old   Male               9th grade   1.85 111.13
## 7910             17 years old   Male              11th grade   1.80  64.41
## 7911             16 years old Female              10th grade   1.60  54.43
## 7912             17 years old Female              12th grade   1.75  90.72
## 7913             14 years old Female               9th grade   1.63  64.86
## 7914             17 years old   Male              11th grade   1.73  71.67
## 7915             14 years old   Male               9th grade   1.65  50.80
## 7916    18 years old or older Female              11th grade   1.57  69.85
## 7917             15 years old   Male              10th grade   1.83  56.70
## 7918             17 years old Female              12th grade   1.75  88.45
## 7919             15 years old   Male               9th grade   1.75  67.13
## 7920             17 years old   Male              11th grade   1.70  74.84
## 7921             17 years old   Male              10th grade   1.52  87.54
## 7922             15 years old Female               9th grade   1.65  95.26
## 7923             17 years old   Male              11th grade   1.83  88.45
## 7924             16 years old   Male              11th grade   1.88  90.72
## 7925             16 years old   Male              10th grade   1.83  99.79
## 7926             15 years old   Male               9th grade   1.80  77.11
## 7927             17 years old   Male              11th grade   1.83  95.26
## 7928             16 years old Female              10th grade   1.68  51.26
## 7929    18 years old or older   Male              12th grade   1.88 102.06
## 7930             14 years old   Male               9th grade   1.68  76.20
## 7931             17 years old   Male              11th grade   1.83 106.60
## 7932             15 years old   Male              10th grade     NA     NA
## 7933             15 years old   Male               9th grade   1.98 160.12
## 7934             16 years old   Male              11th grade   1.63  63.50
## 7935             16 years old Female              10th grade   1.52 100.25
## 7936             15 years old   Male               9th grade   1.78  95.26
## 7937             17 years old   Male              11th grade   1.78  74.39
## 7938             16 years old   Male              10th grade   1.78  71.67
## 7939    18 years old or older   Male              12th grade   1.93  88.91
## 7940             15 years old Female               9th grade   1.68  63.50
## 7941             16 years old   Male              11th grade   1.83  62.14
## 7942             16 years old Female              10th grade   1.57  45.81
## 7943             14 years old Female               9th grade   1.63  49.44
## 7944             17 years old   Male              11th grade   1.65  86.18
## 7945             15 years old   Male              10th grade   1.85  83.01
## 7946             15 years old   Male               9th grade   1.57  48.99
## 7947             16 years old   Male              11th grade   1.73  81.65
## 7948             16 years old   Male              10th grade   1.60  81.65
## 7949    18 years old or older   Male              12th grade   1.70  68.04
## 7950    18 years old or older   Male              12th grade   1.83  74.84
## 7951             15 years old   Male               9th grade   1.70  70.31
## 7952             17 years old Female              11th grade   1.60  71.67
## 7953             15 years old Female              10th grade   1.57  68.04
## 7954             15 years old   Male               9th grade   1.68  91.17
## 7955             17 years old   Male              11th grade   1.80 113.40
## 7956             17 years old   Male              11th grade   1.78 108.86
## 7957             16 years old Female              10th grade   1.50  40.82
## 7958    18 years old or older   Male              12th grade   1.80  72.58
## 7959             17 years old   Male              12th grade   1.85  97.52
## 7960             15 years old Female               9th grade   1.63  58.51
## 7961             15 years old   Male              10th grade   1.88  61.24
## 7962    18 years old or older Female              12th grade   1.65  54.43
## 7963             14 years old   Male               9th grade   1.63  49.90
## 7964    18 years old or older   Male              11th grade   1.80 110.22
## 7965             15 years old Female              10th grade   1.55  47.63
## 7966             17 years old   Male              12th grade   1.73  74.84
## 7967             15 years old Female               9th grade   1.73  73.48
## 7968  12 years old or younger   Male               9th grade     NA     NA
## 7969             17 years old Female              12th grade   1.80  83.92
## 7970             15 years old   Male               9th grade   1.70  68.04
## 7971             16 years old   Male              10th grade   1.80  82.56
## 7972             16 years old   Male              10th grade   1.85  77.11
## 7973             15 years old   Male               9th grade   1.75  86.18
## 7974             16 years old Female              11th grade   1.65  61.24
## 7975             16 years old Female              10th grade   1.57  56.70
## 7976             17 years old Female              10th grade   1.63  62.60
## 7977             16 years old   Male              10th grade   1.60  72.58
## 7978             17 years old Female              12th grade   1.68  86.18
## 7979             17 years old   Male              12th grade   1.85 141.98
## 7980    18 years old or older Female              12th grade   1.63  67.59
## 7981    18 years old or older Female              12th grade   1.65 108.41
## 7982    18 years old or older Female              12th grade   1.70  56.70
## 7983             16 years old Female              11th grade   1.57  61.24
## 7984             15 years old   Male              10th grade   1.78  54.43
## 7985             17 years old Female              12th grade   1.63  91.17
## 7986             15 years old   Male              10th grade   1.78 104.33
## 7987             17 years old Female              11th grade   1.60  54.43
## 7988             16 years old Female              10th grade   1.83 127.01
## 7989             17 years old   Male              12th grade   1.73  79.38
## 7990    18 years old or older   Male              12th grade   1.88 113.40
## 7991             15 years old   Male              10th grade   1.90  61.24
## 7992    18 years old or older   Male              12th grade   1.70  99.79
## 7993             16 years old   Male              10th grade   1.68  61.69
## 7994             17 years old   Male              12th grade   1.83  88.00
## 7995             16 years old Female               9th grade   1.60  45.36
## 7996    18 years old or older   Male              12th grade   1.83  61.24
## 7997             17 years old   Male              11th grade   1.83  70.31
## 7998             17 years old Female              10th grade   1.60  68.04
## 7999    18 years old or older Female              12th grade   1.63  52.16
## 8000             17 years old   Male              11th grade   1.73  81.65
## 8001    18 years old or older   Male              12th grade   1.83  68.04
## 8002             15 years old Female              10th grade   1.68  84.82
## 8003             17 years old Female              11th grade   1.52  58.06
## 8004             15 years old Female              10th grade   1.65  63.50
## 8005             16 years old Female              11th grade   1.65  95.26
## 8006             16 years old Female              10th grade   1.37  49.90
## 8007    18 years old or older Female              12th grade   1.63  51.26
## 8008             16 years old Female              10th grade   1.57  64.41
## 8009    18 years old or older Female              12th grade   1.80 129.28
## 8010             15 years old Female               9th grade   1.45  40.82
## 8011    18 years old or older   Male              12th grade   1.85  74.84
## 8012             16 years old   Male               9th grade   1.78  70.31
## 8013             15 years old Female               9th grade   1.57  63.96
## 8014    18 years old or older Female              12th grade   1.63  52.16
## 8015                     <NA>   <NA>                    <NA>     NA     NA
## 8016             16 years old Female               9th grade   1.52  58.97
## 8017             16 years old Female              11th grade   1.75  68.04
## 8018             15 years old   Male               9th grade   1.78  58.97
## 8019    18 years old or older Female              12th grade   1.60  45.36
## 8020             17 years old   Male              12th grade   1.78 176.45
## 8021    18 years old or older Female              11th grade   1.73  97.52
## 8022             17 years old Female              12th grade     NA     NA
## 8023             15 years old   Male               9th grade   1.65  52.16
## 8024             17 years old   Male              12th grade   1.75  70.31
## 8025             15 years old   Male               9th grade   1.63  56.70
## 8026             17 years old Female              11th grade   1.65  52.62
## 8027             15 years old Female               9th grade   1.70  69.85
## 8028             16 years old Female              11th grade   1.65  63.96
## 8029             17 years old Female              11th grade   1.63  63.50
## 8030             17 years old Female              12th grade   1.63  54.43
## 8031             15 years old   Male               9th grade     NA     NA
## 8032    18 years old or older   Male              12th grade   1.75  72.58
## 8033             16 years old   Male              10th grade   1.88  84.37
## 8034             17 years old Female              11th grade   1.68  55.79
## 8035             15 years old Female              10th grade   1.57  31.30
## 8036             16 years old   Male              10th grade   1.80  83.92
## 8037             15 years old Female              10th grade   1.55  77.11
## 8038             15 years old   Male              10th grade   1.83  64.86
## 8039             17 years old Female              11th grade   1.75  84.82
## 8040             16 years old Female              10th grade   1.60  57.15
## 8041             16 years old Female              10th grade   1.75  64.86
## 8042             17 years old Female              12th grade   1.73  74.84
## 8043             16 years old   Male              10th grade   1.78 117.94
## 8044    18 years old or older Female              12th grade   1.65  68.04
## 8045             17 years old Female              10th grade   1.65  47.63
## 8046             16 years old   Male              10th grade   1.83  74.84
## 8047             17 years old Female              11th grade   1.57  54.43
## 8048             16 years old Female              10th grade   1.65  65.77
## 8049             16 years old   Male              10th grade   1.75  56.70
## 8050             17 years old   Male              11th grade   1.78  72.58
## 8051             16 years old   Male              11th grade   1.80  77.11
## 8052             16 years old Female              10th grade   1.65  81.65
## 8053             17 years old   Male              11th grade   1.90  79.83
## 8054             17 years old Female              10th grade   1.57  59.88
## 8055             16 years old Female               9th grade   1.68  76.66
## 8056             16 years old Female              10th grade   1.68  54.43
## 8057             14 years old   Male               9th grade   1.70  89.81
## 8058             16 years old   Male              11th grade   1.70  79.38
## 8059    18 years old or older   Male              12th grade   1.78  81.65
## 8060             14 years old Female               9th grade   1.70  74.84
## 8061             17 years old Female              11th grade   1.78  67.59
## 8062             16 years old Female               9th grade   1.60  58.97
## 8063             17 years old   Male              11th grade   1.83  63.50
## 8064             17 years old Female              12th grade   1.63  81.65
## 8065             15 years old   Male               9th grade   1.80  77.11
## 8066             16 years old   Male              11th grade   1.78  63.50
## 8067             14 years old   Male               9th grade   1.70  81.19
## 8068             16 years old Female              11th grade     NA     NA
## 8069             15 years old Female               9th grade   1.65  63.50
## 8070             16 years old Female              10th grade   1.65  61.24
## 8071             14 years old Female               9th grade   1.63  99.79
## 8072             17 years old Female              11th grade   1.65  58.97
## 8073    18 years old or older Female              12th grade   1.65  98.88
## 8074             17 years old Female              11th grade   1.73  55.79
## 8075             15 years old   Male              10th grade   1.57  49.90
## 8076             16 years old   Male               9th grade     NA     NA
## 8077             15 years old Female              10th grade   1.70  61.24
## 8078             15 years old   Male               9th grade   1.68 133.36
## 8079             17 years old   Male              11th grade   1.73  63.50
## 8080             17 years old Female              12th grade   1.73  99.79
## 8081             16 years old Female               9th grade     NA     NA
## 8082             17 years old   Male              11th grade   1.88 104.33
## 8083             15 years old Female               9th grade   1.63  52.16
## 8084             17 years old   Male              11th grade   1.83  61.24
## 8085    18 years old or older   Male              12th grade   1.83 102.06
## 8086             17 years old   Male              11th grade   1.88  96.16
## 8087             15 years old Female               9th grade   1.68  69.40
## 8088             17 years old   Male              11th grade   1.73 117.94
## 8089    18 years old or older   Male              12th grade   1.83  75.30
## 8090             17 years old   Male              11th grade   1.78 106.60
## 8091             17 years old   Male              11th grade   1.83 121.11
## 8092    18 years old or older Female              12th grade   1.55  95.26
## 8093             16 years old   Male              10th grade   1.80  85.28
## 8094             15 years old   Male               9th grade   1.80  83.92
## 8095             16 years old Female              11th grade   1.68  74.39
## 8096    18 years old or older   Male              12th grade   1.80  58.97
## 8097             16 years old   Male              10th grade   1.73  68.95
## 8098             16 years old   Male              10th grade   1.78  65.77
## 8099             14 years old   Male               9th grade   1.68  68.04
## 8100             16 years old   Male              10th grade   1.83 124.74
## 8101             15 years old Female               9th grade   1.52  49.90
## 8102             16 years old   Male              11th grade   1.70  68.95
## 8103             17 years old   Male              12th grade   1.78  89.81
## 8104             16 years old Female              10th grade   1.65  53.52
## 8105             16 years old Female              10th grade   1.65  86.18
## 8106             17 years old Female              11th grade   1.57  65.77
## 8107             17 years old   Male              11th grade   1.90  86.18
## 8108             14 years old   Male               9th grade   1.68  61.69
## 8109             17 years old   Male              11th grade     NA     NA
## 8110             15 years old   Male               9th grade   1.68  58.97
## 8111             14 years old Female               9th grade     NA     NA
## 8112             16 years old Female              10th grade   1.60  61.24
## 8113             15 years old   Male               9th grade     NA     NA
## 8114    18 years old or older   Male              12th grade   1.75  65.77
## 8115             14 years old Female               9th grade   1.60  73.94
## 8116             15 years old Female              10th grade   1.63  95.26
## 8117             15 years old   Male               9th grade   1.88 113.40
## 8118             17 years old Female              11th grade   1.57  44.91
## 8119             17 years old   Male              11th grade   1.80  68.04
## 8120             15 years old Female               9th grade     NA     NA
## 8121             16 years old Female              11th grade   1.57  46.72
## 8122             17 years old Female              11th grade   1.65  56.70
## 8123             17 years old   Male              11th grade   1.70  54.43
## 8124    18 years old or older   Male              12th grade   1.70  68.04
## 8125             14 years old Female               9th grade     NA     NA
## 8126             16 years old Female               9th grade     NA     NA
## 8127             16 years old   Male              10th grade   1.83  97.52
## 8128             15 years old   Male               9th grade   1.78  66.68
## 8129             15 years old Female               9th grade     NA     NA
## 8130             14 years old Female               9th grade   1.73 127.01
## 8131             15 years old Female               9th grade     NA     NA
## 8132             15 years old Female              10th grade   1.50  71.22
## 8133             17 years old   Male              11th grade   1.83  63.50
## 8134             14 years old   Male               9th grade   1.73  72.58
## 8135             17 years old Female              11th grade   1.60  56.25
## 8136             15 years old   Male               9th grade   1.75  62.60
## 8137             16 years old Female              10th grade   1.55  49.90
## 8138             15 years old   Male               9th grade   1.85  61.24
## 8139             16 years old Female              10th grade   1.63  72.58
## 8140             14 years old   Male               9th grade   1.65  54.89
## 8141             16 years old Female               9th grade   1.63 104.33
## 8142             15 years old Female               9th grade   1.55  48.08
## 8143             16 years old Female              11th grade   1.63  36.29
## 8144             15 years old Female               9th grade   1.63  52.16
## 8145             17 years old   Male              12th grade   1.75 108.86
## 8146             15 years old   Male               9th grade   1.83  80.74
## 8147    18 years old or older   Male              12th grade   1.73  72.58
## 8148             15 years old   Male               9th grade   1.80  63.50
## 8149    18 years old or older   Male              12th grade   1.78  86.18
## 8150    18 years old or older   Male              12th grade   1.78  96.62
## 8151             15 years old   Male               9th grade   1.68  65.77
## 8152    18 years old or older   Male              12th grade   2.01  90.72
## 8153             15 years old Female               9th grade   1.60  52.16
## 8154             17 years old   Male              12th grade   1.80  65.77
## 8155             14 years old Female               9th grade   1.65  53.52
## 8156             16 years old   Male               9th grade   1.78  65.77
## 8157    18 years old or older   Male              12th grade   1.83  90.72
## 8158    18 years old or older   Male              12th grade   1.80  63.50
## 8159             15 years old   Male               9th grade   1.75  54.43
## 8160    18 years old or older   Male              12th grade   1.93 107.96
## 8161             15 years old Female               9th grade   1.50  58.51
## 8162    18 years old or older   Male              12th grade   1.83  83.92
## 8163    18 years old or older   Male              12th grade   1.96 127.01
## 8164             15 years old Female               9th grade   1.63  58.97
## 8165             17 years old   Male              12th grade   1.85  63.50
## 8166             14 years old Female               9th grade   1.68  49.90
## 8167             15 years old Female               9th grade   1.63  84.37
## 8168             14 years old   Male               9th grade   1.85  64.41
## 8169             14 years old Female               9th grade   1.63  69.85
## 8170    18 years old or older Female              12th grade   1.68 113.40
## 8171             17 years old   Male              12th grade   1.75  81.65
## 8172    18 years old or older   Male              12th grade   1.83  59.42
## 8173             14 years old Female               9th grade   1.70  65.77
## 8174    18 years old or older   Male              12th grade   1.68  65.77
## 8175             16 years old   Male               9th grade     NA     NA
## 8176    18 years old or older Female              12th grade   1.65  63.50
## 8177             16 years old Female               9th grade     NA     NA
## 8178    18 years old or older Female              12th grade   1.60  90.72
## 8179             16 years old   Male               9th grade   1.73  59.42
## 8180    18 years old or older   Male              12th grade   1.75 104.33
## 8181             14 years old Female               9th grade   1.63  60.78
## 8182             17 years old Female              12th grade   1.65  62.60
## 8183    18 years old or older   Male              12th grade   1.63  65.77
## 8184             16 years old   Male               9th grade   1.75 113.85
## 8185             15 years old Female               9th grade   1.70  77.11
## 8186    18 years old or older   Male              12th grade   1.80  66.23
## 8187             15 years old Female               9th grade   1.52  52.16
## 8188    18 years old or older   Male              12th grade   1.80  73.94
## 8189             15 years old   Male               9th grade   2.01  68.95
## 8190             17 years old Female              12th grade   1.63  53.52
## 8191             14 years old Female               9th grade   1.57  49.90
## 8192             15 years old   Male               9th grade   1.60  50.35
## 8193             15 years old   Male               9th grade   1.80 124.74
## 8194    18 years old or older   Male              12th grade   1.88  81.65
## 8195             14 years old Female               9th grade   1.65  48.08
## 8196    18 years old or older   Male              12th grade   1.80 115.67
## 8197             15 years old Female               9th grade   1.55  45.36
## 8198    18 years old or older   Male              12th grade   1.85  63.50
## 8199             15 years old   Male               9th grade   1.83  70.31
## 8200    18 years old or older Female              12th grade   1.63  90.72
## 8201             15 years old Female               9th grade   1.68  51.26
## 8202    18 years old or older Female              12th grade   1.65  56.70
## 8203             15 years old   Male               9th grade   1.83  68.04
## 8204    18 years old or older Female              12th grade   1.73  61.24
## 8205             14 years old Female               9th grade   1.65  83.92
## 8206             17 years old   Male              12th grade   1.90  72.58
## 8207             14 years old   Male               9th grade   1.78  99.79
## 8208    18 years old or older   Male              12th grade   1.85  83.92
## 8209             16 years old   Male              10th grade   1.75  58.97
## 8210    18 years old or older   Male              12th grade   1.70  72.58
## 8211    18 years old or older Female              12th grade   1.52  53.07
## 8212             16 years old Female              11th grade   1.55  86.18
## 8213             15 years old Female              10th grade   1.63  45.36
## 8214             16 years old   Male              11th grade   1.78  57.61
## 8215    18 years old or older Female              12th grade   1.63  52.16
## 8216             16 years old   Male              11th grade   1.70  70.31
## 8217             16 years old   Male              10th grade   1.78  68.04
## 8218             17 years old   Male              11th grade   1.83  79.38
## 8219             17 years old   Male              12th grade   1.83  74.84
## 8220             16 years old   Male              11th grade   1.65  55.79
## 8221    18 years old or older Female              12th grade     NA     NA
## 8222             16 years old   Male              10th grade   1.80  86.18
## 8223             17 years old   Male              11th grade   1.88  68.04
## 8224    18 years old or older Female              12th grade   1.55  65.77
## 8225             17 years old   Male              11th grade   1.70  52.62
## 8226             16 years old   Male              10th grade   1.83  90.72
## 8227             17 years old   Male              11th grade   1.85  77.11
## 8228    18 years old or older Female              12th grade   1.55  42.18
## 8229             17 years old   Male              11th grade   1.68 111.13
## 8230    18 years old or older   Male              12th grade   1.80  83.46
## 8231             16 years old   Male              10th grade   1.75  81.65
## 8232             15 years old   Male              10th grade   1.78  70.31
## 8233             17 years old Female              11th grade   1.65  79.38
## 8234    18 years old or older Female              12th grade   1.65  56.70
## 8235             17 years old Female              11th grade   1.70  81.65
## 8236             17 years old Female              12th grade   1.63  69.40
## 8237             15 years old   Male              10th grade   1.68  66.68
## 8238             16 years old   Male              10th grade   1.78  59.42
## 8239             17 years old   Male              11th grade   1.68  58.97
## 8240    18 years old or older Female              12th grade   1.57  53.07
## 8241             17 years old   Male              11th grade   1.83  81.65
## 8242    18 years old or older Female              12th grade   1.70  56.70
## 8243             17 years old   Male              11th grade   1.88  82.10
## 8244             16 years old Female              10th grade   1.57  57.61
## 8245             16 years old Female              11th grade   1.52  46.72
## 8246    18 years old or older Female              12th grade   1.65  79.38
## 8247             17 years old   Male              11th grade   1.88  82.56
## 8248             17 years old Female              12th grade   1.73  90.72
## 8249             16 years old Female              10th grade   1.60  65.77
## 8250             17 years old Female              12th grade   1.63  62.60
## 8251             17 years old Female              11th grade   1.63  62.60
## 8252             16 years old Female              10th grade   1.70  47.63
## 8253             17 years old   Male              11th grade   1.78  63.50
## 8254    18 years old or older   Male              12th grade   1.68  72.58
## 8255             17 years old Female              11th grade   1.65  54.43
## 8256             17 years old   Male              12th grade   1.90  68.04
## 8257             16 years old   Male              10th grade   1.88  58.97
## 8258    18 years old or older   Male              11th grade   1.68  68.04
## 8259             17 years old Female              11th grade   1.50  65.77
## 8260             17 years old Female              11th grade   1.63  45.36
## 8261    18 years old or older   Male              12th grade   1.70  81.65
## 8262             15 years old Female              10th grade   1.65  54.43
## 8263             17 years old Female              11th grade   1.70  72.58
## 8264             17 years old Female              11th grade   1.63  53.52
## 8265             15 years old Female              10th grade   1.63  51.71
## 8266             16 years old   Male              11th grade   1.73  58.97
## 8267             16 years old Female              11th grade   1.52  56.70
## 8268    18 years old or older Female              12th grade   1.70  65.77
## 8269             16 years old   Male              10th grade   1.93  81.65
## 8270             16 years old   Male              10th grade   1.60  56.70
## 8271             16 years old Female              11th grade   1.60  79.38
## 8272             17 years old Female              12th grade   1.63  52.16
## 8273             17 years old Female              11th grade   1.68  54.43
## 8274    18 years old or older   Male              12th grade   1.70  77.11
## 8275             16 years old Female              10th grade   1.68  63.05
## 8276             16 years old Female              10th grade   1.60  52.16
## 8277             16 years old Female              11th grade   1.60  44.45
## 8278    18 years old or older Female              12th grade   1.65  98.88
## 8279             16 years old   Male              11th grade   1.88 122.93
## 8280    18 years old or older   Male              12th grade   1.75  63.50
## 8281             16 years old   Male              10th grade   1.68  55.34
## 8282    18 years old or older   Male              11th grade   1.68  68.04
## 8283             17 years old Female              11th grade   1.63  74.39
## 8284             16 years old   Male              10th grade   1.85  61.24
## 8285             16 years old   Male              11th grade   1.73  61.69
## 8286    18 years old or older Female              12th grade   1.52  79.38
## 8287             16 years old Female              10th grade   1.70  59.42
## 8288    18 years old or older   Male              11th grade   1.93 127.01
## 8289             17 years old Female              12th grade   1.63  49.90
## 8290             16 years old   Male              11th grade   1.88  72.58
## 8291    18 years old or older   Male              12th grade   1.80 129.28
## 8292             16 years old Female              10th grade   1.57  47.63
## 8293             16 years old   Male              10th grade   1.83  61.24
## 8294             16 years old   Male              11th grade   1.80  56.70
## 8295             17 years old Female              12th grade   1.57  61.24
## 8296             16 years old   Male              10th grade   1.83  58.06
## 8297             16 years old Female              10th grade   1.65  93.44
## 8298             16 years old Female              11th grade     NA     NA
## 8299             17 years old Female              12th grade   1.70  47.63
## 8300             15 years old   Male              10th grade   1.75  61.24
## 8301             16 years old Female              10th grade   1.57 121.56
## 8302             16 years old Female              11th grade   1.55  42.18
## 8303    18 years old or older   Male              12th grade   1.68  54.43
## 8304    18 years old or older   Male              12th grade   1.85  74.84
## 8305             17 years old Female              11th grade   1.52  61.24
## 8306             16 years old   Male              10th grade   1.75  56.70
## 8307    18 years old or older   Male              12th grade   1.88 151.96
## 8308             17 years old   Male              10th grade   1.70  90.72
## 8309             17 years old   Male              11th grade   1.83 104.33
## 8310    18 years old or older Female              12th grade   1.57  61.24
## 8311             16 years old   Male              10th grade   1.78  68.04
## 8312             17 years old   Male              12th grade     NA     NA
## 8313    18 years old or older Female              12th grade   1.63  63.50
## 8314             15 years old Female              10th grade   1.65  86.18
## 8315             16 years old   Male              10th grade   1.78  63.50
## 8316    18 years old or older Female              12th grade   1.70 104.33
## 8317             17 years old Female              11th grade   1.60  94.35
## 8318             16 years old   Male              11th grade   1.80  68.04
## 8319             16 years old   Male              10th grade   1.83  72.58
## 8320             14 years old Female               9th grade   1.57  65.77
## 8321             17 years old Female              11th grade   1.57  56.70
## 8322             15 years old Female               9th grade   1.70  68.04
## 8323             15 years old Female               9th grade   1.73 106.14
## 8324             15 years old Female              10th grade   1.70  56.70
## 8325             16 years old Female              10th grade   1.60  47.63
## 8326             15 years old Female              10th grade     NA     NA
## 8327             15 years old   Male              10th grade   1.60 104.33
## 8328             16 years old Female              10th grade   1.55  81.65
## 8329             15 years old Female               9th grade   1.70  63.05
## 8330             16 years old   Male              10th grade   1.83  97.52
## 8331             17 years old   Male              11th grade   1.70  73.94
## 8332             16 years old   Male              10th grade   1.78  56.70
## 8333             15 years old   Male               9th grade   1.78  79.38
## 8334             14 years old Female               9th grade   1.65  57.15
## 8335             17 years old Female              10th grade   1.60  97.52
## 8336             15 years old Female               9th grade   1.57  87.09
## 8337             15 years old Female               9th grade   1.68  54.43
## 8338    18 years old or older   Male              12th grade   1.85  61.24
## 8339             14 years old Female               9th grade   1.63  56.25
## 8340             17 years old   Male              11th grade   1.70  70.31
## 8341             16 years old Female              11th grade   1.57  72.58
## 8342             15 years old Female               9th grade   1.75  62.14
## 8343             16 years old Female                    <NA>   1.57  49.90
## 8344             17 years old   Male              11th grade   1.73  86.18
## 8345             15 years old Female              10th grade   1.63  49.90
## 8346             15 years old   Male              10th grade   1.57  52.16
## 8347             15 years old Female               9th grade     NA     NA
## 8348             15 years old   Male               9th grade   1.83  90.72
## 8349             16 years old   Male              10th grade   1.83  74.84
## 8350             16 years old   Male              10th grade   1.83  79.38
## 8351             16 years old   Male              10th grade   1.73  60.33
## 8352             16 years old   Male              10th grade   1.78 131.09
## 8353             17 years old Female              11th grade   1.57  55.34
## 8354             14 years old Female               9th grade   1.80  48.54
## 8355             15 years old   Male              10th grade   1.70  58.97
## 8356             15 years old   Male               9th grade   1.78 115.21
## 8357             15 years old   Male               9th grade   1.80  88.45
## 8358             17 years old   Male              10th grade   1.70  74.84
## 8359             15 years old   Male               9th grade   1.78  69.85
## 8360             16 years old   Male              10th grade   1.88  90.72
## 8361             17 years old Female              11th grade   1.63  90.72
## 8362             16 years old Female              10th grade   1.60  61.24
## 8363    18 years old or older Female              12th grade   1.63  48.08
## 8364             14 years old Female               9th grade   1.65  80.74
## 8365    18 years old or older   Male              12th grade   1.98  77.11
## 8366             15 years old   Male              10th grade   1.65  47.63
## 8367             15 years old   Male              10th grade   1.65  72.58
## 8368    18 years old or older   Male              12th grade   1.80  95.26
## 8369             16 years old   Male              10th grade   1.83  72.58
## 8370             17 years old Female              11th grade   1.57  72.12
## 8371             16 years old Female              11th grade   1.68  92.08
## 8372             15 years old   Male               9th grade   1.80 100.25
## 8373             14 years old Female               9th grade   1.60  45.36
## 8374             15 years old   Male               9th grade   1.83  88.45
## 8375             15 years old Female               9th grade   1.63  47.17
## 8376             16 years old Female              11th grade   1.60  52.16
## 8377             14 years old Female               9th grade   1.68  58.97
## 8378    18 years old or older Female              12th grade   1.52  44.45
## 8379             16 years old   Male              10th grade   1.85  77.11
## 8380             15 years old   Male               9th grade   1.78 144.70
## 8381             15 years old   Male               9th grade   1.70  72.58
## 8382             16 years old Female              10th grade   1.57  68.04
## 8383             15 years old   Male              10th grade   1.80 109.77
## 8384    18 years old or older Female              12th grade   1.70  72.58
## 8385             15 years old   Male               9th grade   1.70  74.84
## 8386             14 years old Female               9th grade   1.68  38.56
## 8387             16 years old   Male              10th grade   1.83  97.98
## 8388             15 years old Female               9th grade   1.65  53.52
## 8389             17 years old   Male              11th grade   1.78  73.48
## 8390    18 years old or older   Male              11th grade   1.75  57.15
## 8391             14 years old Female               9th grade   1.65  38.56
## 8392             17 years old Female              11th grade   1.65  61.24
## 8393             15 years old Female               9th grade   1.65  86.18
## 8394             15 years old Female              10th grade   1.60  54.43
## 8395             15 years old   Male               9th grade   1.80  49.90
## 8396             17 years old Female              11th grade   1.60  61.24
## 8397             17 years old Female              11th grade   1.57  81.65
## 8398             17 years old   Male              12th grade   1.63  86.18
## 8399             16 years old   Male              11th grade   1.75  68.04
## 8400             16 years old   Male              10th grade   1.73  58.97
## 8401             16 years old Female               9th grade   1.57  53.07
## 8402             17 years old   Male              11th grade   1.70  56.70
## 8403             17 years old   Male              11th grade   1.88  81.65
## 8404    18 years old or older Female              12th grade   1.60  58.06
## 8405             16 years old   Male              10th grade   1.80  92.53
## 8406             17 years old Female              11th grade   1.60 108.86
## 8407             16 years old Female              11th grade   1.70  70.31
## 8408             15 years old Female               9th grade   1.65  65.77
## 8409             16 years old Female              10th grade   1.55  49.90
## 8410             14 years old   Male               9th grade   1.80  59.88
## 8411             16 years old   Male              10th grade   1.70  89.81
## 8412             14 years old   Male               9th grade   1.88  76.20
## 8413             14 years old Female               9th grade   1.57  47.63
## 8414             17 years old Female              10th grade   1.47  49.90
## 8415             15 years old   Male               9th grade   1.83  65.77
## 8416             16 years old Female              10th grade   1.57  54.43
## 8417             16 years old Female              10th grade   1.60  78.02
## 8418             16 years old   Male Ungraded or other grade     NA     NA
## 8419             15 years old Female               9th grade   1.63  88.00
## 8420             15 years old   Male               9th grade   1.65  53.98
## 8421             14 years old Female               9th grade   1.57  44.45
## 8422             15 years old Female               9th grade   1.63  43.09
## 8423             17 years old   Male              11th grade   1.75  77.11
## 8424             16 years old   Male              12th grade     NA     NA
## 8425             16 years old   Male              10th grade   1.88  83.92
## 8426             16 years old   Male              10th grade   1.78  68.04
## 8427             15 years old Female               9th grade   1.65  50.35
## 8428             15 years old   Male              10th grade   1.75  63.50
## 8429             15 years old   Male               9th grade   1.80  54.43
## 8430             16 years old Female              10th grade   1.65  83.92
## 8431             16 years old Female              10th grade   1.73  67.59
## 8432             17 years old Female              11th grade   1.65  74.84
## 8433             17 years old Female              11th grade   1.68  93.90
## 8434             15 years old Female               9th grade   1.63  89.81
## 8435             16 years old   Male              10th grade   1.75  68.04
## 8436             15 years old   Male               9th grade   1.73  70.76
## 8437             15 years old Female              10th grade   1.50  54.43
## 8438             16 years old   Male              10th grade   1.80 140.62
## 8439    18 years old or older Female              12th grade   1.75  50.80
## 8440             15 years old Female               9th grade   1.57  58.97
## 8441             16 years old   Male              11th grade   1.83  52.16
## 8442    18 years old or older   Male              12th grade     NA     NA
## 8443             17 years old Female              11th grade   1.52  63.50
## 8444             15 years old Female              10th grade   1.57  44.00
## 8445    18 years old or older Female              12th grade   1.68  72.58
## 8446             17 years old Female              10th grade   1.73  51.26
## 8447    18 years old or older Female              12th grade   1.68  69.85
## 8448    18 years old or older   Male              12th grade   1.88 131.54
## 8449             15 years old Female               9th grade   1.52  56.70
## 8450             17 years old   Male              11th grade   1.78  79.38
## 8451    18 years old or older   Male              12th grade   1.73  86.18
## 8452             17 years old   Male              12th grade   1.83  68.04
## 8453             16 years old   Male              10th grade   1.83  74.84
## 8454             16 years old   Male               9th grade   1.73  72.58
## 8455             15 years old Female               9th grade   1.50  53.98
## 8456             17 years old   Male              12th grade   1.88  77.11
## 8457    18 years old or older   Male              11th grade   1.88  73.03
## 8458    18 years old or older   Male              12th grade   1.90 122.47
## 8459             15 years old Female               9th grade     NA     NA
## 8460             17 years old   Male              11th grade   1.68  72.58
## 8461    18 years old or older   Male              12th grade   1.75  81.65
## 8462             16 years old Female              11th grade   1.55 102.51
## 8463             17 years old Female              12th grade   1.60  68.04
## 8464             16 years old   Male              11th grade   1.90  83.46
## 8465             16 years old Female              11th grade   1.63  63.05
## 8466             16 years old Female              11th grade   1.73  52.16
## 8467    18 years old or older Female              12th grade   1.68 108.86
## 8468             17 years old   Male              11th grade   1.70  64.41
## 8469    18 years old or older   Male              12th grade   1.75  52.16
## 8470             16 years old Female              11th grade   1.68  85.28
## 8471             16 years old Female              10th grade   1.65  61.24
## 8472             16 years old Female              11th grade   1.65  52.16
## 8473    18 years old or older   Male              12th grade   1.73  73.03
## 8474             16 years old Female              10th grade   1.68  61.24
## 8475             17 years old   Male              11th grade   1.88 117.94
## 8476    18 years old or older Female              12th grade   1.65  58.97
## 8477             16 years old   Male              10th grade     NA     NA
## 8478             17 years old   Male              11th grade   1.93  83.92
## 8479    18 years old or older Female              12th grade   1.60  52.16
## 8480             15 years old   Male              10th grade   1.70  82.10
## 8481    18 years old or older   Male              11th grade   1.85  65.77
## 8482    18 years old or older   Male              12th grade   2.03 180.99
## 8483             17 years old   Male              10th grade   1.65  66.23
## 8484             15 years old   Male               9th grade   1.73 106.60
## 8485             16 years old Female               9th grade     NA     NA
## 8486             16 years old Female              11th grade   1.55  44.45
## 8487    18 years old or older   Male              12th grade   1.78 100.70
## 8488             16 years old Female              10th grade   1.73  92.99
## 8489             16 years old Female               9th grade   1.60  58.06
## 8490             15 years old Female               9th grade   1.57  53.07
## 8491             17 years old Female              11th grade   1.68  56.70
## 8492             17 years old Female              12th grade   1.45  38.56
## 8493             15 years old   Male               9th grade     NA     NA
## 8494             15 years old   Male               9th grade   1.78  70.31
## 8495    18 years old or older Female              12th grade   1.70  63.50
## 8496             16 years old   Male              10th grade     NA     NA
## 8497             15 years old Female               9th grade   1.55  61.24
## 8498             15 years old Female               9th grade     NA     NA
## 8499    18 years old or older Female              12th grade   1.60  56.70
## 8500             17 years old   Male              10th grade     NA     NA
## 8501             15 years old   Male               9th grade   1.78  65.32
## 8502             15 years old   Male               9th grade   1.80 107.05
## 8503             17 years old Female              11th grade     NA     NA
## 8504    18 years old or older   Male              12th grade   1.70  76.66
## 8505             16 years old   Male              10th grade   1.83  95.26
## 8506             16 years old Female              11th grade   1.52  79.38
## 8507    18 years old or older   Male              12th grade   1.88  86.18
## 8508             16 years old Female              10th grade   1.78  75.30
## 8509             17 years old Female              12th grade   1.70 104.33
## 8510             14 years old Female               9th grade   1.65  81.65
## 8511             15 years old   Male               9th grade   1.70  52.16
## 8512             17 years old Female              11th grade   1.65  63.50
## 8513             16 years old   Male               9th grade   1.83  73.94
## 8514             15 years old   Male               9th grade     NA     NA
## 8515             17 years old Female              11th grade   1.55  52.16
## 8516    18 years old or older   Male              12th grade   1.96 127.01
## 8517             14 years old Female               9th grade   1.73  52.62
## 8518             15 years old   Male               9th grade   1.73  80.74
## 8519             17 years old Female              11th grade   1.60  63.50
## 8520    18 years old or older Female              12th grade   1.68  91.63
## 8521             15 years old   Male               9th grade   1.65 104.33
## 8522             17 years old Female              12th grade   1.70  95.26
## 8523             17 years old   Male              11th grade   1.78  76.66
## 8524             15 years old   Male               9th grade   1.65  49.90
## 8525             14 years old   Male               9th grade   1.78  65.77
## 8526             17 years old Female              11th grade   1.60  56.70
## 8527    18 years old or older Female              12th grade   1.63  61.24
## 8528             16 years old   Male              10th grade   1.75 117.94
## 8529             16 years old   Male               9th grade   1.78  61.24
## 8530             15 years old   Male               9th grade   1.78  62.60
## 8531    18 years old or older   Male              12th grade   1.85 117.94
## 8532             16 years old   Male              10th grade   1.63  45.81
## 8533             15 years old Female               9th grade   1.60  56.70
## 8534             16 years old Female              11th grade   1.73 108.86
## 8535    18 years old or older   Male              12th grade   1.78  80.74
## 8536             14 years old Female               9th grade   1.80  83.92
## 8537             15 years old Female               9th grade   1.68  50.80
## 8538             15 years old   Male               9th grade   1.85  86.18
## 8539             15 years old   Male               9th grade   1.73  74.84
## 8540             14 years old Female               9th grade   1.65  95.26
## 8541             16 years old Female               9th grade   1.60  40.82
## 8542             15 years old   Male               9th grade   1.80  71.22
## 8543             15 years old   Male               9th grade   1.75  54.43
## 8544             15 years old Female               9th grade     NA     NA
## 8545             15 years old   Male               9th grade   1.70  48.54
## 8546             16 years old Female               9th grade   1.73 161.48
## 8547             17 years old Female              12th grade   1.57  61.24
## 8548             16 years old Female              10th grade   1.65  65.77
## 8549    18 years old or older Female              11th grade   1.68  49.90
## 8550    18 years old or older   Male              11th grade   1.75  88.00
## 8551             16 years old Female              11th grade   1.52  45.36
## 8552    18 years old or older Female              12th grade   1.65  61.24
## 8553             17 years old Female              10th grade   1.65  45.36
## 8554    18 years old or older   Male              12th grade   1.88  86.18
## 8555             16 years old   Male              10th grade   1.78  63.50
## 8556             17 years old Female              11th grade   1.63  81.65
## 8557             16 years old   Male               9th grade   1.65  63.50
## 8558             17 years old   Male              11th grade   1.83  90.72
## 8559             17 years old   Male              11th grade   1.78  99.79
## 8560             16 years old Female              10th grade   1.52  52.16
## 8561    18 years old or older   Male              12th grade   1.75  74.84
## 8562    18 years old or older   Male              12th grade   1.83  81.65
## 8563             15 years old Female              10th grade   1.68  49.90
## 8564             15 years old Female               9th grade   1.60  54.43
## 8565             16 years old   Male              11th grade   1.88  79.38
## 8566             16 years old   Male              11th grade   1.83  80.74
## 8567             16 years old   Male              10th grade   1.73  59.88
## 8568    18 years old or older Female              12th grade   1.73  92.99
## 8569             17 years old   Male              10th grade   1.83  70.31
## 8570             15 years old   Male               9th grade   1.75  69.40
## 8571             16 years old Female              11th grade   1.75  73.94
## 8572             17 years old Female              11th grade   1.57  56.70
## 8573    18 years old or older   Male              12th grade   1.65  89.36
## 8574             17 years old Female              12th grade   1.57  56.70
## 8575             17 years old Female              10th grade   1.60  76.20
## 8576    18 years old or older   Male              12th grade   1.90  77.11
## 8577             16 years old Female               9th grade   1.50  50.35
## 8578             17 years old Female              11th grade   1.35  77.11
## 8579             17 years old   Male              11th grade   1.70  68.04
## 8580             16 years old   Male              10th grade   1.68  58.97
## 8581    18 years old or older   Male              12th grade   1.90  68.04
## 8582    18 years old or older   Male              12th grade   1.88  94.35
## 8583             17 years old Female              12th grade   1.73  81.65
## 8584             17 years old Female              11th grade   1.73  83.92
## 8585             15 years old Female               9th grade   1.65  57.15
## 8586             16 years old Female              11th grade   1.68  58.97
## 8587             17 years old Female              11th grade     NA     NA
## 8588             16 years old   Male              10th grade   1.73  65.77
## 8589    18 years old or older Female              12th grade   1.75  99.79
## 8590    18 years old or older Female              12th grade   1.73 123.83
## 8591             16 years old   <NA>              10th grade     NA     NA
## 8592    18 years old or older Female              12th grade   1.60  50.80
## 8593             16 years old   Male              10th grade   1.80  81.65
## 8594    18 years old or older   Male              12th grade   1.88  77.11
## 8595             16 years old Female              10th grade   1.73  77.11
## 8596             17 years old   Male              12th grade   1.73  84.82
## 8597             15 years old Female              10th grade   1.60 113.40
## 8598             17 years old   Male              12th grade   1.93 122.47
## 8599             17 years old   Male              11th grade   1.73  55.79
## 8600             14 years old Female               9th grade   1.65  79.38
## 8601             17 years old   Male              11th grade   1.75  86.18
## 8602             16 years old   Male               9th grade   1.68  50.35
## 8603             16 years old   Male              10th grade   1.73  95.26
## 8604    18 years old or older   Male              12th grade   1.83  61.24
## 8605    18 years old or older Female              12th grade   1.65  52.16
## 8606    18 years old or older   Male              12th grade   1.83  83.46
## 8607    18 years old or older   Male              12th grade   1.83  83.92
## 8608             15 years old Female               9th grade   1.63  51.26
## 8609             16 years old   Male              11th grade   1.65  40.82
## 8610             16 years old Female              11th grade   1.60  58.97
## 8611    18 years old or older Female              12th grade   1.78  75.30
## 8612             16 years old   Male               9th grade   1.83  81.65
## 8613             16 years old Female              11th grade   1.65  77.11
## 8614             16 years old   Male              11th grade   1.88 104.33
## 8615    18 years old or older Female              12th grade   1.70  68.04
## 8616             16 years old Female              11th grade   1.68  54.43
## 8617             15 years old   Male               9th grade   1.83  65.32
## 8618             17 years old   Male              11th grade   1.88 140.62
## 8619             17 years old Female              11th grade   1.73 113.40
## 8620             16 years old   Male              10th grade   1.73  81.65
## 8621    18 years old or older Female              12th grade   1.55  48.99
## 8622    18 years old or older   Male              12th grade   1.73  99.79
## 8623    18 years old or older Female              11th grade   1.68  99.79
## 8624             15 years old   Male               9th grade   1.88  77.11
## 8625             17 years old Female              11th grade   1.60  56.70
## 8626             16 years old Female              10th grade   1.60  54.43
## 8627    18 years old or older Female              12th grade   1.63  54.43
## 8628             17 years old Female              11th grade   1.42  47.63
## 8629             15 years old   Male               9th grade   1.75  58.97
## 8630             17 years old   Male              11th grade   1.73  82.56
## 8631             15 years old Female              10th grade   1.70  72.58
## 8632    18 years old or older   Male              12th grade   1.80  76.20
## 8633             15 years old Female               9th grade     NA     NA
## 8634             17 years old   Male              11th grade   1.75  67.13
## 8635             15 years old Female               9th grade   1.73  72.58
## 8636             16 years old Female              10th grade   1.65  58.97
## 8637    18 years old or older   Male              12th grade   1.83  81.65
## 8638             15 years old Female               9th grade   1.55  58.97
## 8639             16 years old   Male              11th grade   1.83  61.24
## 8640             17 years old   Male              11th grade   1.65 106.60
## 8641             17 years old Female              12th grade   1.73 122.47
## 8642    18 years old or older Female              12th grade   1.63  68.04
## 8643             15 years old   Male               9th grade   1.85  81.65
## 8644    18 years old or older Female              11th grade   1.52  72.58
## 8645             17 years old Female              10th grade   1.65  67.13
## 8646             17 years old Female              12th grade   1.73  63.50
## 8647             17 years old Female              12th grade   1.60  49.90
## 8648             17 years old   Male              11th grade   1.75  58.97
## 8649             17 years old Female              11th grade   1.65  70.31
## 8650             15 years old   Male               9th grade     NA     NA
## 8651             15 years old Female               9th grade     NA     NA
## 8652             15 years old   Male               9th grade   1.75  54.43
## 8653             15 years old Female               9th grade     NA     NA
## 8654             15 years old Female               9th grade   1.68  85.28
## 8655             15 years old Female               9th grade   1.63  45.36
## 8656             15 years old   Male               9th grade   1.73  65.77
## 8657             15 years old Female               9th grade     NA     NA
## 8658             14 years old   Male               9th grade     NA     NA
## 8659             15 years old   Male               9th grade   1.63  63.50
## 8660             14 years old Female               9th grade   1.68  53.98
## 8661             14 years old Female               9th grade   1.60  45.36
## 8662             15 years old Female               9th grade   1.75  61.24
## 8663             15 years old   Male               9th grade     NA     NA
## 8664             15 years old Female               9th grade     NA     NA
## 8665             15 years old   Male               9th grade     NA     NA
## 8666             15 years old Female               9th grade   1.68  56.70
## 8667             15 years old Female               9th grade     NA     NA
## 8668             15 years old Female               9th grade     NA     NA
## 8669             15 years old   Male               9th grade     NA     NA
## 8670             14 years old Female               9th grade   1.63  54.43
## 8671             15 years old   Male               9th grade   1.50  62.60
## 8672             15 years old   Male               9th grade     NA     NA
## 8673             15 years old   Male               9th grade   1.55  45.36
## 8674             15 years old Female               9th grade   1.60  54.43
## 8675             14 years old   Male               9th grade     NA     NA
## 8676             15 years old Female               9th grade   1.57  51.71
## 8677             14 years old   Male               9th grade   1.75  87.54
## 8678             14 years old   Male               9th grade   1.68  56.25
## 8679             14 years old Female               9th grade   1.60  74.84
## 8680             15 years old   Male               9th grade   1.73  58.97
## 8681             15 years old   Male               9th grade   1.83  76.20
## 8682             15 years old Female               9th grade   1.63  72.58
## 8683             14 years old   Male               9th grade   1.85 106.60
## 8684             15 years old Female               9th grade     NA     NA
## 8685             17 years old Female              12th grade   1.70  52.16
## 8686             17 years old Female              11th grade   1.65  76.66
## 8687    18 years old or older Female              11th grade     NA     NA
## 8688             16 years old   Male              10th grade     NA     NA
## 8689             16 years old   Male              11th grade   1.75  56.70
## 8690             17 years old Female              12th grade   1.65  61.24
## 8691             16 years old Female              11th grade   1.65 109.77
## 8692             16 years old   Male              10th grade   1.57  43.09
## 8693             16 years old   Male              11th grade   1.90  63.50
## 8694             17 years old Female              11th grade   1.63  83.92
## 8695             17 years old Female              11th grade     NA     NA
## 8696    18 years old or older Female              12th grade   1.65  65.77
## 8697             15 years old   Male              10th grade   1.73  56.70
## 8698             17 years old Female              11th grade   1.57  40.82
## 8699             16 years old Female              10th grade     NA     NA
## 8700             15 years old   Male              10th grade   1.70  96.62
## 8701             16 years old Female              11th grade   1.60  47.63
## 8702    18 years old or older Female              12th grade   1.52  56.70
## 8703             16 years old Female              10th grade   1.63  69.40
## 8704             16 years old Female              11th grade   1.70  63.50
## 8705             17 years old Female              12th grade   1.63  67.13
## 8706             16 years old   Male              10th grade   1.80 108.41
## 8707             17 years old   Male              11th grade   1.78 104.33
## 8708             16 years old Female              10th grade   1.52  56.70
## 8709             16 years old   Male              11th grade   1.68  52.16
## 8710             17 years old Female              12th grade   1.68  68.04
## 8711             17 years old Female              11th grade   1.55  55.79
## 8712             16 years old Female              11th grade   1.63  65.77
## 8713             15 years old Female              10th grade   1.50  50.35
## 8714             17 years old Female              11th grade   1.65  49.90
## 8715             16 years old Female              11th grade   1.68  45.36
## 8716             17 years old Female              12th grade   1.68  52.16
## 8717             16 years old Female              10th grade     NA     NA
## 8718             17 years old Female              11th grade   1.70 113.40
## 8719             15 years old   Male              10th grade   1.78  78.47
## 8720             17 years old Female              11th grade   1.55  71.22
## 8721    18 years old or older Female              12th grade   1.52  63.50
## 8722             16 years old   Male              10th grade   1.83 111.59
## 8723             17 years old Female              11th grade   1.68  72.58
## 8724             17 years old   Male              12th grade   1.80  68.04
## 8725             16 years old   Male              10th grade   1.83  79.38
## 8726             16 years old Female              11th grade   1.70 117.94
## 8727             16 years old Female              10th grade   1.70  55.34
## 8728             17 years old Female              11th grade   1.57  63.50
## 8729    18 years old or older Female              12th grade     NA     NA
## 8730             15 years old   Male              10th grade   1.83  61.24
## 8731    18 years old or older   Male              12th grade   1.83  88.45
## 8732             16 years old   Male              10th grade     NA     NA
## 8733    18 years old or older   Male              12th grade   1.63  92.99
## 8734             16 years old Female              10th grade   1.78  54.43
## 8735             17 years old   Male              11th grade   1.73 102.06
## 8736    18 years old or older   Male              12th grade   1.65  68.04
## 8737             16 years old   Male              10th grade   1.70  61.24
## 8738    18 years old or older   Male              12th grade   1.68 133.81
## 8739             17 years old   Male              11th grade   1.85  72.58
## 8740    18 years old or older   Male              12th grade   1.78  63.50
## 8741             17 years old Female              10th grade   1.63  86.18
## 8742             17 years old   Male              12th grade   1.85  88.45
## 8743             17 years old   Male              11th grade   1.88  92.99
## 8744             16 years old   Male              10th grade   1.70  83.01
## 8745             16 years old   Male              11th grade   1.73  63.50
## 8746             17 years old Female              12th grade   1.70  99.79
## 8747             15 years old Female              10th grade     NA     NA
## 8748    18 years old or older Female              12th grade   1.57  56.70
## 8749             16 years old   Male              11th grade   1.78  93.44
## 8750             16 years old   Male              10th grade   1.60  54.43
## 8751             16 years old   Male              11th grade   1.80  72.12
## 8752             17 years old   Male              12th grade   1.78  86.18
## 8753             16 years old   Male              10th grade   1.68  68.04
## 8754    18 years old or older Female              12th grade   1.57  83.46
## 8755             17 years old Female              11th grade   1.57  68.04
## 8756             16 years old   Male              10th grade   1.70  56.70
## 8757             17 years old Female              11th grade   1.60  63.50
## 8758             15 years old   Male              10th grade   1.80 112.95
## 8759    18 years old or older Female              12th grade   1.60  48.08
## 8760             17 years old   Male              11th grade   1.78  74.84
## 8761             16 years old   Male              10th grade   1.88 111.13
## 8762             13 years old   Male               9th grade     NA     NA
## 8763             17 years old   Male              12th grade   1.83 117.48
## 8764             16 years old   Male              10th grade     NA     NA
## 8765    18 years old or older   Male              12th grade   1.83  58.97
## 8766             17 years old Female              11th grade   1.63  54.43
## 8767             16 years old Female              10th grade   1.60  68.04
## 8768             17 years old   Male              11th grade   1.80  86.18
## 8769             17 years old Female              12th grade   1.63  97.52
## 8770    18 years old or older   Male              12th grade   1.83 127.01
## 8771             16 years old   Male              11th grade   1.85  70.31
## 8772             16 years old   Male              10th grade   1.70  63.50
## 8773             17 years old   Male              11th grade   1.68  56.70
## 8774             16 years old   Male              10th grade   1.68  58.51
## 8775    18 years old or older   Male              12th grade   1.90  63.50
## 8776             17 years old Female              11th grade   1.70  81.65
## 8777    18 years old or older   Male              12th grade   1.75  63.50
## 8778             16 years old Female              10th grade   1.73  49.90
## 8779             17 years old   Male              12th grade     NA     NA
## 8780             17 years old Female              11th grade   1.57  56.70
## 8781             16 years old Female              10th grade   1.68  68.95
## 8782             17 years old Female              11th grade   1.65  65.77
## 8783             16 years old   Male              10th grade   1.73  63.50
## 8784    18 years old or older   Male              12th grade   1.85  90.72
## 8785             17 years old Female              11th grade   1.57  44.45
## 8786             17 years old Female              12th grade   1.68  62.14
## 8787             17 years old Female              12th grade   1.57  47.63
## 8788             16 years old Female              10th grade   1.60  53.52
## 8789             17 years old Female              12th grade   1.55  60.78
## 8790             17 years old Female              11th grade   1.57  61.24
## 8791             17 years old   Male              11th grade   1.85  90.72
## 8792    18 years old or older   Male              12th grade   1.78  86.18
## 8793             16 years old Female              10th grade   1.65  58.97
## 8794    18 years old or older   Male              12th grade   1.73  56.70
## 8795             17 years old   Male              11th grade   1.70  69.85
## 8796             16 years old Female              10th grade   1.57  49.90
## 8797    18 years old or older   Male              12th grade   1.78  74.84
## 8798             17 years old   <NA>              12th grade     NA     NA
## 8799    18 years old or older Female              12th grade   1.63  65.77
## 8800    18 years old or older Female              12th grade   1.55  58.51
## 8801             17 years old Female              12th grade   1.57  45.81
## 8802             16 years old Female              11th grade   1.60  80.74
## 8803             17 years old   Male              11th grade   1.68  81.65
## 8804             17 years old   <NA>              11th grade     NA     NA
## 8805             16 years old   Male              11th grade   1.85  63.96
## 8806             17 years old Female              11th grade   1.68  56.25
## 8807             17 years old   Male              11th grade   1.83  70.31
## 8808             17 years old   Male              11th grade   1.70  65.32
## 8809             16 years old   Male              11th grade   1.80 136.08
## 8810    18 years old or older   Male              11th grade   1.80  88.45
## 8811             16 years old   Male              11th grade   1.90  72.58
## 8812    18 years old or older Female              11th grade   1.75  90.72
## 8813             17 years old   Male              11th grade   1.78  70.31
## 8814             17 years old Female              11th grade   1.73 112.95
## 8815             17 years old   Male              11th grade   1.85  97.52
## 8816             15 years old Female               9th grade   1.57  54.43
## 8817             15 years old Female               9th grade   1.70  68.04
## 8818             16 years old   Male              10th grade     NA     NA
## 8819             15 years old   Male               9th grade   1.83  69.85
## 8820             16 years old Female              10th grade   1.75 108.86
## 8821             16 years old   Male              10th grade   1.80 102.06
## 8822             16 years old Female              10th grade   1.63  49.90
## 8823             17 years old   Male              10th grade     NA     NA
## 8824             16 years old   Male               9th grade   1.68  70.31
## 8825             17 years old   Male              10th grade   1.75 113.40
## 8826             15 years old Female               9th grade   1.57  50.35
## 8827             15 years old Female              10th grade   1.60  49.90
## 8828             15 years old Female              10th grade   1.65  44.91
## 8829             16 years old Female              10th grade   1.57  63.50
## 8830             15 years old Female               9th grade   1.63  48.99
## 8831             16 years old Female              10th grade   1.57  52.16
## 8832             14 years old Female               9th grade   1.55  43.09
## 8833             17 years old   Male              10th grade   1.80  90.72
## 8834             17 years old   Male              11th grade   1.88 111.13
## 8835             16 years old Female              10th grade   1.73  61.24
## 8836             14 years old Female               9th grade   1.73  63.50
## 8837             15 years old Female               9th grade   1.68  49.90
## 8838             16 years old   Male              10th grade   1.63  47.63
## 8839             15 years old Female               9th grade   1.60  73.48
## 8840             16 years old Female              10th grade   1.60  44.00
## 8841             15 years old Female               9th grade   1.75  52.16
## 8842             16 years old Female              10th grade   1.63  55.34
## 8843             14 years old   Male               9th grade   1.70  91.63
## 8844             17 years old Female              10th grade   1.65  63.50
## 8845             14 years old   Male               9th grade   1.83 106.60
## 8846             16 years old Female              10th grade   1.63  49.90
## 8847             16 years old Female              10th grade   1.63  78.47
## 8848             17 years old Female              10th grade   1.60  88.45
## 8849    18 years old or older   Male              12th grade   1.90  99.79
## 8850             17 years old   Male              11th grade   1.75  86.18
## 8851    18 years old or older Female              11th grade   1.60  90.72
## 8852             16 years old Female              11th grade   1.68  58.97
## 8853             17 years old   Male              11th grade   1.90  65.77
## 8854             16 years old Female              10th grade   1.60  52.62
## 8855    18 years old or older   Male              12th grade   1.70  74.84
## 8856             16 years old   Male              10th grade   1.60 104.33
## 8857    18 years old or older Female              12th grade   1.70  72.58
## 8858             15 years old Female              10th grade   1.60  49.90
## 8859    18 years old or older   Male              11th grade   1.73  88.91
## 8860             16 years old Female              10th grade   1.75  86.18
## 8861    18 years old or older Female              12th grade   1.60  89.81
## 8862             17 years old Female              10th grade   1.78 106.60
## 8863             17 years old Female              11th grade   1.57  58.97
## 8864    18 years old or older Female              12th grade   1.68  61.69
## 8865    18 years old or older Female              11th grade   1.55  56.70
## 8866             16 years old Female              10th grade   1.57  56.70
## 8867             17 years old Female              11th grade   1.57  54.43
## 8868             16 years old   Male              10th grade   1.75  68.04
## 8869             17 years old Female              11th grade   1.57  61.24
## 8870             16 years old   Male              10th grade   1.65  68.04
## 8871             16 years old Female              10th grade   1.63  47.63
## 8872    18 years old or older Female              12th grade   1.60  48.99
## 8873             17 years old   Male              11th grade   1.63  56.70
## 8874             17 years old   Male              10th grade   1.70  86.18
## 8875             15 years old Female              10th grade   1.57  49.90
## 8876             16 years old Female              10th grade   1.55  49.90
## 8877    18 years old or older   Male              12th grade   1.85  99.79
## 8878             16 years old Female              10th grade   1.55  56.70
## 8879             16 years old   Male              10th grade   1.83  68.04
## 8880    18 years old or older   Male              12th grade   1.85  79.38
## 8881             16 years old   Male              10th grade   1.68  54.43
## 8882             16 years old   Male              10th grade   1.78  79.38
## 8883             17 years old Female              11th grade   1.70  67.13
## 8884             17 years old Female              11th grade   1.78  85.28
## 8885             17 years old Female              11th grade   1.55  48.99
## 8886             17 years old Female              11th grade   1.60  81.65
## 8887             15 years old Female              10th grade   1.65  68.04
## 8888             16 years old Female              10th grade   1.60  51.71
## 8889             15 years old   Male               9th grade   1.75  72.58
## 8890             16 years old Female              11th grade   1.63  60.78
## 8891             17 years old Female              12th grade   1.57  74.84
## 8892             14 years old Female               9th grade   1.60  65.77
## 8893             17 years old Female              11th grade   1.68  97.52
## 8894             16 years old   Male              10th grade   1.90  94.35
## 8895             17 years old   Male              10th grade   1.75  74.84
## 8896             15 years old   Male               9th grade   1.80  67.13
## 8897             16 years old Female              11th grade   1.73  55.34
## 8898    18 years old or older   Male              12th grade   1.78  65.77
## 8899    18 years old or older Female              12th grade   1.68  61.24
## 8900             15 years old Female               9th grade   1.65  52.16
## 8901             17 years old Female              11th grade   1.57  54.89
## 8902             15 years old   Male              10th grade   1.75  61.24
## 8903             14 years old Female               9th grade   1.63  56.70
## 8904    18 years old or older   Male              12th grade   1.70  67.13
## 8905             17 years old   Male              12th grade   1.88  68.04
## 8906             15 years old Female               9th grade   1.60  63.50
## 8907             17 years old   Male              11th grade   2.01 129.28
## 8908             16 years old   Male              10th grade   1.80  72.58
## 8909             16 years old   Male              10th grade   1.78  77.11
## 8910             15 years old Female               9th grade   1.63  56.70
## 8911             17 years old   <NA>              11th grade     NA     NA
## 8912    18 years old or older Female              12th grade   1.60  56.70
## 8913             15 years old Female               9th grade   1.57  48.08
## 8914             17 years old Female              11th grade   1.63  99.79
## 8915             16 years old Female              10th grade   1.70  60.78
## 8916             16 years old Female              10th grade   1.73  68.04
## 8917             15 years old Female               9th grade   1.63  51.71
## 8918             16 years old Female              11th grade   1.68  66.23
## 8919    18 years old or older Female              12th grade   1.78  68.04
## 8920             15 years old   Male               9th grade   1.78  65.77
## 8921             17 years old Female              11th grade   1.70 117.03
## 8922             15 years old Female              10th grade   1.55  72.58
## 8923             17 years old   Male              11th grade   1.80  86.18
## 8924    18 years old or older   Male              12th grade   1.88 117.94
## 8925             14 years old Female               9th grade   1.70  52.16
## 8926             17 years old Female              11th grade   1.65  52.16
## 8927             16 years old Female              10th grade   1.60  47.63
## 8928             16 years old   Male              10th grade   1.70  68.04
## 8929             15 years old Female               9th grade   1.63  54.43
## 8930             17 years old   Male              11th grade   1.83 135.63
## 8931    18 years old or older Female              12th grade   1.63 115.67
## 8932    18 years old or older   Male              12th grade   1.75  54.43
## 8933             17 years old Female              11th grade   1.78  86.18
## 8934             16 years old Female              10th grade   1.55  56.70
## 8935             16 years old   Male              10th grade   1.83  74.84
## 8936             14 years old   Male               9th grade   1.78  56.70
## 8937             17 years old   Male              11th grade   1.78  77.11
## 8938             17 years old Female              12th grade   1.68  69.40
## 8939    18 years old or older   Male              12th grade   1.78  84.37
## 8940             15 years old   Male               9th grade   1.90  94.80
## 8941             17 years old   Male              11th grade   1.96  81.65
## 8942             15 years old   Male              10th grade   1.90  86.18
## 8943             15 years old Female              10th grade   1.68  74.84
## 8944             15 years old   Male               9th grade   1.65  61.24
## 8945    18 years old or older Female              12th grade   1.60  49.90
## 8946    18 years old or older   Male              12th grade   1.83  71.67
## 8947             15 years old Female               9th grade   1.52  78.02
## 8948             17 years old Female              11th grade     NA     NA
## 8949             16 years old Female              10th grade   1.70  59.42
## 8950             14 years old Female               9th grade   1.60  44.00
## 8951             15 years old Female              10th grade   1.75  53.98
## 8952             15 years old Female               9th grade   1.52 106.60
## 8953    18 years old or older Female              11th grade   1.78 154.22
## 8954    18 years old or older   Male              12th grade   1.88  87.54
## 8955             15 years old Female               9th grade   1.65  70.76
## 8956             17 years old Female              11th grade   1.68  58.97
## 8957             16 years old Female              10th grade   1.57  43.09
## 8958             16 years old   Male              10th grade   1.68  49.90
## 8959             15 years old   Male               9th grade   1.63  72.58
## 8960             16 years old   Male              11th grade   1.83  70.31
## 8961             15 years old Female               9th grade   1.63  54.43
## 8962    18 years old or older Female              11th grade   1.55  49.44
## 8963             16 years old Female              10th grade   1.57  47.63
## 8964             15 years old Female              10th grade   1.70  77.11
## 8965             15 years old   Male               9th grade   1.68  58.06
## 8966             17 years old Female              11th grade     NA     NA
## 8967             17 years old   Male              12th grade   1.68  72.58
## 8968    18 years old or older   Male              12th grade   1.80  95.26
## 8969             15 years old Female               9th grade   1.63  58.97
## 8970             16 years old Female              10th grade   1.52  47.63
## 8971             17 years old Female              10th grade   1.57  72.58
## 8972             16 years old Female               9th grade   1.50  57.15
## 8973             17 years old   Male              11th grade   1.68 103.42
## 8974             16 years old Female              11th grade   1.70  58.97
## 8975             15 years old Female              10th grade   1.60  49.90
## 8976             17 years old   Male              11th grade   1.83  75.75
## 8977    18 years old or older   Male              12th grade   1.68  63.50
## 8978             17 years old   Male              12th grade   1.90  61.24
## 8979             15 years old   Male               9th grade   1.70  74.84
## 8980             17 years old   Male              11th grade   1.85  92.99
## 8981             16 years old Female              10th grade   1.63  65.32
## 8982             16 years old Female              10th grade   1.75  81.65
## 8983             14 years old Female               9th grade   1.52  54.43
## 8984             17 years old Female              11th grade   1.55  61.24
## 8985             17 years old   Male              12th grade   1.60  90.72
## 8986             15 years old Female               9th grade   1.60  49.90
## 8987             17 years old Female              11th grade   1.57  57.61
## 8988             16 years old Female              10th grade   1.60  61.24
## 8989             16 years old   Male              10th grade   1.85  65.77
## 8990             15 years old   Male              10th grade   1.70  72.58
## 8991             17 years old Female              11th grade   1.63  54.43
## 8992    18 years old or older Female              12th grade   1.73 130.64
## 8993    18 years old or older Female              12th grade   1.57  76.66
## 8994             17 years old   Male              11th grade   1.80  56.70
## 8995             15 years old Female              10th grade   1.68  81.19
## 8996             16 years old Female              10th grade   1.60  57.61
## 8997             15 years old   Male               9th grade   1.75  69.40
## 8998    18 years old or older   Male              11th grade   1.85 106.14
## 8999             17 years old   Male              12th grade   1.73  74.84
## 9000    18 years old or older   Male              12th grade   1.73 120.20
## 9001             14 years old Female               9th grade     NA     NA
## 9002             16 years old Female              11th grade   1.73  61.24
## 9003             15 years old Female              10th grade   1.63  49.90
## 9004             15 years old Female              10th grade   1.73  54.89
## 9005             15 years old Female               9th grade   1.57  60.78
## 9006             17 years old   Male              11th grade   1.80  83.92
## 9007    18 years old or older Female              12th grade   1.63  68.04
## 9008    18 years old or older Female              12th grade   1.63  54.89
## 9009             14 years old Female               9th grade   1.60  58.97
## 9010             17 years old   Male              11th grade   1.73  76.20
## 9011             16 years old Female              10th grade   1.65  47.63
## 9012             17 years old   Male              11th grade   1.80  77.11
## 9013             15 years old Female               9th grade   1.63  95.26
## 9014             16 years old   Male              11th grade   1.83  76.66
## 9015    18 years old or older Female              12th grade   1.40  46.72
## 9016    18 years old or older   Male              12th grade   1.75  97.52
## 9017             14 years old   Male               9th grade   1.75  49.90
## 9018             16 years old   Male              11th grade   1.88  81.65
## 9019             15 years old Female              10th grade   1.63  65.77
## 9020             15 years old Female              10th grade   1.63  54.43
## 9021             15 years old   Male               9th grade   1.85  87.54
## 9022             15 years old   Male               9th grade   1.57  40.82
## 9023             16 years old   Male              11th grade   1.70  62.60
## 9024             15 years old Female              10th grade   1.63  59.88
## 9025             15 years old Female              10th grade   1.73  58.97
## 9026             15 years old   Male               9th grade   1.65  61.24
## 9027             17 years old   Male              11th grade   2.03 114.31
## 9028             17 years old   Male              12th grade   1.73  90.72
## 9029             17 years old   Male              12th grade   1.83  74.84
## 9030             16 years old   Male              10th grade   1.75  79.38
## 9031             16 years old   Male              11th grade   1.78  78.47
## 9032             17 years old   Male              12th grade   1.85  81.65
## 9033             17 years old   Male              11th grade   1.83 106.60
## 9034    18 years old or older Female              12th grade   1.60  49.90
## 9035    18 years old or older   Male              12th grade   1.83 104.33
## 9036    18 years old or older   Male              11th grade   1.80  66.68
## 9037    18 years old or older   Male              12th grade   1.75  70.31
## 9038    18 years old or older Female              12th grade   1.73  63.50
## 9039             16 years old Female              11th grade   1.60  54.43
## 9040             17 years old   Male              12th grade   1.85  67.13
## 9041    18 years old or older Female              12th grade   1.55  93.90
## 9042             17 years old   Male              11th grade   1.88  68.04
## 9043             17 years old Female              12th grade   1.73  86.18
## 9044    18 years old or older   Male              12th grade     NA     NA
## 9045    18 years old or older   Male              11th grade   1.80 104.33
## 9046             17 years old   Male              12th grade   1.83  70.31
## 9047             17 years old Female              12th grade   1.63  65.77
## 9048             17 years old   Male              12th grade   1.83  70.31
## 9049             17 years old   Male              11th grade   1.80 139.71
## 9050    18 years old or older Female              12th grade   1.55  38.56
## 9051             17 years old Female              11th grade   1.65  81.65
## 9052    18 years old or older   Male              12th grade   1.80  79.38
## 9053             17 years old   Male              12th grade   1.83  74.84
## 9054             16 years old   Male              11th grade   1.78  65.77
## 9055    18 years old or older Female              12th grade   1.65  54.43
## 9056    18 years old or older   Male              12th grade   1.78  67.13
## 9057             17 years old Female              11th grade   1.57  58.97
## 9058             17 years old Female              12th grade   1.65 127.01
## 9059             16 years old   Male              11th grade   1.78  82.10
## 9060    18 years old or older   Male              12th grade   1.90  76.20
## 9061    18 years old or older Female              12th grade   1.63  92.99
## 9062             17 years old   Male              11th grade   1.88  81.65
## 9063    18 years old or older Female              12th grade   1.60  52.16
## 9064             17 years old Female              11th grade     NA     NA
## 9065             17 years old   Male              12th grade   1.60  54.43
## 9066             17 years old   Male              12th grade   1.83  86.18
## 9067    18 years old or older   Male              12th grade   1.90 103.87
## 9068             17 years old Female              12th grade   1.63  65.77
## 9069    18 years old or older Female              12th grade   1.57  58.06
## 9070    18 years old or older   Male              12th grade   1.78  71.22
## 9071             17 years old   Male              12th grade   1.88 122.02
## 9072             16 years old Female              10th grade   1.63  45.36
## 9073             16 years old Female              11th grade   1.63  70.31
## 9074             15 years old   Male              10th grade   1.85  72.58
## 9075             15 years old   Male              10th grade   1.70  56.70
## 9076             15 years old   Male              10th grade   1.70  53.52
## 9077             17 years old   Male              11th grade   1.90  97.52
## 9078             15 years old Female              10th grade   1.70  55.79
## 9079             17 years old Female              11th grade   1.70  75.75
## 9080             16 years old   Male              10th grade   1.78  72.58
## 9081             16 years old   Male              10th grade   1.83  71.67
## 9082             16 years old   Male              10th grade   1.90 113.40
## 9083             17 years old   Male              11th grade   1.75  63.50
## 9084             17 years old   Male              11th grade   1.78  88.45
## 9085    18 years old or older Female              11th grade   1.65  54.43
## 9086             17 years old Female              10th grade   1.60  70.76
## 9087             14 years old   Male               9th grade   1.73  79.38
## 9088             15 years old Female               9th grade   1.55  58.06
## 9089    18 years old or older   Male              11th grade   1.78  58.97
## 9090             15 years old   Male              10th grade   1.78  61.24
## 9091             14 years old Female               9th grade   1.52  56.70
## 9092             16 years old Female              10th grade   1.55  54.43
## 9093             17 years old Female              10th grade   1.65  76.20
## 9094             15 years old Female               9th grade   1.75  56.70
## 9095             17 years old   Male              11th grade   1.78  65.77
## 9096             15 years old Female              10th grade   1.75  77.11
## 9097             15 years old Female               9th grade   1.68  90.72
## 9098             17 years old Female              11th grade   1.57  44.45
## 9099             16 years old Female              10th grade   1.57  58.51
## 9100    18 years old or older   Male              11th grade   1.65  61.24
## 9101             15 years old   Male              10th grade   1.96 105.69
## 9102             15 years old Female              10th grade   1.60  68.04
## 9103             15 years old Female              10th grade   1.60  58.97
## 9104             16 years old Female              11th grade   1.60  52.16
## 9105             16 years old Female              10th grade   1.52  62.60
## 9106             14 years old Female               9th grade   1.70  68.04
## 9107             17 years old Female              10th grade   1.50  40.82
## 9108             17 years old   Male              11th grade   1.80  92.99
## 9109             16 years old Female              10th grade   1.52  61.24
## 9110             16 years old Female              10th grade   1.60  58.97
## 9111             16 years old Female              10th grade   1.65  81.65
## 9112             15 years old   Male               9th grade   1.83  85.28
## 9113             15 years old   Male               9th grade   1.83  74.84
## 9114             15 years old Female               9th grade   1.70  63.50
## 9115             15 years old Female               9th grade   1.52  45.36
## 9116             14 years old   Male               9th grade   1.65  40.82
## 9117             15 years old   Male               9th grade   1.65  68.04
## 9118             15 years old   Male               9th grade   1.83  52.16
## 9119             14 years old Female               9th grade   1.60  56.70
## 9120             15 years old   Male               9th grade   1.78  61.24
## 9121             15 years old   Male               9th grade   1.73  67.13
## 9122             15 years old   Male               9th grade   1.70  45.36
## 9123             15 years old Female               9th grade   1.65  60.78
## 9124             15 years old Female               9th grade   1.60  54.43
## 9125             16 years old   Male               9th grade   1.75  79.38
## 9126             16 years old Female               9th grade   1.63  44.45
## 9127             15 years old   Male               9th grade   1.63  43.09
## 9128             14 years old Female               9th grade   1.63  63.50
## 9129             15 years old   Male               9th grade   1.60  72.58
## 9130             17 years old   Male              11th grade   1.78  87.09
## 9131             15 years old   Male               9th grade   1.75  55.79
## 9132             17 years old Female              11th grade   1.63  68.04
## 9133             17 years old   Male              11th grade   1.63  78.02
## 9134             16 years old Female              10th grade   1.65  63.50
## 9135             15 years old   Male               9th grade     NA     NA
## 9136             14 years old Female               9th grade   1.65  62.60
## 9137             16 years old   Male              11th grade   1.73  74.84
## 9138    18 years old or older   Male              11th grade   1.80  71.22
## 9139             16 years old   Male              10th grade   1.80 106.60
## 9140             16 years old   Male               9th grade   1.80 109.77
## 9141    18 years old or older Female              11th grade   1.83  83.92
## 9142             17 years old   Male              10th grade   1.70  90.72
## 9143             15 years old   Male               9th grade   1.70  58.97
## 9144             16 years old   Male              10th grade   1.93  89.81
## 9145             15 years old Female               9th grade   1.63  62.60
## 9146             15 years old Female               9th grade   1.55  46.27
## 9147             17 years old Female              11th grade     NA     NA
## 9148             16 years old   Male              10th grade   1.83 145.15
## 9149             15 years old   Male               9th grade   1.80  63.50
## 9150             17 years old   Male              10th grade     NA     NA
## 9151             16 years old   Male              10th grade   1.90  95.26
## 9152             16 years old Female              10th grade   1.63  65.77
## 9153             14 years old   Male               9th grade   1.57  36.29
## 9154             16 years old Female               9th grade   1.63  78.47
## 9155             16 years old Female              11th grade   1.63  50.80
## 9156             16 years old   Male              10th grade   1.78  65.77
## 9157             15 years old Female               9th grade   1.68  65.32
## 9158             17 years old   Male              11th grade   1.83  84.82
## 9159             15 years old Female               9th grade   1.68  44.45
## 9160             16 years old   Male              11th grade   1.88  81.65
## 9161             15 years old Female               9th grade   1.88  81.65
## 9162    18 years old or older Female              11th grade   1.63  68.04
## 9163             17 years old   Male              11th grade   1.85  68.04
## 9164             15 years old Female               9th grade   1.70  63.50
## 9165             16 years old   Male              11th grade   1.80  65.77
## 9166             15 years old   Male               9th grade   1.68  56.70
## 9167             15 years old Female               9th grade   1.55  43.09
## 9168             17 years old   Male              11th grade   1.80  82.56
## 9169             16 years old   Male               9th grade   1.80  63.50
## 9170             17 years old   Male              11th grade   1.70  69.85
## 9171             15 years old Female               9th grade   1.78  68.04
## 9172             16 years old Female              11th grade   1.55  54.43
## 9173             15 years old Female              10th grade   1.63  68.04
## 9174             15 years old Female               9th grade     NA     NA
## 9175             16 years old Female              11th grade     NA     NA
## 9176             15 years old Female               9th grade   1.57  50.35
## 9177             17 years old   Male              11th grade   1.78  70.31
## 9178             16 years old   Male              10th grade   1.78 104.33
## 9179             17 years old   Male              12th grade     NA     NA
## 9180             17 years old Female              11th grade   1.52  46.72
## 9181             17 years old Female              11th grade   1.52  72.12
## 9182             16 years old   Male              10th grade   1.88  81.65
## 9183             14 years old Female               9th grade   1.57  46.27
## 9184             17 years old   Male              11th grade   1.90 136.08
## 9185             14 years old Female               9th grade   1.65  54.43
## 9186             16 years old   Male              11th grade   1.75  59.88
## 9187             16 years old Female              11th grade   1.70  65.77
## 9188             17 years old Female              10th grade   1.75  68.95
## 9189             14 years old Female               9th grade   1.57  43.09
## 9190             15 years old   Male              10th grade   1.78  74.84
## 9191             14 years old Female               9th grade   1.65  56.70
## 9192             17 years old Female              11th grade   1.57  54.43
## 9193             15 years old   Male               9th grade   1.78  63.50
## 9194             15 years old   Male               9th grade   1.78  65.77
## 9195             14 years old   Male               9th grade   1.75 119.30
## 9196             16 years old   Male              11th grade   1.93  95.26
## 9197             17 years old Female              11th grade   1.57  47.17
## 9198             17 years old   Male              10th grade     NA     NA
## 9199             15 years old Female               9th grade   1.52  70.31
## 9200             14 years old Female               9th grade   1.70  69.40
## 9201             16 years old   Male               9th grade   1.85 110.22
## 9202             14 years old   Male               9th grade   1.80  72.58
## 9203             17 years old Female              12th grade   1.73 113.40
## 9204             17 years old   Male              12th grade   1.98 119.30
## 9205             15 years old   Male              10th grade   1.73  83.92
## 9206             15 years old Female              10th grade   1.60  68.95
## 9207             17 years old   Male              12th grade   1.73  83.92
## 9208    18 years old or older Female              12th grade   1.65  81.65
## 9209             16 years old   Male              10th grade     NA     NA
## 9210             17 years old   Male              12th grade   1.80  96.62
## 9211             16 years old   Male              10th grade   1.73  83.92
## 9212    18 years old or older Female              12th grade   1.63  97.52
## 9213             15 years old Female              10th grade   1.65  54.89
## 9214             15 years old   Male              10th grade   1.68  52.16
## 9215             15 years old   Male              10th grade   1.78  77.57
## 9216    18 years old or older   Male              12th grade   1.78  63.50
## 9217    18 years old or older   Male              12th grade   1.80 104.33
## 9218             16 years old   Male              10th grade   1.57  61.24
## 9219             17 years old   Male              12th grade   1.88  90.72
## 9220             15 years old   Male              10th grade   1.78  55.34
## 9221    18 years old or older   Male              12th grade   1.73  90.72
## 9222    18 years old or older   Male              12th grade   1.75  72.58
## 9223             16 years old   Male              10th grade   1.90  83.01
## 9224    18 years old or older   Male              12th grade   1.90  79.83
## 9225             16 years old   Male              10th grade   1.90  92.99
## 9226    18 years old or older Female              12th grade   1.65  83.92
## 9227             15 years old   Male              10th grade   1.83  86.18
## 9228    18 years old or older Female              12th grade   1.65  88.00
## 9229             17 years old   Male              12th grade   1.83 122.47
## 9230             16 years old   Male              10th grade     NA     NA
## 9231    18 years old or older Female              12th grade   1.70  67.13
## 9232             16 years old   Male              10th grade   1.83  88.45
## 9233    18 years old or older Female              12th grade   1.63 108.86
## 9234    18 years old or older Female              12th grade   1.57  72.58
## 9235             16 years old Female              10th grade   1.57  61.24
## 9236             17 years old   Male              12th grade   1.73  79.83
## 9237             16 years old   Male              10th grade   1.83  67.13
## 9238    18 years old or older   Male              12th grade   1.80  72.58
## 9239    18 years old or older   Male              12th grade   1.85 102.06
## 9240             16 years old Female              10th grade   1.65  81.65
## 9241             16 years old   Male              10th grade   1.98  88.45
## 9242             14 years old Female               9th grade   1.63  54.43
## 9243             14 years old   Male               9th grade   1.65  61.24
## 9244             16 years old   Male              10th grade   1.70  56.70
## 9245             15 years old   Male               9th grade   1.83  65.77
## 9246    18 years old or older Female              12th grade   1.65 104.33
## 9247             16 years old   Male              10th grade   1.90  72.58
## 9248    18 years old or older   Male              12th grade   1.90  74.84
## 9249             16 years old   Male              10th grade   1.75  82.56
## 9250             15 years old Female               9th grade   1.57  61.24
## 9251             17 years old   Male              12th grade   1.80  70.31
## 9252    18 years old or older   Male              11th grade   1.73  83.92
## 9253             16 years old Female              10th grade   1.55  43.09
## 9254    18 years old or older   Male              12th grade   1.60  63.50
## 9255             16 years old Female              10th grade   1.50  54.43
## 9256             17 years old   Male              12th grade   1.68  94.80
## 9257             14 years old   Male               9th grade   1.65  90.72
## 9258    18 years old or older Female              12th grade   1.55  45.36
## 9259    18 years old or older   Male              12th grade   1.75  63.05
## 9260             17 years old   Male              11th grade   1.85  63.50
## 9261             17 years old Female              11th grade   1.68  50.80
## 9262    18 years old or older   Male              12th grade   1.80  86.18
## 9263             17 years old   Male              11th grade   1.80  68.04
## 9264             15 years old   Male              10th grade   1.65  88.45
## 9265             15 years old Female               9th grade   1.78  81.65
## 9266             17 years old   Male              12th grade   1.73  55.34
## 9267             17 years old   Male              12th grade   1.78  70.76
## 9268             15 years old   Male              10th grade   1.83  81.65
## 9269             14 years old Female               9th grade     NA     NA
## 9270             17 years old Female              12th grade   1.55  63.50
## 9271             17 years old   Male              11th grade   1.68  60.78
## 9272             15 years old   Male               9th grade   1.78  68.04
## 9273             17 years old Female              12th grade   1.57  52.16
## 9274             17 years old   Male              11th grade   1.88  97.52
## 9275             15 years old   Male               9th grade   1.78  69.85
## 9276    18 years old or older Female              12th grade   1.63  54.43
## 9277             16 years old Female              11th grade   1.63  54.43
## 9278             15 years old   Male              10th grade   1.83  90.72
## 9279             15 years old Female               9th grade     NA     NA
## 9280    18 years old or older   Male              12th grade   1.80  49.90
## 9281             17 years old   Male              11th grade   1.75  54.43
## 9282             16 years old   Male              10th grade   1.78  61.24
## 9283             17 years old Female              12th grade   1.57  53.98
## 9284             17 years old Female              11th grade   1.60  43.09
## 9285             15 years old   Male              10th grade   1.85  72.58
## 9286             15 years old Female               9th grade     NA     NA
## 9287    18 years old or older Female              12th grade   1.60  53.98
## 9288             17 years old   Male              11th grade   1.75  77.11
## 9289             15 years old   Male              10th grade   1.70  61.24
## 9290             15 years old   Male               9th grade   1.70  86.18
## 9291    18 years old or older   Male              12th grade   1.73  81.65
## 9292             17 years old   Male              11th grade   1.83 106.60
## 9293             16 years old Female              10th grade   1.55  65.77
## 9294             14 years old   Male               9th grade   1.60  68.04
## 9295             15 years old   Male              10th grade   1.75  68.04
## 9296             14 years old   Male               9th grade   1.75 102.06
## 9297             15 years old Female              10th grade     NA     NA
## 9298             14 years old   Male               9th grade   1.75 102.06
## 9299             17 years old Female              12th grade   1.57  63.50
## 9300             17 years old   Male              11th grade   1.70  81.65
## 9301             15 years old Female              10th grade   1.50  44.00
## 9302             15 years old   Male               9th grade   1.65  70.31
## 9303             17 years old Female              12th grade   1.73  58.97
## 9304             16 years old   Male              11th grade   1.78  88.45
## 9305             16 years old   Male              10th grade   1.78  61.24
## 9306             14 years old Female               9th grade     NA     NA
## 9307             17 years old   Male              12th grade   1.78  90.72
## 9308             17 years old   Male              11th grade   1.68  86.18
## 9309             16 years old Female              10th grade   1.83  83.92
## 9310             14 years old   Male               9th grade   1.78 119.30
## 9311             17 years old Female              12th grade     NA     NA
## 9312             17 years old   Male              11th grade   1.83  90.72
## 9313             17 years old   Male              12th grade   1.85 122.47
## 9314             17 years old   Male              11th grade   1.93  90.72
## 9315             17 years old Female              12th grade     NA     NA
## 9316             16 years old Female              11th grade   1.60  58.97
## 9317             15 years old   Male               9th grade     NA     NA
## 9318    18 years old or older   Male              12th grade   1.80  72.58
## 9319             16 years old Female              11th grade   1.73  58.97
## 9320    18 years old or older   Male              12th grade   1.83  95.26
## 9321             16 years old Female              11th grade   1.68  65.77
## 9322             15 years old Female               9th grade   1.55  54.43
## 9323    18 years old or older Female              12th grade   1.63  49.90
## 9324             17 years old Female              12th grade   1.47  46.72
## 9325             15 years old   Male              10th grade   1.78  80.74
## 9326             17 years old   Male              11th grade   1.78  68.04
## 9327             14 years old   Male               9th grade   1.63  58.97
## 9328             17 years old   Male              12th grade   1.85  68.04
## 9329             15 years old Female              10th grade   1.63  56.70
## 9330             16 years old   Male              11th grade   1.80  63.50
## 9331             14 years old Female               9th grade   1.60  53.98
## 9332             16 years old   Male              10th grade   1.88  81.65
## 9333             17 years old   Male              11th grade   1.75  67.13
## 9334             14 years old   Male               9th grade   1.90 131.09
## 9335             17 years old   Male              12th grade     NA     NA
## 9336             17 years old Female              12th grade   1.68  56.70
## 9337             16 years old   Male              10th grade   1.83  63.50
## 9338             17 years old   Male              11th grade   1.80 104.33
## 9339             17 years old Female              12th grade   1.60  54.43
## 9340             15 years old   Male              10th grade   1.75  56.70
## 9341             16 years old Female              11th grade   1.68  68.04
## 9342             16 years old   Male              10th grade   1.75  71.67
## 9343    18 years old or older Female              12th grade   1.60  49.90
## 9344             16 years old   Male              10th grade   1.90  79.38
## 9345             17 years old Female              11th grade   1.60  52.16
## 9346             15 years old Female               9th grade   1.65  86.18
## 9347    18 years old or older   Male              12th grade   1.70  68.04
## 9348             16 years old   Male              11th grade   1.80  73.48
## 9349             15 years old   Male               9th grade   1.68  55.79
## 9350    18 years old or older Female              12th grade     NA     NA
## 9351             14 years old   Male               9th grade   1.78  63.50
## 9352    18 years old or older   Male              12th grade   1.85  70.31
## 9353             17 years old Female              12th grade   1.52  49.90
## 9354             17 years old   Male              11th grade   1.83 100.70
## 9355             15 years old   Male              10th grade   1.63  47.63
## 9356             17 years old   Male              11th grade   1.70  66.68
## 9357             16 years old Female               9th grade   1.70  59.88
## 9358    18 years old or older Female              12th grade   1.75  63.50
## 9359             16 years old Female              10th grade   1.47  35.38
## 9360             16 years old Female              11th grade   1.73  52.62
## 9361             15 years old Female               9th grade   1.45  41.73
## 9362             17 years old Female              12th grade   1.57  52.16
## 9363             15 years old Female              10th grade   1.65  55.34
## 9364             16 years old   Male              11th grade   1.83 102.06
## 9365             15 years old Female               9th grade   1.65  95.26
## 9366             17 years old   Male              12th grade   1.83  58.97
## 9367             17 years old   <NA>              11th grade     NA     NA
## 9368             14 years old Female               9th grade     NA     NA
## 9369             17 years old   Male              12th grade   1.73  77.11
## 9370    18 years old or older   Male              12th grade   1.83  79.38
## 9371             17 years old   Male              12th grade   1.75  49.90
## 9372             16 years old Female              10th grade   1.70  81.65
## 9373             17 years old   Male              11th grade   1.68  73.94
## 9374             15 years old   Male               9th grade   1.68  52.16
## 9375             17 years old Female              12th grade   1.68  54.43
## 9376             14 years old   Male               9th grade     NA     NA
## 9377             17 years old Female              12th grade   1.68  63.50
## 9378             16 years old Female              10th grade   1.55  35.38
## 9379             16 years old Female              11th grade   1.65  63.50
## 9380             15 years old   Male               9th grade   1.63  53.07
## 9381    18 years old or older Female              12th grade   1.50  47.63
## 9382             15 years old   Male              10th grade   1.60  47.63
## 9383             16 years old Female              11th grade   1.55  52.16
## 9384             15 years old   Male               9th grade   1.68  75.75
## 9385             15 years old   Male               9th grade   1.68  94.35
## 9386    18 years old or older Female              12th grade   1.63  58.97
## 9387             16 years old   Male              10th grade   1.85  72.58
## 9388             16 years old   Male              11th grade   1.80  52.16
## 9389             14 years old Female               9th grade     NA     NA
## 9390    18 years old or older Female              12th grade   1.55  63.50
## 9391             16 years old   Male              10th grade   1.73  45.36
## 9392             17 years old   Male              11th grade   1.80  92.99
## 9393             15 years old   Male               9th grade   1.83 103.42
## 9394    18 years old or older   Male              11th grade   1.70  58.06
## 9395             14 years old   Male               9th grade   1.70  71.22
## 9396             17 years old   Male              12th grade   1.78  61.24
## 9397    18 years old or older Female              12th grade   1.52  58.97
## 9398             15 years old   Male               9th grade   1.78  77.11
## 9399             17 years old Female              12th grade   1.63  58.97
## 9400             17 years old Female              12th grade   1.45  44.45
## 9401             17 years old Female              11th grade   1.60  63.96
## 9402             16 years old Female               9th grade   1.63  83.46
## 9403             14 years old Female               9th grade     NA     NA
## 9404             15 years old Female               9th grade   1.50  64.86
## 9405    18 years old or older   Male              12th grade   1.80  72.58
## 9406             17 years old   Male              11th grade   1.70  68.04
## 9407             17 years old Female              12th grade   1.73  98.88
## 9408             16 years old Female              11th grade   1.57  46.27
## 9409             16 years old   Male               9th grade   1.73  72.58
## 9410             15 years old Female               9th grade   1.57  70.31
## 9411             15 years old   Male              10th grade   1.80  78.47
## 9412    18 years old or older Female              12th grade   1.73  81.65
## 9413             17 years old Female              12th grade     NA     NA
## 9414             16 years old Female              11th grade   1.60  81.65
## 9415             16 years old   Male              10th grade   1.88  81.65
## 9416             14 years old Female               9th grade   1.35  56.70
## 9417             15 years old   Male              10th grade   1.65  58.97
## 9418             16 years old Female              11th grade   1.60  87.09
## 9419    18 years old or older   Male              12th grade   1.73  63.50
## 9420             17 years old   Male              11th grade   1.78 102.06
## 9421             15 years old   Male               9th grade   1.73  99.79
## 9422             14 years old   Male               9th grade   1.83  97.98
## 9423             16 years old Female              10th grade   1.50  62.60
## 9424    18 years old or older   Male              12th grade   1.80  63.50
## 9425             17 years old Female              11th grade   1.63  68.04
## 9426             17 years old   Male              12th grade   1.73  72.12
## 9427             16 years old   Male              11th grade   1.85  63.50
## 9428             15 years old Female               9th grade   1.63  61.24
## 9429             15 years old   Male               9th grade   1.78  81.65
## 9430             17 years old Female              10th grade   1.60 103.87
## 9431             17 years old   Male              11th grade   1.75  95.26
## 9432    18 years old or older   Male              12th grade   1.80 128.37
## 9433             16 years old   Male              11th grade   1.68  90.72
## 9434             15 years old   Male               9th grade   1.70  74.84
## 9435             15 years old Female               9th grade   1.63  68.04
## 9436             15 years old Female              10th grade   1.57  79.38
## 9437             17 years old Female              12th grade   1.55  65.77
## 9438             16 years old   Male              11th grade   1.73  60.33
## 9439             17 years old   Male              12th grade   1.73  53.07
## 9440             16 years old Female              11th grade   1.57  63.50
## 9441             14 years old Female               9th grade   1.75  58.97
## 9442             15 years old Female               9th grade     NA     NA
## 9443             16 years old Female              10th grade   1.63  52.62
## 9444    18 years old or older   Male              12th grade   1.90  89.81
## 9445    18 years old or older Female              12th grade   1.60  81.65
## 9446             15 years old   Male               9th grade   1.75  99.79
## 9447             15 years old Female               9th grade   1.75  64.86
## 9448             15 years old Female              10th grade   1.45  53.07
## 9449             15 years old   Male              10th grade   1.73  76.20
## 9450    18 years old or older   Male              12th grade   1.70  58.97
## 9451             17 years old Female              12th grade   1.68  63.50
## 9452             14 years old Female               9th grade   1.60  68.04
## 9453             15 years old   Male               9th grade   1.73  52.16
## 9454             16 years old   Male              10th grade   1.60  52.16
## 9455             17 years old Female              11th grade   1.63  80.74
## 9456             16 years old Female              11th grade   1.83  83.92
## 9457             15 years old Female               9th grade   1.52  54.43
## 9458             15 years old Female               9th grade     NA     NA
## 9459             15 years old   Male               9th grade   1.63  52.16
## 9460             15 years old Female               9th grade     NA     NA
## 9461             14 years old   Male               9th grade   1.52  46.72
## 9462             15 years old   Male               9th grade   1.75  56.70
## 9463             16 years old   Male              10th grade   1.70  79.38
## 9464             17 years old   Male              12th grade   1.70  65.77
## 9465             16 years old   Male              11th grade   1.70  70.31
## 9466             17 years old Female              12th grade   1.60  81.65
## 9467             17 years old   Male              11th grade   1.85  65.77
## 9468             15 years old   Male               9th grade   1.63  92.08
## 9469             14 years old   Male               9th grade   1.68  90.72
## 9470             15 years old   Male              10th grade   1.68  64.41
## 9471             15 years old   Male              10th grade   1.70  74.84
## 9472             17 years old   Male              12th grade   1.85  90.72
## 9473             15 years old Female               9th grade   1.65  51.26
## 9474             15 years old   Male               9th grade   1.73  96.16
## 9475             17 years old   Male              11th grade   1.83 145.15
## 9476             15 years old Female              10th grade   1.73  70.76
## 9477             17 years old Female              12th grade   1.68  63.05
## 9478             17 years old Female              12th grade   1.60  80.29
## 9479             14 years old Female               9th grade     NA     NA
## 9480             14 years old Female               9th grade   1.70  81.65
## 9481             15 years old   Male              10th grade   1.68  64.86
## 9482             17 years old   Male              12th grade   1.78  84.37
## 9483             17 years old Female              11th grade   1.60  86.18
## 9484             17 years old Female              12th grade   1.68  77.11
## 9485             15 years old Female               9th grade   1.63  78.47
## 9486             14 years old   Male               9th grade   1.73  55.34
## 9487             16 years old   Male              10th grade     NA     NA
## 9488    18 years old or older   Male              12th grade   1.80  61.24
## 9489             16 years old   Male              11th grade   1.80  77.11
## 9490             17 years old   Male              11th grade   1.78  65.77
## 9491             15 years old   Male               9th grade   1.88 106.60
## 9492             14 years old Female               9th grade   1.57  43.55
## 9493             15 years old Female              10th grade   1.70  54.43
## 9494             14 years old   Male               9th grade     NA     NA
## 9495             14 years old Female               9th grade   1.60  58.97
## 9496             16 years old Female              10th grade   1.68  71.67
## 9497             15 years old Female              10th grade   1.75  86.18
## 9498             17 years old Female              12th grade   1.60  68.95
## 9499    18 years old or older   Male              11th grade   1.83 113.40
## 9500             17 years old   Male              11th grade   1.63  78.02
## 9501             14 years old   Male               9th grade   1.65  52.16
## 9502             15 years old   Male               9th grade   1.78  89.81
## 9503    18 years old or older Female              12th grade   1.57  52.16
## 9504             17 years old Female              11th grade   1.60  89.81
## 9505             17 years old   Male              12th grade   1.73  63.50
## 9506             14 years old   Male               9th grade     NA     NA
## 9507             15 years old Female              10th grade   1.50  43.09
## 9508    18 years old or older   Male              12th grade   1.83  81.65
## 9509             17 years old   Male              12th grade   1.80  81.65
## 9510             16 years old Female              11th grade     NA     NA
## 9511             16 years old Female              10th grade   1.55  70.76
## 9512             17 years old Female              11th grade   1.63  63.50
## 9513    18 years old or older Female              12th grade   1.57  81.65
## 9514             16 years old Female              11th grade   1.63  65.77
## 9515             14 years old Female               9th grade     NA     NA
## 9516             15 years old   Male               9th grade   1.70  79.38
## 9517             14 years old Female               9th grade   1.65  63.50
## 9518             15 years old Female               9th grade   1.70  65.77
## 9519             14 years old Female               9th grade   1.70 103.87
## 9520             14 years old Female               9th grade     NA     NA
## 9521             15 years old Female               9th grade   1.60  42.64
## 9522             16 years old Female              10th grade     NA     NA
## 9523             15 years old Female              10th grade   1.65 106.60
## 9524             16 years old   Male              11th grade   1.73  63.50
## 9525             17 years old   Male              11th grade   1.73  84.82
## 9526             14 years old   Male               9th grade   1.78  73.48
## 9527             16 years old   Male               9th grade   1.83  75.75
## 9528             15 years old   Male              10th grade   1.75  59.88
## 9529             17 years old Female              12th grade   1.73  47.63
## 9530             16 years old   Male              11th grade   1.68  59.42
## 9531             16 years old   Male              11th grade   1.83  65.77
## 9532             14 years old Female               9th grade   1.70  51.26
## 9533             14 years old Female               9th grade   1.68  63.50
## 9534             16 years old Female              10th grade     NA     NA
## 9535             16 years old   Male              10th grade   1.75  83.92
## 9536             17 years old   Male              11th grade   1.73  61.24
## 9537             16 years old Female              11th grade   1.50  54.43
## 9538             16 years old   Male              11th grade   1.73  68.04
## 9539    18 years old or older   Male              12th grade   1.83  72.58
## 9540             15 years old   Male               9th grade   1.68  64.41
## 9541             15 years old   Male               9th grade   1.75  56.70
## 9542             15 years old Female              10th grade   1.57 127.01
## 9543    18 years old or older Female              11th grade     NA     NA
## 9544             17 years old   Male              12th grade   1.68 108.86
## 9545             14 years old   Male               9th grade   1.83  79.38
## 9546    18 years old or older   Male              12th grade   1.75  66.23
## 9547             16 years old Female              10th grade   1.65  61.69
## 9548             17 years old Female              11th grade   1.50  41.28
## 9549             16 years old   Male              11th grade   1.88  77.11
## 9550             15 years old Female              10th grade     NA     NA
## 9551             17 years old   Male              11th grade   1.73  92.99
## 9552             15 years old Female               9th grade   1.70  79.38
## 9553             15 years old Female               9th grade   1.60  49.90
## 9554             16 years old   Male              10th grade   1.80  47.17
## 9555             16 years old   Male               9th grade   1.73 112.04
## 9556             16 years old Female              11th grade   1.63  47.63
## 9557             17 years old Female              12th grade   1.65  83.92
## 9558             17 years old Female              11th grade   1.65  56.70
## 9559             17 years old   Male              11th grade   1.83  86.18
## 9560             14 years old Female               9th grade   1.65  74.84
## 9561             15 years old   Male               9th grade   1.60  38.56
## 9562             16 years old Female              10th grade   1.65 101.61
## 9563             15 years old   Male              10th grade   1.75  53.98
## 9564             17 years old   Male              11th grade   1.78  72.12
## 9565             14 years old Female               9th grade   1.60  61.24
## 9566             14 years old   Male               9th grade   1.78  58.97
## 9567             16 years old   Male              10th grade   1.75  72.58
## 9568             16 years old Female              11th grade   1.68  58.51
## 9569             14 years old Female               9th grade   1.63  74.84
## 9570             15 years old Female               9th grade   1.63  70.31
## 9571             16 years old Female              10th grade   1.65  61.69
## 9572             16 years old   <NA>              10th grade     NA     NA
## 9573             17 years old   Male              12th grade   1.90  77.11
## 9574    18 years old or older   Male              12th grade   1.83  79.38
## 9575             15 years old Female              10th grade   1.63  83.92
## 9576             15 years old Female               9th grade   1.60  44.45
## 9577             15 years old Female               9th grade   1.68  80.29
## 9578             15 years old Female              10th grade     NA     NA
## 9579             16 years old Female              10th grade   1.60  63.50
## 9580             16 years old Female              11th grade   1.57 104.33
## 9581             17 years old   Male              12th grade     NA     NA
## 9582             17 years old Female              10th grade   1.70  74.84
## 9583             14 years old Female               9th grade   1.60  70.76
## 9584             15 years old   Male               9th grade   1.63  95.26
## 9585             15 years old Female              10th grade   1.73  45.36
## 9586             17 years old   Male              11th grade   1.63  58.97
## 9587             16 years old   Male              11th grade   1.80  74.84
## 9588             16 years old   Male              12th grade   1.85  92.08
## 9589             14 years old Female               9th grade   1.65  63.50
## 9590             15 years old Female               9th grade   1.50  68.04
## 9591             17 years old   Male              11th grade   1.83  78.93
## 9592             15 years old   Male               9th grade   1.68  52.16
## 9593             17 years old   Male              11th grade   1.78  61.24
## 9594             14 years old Female               9th grade   1.70  63.50
## 9595             14 years old Female               9th grade   1.70  58.97
## 9596    18 years old or older   Male              12th grade   1.63  56.70
## 9597             17 years old Female              11th grade   1.60  86.18
## 9598    18 years old or older   Male              12th grade   1.80  63.50
## 9599             17 years old Female              11th grade   1.80 116.12
## 9600    18 years old or older   Male              12th grade   1.88  70.31
## 9601    18 years old or older Female              12th grade   1.63  49.90
## 9602             17 years old Female              11th grade   1.60  61.24
## 9603    18 years old or older Female              12th grade   1.63  63.50
## 9604    18 years old or older   Male              12th grade   1.70  78.02
## 9605    18 years old or older   Male              12th grade   1.83  56.70
## 9606    18 years old or older   Male              12th grade   1.83  76.66
## 9607             17 years old Female              12th grade   1.78  63.50
## 9608    18 years old or older   Male              12th grade   1.90 124.74
## 9609    18 years old or older   Male              12th grade   1.80  72.58
## 9610    18 years old or older Female              12th grade   1.60  55.79
## 9611             17 years old Female              11th grade   1.57  54.43
## 9612    18 years old or older Female              12th grade   1.63 122.47
## 9613    18 years old or older   Male              12th grade   1.80  90.72
## 9614    18 years old or older Female              11th grade   1.60  55.34
## 9615    18 years old or older Female              12th grade   1.60  68.04
## 9616    18 years old or older   Male              12th grade   1.78  56.70
## 9617             17 years old Female              11th grade   1.63  69.85
## 9618             17 years old   Male              12th grade   1.73  63.50
## 9619             17 years old Female              11th grade     NA     NA
## 9620             17 years old   Male              12th grade   1.68  72.58
## 9621    18 years old or older   Male              12th grade   1.85  63.50
## 9622             16 years old   Male              11th grade   1.73  99.79
## 9623    18 years old or older Female              12th grade   1.70  68.04
## 9624    18 years old or older   Male              12th grade   1.90  90.72
## 9625             16 years old Female              11th grade   1.75  63.50
## 9626             15 years old   Male               9th grade   1.80  95.26
## 9627             17 years old   Male              11th grade   1.96  95.26
## 9628             16 years old   Male               9th grade   1.70  58.97
## 9629             17 years old   Male              11th grade     NA     NA
## 9630             15 years old Female               9th grade   1.57  35.38
## 9631             16 years old Female              10th grade   1.60  50.80
## 9632             15 years old   Male               9th grade   1.85  56.70
## 9633             17 years old   Male              12th grade   1.83 120.20
## 9634             16 years old   Male               9th grade   1.65  52.16
## 9635             16 years old   Male              10th grade   1.68  61.24
## 9636             17 years old   Male              10th grade   1.85  79.38
## 9637             15 years old Female               9th grade   1.70  70.31
## 9638             17 years old   Male              10th grade   1.80  94.35
## 9639             15 years old   Male               9th grade   1.75  83.92
## 9640             17 years old   Male              11th grade   1.88  68.04
## 9641             15 years old   Male               9th grade   1.65  72.58
## 9642  12 years old or younger Female Ungraded or other grade     NA     NA
## 9643             15 years old Female               9th grade   1.68  48.54
## 9644             17 years old   Male              11th grade   1.73  65.77
## 9645             14 years old   Male               9th grade   1.78  88.45
## 9646             15 years old Female              10th grade   1.60  48.54
## 9647             14 years old Female               9th grade   1.70  90.72
## 9648             17 years old   Male              11th grade   1.73  74.84
## 9649             15 years old   Male               9th grade   1.80  65.77
## 9650             15 years old   Male               9th grade   1.78  55.79
## 9651             17 years old Female              11th grade     NA     NA
## 9652             15 years old   Male               9th grade   1.73  58.97
## 9653             16 years old   Male              10th grade   1.73  49.90
## 9654             16 years old Female              10th grade   1.52  50.80
## 9655             15 years old   Male               9th grade   1.83  86.64
## 9656             17 years old   Male              10th grade   1.80  61.24
## 9657             16 years old   Male              10th grade   1.83  65.77
## 9658             14 years old Female               9th grade   1.65  52.16
## 9659             15 years old   Male               9th grade   1.78  72.58
## 9660             15 years old Female               9th grade   1.68  76.20
## 9661             16 years old   Male              10th grade   1.78  63.50
## 9662             16 years old   Male              10th grade   1.63  57.15
## 9663             15 years old   Male               9th grade   1.73  58.97
## 9664             15 years old   Male               9th grade   1.65  46.72
## 9665             17 years old Female              11th grade   1.63 136.08
## 9666             15 years old   Male               9th grade   1.78  58.97
## 9667             17 years old Female              11th grade   1.63  52.16
## 9668             17 years old   Male              11th grade   1.73  68.04
## 9669             14 years old   Male               9th grade   1.60  47.63
## 9670             16 years old Female               9th grade   1.60  50.80
## 9671             17 years old   Male              11th grade   1.80 122.47
## 9672             16 years old   Male              10th grade   1.70 106.60
## 9673             16 years old   Male              10th grade   1.83  70.31
## 9674             15 years old Female               9th grade   1.63  54.43
## 9675             15 years old Female              10th grade   1.57  74.84
## 9676             15 years old Female               9th grade     NA     NA
## 9677             17 years old Female              11th grade   1.65  66.23
## 9678             17 years old Female              11th grade   1.65  81.65
## 9679             15 years old Female               9th grade   1.70  52.16
## 9680             16 years old   Male              10th grade   1.73  68.04
## 9681             16 years old Female              10th grade   1.65  53.52
## 9682             16 years old Female               9th grade   1.65  61.24
## 9683             17 years old   Male              11th grade   1.83  97.52
## 9684             15 years old   Male               9th grade   1.78  90.72
## 9685             17 years old   Male              11th grade   1.83  61.24
## 9686             15 years old Female               9th grade   1.68  61.24
## 9687             17 years old Female              11th grade   1.52  49.90
## 9688             17 years old   Male              11th grade     NA     NA
## 9689             14 years old Female               9th grade     NA     NA
## 9690             15 years old   Male               9th grade   1.83  72.58
## 9691             16 years old   Male              10th grade   1.85  81.65
## 9692             15 years old Female              10th grade   1.75  79.38
## 9693             16 years old Female              10th grade   1.68  60.33
## 9694             16 years old   Male              10th grade   1.90  63.50
## 9695             16 years old Female              10th grade   1.68  52.16
## 9696             16 years old Female              10th grade   1.60  56.70
## 9697             15 years old   Male               9th grade   1.52  43.09
## 9698             17 years old   Male              10th grade   1.83  88.00
## 9699             16 years old Female              10th grade   1.68  86.18
## 9700             16 years old   Male               9th grade   1.80 111.59
## 9701             16 years old   Male              10th grade   1.83  65.77
## 9702             15 years old Female               9th grade   1.68  58.97
## 9703             15 years old   Male               9th grade   1.63  45.36
## 9704             16 years old   Male              10th grade   1.70  85.73
## 9705             16 years old Female              10th grade   1.75  56.70
## 9706             15 years old   Male               9th grade   1.83  61.24
## 9707             16 years old Female              10th grade   1.57  61.69
## 9708             16 years old Female              10th grade   1.57  77.11
## 9709             16 years old   Male              10th grade   1.75  58.97
## 9710    18 years old or older Female              12th grade   1.65  58.06
## 9711    18 years old or older   Male              12th grade   1.70  69.40
## 9712    18 years old or older   Male              12th grade   1.73 111.13
## 9713    18 years old or older Female              12th grade   1.68  65.77
## 9714    18 years old or older Female              12th grade   1.68  53.98
## 9715    18 years old or older Female              12th grade   1.60  60.78
## 9716    18 years old or older   Male              12th grade   1.73  81.65
## 9717             17 years old   Male              12th grade   1.78 116.12
## 9718    18 years old or older Female              12th grade   1.68  49.90
## 9719    18 years old or older Female              12th grade   1.55  48.99
## 9720    18 years old or older Female              12th grade   1.80  62.60
## 9721             15 years old   Male               9th grade   1.73  84.37
## 9722             15 years old   Male               9th grade   1.73  56.70
## 9723             15 years old   Male               9th grade   1.85  72.58
## 9724             16 years old Female              10th grade   1.55  50.35
## 9725             16 years old   Male              11th grade   1.78  79.38
## 9726             17 years old   Male              12th grade   1.83  79.38
## 9727             16 years old   Male              11th grade   1.83  90.72
## 9728    18 years old or older   Male              12th grade   1.83  88.45
## 9729             16 years old Female              10th grade   1.65  72.58
## 9730             14 years old   Male               9th grade     NA     NA
## 9731             15 years old   Male              10th grade   1.68  56.70
## 9732             17 years old Female              11th grade   1.63  88.45
## 9733    18 years old or older   Male              12th grade   1.88  92.99
## 9734             16 years old   Male              10th grade   1.73 113.40
## 9735             15 years old Female               9th grade   1.78 145.15
## 9736             15 years old Female               9th grade     NA     NA
## 9737             16 years old Female              10th grade   1.52  58.51
## 9738             17 years old   Male              11th grade     NA     NA
## 9739             17 years old   Male              12th grade   1.73  63.50
## 9740    18 years old or older   Male              11th grade   1.88  77.11
## 9741             17 years old Female              12th grade   1.65  63.50
## 9742             16 years old Female              11th grade   1.78  65.77
## 9743             15 years old   Male               9th grade   1.78  58.97
## 9744             16 years old   Male              11th grade   1.83  70.31
## 9745             16 years old Female              11th grade   1.68  58.97
## 9746             17 years old   Male              12th grade   1.83  72.58
## 9747             14 years old Female               9th grade   1.52  49.90
## 9748             15 years old   Male               9th grade   1.78  90.72
## 9749             15 years old   Male              10th grade   1.70  54.89
## 9750             17 years old Female              11th grade   1.52  44.91
## 9751             17 years old   Male              12th grade   1.65  61.24
## 9752             16 years old   Male              11th grade   1.83  68.04
## 9753    18 years old or older Female              12th grade   1.68  58.97
## 9754             16 years old   Male              10th grade   1.65  61.24
## 9755             16 years old   Male              10th grade   1.68  63.50
## 9756             15 years old   Male               9th grade   1.70  49.90
## 9757             16 years old   Male              10th grade   1.70 113.40
## 9758             16 years old Female              11th grade   1.70  74.84
## 9759             17 years old   Male              12th grade   1.70 104.33
## 9760             16 years old Female              10th grade   1.73  90.72
## 9761    18 years old or older Female              12th grade   1.73  74.84
## 9762             15 years old Female              10th grade   1.57  49.90
## 9763             15 years old   Male               9th grade   1.85 101.15
## 9764             14 years old   Male               9th grade   1.80  95.26
## 9765             16 years old   Male              10th grade   1.75  58.97
## 9766             16 years old   Male              11th grade   1.83  83.92
## 9767             17 years old Female              11th grade   1.75  61.24
## 9768             17 years old Female              12th grade   1.65  56.70
## 9769             15 years old   Male              10th grade   1.70  53.07
## 9770             16 years old Female               9th grade   1.55  96.62
## 9771             15 years old Female               9th grade   1.70  52.16
## 9772    18 years old or older   Male              12th grade   1.68  61.24
## 9773             17 years old Female              10th grade   1.73  90.72
## 9774             14 years old   Male               9th grade   1.85  95.26
## 9775             16 years old   Male              10th grade   1.57  47.63
## 9776             17 years old   Male              11th grade   1.78 111.13
## 9777             17 years old Female              12th grade   1.55  56.70
## 9778    18 years old or older Female              12th grade   1.57 113.40
## 9779             16 years old Female              10th grade   1.80  70.31
## 9780             15 years old   Male               9th grade   1.90  86.18
## 9781             15 years old Female               9th grade   1.60  58.97
## 9782             16 years old Female              10th grade   1.60  56.70
## 9783             16 years old   Male              11th grade     NA     NA
## 9784    18 years old or older   Male                    <NA>   1.78  70.76
## 9785    18 years old or older   Male              12th grade   1.70  68.95
## 9786             17 years old   Male              12th grade   1.65  92.99
## 9787             16 years old Female              10th grade   1.63  57.15
## 9788             15 years old   Male               9th grade   1.60  52.16
## 9789             15 years old   Male               9th grade   1.80  63.50
## 9790             16 years old   Male              10th grade   1.85  90.72
## 9791             17 years old   Male              11th grade   1.88  92.99
## 9792             17 years old Female              12th grade   1.68  56.70
## 9793             16 years old   Male              11th grade   1.73  49.90
## 9794    18 years old or older   Male              12th grade   1.68 129.28
## 9795             16 years old   Male              10th grade   1.73  68.04
## 9796             14 years old Female               9th grade   1.63  67.13
## 9797             14 years old   Male               9th grade   1.78  53.52
## 9798             16 years old   Male              10th grade   1.80  86.18
## 9799             16 years old Female              11th grade   1.63  55.34
## 9800             17 years old Female              12th grade   1.73  77.11
## 9801             17 years old Female              11th grade   1.65  81.65
## 9802             17 years old   Male              12th grade   1.85 110.22
## 9803             16 years old   Male              10th grade   1.85  83.92
## 9804             14 years old Female               9th grade   1.70  58.97
## 9805             14 years old   Male               9th grade   1.83  61.24
## 9806             16 years old   Male              10th grade     NA     NA
## 9807    18 years old or older   Male              12th grade   1.70  65.77
## 9808             17 years old   Male              12th grade   1.83  83.92
## 9809             17 years old Female              12th grade   1.60  59.88
## 9810             16 years old   Male              10th grade     NA     NA
## 9811             15 years old Female              10th grade   1.65  58.97
## 9812             15 years old   Male               9th grade   1.80  86.18
## 9813             17 years old   Male              12th grade   1.63  63.50
## 9814             17 years old Female              11th grade   1.68  79.38
## 9815             17 years old Female              12th grade   1.68  65.77
## 9816             15 years old Female              10th grade   1.63  54.43
## 9817             15 years old Female               9th grade   1.50  40.82
## 9818             14 years old Female               9th grade     NA     NA
## 9819             17 years old   Male              12th grade   1.88  54.43
## 9820             16 years old Female              11th grade   1.65  49.90
## 9821    18 years old or older   Male              12th grade   1.78 158.76
## 9822             16 years old Female              10th grade   1.57  54.43
## 9823             15 years old   Male               9th grade     NA     NA
## 9824             15 years old   Male              10th grade   1.78  70.31
## 9825             16 years old Female              11th grade   1.60  63.50
## 9826             17 years old Female              12th grade   1.68  63.50
## 9827             16 years old   Male              10th grade   1.73  67.13
## 9828             14 years old   Male               9th grade   1.78  65.77
## 9829             15 years old Female              10th grade   1.63  51.71
## 9830             16 years old   Male              11th grade   1.96  72.58
## 9831    18 years old or older   Male              12th grade   1.78  68.04
## 9832             16 years old   Male              11th grade   1.90 124.74
## 9833    18 years old or older   Male              12th grade   1.88  71.67
## 9834             16 years old   Male              10th grade   1.75  63.05
## 9835             15 years old   Male               9th grade   1.60  51.71
## 9836             15 years old Female              10th grade     NA     NA
## 9837             16 years old   Male              10th grade   1.83  81.65
## 9838             17 years old   Male              11th grade   1.73  61.24
## 9839    18 years old or older   Male              12th grade   1.60  43.09
## 9840             17 years old   Male              11th grade   1.80  68.04
## 9841    18 years old or older   Male              12th grade   1.80  90.72
## 9842             16 years old   Male              10th grade   1.80  86.18
## 9843             15 years old   Male               9th grade   1.90  77.11
## 9844             15 years old   Male               9th grade   1.68  68.04
## 9845             16 years old Female              10th grade   1.65  68.04
## 9846             17 years old Female              11th grade   1.57  60.78
## 9847             17 years old Female              12th grade   1.55  58.06
## 9848    18 years old or older   Male              12th grade   1.83  86.18
## 9849             16 years old   Male              10th grade   1.70  56.70
## 9850             14 years old   Male               9th grade   1.73  68.04
## 9851             16 years old Female               9th grade     NA     NA
## 9852             16 years old   Male              10th grade   1.63  45.36
## 9853             17 years old Female              11th grade   1.63  63.50
## 9854    18 years old or older Female              12th grade   1.55  47.17
## 9855             17 years old   Male              11th grade   1.65  55.79
## 9856    18 years old or older   Male              12th grade   1.83  99.79
## 9857             16 years old Female              10th grade   1.60  72.58
## 9858             15 years old   Male               9th grade   1.75 113.40
## 9859             15 years old Female               9th grade   1.45  37.65
## 9860             15 years old Female              10th grade   1.55  58.97
## 9861             17 years old Female              11th grade   1.65  61.24
## 9862             17 years old   Male              11th grade   1.85  65.77
## 9863    18 years old or older Female              12th grade   1.50  44.45
## 9864             14 years old Female               9th grade   1.68  52.16
## 9865             15 years old   Male               9th grade   1.80  95.26
## 9866             15 years old Female              10th grade   1.65  68.04
## 9867             16 years old   Male              11th grade   1.80  72.58
## 9868             16 years old Female              11th grade   1.65  52.16
## 9869    18 years old or older   Male              12th grade   1.85  85.73
## 9870             14 years old   Male               9th grade   1.83  65.77
## 9871             15 years old Female               9th grade   1.73  45.36
## 9872             15 years old Female               9th grade   1.63  45.36
## 9873             17 years old   Male              11th grade   1.73 158.76
## 9874             16 years old Female              11th grade   1.65  77.11
## 9875             17 years old Female              12th grade   1.70  58.97
## 9876             16 years old Female              10th grade   1.68  63.50
## 9877             15 years old   Male               9th grade   1.63  58.97
## 9878             15 years old Female              10th grade   1.68  49.90
## 9879             17 years old   Male              12th grade   1.78  53.52
## 9880             17 years old Female              12th grade   1.73  97.52
## 9881             17 years old   Male              11th grade   1.63  52.16
## 9882    18 years old or older Female              12th grade   1.68  53.52
## 9883             16 years old Female              10th grade     NA     NA
## 9884             15 years old   Male              10th grade   1.78  68.95
## 9885             15 years old   Male               9th grade   1.78  60.78
## 9886             15 years old   Male              10th grade   1.75  61.24
## 9887             16 years old   Male              11th grade   1.78  70.31
## 9888             17 years old   Male              12th grade   1.83  72.58
## 9889    18 years old or older Female              12th grade     NA     NA
## 9890             17 years old   Male              12th grade   1.63  76.20
## 9891             17 years old Female              10th grade   1.55  52.62
## 9892             14 years old   Male               9th grade   1.65  71.22
## 9893             15 years old Female               9th grade   1.83  83.01
## 9894             17 years old   Male              11th grade   1.80  83.92
## 9895             17 years old   Male              11th grade   1.75  64.86
## 9896             16 years old Female              11th grade   1.68  54.43
## 9897             17 years old Female              11th grade   1.70  58.97
## 9898             17 years old Female              11th grade   1.55  52.16
## 9899             16 years old Female              11th grade   1.63  52.16
## 9900             17 years old Female              11th grade   1.63  52.16
## 9901             17 years old   Male              11th grade   1.83  61.69
## 9902             17 years old Female              11th grade   1.68  58.97
## 9903             17 years old Female              11th grade   1.60  56.70
## 9904             17 years old Female              11th grade   1.63  61.24
## 9905             16 years old Female              11th grade   1.63  68.04
## 9906    18 years old or older   Male              12th grade   1.73  81.65
## 9907    18 years old or older Female              12th grade   1.47  46.72
## 9908             17 years old Female              12th grade   1.65  99.79
## 9909    18 years old or older   Male              12th grade   1.73  88.45
## 9910             17 years old   Male              12th grade   1.73  62.60
## 9911             16 years old Female              10th grade   1.57  52.62
## 9912    18 years old or older   Male              12th grade     NA     NA
## 9913             15 years old   Male               9th grade   1.68  72.58
## 9914             15 years old   Male               9th grade   1.85  63.50
## 9915             14 years old Female               9th grade   1.70  81.65
## 9916             14 years old   Male               9th grade   1.68  56.70
## 9917             15 years old Female               9th grade   1.65  58.06
## 9918             17 years old   Male              11th grade     NA     NA
## 9919             16 years old   Male              11th grade   1.73  68.04
## 9920    18 years old or older   Male              12th grade   1.75  61.24
## 9921             17 years old   Male              12th grade   1.83  95.26
## 9922             16 years old   Male              10th grade     NA     NA
## 9923             15 years old   Male               9th grade   1.65  53.52
## 9924             14 years old   Male               9th grade   1.65  81.65
## 9925             16 years old   Male              10th grade   1.73  56.70
## 9926             16 years old   Male              11th grade   1.78  90.72
## 9927             17 years old   Male              12th grade   1.83  72.58
## 9928    18 years old or older Female              12th grade   1.65  61.24
## 9929             16 years old   Male              10th grade   1.80  68.04
## 9930             14 years old Female               9th grade   1.50  44.00
## 9931             14 years old Female               9th grade     NA     NA
## 9932             17 years old Female              11th grade   1.55  48.99
## 9933             17 years old Female              11th grade     NA     NA
## 9934             17 years old Female              12th grade   1.63 104.33
## 9935             17 years old Female              12th grade   1.65  67.13
## 9936             15 years old Female               9th grade   1.57  53.52
## 9937             14 years old Female               9th grade   1.57  63.50
## 9938             16 years old   Male              10th grade   1.83  52.62
## 9939             17 years old Female              11th grade   1.70  81.65
## 9940             16 years old   Male              11th grade   1.75  70.31
## 9941    18 years old or older Female              12th grade   1.63  47.63
## 9942             17 years old Female              12th grade   1.57  68.04
## 9943             16 years old   Male              10th grade   1.80  68.04
## 9944             15 years old Female               9th grade   1.60  52.62
## 9945             15 years old Female               9th grade   1.60  58.97
## 9946             16 years old   Male              10th grade   1.80  88.45
## 9947             16 years old   Male              11th grade   1.88  86.18
## 9948             16 years old Female              11th grade   1.57  81.65
## 9949             17 years old Female              12th grade   1.60  72.58
## 9950             17 years old   Male              12th grade   1.88  97.52
## 9951             15 years old   Male              10th grade   1.83 101.15
## 9952             14 years old Female               9th grade   1.65  79.38
## 9953             15 years old   <NA>               9th grade     NA     NA
## 9954             16 years old   Male              10th grade   1.65  66.68
## 9955             16 years old Female              11th grade   1.70  68.04
## 9956             16 years old   Male              11th grade   1.88 104.33
## 9957    18 years old or older   Male              12th grade   1.80  68.04
## 9958    18 years old or older Female              12th grade   1.60  54.89
## 9959             16 years old Female              10th grade   1.68  63.50
## 9960             14 years old Female               9th grade     NA     NA
## 9961             16 years old   Male              10th grade   1.85  83.92
## 9962             16 years old   Male              11th grade   1.75  59.88
## 9963    18 years old or older   Male              12th grade   1.85  61.24
## 9964             15 years old Female              10th grade     NA     NA
## 9965             14 years old Female               9th grade   1.65  52.16
## 9966             15 years old Female               9th grade     NA     NA
## 9967             15 years old   Male              10th grade   1.90  74.84
## 9968             17 years old   Male              11th grade   1.80  63.96
## 9969             16 years old   Male              11th grade   1.78  58.97
## 9970    18 years old or older   Male              12th grade   1.83  95.26
## 9971             16 years old Female              10th grade   1.55  54.43
## 9972             15 years old   Male               9th grade     NA     NA
## 9973             17 years old Female              11th grade   1.65  55.79
## 9974             16 years old   Male              11th grade     NA     NA
## 9975    18 years old or older Female              12th grade   1.57  50.80
## 9976             15 years old Female              10th grade   1.73  81.65
## 9977             15 years old   Male               9th grade   1.52  78.02
## 9978             17 years old Female              11th grade   1.68  60.33
## 9979             16 years old Female              11th grade   1.70  69.40
## 9980    18 years old or older   Male              12th grade   1.85  81.65
## 9981    18 years old or older   Male              12th grade   1.78  81.65
## 9982             16 years old Female              10th grade   1.65  70.31
## 9983             15 years old Female              10th grade   1.60  52.62
## 9984             17 years old   Male              11th grade   1.78  94.80
## 9985             17 years old Female              12th grade   1.60  48.54
## 9986             15 years old Female              10th grade   1.70  59.88
## 9987             14 years old Female               9th grade   1.65  57.15
## 9988             14 years old Female               9th grade     NA     NA
## 9989             17 years old   Male              11th grade   1.75  68.95
## 9990             16 years old   Male              11th grade   1.75  77.11
## 9991             17 years old   Male              12th grade   1.70  63.50
## 9992    18 years old or older Female              12th grade   1.57  65.77
## 9993             15 years old Female              10th grade   1.68  65.77
## 9994             14 years old   Male               9th grade   1.85  97.52
## 9995             15 years old   Male              10th grade   1.70  86.18
## 9996             16 years old Female              11th grade     NA     NA
## 9997    18 years old or older   Male              12th grade   1.68  81.65
## 9998    18 years old or older   Male              12th grade   1.80  68.04
## 9999             15 years old   Male              10th grade   1.65  58.51
## 10000            14 years old Female               9th grade   1.65  47.63
## 10001            15 years old Female              10th grade   1.70  58.97
## 10002            14 years old Female               9th grade   1.63  59.88
## 10003            17 years old   Male              11th grade   1.88  95.26
## 10004   18 years old or older Female              12th grade   1.63  53.98
## 10005            16 years old   Male              10th grade   1.78  49.44
## 10006            14 years old   Male               9th grade   1.70  58.97
## 10007            14 years old   Male               9th grade   1.70  54.43
## 10008            15 years old   Male              10th grade   1.83  72.58
## 10009            16 years old   Male              11th grade   1.80 138.35
## 10010   18 years old or older Female              11th grade   1.57  61.24
## 10011            17 years old   Male              12th grade   1.80  74.84
## 10012   18 years old or older   Male              12th grade   1.88  77.11
## 10013            15 years old Female               9th grade   1.60  49.90
## 10014            15 years old Female              10th grade   1.73  56.70
## 10015            16 years old Female              11th grade   1.63  61.24
## 10016   18 years old or older   Male              12th grade   1.80  74.84
## 10017            15 years old   Male              10th grade   1.75  82.56
## 10018            14 years old   Male               9th grade   1.68  86.18
## 10019            15 years old   Male               9th grade   1.78  64.86
## 10020            17 years old Female              11th grade   1.78  83.92
## 10021            17 years old   Male              11th grade   1.88  68.04
## 10022            17 years old   Male              12th grade   1.75  72.58
## 10023            17 years old Female              12th grade     NA     NA
## 10024            16 years old   Male              10th grade   1.75  81.65
## 10025            15 years old Female               9th grade   1.70  52.16
## 10026            16 years old   Male              10th grade   1.75  52.16
## 10027            17 years old   Male              11th grade   1.80  65.77
## 10028            17 years old Female              11th grade   1.60  58.97
## 10029            17 years old   Male              12th grade   1.80  65.77
## 10030            17 years old   Male              12th grade   1.90  70.31
## 10031            15 years old Female              10th grade   1.68  65.77
## 10032            16 years old Female              10th grade   1.63  63.50
## 10033            14 years old   Male               9th grade   1.68  88.91
## 10034            15 years old Female              10th grade   1.73  62.60
## 10035            17 years old   Male              11th grade   1.80  58.97
## 10036   18 years old or older Female              12th grade   1.68  68.04
## 10037            17 years old   Male              12th grade   1.78  68.04
## 10038            17 years old Female              12th grade   1.70  54.89
## 10039            15 years old   Male              10th grade   1.78  68.04
## 10040            16 years old   Male              10th grade   1.75  68.04
## 10041            15 years old Female              10th grade   1.57  54.43
## 10042            16 years old   Male              10th grade   1.83  74.84
## 10043            17 years old Female              11th grade   1.63  80.74
## 10044            17 years old   Male              11th grade   1.88 121.56
## 10045            17 years old   Male              12th grade     NA     NA
## 10046            17 years old   Male              12th grade   1.78  70.31
## 10047            16 years old Female              10th grade   1.73  71.67
## 10048            14 years old Female               9th grade   1.40  34.02
## 10049            16 years old   Male              10th grade   1.73  63.50
## 10050            17 years old   Male              11th grade     NA     NA
## 10051            17 years old   Male              11th grade   1.75 127.01
## 10052   18 years old or older   Male              12th grade   1.80  65.77
## 10053   18 years old or older   Male              12th grade   1.80 108.86
## 10054            16 years old   Male              10th grade   1.73  56.70
## 10055            14 years old   Male               9th grade   1.65  53.07
## 10056            15 years old   Male               9th grade   1.75  61.24
## 10057            16 years old   Male              10th grade   1.80  84.37
## 10058            16 years old   Male              11th grade   1.85  84.82
## 10059            17 years old   Male              11th grade   1.73  54.43
## 10060   18 years old or older   Male              12th grade   1.90  95.26
## 10061            15 years old   Male              10th grade   1.63  72.58
## 10062            14 years old Female               9th grade   1.60  47.63
## 10063            15 years old Female               9th grade   1.45  38.56
## 10064            16 years old   Male              10th grade   1.73  81.65
## 10065            16 years old   Male              11th grade   1.73  70.31
## 10066            16 years old Female              11th grade   1.55  57.61
## 10067            17 years old   Male              12th grade   1.88  83.92
## 10068   18 years old or older Female              12th grade   1.57  63.50
## 10069            16 years old Female              10th grade   1.57  45.36
## 10070            14 years old   <NA>               9th grade     NA     NA
## 10071            15 years old   Male               9th grade   1.80  52.16
## 10072            17 years old   Male              11th grade   1.63  43.55
## 10073            17 years old   Male              11th grade   1.70  72.58
## 10074            17 years old   Male              11th grade   1.70  54.43
## 10075            17 years old   Male              11th grade   1.96  95.26
## 10076   18 years old or older   Male              11th grade   1.83  65.77
## 10077            17 years old Female              12th grade     NA     NA
## 10078            15 years old   Male               9th grade   1.70  97.52
## 10079            16 years old   Male              11th grade   1.78  48.54
## 10080   18 years old or older Female Ungraded or other grade   1.55  45.36
## 10081                    <NA> Female              11th grade     NA     NA
## 10082            17 years old   Male              12th grade   1.70  68.49
## 10083            15 years old   Male               9th grade   1.83 117.94
## 10084            17 years old Female              12th grade   1.70  61.24
## 10085            15 years old   Male               9th grade   1.75  68.04
## 10086            16 years old Female              11th grade   1.55  59.88
## 10087            17 years old   Male              12th grade   1.80  77.11
## 10088            15 years old   Male               9th grade   1.65  45.36
## 10089            17 years old Female              11th grade   1.52  44.00
## 10090            16 years old   Male              11th grade   1.60  58.97
## 10091   18 years old or older   Male              12th grade   1.96  88.45
## 10092            16 years old   Male              11th grade   1.60  74.84
## 10093   18 years old or older   <NA>              12th grade     NA     NA
## 10094            17 years old Female              11th grade   1.52  49.90
## 10095   18 years old or older   Male              12th grade   1.88  99.79
## 10096            14 years old   Male               9th grade   1.80  90.27
## 10097   18 years old or older   Male              12th grade   1.70  61.69
## 10098            16 years old   Male              11th grade   1.78  59.88
## 10099   18 years old or older   Male              12th grade   1.96  82.10
## 10100            16 years old   Male              11th grade     NA     NA
## 10101            17 years old   Male              12th grade   1.73  88.45
## 10102            14 years old Female               9th grade   1.60  61.24
## 10103            16 years old   Male              11th grade   1.70  63.96
## 10104            16 years old   Male              11th grade   1.75  86.18
## 10105   18 years old or older Female              12th grade   1.52  65.77
## 10106            15 years old   Male               9th grade     NA     NA
## 10107            17 years old Female              11th grade   1.52  43.09
## 10108   18 years old or older   Male              12th grade   1.68  62.60
## 10109            15 years old Female               9th grade   1.63  88.00
## 10110            17 years old Female              11th grade   1.63  87.54
## 10111            16 years old Female              11th grade   1.60  54.43
## 10112            15 years old Female              10th grade   1.63  54.43
## 10113            16 years old Female              10th grade   1.68  54.43
## 10114            16 years old Female              10th grade   1.60  79.38
## 10115            15 years old Female              10th grade     NA     NA
## 10116            16 years old Female              11th grade   1.60  49.90
## 10117            15 years old Female              10th grade   1.60  45.36
## 10118            16 years old Female              10th grade   1.63  58.06
## 10119            17 years old   Male              12th grade   1.70  82.56
## 10120            15 years old   Male               9th grade   1.63  58.97
## 10121            17 years old Female              11th grade     NA     NA
## 10122            16 years old   Male              10th grade   1.65  70.76
## 10123            17 years old Female              12th grade     NA     NA
## 10124            16 years old Female              11th grade   1.55  53.07
## 10125            16 years old Female              10th grade   1.55  47.63
## 10126            17 years old   Male              11th grade   1.85  97.52
## 10127            16 years old Female              10th grade   1.68  65.77
## 10128            14 years old   Male               9th grade   1.68  88.00
## 10129            15 years old   Male              10th grade   1.80  92.99
## 10130            15 years old   Male               9th grade   1.85  84.37
## 10131            15 years old Female               9th grade   1.78  73.94
## 10132            16 years old Female              11th grade   1.63  52.16
## 10133            16 years old   Male              11th grade   1.96 149.69
## 10134            15 years old   Male               9th grade   1.73  57.15
## 10135            17 years old Female              11th grade     NA     NA
## 10136            17 years old Female              11th grade   1.50  44.45
## 10137            15 years old Female               9th grade   1.50  37.65
## 10138            17 years old Female              11th grade   1.63  65.77
## 10139            16 years old Female              11th grade     NA     NA
## 10140            15 years old Female               9th grade   1.63  59.88
## 10141            16 years old   Male              10th grade   1.73  65.77
## 10142            15 years old   Male               9th grade   1.90 140.62
## 10143            14 years old Female               9th grade   1.57  55.34
## 10144            16 years old   Male              11th grade     NA     NA
## 10145            17 years old Female              11th grade   1.65  72.58
## 10146            14 years old   Male               9th grade   1.93  90.72
## 10147            15 years old   Male              10th grade   1.68  56.70
## 10148            14 years old Female               9th grade   1.52  54.43
## 10149            14 years old   Male               9th grade   1.80  88.45
## 10150            17 years old   Male              11th grade   1.88  88.91
## 10151            16 years old Female              11th grade     NA     NA
## 10152            15 years old Female               9th grade   1.55  55.34
## 10153            16 years old Female              11th grade   1.55  61.24
## 10154            17 years old Female              11th grade   1.40  61.24
## 10155            15 years old   Male               9th grade   1.65  54.43
## 10156            14 years old   Male               9th grade   1.78  59.88
## 10157            14 years old Female               9th grade   1.52  54.43
## 10158            16 years old   Male              11th grade   1.80  96.16
## 10159            17 years old Female              11th grade   1.52  49.90
## 10160            15 years old Female               9th grade   1.75 124.74
## 10161            15 years old Female              10th grade   1.63  58.51
## 10162            14 years old   Male               9th grade   1.83  73.48
## 10163            15 years old Female               9th grade   1.68  65.77
## 10164            17 years old   Male              11th grade   1.70  61.69
## 10165            16 years old   Male              11th grade   1.63  49.90
## 10166            15 years old   Male               9th grade   1.63  63.50
## 10167            15 years old Female              10th grade   1.68  54.43
## 10168            15 years old Female               9th grade   1.70  72.58
## 10169            15 years old   Male               9th grade   1.83  73.94
## 10170            17 years old Female              11th grade   1.70 106.60
## 10171            16 years old   Male              11th grade   1.73  61.24
## 10172            15 years old   Male               9th grade   1.65  61.24
## 10173            16 years old   Male              10th grade   1.73 106.60
## 10174            15 years old   Male               9th grade   1.65  61.24
## 10175            14 years old Female               9th grade   1.75  74.84
## 10176            16 years old   Male              11th grade   1.80  65.77
## 10177            17 years old Female              11th grade   1.83  68.04
## 10178            14 years old Female               9th grade   1.63  80.74
## 10179            15 years old   Male              10th grade   1.70  70.31
## 10180            15 years old Female               9th grade   1.63  46.27
## 10181            15 years old Female               9th grade   1.63  51.26
## 10182            16 years old   Male              11th grade   1.73  67.13
## 10183            15 years old Female               9th grade   1.57  43.09
## 10184            16 years old   Male              10th grade   1.83 106.60
## 10185            14 years old Female               9th grade   1.63  56.70
## 10186            15 years old   Male               9th grade   1.80  54.89
## 10187            16 years old Female              10th grade   1.60  57.15
## 10188            14 years old   Male               9th grade   1.57  39.46
## 10189            15 years old   Male               9th grade   1.60  52.62
## 10190            16 years old Female              11th grade   1.60  58.97
## 10191            14 years old   Male               9th grade   1.68  64.41
## 10192            15 years old Female              10th grade   1.57  49.44
## 10193            15 years old Female               9th grade   1.57  63.50
## 10194            17 years old Female              11th grade   1.70  63.96
## 10195            17 years old   Male              11th grade   1.88  68.95
## 10196            14 years old   Male               9th grade   1.60  61.24
## 10197            17 years old Female              11th grade   1.52 104.33
## 10198            17 years old Female              11th grade   1.65  74.84
## 10199            15 years old Female               9th grade   1.73  59.42
## 10200            16 years old   Male              10th grade   1.88  77.11
## 10201            14 years old Female               9th grade   1.57  45.36
## 10202            15 years old   Male               9th grade   1.88 108.86
## 10203            16 years old   Male              11th grade   1.85  65.77
## 10204            14 years old   Male               9th grade   1.73  83.01
## 10205            15 years old   Male               9th grade   1.80 104.33
## 10206            17 years old Female              11th grade   1.65  80.74
## 10207            15 years old Female               9th grade   1.57  74.84
## 10208            15 years old   Male              10th grade   1.68  86.18
## 10209            14 years old Female               9th grade   1.75 125.65
## 10210            15 years old   Male               9th grade   1.75  58.97
## 10211            17 years old   Male              11th grade   1.70  83.92
## 10212            14 years old   Male               9th grade   1.63  83.01
## 10213            15 years old Female              10th grade   1.60  52.16
## 10214            14 years old   Male               9th grade   1.68  55.34
## 10215            15 years old   Male               9th grade   1.80  63.50
## 10216            16 years old Female              11th grade   1.50  61.24
## 10217            15 years old   Male               9th grade   1.60  47.63
## 10218            16 years old Female              10th grade     NA     NA
## 10219            15 years old   Male               9th grade   1.73  79.38
## 10220            15 years old   Male               9th grade   1.70 108.86
## 10221   18 years old or older   Male              12th grade   1.85  68.04
## 10222            17 years old   Male              12th grade   1.83  68.04
## 10223            17 years old   Male              12th grade   1.75  74.39
## 10224            16 years old Female              10th grade   1.63  73.03
## 10225            17 years old   Male              12th grade   1.75  77.11
## 10226            16 years old   Male              10th grade   1.85  77.11
## 10227            17 years old   Male              12th grade   1.78  83.92
## 10228            17 years old   Male              12th grade   1.83  92.99
## 10229            16 years old   Male              10th grade   1.75  61.24
## 10230            17 years old   Male              12th grade   1.88  90.72
## 10231   18 years old or older Female              12th grade   1.60  58.06
## 10232            16 years old   Male              10th grade   1.73  71.67
## 10233            16 years old Female              10th grade   1.63  77.11
## 10234   18 years old or older   Male              12th grade   1.83  74.84
## 10235            17 years old   Male              12th grade   1.80  54.43
## 10236            17 years old   Male              12th grade   1.78  88.45
## 10237            16 years old   Male              10th grade   1.75  69.40
## 10238   18 years old or older Female              12th grade   1.68  92.08
## 10239   18 years old or older   Male              12th grade   1.68  52.16
## 10240   18 years old or older Female              12th grade   1.52  70.31
## 10241            15 years old Female              10th grade   1.52  71.67
## 10242   18 years old or older Female              12th grade   1.75  79.38
## 10243 12 years old or younger   Male              12th grade     NA     NA
## 10244            15 years old Female              10th grade   1.63  63.50
## 10245            17 years old Female              12th grade   1.60  50.80
## 10246            16 years old Female              10th grade   1.55  66.68
## 10247   18 years old or older Female              12th grade   1.70  63.50
## 10248   18 years old or older   Male              12th grade   1.73  63.50
## 10249   18 years old or older   Male              12th grade   1.85  75.75
## 10250            15 years old   Male              10th grade   1.75  70.31
## 10251            15 years old Female              10th grade   1.65  77.11
## 10252   18 years old or older Female              12th grade   1.63  97.52
## 10253            17 years old Female              12th grade   1.70  71.22
## 10254   18 years old or older Female              12th grade   1.70  63.50
## 10255            16 years old Female              10th grade   1.65  56.70
## 10256   18 years old or older   Male              12th grade   1.80  79.38
## 10257            16 years old   Male              10th grade   1.73  52.62
## 10258            16 years old Female              10th grade   1.65 104.33
## 10259   18 years old or older Female              12th grade   1.57  58.97
## 10260   18 years old or older   Male              12th grade   1.88  86.64
## 10261   18 years old or older Female              12th grade   1.60  68.04
## 10262            16 years old Female              10th grade   1.63  68.04
## 10263            17 years old Female              12th grade   1.57  97.52
## 10264   18 years old or older   Male              12th grade   1.93  63.50
## 10265   18 years old or older Female              12th grade   1.63  58.97
## 10266            17 years old Female              12th grade   1.60  63.50
## 10267            17 years old   Male              12th grade   1.73  72.58
## 10268            17 years old   Male              12th grade   1.83  63.05
## 10269   18 years old or older Female              12th grade   1.50  53.07
## 10270   18 years old or older Female              12th grade   1.68  58.97
## 10271   18 years old or older   Male              12th grade   1.75  90.72
## 10272            15 years old   Male              10th grade   1.70  63.50
## 10273            17 years old Female              12th grade   1.70  64.41
## 10274   18 years old or older   Male              12th grade   1.83  72.12
## 10275   18 years old or older   Male              12th grade   1.75  60.33
## 10276            16 years old   Male              10th grade   1.73  65.77
## 10277   18 years old or older   Male              12th grade   1.83  97.52
## 10278            16 years old   Male              10th grade   1.80 122.47
## 10279            17 years old   Male              11th grade     NA     NA
## 10280            15 years old Female               9th grade   1.52  36.74
## 10281            16 years old Female              11th grade   1.60  68.04
## 10282            15 years old Female               9th grade   1.65  61.24
## 10283            16 years old Female              11th grade   1.55  49.90
## 10284            15 years old Female               9th grade   1.60  76.20
## 10285            15 years old   Male               9th grade   1.85  73.48
## 10286            17 years old   Male              11th grade   1.83 113.40
## 10287            16 years old   Male               9th grade   1.88  89.36
## 10288            17 years old   Male              11th grade   1.93  83.92
## 10289            14 years old Female               9th grade   1.75  65.77
## 10290            17 years old Female              11th grade   1.75  68.04
## 10291            14 years old Female               9th grade   1.68  67.13
## 10292            14 years old   Male               9th grade   1.70  56.70
## 10293            14 years old Female               9th grade   1.63  54.89
## 10294            16 years old Female              11th grade   1.73  61.24
## 10295            14 years old Female               9th grade   1.68  52.16
## 10296            16 years old Female              11th grade     NA     NA
## 10297            15 years old Female               9th grade   1.75  56.70
## 10298            16 years old   Male              11th grade   1.80  61.69
## 10299            14 years old   Male               9th grade   1.85  95.26
## 10300            17 years old   Male              11th grade   1.88  73.48
## 10301            15 years old Female               9th grade   1.80  72.58
## 10302            16 years old Female              11th grade   1.65  56.70
## 10303            17 years old Female              12th grade   1.65  70.31
## 10304            15 years old   Male               9th grade   1.60  52.16
## 10305            14 years old Female               9th grade   1.75  81.65
## 10306            17 years old Female              12th grade   1.68  68.04
## 10307   18 years old or older   Male              12th grade   1.83 117.94
## 10308   18 years old or older Female              12th grade     NA     NA
## 10309            15 years old Female              10th grade   1.60  55.34
## 10310            17 years old Female              12th grade   1.68  56.70
## 10311            15 years old Female              10th grade   1.63  58.06
## 10312   18 years old or older Female              12th grade   1.60  58.97
## 10313            16 years old Female              10th grade   1.60  45.36
## 10314            17 years old Female                    <NA>   1.70  77.11
## 10315            16 years old   Male              10th grade   1.80  77.11
## 10316   18 years old or older Female              12th grade   1.60  77.11
## 10317            16 years old Female              10th grade   1.65  68.04
## 10318            16 years old   Male              10th grade   1.78  72.58
## 10319            15 years old Female              10th grade   1.75  54.43
## 10320            16 years old Female              10th grade   1.63  56.70
## 10321            16 years old Female              10th grade     NA     NA
## 10322   18 years old or older   Male              12th grade   1.98 142.88
## 10323            15 years old   Male              10th grade   1.75  72.58
## 10324   18 years old or older Female              12th grade   1.73 108.86
## 10325            15 years old   Male              10th grade   1.75 113.40
## 10326            17 years old Female              12th grade   1.75  61.24
## 10327            15 years old   Male              10th grade   1.83  79.83
## 10328            17 years old   Male              12th grade   1.83  62.14
## 10329            16 years old Female              10th grade   1.68  65.77
## 10330            15 years old Female              10th grade   1.57  49.90
## 10331            15 years old Female              10th grade   1.50  77.11
## 10332            17 years old   Male              12th grade   1.90  83.92
## 10333            15 years old Female              10th grade   1.55  58.97
## 10334            17 years old   Male              12th grade   1.96  92.99
## 10335            15 years old   Male              10th grade   1.78  65.77
## 10336   18 years old or older   Male              12th grade   1.78  77.11
## 10337            16 years old Female              10th grade   1.63  65.77
## 10338            17 years old Female              12th grade   1.63  52.16
## 10339            16 years old Female              10th grade   1.60  61.24
## 10340            15 years old   Male              10th grade   1.65  65.77
## 10341            16 years old Female              10th grade   1.57  58.97
## 10342            17 years old Female              12th grade   1.70  61.24
## 10343            16 years old   Male              10th grade     NA     NA
## 10344            14 years old   Male               9th grade     NA     NA
## 10345            14 years old Female               9th grade   1.65  54.43
## 10346            16 years old   Male Ungraded or other grade   1.70  67.13
## 10347            14 years old Female               9th grade     NA     NA
## 10348            17 years old   Male              11th grade   1.90  81.65
## 10349            15 years old   Male               9th grade   1.83 145.15
## 10350            15 years old Female               9th grade   1.68  63.50
## 10351            17 years old Female              11th grade   1.42  40.82
## 10352            15 years old Female               9th grade     NA     NA
## 10353            17 years old Female              11th grade   1.52  40.82
## 10354            16 years old Female               9th grade   1.70  86.18
## 10355            16 years old Female              11th grade     NA     NA
## 10356            15 years old   Male               9th grade   1.88  65.77
## 10357            14 years old   Male               9th grade   1.70  68.04
## 10358            17 years old   Male              11th grade   1.85 140.62
## 10359            14 years old   Male               9th grade   1.63  50.35
## 10360            17 years old   Male              11th grade   1.80  68.95
## 10361            15 years old Female              10th grade   1.63  70.31
## 10362            14 years old   Male               9th grade   1.65  63.50
## 10363            17 years old Female              11th grade   1.73  82.56
## 10364            16 years old   Male              11th grade   1.83 104.33
## 10365            15 years old   Male              10th grade   1.80 106.60
## 10366            17 years old   Male              11th grade   1.65  58.97
## 10367            16 years old Female              10th grade   1.52  56.70
## 10368            15 years old   Male               9th grade   1.83  72.58
## 10369            15 years old   Male              10th grade     NA     NA
## 10370            14 years old Female               9th grade     NA     NA
## 10371            17 years old   Male              11th grade   1.68  63.50
## 10372            15 years old   Male              10th grade   1.68  63.50
## 10373            16 years old   Male              11th grade   1.78 111.13
## 10374            14 years old   Male               9th grade   1.73  67.13
## 10375            17 years old   Male              11th grade   1.60  58.51
## 10376   18 years old or older Female              12th grade   1.52 101.61
## 10377            14 years old Female               9th grade   1.52  51.26
## 10378            15 years old   Male              10th grade   1.75 104.33
## 10379   18 years old or older Female              11th grade   1.60  72.58
## 10380            15 years old Female              10th grade   1.55  50.80
## 10381            17 years old   Male              11th grade   1.63  54.43
## 10382            16 years old Female              10th grade   1.57  48.99
## 10383            15 years old Female               9th grade   1.57  83.92
## 10384            16 years old   Male              11th grade   1.98 133.81
## 10385            16 years old   Male              10th grade   1.70  61.24
## 10386            14 years old Female               9th grade   1.60  72.58
## 10387            15 years old Female               9th grade   1.52  46.72
## 10388            15 years old Female               9th grade   1.52  50.80
## 10389            15 years old   Male               9th grade   1.88  88.00
## 10390            15 years old Female               9th grade   1.60  39.01
## 10391            15 years old   Male               9th grade   1.70  86.18
## 10392            15 years old   Male               9th grade   1.65  49.90
## 10393            14 years old Female               9th grade   1.50  58.97
## 10394            15 years old   Male               9th grade   1.80  77.11
## 10395            15 years old   Male              10th grade   1.80  73.94
## 10396            15 years old Female              10th grade   1.65  65.32
## 10397            15 years old Female               9th grade     NA     NA
## 10398            15 years old Female               9th grade     NA     NA
## 10399            16 years old Female              10th grade   1.60  72.58
## 10400            16 years old   Male              10th grade   1.80  61.24
## 10401            15 years old   Male              10th grade   1.75  72.58
## 10402            15 years old   Male               9th grade   1.73  65.77
## 10403            14 years old Female               9th grade   1.57  52.16
## 10404            16 years old   Male              10th grade   1.78  56.25
## 10405            16 years old Female              10th grade   1.65  56.70
## 10406            16 years old   Male              10th grade   1.78  99.79
## 10407            16 years old   Male              10th grade   1.78  63.50
## 10408            16 years old Female              10th grade   1.80  61.24
## 10409            16 years old   Male              10th grade   1.83  73.94
## 10410            15 years old Female              10th grade     NA     NA
## 10411            16 years old Female              10th grade   1.65  58.97
## 10412            14 years old Female               9th grade   1.70  63.50
## 10413            16 years old   Male              10th grade   1.83  65.77
## 10414            15 years old   Male              10th grade   1.78  63.50
## 10415            14 years old Female               9th grade   1.57  52.16
## 10416            14 years old   Male               9th grade   1.75  65.77
## 10417            15 years old   Male               9th grade   1.73  83.92
## 10418            15 years old Female              10th grade   1.55  53.52
## 10419            16 years old   Male                    <NA>   1.83  70.31
## 10420            14 years old   Male               9th grade   1.75  61.24
## 10421            16 years old Female              10th grade   1.68  63.50
## 10422            16 years old   Male              10th grade   1.75  71.22
## 10423            15 years old   Male               9th grade   1.68  58.97
## 10424            15 years old   Male               9th grade   1.70  90.72
## 10425            16 years old Female              10th grade   1.68  59.88
## 10426            16 years old Female              10th grade   1.57  54.43
## 10427            15 years old Female              10th grade   1.60  61.24
## 10428            14 years old   Male               9th grade   1.68  72.58
## 10429            16 years old   Male              10th grade   1.85  78.02
## 10430            14 years old   Male               9th grade   1.57  36.29
## 10431            16 years old   Male              10th grade   1.55  48.08
## 10432            14 years old   Male               9th grade   1.73  61.24
## 10433            16 years old Female              10th grade   1.63  47.63
## 10434            15 years old Female               9th grade   1.55  43.55
## 10435            16 years old Female              10th grade   1.55  52.16
## 10436            14 years old Female               9th grade   1.60  55.79
## 10437            15 years old   Male               9th grade   1.80  86.18
## 10438            15 years old Female               9th grade     NA     NA
## 10439            16 years old   Male              10th grade   1.85  86.18
## 10440            14 years old   Male               9th grade   1.63  52.16
## 10441            16 years old   Male              10th grade   1.90  86.18
## 10442            16 years old Female              10th grade   1.60  55.79
## 10443            14 years old Female               9th grade   1.55  45.81
## 10444            15 years old Female               9th grade   1.68  55.79
## 10445            16 years old Female              10th grade   1.75  63.50
## 10446            14 years old Female               9th grade   1.60  52.16
## 10447            17 years old   Male              11th grade   1.65  50.80
## 10448            17 years old   Male              11th grade   1.73  74.84
## 10449            17 years old Female              12th grade   1.57  44.45
## 10450            17 years old Female              11th grade     NA     NA
## 10451            17 years old   Male              11th grade   1.85  81.65
## 10452            16 years old   Male              11th grade   1.83  74.84
## 10453   18 years old or older Female              12th grade   1.73  89.81
## 10454   18 years old or older   Male              12th grade   1.78  79.38
## 10455            17 years old   Male              12th grade   1.68  54.43
## 10456            17 years old Female              11th grade   1.63  70.31
## 10457            17 years old   Male              12th grade   1.73  58.97
## 10458            16 years old Female              11th grade   1.60  49.90
## 10459            17 years old Female              11th grade     NA     NA
## 10460   18 years old or older   Male              12th grade   1.83  63.50
## 10461            17 years old Female              11th grade     NA     NA
## 10462            17 years old Female              12th grade   1.68  63.50
## 10463   18 years old or older   Male              12th grade   1.88 131.54
## 10464   18 years old or older Female              12th grade   1.65  74.84
## 10465   18 years old or older Female              12th grade   1.68  54.43
## 10466            17 years old   Male              12th grade   1.78  61.24
## 10467   18 years old or older   Male              12th grade   1.78  59.88
## 10468            16 years old Female              10th grade   1.60  54.43
## 10469            17 years old Female              11th grade   1.78  71.67
## 10470            17 years old   Male              12th grade   1.65  63.05
## 10471   18 years old or older Female              12th grade   1.65  59.88
## 10472            17 years old   Male              11th grade   1.73  70.31
## 10473            17 years old   Male              11th grade   1.88  79.38
## 10474            16 years old   Male              11th grade   1.78  70.31
## 10475   18 years old or older Female              11th grade     NA     NA
## 10476            17 years old Female              11th grade   1.60  52.16
## 10477            17 years old Female              11th grade   1.65  58.97
## 10478            16 years old Female              11th grade   1.73  63.50
## 10479            17 years old   Male              11th grade   1.80  95.26
## 10480   18 years old or older   Male              12th grade   1.85  79.38
## 10481   18 years old or older Female              11th grade   1.60  64.41
## 10482            17 years old   Male              11th grade   1.73  71.67
## 10483   18 years old or older   Male              12th grade   1.75  74.84
## 10484            17 years old   Male              11th grade   1.75  63.50
## 10485   18 years old or older Female              12th grade   1.65  90.72
## 10486            16 years old Female              11th grade   1.65  53.52
## 10487   18 years old or older   Male              12th grade   1.70  77.11
## 10488            17 years old   Male              11th grade   1.78  79.38
## 10489            17 years old Female              12th grade   1.63  54.43
## 10490            17 years old   Male              12th grade   1.75  61.24
## 10491            16 years old   Male              11th grade   1.70  65.77
## 10492            17 years old   Male              12th grade   1.80  72.12
## 10493            16 years old Female              11th grade   1.68  90.72
## 10494            16 years old Female              11th grade   1.52  42.18
## 10495            17 years old   Male              12th grade   1.80 127.01
## 10496            16 years old Female              10th grade   1.65  49.90
## 10497            15 years old Female              10th grade   1.68  48.54
## 10498            17 years old   Male              10th grade   1.75  72.58
## 10499            16 years old Female              10th grade   1.68  57.15
## 10500            16 years old Female              10th grade   1.60  43.09
## 10501            15 years old   Male              10th grade   1.70  58.97
## 10502            15 years old Female              10th grade   1.65  53.07
## 10503            15 years old Female              10th grade   1.63  54.43
## 10504            17 years old   Male              11th grade   1.90  95.26
## 10505            15 years old Female              10th grade   1.68  81.65
## 10506            15 years old Female               9th grade   1.60  49.90
## 10507            15 years old   Male               9th grade   1.75  72.58
## 10508            15 years old   Male               9th grade   1.83  61.24
## 10509            15 years old   Male               9th grade   1.83  71.67
## 10510            15 years old   Male               9th grade   1.88  81.65
## 10511            16 years old   Male              10th grade   1.75  97.52
## 10512            16 years old   Male               9th grade   1.68  49.90
## 10513            16 years old   Male              10th grade   1.80 138.80
## 10514            17 years old   Male              11th grade   1.65  59.88
## 10515            17 years old   Male              11th grade   1.70  54.43
## 10516            15 years old   Male               9th grade   1.70  63.50
## 10517            17 years old   Male              10th grade   1.73  68.04
## 10518            15 years old   Male               9th grade   1.85  88.45
## 10519            16 years old Female              10th grade   1.55  61.24
## 10520   18 years old or older Female              12th grade   1.55  68.04
## 10521            14 years old Female               9th grade   1.55  41.28
## 10522            16 years old Female              10th grade   1.80  61.69
## 10523            16 years old Female              10th grade   1.50  49.90
## 10524            16 years old   Male              10th grade   1.73  70.31
## 10525            15 years old   Male               9th grade   1.70  95.26
## 10526            14 years old Female               9th grade     NA     NA
## 10527            15 years old   Male               9th grade   1.75  46.27
## 10528            17 years old Female              11th grade   1.60  54.43
## 10529            17 years old Female              12th grade   1.63  84.37
## 10530            15 years old   <NA>              10th grade     NA     NA
## 10531            17 years old   Male              11th grade   1.73  58.97
## 10532   18 years old or older   Male              12th grade   1.80  68.04
## 10533            17 years old   Male              11th grade   1.78  72.58
## 10534            17 years old Female              11th grade     NA     NA
## 10535   18 years old or older   Male              12th grade   1.96  69.85
## 10536            17 years old   Male              12th grade   1.80  84.37
## 10537            17 years old Female              11th grade   1.50  47.63
## 10538            15 years old   Male               9th grade   1.73  71.67
## 10539            15 years old   Male              10th grade   1.78  67.13
## 10540            14 years old Female               9th grade   1.60  56.70
## 10541            15 years old   Male               9th grade   1.83  65.77
## 10542            15 years old Female               9th grade   1.63  71.67
## 10543            15 years old Female               9th grade   1.57  58.97
## 10544            15 years old Female                    <NA>   1.60  58.97
## 10545            15 years old   Male              10th grade   1.78  78.93
## 10546            14 years old   Male               9th grade   1.78  63.50
## 10547            15 years old   Male               9th grade   1.75  77.11
## 10548            15 years old Female               9th grade   1.60  52.16
## 10549            15 years old Female               9th grade   1.65  52.16
## 10550            14 years old Female               9th grade   1.65  70.31
## 10551            15 years old Female               9th grade   1.73  61.24
## 10552            14 years old   Male               9th grade   1.70  57.15
## 10553            14 years old   Male               9th grade   1.75  64.41
## 10554            14 years old Female               9th grade   1.55  49.90
## 10555            14 years old   Male               9th grade   1.68  52.16
## 10556            17 years old   Male              10th grade   1.80  88.45
## 10557            16 years old Female              10th grade   1.68  90.72
## 10558            16 years old Female              11th grade   1.70  72.58
## 10559   18 years old or older Female              12th grade   1.57  77.11
## 10560   18 years old or older Female              12th grade   1.60  50.80
## 10561            16 years old Female              10th grade   1.68  71.67
## 10562            15 years old Female              10th grade   1.60  53.98
## 10563            17 years old Female              11th grade   1.70  88.45
## 10564            16 years old Female              10th grade     NA     NA
## 10565   18 years old or older   Male              12th grade   1.80 106.60
## 10566            17 years old Female              11th grade   1.60  67.59
## 10567            16 years old Female              11th grade   1.57  76.20
## 10568            17 years old   Male              11th grade   1.78  71.22
## 10569            17 years old Female              11th grade     NA     NA
## 10570            16 years old Female              11th grade     NA     NA
## 10571            17 years old   Male              11th grade   1.90  68.04
## 10572            17 years old Female              11th grade   1.63  68.04
## 10573            17 years old Female              11th grade   1.68  78.47
## 10574            16 years old Female              11th grade   1.78  56.25
## 10575            16 years old   Male              10th grade     NA     NA
## 10576            16 years old Female              10th grade   1.80 117.03
## 10577            15 years old Female              10th grade     NA     NA
## 10578            16 years old Female              10th grade   1.63  52.16
## 10579            15 years old Female              10th grade   1.63  63.50
## 10580            15 years old Female              10th grade   1.57  65.77
## 10581            16 years old   Male              10th grade   1.78  61.24
## 10582            16 years old Female              10th grade   1.60  53.52
## 10583            16 years old   Male              10th grade   1.70  88.45
## 10584            16 years old   Male              10th grade   1.80  63.50
## 10585            15 years old   Male              10th grade   1.83 102.06
## 10586            15 years old   Male               9th grade   1.73  54.89
## 10587            14 years old Female               9th grade     NA     NA
## 10588            14 years old Female               9th grade   1.57  54.43
## 10589            14 years old   Male               9th grade   1.70  72.58
## 10590            15 years old   Male               9th grade   1.83  64.86
## 10591            15 years old Female               9th grade   1.47  53.07
## 10592            15 years old Female               9th grade   1.75  67.59
## 10593            15 years old Female               9th grade     NA     NA
## 10594            14 years old   Male               9th grade   1.83  90.72
## 10595            15 years old   Male               9th grade   1.73  58.97
## 10596            14 years old Female               9th grade     NA     NA
## 10597            14 years old Female               9th grade   1.70  54.43
## 10598            14 years old   Male               9th grade   1.83  63.50
## 10599            16 years old   Male               9th grade   1.75 114.76
## 10600            14 years old Female               9th grade     NA     NA
## 10601            15 years old Female               9th grade   1.52  49.44
## 10602            16 years old   Male               9th grade   1.85 104.33
## 10603            15 years old Female               9th grade   1.57  68.95
## 10604            14 years old   Male               9th grade   1.78  77.11
## 10605            16 years old   Male               9th grade   1.75  63.50
## 10606            16 years old   Male               9th grade   1.75 107.05
## 10607            16 years old Female              10th grade   1.57  95.26
## 10608            15 years old   Male               9th grade   1.78 111.13
## 10609            14 years old Female               9th grade   1.65  51.26
## 10610            14 years old Female               9th grade     NA     NA
## 10611            14 years old Female                    <NA>   1.68  52.16
## 10612            16 years old Female               9th grade   1.68  68.04
## 10613            15 years old Female               9th grade   1.83  71.67
## 10614            14 years old   Male               9th grade     NA     NA
## 10615            15 years old Female               9th grade   1.65  49.90
## 10616            15 years old Female              10th grade   1.65  54.43
## 10617            17 years old   Male              10th grade   1.80  63.50
## 10618            16 years old   Male              10th grade   1.75  90.72
## 10619            15 years old   Male              10th grade   1.83  63.50
## 10620            17 years old Female              11th grade   1.63  54.89
## 10621            15 years old Female              10th grade   1.70  52.62
## 10622            16 years old Female              10th grade   1.80  61.69
## 10623   18 years old or older   Male              11th grade   1.90 102.97
## 10624   18 years old or older   Male              12th grade   1.73  90.72
## 10625            15 years old Female              10th grade   1.57  79.38
## 10626            16 years old Female              11th grade   1.50  65.77
## 10627            17 years old Female              11th grade   1.60  47.63
## 10628            15 years old Female              10th grade   1.70  66.23
## 10629            16 years old   Male              11th grade   1.73  91.17
## 10630            16 years old Female              10th grade   1.68 102.06
## 10631            15 years old   Male              10th grade   1.75  72.58
## 10632            16 years old   Male              10th grade   1.73  78.47
## 10633            16 years old   Male              10th grade   1.83  66.68
## 10634            15 years old   Male               9th grade   1.65  54.43
## 10635            15 years old   Male               9th grade   1.78  46.27
## 10636            17 years old Female              10th grade   1.78  97.52
## 10637            16 years old   Male              10th grade     NA     NA
## 10638 12 years old or younger Female Ungraded or other grade     NA     NA
## 10639            16 years old Female              10th grade   1.50  40.82
## 10640            15 years old   Male              10th grade   1.73 104.33
## 10641            16 years old Female              11th grade   1.57  61.24
## 10642            14 years old   Male               9th grade     NA     NA
## 10643            16 years old   Male              10th grade   1.85  82.10
## 10644            16 years old Female              10th grade   1.63  68.95
## 10645            17 years old   Male              10th grade   1.88  78.02
## 10646            15 years old Female               9th grade   1.73  58.51
## 10647            16 years old   Male              10th grade   1.65  49.90
## 10648            15 years old   Male               9th grade   1.83  69.85
## 10649            15 years old   Male               9th grade   1.75  73.48
## 10650            17 years old   Male              10th grade   1.88 129.28
## 10651            15 years old   Male               9th grade   1.78  73.94
## 10652            15 years old   Male               9th grade   1.83  92.99
## 10653            15 years old Female               9th grade   1.57  48.54
## 10654            14 years old Female               9th grade   1.63  65.77
## 10655            15 years old Female               9th grade   1.55  65.77
## 10656            15 years old   Male               9th grade   1.73  61.69
## 10657            14 years old Female               9th grade   1.70  54.43
## 10658            16 years old Female              10th grade   1.57  54.89
## 10659            14 years old Female               9th grade   1.57  41.73
## 10660            15 years old   Male               9th grade   1.78  95.26
## 10661            14 years old   Male               9th grade   1.65  49.90
## 10662            16 years old   Male               9th grade   1.83 104.33
## 10663            14 years old Female               9th grade   1.73  68.04
## 10664            14 years old Female               9th grade   1.57  54.89
## 10665            14 years old Female               9th grade   1.60  48.08
## 10666            15 years old   Male               9th grade   1.70  70.31
## 10667            14 years old   Male               9th grade   1.68  54.43
## 10668            17 years old Female              11th grade   1.52  43.09
## 10669            15 years old Female              10th grade   1.65  65.77
## 10670            15 years old Female              10th grade   1.52  65.77
## 10671            16 years old Female              10th grade   1.63  63.50
## 10672            16 years old Female              10th grade   1.68  58.97
## 10673            16 years old   Male              10th grade   1.75  68.04
## 10674            15 years old   Male              10th grade   1.78  67.13
## 10675            16 years old   Male              10th grade   1.83  68.04
## 10676            16 years old Female              10th grade   1.60  52.16
## 10677            16 years old   Male              10th grade   1.85  70.31
## 10678            16 years old Female              10th grade   1.68  56.70
## 10679            17 years old Female              11th grade   1.57  53.98
## 10680            15 years old Female              10th grade   1.68  54.43
## 10681            15 years old Female              10th grade   1.60  53.52
## 10682            15 years old Female              10th grade   1.65  84.82
## 10683            16 years old Female              10th grade   1.73  63.50
## 10684            17 years old   Male              11th grade   1.73  67.59
## 10685            16 years old   Male              10th grade   1.70 145.15
## 10686            16 years old Female              10th grade     NA     NA
## 10687            17 years old   Male              11th grade   1.78  99.79
## 10688            17 years old   Male              11th grade   1.78  95.26
## 10689   18 years old or older   Male              11th grade   1.83  90.72
## 10690            17 years old Female              11th grade   1.70  95.26
## 10691            17 years old Female              11th grade   1.73  88.45
## 10692            17 years old Female              12th grade   1.60  58.97
## 10693            16 years old   Male              11th grade   1.83  87.54
## 10694            17 years old Female              12th grade   1.57  70.31
## 10695            17 years old Female              11th grade   1.63  65.77
## 10696            16 years old   Male              11th grade   1.63  68.04
## 10697   18 years old or older   Male              12th grade   1.83  61.24
## 10698            17 years old Female              12th grade   1.63  63.50
## 10699   18 years old or older Female              12th grade   1.55  73.94
## 10700            17 years old   Male              11th grade   1.70  63.50
## 10701            17 years old Female              11th grade   1.57  51.26
## 10702   18 years old or older   Male              12th grade   1.88  68.04
## 10703   18 years old or older   Male              11th grade   1.75  68.04
## 10704            16 years old Female              11th grade     NA     NA
## 10705            16 years old Female              11th grade   1.70  77.11
## 10706            17 years old   Male              11th grade   1.73 108.86
## 10707            16 years old   Male              10th grade   1.98 142.88
## 10708            16 years old   Male              11th grade   1.88  74.84
## 10709            14 years old Female               9th grade   1.57  54.43
## 10710            17 years old   Male              11th grade   1.65  54.43
## 10711            17 years old Female              12th grade   1.68 136.08
## 10712   18 years old or older Female              12th grade   1.68  63.50
## 10713            17 years old   Male              12th grade   1.85  65.77
## 10714   18 years old or older Female              12th grade   1.60  54.43
## 10715   18 years old or older   Male              12th grade   1.78  72.58
## 10716   18 years old or older Female              12th grade   1.65  58.97
## 10717   18 years old or older Female              12th grade   1.63  52.16
## 10718   18 years old or older Female              12th grade   1.57  59.88
## 10719            17 years old Female              12th grade   1.75  58.97
## 10720   18 years old or older   Male              12th grade   1.93 106.60
## 10721   18 years old or older   Male              12th grade   1.75  65.77
## 10722   18 years old or older Female              12th grade   1.73  63.50
## 10723            17 years old Female              12th grade   1.73  61.24
## 10724            17 years old Female              12th grade   1.60  58.97
## 10725            17 years old Female              12th grade   1.60  72.58
## 10726   18 years old or older Female              12th grade   1.75  65.77
## 10727   18 years old or older   Male              12th grade   1.78  74.84
## 10728   18 years old or older   Male              12th grade   1.83  92.08
## 10729   18 years old or older Female              12th grade   1.55  79.38
## 10730            17 years old Female              12th grade   1.60  53.07
## 10731            17 years old Female              12th grade   1.55  54.43
## 10732   18 years old or older   Male              12th grade   1.78  65.77
## 10733   18 years old or older Female              12th grade   1.63  70.31
## 10734            17 years old   Male              12th grade   1.70  65.77
## 10735            17 years old Female              12th grade   1.73  52.16
## 10736            17 years old   Male              12th grade   1.90  77.11
## 10737   18 years old or older Female              12th grade   1.60  56.70
## 10738            17 years old   Male              12th grade   1.80  83.92
## 10739            17 years old Female              12th grade   1.55  48.99
## 10740   18 years old or older   Male              12th grade   1.90  61.24
## 10741            17 years old Female              12th grade   1.73  86.18
## 10742   18 years old or older Female              12th grade   1.60  86.18
## 10743            16 years old Female              11th grade   1.65  61.69
## 10744            17 years old   Male              11th grade   1.85  68.04
## 10745            17 years old   Male              11th grade   1.68  65.77
## 10746            16 years old   Male              11th grade   1.83  68.04
## 10747            17 years old Female              11th grade     NA     NA
## 10748            16 years old Female              11th grade   1.63  63.50
## 10749            17 years old   Male              11th grade   1.70  69.40
## 10750            16 years old Female              10th grade   1.57  49.44
## 10751            16 years old   Male              10th grade   1.75  81.65
## 10752            15 years old Female              10th grade     NA     NA
## 10753            15 years old   Male              10th grade   1.63  52.16
## 10754            16 years old Female              10th grade   1.68  81.65
## 10755            15 years old   Male              10th grade   2.01  77.11
## 10756            15 years old Female              10th grade   1.65  88.45
## 10757            15 years old Female              10th grade   1.60  63.50
## 10758            16 years old   Male              10th grade   1.78  74.84
## 10759            16 years old Female              10th grade   1.65  49.90
## 10760            15 years old Female              10th grade   1.60  44.91
## 10761            16 years old   Male              10th grade   1.75  60.78
## 10762            15 years old   Male              10th grade   1.78  74.84
## 10763            15 years old Female              10th grade   1.60  52.16
## 10764            15 years old   Male              10th grade   1.80 102.06
## 10765            15 years old   Male              10th grade     NA     NA
## 10766            16 years old Female              10th grade   1.57  44.91
## 10767            15 years old   Male              10th grade   1.65  52.62
## 10768            15 years old   Male              10th grade     NA     NA
## 10769            15 years old Female              10th grade   1.52  34.93
## 10770            16 years old Female              10th grade   1.60  44.00
## 10771            15 years old   Male              10th grade   1.78  54.89
## 10772            15 years old Female              10th grade   1.75  65.77
## 10773            16 years old Female              10th grade   1.57  52.16
## 10774            16 years old Female              10th grade   1.63  55.34
## 10775            15 years old   Male              10th grade   1.88  86.18
## 10776            16 years old   Male              10th grade   1.80  79.38
## 10777            15 years old Female              10th grade   1.60  54.43
## 10778            15 years old   Male              10th grade     NA     NA
## 10779   18 years old or older   Male              12th grade   1.78  78.47
## 10780            16 years old   Male              10th grade   1.80  62.14
## 10781            17 years old Female              12th grade   1.57  70.76
## 10782            15 years old   Male              10th grade   1.85 119.75
## 10783            16 years old   Male              11th grade   1.75  58.97
## 10784            17 years old Female              11th grade   1.70  99.79
## 10785            15 years old   Male              10th grade   1.80  77.11
## 10786            15 years old   Male              10th grade   1.65  86.18
## 10787            17 years old Female              11th grade   1.63  55.34
## 10788   18 years old or older   Male              12th grade   1.83  79.38
## 10789            16 years old Female              10th grade   1.65  54.43
## 10790            15 years old   Male              10th grade   1.75  65.77
## 10791            16 years old   Male              10th grade   1.80 113.40
## 10792            17 years old   Male              12th grade   1.73  61.24
## 10793            15 years old Female               9th grade   1.65  63.50
## 10794            16 years old Female              11th grade   1.47  49.44
## 10795            15 years old   Male              10th grade   1.70  52.16
## 10796            15 years old Female              10th grade   1.68  51.26
## 10797            15 years old   Male              10th grade   1.85 108.86
## 10798            14 years old Female               9th grade   1.52  45.81
## 10799            16 years old   Male              11th grade   1.78 131.54
## 10800            15 years old Female               9th grade     NA     NA
## 10801            16 years old Female              10th grade     NA     NA
## 10802   18 years old or older   Male              12th grade   1.78  96.16
## 10803            14 years old   Male               9th grade   1.65  56.70
## 10804            15 years old Female              10th grade     NA     NA
## 10805            15 years old Female              10th grade   1.65  80.74
## 10806            16 years old Female              10th grade   1.65  68.04
## 10807            16 years old   Male              10th grade     NA     NA
## 10808            14 years old   Male               9th grade   1.60  54.43
## 10809            16 years old   Male              10th grade     NA     NA
## 10810            14 years old   Male               9th grade   1.70  54.43
## 10811            15 years old   Male               9th grade   1.75  61.69
## 10812            15 years old Female               9th grade   1.60  47.63
## 10813            16 years old   Male              10th grade   1.83  68.49
## 10814            17 years old   Male              11th grade   1.80  88.91
## 10815            15 years old   Male               9th grade   1.75  61.24
## 10816            16 years old Female              10th grade   1.60  49.44
## 10817            16 years old Female              11th grade   1.55  68.04
## 10818            14 years old   Male               9th grade   1.63  45.81
## 10819            16 years old Female              11th grade   1.65  65.77
## 10820            17 years old Female              11th grade     NA     NA
## 10821            15 years old Female               9th grade   1.60  44.00
## 10822            14 years old Female               9th grade     NA     NA
## 10823            14 years old Female               9th grade   1.52  61.24
## 10824            15 years old Female              10th grade   1.57  47.63
## 10825            16 years old Female              10th grade     NA     NA
## 10826            16 years old Female              10th grade   1.68  53.52
## 10827            16 years old Female              10th grade   1.70  61.69
## 10828            15 years old Female               9th grade     NA     NA
## 10829            15 years old Female               9th grade   1.63  88.45
## 10830            15 years old Female              10th grade   1.55  67.13
## 10831            16 years old Female              11th grade   1.60  77.11
## 10832            15 years old Female              10th grade   1.63 125.19
## 10833   18 years old or older Female              12th grade     NA     NA
## 10834            17 years old Female              11th grade     NA     NA
## 10835            15 years old Female               9th grade     NA     NA
## 10836            16 years old Female              10th grade   1.68  65.77
## 10837            15 years old   Male               9th grade   1.75  74.84
## 10838            17 years old   Male              11th grade   1.73  61.24
## 10839            14 years old Female               9th grade     NA     NA
## 10840            15 years old   Male               9th grade   1.80  58.51
## 10841            14 years old   Male               9th grade   1.73 117.48
## 10842            14 years old Female               9th grade   1.57  56.25
## 10843            14 years old   Male               9th grade   1.78  61.24
## 10844            14 years old Female               9th grade   1.60  68.95
## 10845            15 years old   Male               9th grade   1.80  88.45
## 10846            14 years old   Male               9th grade   1.63  53.52
## 10847            14 years old   Male               9th grade   1.83  98.43
## 10848            14 years old Female               9th grade   1.60  75.75
## 10849            14 years old Female               9th grade   1.70  81.65
## 10850            15 years old   Male               9th grade   1.75  67.59
## 10851            15 years old   Male               9th grade   1.70 102.06
## 10852            14 years old   Male               9th grade   1.80 111.59
## 10853            14 years old   Male               9th grade   1.73  63.50
## 10854            15 years old   Male               9th grade   1.80 127.01
## 10855            15 years old   Male              10th grade   1.73  83.01
## 10856            15 years old Female              10th grade   1.65  58.06
## 10857            15 years old   Male              10th grade   1.85  85.28
## 10858            15 years old Female              10th grade   1.57  38.56
## 10859            17 years old Female              10th grade   1.57  68.04
## 10860            15 years old Female              10th grade   1.57  86.18
## 10861            16 years old   Male              10th grade     NA     NA
## 10862            15 years old   Male              10th grade   1.83  95.26
## 10863            15 years old   Male              10th grade   1.78 129.73
## 10864            16 years old   Male              10th grade   1.83 163.30
## 10865            16 years old   Male              10th grade   1.85 117.94
## 10866            15 years old   Male              10th grade     NA     NA
## 10867            15 years old Female              10th grade   1.60  45.36
## 10868            16 years old   Male              10th grade   1.73  68.04
## 10869            15 years old   Male              10th grade   1.73  77.11
## 10870            15 years old   Male              10th grade     NA     NA
## 10871            16 years old Female              11th grade     NA     NA
## 10872            17 years old Female              11th grade   1.57  52.16
## 10873            16 years old Female              11th grade     NA     NA
## 10874            17 years old   Male              11th grade   1.68  98.43
## 10875            16 years old Female              11th grade   1.52  40.82
## 10876            17 years old   Male              11th grade   1.85  77.11
## 10877            16 years old Female              11th grade   1.55  58.51
## 10878            16 years old   Male              11th grade   1.70  73.94
## 10879            16 years old   Male              11th grade   1.60  54.89
## 10880   18 years old or older   Male              11th grade     NA     NA
## 10881            15 years old   Male              10th grade   1.68  58.51
## 10882   18 years old or older   Male              12th grade   1.65  63.50
## 10883            16 years old   Male              11th grade   1.73  54.43
## 10884            16 years old   Male              11th grade   1.75  79.38
## 10885            16 years old Female              10th grade   1.63  45.36
## 10886            15 years old   Male              10th grade   1.83  79.38
## 10887            16 years old Female              10th grade   1.57  49.90
## 10888            17 years old   Male              11th grade   1.68  72.12
## 10889            17 years old   Male              11th grade   1.80  64.41
## 10890            16 years old Female              11th grade   1.57  47.17
## 10891            17 years old Female              11th grade   1.55  64.41
## 10892            16 years old   Male              10th grade   1.68  54.43
## 10893            16 years old   Male              11th grade   1.65  58.97
## 10894            15 years old Female              10th grade     NA     NA
## 10895            15 years old   Male              10th grade   1.75  78.02
## 10896            15 years old Female              10th grade   1.55  44.45
## 10897            16 years old Female              11th grade   1.70  59.88
## 10898            16 years old   Male              11th grade   1.75 117.48
## 10899            17 years old   Male              11th grade   1.75  58.97
## 10900   18 years old or older Female                    <NA>   1.75  52.16
## 10901            17 years old   Male              12th grade   1.70  64.41
## 10902            17 years old Female              12th grade   1.52  42.64
## 10903            17 years old   Male              12th grade   1.85  68.04
## 10904            17 years old   Male              12th grade     NA     NA
## 10905            17 years old   Male              12th grade   1.78 117.94
## 10906            17 years old   Male              12th grade   1.85  76.20
## 10907   18 years old or older Female              12th grade   1.73  71.22
## 10908   18 years old or older Female              12th grade   1.63  54.43
## 10909            17 years old Female              12th grade   1.55  54.43
## 10910   18 years old or older   Male              12th grade   1.70  72.58
## 10911   18 years old or older   Male              12th grade     NA     NA
## 10912            17 years old   Male              12th grade   1.68  81.65
## 10913            17 years old   Male              12th grade     NA     NA
## 10914            17 years old   Male              12th grade   1.73  67.59
## 10915   18 years old or older   Male              12th grade   1.70  56.70
## 10916            17 years old   Male              12th grade   1.83  73.48
## 10917            17 years old Female              12th grade   1.57  49.90
## 10918            17 years old   Male              12th grade   1.83  67.13
## 10919            15 years old Female               9th grade   1.60  49.90
## 10920            15 years old   Male               9th grade   1.57  43.55
## 10921            15 years old Female               9th grade   1.65  49.90
## 10922            15 years old Female               9th grade   1.70  56.70
## 10923            15 years old   Male               9th grade   1.63  53.52
## 10924            15 years old Female               9th grade   1.75  67.59
## 10925            15 years old Female               9th grade   1.52  57.61
## 10926            15 years old Female               9th grade   1.55  50.80
## 10927            15 years old   Male               9th grade   1.70  55.34
## 10928            15 years old Female               9th grade   1.68  49.90
## 10929            15 years old   Male               9th grade   1.70  61.24
## 10930            14 years old Female               9th grade   1.78  60.33
## 10931            15 years old   Male               9th grade   1.63  40.82
## 10932            15 years old   Male               9th grade   1.70  62.60
## 10933            14 years old Female               9th grade   1.55  46.27
## 10934            14 years old Female               9th grade     NA     NA
## 10935            15 years old   Male               9th grade   1.65  54.43
## 10936            14 years old   Male               9th grade   1.63  50.80
## 10937            15 years old   Male               9th grade   1.78  65.32
## 10938            14 years old   Male               9th grade   1.73  74.84
## 10939            16 years old   Male              11th grade   1.88  77.11
## 10940            17 years old Female              11th grade   1.57  48.54
## 10941            15 years old   Male              10th grade   1.83  81.65
## 10942            16 years old Female              11th grade   1.57  40.82
## 10943            16 years old   Male              11th grade   1.83  61.24
## 10944            16 years old Female              10th grade   1.80  91.63
## 10945            16 years old Female              10th grade     NA     NA
## 10946            15 years old   Male              10th grade   1.90  89.36
## 10947            16 years old Female              11th grade   1.52  47.63
## 10948            16 years old Female              11th grade     NA     NA
## 10949            16 years old   Male              10th grade   1.68  56.70
## 10950            15 years old   Male              10th grade   1.85  62.14
## 10951            16 years old   Male              10th grade   1.70  62.14
## 10952            15 years old   Male              10th grade   1.80  79.38
## 10953            15 years old Female              10th grade   1.52  49.90
## 10954            15 years old Female              10th grade   1.70  69.85
## 10955            17 years old   Male              12th grade   1.80  56.70
## 10956            15 years old   Male              10th grade   1.70  54.43
## 10957            17 years old Female              11th grade   1.73  99.34
## 10958            16 years old   Male              11th grade   1.63  46.72
## 10959            15 years old Female              10th grade   1.65  51.26
## 10960            16 years old Female              10th grade   1.60  56.25
## 10961            15 years old   Male               9th grade   1.55  50.80
## 10962            15 years old Female               9th grade   1.68  61.24
## 10963            14 years old   Male               9th grade   1.73  65.77
## 10964            14 years old Female               9th grade   1.65  44.45
## 10965            14 years old Female               9th grade   1.65  49.44
## 10966            14 years old Female               9th grade   1.65  47.63
## 10967            15 years old   Male               9th grade   1.65  54.43
## 10968            15 years old   Male               9th grade   1.63  51.71
## 10969            14 years old Female               9th grade   1.55  49.44
## 10970            14 years old Female               9th grade   1.57  57.61
## 10971            14 years old Female               9th grade     NA     NA
## 10972            15 years old   Male               9th grade   1.78  73.94
## 10973            14 years old   Male               9th grade   1.60  48.99
## 10974            14 years old   Male               9th grade   1.73  59.88
## 10975            14 years old   Male               9th grade   1.73  69.85
## 10976            14 years old   Male                    <NA>   1.73  64.86
## 10977            14 years old Female               9th grade   1.60  47.63
## 10978            15 years old Female               9th grade     NA     NA
## 10979            14 years old Female               9th grade   1.68  54.43
## 10980            15 years old Female               9th grade   1.70  54.43
## 10981            15 years old Female               9th grade   1.63  54.43
## 10982            14 years old Female               9th grade   1.52  44.45
## 10983            14 years old Female               9th grade   1.50  34.02
## 10984            15 years old   Male               9th grade   1.65  41.73
## 10985            14 years old   Male               9th grade   1.68  63.50
## 10986            14 years old   Male               9th grade   1.73  48.08
## 10987            14 years old Female               9th grade   1.52  52.16
## 10988            15 years old   Male               9th grade   1.68  68.04
## 10989            14 years old   Male               9th grade   1.70  79.83
## 10990            15 years old Female               9th grade   1.73  88.45
## 10991            14 years old   Male               9th grade   1.70  86.18
## 10992            15 years old Female               9th grade     NA     NA
## 10993            14 years old Female               9th grade     NA     NA
## 10994            14 years old Female               9th grade   1.55  54.43
## 10995            14 years old Female               9th grade   1.63  45.36
## 10996            14 years old   Male               9th grade   1.73  51.26
## 10997            15 years old Female               9th grade   1.65  65.32
## 10998            15 years old Female               9th grade   1.63  54.43
## 10999            14 years old Female               9th grade   1.57  58.97
## 11000            15 years old Female               9th grade   1.63  51.71
## 11001            14 years old Female               9th grade   1.63  47.17
## 11002            15 years old Female               9th grade   1.52  68.04
## 11003            15 years old Female               9th grade   1.65  53.07
## 11004            14 years old Female               9th grade   1.73  97.52
## 11005                    <NA> Female               9th grade     NA     NA
## 11006            14 years old   Male               9th grade   1.73  54.43
## 11007            15 years old Female               9th grade   1.55  44.45
## 11008            14 years old   Male               9th grade   1.68  72.58
## 11009            14 years old   Male               9th grade   1.75 104.33
## 11010            15 years old   Male               9th grade   1.83 104.33
## 11011            15 years old   Male               9th grade   1.68  68.04
## 11012            14 years old   Male               9th grade   1.65  53.98
## 11013            14 years old   Male               9th grade   1.73  66.23
## 11014                    <NA>   Male               9th grade     NA     NA
## 11015            14 years old   Male               9th grade   1.60  58.97
## 11016            14 years old   Male               9th grade   1.80  97.52
## 11017            14 years old   Male               9th grade   1.70  55.34
## 11018            14 years old   Male               9th grade   1.65  81.65
## 11019            15 years old Female               9th grade   1.57  52.16
## 11020            14 years old   Male               9th grade   1.68  68.04
## 11021            14 years old Female               9th grade   1.55  44.45
## 11022            14 years old Female               9th grade   1.65  40.82
## 11023            15 years old Female               9th grade   1.65  58.97
## 11024            16 years old   Male              10th grade   1.75  68.04
## 11025            16 years old Female              10th grade   1.50  52.62
## 11026            15 years old Female              10th grade   1.52  62.60
## 11027            16 years old Female              10th grade   1.60  58.97
## 11028            15 years old Female              10th grade   1.68  56.70
## 11029            16 years old   Male              10th grade   1.68  65.77
## 11030            15 years old   Male              10th grade   1.65  56.70
## 11031            16 years old Female              10th grade   1.52  46.72
## 11032            15 years old   Male              10th grade   1.78  58.97
## 11033            16 years old   Male              10th grade   1.73  86.18
## 11034            15 years old   Male              10th grade   1.78  81.65
## 11035            16 years old   Male              10th grade   1.73 108.41
## 11036            16 years old   Male              10th grade   1.73  58.06
## 11037            15 years old Female              10th grade   1.57  44.45
## 11038            15 years old   Male              10th grade   1.78  88.00
## 11039            16 years old   Male              10th grade   1.75  58.97
## 11040            16 years old   Male              10th grade   1.78  54.43
## 11041            16 years old   Male              10th grade   1.70  71.67
## 11042            15 years old   Male              10th grade   1.80  70.31
## 11043            15 years old   Male              10th grade   1.70  54.89
## 11044            16 years old   Male              10th grade   1.75  92.53
## 11045            16 years old Female              10th grade   1.55  66.23
## 11046            16 years old Female              10th grade   1.42  48.08
## 11047            15 years old Female              10th grade   1.50  54.43
## 11048            15 years old Female              10th grade   1.57  48.54
## 11049            16 years old Female              10th grade   1.63  70.31
## 11050            16 years old Female              10th grade   1.65  54.43
## 11051            15 years old Female              10th grade   1.55  52.62
## 11052            16 years old   Male              10th grade   1.75  65.77
## 11053            15 years old Female              10th grade   1.65  56.70
## 11054            15 years old Female              10th grade     NA     NA
## 11055            15 years old Female              10th grade   1.60  61.24
## 11056            14 years old Female               9th grade   1.52  39.01
## 11057            15 years old Female               9th grade   1.45  52.16
## 11058            14 years old Female               9th grade   1.52  40.82
## 11059            15 years old Female               9th grade   1.52  47.63
## 11060            14 years old   Male               9th grade   1.63  58.97
## 11061            17 years old Female              11th grade   1.52  52.16
## 11062            16 years old Female              11th grade   1.70  65.77
## 11063            16 years old Female              11th grade   1.63  73.48
## 11064            17 years old Female              11th grade   1.52  52.16
## 11065            16 years old Female              11th grade   1.52  48.08
## 11066            16 years old Female              11th grade   1.63  54.43
## 11067            17 years old Female              11th grade   1.65  63.50
## 11068            16 years old   Male              11th grade   1.65  62.14
## 11069            16 years old Female              11th grade   1.65 104.33
## 11070            17 years old Female              11th grade   1.63  55.79
## 11071            17 years old   Male              11th grade   1.70  81.19
## 11072            17 years old Female              11th grade   1.52  45.36
## 11073            14 years old   Male               9th grade   1.55  43.09
## 11074            15 years old   Male               9th grade   1.70  97.07
## 11075            14 years old   Male               9th grade   1.83  79.83
## 11076            14 years old Female               9th grade   1.50  36.29
## 11077            14 years old Female               9th grade   1.45  34.93
## 11078            15 years old Female               9th grade   1.50  41.28
## 11079            15 years old Female               9th grade   1.63  51.26
## 11080            14 years old   <NA>               9th grade     NA     NA
## 11081            14 years old Female               9th grade   1.52  40.82
## 11082            14 years old Female               9th grade   1.55  47.63
## 11083            14 years old Female               9th grade   1.57  72.58
## 11084            15 years old Female               9th grade   1.57  54.43
## 11085            14 years old Female               9th grade   1.65  57.15
## 11086            15 years old Female               9th grade   1.68  67.59
## 11087            15 years old   Male               9th grade   1.63  42.18
## 11088            16 years old   Male              10th grade   1.80  79.38
## 11089            15 years old   Male              10th grade   1.83  86.18
## 11090            16 years old Female              10th grade   1.55  54.43
## 11091            17 years old Female              11th grade   1.55  52.16
## 11092            15 years old Female               9th grade   1.68  56.70
## 11093            16 years old   Male              10th grade   1.73  72.58
## 11094            16 years old   Male              10th grade   1.78  63.50
## 11095            15 years old Female              10th grade   1.70  59.88
## 11096            15 years old   Male              10th grade   1.63  49.90
## 11097            16 years old Female              10th grade   1.47  54.43
## 11098            15 years old Female              10th grade   1.55  43.55
## 11099            16 years old   Male              10th grade   1.65  78.02
## 11100            16 years old   Male               9th grade   1.88 131.54
## 11101            16 years old   Male              10th grade   1.73  44.00
## 11102            16 years old   Male              10th grade   1.78  92.99
## 11103            15 years old   Male              10th grade   1.60  99.79
## 11104            16 years old   Male              10th grade   1.83  90.72
## 11105            15 years old Female              10th grade   1.65  60.78
## 11106            15 years old   Male              10th grade   1.73  67.59
## 11107            16 years old   Male              10th grade   1.75  68.04
## 11108            16 years old   Male              10th grade   1.90  96.62
## 11109            15 years old Female              10th grade   1.57  71.22
## 11110            15 years old   Male              10th grade   1.68  54.43
## 11111            15 years old   Male              10th grade   1.78  77.11
## 11112            15 years old   Male              10th grade   1.68  75.75
## 11113            16 years old   Male              10th grade     NA     NA
## 11114            16 years old Female              10th grade   1.55  45.36
## 11115            16 years old   Male              10th grade   1.73  83.92
## 11116            16 years old Female              10th grade   1.65  54.43
## 11117            15 years old Female              10th grade   1.63  49.90
## 11118            17 years old Female              11th grade   1.60  63.50
## 11119            17 years old Female              11th grade   1.63  47.63
## 11120            17 years old   Male              11th grade   1.85 104.33
## 11121            17 years old Female              11th grade   1.65  58.06
## 11122            17 years old Female              11th grade   1.63  49.90
## 11123            17 years old   Male              11th grade   1.80  74.84
## 11124            17 years old   Male              11th grade   1.80  96.16
## 11125            17 years old   Male              11th grade   1.68  58.97
## 11126            16 years old   Male              11th grade   1.57  54.43
## 11127            16 years old   Male              10th grade   1.75  86.64
## 11128            16 years old   Male              10th grade   1.78  62.14
## 11129            16 years old   Male              10th grade   1.96  90.72
## 11130            15 years old   Male              10th grade   1.70  58.97
## 11131            16 years old Female              10th grade   1.57  43.09
## 11132            16 years old Female              10th grade   1.57  47.17
## 11133            16 years old Female              10th grade   1.60  46.72
## 11134            15 years old Female              10th grade   1.50  40.82
## 11135            16 years old   Male              10th grade   1.68  52.62
## 11136            16 years old   Male              10th grade   1.85  96.16
## 11137            15 years old Female               9th grade   1.70  72.58
## 11138            15 years old Female               9th grade   1.57  46.27
## 11139            14 years old Female               9th grade   1.57  53.07
## 11140            15 years old   Male               9th grade   1.57  52.16
## 11141            15 years old   Male               9th grade   1.68  70.31
## 11142                    <NA>   Male               9th grade     NA     NA
## 11143            15 years old   Male               9th grade   1.68  66.68
## 11144            15 years old   Male               9th grade   1.75  56.70
## 11145            15 years old Female               9th grade   1.68  58.97
## 11146            17 years old   Male              11th grade   1.83  70.31
## 11147            17 years old Female              11th grade   1.60  49.90
## 11148            17 years old Female              11th grade   1.63  81.65
## 11149            17 years old Female              11th grade   1.70  50.80
## 11150            16 years old Female              11th grade   1.75  67.13
## 11151            16 years old   Male              11th grade   1.75  57.61
## 11152            17 years old   Male              11th grade   1.78  65.77
## 11153            17 years old   Male              11th grade   1.78  99.79
## 11154   18 years old or older   Male              12th grade   1.88  92.08
## 11155   18 years old or older   Male              12th grade   1.85  99.79
## 11156   18 years old or older   Male              12th grade   1.80  77.11
## 11157            17 years old Female              12th grade   1.50  47.17
## 11158            16 years old Female              12th grade   1.65  58.97
## 11159            17 years old Female              12th grade   1.73 113.40
## 11160   18 years old or older   Male              12th grade   1.78  78.02
## 11161            17 years old Female              12th grade   1.63  54.43
## 11162            17 years old   Male              12th grade   1.78  72.58
## 11163            17 years old   Male              12th grade   1.83  81.65
## 11164            17 years old   Male              12th grade   1.88  89.36
## 11165            17 years old Female              11th grade   1.42  38.56
## 11166            17 years old Female              11th grade   1.60  52.16
## 11167            17 years old Female              11th grade   1.63  63.50
## 11168            16 years old   Male              11th grade   1.80  79.38
## 11169            17 years old   Male              11th grade   1.96  89.81
## 11170            16 years old   Male              11th grade   1.70  63.50
## 11171            17 years old Female              11th grade   1.65  64.86
## 11172            17 years old Female              11th grade   1.68  79.38
## 11173            17 years old Female              11th grade   1.50  65.77
## 11174            16 years old Female              11th grade     NA     NA
## 11175            16 years old   Male              11th grade   1.85 101.15
## 11176            17 years old   Male              11th grade   1.73  99.79
## 11177            16 years old   Male              11th grade   1.65  67.59
## 11178            17 years old   Male              11th grade   1.75 106.60
## 11179   18 years old or older   Male              12th grade   1.73 102.06
## 11180            16 years old Female              11th grade   1.50  55.34
## 11181            16 years old Female              11th grade   1.50  64.86
## 11182            14 years old Female               9th grade   1.65  69.85
## 11183            15 years old   Male Ungraded or other grade   1.73  48.54
## 11184            16 years old Female              10th grade   1.63  54.43
## 11185            17 years old   Male              11th grade   1.83  62.60
## 11186            16 years old   Male              10th grade   1.70  79.38
## 11187            16 years old   Male              10th grade   1.63  64.86
## 11188            16 years old Female              10th grade   1.52  44.00
## 11189            17 years old   Male              11th grade   1.70  74.84
## 11190            17 years old   Male              11th grade     NA     NA
## 11191                    <NA>   Male              11th grade     NA     NA
## 11192            16 years old Female              11th grade   1.50  44.91
## 11193            17 years old   Male              10th grade   1.73 127.01
## 11194            16 years old   Male              10th grade   1.73  61.24
## 11195            17 years old Female              10th grade     NA     NA
## 11196            15 years old   Male               9th grade   1.65  77.11
## 11197            17 years old Female              11th grade   1.65  83.92
## 11198            16 years old   Male              11th grade   1.65  76.66
## 11199            13 years old Female              11th grade   1.60  55.34
## 11200            13 years old   Male               9th grade   1.88 104.33
## 11201            15 years old   Male              11th grade   1.80 108.86
## 11202 12 years old or younger   Male               9th grade   1.65  78.02
## 11203            13 years old   <NA>              11th grade     NA     NA
## 11204 12 years old or younger Female               9th grade   1.75  97.52
## 11205            15 years old   Male              10th grade   1.73  91.17
## 11206            16 years old   Male              11th grade   1.88  68.04
## 11207            17 years old Female              12th grade   1.60  68.04
## 11208            16 years old Female              11th grade   1.42  45.81
## 11209   18 years old or older Female              12th grade   1.75  58.97
## 11210            16 years old   Male              11th grade   1.65  65.77
## 11211            16 years old   Male              11th grade   1.75  72.58
## 11212            15 years old Female              10th grade   1.63  56.70
## 11213            15 years old   Male              10th grade   1.73  66.68
## 11214            17 years old Female              10th grade   1.55  48.99
## 11215            16 years old Female              11th grade   1.57  51.26
## 11216            13 years old   <NA>               9th grade     NA     NA
## 11217            13 years old   <NA>               9th grade     NA     NA
## 11218            13 years old   <NA>              10th grade     NA     NA
## 11219            16 years old Female               9th grade     NA     NA
## 11220            14 years old   Male               9th grade   1.68 113.40
## 11221            15 years old   Male              10th grade     NA     NA
## 11222            16 years old   Male              11th grade   1.78  70.31
## 11223            16 years old   Male              11th grade   1.68  56.25
## 11224            16 years old   <NA>                    <NA>     NA     NA
## 11225            17 years old   Male               9th grade   1.65  81.19
## 11226            17 years old   Male              11th grade     NA     NA
## 11227            17 years old Female              11th grade   1.52  66.68
## 11228            17 years old Female              11th grade   1.60 102.06
## 11229            16 years old Female              11th grade   1.57  44.45
## 11230            16 years old Female              11th grade   1.68  72.58
## 11231            15 years old Female              10th grade   1.57  61.69
## 11232            16 years old   Male              10th grade   1.75  70.31
## 11233            16 years old   Male              10th grade   1.65  59.88
## 11234            16 years old   Male              11th grade   1.80  73.94
## 11235            15 years old Female               9th grade   1.60  59.88
## 11236            17 years old Female              11th grade   1.68  54.43
## 11237            16 years old   Male              11th grade   1.55  86.18
## 11238            16 years old Female              11th grade   1.57  50.80
## 11239            14 years old   Male               9th grade   1.80  69.85
## 11240            17 years old   Male              11th grade   1.75  59.88
## 11241            17 years old   Male              11th grade   1.80  61.24
## 11242            17 years old   Male              11th grade   1.70  78.93
## 11243   18 years old or older Female              11th grade   1.73  73.94
## 11244            16 years old Female              10th grade   1.55  59.88
## 11245            16 years old   Male              10th grade   1.80  95.26
## 11246            14 years old Female               9th grade   1.60  49.90
## 11247            15 years old Female               9th grade   1.60  58.97
## 11248            15 years old Female              10th grade   1.57  77.11
## 11249            15 years old Female               9th grade   1.57  45.36
## 11250            14 years old Female               9th grade   1.63  87.09
## 11251            14 years old Female               9th grade   1.63  50.80
## 11252            15 years old Female               9th grade   1.57  59.88
## 11253            16 years old Female               9th grade   1.70  56.70
## 11254 12 years old or younger   Male Ungraded or other grade   1.55  56.70
## 11255            15 years old Female               9th grade   1.50  39.01
## 11256            13 years old   <NA> Ungraded or other grade     NA     NA
## 11257            15 years old Female               9th grade   1.52  52.16
## 11258            17 years old Female              11th grade   1.55  56.25
## 11259            17 years old Female              12th grade   1.52  58.06
## 11260   18 years old or older   Male              12th grade   1.68  54.43
## 11261            17 years old   Male              12th grade   1.73  68.49
## 11262            16 years old   Male              11th grade   1.68  63.50
## 11263            14 years old   Male               9th grade   1.68  89.36
## 11264   18 years old or older Female              11th grade   1.63  74.84
## 11265            17 years old   Male              11th grade   1.78  66.68
## 11266            17 years old   Male              11th grade   1.70  81.65
## 11267   18 years old or older Female              12th grade   1.57  89.81
## 11268            16 years old   Male              11th grade   1.68  54.43
## 11269            16 years old Female              11th grade   1.63 101.61
## 11270            17 years old Female              11th grade   1.68 104.33
## 11271            16 years old Female              10th grade   1.57  54.43
## 11272            16 years old   Male              11th grade   1.83 127.01
## 11273            15 years old Female              10th grade     NA     NA
## 11274   18 years old or older Female              12th grade   1.57  63.50
## 11275   18 years old or older Female              12th grade   1.65  61.24
## 11276            15 years old   Male              10th grade   1.68  79.38
## 11277            16 years old Female              11th grade   1.47  81.65
## 11278   18 years old or older   Male              12th grade   1.70  69.40
## 11279            15 years old   Male               9th grade   1.70  95.26
## 11280            15 years old Female              10th grade   1.70  61.24
## 11281            16 years old   Male              10th grade   1.68  63.50
## 11282            15 years old Female              10th grade   1.52  49.44
## 11283            16 years old   Male              10th grade   1.65  63.50
## 11284            16 years old Female              10th grade   1.50  49.90
## 11285            16 years old Female              11th grade   1.68 104.33
## 11286   18 years old or older Female              12th grade   1.65  70.76
## 11287            17 years old   Male              12th grade   1.70  90.72
## 11288            17 years old   Male              12th grade   1.73  69.40
## 11289            13 years old   <NA>              12th grade     NA     NA
## 11290            15 years old Female              10th grade   1.60  49.90
## 11291            17 years old   Male              11th grade   1.73 129.28
## 11292            16 years old   Male              10th grade   1.65 113.40
## 11293            15 years old   Male              10th grade   1.65  49.90
## 11294            17 years old Female              11th grade     NA     NA
## 11295            16 years old   Male              10th grade     NA     NA
## 11296            16 years old Female              10th grade   1.57  97.07
## 11297            17 years old Female              11th grade   1.57  81.65
## 11298   18 years old or older Female              12th grade   1.55  95.26
## 11299 12 years old or younger Female               9th grade   1.75  54.43
## 11300            17 years old   Male              11th grade   1.80  61.24
## 11301            16 years old   Male              10th grade     NA     NA
## 11302            17 years old   Male              10th grade   1.68  99.79
## 11303            16 years old Female              10th grade   1.60  56.70
## 11304            16 years old Female              10th grade   1.50  40.82
## 11305            16 years old Female              10th grade   1.57  58.97
## 11306            16 years old Female               9th grade   1.60  55.34
## 11307            15 years old Female               9th grade   1.55  58.51
## 11308            16 years old Female              10th grade   1.55  49.90
## 11309            16 years old Female              10th grade     NA     NA
## 11310            16 years old Female              10th grade   1.52  54.43
## 11311            16 years old Female              10th grade   1.57  54.43
## 11312            16 years old Female               9th grade   1.55  68.95
## 11313            15 years old Female               9th grade     NA     NA
## 11314            15 years old Female              10th grade   1.63  89.36
## 11315            16 years old Female               9th grade     NA     NA
## 11316            16 years old Female              10th grade     NA     NA
## 11317            17 years old   Male              10th grade   1.70  72.58
## 11318            17 years old Female              10th grade   1.50  63.50
## 11319            15 years old Female               9th grade   1.57  51.71
## 11320            14 years old Female               9th grade   1.52  54.43
## 11321            15 years old   Male               9th grade   1.83  72.58
## 11322            15 years old Female               9th grade   1.63  45.81
## 11323            15 years old Female               9th grade     NA     NA
## 11324            15 years old Female               9th grade   1.60  56.70
## 11325            15 years old   Male               9th grade   1.63  49.90
## 11326            15 years old Female               9th grade   1.78  68.04
## 11327            15 years old   Male               9th grade   1.85  53.52
## 11328            14 years old Female               9th grade   1.65  52.62
## 11329            15 years old Female               9th grade   1.57  78.93
## 11330            14 years old Female                    <NA>   1.60  54.43
## 11331            14 years old Female               9th grade   1.78  58.97
## 11332            14 years old   Male               9th grade   1.70  48.99
## 11333            14 years old Female               9th grade   1.70  63.50
## 11334            14 years old   Male               9th grade   1.50  39.46
## 11335            14 years old Female               9th grade   1.65  56.70
## 11336            15 years old   Male               9th grade   1.90 106.60
## 11337            14 years old   Male               9th grade   1.68  81.65
## 11338            14 years old   Male               9th grade   1.75  76.20
## 11339            14 years old Female               9th grade   1.63  52.16
## 11340            15 years old Female               9th grade   1.68  47.63
## 11341            15 years old Female               9th grade   1.60  43.09
## 11342            14 years old   Male               9th grade   1.83  63.50
## 11343            15 years old   Male               9th grade   1.63  48.99
## 11344            15 years old Female               9th grade   1.68  55.34
## 11345            14 years old   Male               9th grade   1.85  83.01
## 11346            14 years old Female               9th grade     NA     NA
## 11347            15 years old   Male               9th grade   1.57  54.43
## 11348            14 years old   Male               9th grade   1.80  63.50
## 11349            14 years old   Male                    <NA>   1.88 126.55
## 11350            14 years old   Male               9th grade     NA     NA
## 11351            15 years old Female               9th grade   1.65  49.90
## 11352            15 years old Female               9th grade   1.63  61.69
## 11353            14 years old Female               9th grade   1.60  42.64
## 11354            15 years old Female               9th grade   1.75  54.43
## 11355            15 years old   Male               9th grade   1.90  83.92
## 11356            15 years old   Male               9th grade   1.70  54.43
## 11357            14 years old   Male               9th grade   1.75  61.24
## 11358            14 years old Female               9th grade   1.70  58.06
## 11359            14 years old   Male               9th grade   1.83  75.30
## 11360            15 years old Female               9th grade   1.73  51.26
## 11361            14 years old   Male               9th grade   1.75  58.51
## 11362            14 years old   Male               9th grade   1.88 112.04
## 11363            14 years old Female               9th grade   1.65  44.00
## 11364            15 years old   Male               9th grade   1.60  72.58
## 11365            14 years old Female               9th grade   1.75  61.24
## 11366            14 years old   Male               9th grade   1.80  74.84
## 11367            14 years old   Male               9th grade   1.65  43.09
## 11368            15 years old   Male               9th grade   1.83  63.50
## 11369            14 years old Female               9th grade   1.65  50.35
## 11370            15 years old Female               9th grade   1.63  58.97
## 11371            14 years old   Male               9th grade   1.65  49.90
## 11372            15 years old   Male               9th grade   1.83  56.70
## 11373            15 years old Female               9th grade   1.60  49.90
## 11374            14 years old Female               9th grade   1.63  49.90
## 11375            14 years old   Male               9th grade   1.93  77.11
## 11376            15 years old   Male               9th grade   1.75  68.04
## 11377            14 years old   Male               9th grade   1.75  58.97
## 11378            15 years old   Male               9th grade   1.70  63.50
## 11379            15 years old Female               9th grade   1.63  53.52
## 11380            14 years old Female               9th grade   1.55  44.91
## 11381            14 years old Female               9th grade     NA     NA
## 11382            15 years old Female               9th grade   1.70  58.97
## 11383            14 years old   <NA>               9th grade     NA     NA
## 11384            14 years old Female               9th grade   1.57  45.36
## 11385            14 years old Female               9th grade   1.78  59.88
## 11386            15 years old Female               9th grade   1.73  70.31
## 11387            14 years old   Male               9th grade   1.78  67.59
## 11388            14 years old Female               9th grade   1.55  54.43
## 11389            14 years old   Male               9th grade   1.78  58.97
## 11390            14 years old Female               9th grade   1.65  54.43
## 11391            15 years old   Male               9th grade   1.85  77.11
## 11392                    <NA> Female              10th grade     NA     NA
## 11393            16 years old Female                    <NA>   1.78  84.82
## 11394                    <NA> Female              10th grade     NA     NA
## 11395            16 years old   Male              10th grade   1.78  65.77
## 11396            15 years old   Male              10th grade   1.83  77.11
## 11397            16 years old Female                    <NA>   1.83  74.84
## 11398            15 years old   Male              10th grade   1.78  84.82
## 11399            15 years old   Male              10th grade   1.78  57.61
## 11400            15 years old Female              10th grade   1.52  58.97
## 11401            15 years old   Male              10th grade   1.83  68.04
## 11402            16 years old   <NA>              10th grade     NA     NA
## 11403            15 years old   Male              10th grade   1.70  56.70
## 11404            16 years old Female              10th grade   1.75  47.63
## 11405            15 years old   Male                    <NA>   1.75  68.04
## 11406            16 years old Female              10th grade   1.68  45.36
## 11407                    <NA> Female              10th grade     NA     NA
## 11408            15 years old   Male              10th grade   1.75  68.04
## 11409            15 years old   Male              10th grade   1.78  83.92
## 11410            15 years old   Male              10th grade   1.88 133.81
## 11411            15 years old   Male              10th grade   1.75  70.31
## 11412            15 years old Female              10th grade   1.63  52.16
## 11413            15 years old Female              10th grade   1.63  49.90
## 11414            16 years old   Male              10th grade   1.73  56.70
## 11415            15 years old Female              10th grade   1.68  54.43
## 11416            15 years old Female              10th grade   1.70  56.70
## 11417            15 years old   Male                    <NA>   1.90  68.04
## 11418            15 years old Female              10th grade   1.63  72.58
## 11419            15 years old   Male              10th grade   1.78  58.97
## 11420            15 years old Female              10th grade   1.68  54.43
## 11421            15 years old   Male              10th grade   1.93  76.20
## 11422            16 years old   Male              10th grade   1.83 108.86
## 11423            15 years old Female              10th grade   1.60  63.50
## 11424            16 years old   Male              10th grade   1.80  50.35
## 11425            16 years old   Male              10th grade   1.85  72.58
## 11426            16 years old   Male              10th grade   1.90  81.65
## 11427            16 years old   Male                    <NA>   1.73  58.97
## 11428            15 years old Female              10th grade   1.57  49.44
## 11429            15 years old Female              10th grade   1.60  55.79
## 11430            16 years old   <NA>              10th grade     NA     NA
## 11431            15 years old Female              10th grade   1.70  68.04
## 11432            16 years old   Male              10th grade   1.80  68.04
## 11433            15 years old Female              10th grade   1.57  58.97
## 11434            15 years old Female              10th grade   1.63  47.63
## 11435            15 years old Female              10th grade   1.55  46.72
## 11436            17 years old Female              10th grade   1.63  50.35
## 11437            16 years old Female              10th grade   1.47  49.90
## 11438            16 years old Female              10th grade     NA     NA
## 11439            16 years old   Male                    <NA>   1.75  56.70
## 11440                    <NA>   Male                    <NA>     NA     NA
## 11441            16 years old Female              10th grade     NA     NA
## 11442            15 years old   Male              10th grade   1.80  77.11
## 11443            16 years old Female              10th grade   1.57  49.90
## 11444            16 years old   Male              10th grade   1.73  50.80
## 11445            16 years old Female              10th grade   1.65  70.31
## 11446            16 years old Female              10th grade   1.70  49.90
## 11447            16 years old   Male              10th grade   1.80  58.06
## 11448            15 years old   Male              10th grade   1.88 113.40
## 11449            16 years old   Male              10th grade     NA     NA
## 11450            16 years old   Male              10th grade   1.85  74.84
## 11451            16 years old Female              10th grade   1.68  47.63
## 11452            16 years old   Male              10th grade   1.70  74.84
## 11453            15 years old Female              10th grade   1.57  48.08
## 11454            16 years old Female              10th grade     NA     NA
## 11455            16 years old   Male                    <NA>     NA     NA
## 11456            15 years old Female              10th grade     NA     NA
## 11457            16 years old Female                    <NA>   1.75  56.70
## 11458            15 years old   Male              10th grade   1.83  86.18
## 11459            17 years old   Male              11th grade   1.65  54.89
## 11460            16 years old Female              11th grade   1.68  56.70
## 11461            17 years old Female              11th grade   1.68  70.31
## 11462            16 years old   Male              11th grade   1.78  56.70
## 11463            17 years old   Male              11th grade   1.73  68.04
## 11464            16 years old Female              11th grade   1.60  47.63
## 11465            16 years old   Male              11th grade   1.78  63.05
## 11466            17 years old   Male              11th grade   1.85  81.65
## 11467            17 years old   Male              11th grade   1.73  52.16
## 11468            17 years old   Male              11th grade   1.78  77.11
## 11469            16 years old   Male              11th grade   1.88  63.50
## 11470            17 years old Female              11th grade   1.68  63.50
## 11471            16 years old Female              11th grade   1.60  45.36
## 11472            16 years old   Male              11th grade   1.88  72.12
## 11473            17 years old Female              11th grade   1.73  68.04
## 11474            17 years old Female              11th grade   1.78  68.04
## 11475            16 years old   Male              11th grade   1.65  74.84
## 11476            17 years old Female              11th grade     NA     NA
## 11477            16 years old Female              11th grade   1.68  64.86
## 11478            16 years old Female              11th grade   1.60  53.98
## 11479            16 years old Female              11th grade   1.57  65.77
## 11480            17 years old   Male              11th grade   2.03 108.86
## 11481            16 years old   Male              11th grade   1.78  57.61
## 11482            17 years old   Male              11th grade   1.90  83.92
## 11483            17 years old Female              11th grade   1.63  50.80
## 11484            16 years old Female              11th grade   1.75  59.88
## 11485            16 years old Female              11th grade   1.78  54.43
## 11486            16 years old Female              11th grade   1.68  46.27
## 11487            17 years old   Male              11th grade     NA     NA
## 11488            16 years old   Male              11th grade   1.78  77.11
## 11489            17 years old Female              11th grade   1.63  61.24
## 11490            16 years old Female              11th grade   1.65  53.98
## 11491            16 years old Female              11th grade     NA     NA
## 11492            17 years old   Male              11th grade     NA     NA
## 11493            17 years old Female              11th grade   1.70  61.24
## 11494            16 years old   Male              11th grade   1.55  90.72
## 11495            16 years old Female              11th grade   1.70  52.16
## 11496            16 years old   Male              11th grade   1.90  77.11
## 11497            17 years old   Male              11th grade   1.80 102.06
## 11498            17 years old Female              11th grade   1.80  68.04
## 11499            16 years old   Male              11th grade   1.70  61.24
## 11500            16 years old Female              11th grade   1.65  58.97
## 11501            16 years old   Male              11th grade   1.78  63.50
## 11502            16 years old   Male              11th grade   1.83  63.50
## 11503            17 years old   Male                    <NA>   1.73  54.43
## 11504            17 years old   Male              11th grade   1.70  46.27
## 11505            16 years old   Male              11th grade   1.96  86.18
## 11506            17 years old   Male              11th grade   1.78  69.40
## 11507            16 years old Female              11th grade   1.65  52.16
## 11508            16 years old   Male                    <NA>   1.75  61.24
## 11509            17 years old Female              11th grade   1.68  56.70
## 11510            16 years old   Male              11th grade   1.85  74.84
## 11511            17 years old   Male              11th grade   1.98  90.72
## 11512            16 years old Female                    <NA>   1.55  52.16
## 11513            16 years old Female              11th grade   1.70  68.04
## 11514            17 years old Female              11th grade   1.68  52.16
## 11515            17 years old Female              11th grade   1.60  54.43
## 11516            16 years old Female              11th grade   1.57  54.43
## 11517            16 years old Female              11th grade   1.63  45.36
## 11518            16 years old Female              11th grade   1.68  64.86
## 11519            17 years old   Male              11th grade   1.63  52.16
## 11520                    <NA>   Male              11th grade     NA     NA
## 11521            17 years old   Male              11th grade   1.70  68.04
## 11522            16 years old   Male              11th grade   1.88  77.11
## 11523            16 years old Female              11th grade   1.75  63.50
## 11524            16 years old   Male              11th grade   1.75  56.70
## 11525   18 years old or older Female              12th grade   1.65  56.70
## 11526   18 years old or older   Male              12th grade   1.96  86.18
## 11527            17 years old Female              12th grade   1.68  52.16
## 11528            17 years old Female              12th grade   1.60  61.24
## 11529            17 years old   Male              12th grade     NA     NA
## 11530   18 years old or older Female              12th grade   1.75  63.50
## 11531   18 years old or older   Male              12th grade   1.83  70.31
## 11532            17 years old Female              12th grade   1.50  45.81
## 11533   18 years old or older   Male              12th grade   1.88  83.92
## 11534   18 years old or older   Male              12th grade   1.96  77.11
## 11535            17 years old   Male              12th grade   1.80  90.72
## 11536                    <NA>   Male                    <NA>     NA     NA
## 11537            17 years old   Male              12th grade   1.83  79.38
## 11538            17 years old   Male              12th grade   1.70  61.24
## 11539   18 years old or older Female              12th grade   1.70  61.24
## 11540            17 years old Female              12th grade   1.73  81.65
## 11541            16 years old Female              12th grade   1.70  58.06
## 11542   18 years old or older   Male                    <NA>   1.75  70.31
## 11543   18 years old or older   Male              12th grade   1.75  65.77
## 11544   18 years old or older Female              12th grade   1.45  45.36
## 11545            17 years old   Male              12th grade   1.88  77.11
## 11546            17 years old Female              12th grade   1.70  63.50
## 11547   18 years old or older   Male              12th grade   1.90  77.11
## 11548            17 years old   Male              12th grade   1.88  65.77
## 11549   18 years old or older   Male              12th grade   1.90  73.48
## 11550   18 years old or older   Male              12th grade   1.85  54.43
## 11551            17 years old Female              12th grade   1.65  56.70
## 11552   18 years old or older Female              12th grade   1.78  57.61
## 11553            17 years old   Male              12th grade   1.83  86.18
## 11554   18 years old or older Female              12th grade   1.52  54.43
## 11555            17 years old   Male              11th grade   1.80  56.70
## 11556   18 years old or older Female              12th grade   1.65  63.50
## 11557            17 years old Female              12th grade   1.80  72.58
## 11558            17 years old   Male              12th grade   1.80  68.04
## 11559            17 years old Female              12th grade   1.65  58.97
## 11560   18 years old or older   Male              12th grade   1.78  72.58
## 11561   18 years old or older   Male              12th grade   1.73  72.58
## 11562   18 years old or older Female              12th grade   1.75  63.50
## 11563            17 years old Female              12th grade   1.63  61.24
## 11564            17 years old Female              12th grade   1.73  68.04
## 11565            17 years old Female              12th grade     NA     NA
## 11566   18 years old or older   Male              12th grade   1.70  72.58
## 11567            17 years old Female              12th grade   1.55  52.16
## 11568   18 years old or older Female              12th grade   1.75  54.43
## 11569            17 years old   Male              12th grade   1.78  63.50
## 11570            17 years old Female              12th grade   1.68  61.24
## 11571            17 years old Female              12th grade   1.63  58.97
## 11572            17 years old Female              12th grade   1.75  56.70
## 11573   18 years old or older Female              12th grade   1.73  56.25
## 11574   18 years old or older   Male              12th grade   1.88  70.31
## 11575            14 years old Female               9th grade   1.55  47.63
## 11576            14 years old   Male               9th grade   1.60  48.99
## 11577            14 years old Female               9th grade   1.70  54.43
## 11578            15 years old Female               9th grade   1.63  54.43
## 11579            14 years old   Male               9th grade   1.60  79.83
## 11580            14 years old   Male               9th grade   1.83 136.99
## 11581            14 years old   Male               9th grade   1.65  77.11
## 11582            13 years old   Male               9th grade   1.78  77.11
## 11583            15 years old   Male               9th grade   1.80  99.79
## 11584            14 years old   Male               9th grade   1.83  68.49
## 11585            15 years old   Male               9th grade   1.80  66.23
## 11586            15 years old Female               9th grade   1.68  57.15
## 11587            15 years old Female               9th grade   1.63  52.16
## 11588            14 years old   Male               9th grade   1.75  49.90
## 11589            14 years old Female               9th grade   1.65  68.95
## 11590            14 years old Female               9th grade   1.60  51.26
## 11591            15 years old   Male               9th grade   1.73  58.97
## 11592            15 years old Female               9th grade   1.70  52.16
## 11593            14 years old Female               9th grade   1.73  63.50
## 11594                    <NA>   Male               9th grade     NA     NA
## 11595            14 years old   Male               9th grade   1.78  66.68
## 11596            15 years old Female               9th grade   1.52  44.00
## 11597            14 years old   Male               9th grade   1.68  72.58
## 11598            14 years old Female               9th grade   1.75  59.88
## 11599            15 years old   Male               9th grade   1.78  77.11
## 11600            14 years old Female               9th grade   1.63  54.43
## 11601            15 years old Female               9th grade   1.68  45.36
## 11602            15 years old   Male               9th grade   1.80  83.92
## 11603            15 years old Female               9th grade   1.68  68.04
## 11604            15 years old   Male               9th grade   1.78  72.58
## 11605            15 years old Female               9th grade   1.68  65.77
## 11606            14 years old Female               9th grade   1.70  56.70
## 11607            15 years old Female               9th grade   1.73  66.23
## 11608            14 years old   Male               9th grade   1.68  68.04
## 11609            15 years old Female               9th grade   1.63  47.63
## 11610            14 years old Female               9th grade   1.70  86.18
## 11611            15 years old Female               9th grade   1.60  44.00
## 11612            14 years old   Male               9th grade   1.83  63.50
## 11613            15 years old Female               9th grade   1.60  53.07
## 11614            15 years old   Male               9th grade   1.68  97.52
## 11615            16 years old   Male               9th grade   1.83  67.13
## 11616            15 years old Female               9th grade   1.50  45.36
## 11617            14 years old Female               9th grade   1.68  52.62
## 11618            14 years old   Male               9th grade   1.65  49.90
## 11619            15 years old   Male               9th grade   1.73  49.90
## 11620            14 years old Female               9th grade   1.63  52.16
## 11621            15 years old   Male               9th grade   1.73  74.84
## 11622            15 years old Female               9th grade     NA     NA
## 11623            14 years old   Male               9th grade   1.80  74.39
## 11624            14 years old Female               9th grade   1.70  65.77
## 11625            14 years old Female               9th grade   1.70  60.78
## 11626            15 years old Female               9th grade   1.65  52.16
## 11627            14 years old   Male               9th grade   1.90  79.38
## 11628            14 years old Female               9th grade   1.57  49.90
## 11629            14 years old   Male               9th grade     NA     NA
## 11630                    <NA> Female               9th grade     NA     NA
## 11631            15 years old Female               9th grade   1.73  53.52
## 11632            14 years old Female               9th grade   1.52  38.56
## 11633            15 years old   Male               9th grade   1.70  83.46
## 11634            14 years old Female               9th grade     NA     NA
## 11635            14 years old Female               9th grade   1.57  54.43
## 11636            15 years old   Male               9th grade   1.80  77.11
## 11637            14 years old   Male               9th grade   1.70  61.24
## 11638            15 years old   Male               9th grade   1.80  56.70
## 11639            14 years old Female               9th grade   1.65  56.70
## 11640            15 years old Female               9th grade   1.60  52.62
## 11641            14 years old Female               9th grade     NA     NA
## 11642            15 years old   Male               9th grade   1.70  58.97
## 11643            14 years old   Male               9th grade   1.85  56.70
## 11644            14 years old   Male               9th grade   1.65  48.54
## 11645            15 years old Female               9th grade   1.78  68.04
## 11646            14 years old Female               9th grade   1.68  83.92
## 11647            16 years old Female              10th grade   1.55  43.09
## 11648            15 years old Female              10th grade     NA     NA
## 11649            15 years old Female              10th grade     NA     NA
## 11650            16 years old Female                    <NA>   1.65  54.43
## 11651            15 years old Female              10th grade   1.52  52.16
## 11652            15 years old Female              10th grade   1.57  52.16
## 11653            16 years old Female              10th grade     NA     NA
## 11654            15 years old Female              10th grade   1.52  49.90
## 11655            15 years old Female              10th grade   1.60  48.99
## 11656            16 years old Female              10th grade   1.57  54.43
## 11657            15 years old   Male              10th grade   1.78  99.79
## 11658            15 years old Female              10th grade   1.70  61.24
## 11659            15 years old   Male              10th grade   1.78  95.26
## 11660            15 years old Female              10th grade     NA     NA
## 11661            15 years old   Male              10th grade   1.88 100.25
## 11662            15 years old Female              10th grade   1.65  49.90
## 11663            15 years old   Male              10th grade     NA     NA
## 11664            15 years old Female              10th grade   1.68  55.34
## 11665            16 years old Female              10th grade   1.70  58.97
## 11666            15 years old   Male              10th grade   2.01  83.01
## 11667            16 years old Female              10th grade   1.57  54.43
## 11668            15 years old   Male              10th grade   1.55  40.37
## 11669            16 years old Female              10th grade   1.70  54.43
## 11670            15 years old Female              10th grade   1.60  45.36
## 11671            16 years old   Male              10th grade   1.70  71.22
## 11672            15 years old Female              10th grade   1.57  52.16
## 11673            16 years old Female              10th grade   1.57  49.90
## 11674            15 years old Female              10th grade   1.47  46.27
## 11675            15 years old Female              10th grade   1.73  61.24
## 11676            17 years old Female              11th grade   1.63  97.52
## 11677            15 years old   Male              10th grade   1.80  65.77
## 11678            15 years old Female              10th grade   1.63  72.58
## 11679            15 years old Female              10th grade   1.55  54.43
## 11680            16 years old   Male              10th grade   1.68  72.58
## 11681            15 years old   Male              10th grade   1.80  99.79
## 11682            16 years old Female              10th grade   1.65  68.04
## 11683                    <NA>   Male              10th grade     NA     NA
## 11684            16 years old   Male              10th grade   1.88  90.72
## 11685            15 years old Female              10th grade   1.50  50.35
## 11686            16 years old Female              10th grade   1.65  56.70
## 11687            16 years old   Male              10th grade   1.85  83.92
## 11688            15 years old   Male              10th grade   1.63  61.69
## 11689            15 years old   Male              10th grade   1.85  63.50
## 11690            16 years old   <NA>              10th grade     NA     NA
## 11691            15 years old   Male              10th grade   1.88 120.20
## 11692            15 years old   Male              10th grade   1.80  65.77
## 11693            14 years old   Male              10th grade   1.83  70.31
## 11694            15 years old Female              10th grade   1.55  67.13
## 11695            15 years old   Male              10th grade   1.90  77.11
## 11696            15 years old Female              10th grade   1.73  81.65
## 11697            15 years old   Male              10th grade   1.78  61.24
## 11698            16 years old   Male              10th grade     NA     NA
## 11699            15 years old   Male              10th grade   1.73  63.50
## 11700            15 years old Female                    <NA>   1.57  52.16
## 11701            15 years old   Male                    <NA>   1.90  90.72
## 11702            15 years old   Male              10th grade     NA     NA
## 11703            17 years old   Male              10th grade   1.85  71.67
## 11704            15 years old Female              10th grade   1.63  56.70
## 11705            15 years old Female              10th grade   1.60  54.43
## 11706            16 years old Female              10th grade   1.68  54.43
## 11707            15 years old Female              10th grade   1.57  45.36
## 11708            16 years old Female              10th grade   1.60  54.43
## 11709            16 years old   Male              11th grade   1.68  65.77
## 11710            16 years old   Male              11th grade   1.75  68.04
## 11711   18 years old or older   Male              11th grade   1.73  56.70
## 11712            17 years old Female              11th grade   1.60  49.90
## 11713            16 years old Female              11th grade   1.57  44.91
## 11714            16 years old Female              11th grade   1.70  79.38
## 11715            17 years old Female              11th grade   1.73  53.07
## 11716            16 years old Female              11th grade   1.52  45.36
## 11717            17 years old Female              11th grade   1.75  72.58
## 11718            16 years old   Male              11th grade   1.80  65.77
## 11719            16 years old Female              11th grade   1.60  47.63
## 11720            16 years old   Male              11th grade   1.78  84.82
## 11721            16 years old Female              11th grade   1.78  70.31
## 11722            17 years old Female              11th grade   1.78  61.24
## 11723            16 years old   Male              11th grade   1.83  81.65
## 11724            16 years old   Male              11th grade   1.73  72.58
## 11725            17 years old Female              11th grade   1.75  58.97
## 11726            16 years old Female              11th grade   1.60  52.16
## 11727            16 years old Female              11th grade   1.73  63.50
## 11728            17 years old Female              11th grade   1.50  58.97
## 11729            16 years old Female              11th grade   1.68  56.70
## 11730            17 years old   Male              11th grade   1.65  61.24
## 11731            16 years old   Male              11th grade   1.78  95.26
## 11732            16 years old   Male              10th grade   1.78  83.92
## 11733            16 years old Female              11th grade   1.65  72.58
## 11734            16 years old Female              11th grade   1.70  55.34
## 11735            16 years old   Male                    <NA>   1.78  61.24
## 11736            16 years old   Male                    <NA>   1.75  63.50
## 11737            16 years old   Male              11th grade   1.68  58.97
## 11738                    <NA> Female              11th grade     NA     NA
## 11739            17 years old Female              11th grade   1.65  56.70
## 11740                    <NA>   Male              11th grade     NA     NA
## 11741            16 years old   Male              11th grade   1.78  72.58
## 11742            17 years old Female              11th grade     NA     NA
## 11743            16 years old Female              11th grade     NA     NA
## 11744                    <NA>   <NA>              11th grade     NA     NA
## 11745            17 years old Female              11th grade   1.73 131.54
## 11746            17 years old Female              11th grade   1.60  54.43
## 11747            16 years old Female              11th grade   1.60  45.36
## 11748            16 years old Female              11th grade     NA     NA
## 11749            17 years old   Male              11th grade   1.80  61.24
## 11750 12 years old or younger   Male Ungraded or other grade     NA     NA
## 11751            16 years old Female              11th grade   1.63  47.63
## 11752            16 years old Female              11th grade   1.65  56.70
## 11753            17 years old   Male              11th grade   1.68  52.16
## 11754            16 years old Female              11th grade   1.55  54.43
## 11755            17 years old   Male              11th grade   1.75  63.50
## 11756            17 years old   Male              11th grade   1.78  78.47
## 11757            16 years old Female                    <NA>   1.63  49.90
## 11758            17 years old Female              11th grade   1.60  61.24
## 11759            16 years old   Male              11th grade   1.78  83.92
## 11760            16 years old   Male              11th grade     NA     NA
## 11761            17 years old   Male              11th grade   1.85  79.38
## 11762            16 years old   Male              11th grade   1.78  75.75
## 11763            17 years old Female              11th grade   1.68  45.36
## 11764            17 years old   Male              11th grade   1.90  90.72
## 11765            16 years old   Male              11th grade   1.73  68.04
## 11766   18 years old or older   Male              11th grade   1.63  99.79
## 11767            16 years old Female              11th grade     NA     NA
## 11768            16 years old Female              11th grade   1.68  58.97
## 11769            16 years old Female              11th grade   1.60  54.43
## 11770            16 years old Female              11th grade   1.75  61.24
## 11771            17 years old   Male              11th grade   1.83  72.58
## 11772            17 years old Female              11th grade   1.78  81.65
## 11773            17 years old   Male              12th grade   1.85  95.26
## 11774            17 years old   Male              12th grade   1.73  97.52
## 11775   18 years old or older   Male              12th grade   1.83  79.83
## 11776            17 years old   Male              12th grade   1.88  74.84
## 11777            17 years old Female              12th grade   1.68  63.50
## 11778   18 years old or older   Male              12th grade     NA     NA
## 11779            17 years old   Male              12th grade   1.70  74.84
## 11780            17 years old   Male              12th grade   1.83  74.84
## 11781            17 years old Female              12th grade   1.65  58.97
## 11782   18 years old or older Female              12th grade   1.68  49.90
## 11783            17 years old Female              12th grade   1.70  81.65
## 11784   18 years old or older Female              12th grade   1.70  63.50
## 11785            17 years old Female              12th grade   1.60  61.24
## 11786   18 years old or older   Male              12th grade   1.78  92.99
## 11787            17 years old Female              12th grade   1.63  58.97
## 11788   18 years old or older Female              12th grade   1.83  58.97
## 11789            17 years old Female              12th grade   1.60  61.24
## 11790            17 years old Female              12th grade   1.57  52.16
## 11791            17 years old   Male              12th grade   1.85  84.37
## 11792   18 years old or older Female              12th grade   1.55  52.16
## 11793            17 years old Female              12th grade   1.70  58.97
## 11794   18 years old or older Female              12th grade     NA     NA
## 11795            17 years old Female              12th grade   1.57  49.44
## 11796            17 years old Female              12th grade   1.63  68.04
## 11797   18 years old or older   Male              12th grade   1.75  70.31
## 11798   18 years old or older Female              12th grade   1.68  68.04
## 11799            17 years old Female              12th grade   1.73  68.04
## 11800            17 years old   Male              12th grade   1.68  56.70
## 11801            17 years old Female              12th grade   1.78  90.72
## 11802            17 years old   Male                    <NA>   1.70  61.24
## 11803            17 years old   Male              12th grade   1.75  63.50
## 11804            17 years old Female              12th grade   1.60  88.91
## 11805   18 years old or older   Male              12th grade   1.93  95.26
## 11806            17 years old Female              12th grade   1.57  54.43
## 11807   18 years old or older   Male              12th grade   1.60  61.24
## 11808            17 years old Female              12th grade   1.63  70.76
## 11809   18 years old or older Female              12th grade   1.70  65.77
## 11810            17 years old   Male              12th grade   1.78  70.31
## 11811            17 years old Female              12th grade   1.68  50.80
## 11812            14 years old   Male               9th grade   1.73  74.84
## 11813            14 years old   Male               9th grade   1.70  65.77
## 11814            14 years old   Male               9th grade   1.75  63.50
## 11815            14 years old   Male               9th grade   1.73  56.70
## 11816            15 years old   Male               9th grade   1.65  68.04
## 11817            15 years old   Male               9th grade   1.68  54.43
## 11818            15 years old Female               9th grade   1.63  52.16
## 11819            15 years old   Male               9th grade   1.78  90.72
## 11820            14 years old Female               9th grade   1.68  52.16
## 11821            14 years old   Male               9th grade   1.70  65.77
## 11822            14 years old Female               9th grade   1.63  52.62
## 11823            14 years old Female               9th grade   1.68  55.34
## 11824            14 years old   Male               9th grade   1.68  65.77
## 11825            14 years old   Male               9th grade   1.78  63.50
## 11826            14 years old Female               9th grade   1.63  52.62
## 11827            15 years old   Male               9th grade   1.68 113.40
## 11828            14 years old Female               9th grade   1.63  47.63
## 11829            14 years old Female               9th grade   1.70  72.58
## 11830            15 years old   Male                    <NA>   1.80  90.72
## 11831            15 years old   Male               9th grade   1.83  95.26
## 11832            14 years old   Male               9th grade   1.70  58.97
## 11833            15 years old   Male               9th grade   1.65  48.54
## 11834            15 years old Female               9th grade   1.65  49.90
## 11835            15 years old Female               9th grade   1.63  89.81
## 11836            14 years old   Male               9th grade   1.65  52.16
## 11837            14 years old Female               9th grade   1.50  40.82
## 11838            14 years old Female               9th grade   1.57  58.97
## 11839            15 years old   Male               9th grade   1.60  45.36
## 11840            14 years old   Male               9th grade   1.60  72.58
## 11841            14 years old Female               9th grade   1.60  49.90
## 11842            14 years old   Male               9th grade   1.75  52.16
## 11843            14 years old Female               9th grade   1.83  72.58
## 11844            14 years old   Male               9th grade   1.65  55.34
## 11845            15 years old Female                    <NA>   1.73  61.24
## 11846            15 years old   Male               9th grade   1.75 127.01
## 11847            14 years old   Male               9th grade   1.75  70.31
## 11848            15 years old   Male               9th grade   1.75  60.78
## 11849            15 years old   Male              10th grade   1.80  71.22
## 11850            15 years old   Male               9th grade   1.68  56.70
## 11851            15 years old Female               9th grade   1.60  90.72
## 11852            14 years old Female               9th grade     NA     NA
## 11853            16 years old Female               9th grade   1.60  45.36
## 11854            15 years old   Male               9th grade   1.73  58.97
## 11855            14 years old   Male               9th grade   1.75  59.88
## 11856            14 years old Female               9th grade   1.65  47.63
## 11857            14 years old   Male               9th grade   1.88 104.33
## 11858            14 years old   Male               9th grade   1.68  69.40
## 11859            15 years old   Male               9th grade   1.78  55.79
## 11860            15 years old   Male               9th grade   1.65  40.82
## 11861            15 years old Female               9th grade   1.60  39.46
## 11862            14 years old   Male               9th grade   1.63  45.36
## 11863            15 years old   Male               9th grade     NA     NA
## 11864            15 years old   Male               9th grade   1.60  63.50
## 11865            14 years old Female               9th grade   1.57  51.71
## 11866            15 years old Female               9th grade   1.70  52.16
## 11867            14 years old   Male               9th grade     NA     NA
## 11868            14 years old Female               9th grade   1.63  54.43
## 11869            15 years old   Male               9th grade   1.80  81.65
## 11870            15 years old Female                    <NA>   1.57  51.26
## 11871            14 years old Female               9th grade   1.73  81.65
## 11872            15 years old   Male               9th grade   1.68 127.01
## 11873            15 years old   Male               9th grade   1.83  72.58
## 11874            14 years old   Male               9th grade   1.70  48.99
## 11875            15 years old Female               9th grade   1.70  65.77
## 11876            14 years old   Male               9th grade   1.63  68.04
## 11877            14 years old Female               9th grade   1.60  58.97
## 11878            15 years old   Male               9th grade     NA     NA
## 11879            15 years old Female               9th grade   1.70  58.97
## 11880            15 years old Female               9th grade   1.57  45.36
## 11881            14 years old Female               9th grade   1.57  49.90
## 11882            14 years old Female               9th grade   1.60  73.94
## 11883            15 years old Female               9th grade     NA     NA
## 11884            15 years old   Male               9th grade   1.78  61.24
## 11885            15 years old Female               9th grade   1.68  63.50
## 11886            14 years old   Male               9th grade     NA     NA
## 11887            16 years old Female              10th grade   1.63  61.24
## 11888            15 years old Female              10th grade   1.73  61.24
## 11889            16 years old   Male              10th grade   1.75  55.79
## 11890            15 years old Female              10th grade   1.75  68.04
## 11891            16 years old   Male              10th grade   1.80  68.04
## 11892            14 years old Female               9th grade     NA     NA
## 11893            14 years old   Male               9th grade   1.85 151.50
## 11894            14 years old   Male               9th grade   1.80  65.77
## 11895            15 years old Female              10th grade   1.60  72.58
## 11896            15 years old Female                    <NA>   1.70  54.43
## 11897                    <NA> Female                    <NA>     NA     NA
## 11898            15 years old   Male              10th grade   1.63  56.70
## 11899            16 years old Female              10th grade   1.63  49.90
## 11900            15 years old   Male              10th grade   1.73  74.84
## 11901            16 years old   Male              10th grade   1.80  70.31
## 11902            15 years old   Male              10th grade   1.80  73.03
## 11903            16 years old   Male              10th grade   1.75  54.43
## 11904            15 years old   Male              10th grade     NA     NA
## 11905            16 years old Female              10th grade   1.57  57.61
## 11906            15 years old Female              10th grade   1.65  52.62
## 11907            15 years old   Male              10th grade   1.70  86.18
## 11908            15 years old Female              10th grade   1.60  49.90
## 11909            16 years old Female              10th grade   1.65  61.24
## 11910            15 years old Female              10th grade   1.47  56.70
## 11911            16 years old   <NA>              10th grade     NA     NA
## 11912            16 years old   Male              10th grade   1.83 104.33
## 11913            15 years old   Male              10th grade   1.70  68.04
## 11914            15 years old   Male              10th grade   1.85  95.26
## 11915            16 years old Female                    <NA>     NA     NA
## 11916            16 years old Female                    <NA>   1.68  70.31
## 11917            15 years old   Male              10th grade   1.73  90.72
## 11918            16 years old   Male              10th grade   1.68  79.38
## 11919            15 years old   Male                    <NA>     NA     NA
## 11920            15 years old   Male              10th grade   1.73  72.58
## 11921            15 years old Female              10th grade   1.65  68.04
## 11922            16 years old Female              10th grade     NA     NA
## 11923            16 years old   Male              10th grade   1.65  70.76
## 11924            16 years old   Male              10th grade   1.63  63.50
## 11925            16 years old   Male              10th grade   1.83  58.97
## 11926            15 years old Female              10th grade   1.70 124.29
## 11927            16 years old Female              10th grade   1.65  71.67
## 11928            16 years old   Male              10th grade   1.78  72.58
## 11929            15 years old   Male              10th grade   1.78 104.33
## 11930            16 years old   Male              10th grade     NA     NA
## 11931            15 years old   Male              10th grade   1.80  63.50
## 11932            15 years old Female              10th grade   1.57  49.90
## 11933            15 years old Female              10th grade   1.60  49.90
## 11934            16 years old   Male              10th grade   1.80  56.70
## 11935            15 years old   Male              10th grade   1.78  52.16
## 11936            15 years old Female              10th grade   1.73  59.88
## 11937            16 years old   Male              10th grade   1.73  57.61
## 11938            15 years old   Male              10th grade   1.65  49.90
## 11939            16 years old Female              10th grade   1.70  54.43
## 11940            15 years old   Male              10th grade   1.75  67.13
## 11941            17 years old Female              11th grade   1.70  56.70
## 11942            17 years old Female              11th grade     NA     NA
## 11943            16 years old   Male              11th grade   1.78 107.50
## 11944            16 years old   Male              11th grade   1.93  83.92
## 11945            16 years old   Male              11th grade   1.80  81.19
## 11946            16 years old Female              11th grade   1.57  61.24
## 11947            17 years old   Male              11th grade   1.78  68.04
## 11948            16 years old   Male              11th grade   1.83  90.72
## 11949            16 years old   Male              11th grade   1.85  92.08
## 11950            16 years old   Male              11th grade   1.83  65.77
## 11951            17 years old Female              11th grade   1.73  72.58
## 11952            17 years old Female              11th grade   1.63  52.16
## 11953            16 years old   <NA>              11th grade     NA     NA
## 11954            17 years old Female              11th grade   1.73  58.97
## 11955            16 years old Female              11th grade   1.52  49.90
## 11956            17 years old Female              11th grade   1.65  65.77
## 11957            16 years old Female              11th grade     NA     NA
## 11958            16 years old Female              11th grade   1.57  53.98
## 11959            16 years old Female              11th grade   1.63  70.76
## 11960            16 years old Female              11th grade   1.68  63.96
## 11961            17 years old Female              11th grade     NA     NA
## 11962            16 years old   Male              11th grade     NA     NA
## 11963            17 years old Female              11th grade   1.60  61.24
## 11964            16 years old Female              11th grade   1.63  63.50
## 11965            16 years old   Male              11th grade   1.83  90.72
## 11966            16 years old   Male              11th grade   1.65  54.43
## 11967            16 years old   Male              11th grade   1.83  87.54
## 11968            17 years old   Male              11th grade   1.90  68.04
## 11969            17 years old   Male                    <NA>   1.83  90.72
## 11970            16 years old   Male              11th grade     NA     NA
## 11971            16 years old   Male              11th grade   1.83  83.92
## 11972            16 years old   Male              11th grade   1.78  70.31
## 11973   18 years old or older   Male                    <NA>   1.83  65.77
## 11974            16 years old   Male              11th grade   1.75  68.04
## 11975            17 years old Female              11th grade   1.60  53.52
## 11976            17 years old Female              11th grade   1.65  61.24
## 11977            16 years old Female              11th grade   1.57  72.58
## 11978            16 years old Female              11th grade   1.52  52.16
## 11979            17 years old Female              11th grade   1.65  52.16
## 11980            17 years old Female              11th grade   1.68  63.50
## 11981            17 years old   Male              11th grade   1.90 104.33
## 11982            16 years old   Male              11th grade     NA     NA
## 11983            16 years old   Male              11th grade   1.83  61.24
## 11984            17 years old Female              11th grade   1.57  54.43
## 11985            16 years old   Male              11th grade   1.80  63.50
## 11986            16 years old Female              11th grade     NA     NA
## 11987            17 years old Female              11th grade   1.70  95.71
## 11988            16 years old Female              11th grade   1.68  65.77
## 11989            16 years old   Male              11th grade   1.85  69.40
## 11990            17 years old   Male              11th grade   1.80  68.04
## 11991            16 years old Female              11th grade   1.70  74.84
## 11992            17 years old   Male              11th grade   1.93  79.38
## 11993            17 years old Female              11th grade   1.65  63.50
## 11994            16 years old Female              11th grade   1.73  63.50
## 11995            16 years old Female              11th grade     NA     NA
## 11996            17 years old Female              11th grade   1.75 104.33
## 11997   18 years old or older Female              12th grade   1.65  63.50
## 11998            17 years old Female              12th grade   1.60  99.79
## 11999   18 years old or older Female              12th grade   1.57  58.97
## 12000            17 years old Female              12th grade   1.80  68.04
## 12001            17 years old   Male              12th grade   1.83  74.39
## 12002            17 years old Female                    <NA>   1.70  81.65
## 12003            17 years old Female                    <NA>     NA     NA
## 12004            17 years old Female                    <NA>   1.68  56.70
## 12005   18 years old or older Female              12th grade   1.55  65.32
## 12006            17 years old Female              12th grade   1.65  65.77
## 12007   18 years old or older   Male              12th grade   1.75  74.84
## 12008            17 years old Female              12th grade   1.70  62.60
## 12009                    <NA>   Male              12th grade     NA     NA
## 12010            17 years old Female              12th grade   1.68  70.31
## 12011            17 years old Female              12th grade   1.60  52.16
## 12012            17 years old Female              12th grade   1.55  49.90
## 12013            17 years old Female              12th grade   1.80  90.72
## 12014   18 years old or older   Male              12th grade   1.88  74.84
## 12015            17 years old Female              12th grade     NA     NA
## 12016            17 years old   Male              12th grade   1.85  82.10
## 12017   18 years old or older Female              12th grade   1.70  65.77
## 12018   18 years old or older   Male              12th grade   1.73  63.96
## 12019            17 years old Female              12th grade     NA     NA
## 12020   18 years old or older   Male              12th grade   1.80 106.60
## 12021            17 years old Female              12th grade   1.65  72.58
## 12022                    <NA> Female              12th grade     NA     NA
## 12023   18 years old or older   Male              12th grade   1.68  56.25
## 12024   18 years old or older   Male              12th grade   1.70 164.66
## 12025            17 years old   Male              12th grade   1.80 104.33
## 12026   18 years old or older   Male              12th grade   1.73  63.50
## 12027   18 years old or older Female              12th grade   1.60  52.16
## 12028            17 years old Female              12th grade   1.73  63.50
## 12029            17 years old Female              12th grade   1.57  77.11
## 12030            17 years old   <NA>              12th grade     NA     NA
## 12031            17 years old   Male              12th grade   1.65  99.79
## 12032   18 years old or older   Male              12th grade   1.78  95.26
## 12033                    <NA>   Male              12th grade     NA     NA
## 12034   18 years old or older   Male              12th grade   1.83  76.66
## 12035            16 years old   Male              11th grade   1.83  54.43
## 12036   18 years old or older   Male              12th grade   1.63  90.72
## 12037            16 years old   Male              10th grade   1.63 136.08
## 12038            15 years old   Male               9th grade   1.70  65.77
## 12039            16 years old Female              10th grade     NA     NA
## 12040            15 years old Female               9th grade     NA     NA
## 12041            15 years old   Male               9th grade   1.88  70.31
## 12042            16 years old Female              10th grade   1.65  74.84
## 12043            17 years old Female              12th grade   1.57  62.60
## 12044            16 years old   <NA>              11th grade     NA     NA
## 12045            17 years old   Male              12th grade   1.88 106.60
## 12046   18 years old or older Female              12th grade   1.63  81.65
## 12047            15 years old   Male              10th grade   1.70 104.78
## 12048            17 years old   Male              12th grade   1.80  68.04
## 12049   18 years old or older Female              12th grade   1.60  90.72
## 12050            17 years old Female              11th grade   1.50  46.72
## 12051            16 years old Female              10th grade   1.78 124.74
## 12052            16 years old   Male              11th grade   1.78  78.47
## 12053   18 years old or older   Male              11th grade   1.73 111.13
## 12054            17 years old Female              11th grade   1.42  78.02
## 12055   18 years old or older   Male              12th grade   1.68  90.72
## 12056            16 years old Female              11th grade   1.57  61.69
## 12057            16 years old Female              10th grade   1.63  63.50
## 12058            17 years old Female              11th grade   1.65  51.71
## 12059            16 years old Female              11th grade   1.57  65.77
## 12060            17 years old   Male              12th grade   1.55  68.04
## 12061            16 years old Female              11th grade   1.55  49.90
## 12062            16 years old Female              11th grade   1.57  44.45
## 12063            16 years old   Male              11th grade   1.80  96.62
## 12064   18 years old or older   Male              12th grade     NA     NA
## 12065            15 years old   Male              10th grade   1.68  58.97
## 12066            14 years old Female               9th grade   1.65  65.77
## 12067            15 years old   Male               9th grade   1.60  45.36
## 12068            14 years old Female               9th grade     NA     NA
## 12069            14 years old Female               9th grade   1.63  49.44
## 12070            15 years old Female                    <NA>   1.65  72.58
## 12071            15 years old   Male               9th grade   1.78  90.27
## 12072            15 years old Female               9th grade   1.60  72.58
## 12073            14 years old   Male               9th grade   1.65  66.68
## 12074            15 years old   Male               9th grade   1.52  54.43
## 12075            15 years old Female                    <NA>   1.57  54.43
## 12076            15 years old   Male               9th grade     NA     NA
## 12077            14 years old   Male               9th grade   1.85  72.58
## 12078            15 years old   Male               9th grade   1.68 107.05
## 12079            14 years old   Male               9th grade   1.78  61.24
## 12080            14 years old   <NA>               9th grade     NA     NA
## 12081            14 years old Female               9th grade   1.65  65.77
## 12082            15 years old   Male               9th grade   1.93  88.91
## 12083            14 years old   Male               9th grade   1.78  63.50
## 12084            15 years old   Male               9th grade   1.83  71.22
## 12085            14 years old Female               9th grade   1.57  49.90
## 12086            14 years old   Male               9th grade   1.73  70.76
## 12087            15 years old   Male               9th grade   1.70  58.97
## 12088            14 years old Female               9th grade   1.65  79.38
## 12089            15 years old Female               9th grade     NA     NA
## 12090                    <NA> Female               9th grade     NA     NA
## 12091            15 years old Female                    <NA>   1.55  51.26
## 12092            15 years old   Male               9th grade     NA     NA
## 12093            15 years old   Male               9th grade   1.65  68.04
## 12094            16 years old   Male               9th grade     NA     NA
## 12095            15 years old Female               9th grade   1.65  70.31
## 12096            15 years old   Male               9th grade   1.70  52.62
## 12097            15 years old   Male               9th grade   1.80  66.23
## 12098            14 years old Female                    <NA>   1.65  54.43
## 12099            14 years old   Male               9th grade   1.73  63.50
## 12100            14 years old Female               9th grade   1.63  67.13
## 12101            15 years old Female                    <NA>     NA     NA
## 12102            14 years old   Male               9th grade   1.70 152.41
## 12103            14 years old Female                    <NA>   1.52  79.38
## 12104            15 years old   Male               9th grade   1.68  53.52
## 12105            14 years old Female                    <NA>   1.70  54.43
## 12106            14 years old   <NA>               9th grade     NA     NA
## 12107            14 years old Female               9th grade   1.68  54.43
## 12108            15 years old   Male               9th grade   1.68  63.50
## 12109            14 years old   Male               9th grade   1.57  44.91
## 12110            15 years old Female               9th grade   1.63  58.97
## 12111            15 years old   Male               9th grade   1.65  95.26
## 12112            14 years old Female               9th grade     NA     NA
## 12113            14 years old   Male               9th grade   1.73  54.43
## 12114            14 years old Female               9th grade   1.68  49.90
## 12115            14 years old Female                    <NA>   1.68 113.40
## 12116            14 years old   Male               9th grade   1.63  49.90
## 12117            14 years old   Male               9th grade   1.65  69.85
## 12118            14 years old Female               9th grade   1.60  68.04
## 12119            15 years old Female               9th grade   1.63  47.63
## 12120            14 years old Female               9th grade   1.73  65.77
## 12121            15 years old   Male               9th grade   1.47  34.02
## 12122            15 years old Female               9th grade   1.70  53.07
## 12123            14 years old   Male               9th grade   1.73  63.05
## 12124            14 years old Female               9th grade     NA     NA
## 12125            14 years old Female               9th grade   1.55  48.99
## 12126            15 years old Female               9th grade   1.55  52.16
## 12127            14 years old Female               9th grade   1.63  88.45
## 12128            14 years old Female               9th grade   1.70  56.70
## 12129            16 years old Female              10th grade   1.57  53.52
## 12130            15 years old   Male              10th grade   1.75  65.77
## 12131                    <NA> Female              10th grade     NA     NA
## 12132            15 years old Female              10th grade   1.65  69.40
## 12133            16 years old Female              10th grade   1.57  63.50
## 12134            15 years old   Male              10th grade   1.68  40.37
## 12135            15 years old Female              10th grade   1.68  70.31
## 12136            15 years old   Male              10th grade   1.68  56.25
## 12137            15 years old   Male                    <NA>   1.73  70.31
## 12138                    <NA>   Male                    <NA>     NA     NA
## 12139            15 years old Female              10th grade     NA     NA
## 12140                    <NA>   Male              10th grade     NA     NA
## 12141                    <NA> Female              10th grade     NA     NA
## 12142            15 years old   Male                    <NA>   1.88  72.58
## 12143                    <NA> Female                    <NA>     NA     NA
## 12144                    <NA> Female              10th grade     NA     NA
## 12145            15 years old Female              10th grade   1.65  51.71
## 12146            15 years old Female              10th grade   1.83  81.65
## 12147                    <NA> Female              10th grade     NA     NA
## 12148            15 years old   Male              10th grade   1.75  68.04
## 12149            15 years old Female              10th grade   1.60  47.63
## 12150            15 years old Female              10th grade   1.68  72.58
## 12151            15 years old Female                    <NA>   1.52  49.90
## 12152            15 years old Female              10th grade   1.60  52.16
## 12153            15 years old   <NA>              10th grade     NA     NA
## 12154            16 years old Female              10th grade   1.52  36.29
## 12155                    <NA>   Male              10th grade     NA     NA
## 12156            15 years old   Male              10th grade   1.73  59.88
## 12157            15 years old   Male              10th grade   1.75  65.77
## 12158            16 years old   Male              10th grade   1.88  58.97
## 12159            16 years old   Male              10th grade   1.70  77.11
## 12160            16 years old   <NA>              10th grade     NA     NA
## 12161            15 years old Female              10th grade   1.57  61.24
## 12162            15 years old Female              10th grade   1.63  56.70
## 12163            16 years old Female              10th grade   1.75  51.71
## 12164                    <NA> Female              10th grade     NA     NA
## 12165                    <NA> Female                    <NA>     NA     NA
## 12166            16 years old Female              10th grade   1.60  48.99
## 12167            16 years old Female              10th grade     NA     NA
## 12168            16 years old   Male              10th grade   1.70  56.70
## 12169            15 years old Female              10th grade   1.70  68.04
## 12170            16 years old Female              11th grade   1.60  55.34
## 12171            16 years old Female              10th grade   1.60  58.97
## 12172            15 years old Female              10th grade   1.52  49.90
## 12173                    <NA>   Male              10th grade     NA     NA
## 12174            15 years old Female              10th grade   1.63  73.94
## 12175            15 years old Female              10th grade   1.57  54.43
## 12176            15 years old Female                    <NA>   1.68  61.24
## 12177            17 years old   Male              10th grade     NA     NA
## 12178                    <NA> Female                    <NA>     NA     NA
## 12179            16 years old Female              10th grade   1.70  89.81
## 12180            15 years old   Male              10th grade   1.80  78.93
## 12181            15 years old Female              10th grade   1.57  77.11
## 12182            16 years old   Male                    <NA>     NA     NA
## 12183            16 years old Female                    <NA>   1.83 113.40
## 12184            16 years old   Male              10th grade     NA     NA
## 12185            15 years old   Male              10th grade   1.78  56.70
## 12186            15 years old   Male              10th grade   1.70 117.03
## 12187            15 years old   Male                    <NA>   1.80  58.97
## 12188            15 years old   Male              10th grade   1.68  49.90
## 12189            16 years old   Male              10th grade   1.68  54.43
## 12190                    <NA>   Male              10th grade     NA     NA
## 12191            15 years old Female              10th grade   1.70  56.70
## 12192            15 years old   Male                    <NA>   1.83  72.58
## 12193            15 years old Female              10th grade   1.70  81.65
## 12194            16 years old   Male              10th grade   1.73  62.14
## 12195            16 years old   Male              10th grade   1.80  63.50
## 12196            15 years old   Male              10th grade   1.83  83.92
## 12197            17 years old Female              11th grade   1.60  54.89
## 12198            16 years old   Male              11th grade   1.73  73.48
## 12199            16 years old Female              11th grade   1.55  46.27
## 12200            17 years old Female              11th grade   1.68  81.65
## 12201            16 years old   Male              11th grade   1.85 115.67
## 12202                    <NA>   Male              11th grade     NA     NA
## 12203            16 years old Female              11th grade     NA     NA
## 12204            16 years old Female                    <NA>   1.55  54.43
## 12205            16 years old Female              11th grade   1.57  62.14
## 12206            17 years old   Male              11th grade   1.75  77.11
## 12207            16 years old Female              11th grade   1.65  77.11
## 12208            17 years old   Male              11th grade     NA     NA
## 12209            16 years old Female              11th grade   1.68  68.04
## 12210            16 years old   Male                    <NA>   1.75  84.37
## 12211            16 years old   Male              11th grade   1.78  61.24
## 12212            17 years old Female              11th grade   1.57 113.40
## 12213            16 years old Female                    <NA>   1.63  68.04
## 12214                    <NA>   <NA>                    <NA>     NA     NA
## 12215            16 years old Female              11th grade   1.57  81.65
## 12216            17 years old Female              11th grade   1.60  58.97
## 12217            17 years old Female              11th grade   1.63  56.70
## 12218            17 years old   Male              11th grade   1.65  56.25
## 12219            17 years old   Male              11th grade   1.80  75.30
## 12220                    <NA> Female              11th grade     NA     NA
## 12221            17 years old   Male              11th grade   1.73  56.25
## 12222            17 years old   Male              11th grade   1.80  62.60
## 12223   18 years old or older Female              11th grade   1.60  55.79
## 12224            16 years old Female              11th grade   1.68  61.24
## 12225            17 years old Female              11th grade     NA     NA
## 12226            16 years old Female              11th grade   1.60  53.07
## 12227            17 years old Female              11th grade   1.70 119.30
## 12228            17 years old   Male              11th grade   1.90 112.49
## 12229            16 years old Female              11th grade   1.73  62.60
## 12230            16 years old   Male              11th grade   1.75  95.26
## 12231            16 years old Female              11th grade   1.57 113.40
## 12232            16 years old Female              11th grade   1.57  52.16
## 12233            16 years old Female              11th grade   1.70  72.58
## 12234            16 years old   Male              11th grade   1.90  95.26
## 12235            17 years old   Male              11th grade   1.65  54.89
## 12236            17 years old   Male              11th grade   1.90  79.38
## 12237                    <NA> Female              11th grade     NA     NA
## 12238            16 years old   Male              11th grade     NA     NA
## 12239                    <NA>   <NA>                    <NA>     NA     NA
## 12240            16 years old Female                    <NA>   1.47  51.26
## 12241            17 years old   Male              11th grade   1.83  74.84
## 12242            17 years old Female              11th grade   1.68  73.03
## 12243            16 years old Female              11th grade     NA     NA
## 12244            16 years old Female              11th grade   1.63  56.25
## 12245            17 years old   Male              11th grade   1.73  89.81
## 12246            17 years old   Male              11th grade   1.70  95.26
## 12247            16 years old Female              11th grade   1.70 124.74
## 12248            17 years old   Male              11th grade   1.60  63.50
## 12249            17 years old Female              11th grade   1.70  79.38
## 12250            17 years old Female              11th grade   1.60  45.36
## 12251            17 years old Female              11th grade   1.65  58.97
## 12252            17 years old Female              11th grade   1.65  90.72
## 12253            17 years old   Male              11th grade   1.65  52.16
## 12254            16 years old   Male              11th grade   1.78  65.77
## 12255            17 years old   Male              11th grade   1.63  54.43
## 12256            17 years old Female              11th grade     NA     NA
## 12257            17 years old Female              12th grade   1.55  65.77
## 12258            17 years old   Male                    <NA>   1.85  74.84
## 12259   18 years old or older Female              12th grade   1.57  43.09
## 12260   18 years old or older Female              12th grade   1.73  89.36
## 12261   18 years old or older   Male              12th grade   1.83  74.84
## 12262 12 years old or younger   Male Ungraded or other grade     NA     NA
## 12263   18 years old or older Female              12th grade   1.70  49.90
## 12264            17 years old   Male                    <NA>   1.73  92.99
## 12265   18 years old or older   Male              12th grade   1.88 102.06
## 12266            17 years old Female              12th grade   1.50  52.16
## 12267            17 years old Female              12th grade   1.70  81.65
## 12268            17 years old   Male                    <NA>   1.80  58.97
## 12269   18 years old or older   Male              12th grade   1.78  63.96
## 12270                    <NA>   Male              12th grade     NA     NA
## 12271            17 years old   Male              12th grade   1.47  39.46
## 12272   18 years old or older   Male              12th grade   1.73  56.25
## 12273   18 years old or older   Male              12th grade   1.96 113.40
## 12274            17 years old Female                    <NA>     NA     NA
## 12275   18 years old or older Female              12th grade   1.60  54.43
## 12276   18 years old or older   Male              12th grade   1.68  56.70
## 12277            17 years old Female              12th grade   1.55  88.45
## 12278   18 years old or older Female              12th grade   1.52  65.77
## 12279            17 years old   Male              12th grade   1.80  83.46
## 12280            17 years old   Male              12th grade   1.80  90.72
## 12281            17 years old   Male              12th grade   1.85  67.13
## 12282   18 years old or older   Male                    <NA>   1.68  69.85
## 12283                    <NA>   Male                    <NA>     NA     NA
## 12284                    <NA> Female                    <NA>     NA     NA
## 12285   18 years old or older Female                    <NA>     NA     NA
## 12286   18 years old or older Female              12th grade   1.63  52.62
## 12287   18 years old or older   Male                    <NA>   1.78  90.72
## 12288   18 years old or older   Male              12th grade   1.90  97.52
## 12289            17 years old Female              12th grade     NA     NA
## 12290            17 years old Female              12th grade   1.50  49.90
## 12291            17 years old   Male                    <NA>   1.85  86.18
## 12292            17 years old   Male              12th grade   1.80 104.33
## 12293            17 years old Female              12th grade   1.65 122.47
## 12294   18 years old or older   Male              12th grade   1.75  61.24
## 12295            17 years old Female              12th grade   1.70  49.90
## 12296            17 years old Female              12th grade   1.60  93.44
## 12297            17 years old   Male              12th grade   1.70  58.97
## 12298                    <NA> Female              12th grade     NA     NA
## 12299   18 years old or older Female              12th grade   1.60  58.97
## 12300   18 years old or older Female              12th grade   1.50  41.73
## 12301   18 years old or older Female              12th grade     NA     NA
## 12302            17 years old   Male              12th grade   1.45  91.17
## 12303   18 years old or older Female              12th grade   1.68  87.54
## 12304            17 years old Female              12th grade   1.57  58.06
## 12305   18 years old or older   Male              12th grade   1.73  74.84
## 12306   18 years old or older Female              12th grade   1.57  63.50
## 12307            17 years old   Male              12th grade   1.83  74.84
## 12308            17 years old   Male              12th grade   1.80  70.31
## 12309            17 years old   Male              12th grade     NA     NA
## 12310                    <NA> Female                    <NA>     NA     NA
## 12311                    <NA>   Male                    <NA>     NA     NA
## 12312            17 years old Female              12th grade   1.65  58.97
## 12313   18 years old or older   Male              12th grade   1.70  62.14
## 12314   18 years old or older Female                    <NA>   1.70  61.24
## 12315                    <NA> Female              12th grade     NA     NA
## 12316            17 years old   Male              12th grade   1.80 113.40
## 12317            17 years old   Male              12th grade   1.78  95.26
## 12318   18 years old or older   Male              12th grade   1.83 106.60
## 12319   18 years old or older   Male              12th grade   1.83  72.58
## 12320   18 years old or older   Male              12th grade   1.73 112.49
## 12321                    <NA> Female              12th grade     NA     NA
## 12322            17 years old Female                    <NA>     NA     NA
## 12323            17 years old Female              12th grade   1.57  58.97
## 12324            16 years old   Male              10th grade   1.88  60.78
## 12325            17 years old Female              11th grade     NA     NA
## 12326            16 years old   Male              10th grade   1.70  68.04
## 12327            15 years old   Male               9th grade     NA     NA
## 12328            17 years old   Male              11th grade   1.75  65.77
## 12329            16 years old Female               9th grade   1.63  79.83
## 12330   18 years old or older   Male               9th grade     NA     NA
## 12331            15 years old Female               9th grade     NA     NA
## 12332            15 years old Female               9th grade     NA     NA
## 12333            16 years old   Male                    <NA>   1.65  56.25
## 12334            16 years old   Male              10th grade   1.52  68.04
## 12335            17 years old Female              11th grade     NA     NA
## 12336   18 years old or older   Male              12th grade   1.68  99.79
## 12337            16 years old   Male              10th grade     NA     NA
## 12338            17 years old Female              11th grade   1.55  65.77
## 12339   18 years old or older Female              12th grade   1.50  42.64
## 12340   18 years old or older   Male              12th grade     NA     NA
## 12341            16 years old Female              10th grade     NA     NA
## 12342            13 years old Female               9th grade   1.63  58.97
## 12343            14 years old   Male               9th grade   1.75  65.77
## 12344            15 years old   Male               9th grade   1.73  68.49
## 12345            15 years old Female               9th grade   1.60  56.70
## 12346            14 years old Female               9th grade     NA     NA
## 12347            15 years old Female               9th grade   1.68  86.18
## 12348            14 years old Female               9th grade   1.63  48.54
## 12349            14 years old Female               9th grade   1.55  50.80
## 12350            15 years old Female               9th grade   1.60  47.63
## 12351            16 years old   Male               9th grade   1.75  70.31
## 12352            14 years old Female               9th grade     NA     NA
## 12353            14 years old Female               9th grade   1.50  43.09
## 12354            14 years old Female               9th grade   1.57  52.16
## 12355            15 years old Female               9th grade   1.65  58.51
## 12356            14 years old   Male               9th grade   1.73  58.97
## 12357            14 years old   Male               9th grade   1.83  88.45
## 12358            14 years old   Male               9th grade   1.80  81.65
## 12359            14 years old   Male               9th grade   1.75  83.01
## 12360            15 years old   Male               9th grade   1.80  71.22
## 12361            15 years old Female               9th grade   1.60  45.36
## 12362            14 years old Female               9th grade   1.50  50.80
## 12363            15 years old Female               9th grade   1.50  47.63
## 12364            14 years old Female               9th grade     NA     NA
## 12365            15 years old   Male               9th grade   1.73  61.24
## 12366            14 years old Female               9th grade   1.55  39.46
## 12367            15 years old   Male               9th grade   1.73  99.79
## 12368            14 years old Female               9th grade   1.63  63.50
## 12369            14 years old Female               9th grade   1.63  74.84
## 12370            14 years old Female               9th grade   1.68  63.50
## 12371            15 years old   Male               9th grade   1.60  49.90
## 12372            15 years old   Male               9th grade   1.57  82.56
## 12373            14 years old   Male               9th grade     NA     NA
## 12374            15 years old Female              10th grade   1.60  53.07
## 12375            16 years old Female              10th grade   1.57  52.16
## 12376            15 years old   Male              10th grade     NA     NA
## 12377            16 years old   Male              10th grade   1.75  60.78
## 12378            16 years old   Male              10th grade   1.93  74.84
## 12379            15 years old   Male              10th grade   1.60  50.80
## 12380            15 years old Female              10th grade     NA     NA
## 12381            15 years old   Male              10th grade   1.80  81.65
## 12382            16 years old   Male              10th grade   1.78 101.15
## 12383            15 years old Female              10th grade   1.57  54.43
## 12384            16 years old Female              10th grade   1.52  49.90
## 12385            15 years old   Male              10th grade   1.90  77.11
## 12386 12 years old or younger   Male              10th grade     NA     NA
## 12387            17 years old   Male              10th grade   1.75  54.43
## 12388            16 years old   Male              10th grade   1.68  54.43
## 12389            16 years old   Male              10th grade   1.83  65.32
## 12390            15 years old   Male              10th grade   1.78  86.18
## 12391            15 years old Female              10th grade   1.70  80.74
## 12392            15 years old   Male              10th grade   1.90  65.77
## 12393            15 years old Female              10th grade     NA     NA
## 12394            16 years old   Male              10th grade   1.68  77.11
## 12395            15 years old Female              10th grade   1.57  68.04
## 12396            16 years old   Male              10th grade   1.85  72.58
## 12397            16 years old   Male              10th grade   1.63  97.98
## 12398            15 years old Female              10th grade   1.80 104.33
## 12399            16 years old Female              10th grade   1.55  49.44
## 12400            16 years old Female              10th grade     NA     NA
## 12401            16 years old Female              10th grade   1.70  47.63
## 12402            16 years old Female              10th grade   1.60  52.16
## 12403            14 years old Female              10th grade   1.57  53.07
## 12404            17 years old Female              10th grade   1.57  56.25
## 12405            15 years old Female              10th grade     NA     NA
## 12406            15 years old   Male              10th grade   1.68  99.79
## 12407            17 years old Female              11th grade   1.65  79.38
## 12408            17 years old   <NA>              11th grade     NA     NA
## 12409            17 years old Female              11th grade   1.60  70.31
## 12410            17 years old   Male              11th grade   1.80  60.33
## 12411            16 years old Female              11th grade   1.60  53.98
## 12412            17 years old Female              11th grade   1.70  87.54
## 12413            16 years old   Male              11th grade     NA     NA
## 12414            16 years old   <NA>              11th grade     NA     NA
## 12415   18 years old or older Female              11th grade   1.57  51.26
## 12416            16 years old   Male              11th grade   1.83  81.65
## 12417            17 years old Female              11th grade   1.60  56.25
## 12418   18 years old or older   Male              11th grade   1.78  65.77
## 12419            17 years old Female              11th grade     NA     NA
## 12420            16 years old Female              11th grade   1.63  65.32
## 12421            17 years old   Male              11th grade   1.75  50.80
## 12422            17 years old   Male              11th grade   1.83  84.37
## 12423            16 years old Female              11th grade   1.70  64.41
## 12424            17 years old Female              11th grade   1.70  61.24
## 12425            16 years old Female              11th grade   1.73  61.24
## 12426            16 years old   Male              11th grade   1.78  63.50
## 12427            16 years old   Male              11th grade   1.78  67.13
## 12428            16 years old   Male              11th grade   1.85  67.13
## 12429            16 years old Female              11th grade   1.55  51.26
## 12430            17 years old Female              11th grade     NA     NA
## 12431            16 years old Female              11th grade   1.63  64.41
## 12432            16 years old Female              11th grade   1.65  77.11
## 12433            16 years old   Male              11th grade   1.83  72.58
## 12434   18 years old or older Female              12th grade   1.55  45.36
## 12435            17 years old Female              12th grade   1.57  58.97
## 12436   18 years old or older   Male              12th grade   1.78  97.98
## 12437   18 years old or older   Male              12th grade   1.80  82.10
## 12438   18 years old or older   Male              12th grade   1.68  58.97
## 12439            17 years old Female              12th grade   1.65  90.72
## 12440   18 years old or older Female              12th grade   1.65  52.16
## 12441   18 years old or older Female              12th grade   1.63  80.74
## 12442            17 years old   Male              12th grade   1.83  81.65
## 12443   18 years old or older   Male              12th grade   1.85 104.33
## 12444   18 years old or older Female              12th grade   1.55  65.77
## 12445   18 years old or older   Male              12th grade   1.70  90.72
## 12446   18 years old or older   Male              12th grade   1.75  80.74
## 12447            17 years old Female              12th grade   1.57  44.45
## 12448            17 years old Female              12th grade   1.63  72.58
## 12449            14 years old Female               9th grade   1.57  49.90
## 12450            15 years old Female               9th grade   1.63  81.65
## 12451            15 years old   Male               9th grade   1.60  57.15
## 12452            14 years old   Male               9th grade   1.85  73.03
## 12453            14 years old   Male               9th grade   1.63  52.16
## 12454            15 years old   Male               9th grade   1.85  73.94
## 12455            14 years old Female               9th grade   1.50  61.24
## 12456            15 years old Female               9th grade   1.73  81.65
## 12457            15 years old   Male               9th grade   1.70  68.95
## 12458            15 years old Female               9th grade   1.55  47.63
## 12459            15 years old Female               9th grade   1.63  63.50
## 12460            14 years old   Male               9th grade   1.80  58.06
## 12461            15 years old   Male               9th grade   1.68  95.26
## 12462            15 years old Female               9th grade   1.57  65.77
## 12463            14 years old Female               9th grade   1.73  47.63
## 12464            14 years old   Male               9th grade   1.78  99.79
## 12465            14 years old   Male               9th grade   1.83  83.92
## 12466            15 years old   Male              10th grade   1.75  77.11
## 12467            15 years old   Male              10th grade   1.75  68.04
## 12468            15 years old Female              10th grade   1.70  63.50
## 12469            16 years old   Male              10th grade   1.60  58.97
## 12470            16 years old Female              10th grade   1.60  86.18
## 12471            15 years old Female              10th grade   1.57  61.69
## 12472            16 years old Female              10th grade   1.60  46.72
## 12473            16 years old   Male              10th grade   1.78  69.40
## 12474            15 years old Female              10th grade   1.60  45.36
## 12475            16 years old Female              10th grade   1.60  83.92
## 12476            16 years old Female              10th grade   1.60  52.16
## 12477            16 years old   Male              10th grade     NA     NA
## 12478            16 years old Female              10th grade   1.68  80.74
## 12479            15 years old Female              10th grade   1.55  63.96
## 12480            15 years old   Male              10th grade   1.55  54.43
## 12481            16 years old Female              11th grade   1.78  68.04
## 12482            17 years old   Male              11th grade   1.73  95.26
## 12483            16 years old Female              11th grade   1.57  52.16
## 12484            16 years old Female              11th grade   1.65  54.43
## 12485            17 years old Female              11th grade   1.63  48.08
## 12486            17 years old Female              11th grade   1.65  52.16
## 12487            16 years old Female              11th grade   1.55  49.90
## 12488            17 years old   Male              11th grade   1.75  54.89
## 12489            17 years old Female              11th grade     NA     NA
## 12490            16 years old Female              11th grade   1.60  66.23
## 12491            17 years old Female              11th grade   1.68  68.04
## 12492            16 years old   Male              11th grade   1.73 156.49
## 12493            16 years old   Male              11th grade   1.88  68.04
## 12494            17 years old   Male              11th grade   1.68  52.16
## 12495            16 years old   Male              11th grade   1.80  66.23
## 12496            16 years old Female              11th grade   1.68  52.16
## 12497            16 years old   Male              11th grade     NA     NA
## 12498            17 years old   Male              11th grade   1.83 115.67
## 12499            17 years old   Male              11th grade     NA     NA
## 12500   18 years old or older   Male              12th grade   1.80  58.97
## 12501            17 years old   Male              12th grade   1.83  68.49
## 12502   18 years old or older Female              12th grade     NA     NA
## 12503   18 years old or older Female              12th grade   1.63  54.43
## 12504            17 years old   Male              12th grade   1.90 113.40
## 12505            17 years old Female              12th grade   1.60  54.43
## 12506                    <NA>   Male              12th grade     NA     NA
## 12507   18 years old or older   Male              12th grade     NA     NA
## 12508   18 years old or older   Male              12th grade   1.90  89.81
## 12509            17 years old   Male              12th grade   1.85  99.79
## 12510            17 years old   Male              12th grade   1.73  97.98
## 12511            17 years old   Male              12th grade   1.83  90.72
## 12512   18 years old or older   Male              12th grade   1.83  97.52
## 12513            17 years old   Male              12th grade   1.73  79.38
## 12514            17 years old Female              12th grade   1.63  63.50
## 12515   18 years old or older Female              12th grade   1.57  49.90
## 12516   18 years old or older   Male              12th grade     NA     NA
## 12517   18 years old or older Female              12th grade   1.52  58.97
## 12518            16 years old Female              10th grade   1.55  42.18
## 12519            17 years old Female              12th grade   1.60  49.90
## 12520            14 years old Female               9th grade   1.65  83.01
## 12521            17 years old Female              11th grade   1.73  65.77
## 12522            15 years old Female               9th grade   1.60  48.99
## 12523            17 years old   Male              12th grade   1.85  74.84
## 12524            14 years old   Male               9th grade     NA     NA
## 12525            17 years old Female              12th grade   1.57  68.04
## 12526   18 years old or older Female              12th grade   1.40  49.90
## 12527            16 years old Female              11th grade   1.73  90.72
## 12528            16 years old   Male              11th grade   1.78  58.97
## 12529            15 years old   Male               9th grade   1.68  41.28
## 12530            16 years old   Male               9th grade   1.63  39.01
## 12531            15 years old   Male               9th grade   1.73  80.29
## 12532            14 years old   Male               9th grade   1.75  65.77
## 12533            17 years old   Male              12th grade   1.73  99.79
## 12534            15 years old   Male               9th grade   1.78  90.72
## 12535            16 years old   Male              10th grade   1.73  68.04
## 12536            16 years old Female              11th grade   1.68  88.45
## 12537            17 years old   Male              11th grade   1.73 107.05
## 12538            17 years old Female Ungraded or other grade   1.57  43.09
## 12539            17 years old   Male              11th grade   1.78  65.77
## 12540            16 years old   Male              11th grade   1.90  72.58
## 12541            16 years old Female              11th grade   1.78  54.43
## 12542            16 years old   Male              11th grade   1.68  54.43
## 12543            17 years old Female              11th grade   1.65  81.65
## 12544            16 years old   Male              11th grade     NA     NA
## 12545            16 years old   Male              11th grade   1.70  54.43
## 12546            16 years old Female              11th grade   1.63  41.73
## 12547            16 years old   Male              11th grade   1.70  58.97
## 12548            16 years old   Male              11th grade   1.80  65.77
## 12549            16 years old   Male              10th grade   1.88  68.04
## 12550            15 years old   Male              10th grade     NA     NA
## 12551            16 years old   Male              10th grade   1.65  94.35
## 12552            15 years old Female              10th grade   1.50  80.74
## 12553            15 years old Female              10th grade   1.57  52.16
## 12554            16 years old Female              10th grade   1.52  63.50
## 12555            15 years old Female              10th grade     NA     NA
## 12556            15 years old   Male              10th grade   1.88  70.31
## 12557            15 years old Female              10th grade   1.80  72.58
## 12558            16 years old   Male              11th grade   1.80 104.33
## 12559            16 years old   Male              10th grade   1.73  80.29
## 12560            15 years old Female              10th grade   1.63  77.11
## 12561            15 years old   Male              10th grade     NA     NA
## 12562            17 years old Female              12th grade   1.65  68.04
## 12563            17 years old   Male              12th grade   1.93  83.92
## 12564   18 years old or older Female              12th grade   1.70  68.49
## 12565            17 years old   Male              12th grade   1.70  54.43
## 12566            17 years old   Male              12th grade   1.78  89.36
## 12567            13 years old   Male              12th grade   1.88 113.40
## 12568            17 years old   Male              12th grade   1.80  68.04
## 12569            17 years old Female              12th grade     NA     NA
## 12570            17 years old   Male              12th grade   1.80  90.72
## 12571   18 years old or older   Male              12th grade   1.68  65.77
## 12572   18 years old or older   Male              12th grade   1.73  56.25
## 12573            17 years old Female              12th grade   1.70 108.86
## 12574            17 years old   Male              12th grade   1.88  68.04
## 12575            17 years old Female              12th grade     NA     NA
## 12576            17 years old   Male              12th grade   1.78  81.65
## 12577            17 years old   Male              12th grade   1.85  74.84
## 12578            14 years old Female               9th grade   1.55  58.97
## 12579            15 years old Female               9th grade   1.63  67.59
## 12580            14 years old Female               9th grade   1.70 127.01
## 12581            14 years old Female               9th grade     NA     NA
## 12582            14 years old   Male               9th grade     NA     NA
## 12583            14 years old   Male               9th grade   1.78  66.68
## 12584            14 years old Female               9th grade     NA     NA
## 12585            14 years old   Male               9th grade   1.75  65.77
## 12586            14 years old Female               9th grade   1.47  45.36
## 12587            14 years old Female               9th grade   1.63  48.54
## 12588            14 years old   Male               9th grade   1.70  56.70
## 12589            14 years old Female               9th grade   1.70  90.72
## 12590            13 years old   Male               9th grade   1.78  83.92
## 12591            14 years old   Male               9th grade   1.73  50.80
## 12592            15 years old Female               9th grade   1.57  48.99
## 12593            14 years old Female               9th grade   1.60  74.39
## 12594            14 years old   Male               9th grade   1.68  58.97
## 12595            14 years old Female               9th grade   1.47  49.90
## 12596            15 years old Female               9th grade   1.68  54.43
## 12597            16 years old Female              11th grade   1.57  56.70
## 12598            16 years old Female              11th grade   1.68  58.97
## 12599            17 years old   Male              11th grade   1.63  59.88
## 12600            17 years old Female              11th grade     NA     NA
## 12601            16 years old Female              11th grade   1.65  54.43
## 12602            16 years old Female              11th grade   1.68  58.97
## 12603            16 years old   Male              11th grade   1.85  84.82
## 12604            16 years old   Male              11th grade   1.78  54.43
## 12605            16 years old   Male              11th grade   1.75  72.58
## 12606            16 years old   Male              11th grade     NA     NA
## 12607            16 years old Female              11th grade   1.55  48.99
## 12608            17 years old Female              11th grade   1.63  77.11
## 12609            17 years old Female              11th grade   1.57  47.63
## 12610            16 years old Female              11th grade   1.70  80.74
## 12611            17 years old   Male              11th grade   1.70  72.58
## 12612            17 years old   Male              11th grade   1.83  79.38
## 12613            16 years old   Male              11th grade   1.68  53.52
## 12614            16 years old Female              11th grade   1.57  52.16
## 12615            16 years old Female              11th grade   1.60  56.70
## 12616            16 years old   Male              11th grade   1.90  70.31
## 12617            16 years old   Male              11th grade   1.70  77.11
## 12618            16 years old Female              11th grade   1.68 115.67
## 12619            16 years old   Male              11th grade   1.73  56.70
## 12620            17 years old   Male              11th grade   1.78  83.92
## 12621            17 years old   Male              11th grade   1.78  56.70
## 12622            16 years old Female              11th grade   1.68  49.90
## 12623            16 years old   Male              11th grade   1.75  74.39
## 12624            16 years old Female              11th grade   1.63  65.77
## 12625            17 years old   Male              11th grade   1.83  63.50
## 12626            16 years old   Male              11th grade   1.78  56.70
## 12627            15 years old Female              10th grade   1.52  60.78
## 12628            16 years old   Male              10th grade   1.80  58.97
## 12629            15 years old Female              10th grade   1.65  98.88
## 12630            16 years old Female              10th grade   1.55  46.27
## 12631            15 years old   Male              10th grade   1.70  56.70
## 12632            15 years old   Male              10th grade   1.83  58.97
## 12633            15 years old Female              10th grade   1.68  70.76
## 12634            15 years old   Male              10th grade   1.83  64.41
## 12635            15 years old Female              10th grade     NA     NA
## 12636            16 years old Female              10th grade   1.60  68.04
## 12637            15 years old Female              10th grade   1.63  58.97
## 12638            15 years old Female              10th grade   1.65  53.07
## 12639            16 years old Female              10th grade   1.65  77.11
## 12640            17 years old Female              10th grade   1.68  77.11
## 12641            16 years old   Male              10th grade   1.60  55.79
## 12642            16 years old   Male              10th grade   1.78  62.14
## 12643            15 years old Female              10th grade     NA     NA
## 12644            16 years old   Male              10th grade   1.70  88.45
## 12645            15 years old   Male              10th grade     NA     NA
## 12646            15 years old   Male              10th grade   1.70  54.43
## 12647            15 years old   Male              10th grade     NA     NA
## 12648            15 years old   Male              10th grade     NA     NA
## 12649            15 years old Female              10th grade   1.68  99.79
## 12650            16 years old   Male              10th grade   1.73  67.13
## 12651            16 years old Female              10th grade   1.57  65.77
## 12652            16 years old Female              10th grade   1.60  63.50
## 12653            16 years old Female              10th grade   1.63  44.00
## 12654            16 years old Female              11th grade   1.68  63.50
## 12655            15 years old   Male              10th grade   1.73 104.33
## 12656            15 years old   Male              10th grade   1.55  88.91
## 12657            16 years old Female              11th grade   1.47  49.90
## 12658            17 years old Female              11th grade   1.68  70.31
## 12659            16 years old   Male              11th grade   1.83  64.86
## 12660            16 years old Female              11th grade   1.68  46.72
## 12661            16 years old Female              11th grade   1.57  63.50
## 12662            16 years old   Male              11th grade   1.70  65.77
## 12663            16 years old   Male              11th grade   1.73  62.14
## 12664            16 years old   Male              11th grade   1.78  74.84
## 12665            17 years old Female              11th grade   1.73  56.70
## 12666            17 years old   Male              11th grade   1.90  80.74
## 12667            16 years old   Male              11th grade   1.78  47.63
## 12668            16 years old Female              11th grade   1.68  56.70
## 12669            17 years old   Male              11th grade   1.75  68.95
## 12670            16 years old Female              11th grade   1.63  57.61
## 12671            17 years old Female              11th grade   1.63  56.25
## 12672            16 years old Female              11th grade   1.63  57.61
## 12673            16 years old Female              11th grade   1.57  53.52
## 12674            17 years old Female              11th grade   1.50  45.36
## 12675            17 years old Female              11th grade   1.75  61.24
## 12676            17 years old Female              11th grade   1.63  65.77
## 12677            16 years old   Male              11th grade   1.80  95.26
## 12678            16 years old   Male              11th grade   1.78  72.58
## 12679            16 years old Female              11th grade   1.63  68.04
## 12680            16 years old Female              11th grade   1.63  45.36
## 12681            16 years old   Male              11th grade   1.65  61.24
## 12682            16 years old   Male              11th grade   1.78  52.16
## 12683            16 years old   Male              10th grade   1.83  68.04
## 12684            15 years old   Male              10th grade   1.75  60.33
## 12685            15 years old Female              10th grade   1.60  48.08
## 12686            15 years old   Male              10th grade   1.80  68.04
## 12687            15 years old Female              10th grade   1.65  60.78
## 12688            15 years old   Male              10th grade   1.85  71.22
## 12689            15 years old Female              10th grade   1.60  43.55
## 12690            15 years old   Male              10th grade   1.80  81.65
## 12691            15 years old   Male              10th grade   1.83  87.09
## 12692            16 years old Female              10th grade   1.65  56.70
## 12693            16 years old Female              10th grade   1.73  63.50
## 12694            16 years old Female              10th grade   1.63  54.43
## 12695            16 years old   Male              10th grade   1.68  56.70
## 12696            15 years old Female              10th grade   1.60  44.45
## 12697            15 years old   Male              10th grade   1.68  63.50
## 12698            15 years old Female              10th grade   1.55  73.48
## 12699            16 years old   <NA>              10th grade     NA     NA
## 12700            16 years old   Male              10th grade   1.85  68.95
## 12701            15 years old   Male              10th grade   1.78  62.60
## 12702            15 years old Female              10th grade   1.63  54.89
## 12703            15 years old   Male              10th grade   1.88 136.08
## 12704            15 years old Female              10th grade   1.55  46.72
## 12705            16 years old   Male              10th grade   1.83  74.84
## 12706            15 years old   Male              10th grade   1.78  66.68
## 12707            15 years old Female              10th grade   1.52  43.09
## 12708            16 years old   Male              11th grade   1.78  68.95
## 12709            15 years old   Male              10th grade   1.80  58.06
## 12710            15 years old Female              10th grade   1.68  52.16
## 12711            15 years old   Male              10th grade     NA     NA
## 12712            15 years old Female              10th grade   1.70  56.70
## 12713            16 years old Female              11th grade   1.75  61.24
## 12714            16 years old Female              10th grade   1.70  65.77
## 12715            15 years old Female              10th grade   1.63  49.90
## 12716            17 years old Female              11th grade   1.75  61.24
## 12717            16 years old   Male              11th grade   1.88  77.57
## 12718            16 years old Female              11th grade   1.70  56.70
## 12719            16 years old Female              10th grade   1.57  46.27
## 12720            15 years old   Male              10th grade   1.73  58.97
## 12721            16 years old Female              10th grade     NA     NA
## 12722            16 years old Female              11th grade   1.70  61.24
## 12723   18 years old or older Female              12th grade   1.63  52.16
## 12724            16 years old Female              10th grade   1.63  58.97
## 12725            15 years old   Male              10th grade   1.75  61.24
## 12726            16 years old Female              10th grade   1.65  52.16
## 12727            16 years old   Male              11th grade   1.83  63.50
## 12728            17 years old   Male              12th grade   1.80  70.31
## 12729            17 years old   Male              12th grade   1.78  72.58
## 12730            17 years old   Male              12th grade   1.83  73.48
## 12731 12 years old or younger Female               9th grade     NA     NA
## 12732            17 years old Female              12th grade   1.63  63.50
## 12733            17 years old   Male              12th grade   1.78  61.24
## 12734   18 years old or older   Male              12th grade   1.78  72.58
## 12735            16 years old   Male              11th grade   1.68  58.06
## 12736            17 years old   Male              12th grade   1.73  74.84
## 12737            17 years old   Male              12th grade   1.90  72.58
## 12738   18 years old or older   Male              12th grade   1.73  65.77
## 12739            17 years old   Male              12th grade   1.85  65.77
## 12740            17 years old   Male              12th grade   1.75 107.96
## 12741            17 years old   Male              12th grade   1.75  65.77
## 12742            17 years old Female              12th grade   1.60  53.07
## 12743            17 years old   Male              12th grade   1.75  68.04
## 12744            16 years old Female              11th grade   1.68 104.33
## 12745            17 years old   Male              12th grade   1.73  62.60
## 12746            17 years old Female              12th grade   1.68  63.50
## 12747            16 years old Female              11th grade   1.68  53.52
## 12748            16 years old   Male              11th grade   1.47  72.58
## 12749            17 years old   Male              11th grade   1.70  65.77
## 12750            16 years old   Male              10th grade     NA     NA
## 12751            16 years old Female              12th grade   1.60  77.11
## 12752            15 years old   Male              10th grade   1.83  58.97
## 12753            15 years old   Male              10th grade   1.75  61.24
## 12754            17 years old Female              12th grade   1.63  61.69
## 12755            16 years old Female              10th grade   1.63  65.77
## 12756            17 years old   Male              12th grade   1.73 101.15
## 12757            15 years old   Male              10th grade   1.78  61.24
## 12758            17 years old   Male              11th grade   1.85  68.04
## 12759            16 years old   Male              11th grade   1.73  58.97
## 12760            16 years old   Male              11th grade   1.83  65.77
## 12761            14 years old   Male               9th grade   1.85  73.03
## 12762            15 years old Female              10th grade   1.52  54.43
## 12763   18 years old or older Female Ungraded or other grade     NA     NA
## 12764            16 years old   Male              11th grade     NA     NA
## 12765            16 years old   Male              11th grade   1.65  56.70
## 12766            15 years old Female              10th grade   1.70  54.43
## 12767            17 years old Female              11th grade   1.65  89.81
## 12768            16 years old Female              11th grade   1.57  52.16
## 12769            16 years old Female              11th grade   1.65  54.43
## 12770            15 years old Female               9th grade   1.70  54.43
## 12771            15 years old Female              10th grade   1.63  69.40
## 12772            15 years old Female              10th grade   1.68  50.80
## 12773            15 years old   Male              10th grade   1.52  36.74
## 12774            17 years old Female              12th grade   1.60  68.04
## 12775            17 years old   Male              11th grade   1.65  56.70
## 12776            16 years old Female              11th grade   1.73  52.16
## 12777            14 years old Female               9th grade   1.50  45.36
## 12778            16 years old   Male              10th grade   1.75  56.70
## 12779            16 years old   Male              11th grade   1.70  66.68
## 12780            14 years old   Male               9th grade   1.60  45.36
## 12781            14 years old Female               9th grade     NA     NA
## 12782            17 years old   Male              11th grade     NA     NA
## 12783            17 years old   Male              12th grade   1.60  63.50
## 12784            16 years old Female              11th grade   1.52  58.97
## 12785            16 years old Female              11th grade   1.57  43.09
## 12786            16 years old   Male              11th grade   1.93  72.58
## 12787            16 years old Female              11th grade   1.63  52.16
## 12788            17 years old Female              12th grade   1.68  58.97
## 12789            16 years old   Male              11th grade   1.90  79.38
## 12790            17 years old Female              11th grade   1.63  52.16
## 12791            17 years old Female              11th grade   1.60  52.16
## 12792            16 years old   Male              11th grade   1.83  86.18
## 12793            17 years old Female              12th grade   1.60  54.43
## 12794            16 years old Female              11th grade   1.65  54.43
## 12795            16 years old   Male              11th grade   1.83 108.86
## 12796            17 years old   Male              11th grade   1.78  69.40
## 12797            16 years old Female              11th grade   1.73  72.58
## 12798            16 years old Female              11th grade   1.73  61.69
## 12799            17 years old Female              11th grade   1.57  47.63
## 12800            17 years old   Male              11th grade   1.83  81.65
## 12801            16 years old Female              11th grade   1.65  76.20
## 12802            16 years old   Male              11th grade   1.80  65.77
## 12803            16 years old Female              11th grade   1.55  48.08
## 12804            17 years old Female              12th grade   1.70  52.16
## 12805            16 years old   Male              11th grade   1.83  75.75
## 12806            16 years old   Male              11th grade   1.80  66.68
## 12807            16 years old Female              11th grade     NA     NA
## 12808            17 years old Female              11th grade   1.60  44.45
## 12809            17 years old   Male              11th grade   1.68  62.60
## 12810            16 years old   Male              11th grade   1.83  74.84
## 12811            16 years old Female              11th grade   1.63  53.52
## 12812            16 years old Female              11th grade   1.78  63.50
## 12813            16 years old   Male              11th grade   1.70  83.92
## 12814            16 years old   Male              11th grade   1.73  50.80
## 12815            16 years old   Male              11th grade   1.68  53.07
## 12816            17 years old   Male              12th grade   1.85 130.18
## 12817            17 years old   Male              12th grade   1.83  64.86
## 12818            17 years old   Male              12th grade   1.83  84.82
## 12819            17 years old   Male              12th grade   1.83  77.11
## 12820            17 years old   Male              12th grade   1.73  70.31
## 12821   18 years old or older   Male              12th grade   1.78  97.52
## 12822   18 years old or older   Male              12th grade   1.83  62.60
## 12823            17 years old Female              12th grade   1.63  49.90
## 12824            17 years old Female              12th grade   1.70  61.69
## 12825            17 years old   Male              12th grade   1.83  64.41
## 12826            17 years old   Male              12th grade   1.88 104.33
## 12827   18 years old or older Female              12th grade   1.70  44.45
## 12828            17 years old   Male              12th grade   1.75  70.76
## 12829            17 years old   Male              12th grade   1.70  61.24
## 12830            15 years old   Male              10th grade   1.68  76.20
## 12831            15 years old   Male              10th grade   1.80  68.04
## 12832            15 years old   Male              10th grade   1.78  60.78
## 12833            15 years old   Male              10th grade   1.83  81.19
## 12834            15 years old   Male              10th grade   1.75  64.41
## 12835            15 years old   Male              10th grade   1.73  97.52
## 12836            15 years old   Male              10th grade   1.75 109.32
## 12837            14 years old   Male              10th grade   1.80  73.03
## 12838            16 years old   Male              10th grade   1.80  61.24
## 12839            16 years old Female              10th grade   1.55  40.82
## 12840            15 years old Female              10th grade   1.55  44.00
## 12841            15 years old Female              10th grade   1.63  58.06
## 12842            15 years old Female              10th grade   1.52  48.99
## 12843            15 years old Female              10th grade   1.65  81.65
## 12844            15 years old   Male              10th grade   1.68  85.73
## 12845            15 years old   Male              10th grade   1.70  54.43
## 12846            15 years old   Male              10th grade   1.70  68.04
## 12847            16 years old   Male              10th grade   1.68  61.69
## 12848            15 years old Female              10th grade   1.55  51.71
## 12849            15 years old   Male              10th grade   1.57  65.77
## 12850            16 years old   Male              10th grade   1.75  58.06
## 12851            15 years old Female              10th grade   1.60  81.65
## 12852            16 years old Female              10th grade   1.63  90.72
## 12853            16 years old   Male              10th grade   1.80 159.67
## 12854            15 years old Female              10th grade   1.60  72.58
## 12855            15 years old Female              10th grade   1.70  50.80
## 12856            15 years old   Male              10th grade   1.65  49.44
## 12857            16 years old   Male              11th grade   1.65  52.16
## 12858            15 years old   Male              10th grade   1.78  58.97
## 12859            15 years old   Male              10th grade   1.73  62.14
## 12860            15 years old Female              10th grade   1.57  56.70
## 12861            15 years old Female              10th grade   1.65  65.77
## 12862            15 years old   Male              10th grade   1.73  62.60
## 12863            16 years old Female              10th grade   1.80  76.20
## 12864            15 years old   Male              10th grade     NA     NA
## 12865            15 years old Female              10th grade   1.60  60.33
## 12866            16 years old Female              11th grade   1.75  65.77
## 12867            15 years old Female              10th grade   1.50  54.43
## 12868            16 years old Female              11th grade   1.78  65.77
## 12869            15 years old   Male              10th grade   1.80 131.54
## 12870            15 years old Female              10th grade   1.50  36.29
## 12871            15 years old Female              10th grade   1.60  44.00
## 12872            15 years old Female              10th grade   1.60  79.38
## 12873            16 years old Female              10th grade   1.57  45.36
## 12874            15 years old Female              10th grade   1.57  47.63
## 12875            16 years old Female              10th grade   1.68  49.90
## 12876            16 years old Female              11th grade   1.50  45.36
## 12877            16 years old Female              10th grade   1.60  54.43
## 12878            16 years old Female              11th grade   1.73  61.24
## 12879            15 years old Female              10th grade   1.60  72.58
## 12880            15 years old   Male              10th grade   1.73  58.97
## 12881            15 years old Female              11th grade   1.63  90.72
## 12882            16 years old   Male              11th grade   1.80  72.58
## 12883            15 years old Female              10th grade   1.60  63.50
## 12884            15 years old Female              10th grade   1.70  90.72
## 12885            15 years old Female              10th grade   1.52  44.45
## 12886            15 years old Female              10th grade   1.50  45.36
## 12887            16 years old Female              11th grade   1.73  90.27
## 12888            16 years old   Male              10th grade   1.88  83.92
## 12889            16 years old Female              11th grade   1.70  83.92
## 12890            16 years old Female              10th grade   1.68  59.88
## 12891            15 years old   Male              10th grade   1.75  57.61
## 12892            17 years old Female              12th grade   1.68  68.04
## 12893            15 years old Female              10th grade   1.70  54.43
## 12894            16 years old   Male              11th grade   1.73 109.77
## 12895            15 years old Female              10th grade   1.60  54.43
## 12896            16 years old   Male              11th grade   1.96  71.67
## 12897            15 years old Female              10th grade   1.63  79.38
## 12898            16 years old Female              10th grade   1.52 102.06
## 12899            15 years old   Male              10th grade   1.78  63.50
## 12900            16 years old   Male              11th grade   1.70  61.69
## 12901            16 years old   Male              10th grade     NA     NA
## 12902            17 years old   Male              11th grade   1.63  49.90
## 12903            14 years old   Male               9th grade   1.80  61.24
## 12904            16 years old   Male              11th grade   1.78  57.15
## 12905            16 years old Female              10th grade   1.55  63.50
## 12906            16 years old Female              10th grade   1.57  48.54
## 12907            16 years old   Male              11th grade   1.85 138.80
## 12908            15 years old   Male              10th grade   1.78  63.50
## 12909            14 years old Female               9th grade   1.50  54.43
## 12910            16 years old Female              10th grade   1.60  49.90
## 12911            16 years old Female              10th grade   1.60  54.43
## 12912            15 years old Female              10th grade   1.60  79.38
## 12913            15 years old Female               9th grade   1.73  58.06
## 12914            14 years old Female               9th grade   1.60  47.63
## 12915            15 years old Female              10th grade   1.60  56.70
## 12916            16 years old Female              11th grade   1.60  76.20
## 12917            17 years old Female              12th grade   1.68  69.40
## 12918            16 years old Female              11th grade   1.65  44.45
## 12919            17 years old   Male              11th grade   1.78  49.90
## 12920            17 years old Female              12th grade   1.80 106.60
## 12921            17 years old Female              12th grade   1.60  49.90
## 12922            17 years old   Male              12th grade   1.83  61.24
## 12923            16 years old Female              11th grade   1.57  48.99
## 12924            17 years old   Male              12th grade   1.75  58.97
## 12925            17 years old   Male              12th grade   1.73  68.04
## 12926            16 years old Female              11th grade   1.70  70.31
## 12927            16 years old Female              11th grade   1.70  49.90
## 12928   18 years old or older   Male              12th grade   1.70  62.60
## 12929            15 years old Female               9th grade   1.75  83.01
## 12930            15 years old Female               9th grade   1.55  49.90
## 12931            15 years old Female               9th grade   1.55  49.90
## 12932            14 years old Female               9th grade     NA     NA
## 12933            14 years old   Male               9th grade   1.78  49.90
## 12934            14 years old Female               9th grade   1.63  70.76
## 12935            15 years old Female               9th grade     NA     NA
## 12936            14 years old Female               9th grade   1.50  48.08
## 12937            14 years old Female               9th grade   1.70  72.58
## 12938            14 years old Female               9th grade     NA     NA
## 12939            14 years old   Male               9th grade   1.63  65.32
## 12940            14 years old Female               9th grade     NA     NA
## 12941            15 years old Female               9th grade   1.63  44.91
## 12942            14 years old Female               9th grade     NA     NA
## 12943            14 years old   Male               9th grade     NA     NA
## 12944            14 years old   Male               9th grade   1.57  39.46
## 12945            14 years old Female               9th grade     NA     NA
## 12946            14 years old Female               9th grade   1.55  44.45
## 12947            14 years old Female               9th grade   1.68  69.85
## 12948            14 years old   Male               9th grade   1.73  60.33
## 12949            14 years old Female               9th grade     NA     NA
## 12950            14 years old   Male               9th grade     NA     NA
## 12951            15 years old Female               9th grade   1.73 101.61
## 12952            14 years old   Male               9th grade   1.78  54.43
## 12953            14 years old Female               9th grade   1.60  49.90
## 12954            14 years old   Male               9th grade   1.73  54.43
## 12955            14 years old Female               9th grade   1.50  49.90
## 12956            14 years old Female               9th grade   1.63  56.70
## 12957            14 years old Female               9th grade     NA     NA
## 12958            14 years old   Male               9th grade   1.83  90.72
## 12959            14 years old Female               9th grade   1.57  55.34
## 12960            15 years old Female               9th grade   1.70  64.41
## 12961            14 years old Female               9th grade   1.63  56.70
## 12962            14 years old   Male               9th grade   1.83  72.58
## 12963            14 years old Female               9th grade   1.70  63.50
## 12964            14 years old Female               9th grade   1.65  72.58
## 12965            14 years old   Male               9th grade   1.70  52.16
## 12966            14 years old   Male               9th grade   1.80  66.23
## 12967            16 years old   Male              11th grade   1.78  70.31
## 12968            15 years old   Male              10th grade   1.63  54.43
## 12969            15 years old Female              10th grade   1.73  63.50
## 12970            16 years old   Male              11th grade   1.83  72.58
## 12971            15 years old   Male              10th grade   1.80  55.34
## 12972            16 years old   Male              11th grade   1.75  70.31
## 12973            16 years old   Male              11th grade   1.83  90.72
## 12974            16 years old   Male              11th grade   1.70 117.94
## 12975            15 years old   Male              10th grade     NA     NA
## 12976            15 years old   Male              10th grade   1.70  49.90
## 12977            17 years old Female              12th grade   1.52  45.36
## 12978            17 years old   Male              12th grade   1.60  96.16
## 12979            16 years old   Male              11th grade   1.73  57.61
## 12980            16 years old   Male              11th grade   1.80  61.24
## 12981            17 years old   Male              10th grade   1.93 112.04
## 12982            17 years old   Male              12th grade   1.73 112.49
## 12983            17 years old Female              12th grade   1.63  58.97
## 12984            14 years old Female               9th grade   1.73  68.04
## 12985            14 years old   Male               9th grade     NA     NA
## 12986            14 years old Female               9th grade   1.75  52.16
## 12987            14 years old Female               9th grade   1.55  52.62
## 12988            14 years old Female               9th grade   1.63  65.77
## 12989            14 years old Female               9th grade   1.55  70.76
## 12990            15 years old Female               9th grade   1.70 108.86
## 12991            14 years old Female               9th grade   1.55  85.73
## 12992            14 years old Female               9th grade   1.57  48.08
## 12993            14 years old Female               9th grade   1.60  68.04
## 12994            14 years old   Male               9th grade   1.65  74.84
## 12995            14 years old Female               9th grade   1.75 136.08
## 12996            15 years old Female               9th grade   1.55  88.45
## 12997            14 years old Female               9th grade   1.65  47.63
## 12998            14 years old   Male               9th grade   1.83  74.84
## 12999            14 years old Female               9th grade   1.57  48.08
## 13000            16 years old Female              11th grade   1.65  72.58
## 13001            17 years old   Male              12th grade   1.80  74.84
## 13002            16 years old   Male              11th grade   1.73  81.65
## 13003   18 years old or older Female              12th grade     NA     NA
## 13004   18 years old or older Female              12th grade   1.60  55.79
## 13005            17 years old   Male              11th grade     NA     NA
## 13006            13 years old   Male              12th grade   1.80  61.24
## 13007            17 years old   Male              12th grade   1.63  49.90
## 13008            17 years old Female              12th grade     NA     NA
## 13009   18 years old or older Female              12th grade   1.57  60.78
## 13010   18 years old or older   Male              12th grade   1.93  81.65
## 13011            17 years old   Male              12th grade   1.78  99.79
## 13012            15 years old Female              12th grade   1.55  52.16
## 13013            17 years old   Male              12th grade   1.73  68.04
## 13014            17 years old Female              12th grade   1.52  95.26
## 13015   18 years old or older   Male              12th grade   1.80  70.76
## 13016            17 years old Female              12th grade   1.65  50.80
## 13017            17 years old Female              12th grade   1.65  99.79
## 13018            17 years old   Male              12th grade   1.83  99.34
## 13019            17 years old Female              12th grade   1.63  52.62
## 13020            16 years old Female              10th grade   1.63  45.81
## 13021            15 years old Female              10th grade   1.52  49.90
## 13022            15 years old   Male              10th grade   1.78  82.56
## 13023            14 years old Female              10th grade     NA     NA
## 13024            15 years old Female              10th grade   1.65  65.77
## 13025            15 years old Female              10th grade   1.63  63.50
## 13026            15 years old Female              10th grade   1.63  57.15
## 13027            16 years old   Male              10th grade   1.80  55.79
## 13028            15 years old Female              10th grade   1.73 112.95
## 13029            15 years old   Male              10th grade   1.73  74.84
## 13030            15 years old Female              10th grade   1.65  68.04
## 13031            16 years old   Male              10th grade     NA     NA
## 13032            16 years old   Male              10th grade   1.68  57.61
## 13033            16 years old Female              10th grade   1.73  54.43
## 13034            16 years old   Male              10th grade   1.68  56.70
## 13035            15 years old Female              10th grade   1.63  74.84
## 13036            15 years old Female              10th grade     NA     NA
## 13037            15 years old Female              10th grade   1.57  55.34
## 13038            15 years old Female              10th grade   1.68  68.49
## 13039            15 years old Female              10th grade   1.55  50.80
## 13040            15 years old Female              10th grade   1.63  60.78
## 13041            14 years old   Male               9th grade   1.73  54.43
## 13042            14 years old   Male               9th grade   1.57  49.90
## 13043            15 years old Female               9th grade   1.57  38.56
## 13044            14 years old Female               9th grade   1.73  54.43
## 13045            14 years old Female               9th grade   1.65  56.70
## 13046            14 years old   Male               9th grade   1.70  63.50
## 13047            14 years old   Male               9th grade   1.60  49.44
## 13048            14 years old   Male Ungraded or other grade   1.85  81.65
## 13049            14 years old Female               9th grade   1.73  56.70
## 13050            14 years old Female               9th grade   1.50  38.56
## 13051            14 years old Female               9th grade   1.47  47.17
## 13052            14 years old   Male               9th grade   1.80  90.72
## 13053            14 years old   Male               9th grade   1.73  70.76
## 13054            14 years old Female               9th grade     NA     NA
## 13055            14 years old Female               9th grade   1.60  53.52
## 13056            14 years old   Male               9th grade   1.80  67.13
## 13057            16 years old Female              11th grade     NA     NA
## 13058            16 years old Female              11th grade   1.65  74.84
## 13059            16 years old Female              11th grade   1.63  58.97
## 13060            16 years old Female              11th grade   1.57  49.90
## 13061            16 years old   Male              11th grade   1.70  63.50
## 13062            16 years old Female              11th grade   1.57  68.95
## 13063            16 years old Female              11th grade   1.73  61.24
## 13064            17 years old   Male              11th grade   1.68  77.11
## 13065            16 years old   Male              11th grade   1.83  72.58
## 13066            16 years old   Male              11th grade   1.80  70.31
## 13067            16 years old Female              11th grade   1.65  58.06
## 13068            16 years old Female              11th grade   1.50  44.45
## 13069            16 years old   Male              11th grade   1.88 102.06
## 13070            16 years old Female              11th grade   1.70  68.04
## 13071            16 years old   Male              11th grade   1.63  49.90
## 13072            16 years old   Male              11th grade   1.90  72.58
## 13073            16 years old   Male              11th grade   1.75  65.77
## 13074            16 years old Female              11th grade   1.60  57.15
## 13075            16 years old   Male              11th grade   1.75  58.97
## 13076            16 years old   Male              11th grade   1.70  65.32
## 13077            17 years old   Male              11th grade   1.88  58.97
## 13078            16 years old   Male              11th grade   1.83 102.06
## 13079            16 years old   Male              11th grade   1.55  68.49
## 13080            16 years old Female              11th grade   1.65  68.04
## 13081            15 years old Female              10th grade   1.60  54.43
## 13082            15 years old Female              10th grade     NA     NA
## 13083            16 years old   Male              11th grade   1.73  77.57
## 13084            15 years old   Male              10th grade   1.83  76.20
## 13085            15 years old Female              10th grade   1.60  57.61
## 13086            15 years old   Male              10th grade   1.73  79.83
## 13087            16 years old   Male              10th grade   1.85  72.58
## 13088            16 years old Female              11th grade   1.75  68.95
## 13089            15 years old   Male              10th grade     NA     NA
## 13090            16 years old   Male              11th grade   1.80  94.35
## 13091            15 years old Female              10th grade   1.60  47.63
## 13092            15 years old Female              10th grade   1.65  81.65
## 13093            15 years old Female              10th grade   1.55  52.16
## 13094            15 years old   Male              10th grade   1.85  88.45
## 13095            16 years old   Male              11th grade   1.75  67.59
## 13096            16 years old Female              11th grade   1.52  52.16
## 13097            17 years old Female              12th grade   1.75  65.77
## 13098            17 years old Female              11th grade   1.57  81.65
## 13099            17 years old   Male              12th grade   1.78  67.59
## 13100   18 years old or older   Male              12th grade   1.65  45.36
## 13101            17 years old   Male              12th grade   1.63  58.97
## 13102            17 years old Female              12th grade   1.57  58.97
## 13103            17 years old   Male              12th grade   1.73  63.50
## 13104            17 years old Female              12th grade     NA     NA
## 13105            17 years old   Male              12th grade     NA     NA
## 13106            17 years old Female              12th grade   1.55  57.61
## 13107            17 years old Female              12th grade   1.57  56.70
## 13108            17 years old   Male              12th grade   1.83  77.11
## 13109            15 years old   Male              10th grade   1.88 129.28
## 13110            15 years old   Male Ungraded or other grade   1.73  61.24
## 13111            15 years old   Male              10th grade   1.73  68.04
## 13112            15 years old   Male              10th grade   1.83  58.97
## 13113            15 years old Female              10th grade   1.57  39.92
## 13114            15 years old Female              10th grade   1.68  60.78
## 13115            15 years old Female              10th grade   1.75  72.58
## 13116            15 years old Female              10th grade   1.55  60.33
## 13117            15 years old   Male              10th grade   1.68  79.38
## 13118            16 years old Female              11th grade   1.50  56.70
## 13119            16 years old Female              10th grade   1.60  48.54
## 13120            15 years old Female              10th grade   1.68  56.70
## 13121            15 years old   Male              10th grade   1.78  65.77
## 13122            15 years old Female              10th grade   1.52  54.43
## 13123            15 years old Female              10th grade   1.52  56.70
## 13124            15 years old Female              10th grade     NA     NA
## 13125            15 years old   Male              10th grade   1.63  43.09
## 13126            15 years old Female              10th grade   1.73  56.70
## 13127   18 years old or older   Male              12th grade   1.78  89.36
## 13128            17 years old   Male              12th grade   1.75  65.77
## 13129            17 years old   Male              12th grade   1.73  56.70
## 13130            17 years old Female              12th grade   1.65  42.18
## 13131            17 years old   Male              12th grade   1.78  63.50
## 13132            17 years old   Male              12th grade     NA     NA
## 13133   18 years old or older   Male              12th grade   1.80  67.13
## 13134            17 years old   Male              12th grade   1.80  74.84
## 13135            14 years old Female               9th grade     NA     NA
## 13136            15 years old Female               9th grade   1.60  58.97
## 13137            15 years old   Male              10th grade   1.75  61.24
## 13138            15 years old Female              10th grade   1.55  56.70
## 13139            15 years old   Male               9th grade   1.68  47.63
## 13140            15 years old Female               9th grade   1.55  62.60
## 13141            14 years old Female               9th grade   1.60  52.62
## 13142            14 years old   Male               9th grade   1.88  68.04
## 13143            14 years old   Male               9th grade   1.73  61.24
## 13144            14 years old   Male               9th grade   1.65  54.43
## 13145            14 years old   Male               9th grade   1.70  57.61
## 13146            15 years old Female              10th grade   1.68  56.70
## 13147            14 years old Female               9th grade   1.68  57.15
## 13148            14 years old Female               9th grade   1.70  47.63
## 13149            14 years old Female               9th grade   1.60  49.90
## 13150            14 years old Female               9th grade   1.60  44.00
## 13151            14 years old Female               9th grade   1.57  43.09
## 13152            14 years old Female               9th grade   1.60  63.50
## 13153            14 years old Female               9th grade     NA     NA
## 13154            16 years old Female              10th grade   1.70  54.43
## 13155            14 years old Female               9th grade   1.50  81.65
## 13156            15 years old   Male              10th grade   1.68  54.43
## 13157            14 years old   Male               9th grade   1.80  76.20
## 13158            14 years old Female               9th grade     NA     NA
## 13159            16 years old   Male              11th grade   1.70  92.08
## 13160            14 years old Female               9th grade   1.60  49.90
## 13161            14 years old Female               9th grade   1.60  48.99
## 13162            14 years old   Male               9th grade   1.68  56.70
## 13163            16 years old   Male              11th grade   1.88  79.38
## 13164            14 years old Female               9th grade   1.60  44.45
## 13165            15 years old Female               9th grade   1.63  81.65
## 13166            15 years old   Male              10th grade   1.78  90.72
## 13167            14 years old Female               9th grade   1.68  49.90
## 13168            14 years old   Male               9th grade   1.68 101.15
## 13169            15 years old   Male               9th grade   1.78  61.24
## 13170            14 years old   Male               9th grade   1.63  58.97
## 13171            14 years old Female               9th grade   1.68  70.31
## 13172            14 years old Female               9th grade   1.65  56.70
## 13173            15 years old   Male               9th grade   1.88  95.26
## 13174            14 years old   Male               9th grade   1.83  60.33
## 13175            14 years old Female               9th grade   1.65  48.08
## 13176            16 years old Female              11th grade   1.57  53.07
## 13177            17 years old Female              12th grade     NA     NA
## 13178            16 years old Female              11th grade   1.68  58.97
## 13179            16 years old Female              11th grade   1.63  54.43
## 13180            16 years old Female              11th grade   1.70  68.04
## 13181            17 years old   Male              11th grade   1.80  77.11
## 13182            15 years old Female              11th grade   1.55  45.36
## 13183            15 years old Female              10th grade   1.60  52.16
## 13184            14 years old Female               9th grade   1.60  57.61
## 13185            16 years old Female              11th grade   1.73  61.24
## 13186            17 years old Female              11th grade   1.63  53.07
## 13187            17 years old Female              11th grade   1.65  51.71
## 13188            15 years old   Male              10th grade   1.75  68.04
## 13189            14 years old Female               9th grade   1.63  63.50
## 13190            16 years old Female              11th grade   1.60  59.88
## 13191            16 years old   Male              11th grade   1.83  65.32
## 13192            16 years old   Male              11th grade     NA     NA
## 13193            16 years old   Male              11th grade   1.75  61.69
## 13194            17 years old Female              11th grade   1.63  58.97
## 13195            16 years old   Male              11th grade   1.83  70.31
## 13196            16 years old   Male              11th grade   1.78  79.38
## 13197            16 years old   Male              11th grade   1.63  58.97
## 13198            17 years old   Male              11th grade   1.96 136.08
## 13199            16 years old   Male              11th grade   1.90  99.79
## 13200            16 years old   Male              11th grade   1.80  65.77
## 13201            16 years old Female              11th grade   1.65  74.84
## 13202            16 years old   Male              11th grade   1.83  63.50
## 13203            16 years old   Male              11th grade   1.93  74.84
## 13204            16 years old Female              11th grade   1.65  68.04
## 13205            17 years old Female              11th grade   1.63  44.45
## 13206            16 years old   Male              11th grade   1.83  72.58
## 13207            16 years old   Male              11th grade   1.83  90.72
## 13208            14 years old Female               9th grade   1.60  49.90
## 13209            17 years old Female              12th grade     NA     NA
## 13210   18 years old or older Female              12th grade   1.63  77.11
## 13211            17 years old Female              11th grade   1.68  55.79
## 13212            17 years old Female              12th grade   1.65  92.99
## 13213            16 years old Female              11th grade   1.70  72.58
## 13214            14 years old Female               9th grade     NA     NA
## 13215            17 years old Female              12th grade   1.57  52.16
## 13216            15 years old   Male              10th grade   1.70  70.31
## 13217            15 years old   Male              10th grade   1.73  70.76
## 13218 12 years old or younger   Male Ungraded or other grade     NA     NA
## 13219            15 years old   Male              10th grade   1.65  49.90
## 13220            15 years old   Male              10th grade   1.83  65.77
## 13221            16 years old   Male              10th grade   1.90  72.58
## 13222            15 years old Female              10th grade   1.68  68.04
## 13223            16 years old   Male              10th grade   1.68  45.36
## 13224            15 years old   Male              10th grade   1.78  78.93
## 13225            14 years old Female              10th grade   1.70  63.50
## 13226            15 years old   Male              10th grade   1.73  72.58
## 13227            15 years old   Male              10th grade   1.78  80.74
## 13228            15 years old Female              10th grade   1.68  49.44
## 13229            15 years old Female              10th grade   1.73  49.90
## 13230            15 years old Female              10th grade   1.52  45.36
## 13231            15 years old Female Ungraded or other grade     NA     NA
## 13232            15 years old Female              10th grade     NA     NA
## 13233            15 years old   Male              10th grade   1.68  74.84
## 13234            14 years old Female               9th grade   1.63  54.43
## 13235            15 years old   Male               9th grade     NA     NA
## 13236            14 years old Female               9th grade   1.63  81.65
## 13237            14 years old Female               9th grade   1.60  71.22
## 13238            14 years old Female               9th grade   1.57  54.43
## 13239            14 years old Female               9th grade   1.63  54.43
## 13240            14 years old Female               9th grade   1.65  58.97
## 13241            14 years old   Male               9th grade   1.63  56.70
## 13242            15 years old Female               9th grade   1.70  52.16
## 13243            14 years old   Male               9th grade   1.83  90.72
## 13244            14 years old Female               9th grade     NA     NA
## 13245            15 years old Female              10th grade   1.57  79.38
## 13246            14 years old Female               9th grade   1.65  72.58
## 13247            14 years old Female               9th grade   1.52  56.70
## 13248            17 years old Female Ungraded or other grade     NA     NA
## 13249            15 years old   <NA>              10th grade     NA     NA
## 13250            14 years old Female               9th grade   1.57  61.69
## 13251            14 years old Female               9th grade     NA     NA
## 13252            16 years old   Male              11th grade   1.83  83.92
## 13253            14 years old   Male               9th grade   1.68  44.00
## 13254            14 years old Female               9th grade     NA     NA
## 13255            17 years old   Male              12th grade   1.83  55.79
## 13256            17 years old   Male              12th grade   1.85  72.58
## 13257 12 years old or younger   Male              12th grade     NA     NA
## 13258            17 years old   Male              11th grade   1.75  74.84
## 13259   18 years old or older   Male              12th grade   1.83  72.58
## 13260            16 years old Female              11th grade   1.65  72.58
## 13261            17 years old Female              11th grade   1.50  50.80
## 13262            16 years old Female              11th grade   1.57  54.43
## 13263            17 years old Female              12th grade   1.63  77.11
## 13264            17 years old   Male              12th grade   1.80  77.11
## 13265            17 years old   Male              11th grade   1.83  74.84
## 13266            16 years old   Male              11th grade     NA     NA
## 13267            17 years old   Male              11th grade   1.68  72.58
## 13268            17 years old Female              12th grade   1.70  53.07
## 13269            16 years old Female              11th grade     NA     NA
## 13270            16 years old   Male              11th grade   1.80  77.11
## 13271            17 years old   Male              11th grade   1.80  66.68
## 13272            17 years old Female              12th grade   1.68  54.43
## 13273            17 years old   Male              12th grade   1.78  61.24
## 13274            16 years old Female Ungraded or other grade     NA     NA
## 13275            17 years old   Male              11th grade   1.73  77.11
## 13276            16 years old   Male              11th grade   1.70  63.50
## 13277            17 years old   Male              12th grade     NA     NA
## 13278            16 years old   Male              11th grade   1.83  90.72
## 13279   18 years old or older   Male              10th grade     NA     NA
## 13280            15 years old   Male              10th grade   1.80  58.97
## 13281            15 years old   Male              10th grade   1.63  71.22
## 13282            15 years old   Male              10th grade   1.80  64.86
## 13283            16 years old   Male              10th grade   1.83  89.36
## 13284            15 years old   Male              10th grade   1.63  47.63
## 13285            16 years old   Male              10th grade   1.83  92.99
## 13286            15 years old   Male              10th grade   1.83  58.97
## 13287            15 years old Female              10th grade   1.75  61.24
## 13288            15 years old   Male              10th grade   1.78  77.11
## 13289            15 years old   Male              10th grade   1.65  47.63
## 13290            15 years old Female              10th grade   1.68  53.07
## 13291            15 years old Female              10th grade   1.68  61.69
## 13292            15 years old Female              10th grade   1.80 113.40
## 13293            16 years old Female              11th grade   1.52  49.90
## 13294            15 years old   Male              10th grade   1.85 106.60
## 13295            17 years old   Male              12th grade   1.70  67.59
## 13296            16 years old   Male              11th grade   1.80  71.22
## 13297   18 years old or older   Male              12th grade   1.80 149.69
## 13298   18 years old or older   Male              11th grade     NA     NA
## 13299            17 years old   Male              12th grade   1.73  67.13
## 13300            17 years old   Male Ungraded or other grade   2.01  86.18
## 13301            16 years old   Male              11th grade   1.68  64.41
## 13302            17 years old   Male              12th grade   1.83  99.79
## 13303            17 years old   Male              12th grade   1.88  79.38
## 13304            17 years old   Male              12th grade   1.83  79.38
## 13305 12 years old or younger Female              12th grade     NA     NA
## 13306            17 years old   Male              12th grade   1.83  74.84
## 13307            16 years old   Male              11th grade   1.80  70.31
## 13308            17 years old   Male              12th grade   1.70  63.50
## 13309            17 years old   Male              12th grade   1.85  97.52
## 13310            17 years old   Male              12th grade   1.75  73.94
## 13311            14 years old Female               9th grade     NA     NA
## 13312            17 years old   Male              11th grade   1.88 139.71
## 13313            16 years old   Male              12th grade   1.73  62.60
## 13314            16 years old   Male              11th grade   1.83  74.84
## 13315            16 years old   Male              11th grade   1.85  72.58
## 13316   18 years old or older   Male              12th grade   1.88  82.56
## 13317            16 years old   Male              11th grade   1.70  88.45
## 13318            16 years old   Male              11th grade   1.73  58.97
## 13319            16 years old Female              11th grade   1.70  48.54
## 13320            15 years old   Male              10th grade   1.65  54.43
## 13321            15 years old Female              10th grade   1.68  58.97
## 13322            15 years old Female              10th grade   1.63  55.79
## 13323            15 years old Female              10th grade   1.65  58.97
## 13324            15 years old Female              10th grade   1.70  49.90
## 13325            15 years old   Male              10th grade   1.78 117.94
## 13326            15 years old   Male              10th grade   1.75  77.11
## 13327            15 years old Female              10th grade   1.63  48.08
## 13328            14 years old Female              12th grade     NA     NA
## 13329            15 years old Female              10th grade   1.65  61.24
## 13330            15 years old Female              10th grade   1.60  58.97
## 13331            16 years old   Male              11th grade   1.80  68.04
## 13332            16 years old   Male              11th grade   1.78  65.77
## 13333            15 years old Female              10th grade   1.55  83.92
## 13334            15 years old Female              10th grade   1.55  52.16
## 13335            17 years old Female              12th grade   1.55  68.04
## 13336            15 years old Female              10th grade   1.52  48.99
## 13337            16 years old Female              11th grade   1.57  63.05
## 13338            15 years old   Male              10th grade   1.75  74.84
## 13339            15 years old   Male               9th grade   1.70  80.74
## 13340            16 years old   Male              11th grade   1.73  61.24
## 13341            17 years old   Male              12th grade   1.68  70.31
## 13342            17 years old   Male              12th grade   1.80  81.65
## 13343            16 years old   Male              11th grade   1.78  72.58
## 13344            16 years old Female              11th grade     NA     NA
## 13345            15 years old   Male              10th grade   1.70  54.43
## 13346            17 years old Female              12th grade   1.57  59.88
## 13347            16 years old   Male              10th grade   1.75  68.04
## 13348            17 years old Female              12th grade   1.75  53.07
## 13349            17 years old Female              12th grade   1.68  72.58
## 13350            17 years old   Male              12th grade   1.73 108.86
## 13351            17 years old Female              12th grade   1.55  63.50
## 13352            17 years old   Male              12th grade   1.73  58.97
## 13353   18 years old or older   Male              12th grade   1.80  90.72
## 13354            17 years old Female              12th grade   1.60  56.70
## 13355            17 years old   Male              12th grade   1.73  65.77
## 13356            17 years old   Male              12th grade   1.75  65.77
## 13357            17 years old Female              11th grade   1.65  63.50
## 13358            17 years old Female              12th grade   1.47  39.92
## 13359            16 years old   Male              11th grade   1.65  56.70
## 13360            17 years old Female              12th grade   1.63  67.13
## 13361            17 years old   Male              12th grade   1.83 136.08
## 13362            17 years old   Male              11th grade   1.78  63.50
## 13363            17 years old   Male              12th grade   1.80  79.38
## 13364            16 years old   Male              11th grade   1.73  54.43
## 13365            17 years old   Male              11th grade   1.85  56.70
## 13366            16 years old   Male              11th grade     NA     NA
## 13367            16 years old   Male              11th grade   1.80  79.38
## 13368            17 years old   Male              11th grade   1.70  74.84
## 13369            16 years old Female              11th grade   1.57  58.97
## 13370            16 years old   Male              11th grade   1.80  67.59
## 13371            16 years old Female              11th grade   1.60  50.80
## 13372            16 years old   Male              11th grade   1.80  61.69
## 13373            16 years old Female              11th grade   1.75 101.15
## 13374            16 years old   Male              11th grade   1.57  56.70
## 13375            17 years old   Male              11th grade   1.75  82.56
## 13376            16 years old   Male              11th grade     NA     NA
## 13377            16 years old Female              11th grade   1.50  49.44
## 13378            16 years old Female              11th grade   1.65 127.01
## 13379            17 years old Female              12th grade   1.60  52.16
## 13380            16 years old   Male              11th grade   1.78  77.11
## 13381            17 years old Female              12th grade     NA     NA
## 13382            16 years old   Male              11th grade   1.75  63.50
## 13383            17 years old   Male              11th grade   1.63  54.43
## 13384            16 years old Female              11th grade   1.65  77.11
## 13385            16 years old   Male              11th grade   1.78  72.58
## 13386   18 years old or older   Male              12th grade   1.88 104.33
## 13387   18 years old or older   Male              12th grade   1.83  79.38
## 13388            17 years old   Male              12th grade     NA     NA
## 13389            17 years old Female              12th grade   1.68  68.04
## 13390   18 years old or older   Male              12th grade   1.88  81.65
## 13391            16 years old Female              11th grade   1.63  57.61
## 13392            14 years old   Male               9th grade   1.65  58.97
## 13393            14 years old Female               9th grade   1.50  54.43
## 13394            14 years old   Male               9th grade   1.60  63.50
## 13395            14 years old Female               9th grade   1.73  57.61
## 13396            14 years old   Male               9th grade   1.78  72.58
## 13397            17 years old   Male              12th grade   1.78  56.70
## 13398            14 years old Female               9th grade   1.65  63.50
## 13399            14 years old Female               9th grade   1.55  47.63
## 13400            14 years old   Male               9th grade   1.80 111.13
## 13401            14 years old   Male               9th grade   1.93 110.68
## 13402            15 years old   Male               9th grade   1.78  63.50
## 13403            15 years old Female               9th grade   1.63  50.80
## 13404            16 years old   Male              10th grade   1.70  78.93
## 13405            14 years old Female               9th grade     NA     NA
## 13406            14 years old Female               9th grade   1.68  49.90
## 13407            15 years old Female               9th grade   1.60  61.24
## 13408            15 years old Female              10th grade     NA     NA
## 13409            14 years old   Male               9th grade   1.80 104.33
## 13410            14 years old Female               9th grade   1.60  81.19
## 13411            14 years old Female               9th grade   1.70  64.86
## 13412            15 years old   Male              10th grade   1.85  83.92
## 13413            15 years old Female              10th grade     NA     NA
## 13414            16 years old Female              10th grade   1.68  56.70
## 13415            15 years old Female              10th grade     NA     NA
## 13416            15 years old   Male              10th grade   1.75  70.76
## 13417            15 years old Female              10th grade     NA     NA
## 13418            15 years old   Male              10th grade     NA     NA
## 13419            15 years old Female              10th grade   1.57  42.64
## 13420            15 years old   Male              10th grade   1.78  68.95
## 13421            16 years old   Male              10th grade   1.78  77.11
## 13422            15 years old Female              10th grade   1.63  58.97
## 13423            15 years old Female              10th grade   1.55  58.06
## 13424            14 years old   Male              10th grade   1.80  95.26
## 13425            15 years old   Male              10th grade   1.70  54.43
## 13426            15 years old Female              10th grade   1.65  61.24
## 13427            15 years old Female              10th grade   1.60  47.63
## 13428            15 years old Female              10th grade   1.57  49.90
## 13429            15 years old Female              10th grade     NA     NA
## 13430            15 years old   Male              10th grade   1.73  57.61
## 13431            16 years old   Male              10th grade   1.75  58.97
## 13432            16 years old Female              10th grade   1.63  43.55
## 13433            15 years old   Male              10th grade   1.80  61.24
## 13434            15 years old Female              10th grade     NA     NA
## 13435            15 years old Female              10th grade   1.65  70.31
## 13436            16 years old Female              10th grade   1.68  58.51
## 13437            15 years old Female               9th grade   1.68  58.51
## 13438            14 years old Female               9th grade   1.68  67.59
## 13439            16 years old   Male              11th grade   1.90  64.41
## 13440            16 years old   Male              11th grade   1.73  49.90
## 13441            15 years old   Male              10th grade   1.65  54.43
## 13442            16 years old   Male              11th grade   1.90  80.74
## 13443            15 years old   Male              10th grade   1.75  72.58
## 13444            15 years old   Male              10th grade   1.78  68.04
## 13445            15 years old Female              10th grade   1.55  49.90
## 13446            16 years old   Male              11th grade   1.70  98.88
## 13447            14 years old   Male               9th grade   1.75  75.75
## 13448            15 years old   Male              10th grade   1.70  52.16
## 13449            14 years old   Male               9th grade   1.90  56.70
## 13450            14 years old   Male               9th grade   1.78  77.11
## 13451            14 years old   Male               9th grade   1.83  68.04
## 13452            16 years old   Male              11th grade     NA     NA
## 13453            16 years old Female              10th grade   1.63  49.90
## 13454            15 years old Female               9th grade   1.70  54.43
## 13455            14 years old   Male               9th grade   1.83  63.96
## 13456            15 years old Female              10th grade   1.55  49.90
## 13457            16 years old   Male              11th grade   1.85  99.79
## 13458            16 years old Female              10th grade     NA     NA
## 13459            16 years old Female              10th grade   1.57  59.42
## 13460            16 years old Female              10th grade   1.60  53.52
## 13461            15 years old   Male              10th grade   1.85  58.97
## 13462            16 years old Female              10th grade   1.73  68.04
## 13463            15 years old Female              10th grade   1.50  41.73
## 13464            15 years old Female              10th grade   1.63  61.69
## 13465            16 years old Female              10th grade   1.52  46.27
## 13466            16 years old Female              11th grade   1.68  81.65
## 13467            17 years old Female              11th grade   1.68  71.22
## 13468            15 years old Female              10th grade   1.73  66.23
## 13469            16 years old Female              11th grade   1.60  54.43
## 13470            15 years old Female              10th grade   1.70  54.43
## 13471            17 years old Female              12th grade   1.65  60.33
## 13472            15 years old Female              10th grade   1.70  64.41
## 13473            17 years old   Male              10th grade   1.78  95.26
## 13474            15 years old   Male              10th grade   1.78  78.47
## 13475            16 years old Female              11th grade   1.63  58.97
## 13476            15 years old Female              10th grade   1.60  52.16
## 13477            17 years old Female              12th grade   1.60  61.24
## 13478            15 years old Female              10th grade   1.65  48.99
## 13479            15 years old Female              10th grade   1.55  49.90
## 13480            15 years old Female              10th grade   1.68  56.70
## 13481            16 years old Female              11th grade   1.63  58.97
## 13482            16 years old Female              11th grade   1.63  54.43
## 13483            16 years old Female              10th grade   1.70  53.98
## 13484            15 years old Female              10th grade   1.70  61.24
## 13485            16 years old Female              11th grade   1.52  54.43
## 13486            16 years old Female              11th grade   1.63  62.60
## 13487            16 years old   Male              10th grade   1.85  81.65
## 13488            15 years old   Male              10th grade   1.57  52.16
## 13489            17 years old Female              11th grade   1.70  62.60
## 13490            17 years old   Male              11th grade   1.75  61.24
## 13491            15 years old   Male              10th grade   1.85  77.11
## 13492            17 years old   Male              12th grade   1.63  46.72
## 13493            16 years old Female              11th grade   1.60  49.90
## 13494            16 years old   Male              11th grade   1.78  68.04
## 13495            17 years old   Male              11th grade   1.68  68.04
## 13496   18 years old or older   Male              12th grade   1.78  77.11
## 13497            16 years old   Male              11th grade     NA     NA
## 13498            16 years old Female              11th grade   1.60  52.16
## 13499            17 years old Female              11th grade   1.73  61.24
## 13500            16 years old Female              11th grade   1.55  70.31
## 13501            16 years old   Male              11th grade   1.65  45.36
## 13502            16 years old Female              10th grade   1.78  68.04
## 13503            16 years old   Male              11th grade   1.80  65.77
## 13504            16 years old Female              11th grade   1.73  75.30
## 13505            16 years old Female              11th grade   1.68  63.50
## 13506            16 years old Female              11th grade   1.70  78.47
## 13507   18 years old or older Female              12th grade   1.63  58.97
## 13508            17 years old   <NA>              12th grade     NA     NA
## 13509            15 years old   Male              10th grade   1.73  89.81
## 13510            15 years old Female              10th grade   1.65  49.44
## 13511            15 years old Female              10th grade   1.57  58.97
## 13512            15 years old   Male              10th grade   1.83  61.24
## 13513            15 years old Female              10th grade     NA     NA
## 13514            15 years old Female              10th grade   1.60  41.73
## 13515            15 years old Female              10th grade   1.73  62.14
## 13516            15 years old   Male              10th grade   1.90  90.72
## 13517            15 years old   Male              10th grade   1.98 113.40
## 13518            15 years old Female              10th grade   1.68  58.97
## 13519            15 years old Female              10th grade   1.70  61.24
## 13520            15 years old Female              10th grade   1.65  63.50
## 13521            15 years old Female              10th grade   1.57  47.63
## 13522            15 years old   Male              10th grade   1.68  56.70
## 13523            16 years old   Male              10th grade   1.85 113.40
## 13524            16 years old Female              11th grade     NA     NA
## 13525            17 years old Female              12th grade   1.70  89.36
## 13526            16 years old   Male              11th grade   1.80 126.10
## 13527            17 years old Female              11th grade   1.63  52.62
## 13528            16 years old   Male              11th grade   1.83  64.86
## 13529            15 years old   Male               9th grade   1.65  52.16
## 13530            14 years old Female               9th grade   1.73  47.63
## 13531            14 years old   Male               9th grade   1.68  49.90
## 13532            14 years old Female               9th grade   1.60  58.97
## 13533            15 years old   Male               9th grade   1.75  64.41
## 13534            15 years old Female              10th grade   1.68  52.16
## 13535            15 years old   Male              10th grade   1.80  79.83
## 13536            14 years old   Male               9th grade   1.70  72.58
## 13537            14 years old Female               9th grade   1.57  50.80
## 13538            14 years old Female               9th grade   1.68  52.62
## 13539            14 years old Female               9th grade   1.65  56.70
## 13540            14 years old Female               9th grade   1.47  42.18
## 13541            14 years old Female               9th grade   1.78  59.88
## 13542            14 years old   Male               9th grade   1.68  52.16
## 13543            14 years old Female               9th grade   1.60  49.90
## 13544            15 years old Female               9th grade     NA     NA
## 13545            14 years old Female               9th grade   1.60  54.43
## 13546            17 years old   Male              11th grade   1.80  71.22
## 13547            17 years old Female              12th grade   1.57  65.77
## 13548            14 years old   Male               9th grade   1.78  56.25
## 13549            17 years old Female              12th grade   1.63  51.71
## 13550            17 years old Female              11th grade   1.55  47.17
## 13551            15 years old Female              10th grade   1.63  53.07
## 13552            17 years old Female              12th grade   1.70  70.31
## 13553            17 years old Female              12th grade   1.60  70.31
## 13554            17 years old   Male              11th grade   1.78  68.04
## 13555            17 years old Female              12th grade   1.63  52.16
## 13556            16 years old Female              11th grade   1.63  58.97
## 13557            16 years old   Male              11th grade     NA     NA
## 13558            16 years old   Male              11th grade   1.88  95.26
## 13559            16 years old Female              10th grade   1.57  58.97
## 13560   18 years old or older Female              12th grade   1.70  77.11
## 13561            15 years old Female              10th grade   1.68  61.24
## 13562            16 years old Female              11th grade   1.75  63.50
## 13563            14 years old   Male               9th grade   1.68  54.43
## 13564            14 years old Female               9th grade   1.63  44.91
## 13565            16 years old Female              11th grade   1.63  49.90
## 13566            16 years old   Male              11th grade   1.68  53.98
## 13567            14 years old   Male               9th grade   1.75  90.72
## 13568            14 years old   Male               9th grade   1.70  56.70
## 13569            15 years old Female              10th grade   1.73  90.72
## 13570            15 years old Female               9th grade   1.50  47.63
## 13571            14 years old Female               9th grade   1.68  68.04
## 13572            15 years old Female               9th grade   1.60  68.04
## 13573            16 years old   Male              10th grade     NA     NA
## 13574            14 years old   Male               9th grade   1.73  81.65
## 13575            15 years old Female              10th grade   1.52  44.45
## 13576            14 years old Female               9th grade   1.57  44.91
## 13577            15 years old   Male               9th grade   1.83  74.84
## 13578            15 years old   Male               9th grade   1.60  53.98
## 13579            14 years old Female               9th grade   1.55  81.65
## 13580            14 years old Female               9th grade   1.57  46.27
## 13581            17 years old Female              11th grade   1.80  54.43
## 13582            14 years old   Male               9th grade   1.70  54.43
## 13583            14 years old   Male               9th grade     NA     NA
## 13584            14 years old Female               9th grade   1.68  97.52
## 13585            16 years old   Male              11th grade   1.70  62.14
## 13586            14 years old   Male               9th grade   1.65  47.63
## 13587            14 years old Female               9th grade   1.80  90.72
## 13588            14 years old   Male               9th grade   1.85  83.01
## 13589            14 years old   Male               9th grade   1.78 110.68
## 13590            14 years old Female               9th grade   1.68  65.77
## 13591            14 years old Female               9th grade   1.68  50.35
## 13592            16 years old   Male              11th grade   1.80  63.50
## 13593            15 years old   Male              10th grade   1.78  59.88
## 13594            14 years old Female               9th grade   1.63  54.43
## 13595            15 years old   <NA>               9th grade     NA     NA
## 13596            14 years old   Male               9th grade   1.73  50.35
## 13597            15 years old Female               9th grade   1.70  57.61
## 13598            14 years old   Male               9th grade     NA     NA
## 13599            17 years old   Male              12th grade   1.70  46.27
## 13600            16 years old   Male              11th grade   1.80  79.38
## 13601            16 years old Female              11th grade   1.75  58.06
## 13602            16 years old Female              11th grade   1.60  72.58
## 13603            16 years old   Male              11th grade   1.83  74.84
## 13604            16 years old   Male              11th grade   1.78  95.26
## 13605            16 years old Female              11th grade   1.68  55.79
## 13606            16 years old Female              11th grade   1.73  58.97
## 13607            16 years old   Male              11th grade     NA     NA
## 13608            16 years old   Male              11th grade   1.80  70.31
## 13609            17 years old Female              12th grade   1.57 122.47
## 13610            17 years old   Male              11th grade   1.70  58.97
## 13611   18 years old or older   Male Ungraded or other grade   1.70  61.24
## 13612            17 years old   Male              11th grade   1.70  61.24
## 13613            16 years old Female              11th grade   1.65  68.04
## 13614            16 years old   Male              11th grade   1.73  92.99
## 13615            15 years old Female              10th grade   1.50  54.43
## 13616            15 years old   Male              10th grade   1.68  54.43
## 13617            15 years old   Male              10th grade   1.80  90.27
## 13618            15 years old   Male              10th grade   1.75  86.18
## 13619            15 years old Female              10th grade   1.65  53.52
## 13620            15 years old Female              10th grade     NA     NA
## 13621            15 years old   Male              10th grade   1.78  54.43
## 13622            15 years old   Male              10th grade   1.63  58.97
## 13623            15 years old   Male              10th grade   1.78  61.24
## 13624            15 years old Female              10th grade   1.60  58.97
## 13625            16 years old Female              10th grade   1.63  57.61
## 13626            15 years old Female              10th grade   1.63  59.88
## 13627            15 years old   Male              10th grade   1.73  63.50
## 13628            15 years old Female              10th grade   1.65  58.97
## 13629            15 years old   Male              10th grade   1.65  45.36
## 13630            15 years old Female              10th grade   1.55  45.36
## 13631            15 years old   <NA>              10th grade     NA     NA
## 13632            17 years old   Male              12th grade   1.80  74.84
## 13633            17 years old   Male              12th grade   1.83  70.31
## 13634            15 years old Female              10th grade   1.68  58.97
## 13635   18 years old or older   Male              12th grade   1.70  79.38
## 13636            16 years old   Male              11th grade   1.85  74.39
## 13637            17 years old Female              12th grade   1.68  54.43
## 13638            15 years old Female              10th grade   1.65  90.72
## 13639   18 years old or older Female              12th grade   1.63  79.38
## 13640            15 years old Female              10th grade   1.60  65.77
## 13641            15 years old Female              10th grade   1.70  77.11
## 13642            16 years old Female              10th grade     NA     NA
## 13643            16 years old Female              11th grade   1.65  56.70
## 13644            16 years old Female              11th grade   1.63  58.06
## 13645            16 years old   Male              11th grade   1.75  49.90
## 13646            15 years old   Male              10th grade   1.78  65.77
## 13647            15 years old Female              10th grade   1.55  48.99
## 13648            15 years old Female              10th grade   1.57  52.16
## 13649            15 years old Female              10th grade   1.63  72.58
## 13650            15 years old   Male              10th grade   1.80  95.26
## 13651            15 years old   Male              10th grade   1.68  79.38
## 13652            15 years old   Male              10th grade   1.78  86.18
## 13653            16 years old   Male              10th grade   1.88  70.31
## 13654            15 years old Female              10th grade   1.68  58.06
## 13655            15 years old   Male              10th grade   1.78  77.11
## 13656            15 years old   Male              10th grade   1.93 103.42
## 13657            16 years old   Male              10th grade   1.75  90.72
## 13658            16 years old   Male              11th grade   1.85 117.94
## 13659            15 years old Female              10th grade   1.70  61.24
## 13660            15 years old Female              10th grade   1.60  45.36
## 13661            15 years old   Male              10th grade   1.78  53.07
## 13662            16 years old Female              10th grade   1.50  40.82
## 13663            16 years old Female              11th grade   1.68  54.43
## 13664            15 years old   Male              10th grade   1.55  47.63
## 13665            15 years old   Male              10th grade   1.88  63.05
## 13666            14 years old Female               9th grade     NA     NA
## 13667            14 years old   Male               9th grade   1.80  63.50
## 13668            15 years old   Male               9th grade   1.83  97.52
## 13669            14 years old Female               9th grade   1.57  57.61
## 13670            14 years old Female               9th grade   1.63  58.97
## 13671            14 years old   Male               9th grade   1.73  79.38
## 13672            14 years old Female               9th grade   1.57  44.45
## 13673            14 years old   Male               9th grade   1.80  92.53
## 13674            14 years old   Male               9th grade   1.78  81.19
## 13675            14 years old Female               9th grade   1.55  40.82
## 13676            14 years old   Male               9th grade   1.78  83.92
## 13677            14 years old Female               9th grade   1.78  83.92
## 13678            15 years old   Male               9th grade     NA     NA
## 13679            15 years old Female              10th grade     NA     NA
## 13680            15 years old   Male              10th grade   1.73  58.06
## 13681            14 years old Female               9th grade     NA     NA
## 13682            15 years old   Male              10th grade   1.68  56.70
## 13683            14 years old   Male               9th grade   1.80  70.31
## 13684            14 years old Female               9th grade   1.68  69.40
## 13685            14 years old Female               9th grade     NA     NA
## 13686            16 years old   Male              10th grade   1.83  99.79
## 13687            14 years old Female               9th grade   1.57  52.16
## 13688            14 years old Female               9th grade   1.50  34.02
## 13689            14 years old Female               9th grade     NA     NA
## 13690            14 years old   Male               9th grade   1.70  70.31
## 13691            14 years old Female               9th grade   1.60  50.80
## 13692            15 years old Female               9th grade   1.70  63.50
## 13693            14 years old   Male               9th grade   1.80  90.72
## 13694            14 years old Female               9th grade   1.70  72.58
## 13695            14 years old Female               9th grade   1.68  54.43
## 13696            15 years old   Male               9th grade   1.65  50.35
## 13697            14 years old   Male               9th grade   1.80  63.50
## 13698            14 years old Female               9th grade   1.52  45.36
## 13699            14 years old Female               9th grade   1.68  90.72
## 13700            14 years old Female               9th grade   1.73  54.43
## 13701            15 years old   Male              10th grade   1.68  54.43
## 13702            14 years old Female               9th grade   1.55  41.73
## 13703            14 years old Female               9th grade   1.60  55.34
## 13704            15 years old   Male              10th grade   1.70  59.42
## 13705            14 years old Female               9th grade   1.65  65.77
## 13706            13 years old   Male               9th grade     NA     NA
## 13707            14 years old Female               9th grade   1.63  55.79
## 13708            14 years old Female               9th grade   1.60  52.62
## 13709            15 years old   Male              10th grade   1.70  56.70
## 13710            16 years old Female              11th grade   1.65  74.84
## 13711            16 years old Female              11th grade   1.63  99.79
## 13712            15 years old Female              10th grade   1.63  55.79
## 13713            16 years old Female              11th grade   1.60  62.14
## 13714            17 years old Female              12th grade   1.75  97.52
## 13715            15 years old Female              10th grade   1.68  68.04
## 13716            17 years old Female              12th grade   1.55  65.77
## 13717   18 years old or older Female              12th grade   1.68  74.84
## 13718            15 years old Female              10th grade   1.60  56.70
## 13719            15 years old Female              10th grade   1.63  52.16
## 13720            15 years old Female              10th grade   1.63  67.13
## 13721            15 years old Female              10th grade   1.73  54.43
## 13722            16 years old Female              11th grade   1.73  81.65
## 13723            17 years old Female              12th grade   1.63  50.80
## 13724            17 years old   Male              12th grade   1.93 172.37
## 13725   18 years old or older   Male              12th grade   1.73  62.14
## 13726            17 years old   Male              12th grade   1.75  58.97
## 13727            17 years old   Male              11th grade   1.83  81.19
## 13728            16 years old   Male              11th grade   1.78  54.43
## 13729            16 years old Female              11th grade   1.60  55.34
## 13730            17 years old Female              12th grade   1.68  61.24
## 13731   18 years old or older   Male              12th grade   1.75  62.60
## 13732            17 years old   Male              12th grade   1.78  61.24
## 13733            15 years old Female              10th grade   1.88  79.38
## 13734            17 years old   Male              12th grade   1.73 131.54
## 13735            16 years old Female              11th grade   1.83  61.24
## 13736            17 years old   Male              11th grade   1.80  81.65
## 13737            16 years old   Male              11th grade   1.85  77.11
## 13738            17 years old Female              12th grade   1.55  48.99
## 13739            17 years old Female              12th grade   1.65  68.04
## 13740            16 years old Female              11th grade   1.60  52.16
## 13741            14 years old Female               9th grade   1.60  49.90
## 13742            14 years old   Male               9th grade   1.78  78.47
## 13743            14 years old   Male               9th grade   1.68  75.75
## 13744            14 years old   Male               9th grade   1.73  74.84
## 13745            14 years old Female               9th grade   1.70  57.61
## 13746            14 years old   Male               9th grade   1.73  54.43
## 13747            14 years old Female               9th grade   1.70  52.16
## 13748            14 years old Female               9th grade   1.68  54.43
## 13749            14 years old Female               9th grade   1.65  52.16
## 13750            14 years old   Male               9th grade   1.78  69.40
## 13751            14 years old Female               9th grade     NA     NA
## 13752            14 years old   Male               9th grade   1.78  70.31
## 13753            14 years old   Male               9th grade   1.73  55.34
## 13754            14 years old Female               9th grade   1.52  41.73
## 13755            14 years old Female               9th grade   1.65  52.16
## 13756            14 years old   Male               9th grade   1.78  65.77
## 13757            14 years old   Male               9th grade   1.70  68.95
## 13758            16 years old Female              11th grade   1.55  47.63
## 13759            15 years old Female              10th grade   1.60  72.58
## 13760            15 years old   Male              10th grade   1.73  65.77
## 13761            15 years old   Male              10th grade   1.80  54.43
## 13762            15 years old   Male              10th grade   1.83  72.58
## 13763            15 years old Female               9th grade   1.88  74.84
## 13764            14 years old   Male               9th grade   1.80  57.15
## 13765            16 years old   Male              10th grade   1.78  62.60
## 13766            14 years old   Male               9th grade   1.60  49.90
## 13767            16 years old   Male              11th grade   1.80  80.74
## 13768            15 years old   Male              10th grade   1.78  58.97
## 13769            15 years old Female              10th grade   1.63  58.97
## 13770            15 years old Female              10th grade   1.63  51.26
## 13771            15 years old Female              10th grade   1.60  49.90
## 13772            16 years old   Male              10th grade   1.73  72.58
## 13773            14 years old   Male               9th grade   1.88  88.00
## 13774            16 years old Female              11th grade   1.50  42.18
## 13775            17 years old Female              11th grade   1.68  45.36
## 13776            17 years old   Male              12th grade   1.68  56.70
## 13777            16 years old   Male              11th grade     NA     NA
## 13778            17 years old   Male              12th grade   1.83  65.32
## 13779            15 years old Female              10th grade   1.57  49.90
## 13780            17 years old   Male              11th grade   1.88  83.92
## 13781            15 years old   Male               9th grade   1.65  49.90
## 13782            15 years old Female              10th grade   1.50  49.44
## 13783            14 years old   Male               9th grade   1.78  83.92
## 13784            14 years old Female               9th grade   1.63  49.90
## 13785            14 years old Female               9th grade   1.57  56.70
## 13786            15 years old   Male              10th grade     NA     NA
## 13787            14 years old   Male               9th grade   1.80  64.41
## 13788            14 years old   Male               9th grade   1.52  37.65
## 13789            16 years old Female              11th grade   1.73  54.43
## 13790            14 years old   Male               9th grade   1.85  90.72
## 13791            15 years old   Male              10th grade   1.73  99.79
## 13792            15 years old   Male              10th grade   1.80  52.16
## 13793            15 years old   Male              10th grade     NA     NA
## 13794            15 years old Female              10th grade   1.73 104.33
## 13795            15 years old Female              10th grade   1.45  56.70
## 13796            15 years old Female              10th grade   1.60  50.80
## 13797            15 years old   Male              10th grade   1.83  69.40
## 13798            15 years old   Male              10th grade   1.88  81.65
## 13799            16 years old   Male              11th grade   1.75  77.11
## 13800            16 years old   Male              11th grade   1.90 113.40
## 13801   18 years old or older   <NA>              12th grade     NA     NA
## 13802            16 years old   Male              11th grade   1.88 108.86
## 13803            16 years old Female              11th grade   1.65  72.58
## 13804            16 years old Female              11th grade   1.60  56.25
## 13805            16 years old   Male              11th grade   1.80 108.86
## 13806            17 years old Female              12th grade   1.57  51.26
## 13807            16 years old Female              11th grade   1.63  54.43
## 13808            16 years old Female              11th grade     NA     NA
## 13809            17 years old Female              11th grade   1.60  56.70
## 13810            17 years old   Male              11th grade   1.78  72.58
## 13811            16 years old Female              11th grade     NA     NA
## 13812            16 years old Female              11th grade   1.63  77.11
## 13813            16 years old Female              11th grade   1.60  70.31
## 13814            17 years old Female              11th grade   1.57  56.25
## 13815            16 years old Female              11th grade   1.57  51.26
## 13816            17 years old Female              12th grade   1.70  77.11
## 13817            17 years old   Male              12th grade   1.78  64.86
## 13818            17 years old   Male              11th grade   1.70  74.39
## 13819            17 years old   Male              12th grade   1.65  58.97
## 13820            15 years old Female               9th grade     NA     NA
## 13821            14 years old   Male               9th grade   1.75  62.14
## 13822            14 years old   Male               9th grade   1.65  81.65
## 13823            14 years old   Male               9th grade   1.73  61.69
## 13824            14 years old   Male               9th grade   1.75  77.11
## 13825            15 years old Female               9th grade   1.65  58.97
## 13826            14 years old   Male               9th grade   1.68  67.13
## 13827            14 years old   Male               9th grade   1.75  63.50
## 13828            14 years old   Male               9th grade     NA     NA
## 13829            15 years old   Male               9th grade   1.80  67.13
## 13830            14 years old   Male               9th grade   1.85  68.04
## 13831            14 years old Female               9th grade   1.52  54.43
## 13832            14 years old   Male               9th grade   1.85  79.38
## 13833            14 years old Female               9th grade   1.60  92.99
## 13834            14 years old   Male               9th grade   1.80  54.43
## 13835            15 years old   Male              10th grade   1.73  64.41
## 13836            15 years old   Male              10th grade   1.73  58.97
## 13837            15 years old   Male              10th grade   1.70  59.42
## 13838            16 years old Female              10th grade   1.65  58.97
## 13839            16 years old Female              10th grade   1.70  71.67
## 13840            15 years old Female              10th grade   1.70  72.58
## 13841            15 years old   Male              10th grade   1.78  54.43
## 13842            16 years old Female              10th grade   1.73  62.14
## 13843            15 years old   Male              10th grade   1.70  70.31
## 13844            15 years old Female              10th grade   1.55  47.63
## 13845            15 years old   Male              10th grade   1.68  68.49
## 13846            15 years old Female              10th grade   1.68  62.14
## 13847            15 years old   Male              10th grade   1.60  50.35
## 13848            15 years old Female              10th grade   1.60  53.07
## 13849            15 years old Female              10th grade   1.70  54.43
## 13850            15 years old Female              10th grade   1.60  48.99
## 13851            16 years old Female              10th grade   1.55  57.15
## 13852   18 years old or older   Male              12th grade   1.88  95.26
## 13853            17 years old   Male              12th grade   1.73  49.90
## 13854            17 years old Female              12th grade   1.73  58.97
## 13855 12 years old or younger Female               9th grade     NA     NA
## 13856            17 years old   Male              12th grade   1.83  79.83
## 13857            17 years old   Male              12th grade   1.70  58.97
## 13858            17 years old Female              12th grade   1.60  49.90
## 13859            17 years old Female              12th grade   1.60  58.97
## 13860            17 years old Female              12th grade   1.63  72.58
## 13861   18 years old or older Female              12th grade   1.40  37.20
## 13862            17 years old Female              12th grade     NA     NA
## 13863   18 years old or older   Male              12th grade     NA     NA
## 13864   18 years old or older   Male              12th grade   1.78  58.97
## 13865            17 years old Female              12th grade   1.73  68.04
## 13866   18 years old or older   Male              12th grade   1.80  88.45
## 13867            16 years old Female              11th grade   1.73  86.18
## 13868            16 years old   Male              11th grade   1.75  62.60
## 13869            16 years old   Male              11th grade   1.83 102.06
## 13870            16 years old Female              11th grade   1.55  58.97
## 13871            16 years old Female              11th grade   1.55  60.33
## 13872            16 years old Female              11th grade   1.50  61.24
## 13873            16 years old   Male              11th grade   1.75  61.24
## 13874            16 years old   Male              11th grade   1.88  71.22
## 13875            16 years old   Male              11th grade   1.85 108.86
## 13876            16 years old   <NA>              11th grade     NA     NA
## 13877            16 years old   Male              11th grade   1.73  62.60
## 13878            16 years old Female              11th grade     NA     NA
## 13879            16 years old   Male              11th grade   1.78  75.30
## 13880            16 years old Female              11th grade   1.70  61.69
## 13881            16 years old   Male              11th grade   1.78  68.04
## 13882            16 years old Female              11th grade   1.65  70.31
## 13883            17 years old Female              11th grade     NA     NA
## 13884            16 years old Female              11th grade   1.50  52.16
## 13885            16 years old   Male              11th grade   1.80  54.43
## 13886            17 years old   Male              11th grade   1.93  68.04
## 13887            17 years old Female              11th grade   1.55  58.06
## 13888            15 years old Female               9th grade   1.47  53.98
## 13889            17 years old Female              12th grade   1.57  90.72
## 13890            17 years old Female              11th grade   1.60  56.70
## 13891            14 years old   Male               9th grade   1.50  72.58
## 13892   18 years old or older Female              12th grade   1.55  54.43
## 13893            15 years old   Male              10th grade     NA     NA
## 13894            16 years old   Male              10th grade     NA     NA
## 13895            16 years old   Male              10th grade   1.85 101.61
## 13896            15 years old Female              10th grade   1.63  54.43
## 13897            15 years old   Male              10th grade   1.78  86.18
## 13898            15 years old   Male              10th grade   1.80  58.97
## 13899            15 years old   Male               9th grade   1.78  61.24
## 13900            14 years old   Male               9th grade   1.78  61.69
## 13901            15 years old Female              10th grade   1.60  47.63
## 13902            15 years old Female              10th grade   1.68  69.85
## 13903            15 years old   Male              10th grade   1.93  72.58
## 13904            14 years old Female               9th grade   1.68  47.17
## 13905            14 years old   Male               9th grade   1.70  40.82
## 13906            15 years old Female              10th grade   1.57  99.79
## 13907            16 years old   Male              10th grade   1.75  56.70
## 13908            14 years old   Male               9th grade   1.70  72.58
## 13909            15 years old   Male              10th grade     NA     NA
## 13910            14 years old   Male               9th grade   1.85  68.95
## 13911            15 years old Female              10th grade   1.60  48.08
## 13912            15 years old   Male              10th grade   1.78  49.90
## 13913            15 years old   Male              10th grade   1.78  61.24
## 13914            16 years old   Male              10th grade   1.68  63.50
## 13915            16 years old   Male              10th grade   1.73  86.18
## 13916            14 years old   Male              10th grade   1.73  63.05
## 13917            15 years old Female              10th grade   1.57  58.97
## 13918            15 years old Female              10th grade   1.88  68.04
## 13919            15 years old Female              10th grade   1.75  58.97
## 13920            15 years old Female              10th grade   1.60  56.70
## 13921            15 years old   Male              10th grade   1.78  61.24
## 13922            15 years old   Male              10th grade   1.83  68.04
## 13923            15 years old   Male              10th grade   1.80  64.41
## 13924            15 years old   Male              10th grade   1.68  72.58
## 13925            15 years old Female              10th grade   1.70  63.50
## 13926            15 years old Female              10th grade     NA     NA
## 13927            15 years old Female              10th grade   1.70  58.97
## 13928            15 years old Female              10th grade   1.60  56.70
## 13929            15 years old Female              10th grade   1.70  86.18
## 13930            15 years old Female              10th grade   1.65  68.04
## 13931            15 years old   Male              10th grade   1.80  54.43
## 13932            16 years old Female              10th grade   1.60  60.78
## 13933            15 years old Female              10th grade     NA     NA
## 13934            15 years old Female              10th grade   1.47  47.63
## 13935            16 years old Female              10th grade   1.65  61.24
## 13936            15 years old   Male              10th grade   1.65  58.06
## 13937            15 years old   Male              10th grade   1.88  72.58
## 13938            15 years old Female              10th grade   1.73 108.86
## 13939            15 years old Female              10th grade   1.65  50.80
## 13940            17 years old Female              12th grade   1.63  63.50
## 13941            15 years old   Male              10th grade     NA     NA
## 13942            15 years old Female              10th grade   1.65  55.79
## 13943            15 years old Female              10th grade   1.57  49.90
## 13944            15 years old   Male              10th grade   1.70  56.70
## 13945            15 years old Female              10th grade   1.55  44.00
## 13946            15 years old Female              10th grade   1.68  61.24
## 13947            16 years old   Male              11th grade   1.78  74.84
## 13948            15 years old Female              10th grade     NA     NA
## 13949            15 years old   Male              10th grade   1.78  66.68
## 13950            15 years old Female              10th grade   1.60  47.63
## 13951            14 years old Female               9th grade   1.65  48.08
## 13952            15 years old Female               9th grade   1.63  55.34
## 13953            15 years old   Male              10th grade   1.83  79.38
## 13954            16 years old   Male              10th grade     NA     NA
## 13955            14 years old   Male               9th grade   1.73  58.97
## 13956            14 years old Female               9th grade   1.63  54.43
## 13957            14 years old   Male               9th grade   1.68  65.77
## 13958            15 years old   Male              10th grade   1.80  70.31
## 13959            14 years old Female               9th grade   1.70 131.54
## 13960            14 years old   Male               9th grade   1.75  61.69
## 13961            14 years old   Male               9th grade   1.70  68.49
## 13962            14 years old   Male               9th grade   1.68  56.70
## 13963            14 years old   Male               9th grade   1.65  53.98
## 13964            15 years old   Male               9th grade   1.70  68.04
## 13965            15 years old   Male               9th grade   1.73  43.55
## 13966            15 years old   Male              10th grade   1.65  54.43
## 13967            14 years old   Male               9th grade     NA     NA
## 13968            14 years old   Male               9th grade   1.80  64.86
## 13969            16 years old   <NA>              11th grade     NA     NA
## 13970            16 years old   Male              11th grade   1.68 113.40
## 13971            16 years old Female              11th grade   1.50  47.63
## 13972            16 years old   Male              11th grade   1.83  59.88
## 13973            16 years old   Male              11th grade   1.88  57.15
## 13974            16 years old   Male              11th grade   1.85  83.92
## 13975            16 years old   Male              11th grade   1.75  72.58
## 13976            16 years old Female              11th grade   1.63  52.16
## 13977            17 years old Female              11th grade   1.70  68.04
## 13978            16 years old   Male              11th grade   1.88  88.45
## 13979            16 years old   Male              11th grade   1.78  65.77
## 13980            16 years old   Male              11th grade   1.90  85.28
## 13981            16 years old   Male              11th grade   1.78  65.77
## 13982            16 years old   Male              11th grade   1.80  68.04
## 13983            16 years old   Male              11th grade   1.75  58.97
## 13984            16 years old   Male              11th grade   1.80  63.50
## 13985            16 years old   Male              11th grade   1.83  70.31
## 13986            16 years old Female              11th grade   1.65  99.79
## 13987            17 years old Female              12th grade   1.68  99.79
## 13988            17 years old   Male              12th grade   1.88  79.38
## 13989            16 years old Female              11th grade   1.70  65.77
## 13990            16 years old   Male              11th grade   1.70  85.73
## 13991   18 years old or older   Male              12th grade   1.85 140.62
## 13992            15 years old   Male              10th grade   1.57  38.56
## 13993   18 years old or older   Male              12th grade   1.80  90.72
## 13994            17 years old   Male              11th grade   1.93  49.44
## 13995            15 years old   Male              10th grade   1.68  52.16
## 13996            17 years old Female              11th grade   1.75  53.98
## 13997            17 years old   Male              12th grade   1.78 101.61
## 13998            16 years old   Male              11th grade   1.80  74.84
## 13999            16 years old Female              11th grade   1.70  63.50
## 14000            17 years old Female              12th grade   1.70  59.88
## 14001            16 years old   Male              11th grade     NA     NA
## 14002            17 years old Female              12th grade   1.63  48.99
## 14003            17 years old Female              12th grade   1.70  75.30
## 14004            17 years old   Male              12th grade   1.83 120.20
## 14005            17 years old Female              12th grade   1.60  56.25
## 14006            17 years old Female              12th grade   1.57  52.62
## 14007            17 years old   Male              12th grade   1.68  58.97
## 14008   18 years old or older Female              12th grade   1.55  54.43
## 14009            17 years old Female              12th grade   1.70  81.65
## 14010            16 years old   Male              11th grade   1.80  82.56
## 14011            17 years old Female              12th grade   1.65  63.50
## 14012            15 years old Female              10th grade   1.73  64.41
## 14013            16 years old Female              11th grade   1.50  45.81
## 14014            17 years old Female              12th grade   1.60  56.70
## 14015   18 years old or older Female              12th grade   1.63  45.36
## 14016            17 years old Female              12th grade   1.65  58.97
## 14017            17 years old Female              12th grade   1.57  61.24
## 14018            17 years old   Male              12th grade   1.78  68.04
## 14019            16 years old   Male              11th grade   1.68  86.18
## 14020            16 years old Female              11th grade   1.65  58.97
## 14021            16 years old   Male              11th grade     NA     NA
## 14022            16 years old   Male              11th grade   1.78  78.93
## 14023            16 years old   Male              11th grade   1.85 112.04
## 14024            16 years old   Male              11th grade   1.83  79.38
## 14025            16 years old   Male              11th grade   1.70  95.26
## 14026            16 years old Female              11th grade   1.75  72.58
## 14027            16 years old   Male              11th grade   1.85  74.84
## 14028            16 years old   Male              11th grade   1.68  56.70
## 14029            17 years old   Male              12th grade   1.65  79.38
## 14030            17 years old   Male              11th grade   1.80  95.26
## 14031            16 years old   Male              11th grade   1.78  86.18
## 14032            16 years old   Male              11th grade   1.70  58.97
## 14033            15 years old   Male              10th grade   1.73  47.63
## 14034            14 years old   Male              10th grade   1.80  49.90
## 14035            15 years old Female              10th grade   1.50  58.97
## 14036            15 years old Female              10th grade   1.65  58.97
## 14037            15 years old Female              10th grade   1.65  63.50
## 14038            15 years old Female              10th grade   1.52  42.64
## 14039            16 years old   Male              10th grade   1.85  92.99
## 14040            15 years old Female              10th grade   1.63  53.52
## 14041            15 years old Female              10th grade   1.78  63.50
## 14042            15 years old Female              10th grade   1.70  55.79
## 14043            16 years old Female              10th grade   1.63  52.16
## 14044            15 years old Female              10th grade   1.65  70.31
## 14045            15 years old Female              10th grade   1.65  52.16
## 14046            15 years old   Male              10th grade   1.75  68.04
## 14047            15 years old Female              10th grade   1.60  65.77
## 14048            15 years old   Male              10th grade   1.83  56.70
## 14049            15 years old Female              10th grade   1.73  56.25
## 14050            15 years old Female              10th grade   1.57  58.06
## 14051            15 years old Female              10th grade   1.63  79.38
## 14052            15 years old   Male              10th grade   1.75  77.11
## 14053            15 years old   Male              10th grade   1.73  62.60
## 14054            15 years old   Male              10th grade   1.80  63.05
## 14055            15 years old   Male              10th grade   1.80  65.77
## 14056            15 years old   Male              10th grade   1.73  60.33
## 14057            17 years old Female              11th grade     NA     NA
## 14058            16 years old Female              11th grade   1.65  56.70
## 14059            16 years old Female              11th grade   1.70  58.97
## 14060            16 years old   Male              11th grade   1.65  61.24
## 14061            16 years old Female              11th grade   1.63  56.70
## 14062            16 years old   Male              11th grade   1.73  52.16
## 14063            16 years old   Male              11th grade   1.93  86.18
## 14064            15 years old Female              11th grade   1.68 108.86
## 14065            16 years old Female              11th grade   1.68  56.70
## 14066            16 years old Female              11th grade   1.63  55.34
## 14067            16 years old   Male              11th grade   1.70  64.86
## 14068            16 years old Female              11th grade   1.65  58.97
## 14069            16 years old Female              11th grade   1.63  54.43
## 14070            17 years old Female              12th grade   1.65  68.04
## 14071            17 years old Female              12th grade   1.63  54.43
## 14072            16 years old   Male              11th grade   1.88  74.84
## 14073            15 years old Female              10th grade   1.68  57.61
## 14074            17 years old   Male              12th grade   1.73  63.50
## 14075            16 years old Female              11th grade   1.70  55.79
## 14076            17 years old Female              12th grade     NA     NA
## 14077            15 years old Female              10th grade   1.63  95.26
## 14078            15 years old Female              10th grade   1.68  61.24
## 14079            15 years old Female              10th grade   1.55  52.16
## 14080            15 years old Female              10th grade   1.75 138.35
## 14081            15 years old   Male              10th grade   1.80  62.14
## 14082            15 years old   Male              10th grade   1.70  57.15
## 14083            16 years old Female              10th grade   1.50  38.56
## 14084            15 years old Female              10th grade   1.70  56.70
## 14085            15 years old Female              10th grade   1.80  45.36
## 14086            15 years old Female              10th grade   1.57  51.26
## 14087            15 years old Female              10th grade     NA     NA
## 14088            15 years old Female              10th grade   1.60  57.61
## 14089            16 years old Female              10th grade   1.63  67.59
## 14090            15 years old Female              10th grade   1.68  58.97
## 14091            15 years old   Male              10th grade   1.78  63.50
## 14092            17 years old   Male              12th grade   1.83  66.68
## 14093            17 years old   Male              12th grade   1.68  49.90
## 14094            16 years old Female              11th grade   1.65  65.77
## 14095            16 years old   Male              11th grade   1.68  68.04
## 14096            17 years old   Male              11th grade   1.83  68.04
## 14097            16 years old   Male              11th grade   1.78  65.77
## 14098            17 years old Female              11th grade   1.68  54.43
## 14099            17 years old Female              12th grade   1.57  56.25
## 14100            16 years old   Male              11th grade   1.88  63.50
## 14101            16 years old Female              11th grade   1.60  72.12
## 14102            16 years old   Male              11th grade     NA     NA
## 14103            17 years old Female              11th grade   1.60  53.52
## 14104            16 years old   Male              11th grade   1.80  74.84
## 14105            17 years old   Male              12th grade   1.80  70.31
## 14106            16 years old Female              11th grade   1.57  58.51
## 14107            16 years old   Male              11th grade   1.73  70.31
## 14108            17 years old Female              12th grade   1.65  49.90
## 14109            17 years old Female              12th grade   1.55  55.79
## 14110            17 years old Female              12th grade   1.65  74.84
## 14111            17 years old Female              12th grade   1.63  73.48
## 14112            17 years old Female              12th grade   1.68 119.75
## 14113            16 years old Female              11th grade   1.57  88.45
## 14114            16 years old Female              11th grade     NA     NA
## 14115            17 years old Female              12th grade   1.75  49.90
## 14116            16 years old   Male              11th grade   1.80  72.58
## 14117            16 years old   Male              11th grade   1.96  72.58
## 14118            16 years old   Male              11th grade   1.78  79.38
## 14119            16 years old Female              11th grade   1.83  70.31
## 14120            16 years old   Male              11th grade   1.80  66.68
## 14121            17 years old   Male              12th grade   1.88  95.26
## 14122            17 years old   Male              12th grade   1.83 180.99
## 14123            16 years old   Male              11th grade   1.68  74.84
## 14124            15 years old Female              10th grade   1.70  68.04
## 14125            14 years old Female               9th grade   1.63  56.70
## 14126            15 years old Female              10th grade   1.57  66.23
## 14127            16 years old   Male              11th grade   1.83  77.11
## 14128            14 years old Female               9th grade   1.52  45.81
## 14129            14 years old   Male               9th grade   1.83 131.54
## 14130            15 years old Female              10th grade   1.65  61.24
## 14131            14 years old Female               9th grade   1.80  68.04
## 14132            14 years old Female               9th grade   1.68  48.54
## 14133            14 years old Female               9th grade   1.50  48.54
## 14134            14 years old Female               9th grade   1.68  58.97
## 14135            15 years old Female              10th grade   1.68  51.71
## 14136            14 years old   Male               9th grade   1.68  77.11
## 14137            14 years old   Male               9th grade   1.70  58.97
## 14138            16 years old   Male              10th grade   1.85  71.67
## 14139            14 years old   Male               9th grade   1.68  47.63
## 14140            14 years old Female               9th grade   1.75  54.43
## 14141            14 years old   Male               9th grade   1.80  91.17
## 14142            17 years old   Male              12th grade   1.75  99.79
## 14143            15 years old   Male              10th grade   1.73  62.60
## 14144            15 years old Female              10th grade   1.60  56.70
## 14145            14 years old Female               9th grade   1.57  55.79
## 14146            15 years old   Male              10th grade   1.73  72.58
## 14147            14 years old Female               9th grade     NA     NA
## 14148            14 years old   Male               9th grade   1.65  52.16
## 14149            14 years old   Male               9th grade   1.73  72.58
## 14150            17 years old   Male              12th grade   1.70  75.75
## 14151            14 years old   Male               9th grade   1.55  77.57
## 14152            15 years old   Male              10th grade   1.80  68.04
## 14153            15 years old   Male              10th grade   1.70  72.58
## 14154            15 years old   Male              10th grade   1.75  69.40
## 14155            15 years old   Male              10th grade   1.60  52.16
## 14156            15 years old Female              10th grade   1.52  59.88
## 14157            16 years old Female              10th grade     NA     NA
## 14158            15 years old Female              10th grade     NA     NA
## 14159            15 years old Female              10th grade   1.55  57.61
## 14160            15 years old   Male              10th grade   1.88  68.04
## 14161            15 years old   Male              10th grade   1.80 113.40
## 14162            15 years old Female              10th grade   1.57  43.09
## 14163            15 years old Female              10th grade   1.63  71.67
## 14164            15 years old   Male              10th grade   1.80  64.41
## 14165            15 years old   Male              10th grade   1.80  71.67
## 14166            15 years old   Male              10th grade   1.75  58.97
## 14167            15 years old Female              10th grade   1.65  53.52
## 14168            15 years old   Male              10th grade   1.78  61.24
## 14169                    <NA>   Male              10th grade     NA     NA
## 14170            15 years old Female              10th grade   1.73  65.77
## 14171            15 years old Female              10th grade   1.50  77.11
## 14172            16 years old Female              11th grade   1.70  49.90
## 14173            15 years old   Male              10th grade   1.70  54.43
## 14174            16 years old Female              10th grade   1.63  54.43
## 14175            15 years old   Male              10th grade   1.80  70.31
## 14176            16 years old Female              10th grade   1.75  58.97
## 14177            14 years old   Male               9th grade     NA     NA
## 14178            14 years old   Male               9th grade   1.70  51.71
## 14179            14 years old Female               9th grade   1.75  63.50
## 14180            14 years old Female               9th grade   1.73  53.52
## 14181            14 years old   Male               9th grade   1.75  76.66
## 14182            14 years old Female               9th grade   1.55  36.74
## 14183            14 years old   Male               9th grade   1.75  66.23
## 14184            14 years old Female               9th grade   1.55  46.72
## 14185            14 years old Female               9th grade   1.65  54.43
## 14186            14 years old   Male               9th grade   1.90  87.54
## 14187            14 years old   Male               9th grade   1.63  45.36
## 14188            14 years old Female               9th grade   1.60  53.07
## 14189            14 years old   Male               9th grade   1.70  65.77
## 14190            15 years old   Male               9th grade   1.85 113.40
## 14191            14 years old Female               9th grade   1.63  52.62
## 14192            14 years old   Male               9th grade   1.78  63.50
## 14193            14 years old   Male               9th grade   1.80  74.84
## 14194            14 years old Female               9th grade   1.70  74.39
## 14195            14 years old   <NA>               9th grade     NA     NA
## 14196            14 years old   Male               9th grade   1.65  49.90
## 14197            14 years old   Male               9th grade   1.68  58.97
## 14198            14 years old   Male               9th grade   1.68  61.24
## 14199            14 years old   Male               9th grade     NA     NA
## 14200            14 years old   Male               9th grade   1.75  59.42
## 14201            15 years old Female               9th grade   1.55  48.08
## 14202            16 years old   Male              10th grade   1.78  63.50
## 14203            17 years old   Male              12th grade     NA     NA
## 14204            17 years old Female              12th grade     NA     NA
## 14205            17 years old   Male              12th grade   1.65  61.24
## 14206            17 years old Female              12th grade   1.70  64.86
## 14207            16 years old Female              11th grade   1.70  58.97
## 14208            15 years old   Male              10th grade   1.80  73.94
## 14209            16 years old Female              11th grade   1.63  54.43
## 14210            17 years old Female              12th grade   1.60  53.52
## 14211            16 years old Female              11th grade   1.50  45.36
## 14212            17 years old   Male              12th grade   1.93  83.92
## 14213            17 years old   Male              12th grade   1.68  65.77
## 14214            14 years old   Male              10th grade   1.78  77.57
## 14215            17 years old   Male              11th grade   1.80  68.04
## 14216            15 years old Female              10th grade   1.60  54.43
## 14217            17 years old   Male              12th grade   1.78  74.84
## 14218            17 years old Female              12th grade   1.75  61.24
## 14219            15 years old Female              10th grade   1.52  46.72
## 14220            16 years old   Male              11th grade   1.90  86.18
## 14221            16 years old Female              11th grade   1.68  54.43
## 14222            16 years old   Male              11th grade   1.75  54.43
## 14223            16 years old   Male              11th grade   1.75  92.99
## 14224            16 years old   Male              11th grade   1.75  65.77
## 14225            16 years old   Male              11th grade   1.80  76.66
## 14226            17 years old Female              11th grade   1.65  58.97
## 14227   18 years old or older   Male              12th grade   1.80  86.18
## 14228   18 years old or older   Male              12th grade   1.90  88.45
## 14229            16 years old Female              11th grade   1.68  56.70
## 14230            16 years old   Male              11th grade   1.73  58.97
## 14231            16 years old Female              11th grade   1.73  58.97
## 14232            16 years old   Male              11th grade   1.75  70.31
## 14233            16 years old   Male              11th grade   1.70  77.11
## 14234            17 years old Female              11th grade   1.63  58.97
## 14235            16 years old   Male              11th grade   1.88  81.65
## 14236 12 years old or younger Female              11th grade     NA     NA
## 14237            17 years old Female              12th grade   1.60  58.97
## 14238            16 years old   Male              11th grade   1.78  56.70
## 14239            16 years old Female              11th grade   1.70  58.97
## 14240            16 years old   Male              11th grade   1.83  65.32
## 14241            16 years old   Male              11th grade   1.85  90.72
## 14242            17 years old   Male              12th grade   1.80  95.26
## 14243            16 years old Female              11th grade   1.80 108.86
## 14244            17 years old   Male              12th grade   1.83  69.85
## 14245            14 years old   Male              10th grade   1.83  63.50
## 14246            15 years old   Male              10th grade   1.75  73.94
## 14247            15 years old Female              10th grade   1.50  68.04
## 14248            15 years old   Male              10th grade   1.68  49.90
## 14249            15 years old   Male              10th grade   1.73  66.68
## 14250            15 years old Female              10th grade   1.63  49.90
## 14251            16 years old Female              10th grade   1.57  52.16
## 14252            15 years old   Male              10th grade   1.75  70.31
## 14253            15 years old   Male              10th grade     NA     NA
## 14254            17 years old Female              12th grade   1.60  44.45
## 14255            15 years old   Male              10th grade   1.73  63.05
## 14256            15 years old   Male              10th grade   1.85  90.72
## 14257            16 years old   Male              10th grade   1.85  71.67
## 14258            17 years old Female              12th grade   1.70  82.10
## 14259            16 years old   Male              11th grade   1.73  65.77
## 14260            15 years old   Male              10th grade   1.83  66.23
## 14261            15 years old   Male              10th grade   1.83  68.04
## 14262            15 years old   Male              10th grade   1.73  64.41
## 14263            15 years old   Male              10th grade   1.70  65.77
## 14264            16 years old   Male              10th grade   1.63  68.04
## 14265            15 years old Female              10th grade   1.55  46.27
## 14266            15 years old Female              10th grade   1.68  46.72
## 14267            15 years old Female              10th grade   1.60  64.41
## 14268            15 years old   Male              10th grade   1.80  71.67
## 14269            16 years old Female              11th grade   1.78  56.70
## 14270            17 years old Female              12th grade   1.57  63.50
## 14271            17 years old   Male              12th grade   1.75  68.04
## 14272            16 years old   Male              11th grade   1.85  79.38
## 14273            14 years old   Male               9th grade   1.68  48.99
## 14274            14 years old Female               9th grade   1.50  41.28
## 14275            14 years old   Male               9th grade   1.65  52.62
## 14276            14 years old Female               9th grade     NA     NA
## 14277            15 years old Female               9th grade     NA     NA
## 14278            16 years old   Male Ungraded or other grade   1.75  66.68
## 14279            15 years old Female               9th grade   1.60  58.97
## 14280            15 years old   Male               9th grade   1.68  72.58
## 14281            14 years old   Male               9th grade   1.88  52.16
## 14282            14 years old   Male               9th grade   1.70  49.90
## 14283            14 years old Female               9th grade   1.50  43.09
## 14284            14 years old   Male               9th grade   1.52  47.63
## 14285            14 years old   Male               9th grade   1.65  45.36
##               Sexual_identity Neg_mental_health
## 1              Gay or lesbian             Never
## 2     Heterosexual (straight)         Sometimes
## 3                    Bisexual            Rarely
## 4     Heterosexual (straight)         Sometimes
## 5     Heterosexual (straight)         Sometimes
## 6     Heterosexual (straight)              <NA>
## 7     Heterosexual (straight)         Sometimes
## 8                    Bisexual            Rarely
## 9                    Bisexual         Sometimes
## 10                   Bisexual             Never
## 11    Heterosexual (straight)             Never
## 12    Heterosexual (straight)             Never
## 13    Heterosexual (straight)             Never
## 14    Heterosexual (straight)             Never
## 15    Heterosexual (straight)             Never
## 16                   Not sure  Most of the time
## 17    Heterosexual (straight)             Never
## 18    Heterosexual (straight)         Sometimes
## 19                   Bisexual         Sometimes
## 20    Heterosexual (straight)         Sometimes
## 21                   Bisexual         Sometimes
## 22    Heterosexual (straight)         Sometimes
## 23    Heterosexual (straight)            Rarely
## 24    Heterosexual (straight)             Never
## 25                   Bisexual            Rarely
## 26             Gay or lesbian  Most of the time
## 27             Some other way            Always
## 28    Heterosexual (straight)             Never
## 29    Heterosexual (straight)         Sometimes
## 30    Heterosexual (straight)         Sometimes
## 31    Heterosexual (straight)            Rarely
## 32             Some other way            Rarely
## 33    Heterosexual (straight)             Never
## 34    Heterosexual (straight)  Most of the time
## 35                   Bisexual            Always
## 36    Heterosexual (straight)            Rarely
## 37    Heterosexual (straight)         Sometimes
## 38    Heterosexual (straight)             Never
## 39    Heterosexual (straight)            Rarely
## 40    Heterosexual (straight)             Never
## 41    Heterosexual (straight)            Rarely
## 42    Heterosexual (straight)             Never
## 43    Heterosexual (straight)  Most of the time
## 44                   Bisexual         Sometimes
## 45    Heterosexual (straight)            Always
## 46    Heterosexual (straight)            Rarely
## 47    Heterosexual (straight)            Always
## 48                   Bisexual  Most of the time
## 49    Heterosexual (straight)  Most of the time
## 50             Some other way  Most of the time
## 51                   Bisexual             Never
## 52    Heterosexual (straight)         Sometimes
## 53    Heterosexual (straight)             Never
## 54    Heterosexual (straight)            Rarely
## 55    Heterosexual (straight)            Rarely
## 56    Heterosexual (straight)            Rarely
## 57    Heterosexual (straight)            Rarely
## 58    Heterosexual (straight)            Rarely
## 59             Gay or lesbian             Never
## 60             Gay or lesbian            Always
## 61    Heterosexual (straight)            Rarely
## 62                   Not sure            Rarely
## 63    Heterosexual (straight)             Never
## 64             Gay or lesbian         Sometimes
## 65                   Bisexual             Never
## 66    Heterosexual (straight)            Rarely
## 67    Heterosexual (straight)         Sometimes
## 68    Heterosexual (straight)            Rarely
## 69    Heterosexual (straight)            Always
## 70    Heterosexual (straight)             Never
## 71    Heterosexual (straight)         Sometimes
## 72                   Bisexual             Never
## 73    Heterosexual (straight)  Most of the time
## 74    Heterosexual (straight)         Sometimes
## 75    Heterosexual (straight)              <NA>
## 76    Heterosexual (straight)         Sometimes
## 77    Heterosexual (straight)             Never
## 78    Heterosexual (straight)  Most of the time
## 79             Gay or lesbian            Rarely
## 80    Heterosexual (straight)         Sometimes
## 81    Heterosexual (straight)            Rarely
## 82             Some other way  Most of the time
## 83                   Not sure            Always
## 84                   Bisexual  Most of the time
## 85    Heterosexual (straight)         Sometimes
## 86    Heterosexual (straight)         Sometimes
## 87             Gay or lesbian         Sometimes
## 88    Heterosexual (straight)             Never
## 89    Heterosexual (straight)            Rarely
## 90    Heterosexual (straight)            Rarely
## 91    Heterosexual (straight)             Never
## 92    Heterosexual (straight)            Rarely
## 93                   Not sure  Most of the time
## 94    Heterosexual (straight)         Sometimes
## 95    Heterosexual (straight)  Most of the time
## 96                   Not sure             Never
## 97    Heterosexual (straight)  Most of the time
## 98    Heterosexual (straight)             Never
## 99    Heterosexual (straight)             Never
## 100   Heterosexual (straight)  Most of the time
## 101   Heterosexual (straight)            Always
## 102   Heterosexual (straight)            Rarely
## 103   Heterosexual (straight)         Sometimes
## 104   Heterosexual (straight)            Rarely
## 105   Heterosexual (straight)         Sometimes
## 106   Heterosexual (straight)         Sometimes
## 107   Heterosexual (straight)         Sometimes
## 108                  Bisexual  Most of the time
## 109            Some other way            Always
## 110   Heterosexual (straight)            Always
## 111   Heterosexual (straight)            Rarely
## 112   Heterosexual (straight)         Sometimes
## 113   Heterosexual (straight)         Sometimes
## 114                  Bisexual  Most of the time
## 115   Heterosexual (straight)            Rarely
## 116   Heterosexual (straight)         Sometimes
## 117   Heterosexual (straight)         Sometimes
## 118                  Bisexual            Always
## 119                  Bisexual            Always
## 120   Heterosexual (straight)         Sometimes
## 121                  Bisexual            Always
## 122   Heterosexual (straight)            Always
## 123   Heterosexual (straight)             Never
## 124            Some other way         Sometimes
## 125   Heterosexual (straight)             Never
## 126   Heterosexual (straight)            Always
## 127   Heterosexual (straight)            Rarely
## 128   Heterosexual (straight)             Never
## 129                  Bisexual            Rarely
## 130            Some other way  Most of the time
## 131   Heterosexual (straight)             Never
## 132   Heterosexual (straight)  Most of the time
## 133   Heterosexual (straight)  Most of the time
## 134   Heterosexual (straight)         Sometimes
## 135   Heterosexual (straight)         Sometimes
## 136   Heterosexual (straight)             Never
## 137   Heterosexual (straight)            Rarely
## 138   Heterosexual (straight)             Never
## 139   Heterosexual (straight)  Most of the time
## 140   Heterosexual (straight)             Never
## 141   Heterosexual (straight)            Rarely
## 142   Heterosexual (straight)         Sometimes
## 143   Heterosexual (straight)              <NA>
## 144   Heterosexual (straight)             Never
## 145   Heterosexual (straight)             Never
## 146   Heterosexual (straight)            Rarely
## 147                  Not sure  Most of the time
## 148   Heterosexual (straight)            Rarely
## 149            Gay or lesbian            Rarely
## 150   Heterosexual (straight)             Never
## 151   Heterosexual (straight)         Sometimes
## 152   Heterosexual (straight)            Rarely
## 153   Heterosexual (straight)         Sometimes
## 154                  Bisexual         Sometimes
## 155   Heterosexual (straight)         Sometimes
## 156   Heterosexual (straight)  Most of the time
## 157   Heterosexual (straight)             Never
## 158   Heterosexual (straight)  Most of the time
## 159            Some other way  Most of the time
## 160   Heterosexual (straight)            Rarely
## 161   Heterosexual (straight)            Rarely
## 162   Heterosexual (straight)             Never
## 163                  Bisexual            Rarely
## 164   Heterosexual (straight)  Most of the time
## 165   Heterosexual (straight)         Sometimes
## 166   Heterosexual (straight)         Sometimes
## 167   Heterosexual (straight)             Never
## 168   Heterosexual (straight)             Never
## 169   Heterosexual (straight)            Rarely
## 170                  Bisexual         Sometimes
## 171   Heterosexual (straight)             Never
## 172   Heterosexual (straight)            Rarely
## 173   Heterosexual (straight)  Most of the time
## 174   Heterosexual (straight)  Most of the time
## 175   Heterosexual (straight)             Never
## 176   Heterosexual (straight)            Always
## 177   Heterosexual (straight)            Always
## 178   Heterosexual (straight)  Most of the time
## 179            Gay or lesbian         Sometimes
## 180   Heterosexual (straight)             Never
## 181                  Bisexual             Never
## 182   Heterosexual (straight)             Never
## 183   Heterosexual (straight)         Sometimes
## 184   Heterosexual (straight)            Rarely
## 185                  Bisexual  Most of the time
## 186   Heterosexual (straight)             Never
## 187   Heterosexual (straight)  Most of the time
## 188   Heterosexual (straight)  Most of the time
## 189   Heterosexual (straight)            Rarely
## 190                  Not sure  Most of the time
## 191   Heterosexual (straight)         Sometimes
## 192                  Bisexual         Sometimes
## 193   Heterosexual (straight)         Sometimes
## 194                  Bisexual  Most of the time
## 195   Heterosexual (straight)             Never
## 196   Heterosexual (straight)  Most of the time
## 197   Heterosexual (straight)            Rarely
## 198   Heterosexual (straight)            Rarely
## 199            Some other way         Sometimes
## 200            Gay or lesbian  Most of the time
## 201                  Bisexual            Always
## 202            Some other way         Sometimes
## 203   Heterosexual (straight)         Sometimes
## 204                  Bisexual         Sometimes
## 205   Heterosexual (straight)         Sometimes
## 206   Heterosexual (straight)         Sometimes
## 207   Heterosexual (straight)  Most of the time
## 208   Heterosexual (straight)            Rarely
## 209   Heterosexual (straight)            Rarely
## 210   Heterosexual (straight)         Sometimes
## 211   Heterosexual (straight)         Sometimes
## 212   Heterosexual (straight)             Never
## 213   Heterosexual (straight)  Most of the time
## 214   Heterosexual (straight)             Never
## 215            Gay or lesbian         Sometimes
## 216   Heterosexual (straight)             Never
## 217   Heterosexual (straight)            Always
## 218   Heterosexual (straight)            Rarely
## 219                  Bisexual         Sometimes
## 220   Heterosexual (straight)            Always
## 221                  Not sure             Never
## 222   Heterosexual (straight)            Always
## 223   Heterosexual (straight)  Most of the time
## 224   Heterosexual (straight)             Never
## 225   Heterosexual (straight)             Never
## 226            Gay or lesbian            Rarely
## 227   Heterosexual (straight)             Never
## 228   Heterosexual (straight)         Sometimes
## 229   Heterosexual (straight)  Most of the time
## 230   Heterosexual (straight)             Never
## 231                  Not sure            Always
## 232            Gay or lesbian  Most of the time
## 233   Heterosexual (straight)              <NA>
## 234   Heterosexual (straight)            Always
## 235   Heterosexual (straight)             Never
## 236                  Bisexual             Never
## 237   Heterosexual (straight)  Most of the time
## 238            Gay or lesbian         Sometimes
## 239   Heterosexual (straight)             Never
## 240   Heterosexual (straight)            Rarely
## 241                  Bisexual  Most of the time
## 242                  Bisexual             Never
## 243                  Not sure             Never
## 244   Heterosexual (straight)         Sometimes
## 245   Heterosexual (straight)         Sometimes
## 246            Gay or lesbian         Sometimes
## 247   Heterosexual (straight)             Never
## 248   Heterosexual (straight)         Sometimes
## 249   Heterosexual (straight)         Sometimes
## 250   Heterosexual (straight)             Never
## 251   Heterosexual (straight)              <NA>
## 252   Heterosexual (straight)            Rarely
## 253   Heterosexual (straight)            Rarely
## 254   Heterosexual (straight)            Rarely
## 255   Heterosexual (straight)            Rarely
## 256   Heterosexual (straight)         Sometimes
## 257   Heterosexual (straight)            Rarely
## 258            Some other way            Always
## 259   Heterosexual (straight)             Never
## 260   Heterosexual (straight)            Rarely
## 261   Heterosexual (straight)  Most of the time
## 262   Heterosexual (straight)  Most of the time
## 263   Heterosexual (straight)         Sometimes
## 264   Heterosexual (straight)         Sometimes
## 265   Heterosexual (straight)              <NA>
## 266   Heterosexual (straight)             Never
## 267   Heterosexual (straight)            Rarely
## 268   Heterosexual (straight)  Most of the time
## 269   Heterosexual (straight)            Rarely
## 270   Heterosexual (straight)             Never
## 271                  Not sure         Sometimes
## 272   Heterosexual (straight)         Sometimes
## 273                  Bisexual         Sometimes
## 274   Heterosexual (straight)         Sometimes
## 275                  Bisexual  Most of the time
## 276   Heterosexual (straight)            Rarely
## 277   Heterosexual (straight)  Most of the time
## 278   Heterosexual (straight)            Rarely
## 279                  Bisexual         Sometimes
## 280   Heterosexual (straight)              <NA>
## 281   Heterosexual (straight)              <NA>
## 282   Heterosexual (straight)            Rarely
## 283                  Bisexual  Most of the time
## 284                  Bisexual  Most of the time
## 285   Heterosexual (straight)             Never
## 286   Heterosexual (straight)             Never
## 287   Heterosexual (straight)         Sometimes
## 288   Heterosexual (straight)         Sometimes
## 289                  Bisexual            Always
## 290   Heterosexual (straight)            Always
## 291   Heterosexual (straight)             Never
## 292   Heterosexual (straight)            Always
## 293   Heterosexual (straight)             Never
## 294   Heterosexual (straight)         Sometimes
## 295   Heterosexual (straight)            Rarely
## 296   Heterosexual (straight)             Never
## 297   Heterosexual (straight)  Most of the time
## 298   Heterosexual (straight)            Rarely
## 299   Heterosexual (straight)         Sometimes
## 300   Heterosexual (straight)             Never
## 301   Heterosexual (straight)  Most of the time
## 302   Heterosexual (straight)         Sometimes
## 303   Heterosexual (straight)             Never
## 304   Heterosexual (straight)  Most of the time
## 305   Heterosexual (straight)             Never
## 306   Heterosexual (straight)         Sometimes
## 307   Heterosexual (straight)         Sometimes
## 308   Heterosexual (straight)         Sometimes
## 309                  Bisexual         Sometimes
## 310   Heterosexual (straight)            Rarely
## 311                  Bisexual         Sometimes
## 312   Heterosexual (straight)            Rarely
## 313            Gay or lesbian         Sometimes
## 314   Heterosexual (straight)              <NA>
## 315                  Bisexual  Most of the time
## 316   Heterosexual (straight)         Sometimes
## 317   Heterosexual (straight)              <NA>
## 318                  Not sure         Sometimes
## 319   Heterosexual (straight)             Never
## 320   Heterosexual (straight)         Sometimes
## 321                  Bisexual  Most of the time
## 322                  Not sure         Sometimes
## 323   Heterosexual (straight)            Rarely
## 324   Heterosexual (straight)            Rarely
## 325   Heterosexual (straight)  Most of the time
## 326   Heterosexual (straight)            Rarely
## 327   Heterosexual (straight)             Never
## 328   Heterosexual (straight)              <NA>
## 329                  Bisexual         Sometimes
## 330                  Bisexual            Always
## 331                  Bisexual            Rarely
## 332   Heterosexual (straight)            Rarely
## 333   Heterosexual (straight)            Rarely
## 334                  Not sure             Never
## 335   Heterosexual (straight)            Rarely
## 336   Heterosexual (straight)            Always
## 337   Heterosexual (straight)  Most of the time
## 338   Heterosexual (straight)         Sometimes
## 339   Heterosexual (straight)            Always
## 340   Heterosexual (straight)  Most of the time
## 341   Heterosexual (straight)             Never
## 342   Heterosexual (straight)            Rarely
## 343   Heterosexual (straight)            Rarely
## 344   Heterosexual (straight)            Rarely
## 345   Heterosexual (straight)             Never
## 346                  Bisexual         Sometimes
## 347   Heterosexual (straight)            Rarely
## 348   Heterosexual (straight)              <NA>
## 349                  Bisexual             Never
## 350   Heterosexual (straight)            Always
## 351                  Bisexual  Most of the time
## 352   Heterosexual (straight)             Never
## 353                  Not sure  Most of the time
## 354   Heterosexual (straight)            Rarely
## 355   Heterosexual (straight)            Rarely
## 356   Heterosexual (straight)            Rarely
## 357                  Bisexual         Sometimes
## 358            Some other way            Always
## 359   Heterosexual (straight)  Most of the time
## 360   Heterosexual (straight)  Most of the time
## 361   Heterosexual (straight)  Most of the time
## 362   Heterosexual (straight)            Rarely
## 363   Heterosexual (straight)             Never
## 364   Heterosexual (straight)         Sometimes
## 365   Heterosexual (straight)            Rarely
## 366                  Not sure  Most of the time
## 367   Heterosexual (straight)            Rarely
## 368   Heterosexual (straight)  Most of the time
## 369   Heterosexual (straight)            Rarely
## 370   Heterosexual (straight)  Most of the time
## 371   Heterosexual (straight)            Rarely
## 372   Heterosexual (straight)  Most of the time
## 373   Heterosexual (straight)         Sometimes
## 374            Some other way         Sometimes
## 375                  Bisexual  Most of the time
## 376   Heterosexual (straight)  Most of the time
## 377                  Not sure  Most of the time
## 378   Heterosexual (straight)  Most of the time
## 379   Heterosexual (straight)         Sometimes
## 380   Heterosexual (straight)         Sometimes
## 381   Heterosexual (straight)  Most of the time
## 382   Heterosexual (straight)             Never
## 383   Heterosexual (straight)            Always
## 384   Heterosexual (straight)         Sometimes
## 385   Heterosexual (straight)             Never
## 386   Heterosexual (straight)  Most of the time
## 387   Heterosexual (straight)         Sometimes
## 388   Heterosexual (straight)            Rarely
## 389   Heterosexual (straight)            Rarely
## 390   Heterosexual (straight)            Rarely
## 391   Heterosexual (straight)             Never
## 392   Heterosexual (straight)         Sometimes
## 393   Heterosexual (straight)  Most of the time
## 394   Heterosexual (straight)         Sometimes
## 395   Heterosexual (straight)            Rarely
## 396   Heterosexual (straight)            Rarely
## 397   Heterosexual (straight)            Rarely
## 398   Heterosexual (straight)         Sometimes
## 399   Heterosexual (straight)             Never
## 400   Heterosexual (straight)         Sometimes
## 401   Heterosexual (straight)         Sometimes
## 402   Heterosexual (straight)            Always
## 403   Heterosexual (straight)             Never
## 404   Heterosexual (straight)             Never
## 405   Heterosexual (straight)         Sometimes
## 406   Heterosexual (straight)  Most of the time
## 407   Heterosexual (straight)             Never
## 408   Heterosexual (straight)  Most of the time
## 409   Heterosexual (straight)            Rarely
## 410                  Bisexual            Rarely
## 411   Heterosexual (straight)         Sometimes
## 412   Heterosexual (straight)         Sometimes
## 413   Heterosexual (straight)         Sometimes
## 414   Heterosexual (straight)             Never
## 415   Heterosexual (straight)         Sometimes
## 416   Heterosexual (straight)            Rarely
## 417   Heterosexual (straight)         Sometimes
## 418   Heterosexual (straight)            Rarely
## 419   Heterosexual (straight)            Rarely
## 420   Heterosexual (straight)            Rarely
## 421   Heterosexual (straight)  Most of the time
## 422   Heterosexual (straight)            Rarely
## 423   Heterosexual (straight)         Sometimes
## 424   Heterosexual (straight)         Sometimes
## 425   Heterosexual (straight)             Never
## 426            Gay or lesbian  Most of the time
## 427   Heterosexual (straight)            Rarely
## 428   Heterosexual (straight)            Rarely
## 429   Heterosexual (straight)         Sometimes
## 430                  Not sure         Sometimes
## 431   Heterosexual (straight)             Never
## 432   Heterosexual (straight)         Sometimes
## 433   Heterosexual (straight)            Rarely
## 434   Heterosexual (straight)            Rarely
## 435   Heterosexual (straight)            Rarely
## 436   Heterosexual (straight)         Sometimes
## 437   Heterosexual (straight)            Always
## 438   Heterosexual (straight)         Sometimes
## 439   Heterosexual (straight)            Rarely
## 440   Heterosexual (straight)  Most of the time
## 441            Gay or lesbian              <NA>
## 442   Heterosexual (straight)         Sometimes
## 443            Gay or lesbian  Most of the time
## 444   Heterosexual (straight)         Sometimes
## 445   Heterosexual (straight)             Never
## 446   Heterosexual (straight)            Rarely
## 447   Heterosexual (straight)            Rarely
## 448   Heterosexual (straight)             Never
## 449                  Bisexual  Most of the time
## 450   Heterosexual (straight)         Sometimes
## 451   Heterosexual (straight)         Sometimes
## 452                  Bisexual         Sometimes
## 453   Heterosexual (straight)            Rarely
## 454   Heterosexual (straight)         Sometimes
## 455   Heterosexual (straight)            Rarely
## 456   Heterosexual (straight)            Rarely
## 457   Heterosexual (straight)             Never
## 458   Heterosexual (straight)             Never
## 459   Heterosexual (straight)             Never
## 460   Heterosexual (straight)             Never
## 461   Heterosexual (straight)             Never
## 462            Some other way            Always
## 463   Heterosexual (straight)             Never
## 464   Heterosexual (straight)             Never
## 465   Heterosexual (straight)             Never
## 466   Heterosexual (straight)             Never
## 467   Heterosexual (straight)         Sometimes
## 468   Heterosexual (straight)             Never
## 469   Heterosexual (straight)             Never
## 470   Heterosexual (straight)  Most of the time
## 471   Heterosexual (straight)            Rarely
## 472   Heterosexual (straight)            Rarely
## 473   Heterosexual (straight)         Sometimes
## 474   Heterosexual (straight)            Rarely
## 475   Heterosexual (straight)  Most of the time
## 476   Heterosexual (straight)             Never
## 477                  Bisexual  Most of the time
## 478   Heterosexual (straight)            Rarely
## 479   Heterosexual (straight)             Never
## 480            Gay or lesbian            Always
## 481   Heterosexual (straight)            Rarely
## 482   Heterosexual (straight)         Sometimes
## 483            Gay or lesbian         Sometimes
## 484   Heterosexual (straight)         Sometimes
## 485   Heterosexual (straight)            Rarely
## 486   Heterosexual (straight)              <NA>
## 487                  Bisexual             Never
## 488   Heterosexual (straight)            Rarely
## 489   Heterosexual (straight)             Never
## 490   Heterosexual (straight)             Never
## 491   Heterosexual (straight)         Sometimes
## 492   Heterosexual (straight)             Never
## 493   Heterosexual (straight)         Sometimes
## 494   Heterosexual (straight)         Sometimes
## 495   Heterosexual (straight)  Most of the time
## 496            Gay or lesbian  Most of the time
## 497   Heterosexual (straight)         Sometimes
## 498                  Bisexual  Most of the time
## 499   Heterosexual (straight)         Sometimes
## 500            Gay or lesbian             Never
## 501   Heterosexual (straight)         Sometimes
## 502                  Bisexual            Rarely
## 503                  Not sure         Sometimes
## 504   Heterosexual (straight)              <NA>
## 505   Heterosexual (straight)         Sometimes
## 506   Heterosexual (straight)             Never
## 507   Heterosexual (straight)         Sometimes
## 508   Heterosexual (straight)         Sometimes
## 509   Heterosexual (straight)            Rarely
## 510            Gay or lesbian            Always
## 511   Heterosexual (straight)             Never
## 512            Some other way         Sometimes
## 513   Heterosexual (straight)              <NA>
## 514   Heterosexual (straight)            Rarely
## 515   Heterosexual (straight)             Never
## 516                  Bisexual         Sometimes
## 517            Gay or lesbian            Always
## 518   Heterosexual (straight)             Never
## 519            Gay or lesbian         Sometimes
## 520   Heterosexual (straight)            Rarely
## 521            Gay or lesbian  Most of the time
## 522   Heterosexual (straight)            Rarely
## 523   Heterosexual (straight)            Always
## 524   Heterosexual (straight)             Never
## 525   Heterosexual (straight)            Rarely
## 526   Heterosexual (straight)             Never
## 527            Some other way         Sometimes
## 528   Heterosexual (straight)            Rarely
## 529   Heterosexual (straight)  Most of the time
## 530                  Bisexual         Sometimes
## 531            Some other way  Most of the time
## 532   Heterosexual (straight)         Sometimes
## 533   Heterosexual (straight)  Most of the time
## 534   Heterosexual (straight)            Rarely
## 535   Heterosexual (straight)              <NA>
## 536   Heterosexual (straight)            Rarely
## 537   Heterosexual (straight)         Sometimes
## 538            Some other way         Sometimes
## 539   Heterosexual (straight)            Rarely
## 540                  Not sure            Rarely
## 541   Heterosexual (straight)            Rarely
## 542   Heterosexual (straight)            Always
## 543   Heterosexual (straight)            Rarely
## 544   Heterosexual (straight)              <NA>
## 545                  Bisexual         Sometimes
## 546   Heterosexual (straight)  Most of the time
## 547   Heterosexual (straight)  Most of the time
## 548   Heterosexual (straight)         Sometimes
## 549                  Bisexual  Most of the time
## 550   Heterosexual (straight)            Always
## 551   Heterosexual (straight)              <NA>
## 552                  Not sure            Always
## 553   Heterosexual (straight)  Most of the time
## 554   Heterosexual (straight)             Never
## 555            Some other way         Sometimes
## 556   Heterosexual (straight)  Most of the time
## 557   Heterosexual (straight)             Never
## 558   Heterosexual (straight)         Sometimes
## 559   Heterosexual (straight)              <NA>
## 560            Some other way         Sometimes
## 561                  Not sure         Sometimes
## 562   Heterosexual (straight)             Never
## 563   Heterosexual (straight)         Sometimes
## 564   Heterosexual (straight)         Sometimes
## 565                  Not sure  Most of the time
## 566   Heterosexual (straight)  Most of the time
## 567   Heterosexual (straight)             Never
## 568   Heterosexual (straight)             Never
## 569   Heterosexual (straight)            Rarely
## 570   Heterosexual (straight)              <NA>
## 571   Heterosexual (straight)            Rarely
## 572   Heterosexual (straight)  Most of the time
## 573   Heterosexual (straight)            Rarely
## 574   Heterosexual (straight)              <NA>
## 575                  Bisexual  Most of the time
## 576   Heterosexual (straight)             Never
## 577                  Bisexual            Always
## 578            Some other way            Rarely
## 579   Heterosexual (straight)         Sometimes
## 580   Heterosexual (straight)         Sometimes
## 581   Heterosexual (straight)  Most of the time
## 582   Heterosexual (straight)            Rarely
## 583   Heterosexual (straight)  Most of the time
## 584   Heterosexual (straight)         Sometimes
## 585   Heterosexual (straight)             Never
## 586            Some other way  Most of the time
## 587   Heterosexual (straight)             Never
## 588   Heterosexual (straight)         Sometimes
## 589            Gay or lesbian  Most of the time
## 590   Heterosexual (straight)              <NA>
## 591   Heterosexual (straight)  Most of the time
## 592   Heterosexual (straight)              <NA>
## 593   Heterosexual (straight)  Most of the time
## 594                  Not sure         Sometimes
## 595                  Not sure         Sometimes
## 596   Heterosexual (straight)             Never
## 597   Heterosexual (straight)         Sometimes
## 598   Heterosexual (straight)  Most of the time
## 599   Heterosexual (straight)             Never
## 600   Heterosexual (straight)            Always
## 601   Heterosexual (straight)              <NA>
## 602   Heterosexual (straight)         Sometimes
## 603            Some other way            Always
## 604   Heterosexual (straight)             Never
## 605   Heterosexual (straight)            Always
## 606   Heterosexual (straight)         Sometimes
## 607   Heterosexual (straight)  Most of the time
## 608   Heterosexual (straight)         Sometimes
## 609   Heterosexual (straight)         Sometimes
## 610            Gay or lesbian         Sometimes
## 611   Heterosexual (straight)            Always
## 612   Heterosexual (straight)             Never
## 613                  Bisexual              <NA>
## 614   Heterosexual (straight)         Sometimes
## 615            Some other way              <NA>
## 616            Some other way         Sometimes
## 617   Heterosexual (straight)  Most of the time
## 618                  Not sure            Always
## 619            Some other way            Rarely
## 620   Heterosexual (straight)            Rarely
## 621                  Not sure         Sometimes
## 622   Heterosexual (straight)             Never
## 623   Heterosexual (straight)         Sometimes
## 624   Heterosexual (straight)  Most of the time
## 625   Heterosexual (straight)         Sometimes
## 626   Heterosexual (straight)  Most of the time
## 627   Heterosexual (straight)             Never
## 628   Heterosexual (straight)             Never
## 629   Heterosexual (straight)             Never
## 630   Heterosexual (straight)         Sometimes
## 631   Heterosexual (straight)            Rarely
## 632                  Bisexual            Always
## 633   Heterosexual (straight)         Sometimes
## 634   Heterosexual (straight)         Sometimes
## 635   Heterosexual (straight)         Sometimes
## 636   Heterosexual (straight)             Never
## 637   Heterosexual (straight)            Rarely
## 638   Heterosexual (straight)         Sometimes
## 639   Heterosexual (straight)  Most of the time
## 640                  Bisexual  Most of the time
## 641   Heterosexual (straight)  Most of the time
## 642   Heterosexual (straight)            Rarely
## 643            Some other way            Always
## 644   Heterosexual (straight)         Sometimes
## 645   Heterosexual (straight)             Never
## 646   Heterosexual (straight)             Never
## 647   Heterosexual (straight)  Most of the time
## 648   Heterosexual (straight)         Sometimes
## 649   Heterosexual (straight)            Rarely
## 650   Heterosexual (straight)         Sometimes
## 651   Heterosexual (straight)            Rarely
## 652   Heterosexual (straight)         Sometimes
## 653   Heterosexual (straight)             Never
## 654                  Bisexual  Most of the time
## 655   Heterosexual (straight)            Rarely
## 656   Heterosexual (straight)             Never
## 657            Some other way  Most of the time
## 658   Heterosexual (straight)              <NA>
## 659   Heterosexual (straight)  Most of the time
## 660   Heterosexual (straight)            Rarely
## 661   Heterosexual (straight)            Rarely
## 662   Heterosexual (straight)            Rarely
## 663                  Not sure  Most of the time
## 664   Heterosexual (straight)             Never
## 665   Heterosexual (straight)              <NA>
## 666   Heterosexual (straight)  Most of the time
## 667   Heterosexual (straight)  Most of the time
## 668   Heterosexual (straight)             Never
## 669   Heterosexual (straight)             Never
## 670   Heterosexual (straight)  Most of the time
## 671   Heterosexual (straight)  Most of the time
## 672   Heterosexual (straight)            Rarely
## 673   Heterosexual (straight)  Most of the time
## 674   Heterosexual (straight)            Rarely
## 675   Heterosexual (straight)            Rarely
## 676   Heterosexual (straight)             Never
## 677   Heterosexual (straight)  Most of the time
## 678   Heterosexual (straight)            Rarely
## 679   Heterosexual (straight)            Rarely
## 680   Heterosexual (straight)            Always
## 681                  Bisexual         Sometimes
## 682   Heterosexual (straight)             Never
## 683                  Bisexual  Most of the time
## 684   Heterosexual (straight)         Sometimes
## 685   Heterosexual (straight)  Most of the time
## 686   Heterosexual (straight)             Never
## 687                  Bisexual         Sometimes
## 688   Heterosexual (straight)  Most of the time
## 689   Heterosexual (straight)            Rarely
## 690   Heterosexual (straight)             Never
## 691                  Bisexual  Most of the time
## 692   Heterosexual (straight)             Never
## 693                  Bisexual            Always
## 694   Heterosexual (straight)            Rarely
## 695   Heterosexual (straight)         Sometimes
## 696                  Not sure  Most of the time
## 697   Heterosexual (straight)         Sometimes
## 698   Heterosexual (straight)            Rarely
## 699   Heterosexual (straight)             Never
## 700   Heterosexual (straight)            Rarely
## 701   Heterosexual (straight)            Rarely
## 702   Heterosexual (straight)         Sometimes
## 703   Heterosexual (straight)             Never
## 704   Heterosexual (straight)            Always
## 705   Heterosexual (straight)            Rarely
## 706                  Not sure         Sometimes
## 707   Heterosexual (straight)            Rarely
## 708   Heterosexual (straight)         Sometimes
## 709   Heterosexual (straight)            Rarely
## 710   Heterosexual (straight)             Never
## 711                  Bisexual         Sometimes
## 712            Some other way             Never
## 713                  Bisexual         Sometimes
## 714   Heterosexual (straight)            Rarely
## 715   Heterosexual (straight)             Never
## 716            Some other way            Always
## 717   Heterosexual (straight)             Never
## 718            Some other way  Most of the time
## 719   Heterosexual (straight)  Most of the time
## 720   Heterosexual (straight)         Sometimes
## 721            Some other way            Always
## 722   Heterosexual (straight)              <NA>
## 723   Heterosexual (straight)            Rarely
## 724   Heterosexual (straight)            Rarely
## 725   Heterosexual (straight)         Sometimes
## 726                  Bisexual         Sometimes
## 727   Heterosexual (straight)         Sometimes
## 728                  Bisexual  Most of the time
## 729   Heterosexual (straight)            Rarely
## 730                  Not sure            Rarely
## 731            Some other way  Most of the time
## 732            Some other way         Sometimes
## 733   Heterosexual (straight)         Sometimes
## 734   Heterosexual (straight)  Most of the time
## 735   Heterosexual (straight)            Rarely
## 736   Heterosexual (straight)  Most of the time
## 737   Heterosexual (straight)             Never
## 738   Heterosexual (straight)         Sometimes
## 739                  Bisexual         Sometimes
## 740   Heterosexual (straight)             Never
## 741            Gay or lesbian            Rarely
## 742   Heterosexual (straight)         Sometimes
## 743   Heterosexual (straight)            Rarely
## 744   Heterosexual (straight)             Never
## 745   Heterosexual (straight)         Sometimes
## 746   Heterosexual (straight)         Sometimes
## 747   Heterosexual (straight)         Sometimes
## 748                  Bisexual         Sometimes
## 749   Heterosexual (straight)  Most of the time
## 750                  Bisexual         Sometimes
## 751   Heterosexual (straight)         Sometimes
## 752                  Bisexual            Rarely
## 753   Heterosexual (straight)  Most of the time
## 754            Some other way  Most of the time
## 755   Heterosexual (straight)            Rarely
## 756            Gay or lesbian  Most of the time
## 757   Heterosexual (straight)            Rarely
## 758   Heterosexual (straight)             Never
## 759   Heterosexual (straight)            Rarely
## 760                  Not sure         Sometimes
## 761   Heterosexual (straight)            Always
## 762   Heterosexual (straight)            Always
## 763   Heterosexual (straight)            Rarely
## 764   Heterosexual (straight)            Rarely
## 765   Heterosexual (straight)            Rarely
## 766                  Bisexual  Most of the time
## 767                  Bisexual         Sometimes
## 768   Heterosexual (straight)         Sometimes
## 769   Heterosexual (straight)         Sometimes
## 770   Heterosexual (straight)         Sometimes
## 771   Heterosexual (straight)            Rarely
## 772                  Bisexual            Always
## 773                  Bisexual         Sometimes
## 774   Heterosexual (straight)         Sometimes
## 775   Heterosexual (straight)            Rarely
## 776   Heterosexual (straight)         Sometimes
## 777            Gay or lesbian            Rarely
## 778            Gay or lesbian            Rarely
## 779   Heterosexual (straight)  Most of the time
## 780                  Bisexual         Sometimes
## 781                  Bisexual              <NA>
## 782                  Bisexual         Sometimes
## 783            Gay or lesbian             Never
## 784                  Bisexual         Sometimes
## 785                  Bisexual              <NA>
## 786                  Bisexual              <NA>
## 787                  Bisexual         Sometimes
## 788            Some other way         Sometimes
## 789            Gay or lesbian         Sometimes
## 790            Some other way         Sometimes
## 791                  Bisexual              <NA>
## 792            Gay or lesbian         Sometimes
## 793                  Bisexual            Always
## 794                  Not sure              <NA>
## 795                  Bisexual              <NA>
## 796                  Not sure              <NA>
## 797            Gay or lesbian              <NA>
## 798            Gay or lesbian         Sometimes
## 799                  Bisexual              <NA>
## 800                  Bisexual             Never
## 801                  Bisexual            Always
## 802                  Not sure            Always
## 803                  Bisexual              <NA>
## 804                  Bisexual              <NA>
## 805            Gay or lesbian              <NA>
## 806            Gay or lesbian             Never
## 807                  Bisexual         Sometimes
## 808                  Bisexual              <NA>
## 809            Some other way            Always
## 810   Heterosexual (straight)  Most of the time
## 811   Heterosexual (straight)            Rarely
## 812                  Bisexual            Always
## 813   Heterosexual (straight)  Most of the time
## 814   Heterosexual (straight)            Always
## 815   Heterosexual (straight)  Most of the time
## 816   Heterosexual (straight)             Never
## 817   Heterosexual (straight)             Never
## 818            Gay or lesbian         Sometimes
## 819   Heterosexual (straight)            Always
## 820   Heterosexual (straight)  Most of the time
## 821   Heterosexual (straight)            Always
## 822   Heterosexual (straight)            Rarely
## 823                  Bisexual  Most of the time
## 824   Heterosexual (straight)             Never
## 825   Heterosexual (straight)         Sometimes
## 826   Heterosexual (straight)  Most of the time
## 827   Heterosexual (straight)         Sometimes
## 828                  Bisexual  Most of the time
## 829   Heterosexual (straight)         Sometimes
## 830   Heterosexual (straight)         Sometimes
## 831   Heterosexual (straight)         Sometimes
## 832   Heterosexual (straight)            Rarely
## 833   Heterosexual (straight)            Rarely
## 834   Heterosexual (straight)             Never
## 835   Heterosexual (straight)         Sometimes
## 836   Heterosexual (straight)         Sometimes
## 837   Heterosexual (straight)         Sometimes
## 838   Heterosexual (straight)            Always
## 839   Heterosexual (straight)            Rarely
## 840   Heterosexual (straight)         Sometimes
## 841   Heterosexual (straight)            Rarely
## 842                  Bisexual            Always
## 843   Heterosexual (straight)         Sometimes
## 844   Heterosexual (straight)            Rarely
## 845   Heterosexual (straight)            Rarely
## 846                  Bisexual  Most of the time
## 847   Heterosexual (straight)            Rarely
## 848   Heterosexual (straight)            Rarely
## 849            Some other way            Rarely
## 850                  Bisexual         Sometimes
## 851   Heterosexual (straight)            Rarely
## 852   Heterosexual (straight)            Rarely
## 853   Heterosexual (straight)         Sometimes
## 854                  Bisexual  Most of the time
## 855   Heterosexual (straight)         Sometimes
## 856   Heterosexual (straight)         Sometimes
## 857   Heterosexual (straight)         Sometimes
## 858   Heterosexual (straight)            Always
## 859   Heterosexual (straight)         Sometimes
## 860   Heterosexual (straight)             Never
## 861            Some other way         Sometimes
## 862                  Not sure  Most of the time
## 863   Heterosexual (straight)            Rarely
## 864   Heterosexual (straight)            Rarely
## 865   Heterosexual (straight)         Sometimes
## 866   Heterosexual (straight)  Most of the time
## 867   Heterosexual (straight)            Rarely
## 868   Heterosexual (straight)         Sometimes
## 869   Heterosexual (straight)         Sometimes
## 870                  Bisexual            Rarely
## 871                  Not sure            Always
## 872   Heterosexual (straight)             Never
## 873                  Bisexual         Sometimes
## 874            Gay or lesbian             Never
## 875   Heterosexual (straight)  Most of the time
## 876            Gay or lesbian         Sometimes
## 877   Heterosexual (straight)             Never
## 878                  Not sure              <NA>
## 879   Heterosexual (straight)             Never
## 880   Heterosexual (straight)            Rarely
## 881   Heterosexual (straight)         Sometimes
## 882            Gay or lesbian  Most of the time
## 883   Heterosexual (straight)         Sometimes
## 884   Heterosexual (straight)             Never
## 885   Heterosexual (straight)            Rarely
## 886   Heterosexual (straight)         Sometimes
## 887            Some other way  Most of the time
## 888   Heterosexual (straight)         Sometimes
## 889   Heterosexual (straight)             Never
## 890   Heterosexual (straight)             Never
## 891                  Not sure            Always
## 892                  Bisexual         Sometimes
## 893   Heterosexual (straight)            Always
## 894            Some other way            Always
## 895   Heterosexual (straight)            Rarely
## 896            Some other way  Most of the time
## 897   Heterosexual (straight)             Never
## 898   Heterosexual (straight)             Never
## 899            Some other way            Always
## 900   Heterosexual (straight)  Most of the time
## 901   Heterosexual (straight)             Never
## 902                  Bisexual  Most of the time
## 903   Heterosexual (straight)            Rarely
## 904   Heterosexual (straight)         Sometimes
## 905   Heterosexual (straight)            Rarely
## 906   Heterosexual (straight)             Never
## 907   Heterosexual (straight)            Rarely
## 908   Heterosexual (straight)  Most of the time
## 909   Heterosexual (straight)             Never
## 910   Heterosexual (straight)             Never
## 911   Heterosexual (straight)            Always
## 912                  Bisexual            Rarely
## 913   Heterosexual (straight)         Sometimes
## 914   Heterosexual (straight)         Sometimes
## 915            Some other way         Sometimes
## 916   Heterosexual (straight)  Most of the time
## 917                  Bisexual  Most of the time
## 918   Heterosexual (straight)            Always
## 919   Heterosexual (straight)             Never
## 920   Heterosexual (straight)            Rarely
## 921   Heterosexual (straight)            Rarely
## 922   Heterosexual (straight)  Most of the time
## 923   Heterosexual (straight)         Sometimes
## 924   Heterosexual (straight)             Never
## 925   Heterosexual (straight)            Rarely
## 926   Heterosexual (straight)             Never
## 927            Some other way            Always
## 928   Heterosexual (straight)         Sometimes
## 929   Heterosexual (straight)  Most of the time
## 930                  Bisexual             Never
## 931   Heterosexual (straight)         Sometimes
## 932   Heterosexual (straight)              <NA>
## 933                  Bisexual  Most of the time
## 934            Some other way  Most of the time
## 935   Heterosexual (straight)             Never
## 936   Heterosexual (straight)         Sometimes
## 937   Heterosexual (straight)            Rarely
## 938   Heterosexual (straight)             Never
## 939   Heterosexual (straight)         Sometimes
## 940                  Not sure            Always
## 941   Heterosexual (straight)             Never
## 942   Heterosexual (straight)            Rarely
## 943   Heterosexual (straight)            Rarely
## 944   Heterosexual (straight)            Rarely
## 945   Heterosexual (straight)             Never
## 946   Heterosexual (straight)             Never
## 947                  Bisexual            Always
## 948   Heterosexual (straight)         Sometimes
## 949   Heterosexual (straight)         Sometimes
## 950                  Not sure         Sometimes
## 951   Heterosexual (straight)             Never
## 952   Heterosexual (straight)  Most of the time
## 953                  Bisexual            Rarely
## 954   Heterosexual (straight)            Rarely
## 955            Gay or lesbian             Never
## 956   Heterosexual (straight)         Sometimes
## 957   Heterosexual (straight)             Never
## 958                  Bisexual            Always
## 959   Heterosexual (straight)            Rarely
## 960   Heterosexual (straight)         Sometimes
## 961                  Bisexual            Rarely
## 962   Heterosexual (straight)             Never
## 963   Heterosexual (straight)  Most of the time
## 964   Heterosexual (straight)         Sometimes
## 965   Heterosexual (straight)         Sometimes
## 966   Heterosexual (straight)              <NA>
## 967   Heterosexual (straight)             Never
## 968   Heterosexual (straight)            Always
## 969   Heterosexual (straight)             Never
## 970   Heterosexual (straight)         Sometimes
## 971   Heterosexual (straight)            Rarely
## 972   Heterosexual (straight)            Rarely
## 973   Heterosexual (straight)             Never
## 974   Heterosexual (straight)              <NA>
## 975   Heterosexual (straight)  Most of the time
## 976   Heterosexual (straight)              <NA>
## 977   Heterosexual (straight)         Sometimes
## 978   Heterosexual (straight)             Never
## 979   Heterosexual (straight)             Never
## 980                  Bisexual             Never
## 981   Heterosexual (straight)            Rarely
## 982   Heterosexual (straight)              <NA>
## 983   Heterosexual (straight)         Sometimes
## 984   Heterosexual (straight)         Sometimes
## 985   Heterosexual (straight)            Rarely
## 986   Heterosexual (straight)         Sometimes
## 987   Heterosexual (straight)             Never
## 988            Gay or lesbian         Sometimes
## 989   Heterosexual (straight)         Sometimes
## 990   Heterosexual (straight)            Rarely
## 991   Heterosexual (straight)             Never
## 992                  Bisexual         Sometimes
## 993                  Bisexual         Sometimes
## 994            Some other way  Most of the time
## 995                  Bisexual  Most of the time
## 996                  Bisexual            Always
## 997   Heterosexual (straight)             Never
## 998   Heterosexual (straight)            Always
## 999                  Not sure         Sometimes
## 1000  Heterosexual (straight)  Most of the time
## 1001  Heterosexual (straight)  Most of the time
## 1002  Heterosexual (straight)             Never
## 1003  Heterosexual (straight)             Never
## 1004  Heterosexual (straight)            Rarely
## 1005  Heterosexual (straight)         Sometimes
## 1006  Heterosexual (straight)            Rarely
## 1007  Heterosexual (straight)            Always
## 1008                 Not sure  Most of the time
## 1009                 Not sure  Most of the time
## 1010  Heterosexual (straight)         Sometimes
## 1011           Some other way            Always
## 1012  Heterosexual (straight)             Never
## 1013  Heterosexual (straight)         Sometimes
## 1014  Heterosexual (straight)  Most of the time
## 1015  Heterosexual (straight)         Sometimes
## 1016  Heterosexual (straight)            Rarely
## 1017                 Bisexual             Never
## 1018  Heterosexual (straight)  Most of the time
## 1019  Heterosexual (straight)         Sometimes
## 1020  Heterosexual (straight)             Never
## 1021  Heterosexual (straight)             Never
## 1022  Heterosexual (straight)            Always
## 1023                 Bisexual  Most of the time
## 1024  Heterosexual (straight)         Sometimes
## 1025                 Bisexual              <NA>
## 1026           Gay or lesbian  Most of the time
## 1027  Heterosexual (straight)         Sometimes
## 1028  Heterosexual (straight)             Never
## 1029  Heterosexual (straight)             Never
## 1030  Heterosexual (straight)             Never
## 1031                 Not sure         Sometimes
## 1032                 Not sure  Most of the time
## 1033  Heterosexual (straight)         Sometimes
## 1034                 Bisexual         Sometimes
## 1035  Heterosexual (straight)             Never
## 1036  Heterosexual (straight)         Sometimes
## 1037  Heterosexual (straight)            Rarely
## 1038                 Bisexual  Most of the time
## 1039  Heterosexual (straight)             Never
## 1040  Heterosexual (straight)  Most of the time
## 1041  Heterosexual (straight)         Sometimes
## 1042  Heterosexual (straight)         Sometimes
## 1043  Heterosexual (straight)         Sometimes
## 1044  Heterosexual (straight)         Sometimes
## 1045  Heterosexual (straight)         Sometimes
## 1046           Some other way         Sometimes
## 1047  Heterosexual (straight)            Always
## 1048                 Bisexual  Most of the time
## 1049  Heterosexual (straight)             Never
## 1050  Heterosexual (straight)  Most of the time
## 1051  Heterosexual (straight)  Most of the time
## 1052  Heterosexual (straight)            Rarely
## 1053  Heterosexual (straight)         Sometimes
## 1054  Heterosexual (straight)             Never
## 1055  Heterosexual (straight)         Sometimes
## 1056                 Not sure             Never
## 1057  Heterosexual (straight)            Rarely
## 1058  Heterosexual (straight)              <NA>
## 1059  Heterosexual (straight)              <NA>
## 1060  Heterosexual (straight)            Rarely
## 1061  Heterosexual (straight)         Sometimes
## 1062  Heterosexual (straight)             Never
## 1063  Heterosexual (straight)             Never
## 1064                 Bisexual         Sometimes
## 1065  Heterosexual (straight)  Most of the time
## 1066  Heterosexual (straight)             Never
## 1067  Heterosexual (straight)             Never
## 1068  Heterosexual (straight)            Rarely
## 1069  Heterosexual (straight)         Sometimes
## 1070  Heterosexual (straight)         Sometimes
## 1071  Heterosexual (straight)  Most of the time
## 1072  Heterosexual (straight)         Sometimes
## 1073  Heterosexual (straight)         Sometimes
## 1074  Heterosexual (straight)         Sometimes
## 1075           Some other way         Sometimes
## 1076  Heterosexual (straight)         Sometimes
## 1077  Heterosexual (straight)            Rarely
## 1078  Heterosexual (straight)  Most of the time
## 1079  Heterosexual (straight)             Never
## 1080  Heterosexual (straight)             Never
## 1081  Heterosexual (straight)             Never
## 1082  Heterosexual (straight)  Most of the time
## 1083  Heterosexual (straight)            Rarely
## 1084  Heterosexual (straight)            Rarely
## 1085                 Not sure            Rarely
## 1086  Heterosexual (straight)  Most of the time
## 1087                 Bisexual         Sometimes
## 1088  Heterosexual (straight)  Most of the time
## 1089           Some other way             Never
## 1090           Gay or lesbian            Always
## 1091  Heterosexual (straight)              <NA>
## 1092                 Not sure         Sometimes
## 1093  Heterosexual (straight)         Sometimes
## 1094           Some other way  Most of the time
## 1095  Heterosexual (straight)            Rarely
## 1096                 Bisexual  Most of the time
## 1097                 Not sure  Most of the time
## 1098  Heterosexual (straight)            Rarely
## 1099           Gay or lesbian  Most of the time
## 1100  Heterosexual (straight)            Always
## 1101  Heterosexual (straight)  Most of the time
## 1102  Heterosexual (straight)            Rarely
## 1103  Heterosexual (straight)         Sometimes
## 1104  Heterosexual (straight)         Sometimes
## 1105  Heterosexual (straight)         Sometimes
## 1106  Heterosexual (straight)         Sometimes
## 1107  Heterosexual (straight)            Rarely
## 1108  Heterosexual (straight)            Rarely
## 1109                 Bisexual  Most of the time
## 1110                 Not sure         Sometimes
## 1111  Heterosexual (straight)             Never
## 1112  Heterosexual (straight)            Always
## 1113  Heterosexual (straight)            Rarely
## 1114  Heterosexual (straight)            Rarely
## 1115                 Bisexual  Most of the time
## 1116  Heterosexual (straight)         Sometimes
## 1117  Heterosexual (straight)            Rarely
## 1118  Heterosexual (straight)            Rarely
## 1119  Heterosexual (straight)         Sometimes
## 1120                 Not sure         Sometimes
## 1121  Heterosexual (straight)            Always
## 1122           Some other way            Rarely
## 1123  Heterosexual (straight)         Sometimes
## 1124                 Bisexual            Always
## 1125  Heterosexual (straight)            Rarely
## 1126  Heterosexual (straight)         Sometimes
## 1127  Heterosexual (straight)         Sometimes
## 1128  Heterosexual (straight)         Sometimes
## 1129                 Bisexual            Always
## 1130  Heterosexual (straight)         Sometimes
## 1131  Heterosexual (straight)         Sometimes
## 1132  Heterosexual (straight)             Never
## 1133  Heterosexual (straight)            Rarely
## 1134                 Bisexual  Most of the time
## 1135                 Bisexual         Sometimes
## 1136  Heterosexual (straight)            Rarely
## 1137  Heterosexual (straight)         Sometimes
## 1138  Heterosexual (straight)  Most of the time
## 1139  Heterosexual (straight)            Rarely
## 1140  Heterosexual (straight)  Most of the time
## 1141           Gay or lesbian         Sometimes
## 1142  Heterosexual (straight)  Most of the time
## 1143  Heterosexual (straight)            Rarely
## 1144           Some other way  Most of the time
## 1145  Heterosexual (straight)         Sometimes
## 1146  Heterosexual (straight)         Sometimes
## 1147  Heterosexual (straight)            Always
## 1148  Heterosexual (straight)             Never
## 1149           Some other way  Most of the time
## 1150  Heterosexual (straight)            Rarely
## 1151                 Not sure            Rarely
## 1152                 Bisexual         Sometimes
## 1153  Heterosexual (straight)         Sometimes
## 1154  Heterosexual (straight)             Never
## 1155  Heterosexual (straight)            Rarely
## 1156  Heterosexual (straight)            Rarely
## 1157  Heterosexual (straight)            Rarely
## 1158                 Not sure  Most of the time
## 1159  Heterosexual (straight)            Rarely
## 1160  Heterosexual (straight)            Rarely
## 1161  Heterosexual (straight)            Always
## 1162  Heterosexual (straight)         Sometimes
## 1163  Heterosexual (straight)            Rarely
## 1164  Heterosexual (straight)            Rarely
## 1165  Heterosexual (straight)         Sometimes
## 1166           Gay or lesbian         Sometimes
## 1167                 Bisexual  Most of the time
## 1168  Heterosexual (straight)            Rarely
## 1169  Heterosexual (straight)         Sometimes
## 1170  Heterosexual (straight)            Rarely
## 1171  Heterosexual (straight)         Sometimes
## 1172  Heterosexual (straight)         Sometimes
## 1173                 Bisexual  Most of the time
## 1174  Heterosexual (straight)             Never
## 1175  Heterosexual (straight)            Always
## 1176                 Bisexual            Always
## 1177  Heterosexual (straight)            Rarely
## 1178                 Bisexual         Sometimes
## 1179                 Bisexual         Sometimes
## 1180                 Not sure            Rarely
## 1181  Heterosexual (straight)            Rarely
## 1182  Heterosexual (straight)            Rarely
## 1183  Heterosexual (straight)         Sometimes
## 1184                 Not sure  Most of the time
## 1185  Heterosexual (straight)            Always
## 1186  Heterosexual (straight)         Sometimes
## 1187  Heterosexual (straight)             Never
## 1188  Heterosexual (straight)            Rarely
## 1189  Heterosexual (straight)              <NA>
## 1190  Heterosexual (straight)  Most of the time
## 1191  Heterosexual (straight)         Sometimes
## 1192  Heterosexual (straight)  Most of the time
## 1193  Heterosexual (straight)             Never
## 1194           Gay or lesbian  Most of the time
## 1195  Heterosexual (straight)            Rarely
## 1196           Some other way         Sometimes
## 1197  Heterosexual (straight)            Rarely
## 1198  Heterosexual (straight)            Rarely
## 1199           Some other way         Sometimes
## 1200           Some other way         Sometimes
## 1201  Heterosexual (straight)             Never
## 1202  Heterosexual (straight)         Sometimes
## 1203  Heterosexual (straight)            Rarely
## 1204                 Bisexual            Rarely
## 1205                 Bisexual  Most of the time
## 1206                 Bisexual         Sometimes
## 1207  Heterosexual (straight)             Never
## 1208  Heterosexual (straight)         Sometimes
## 1209  Heterosexual (straight)             Never
## 1210           Gay or lesbian  Most of the time
## 1211                 Not sure  Most of the time
## 1212  Heterosexual (straight)         Sometimes
## 1213  Heterosexual (straight)            Rarely
## 1214  Heterosexual (straight)            Rarely
## 1215  Heterosexual (straight)         Sometimes
## 1216                 Bisexual  Most of the time
## 1217  Heterosexual (straight)              <NA>
## 1218  Heterosexual (straight)            Rarely
## 1219           Gay or lesbian  Most of the time
## 1220  Heterosexual (straight)            Rarely
## 1221  Heterosexual (straight)             Never
## 1222  Heterosexual (straight)            Rarely
## 1223                 Bisexual            Rarely
## 1224  Heterosexual (straight)  Most of the time
## 1225                 Bisexual            Always
## 1226  Heterosexual (straight)            Rarely
## 1227  Heterosexual (straight)            Rarely
## 1228                 Bisexual            Always
## 1229  Heterosexual (straight)  Most of the time
## 1230           Some other way         Sometimes
## 1231  Heterosexual (straight)  Most of the time
## 1232                 Bisexual            Always
## 1233  Heterosexual (straight)         Sometimes
## 1234  Heterosexual (straight)  Most of the time
## 1235  Heterosexual (straight)         Sometimes
## 1236                 Bisexual  Most of the time
## 1237                 Not sure  Most of the time
## 1238           Gay or lesbian  Most of the time
## 1239  Heterosexual (straight)            Rarely
## 1240  Heterosexual (straight)             Never
## 1241                 Bisexual         Sometimes
## 1242  Heterosexual (straight)         Sometimes
## 1243  Heterosexual (straight)  Most of the time
## 1244           Some other way  Most of the time
## 1245  Heterosexual (straight)  Most of the time
## 1246  Heterosexual (straight)             Never
## 1247           Some other way         Sometimes
## 1248  Heterosexual (straight)  Most of the time
## 1249           Some other way            Always
## 1250  Heterosexual (straight)  Most of the time
## 1251  Heterosexual (straight)         Sometimes
## 1252           Gay or lesbian  Most of the time
## 1253  Heterosexual (straight)            Rarely
## 1254                 Bisexual         Sometimes
## 1255  Heterosexual (straight)         Sometimes
## 1256  Heterosexual (straight)         Sometimes
## 1257  Heterosexual (straight)         Sometimes
## 1258  Heterosexual (straight)            Rarely
## 1259  Heterosexual (straight)             Never
## 1260  Heterosexual (straight)         Sometimes
## 1261  Heterosexual (straight)         Sometimes
## 1262  Heterosexual (straight)            Rarely
## 1263           Some other way            Rarely
## 1264  Heterosexual (straight)         Sometimes
## 1265  Heterosexual (straight)             Never
## 1266  Heterosexual (straight)             Never
## 1267  Heterosexual (straight)         Sometimes
## 1268                 Bisexual              <NA>
## 1269                 Not sure            Rarely
## 1270                 Not sure             Never
## 1271  Heterosexual (straight)         Sometimes
## 1272  Heterosexual (straight)         Sometimes
## 1273  Heterosexual (straight)             Never
## 1274  Heterosexual (straight)         Sometimes
## 1275  Heterosexual (straight)         Sometimes
## 1276  Heterosexual (straight)             Never
## 1277  Heterosexual (straight)            Always
## 1278  Heterosexual (straight)         Sometimes
## 1279  Heterosexual (straight)         Sometimes
## 1280  Heterosexual (straight)         Sometimes
## 1281                 Bisexual  Most of the time
## 1282  Heterosexual (straight)              <NA>
## 1283                 Not sure         Sometimes
## 1284  Heterosexual (straight)             Never
## 1285  Heterosexual (straight)             Never
## 1286                 Not sure            Rarely
## 1287                 Bisexual  Most of the time
## 1288           Some other way  Most of the time
## 1289           Gay or lesbian         Sometimes
## 1290  Heterosexual (straight)            Rarely
## 1291  Heterosexual (straight)         Sometimes
## 1292  Heterosexual (straight)            Rarely
## 1293  Heterosexual (straight)            Rarely
## 1294  Heterosexual (straight)            Rarely
## 1295  Heterosexual (straight)         Sometimes
## 1296                 Not sure  Most of the time
## 1297  Heterosexual (straight)            Rarely
## 1298  Heterosexual (straight)         Sometimes
## 1299  Heterosexual (straight)         Sometimes
## 1300  Heterosexual (straight)            Always
## 1301  Heterosexual (straight)  Most of the time
## 1302  Heterosexual (straight)            Rarely
## 1303  Heterosexual (straight)            Rarely
## 1304  Heterosexual (straight)         Sometimes
## 1305  Heterosexual (straight)              <NA>
## 1306  Heterosexual (straight)             Never
## 1307                 Bisexual  Most of the time
## 1308  Heterosexual (straight)         Sometimes
## 1309  Heterosexual (straight)            Rarely
## 1310                 Bisexual            Rarely
## 1311                 Bisexual             Never
## 1312  Heterosexual (straight)         Sometimes
## 1313                 Bisexual            Always
## 1314  Heterosexual (straight)  Most of the time
## 1315  Heterosexual (straight)            Always
## 1316  Heterosexual (straight)         Sometimes
## 1317  Heterosexual (straight)            Rarely
## 1318  Heterosexual (straight)  Most of the time
## 1319  Heterosexual (straight)             Never
## 1320  Heterosexual (straight)  Most of the time
## 1321  Heterosexual (straight)         Sometimes
## 1322  Heterosexual (straight)            Always
## 1323  Heterosexual (straight)             Never
## 1324  Heterosexual (straight)            Always
## 1325  Heterosexual (straight)            Rarely
## 1326  Heterosexual (straight)         Sometimes
## 1327                 Bisexual            Rarely
## 1328  Heterosexual (straight)         Sometimes
## 1329  Heterosexual (straight)  Most of the time
## 1330  Heterosexual (straight)         Sometimes
## 1331                 Bisexual  Most of the time
## 1332  Heterosexual (straight)            Rarely
## 1333                 Bisexual  Most of the time
## 1334  Heterosexual (straight)            Rarely
## 1335  Heterosexual (straight)         Sometimes
## 1336  Heterosexual (straight)  Most of the time
## 1337                 Not sure            Always
## 1338  Heterosexual (straight)              <NA>
## 1339  Heterosexual (straight)             Never
## 1340  Heterosexual (straight)              <NA>
## 1341  Heterosexual (straight)             Never
## 1342  Heterosexual (straight)         Sometimes
## 1343  Heterosexual (straight)  Most of the time
## 1344  Heterosexual (straight)         Sometimes
## 1345  Heterosexual (straight)            Rarely
## 1346  Heterosexual (straight)         Sometimes
## 1347  Heterosexual (straight)            Always
## 1348  Heterosexual (straight)             Never
## 1349  Heterosexual (straight)             Never
## 1350  Heterosexual (straight)         Sometimes
## 1351                 Bisexual         Sometimes
## 1352  Heterosexual (straight)            Rarely
## 1353  Heterosexual (straight)            Rarely
## 1354  Heterosexual (straight)            Rarely
## 1355                 Bisexual         Sometimes
## 1356           Gay or lesbian         Sometimes
## 1357  Heterosexual (straight)         Sometimes
## 1358  Heterosexual (straight)         Sometimes
## 1359  Heterosexual (straight)             Never
## 1360  Heterosexual (straight)         Sometimes
## 1361  Heterosexual (straight)         Sometimes
## 1362  Heterosexual (straight)         Sometimes
## 1363  Heterosexual (straight)  Most of the time
## 1364  Heterosexual (straight)         Sometimes
## 1365  Heterosexual (straight)             Never
## 1366  Heterosexual (straight)             Never
## 1367  Heterosexual (straight)         Sometimes
## 1368  Heterosexual (straight)            Rarely
## 1369  Heterosexual (straight)            Rarely
## 1370  Heterosexual (straight)         Sometimes
## 1371                 Bisexual         Sometimes
## 1372  Heterosexual (straight)         Sometimes
## 1373                 Bisexual         Sometimes
## 1374  Heterosexual (straight)         Sometimes
## 1375  Heterosexual (straight)            Rarely
## 1376                 Bisexual  Most of the time
## 1377  Heterosexual (straight)            Rarely
## 1378  Heterosexual (straight)         Sometimes
## 1379  Heterosexual (straight)  Most of the time
## 1380  Heterosexual (straight)         Sometimes
## 1381           Some other way              <NA>
## 1382  Heterosexual (straight)         Sometimes
## 1383  Heterosexual (straight)  Most of the time
## 1384  Heterosexual (straight)         Sometimes
## 1385  Heterosexual (straight)             Never
## 1386  Heterosexual (straight)            Rarely
## 1387  Heterosexual (straight)         Sometimes
## 1388  Heterosexual (straight)             Never
## 1389  Heterosexual (straight)            Rarely
## 1390  Heterosexual (straight)             Never
## 1391           Gay or lesbian  Most of the time
## 1392                 Bisexual         Sometimes
## 1393  Heterosexual (straight)         Sometimes
## 1394                 Bisexual            Rarely
## 1395  Heterosexual (straight)  Most of the time
## 1396                 Not sure            Rarely
## 1397  Heterosexual (straight)             Never
## 1398  Heterosexual (straight)            Rarely
## 1399  Heterosexual (straight)            Rarely
## 1400  Heterosexual (straight)         Sometimes
## 1401                 Not sure            Rarely
## 1402  Heterosexual (straight)         Sometimes
## 1403  Heterosexual (straight)  Most of the time
## 1404  Heterosexual (straight)         Sometimes
## 1405  Heterosexual (straight)             Never
## 1406  Heterosexual (straight)         Sometimes
## 1407  Heterosexual (straight)         Sometimes
## 1408                 Not sure  Most of the time
## 1409  Heterosexual (straight)         Sometimes
## 1410  Heterosexual (straight)            Rarely
## 1411  Heterosexual (straight)            Rarely
## 1412  Heterosexual (straight)  Most of the time
## 1413  Heterosexual (straight)         Sometimes
## 1414                 Bisexual            Always
## 1415  Heterosexual (straight)         Sometimes
## 1416  Heterosexual (straight)         Sometimes
## 1417  Heterosexual (straight)            Rarely
## 1418  Heterosexual (straight)         Sometimes
## 1419           Gay or lesbian         Sometimes
## 1420  Heterosexual (straight)         Sometimes
## 1421                 Not sure         Sometimes
## 1422  Heterosexual (straight)         Sometimes
## 1423  Heterosexual (straight)             Never
## 1424  Heterosexual (straight)         Sometimes
## 1425  Heterosexual (straight)              <NA>
## 1426  Heterosexual (straight)         Sometimes
## 1427  Heterosexual (straight)            Rarely
## 1428  Heterosexual (straight)  Most of the time
## 1429  Heterosexual (straight)         Sometimes
## 1430                 Bisexual            Always
## 1431  Heterosexual (straight)            Rarely
## 1432  Heterosexual (straight)  Most of the time
## 1433  Heterosexual (straight)         Sometimes
## 1434  Heterosexual (straight)             Never
## 1435                 Bisexual            Always
## 1436  Heterosexual (straight)            Rarely
## 1437  Heterosexual (straight)             Never
## 1438                 Bisexual            Always
## 1439                 Not sure         Sometimes
## 1440  Heterosexual (straight)            Rarely
## 1441  Heterosexual (straight)  Most of the time
## 1442                 Bisexual         Sometimes
## 1443  Heterosexual (straight)         Sometimes
## 1444  Heterosexual (straight)              <NA>
## 1445           Some other way            Always
## 1446  Heterosexual (straight)  Most of the time
## 1447                 Bisexual         Sometimes
## 1448  Heterosexual (straight)         Sometimes
## 1449  Heterosexual (straight)              <NA>
## 1450  Heterosexual (straight)         Sometimes
## 1451           Some other way         Sometimes
## 1452                 Bisexual  Most of the time
## 1453  Heterosexual (straight)            Always
## 1454  Heterosexual (straight)         Sometimes
## 1455  Heterosexual (straight)            Rarely
## 1456  Heterosexual (straight)            Rarely
## 1457  Heterosexual (straight)            Rarely
## 1458                 Bisexual  Most of the time
## 1459  Heterosexual (straight)         Sometimes
## 1460                 Not sure  Most of the time
## 1461  Heterosexual (straight)            Rarely
## 1462           Gay or lesbian            Always
## 1463                 Bisexual         Sometimes
## 1464                 Bisexual  Most of the time
## 1465  Heterosexual (straight)         Sometimes
## 1466  Heterosexual (straight)              <NA>
## 1467  Heterosexual (straight)         Sometimes
## 1468  Heterosexual (straight)             Never
## 1469  Heterosexual (straight)  Most of the time
## 1470  Heterosexual (straight)         Sometimes
## 1471           Some other way  Most of the time
## 1472  Heterosexual (straight)              <NA>
## 1473  Heterosexual (straight)            Always
## 1474  Heterosexual (straight)         Sometimes
## 1475  Heterosexual (straight)  Most of the time
## 1476  Heterosexual (straight)         Sometimes
## 1477  Heterosexual (straight)         Sometimes
## 1478  Heterosexual (straight)         Sometimes
## 1479  Heterosexual (straight)             Never
## 1480  Heterosexual (straight)            Rarely
## 1481  Heterosexual (straight)         Sometimes
## 1482  Heterosexual (straight)         Sometimes
## 1483                 Not sure  Most of the time
## 1484  Heterosexual (straight)              <NA>
## 1485  Heterosexual (straight)            Rarely
## 1486  Heterosexual (straight)  Most of the time
## 1487  Heterosexual (straight)         Sometimes
## 1488  Heterosexual (straight)             Never
## 1489                 Not sure         Sometimes
## 1490  Heterosexual (straight)         Sometimes
## 1491                 Not sure  Most of the time
## 1492  Heterosexual (straight)         Sometimes
## 1493  Heterosexual (straight)         Sometimes
## 1494  Heterosexual (straight)            Rarely
## 1495                 Bisexual  Most of the time
## 1496  Heterosexual (straight)             Never
## 1497  Heterosexual (straight)             Never
## 1498           Some other way         Sometimes
## 1499  Heterosexual (straight)            Rarely
## 1500  Heterosexual (straight)         Sometimes
## 1501                 Bisexual  Most of the time
## 1502  Heterosexual (straight)         Sometimes
## 1503  Heterosexual (straight)         Sometimes
## 1504  Heterosexual (straight)         Sometimes
## 1505  Heterosexual (straight)            Rarely
## 1506  Heterosexual (straight)         Sometimes
## 1507  Heterosexual (straight)         Sometimes
## 1508  Heterosexual (straight)            Rarely
## 1509  Heterosexual (straight)             Never
## 1510                 Bisexual         Sometimes
## 1511                 Bisexual         Sometimes
## 1512  Heterosexual (straight)  Most of the time
## 1513  Heterosexual (straight)             Never
## 1514  Heterosexual (straight)            Rarely
## 1515                 Bisexual            Rarely
## 1516                 Not sure            Rarely
## 1517  Heterosexual (straight)            Rarely
## 1518  Heterosexual (straight)  Most of the time
## 1519  Heterosexual (straight)            Rarely
## 1520                 Bisexual         Sometimes
## 1521                 Bisexual         Sometimes
## 1522  Heterosexual (straight)  Most of the time
## 1523  Heterosexual (straight)  Most of the time
## 1524                 Bisexual            Always
## 1525  Heterosexual (straight)             Never
## 1526           Some other way         Sometimes
## 1527           Gay or lesbian  Most of the time
## 1528                 Bisexual         Sometimes
## 1529  Heterosexual (straight)         Sometimes
## 1530                 Bisexual  Most of the time
## 1531  Heterosexual (straight)  Most of the time
## 1532  Heterosexual (straight)  Most of the time
## 1533                 Bisexual  Most of the time
## 1534  Heterosexual (straight)         Sometimes
## 1535  Heterosexual (straight)             Never
## 1536                 Bisexual  Most of the time
## 1537  Heterosexual (straight)            Rarely
## 1538                 Bisexual            Always
## 1539                 Bisexual  Most of the time
## 1540  Heterosexual (straight)         Sometimes
## 1541  Heterosexual (straight)             Never
## 1542  Heterosexual (straight)         Sometimes
## 1543  Heterosexual (straight)            Rarely
## 1544  Heterosexual (straight)             Never
## 1545  Heterosexual (straight)  Most of the time
## 1546  Heterosexual (straight)         Sometimes
## 1547                 Bisexual  Most of the time
## 1548  Heterosexual (straight)            Rarely
## 1549                 Bisexual         Sometimes
## 1550  Heterosexual (straight)         Sometimes
## 1551  Heterosexual (straight)            Always
## 1552  Heterosexual (straight)         Sometimes
## 1553                 Bisexual         Sometimes
## 1554                 Not sure            Rarely
## 1555  Heterosexual (straight)              <NA>
## 1556  Heterosexual (straight)         Sometimes
## 1557                 Bisexual            Rarely
## 1558                 Bisexual         Sometimes
## 1559  Heterosexual (straight)             Never
## 1560                 Bisexual  Most of the time
## 1561           Gay or lesbian            Always
## 1562           Some other way         Sometimes
## 1563  Heterosexual (straight)            Rarely
## 1564  Heterosexual (straight)            Always
## 1565  Heterosexual (straight)         Sometimes
## 1566           Some other way         Sometimes
## 1567  Heterosexual (straight)  Most of the time
## 1568                 Bisexual            Always
## 1569  Heterosexual (straight)            Rarely
## 1570  Heterosexual (straight)            Rarely
## 1571  Heterosexual (straight)             Never
## 1572  Heterosexual (straight)         Sometimes
## 1573  Heterosexual (straight)         Sometimes
## 1574  Heterosexual (straight)            Always
## 1575  Heterosexual (straight)            Rarely
## 1576                 Bisexual         Sometimes
## 1577                 Not sure            Rarely
## 1578  Heterosexual (straight)            Rarely
## 1579  Heterosexual (straight)  Most of the time
## 1580  Heterosexual (straight)             Never
## 1581                 Bisexual         Sometimes
## 1582  Heterosexual (straight)             Never
## 1583  Heterosexual (straight)         Sometimes
## 1584                 Bisexual  Most of the time
## 1585                 Bisexual         Sometimes
## 1586  Heterosexual (straight)            Rarely
## 1587  Heterosexual (straight)             Never
## 1588  Heterosexual (straight)         Sometimes
## 1589  Heterosexual (straight)             Never
## 1590           Some other way  Most of the time
## 1591  Heterosexual (straight)            Rarely
## 1592  Heterosexual (straight)            Rarely
## 1593  Heterosexual (straight)         Sometimes
## 1594  Heterosexual (straight)            Rarely
## 1595                 Bisexual         Sometimes
## 1596  Heterosexual (straight)  Most of the time
## 1597  Heterosexual (straight)  Most of the time
## 1598  Heterosexual (straight)            Rarely
## 1599                 Not sure            Rarely
## 1600  Heterosexual (straight)  Most of the time
## 1601                 Not sure         Sometimes
## 1602  Heterosexual (straight)  Most of the time
## 1603  Heterosexual (straight)             Never
## 1604                 Bisexual             Never
## 1605                 Bisexual         Sometimes
## 1606  Heterosexual (straight)         Sometimes
## 1607  Heterosexual (straight)            Rarely
## 1608  Heterosexual (straight)  Most of the time
## 1609  Heterosexual (straight)         Sometimes
## 1610  Heterosexual (straight)            Rarely
## 1611  Heterosexual (straight)            Rarely
## 1612  Heterosexual (straight)         Sometimes
## 1613  Heterosexual (straight)            Rarely
## 1614  Heterosexual (straight)            Always
## 1615  Heterosexual (straight)             Never
## 1616  Heterosexual (straight)         Sometimes
## 1617  Heterosexual (straight)         Sometimes
## 1618  Heterosexual (straight)  Most of the time
## 1619  Heterosexual (straight)             Never
## 1620                 Bisexual  Most of the time
## 1621  Heterosexual (straight)            Rarely
## 1622  Heterosexual (straight)  Most of the time
## 1623  Heterosexual (straight)             Never
## 1624  Heterosexual (straight)            Rarely
## 1625  Heterosexual (straight)            Rarely
## 1626  Heterosexual (straight)  Most of the time
## 1627  Heterosexual (straight)  Most of the time
## 1628  Heterosexual (straight)  Most of the time
## 1629           Some other way         Sometimes
## 1630  Heterosexual (straight)            Rarely
## 1631  Heterosexual (straight)  Most of the time
## 1632           Some other way  Most of the time
## 1633  Heterosexual (straight)         Sometimes
## 1634                 Bisexual  Most of the time
## 1635                 Bisexual            Rarely
## 1636  Heterosexual (straight)            Rarely
## 1637  Heterosexual (straight)            Rarely
## 1638           Gay or lesbian            Always
## 1639  Heterosexual (straight)            Rarely
## 1640  Heterosexual (straight)  Most of the time
## 1641  Heterosexual (straight)         Sometimes
## 1642  Heterosexual (straight)            Rarely
## 1643  Heterosexual (straight)         Sometimes
## 1644  Heterosexual (straight)  Most of the time
## 1645                 Bisexual  Most of the time
## 1646  Heterosexual (straight)  Most of the time
## 1647           Gay or lesbian  Most of the time
## 1648  Heterosexual (straight)             Never
## 1649  Heterosexual (straight)              <NA>
## 1650  Heterosexual (straight)             Never
## 1651  Heterosexual (straight)  Most of the time
## 1652           Some other way         Sometimes
## 1653  Heterosexual (straight)  Most of the time
## 1654  Heterosexual (straight)            Rarely
## 1655  Heterosexual (straight)            Always
## 1656  Heterosexual (straight)  Most of the time
## 1657           Gay or lesbian              <NA>
## 1658  Heterosexual (straight)         Sometimes
## 1659                 Bisexual  Most of the time
## 1660                 Bisexual  Most of the time
## 1661           Gay or lesbian            Always
## 1662  Heterosexual (straight)              <NA>
## 1663           Some other way  Most of the time
## 1664           Some other way         Sometimes
## 1665  Heterosexual (straight)  Most of the time
## 1666  Heterosexual (straight)            Always
## 1667  Heterosexual (straight)  Most of the time
## 1668  Heterosexual (straight)         Sometimes
## 1669  Heterosexual (straight)         Sometimes
## 1670                 Not sure  Most of the time
## 1671                 Bisexual  Most of the time
## 1672  Heterosexual (straight)            Rarely
## 1673  Heterosexual (straight)             Never
## 1674  Heterosexual (straight)  Most of the time
## 1675           Some other way            Always
## 1676           Some other way  Most of the time
## 1677           Some other way            Always
## 1678                 Bisexual  Most of the time
## 1679           Some other way  Most of the time
## 1680                 Not sure  Most of the time
## 1681  Heterosexual (straight)  Most of the time
## 1682  Heterosexual (straight)            Rarely
## 1683  Heterosexual (straight)              <NA>
## 1684           Some other way            Always
## 1685           Some other way  Most of the time
## 1686           Gay or lesbian            Always
## 1687  Heterosexual (straight)             Never
## 1688                 Bisexual  Most of the time
## 1689  Heterosexual (straight)             Never
## 1690  Heterosexual (straight)  Most of the time
## 1691                 Not sure  Most of the time
## 1692  Heterosexual (straight)         Sometimes
## 1693  Heterosexual (straight)         Sometimes
## 1694                 Not sure  Most of the time
## 1695  Heterosexual (straight)  Most of the time
## 1696                 Bisexual         Sometimes
## 1697  Heterosexual (straight)            Rarely
## 1698  Heterosexual (straight)            Rarely
## 1699  Heterosexual (straight)            Rarely
## 1700  Heterosexual (straight)         Sometimes
## 1701  Heterosexual (straight)         Sometimes
## 1702  Heterosexual (straight)  Most of the time
## 1703  Heterosexual (straight)            Rarely
## 1704                 Bisexual            Always
## 1705                 Not sure  Most of the time
## 1706           Some other way            Always
## 1707                 Bisexual  Most of the time
## 1708  Heterosexual (straight)  Most of the time
## 1709                 Not sure            Always
## 1710  Heterosexual (straight)             Never
## 1711  Heterosexual (straight)            Rarely
## 1712           Some other way  Most of the time
## 1713  Heterosexual (straight)         Sometimes
## 1714                 Bisexual         Sometimes
## 1715  Heterosexual (straight)            Rarely
## 1716                 Bisexual         Sometimes
## 1717  Heterosexual (straight)            Rarely
## 1718  Heterosexual (straight)         Sometimes
## 1719  Heterosexual (straight)  Most of the time
## 1720  Heterosexual (straight)             Never
## 1721  Heterosexual (straight)  Most of the time
## 1722                 Bisexual         Sometimes
## 1723  Heterosexual (straight)            Rarely
## 1724                 Bisexual  Most of the time
## 1725                 Not sure            Rarely
## 1726  Heterosexual (straight)         Sometimes
## 1727  Heterosexual (straight)         Sometimes
## 1728  Heterosexual (straight)         Sometimes
## 1729  Heterosexual (straight)             Never
## 1730  Heterosexual (straight)  Most of the time
## 1731                 Bisexual            Always
## 1732                 Bisexual            Rarely
## 1733  Heterosexual (straight)             Never
## 1734                 Not sure              <NA>
## 1735                 Bisexual         Sometimes
## 1736           Gay or lesbian  Most of the time
## 1737  Heterosexual (straight)            Rarely
## 1738  Heterosexual (straight)  Most of the time
## 1739                 Bisexual            Rarely
## 1740  Heterosexual (straight)  Most of the time
## 1741  Heterosexual (straight)            Rarely
## 1742  Heterosexual (straight)            Rarely
## 1743           Some other way         Sometimes
## 1744  Heterosexual (straight)  Most of the time
## 1745  Heterosexual (straight)         Sometimes
## 1746                 Not sure            Rarely
## 1747  Heterosexual (straight)         Sometimes
## 1748                 Bisexual         Sometimes
## 1749  Heterosexual (straight)  Most of the time
## 1750  Heterosexual (straight)            Rarely
## 1751                 Not sure         Sometimes
## 1752  Heterosexual (straight)         Sometimes
## 1753  Heterosexual (straight)         Sometimes
## 1754                 Bisexual             Never
## 1755           Gay or lesbian            Rarely
## 1756                 Bisexual            Rarely
## 1757                 Not sure            Rarely
## 1758                 Bisexual         Sometimes
## 1759                 Not sure         Sometimes
## 1760  Heterosexual (straight)             Never
## 1761                 Not sure         Sometimes
## 1762                 Not sure         Sometimes
## 1763  Heterosexual (straight)             Never
## 1764                 Bisexual  Most of the time
## 1765  Heterosexual (straight)             Never
## 1766  Heterosexual (straight)         Sometimes
## 1767  Heterosexual (straight)             Never
## 1768                 Bisexual         Sometimes
## 1769                 Bisexual  Most of the time
## 1770  Heterosexual (straight)            Rarely
## 1771                 Bisexual         Sometimes
## 1772  Heterosexual (straight)         Sometimes
## 1773  Heterosexual (straight)            Rarely
## 1774                 Not sure  Most of the time
## 1775                 Bisexual            Always
## 1776  Heterosexual (straight)         Sometimes
## 1777           Some other way         Sometimes
## 1778  Heterosexual (straight)            Rarely
## 1779  Heterosexual (straight)         Sometimes
## 1780  Heterosexual (straight)  Most of the time
## 1781  Heterosexual (straight)  Most of the time
## 1782  Heterosexual (straight)            Rarely
## 1783  Heterosexual (straight)            Always
## 1784           Gay or lesbian         Sometimes
## 1785  Heterosexual (straight)            Rarely
## 1786  Heterosexual (straight)         Sometimes
## 1787  Heterosexual (straight)             Never
## 1788  Heterosexual (straight)            Rarely
## 1789  Heterosexual (straight)         Sometimes
## 1790                 Bisexual         Sometimes
## 1791  Heterosexual (straight)             Never
## 1792  Heterosexual (straight)         Sometimes
## 1793           Some other way  Most of the time
## 1794  Heterosexual (straight)              <NA>
## 1795  Heterosexual (straight)            Rarely
## 1796  Heterosexual (straight)            Rarely
## 1797  Heterosexual (straight)             Never
## 1798           Some other way  Most of the time
## 1799  Heterosexual (straight)  Most of the time
## 1800  Heterosexual (straight)            Rarely
## 1801                 Bisexual  Most of the time
## 1802           Gay or lesbian            Always
## 1803           Some other way  Most of the time
## 1804  Heterosexual (straight)            Rarely
## 1805  Heterosexual (straight)            Rarely
## 1806  Heterosexual (straight)            Rarely
## 1807           Gay or lesbian  Most of the time
## 1808  Heterosexual (straight)              <NA>
## 1809  Heterosexual (straight)  Most of the time
## 1810  Heterosexual (straight)         Sometimes
## 1811                 Not sure            Always
## 1812           Gay or lesbian         Sometimes
## 1813                 Bisexual         Sometimes
## 1814                 Bisexual         Sometimes
## 1815  Heterosexual (straight)            Rarely
## 1816  Heterosexual (straight)         Sometimes
## 1817  Heterosexual (straight)             Never
## 1818  Heterosexual (straight)  Most of the time
## 1819  Heterosexual (straight)             Never
## 1820  Heterosexual (straight)              <NA>
## 1821           Gay or lesbian         Sometimes
## 1822  Heterosexual (straight)         Sometimes
## 1823  Heterosexual (straight)         Sometimes
## 1824  Heterosexual (straight)         Sometimes
## 1825  Heterosexual (straight)  Most of the time
## 1826  Heterosexual (straight)            Always
## 1827                 Bisexual         Sometimes
## 1828           Some other way  Most of the time
## 1829  Heterosexual (straight)            Rarely
## 1830  Heterosexual (straight)            Rarely
## 1831  Heterosexual (straight)            Rarely
## 1832  Heterosexual (straight)              <NA>
## 1833  Heterosexual (straight)         Sometimes
## 1834  Heterosexual (straight)             Never
## 1835  Heterosexual (straight)            Rarely
## 1836  Heterosexual (straight)         Sometimes
## 1837                 Bisexual            Always
## 1838  Heterosexual (straight)         Sometimes
## 1839  Heterosexual (straight)  Most of the time
## 1840  Heterosexual (straight)            Always
## 1841  Heterosexual (straight)            Always
## 1842  Heterosexual (straight)             Never
## 1843           Some other way            Always
## 1844  Heterosexual (straight)         Sometimes
## 1845  Heterosexual (straight)              <NA>
## 1846                 Not sure  Most of the time
## 1847  Heterosexual (straight)            Rarely
## 1848  Heterosexual (straight)         Sometimes
## 1849  Heterosexual (straight)         Sometimes
## 1850                 Bisexual            Always
## 1851  Heterosexual (straight)            Rarely
## 1852  Heterosexual (straight)              <NA>
## 1853  Heterosexual (straight)            Rarely
## 1854                 Bisexual             Never
## 1855  Heterosexual (straight)            Always
## 1856  Heterosexual (straight)            Rarely
## 1857  Heterosexual (straight)  Most of the time
## 1858  Heterosexual (straight)             Never
## 1859                 Bisexual              <NA>
## 1860  Heterosexual (straight)              <NA>
## 1861                 Not sure             Never
## 1862  Heterosexual (straight)  Most of the time
## 1863  Heterosexual (straight)         Sometimes
## 1864  Heterosexual (straight)            Always
## 1865  Heterosexual (straight)             Never
## 1866  Heterosexual (straight)         Sometimes
## 1867  Heterosexual (straight)            Rarely
## 1868  Heterosexual (straight)             Never
## 1869                 Bisexual  Most of the time
## 1870  Heterosexual (straight)         Sometimes
## 1871  Heterosexual (straight)            Always
## 1872  Heterosexual (straight)         Sometimes
## 1873  Heterosexual (straight)            Always
## 1874  Heterosexual (straight)  Most of the time
## 1875                 Not sure  Most of the time
## 1876  Heterosexual (straight)             Never
## 1877                 Bisexual            Always
## 1878  Heterosexual (straight)             Never
## 1879                 Not sure         Sometimes
## 1880  Heterosexual (straight)             Never
## 1881  Heterosexual (straight)         Sometimes
## 1882  Heterosexual (straight)         Sometimes
## 1883  Heterosexual (straight)             Never
## 1884  Heterosexual (straight)            Rarely
## 1885           Some other way            Always
## 1886  Heterosexual (straight)            Always
## 1887  Heterosexual (straight)             Never
## 1888  Heterosexual (straight)         Sometimes
## 1889  Heterosexual (straight)  Most of the time
## 1890  Heterosexual (straight)            Always
## 1891  Heterosexual (straight)            Rarely
## 1892                 Bisexual         Sometimes
## 1893  Heterosexual (straight)             Never
## 1894  Heterosexual (straight)             Never
## 1895  Heterosexual (straight)         Sometimes
## 1896                 Bisexual              <NA>
## 1897  Heterosexual (straight)  Most of the time
## 1898  Heterosexual (straight)         Sometimes
## 1899  Heterosexual (straight)         Sometimes
## 1900  Heterosexual (straight)         Sometimes
## 1901  Heterosexual (straight)            Rarely
## 1902  Heterosexual (straight)  Most of the time
## 1903  Heterosexual (straight)            Rarely
## 1904  Heterosexual (straight)  Most of the time
## 1905                 Not sure            Rarely
## 1906           Gay or lesbian         Sometimes
## 1907                 Not sure            Always
## 1908  Heterosexual (straight)         Sometimes
## 1909                 Not sure            Rarely
## 1910  Heterosexual (straight)            Rarely
## 1911  Heterosexual (straight)             Never
## 1912  Heterosexual (straight)             Never
## 1913  Heterosexual (straight)         Sometimes
## 1914           Gay or lesbian  Most of the time
## 1915  Heterosexual (straight)            Rarely
## 1916  Heterosexual (straight)         Sometimes
## 1917  Heterosexual (straight)            Rarely
## 1918  Heterosexual (straight)             Never
## 1919                 Not sure         Sometimes
## 1920  Heterosexual (straight)         Sometimes
## 1921           Some other way         Sometimes
## 1922  Heterosexual (straight)             Never
## 1923           Some other way            Always
## 1924  Heterosexual (straight)            Rarely
## 1925                 Bisexual         Sometimes
## 1926  Heterosexual (straight)  Most of the time
## 1927                 Bisexual  Most of the time
## 1928  Heterosexual (straight)         Sometimes
## 1929  Heterosexual (straight)         Sometimes
## 1930  Heterosexual (straight)         Sometimes
## 1931  Heterosexual (straight)             Never
## 1932           Gay or lesbian         Sometimes
## 1933  Heterosexual (straight)            Rarely
## 1934  Heterosexual (straight)         Sometimes
## 1935  Heterosexual (straight)             Never
## 1936  Heterosexual (straight)            Rarely
## 1937  Heterosexual (straight)         Sometimes
## 1938  Heterosexual (straight)         Sometimes
## 1939  Heterosexual (straight)  Most of the time
## 1940  Heterosexual (straight)            Rarely
## 1941  Heterosexual (straight)            Rarely
## 1942  Heterosexual (straight)            Rarely
## 1943  Heterosexual (straight)  Most of the time
## 1944  Heterosexual (straight)             Never
## 1945  Heterosexual (straight)            Rarely
## 1946  Heterosexual (straight)         Sometimes
## 1947  Heterosexual (straight)         Sometimes
## 1948                 Bisexual         Sometimes
## 1949  Heterosexual (straight)         Sometimes
## 1950  Heterosexual (straight)         Sometimes
## 1951  Heterosexual (straight)            Rarely
## 1952  Heterosexual (straight)            Always
## 1953  Heterosexual (straight)         Sometimes
## 1954  Heterosexual (straight)         Sometimes
## 1955  Heterosexual (straight)  Most of the time
## 1956                 Bisexual            Always
## 1957  Heterosexual (straight)             Never
## 1958           Some other way            Always
## 1959  Heterosexual (straight)             Never
## 1960  Heterosexual (straight)         Sometimes
## 1961  Heterosexual (straight)         Sometimes
## 1962  Heterosexual (straight)  Most of the time
## 1963  Heterosexual (straight)         Sometimes
## 1964                 Bisexual            Always
## 1965  Heterosexual (straight)             Never
## 1966  Heterosexual (straight)         Sometimes
## 1967  Heterosexual (straight)            Rarely
## 1968                 Bisexual            Rarely
## 1969  Heterosexual (straight)  Most of the time
## 1970                 Not sure  Most of the time
## 1971  Heterosexual (straight)  Most of the time
## 1972  Heterosexual (straight)             Never
## 1973  Heterosexual (straight)  Most of the time
## 1974  Heterosexual (straight)             Never
## 1975  Heterosexual (straight)            Rarely
## 1976  Heterosexual (straight)         Sometimes
## 1977  Heterosexual (straight)         Sometimes
## 1978  Heterosexual (straight)  Most of the time
## 1979  Heterosexual (straight)            Rarely
## 1980  Heterosexual (straight)             Never
## 1981  Heterosexual (straight)            Rarely
## 1982  Heterosexual (straight)            Rarely
## 1983  Heterosexual (straight)            Rarely
## 1984  Heterosexual (straight)  Most of the time
## 1985  Heterosexual (straight)            Rarely
## 1986                 Bisexual         Sometimes
## 1987  Heterosexual (straight)         Sometimes
## 1988           Gay or lesbian  Most of the time
## 1989                 Not sure         Sometimes
## 1990  Heterosexual (straight)         Sometimes
## 1991                 Bisexual  Most of the time
## 1992  Heterosexual (straight)             Never
## 1993  Heterosexual (straight)             Never
## 1994                 Bisexual  Most of the time
## 1995                 Bisexual  Most of the time
## 1996  Heterosexual (straight)  Most of the time
## 1997                 Bisexual  Most of the time
## 1998  Heterosexual (straight)            Rarely
## 1999  Heterosexual (straight)         Sometimes
## 2000                 Bisexual         Sometimes
## 2001  Heterosexual (straight)         Sometimes
## 2002  Heterosexual (straight)         Sometimes
## 2003  Heterosexual (straight)  Most of the time
## 2004                 Bisexual            Rarely
## 2005  Heterosexual (straight)  Most of the time
## 2006  Heterosexual (straight)             Never
## 2007  Heterosexual (straight)         Sometimes
## 2008                 Bisexual  Most of the time
## 2009  Heterosexual (straight)         Sometimes
## 2010           Some other way  Most of the time
## 2011  Heterosexual (straight)             Never
## 2012                 Not sure            Always
## 2013           Gay or lesbian  Most of the time
## 2014  Heterosexual (straight)  Most of the time
## 2015  Heterosexual (straight)            Rarely
## 2016  Heterosexual (straight)             Never
## 2017           Gay or lesbian  Most of the time
## 2018                 Not sure         Sometimes
## 2019                 Bisexual         Sometimes
## 2020                 Bisexual  Most of the time
## 2021  Heterosexual (straight)         Sometimes
## 2022  Heterosexual (straight)  Most of the time
## 2023  Heterosexual (straight)         Sometimes
## 2024  Heterosexual (straight)            Always
## 2025  Heterosexual (straight)  Most of the time
## 2026  Heterosexual (straight)         Sometimes
## 2027  Heterosexual (straight)         Sometimes
## 2028  Heterosexual (straight)            Rarely
## 2029                 Bisexual  Most of the time
## 2030           Some other way         Sometimes
## 2031  Heterosexual (straight)  Most of the time
## 2032  Heterosexual (straight)         Sometimes
## 2033  Heterosexual (straight)            Rarely
## 2034                 Bisexual         Sometimes
## 2035  Heterosexual (straight)            Rarely
## 2036  Heterosexual (straight)         Sometimes
## 2037  Heterosexual (straight)         Sometimes
## 2038  Heterosexual (straight)         Sometimes
## 2039                 Not sure  Most of the time
## 2040                 Bisexual  Most of the time
## 2041  Heterosexual (straight)         Sometimes
## 2042  Heterosexual (straight)  Most of the time
## 2043  Heterosexual (straight)  Most of the time
## 2044  Heterosexual (straight)  Most of the time
## 2045  Heterosexual (straight)            Rarely
## 2046  Heterosexual (straight)            Always
## 2047                 Not sure             Never
## 2048  Heterosexual (straight)             Never
## 2049  Heterosexual (straight)            Rarely
## 2050  Heterosexual (straight)            Rarely
## 2051                 Bisexual  Most of the time
## 2052                 Bisexual            Always
## 2053                 Bisexual  Most of the time
## 2054  Heterosexual (straight)            Always
## 2055                 Bisexual         Sometimes
## 2056                 Bisexual         Sometimes
## 2057  Heterosexual (straight)  Most of the time
## 2058  Heterosexual (straight)             Never
## 2059  Heterosexual (straight)         Sometimes
## 2060  Heterosexual (straight)         Sometimes
## 2061  Heterosexual (straight)         Sometimes
## 2062  Heterosexual (straight)  Most of the time
## 2063           Gay or lesbian  Most of the time
## 2064  Heterosexual (straight)         Sometimes
## 2065  Heterosexual (straight)            Always
## 2066  Heterosexual (straight)         Sometimes
## 2067                 Bisexual            Rarely
## 2068  Heterosexual (straight)             Never
## 2069                 Bisexual  Most of the time
## 2070           Gay or lesbian         Sometimes
## 2071                 Bisexual         Sometimes
## 2072                 Not sure            Rarely
## 2073  Heterosexual (straight)         Sometimes
## 2074  Heterosexual (straight)            Rarely
## 2075           Gay or lesbian         Sometimes
## 2076                 Bisexual         Sometimes
## 2077  Heterosexual (straight)            Rarely
## 2078  Heterosexual (straight)  Most of the time
## 2079  Heterosexual (straight)            Rarely
## 2080  Heterosexual (straight)  Most of the time
## 2081  Heterosexual (straight)             Never
## 2082           Gay or lesbian              <NA>
## 2083           Some other way            Always
## 2084  Heterosexual (straight)         Sometimes
## 2085  Heterosexual (straight)  Most of the time
## 2086                 Bisexual  Most of the time
## 2087  Heterosexual (straight)             Never
## 2088                 Bisexual         Sometimes
## 2089                 Not sure  Most of the time
## 2090  Heterosexual (straight)         Sometimes
## 2091  Heterosexual (straight)             Never
## 2092                 Bisexual  Most of the time
## 2093                 Not sure  Most of the time
## 2094                 Bisexual         Sometimes
## 2095                 Bisexual         Sometimes
## 2096  Heterosexual (straight)            Rarely
## 2097  Heterosexual (straight)  Most of the time
## 2098                 Bisexual  Most of the time
## 2099  Heterosexual (straight)             Never
## 2100  Heterosexual (straight)            Rarely
## 2101                 Bisexual  Most of the time
## 2102                 Bisexual  Most of the time
## 2103  Heterosexual (straight)         Sometimes
## 2104  Heterosexual (straight)             Never
## 2105  Heterosexual (straight)         Sometimes
## 2106                 Not sure  Most of the time
## 2107  Heterosexual (straight)         Sometimes
## 2108  Heterosexual (straight)  Most of the time
## 2109                 Bisexual         Sometimes
## 2110  Heterosexual (straight)         Sometimes
## 2111  Heterosexual (straight)         Sometimes
## 2112           Some other way            Always
## 2113  Heterosexual (straight)            Rarely
## 2114  Heterosexual (straight)         Sometimes
## 2115  Heterosexual (straight)  Most of the time
## 2116                 Not sure            Rarely
## 2117           Gay or lesbian         Sometimes
## 2118  Heterosexual (straight)              <NA>
## 2119  Heterosexual (straight)         Sometimes
## 2120  Heterosexual (straight)  Most of the time
## 2121                 Bisexual         Sometimes
## 2122  Heterosexual (straight)            Rarely
## 2123  Heterosexual (straight)             Never
## 2124  Heterosexual (straight)            Rarely
## 2125  Heterosexual (straight)            Always
## 2126           Some other way            Rarely
## 2127  Heterosexual (straight)  Most of the time
## 2128  Heterosexual (straight)         Sometimes
## 2129  Heterosexual (straight)         Sometimes
## 2130  Heterosexual (straight)  Most of the time
## 2131  Heterosexual (straight)            Always
## 2132  Heterosexual (straight)         Sometimes
## 2133           Some other way  Most of the time
## 2134  Heterosexual (straight)  Most of the time
## 2135                 Not sure  Most of the time
## 2136  Heterosexual (straight)         Sometimes
## 2137  Heterosexual (straight)            Rarely
## 2138  Heterosexual (straight)  Most of the time
## 2139  Heterosexual (straight)         Sometimes
## 2140  Heterosexual (straight)            Rarely
## 2141  Heterosexual (straight)            Rarely
## 2142                 Bisexual         Sometimes
## 2143           Some other way  Most of the time
## 2144  Heterosexual (straight)  Most of the time
## 2145  Heterosexual (straight)  Most of the time
## 2146  Heterosexual (straight)         Sometimes
## 2147  Heterosexual (straight)            Always
## 2148           Gay or lesbian  Most of the time
## 2149  Heterosexual (straight)            Rarely
## 2150  Heterosexual (straight)         Sometimes
## 2151  Heterosexual (straight)         Sometimes
## 2152                 Bisexual            Rarely
## 2153                 Bisexual         Sometimes
## 2154           Some other way             Never
## 2155  Heterosexual (straight)            Rarely
## 2156  Heterosexual (straight)         Sometimes
## 2157  Heterosexual (straight)  Most of the time
## 2158           Gay or lesbian            Rarely
## 2159  Heterosexual (straight)            Rarely
## 2160  Heterosexual (straight)            Rarely
## 2161  Heterosexual (straight)             Never
## 2162  Heterosexual (straight)             Never
## 2163  Heterosexual (straight)         Sometimes
## 2164           Some other way  Most of the time
## 2165  Heterosexual (straight)         Sometimes
## 2166  Heterosexual (straight)            Rarely
## 2167  Heterosexual (straight)             Never
## 2168                 Bisexual            Always
## 2169  Heterosexual (straight)            Rarely
## 2170  Heterosexual (straight)         Sometimes
## 2171           Gay or lesbian            Always
## 2172                 Bisexual  Most of the time
## 2173  Heterosexual (straight)  Most of the time
## 2174  Heterosexual (straight)         Sometimes
## 2175  Heterosexual (straight)            Always
## 2176  Heterosexual (straight)              <NA>
## 2177  Heterosexual (straight)         Sometimes
## 2178  Heterosexual (straight)            Rarely
## 2179  Heterosexual (straight)         Sometimes
## 2180  Heterosexual (straight)         Sometimes
## 2181           Gay or lesbian         Sometimes
## 2182  Heterosexual (straight)         Sometimes
## 2183  Heterosexual (straight)         Sometimes
## 2184  Heterosexual (straight)  Most of the time
## 2185  Heterosexual (straight)             Never
## 2186  Heterosexual (straight)         Sometimes
## 2187  Heterosexual (straight)         Sometimes
## 2188  Heterosexual (straight)  Most of the time
## 2189                 Bisexual         Sometimes
## 2190  Heterosexual (straight)            Rarely
## 2191           Gay or lesbian            Always
## 2192  Heterosexual (straight)            Rarely
## 2193  Heterosexual (straight)  Most of the time
## 2194  Heterosexual (straight)         Sometimes
## 2195           Gay or lesbian            Rarely
## 2196  Heterosexual (straight)         Sometimes
## 2197  Heterosexual (straight)  Most of the time
## 2198           Gay or lesbian  Most of the time
## 2199  Heterosexual (straight)  Most of the time
## 2200  Heterosexual (straight)         Sometimes
## 2201  Heterosexual (straight)            Rarely
## 2202           Some other way            Rarely
## 2203  Heterosexual (straight)         Sometimes
## 2204  Heterosexual (straight)            Rarely
## 2205  Heterosexual (straight)  Most of the time
## 2206  Heterosexual (straight)         Sometimes
## 2207  Heterosexual (straight)            Rarely
## 2208  Heterosexual (straight)            Rarely
## 2209  Heterosexual (straight)         Sometimes
## 2210           Gay or lesbian         Sometimes
## 2211                 Not sure  Most of the time
## 2212  Heterosexual (straight)  Most of the time
## 2213  Heterosexual (straight)         Sometimes
## 2214           Gay or lesbian  Most of the time
## 2215  Heterosexual (straight)         Sometimes
## 2216  Heterosexual (straight)         Sometimes
## 2217                 Bisexual  Most of the time
## 2218  Heterosexual (straight)              <NA>
## 2219  Heterosexual (straight)             Never
## 2220  Heterosexual (straight)  Most of the time
## 2221  Heterosexual (straight)            Rarely
## 2222  Heterosexual (straight)            Rarely
## 2223  Heterosexual (straight)            Rarely
## 2224  Heterosexual (straight)            Rarely
## 2225  Heterosexual (straight)         Sometimes
## 2226  Heterosexual (straight)         Sometimes
## 2227  Heterosexual (straight)            Rarely
## 2228  Heterosexual (straight)             Never
## 2229           Some other way         Sometimes
## 2230  Heterosexual (straight)            Rarely
## 2231  Heterosexual (straight)            Rarely
## 2232  Heterosexual (straight)             Never
## 2233           Some other way  Most of the time
## 2234  Heterosexual (straight)  Most of the time
## 2235  Heterosexual (straight)  Most of the time
## 2236  Heterosexual (straight)            Rarely
## 2237  Heterosexual (straight)  Most of the time
## 2238  Heterosexual (straight)            Rarely
## 2239  Heterosexual (straight)         Sometimes
## 2240  Heterosexual (straight)             Never
## 2241           Gay or lesbian            Always
## 2242  Heterosexual (straight)         Sometimes
## 2243  Heterosexual (straight)             Never
## 2244  Heterosexual (straight)  Most of the time
## 2245  Heterosexual (straight)            Rarely
## 2246                 Bisexual         Sometimes
## 2247  Heterosexual (straight)  Most of the time
## 2248  Heterosexual (straight)         Sometimes
## 2249  Heterosexual (straight)             Never
## 2250  Heterosexual (straight)            Rarely
## 2251  Heterosexual (straight)         Sometimes
## 2252  Heterosexual (straight)         Sometimes
## 2253  Heterosexual (straight)         Sometimes
## 2254  Heterosexual (straight)            Rarely
## 2255  Heterosexual (straight)             Never
## 2256  Heterosexual (straight)            Rarely
## 2257           Gay or lesbian            Always
## 2258  Heterosexual (straight)             Never
## 2259  Heterosexual (straight)             Never
## 2260  Heterosexual (straight)             Never
## 2261                 Bisexual            Rarely
## 2262                 Not sure         Sometimes
## 2263  Heterosexual (straight)            Rarely
## 2264  Heterosexual (straight)             Never
## 2265  Heterosexual (straight)            Rarely
## 2266  Heterosexual (straight)         Sometimes
## 2267  Heterosexual (straight)            Always
## 2268  Heterosexual (straight)  Most of the time
## 2269  Heterosexual (straight)             Never
## 2270  Heterosexual (straight)             Never
## 2271                 Bisexual  Most of the time
## 2272  Heterosexual (straight)            Always
## 2273  Heterosexual (straight)         Sometimes
## 2274  Heterosexual (straight)  Most of the time
## 2275                 Bisexual         Sometimes
## 2276  Heterosexual (straight)            Always
## 2277  Heterosexual (straight)         Sometimes
## 2278  Heterosexual (straight)         Sometimes
## 2279                 Bisexual  Most of the time
## 2280  Heterosexual (straight)  Most of the time
## 2281  Heterosexual (straight)         Sometimes
## 2282  Heterosexual (straight)             Never
## 2283  Heterosexual (straight)         Sometimes
## 2284                 Bisexual  Most of the time
## 2285                 Not sure            Rarely
## 2286  Heterosexual (straight)         Sometimes
## 2287  Heterosexual (straight)             Never
## 2288  Heterosexual (straight)         Sometimes
## 2289  Heterosexual (straight)         Sometimes
## 2290  Heterosexual (straight)  Most of the time
## 2291  Heterosexual (straight)             Never
## 2292  Heterosexual (straight)            Rarely
## 2293  Heterosexual (straight)         Sometimes
## 2294                 Not sure  Most of the time
## 2295                 Not sure            Rarely
## 2296  Heterosexual (straight)  Most of the time
## 2297  Heterosexual (straight)            Rarely
## 2298           Some other way  Most of the time
## 2299  Heterosexual (straight)            Rarely
## 2300  Heterosexual (straight)  Most of the time
## 2301  Heterosexual (straight)             Never
## 2302  Heterosexual (straight)  Most of the time
## 2303  Heterosexual (straight)            Rarely
## 2304                 Not sure  Most of the time
## 2305  Heterosexual (straight)            Rarely
## 2306  Heterosexual (straight)         Sometimes
## 2307  Heterosexual (straight)         Sometimes
## 2308  Heterosexual (straight)            Rarely
## 2309           Gay or lesbian            Always
## 2310  Heterosexual (straight)         Sometimes
## 2311  Heterosexual (straight)             Never
## 2312  Heterosexual (straight)            Rarely
## 2313  Heterosexual (straight)             Never
## 2314  Heterosexual (straight)         Sometimes
## 2315                 Bisexual            Always
## 2316  Heterosexual (straight)         Sometimes
## 2317  Heterosexual (straight)            Always
## 2318  Heterosexual (straight)            Rarely
## 2319  Heterosexual (straight)         Sometimes
## 2320  Heterosexual (straight)         Sometimes
## 2321  Heterosexual (straight)            Rarely
## 2322  Heterosexual (straight)            Rarely
## 2323  Heterosexual (straight)         Sometimes
## 2324  Heterosexual (straight)            Rarely
## 2325                 Bisexual  Most of the time
## 2326  Heterosexual (straight)         Sometimes
## 2327  Heterosexual (straight)             Never
## 2328  Heterosexual (straight)         Sometimes
## 2329  Heterosexual (straight)            Rarely
## 2330           Some other way  Most of the time
## 2331  Heterosexual (straight)            Rarely
## 2332  Heterosexual (straight)            Rarely
## 2333                 Bisexual  Most of the time
## 2334  Heterosexual (straight)              <NA>
## 2335                 Bisexual             Never
## 2336  Heterosexual (straight)             Never
## 2337  Heterosexual (straight)         Sometimes
## 2338  Heterosexual (straight)         Sometimes
## 2339  Heterosexual (straight)            Rarely
## 2340  Heterosexual (straight)             Never
## 2341  Heterosexual (straight)             Never
## 2342  Heterosexual (straight)  Most of the time
## 2343                 Bisexual  Most of the time
## 2344  Heterosexual (straight)         Sometimes
## 2345  Heterosexual (straight)         Sometimes
## 2346  Heterosexual (straight)         Sometimes
## 2347  Heterosexual (straight)         Sometimes
## 2348  Heterosexual (straight)             Never
## 2349                 Bisexual            Always
## 2350  Heterosexual (straight)              <NA>
## 2351                 Not sure  Most of the time
## 2352  Heterosexual (straight)         Sometimes
## 2353  Heterosexual (straight)         Sometimes
## 2354  Heterosexual (straight)         Sometimes
## 2355  Heterosexual (straight)  Most of the time
## 2356  Heterosexual (straight)             Never
## 2357  Heterosexual (straight)             Never
## 2358  Heterosexual (straight)            Rarely
## 2359  Heterosexual (straight)             Never
## 2360  Heterosexual (straight)         Sometimes
## 2361  Heterosexual (straight)         Sometimes
## 2362                 Bisexual            Always
## 2363  Heterosexual (straight)         Sometimes
## 2364  Heterosexual (straight)             Never
## 2365  Heterosexual (straight)  Most of the time
## 2366  Heterosexual (straight)            Rarely
## 2367  Heterosexual (straight)             Never
## 2368                 Bisexual         Sometimes
## 2369  Heterosexual (straight)            Rarely
## 2370  Heterosexual (straight)         Sometimes
## 2371                 Bisexual  Most of the time
## 2372                 Bisexual  Most of the time
## 2373                 Bisexual            Always
## 2374  Heterosexual (straight)         Sometimes
## 2375  Heterosexual (straight)         Sometimes
## 2376  Heterosexual (straight)  Most of the time
## 2377  Heterosexual (straight)  Most of the time
## 2378                 Bisexual            Rarely
## 2379           Gay or lesbian         Sometimes
## 2380  Heterosexual (straight)         Sometimes
## 2381                 Bisexual         Sometimes
## 2382  Heterosexual (straight)         Sometimes
## 2383  Heterosexual (straight)  Most of the time
## 2384  Heterosexual (straight)         Sometimes
## 2385  Heterosexual (straight)             Never
## 2386  Heterosexual (straight)             Never
## 2387  Heterosexual (straight)         Sometimes
## 2388  Heterosexual (straight)         Sometimes
## 2389  Heterosexual (straight)             Never
## 2390  Heterosexual (straight)             Never
## 2391           Gay or lesbian             Never
## 2392                 Not sure  Most of the time
## 2393  Heterosexual (straight)         Sometimes
## 2394  Heterosexual (straight)            Rarely
## 2395                 Bisexual  Most of the time
## 2396  Heterosexual (straight)            Rarely
## 2397  Heterosexual (straight)         Sometimes
## 2398  Heterosexual (straight)         Sometimes
## 2399  Heterosexual (straight)            Rarely
## 2400  Heterosexual (straight)         Sometimes
## 2401  Heterosexual (straight)            Rarely
## 2402  Heterosexual (straight)            Rarely
## 2403  Heterosexual (straight)             Never
## 2404  Heterosexual (straight)  Most of the time
## 2405  Heterosexual (straight)         Sometimes
## 2406  Heterosexual (straight)            Rarely
## 2407  Heterosexual (straight)             Never
## 2408  Heterosexual (straight)  Most of the time
## 2409  Heterosexual (straight)             Never
## 2410  Heterosexual (straight)            Always
## 2411                 Bisexual            Always
## 2412  Heterosexual (straight)            Rarely
## 2413                 Bisexual         Sometimes
## 2414  Heterosexual (straight)         Sometimes
## 2415  Heterosexual (straight)         Sometimes
## 2416  Heterosexual (straight)         Sometimes
## 2417  Heterosexual (straight)            Rarely
## 2418  Heterosexual (straight)             Never
## 2419           Some other way  Most of the time
## 2420  Heterosexual (straight)            Rarely
## 2421  Heterosexual (straight)         Sometimes
## 2422  Heterosexual (straight)            Rarely
## 2423  Heterosexual (straight)             Never
## 2424  Heterosexual (straight)            Always
## 2425  Heterosexual (straight)             Never
## 2426  Heterosexual (straight)  Most of the time
## 2427           Gay or lesbian            Rarely
## 2428                 Bisexual         Sometimes
## 2429  Heterosexual (straight)  Most of the time
## 2430                 Bisexual         Sometimes
## 2431  Heterosexual (straight)         Sometimes
## 2432  Heterosexual (straight)         Sometimes
## 2433  Heterosexual (straight)            Rarely
## 2434                 Bisexual            Always
## 2435  Heterosexual (straight)            Rarely
## 2436  Heterosexual (straight)             Never
## 2437  Heterosexual (straight)  Most of the time
## 2438  Heterosexual (straight)  Most of the time
## 2439                 Bisexual         Sometimes
## 2440  Heterosexual (straight)            Always
## 2441  Heterosexual (straight)  Most of the time
## 2442                 Bisexual  Most of the time
## 2443  Heterosexual (straight)         Sometimes
## 2444                 Not sure  Most of the time
## 2445  Heterosexual (straight)             Never
## 2446  Heterosexual (straight)            Rarely
## 2447  Heterosexual (straight)             Never
## 2448           Gay or lesbian  Most of the time
## 2449                 Bisexual  Most of the time
## 2450  Heterosexual (straight)             Never
## 2451  Heterosexual (straight)            Rarely
## 2452  Heterosexual (straight)         Sometimes
## 2453  Heterosexual (straight)             Never
## 2454  Heterosexual (straight)             Never
## 2455                 Not sure  Most of the time
## 2456  Heterosexual (straight)  Most of the time
## 2457           Some other way  Most of the time
## 2458  Heterosexual (straight)            Rarely
## 2459                 Bisexual  Most of the time
## 2460           Gay or lesbian             Never
## 2461  Heterosexual (straight)             Never
## 2462           Gay or lesbian         Sometimes
## 2463           Gay or lesbian             Never
## 2464  Heterosexual (straight)             Never
## 2465  Heterosexual (straight)            Always
## 2466                 Bisexual            Always
## 2467                 Bisexual  Most of the time
## 2468  Heterosexual (straight)  Most of the time
## 2469  Heterosexual (straight)             Never
## 2470  Heterosexual (straight)             Never
## 2471  Heterosexual (straight)            Always
## 2472           Gay or lesbian         Sometimes
## 2473  Heterosexual (straight)            Rarely
## 2474  Heterosexual (straight)            Rarely
## 2475                 Not sure         Sometimes
## 2476  Heterosexual (straight)            Rarely
## 2477                 Bisexual  Most of the time
## 2478  Heterosexual (straight)            Rarely
## 2479                 Not sure         Sometimes
## 2480  Heterosexual (straight)             Never
## 2481                 Bisexual         Sometimes
## 2482                 Bisexual            Always
## 2483  Heterosexual (straight)            Always
## 2484  Heterosexual (straight)            Rarely
## 2485  Heterosexual (straight)         Sometimes
## 2486           Gay or lesbian         Sometimes
## 2487                 Not sure             Never
## 2488  Heterosexual (straight)         Sometimes
## 2489  Heterosexual (straight)            Rarely
## 2490  Heterosexual (straight)              <NA>
## 2491  Heterosexual (straight)            Rarely
## 2492                 Not sure            Always
## 2493  Heterosexual (straight)            Rarely
## 2494  Heterosexual (straight)            Rarely
## 2495  Heterosexual (straight)            Always
## 2496  Heterosexual (straight)             Never
## 2497  Heterosexual (straight)            Always
## 2498  Heterosexual (straight)  Most of the time
## 2499  Heterosexual (straight)  Most of the time
## 2500  Heterosexual (straight)             Never
## 2501  Heterosexual (straight)  Most of the time
## 2502  Heterosexual (straight)             Never
## 2503  Heterosexual (straight)            Rarely
## 2504  Heterosexual (straight)         Sometimes
## 2505  Heterosexual (straight)            Rarely
## 2506  Heterosexual (straight)              <NA>
## 2507                 Bisexual  Most of the time
## 2508  Heterosexual (straight)         Sometimes
## 2509  Heterosexual (straight)         Sometimes
## 2510  Heterosexual (straight)            Rarely
## 2511  Heterosexual (straight)             Never
## 2512  Heterosexual (straight)  Most of the time
## 2513  Heterosexual (straight)            Rarely
## 2514  Heterosexual (straight)            Rarely
## 2515  Heterosexual (straight)         Sometimes
## 2516  Heterosexual (straight)            Rarely
## 2517  Heterosexual (straight)            Rarely
## 2518  Heterosexual (straight)             Never
## 2519           Gay or lesbian  Most of the time
## 2520  Heterosexual (straight)         Sometimes
## 2521  Heterosexual (straight)            Rarely
## 2522  Heterosexual (straight)            Rarely
## 2523  Heterosexual (straight)         Sometimes
## 2524  Heterosexual (straight)         Sometimes
## 2525  Heterosexual (straight)            Rarely
## 2526           Some other way            Always
## 2527           Gay or lesbian            Always
## 2528  Heterosexual (straight)  Most of the time
## 2529                 Bisexual         Sometimes
## 2530                 Not sure         Sometimes
## 2531  Heterosexual (straight)         Sometimes
## 2532  Heterosexual (straight)         Sometimes
## 2533  Heterosexual (straight)            Rarely
## 2534  Heterosexual (straight)         Sometimes
## 2535  Heterosexual (straight)         Sometimes
## 2536  Heterosexual (straight)             Never
## 2537  Heterosexual (straight)             Never
## 2538  Heterosexual (straight)         Sometimes
## 2539  Heterosexual (straight)         Sometimes
## 2540  Heterosexual (straight)              <NA>
## 2541  Heterosexual (straight)  Most of the time
## 2542  Heterosexual (straight)         Sometimes
## 2543                 Bisexual         Sometimes
## 2544  Heterosexual (straight)            Rarely
## 2545  Heterosexual (straight)         Sometimes
## 2546  Heterosexual (straight)            Always
## 2547  Heterosexual (straight)         Sometimes
## 2548  Heterosexual (straight)             Never
## 2549                 Bisexual         Sometimes
## 2550  Heterosexual (straight)  Most of the time
## 2551  Heterosexual (straight)             Never
## 2552                 Bisexual            Always
## 2553  Heterosexual (straight)            Always
## 2554  Heterosexual (straight)             Never
## 2555  Heterosexual (straight)         Sometimes
## 2556                 Bisexual         Sometimes
## 2557  Heterosexual (straight)            Always
## 2558  Heterosexual (straight)         Sometimes
## 2559  Heterosexual (straight)         Sometimes
## 2560  Heterosexual (straight)             Never
## 2561                 Bisexual            Always
## 2562  Heterosexual (straight)            Rarely
## 2563  Heterosexual (straight)             Never
## 2564                 Bisexual  Most of the time
## 2565  Heterosexual (straight)         Sometimes
## 2566  Heterosexual (straight)         Sometimes
## 2567                 Bisexual            Always
## 2568  Heterosexual (straight)             Never
## 2569  Heterosexual (straight)             Never
## 2570                 Bisexual            Always
## 2571  Heterosexual (straight)         Sometimes
## 2572                 Bisexual         Sometimes
## 2573                 Bisexual         Sometimes
## 2574           Some other way         Sometimes
## 2575  Heterosexual (straight)  Most of the time
## 2576  Heterosexual (straight)            Rarely
## 2577  Heterosexual (straight)         Sometimes
## 2578           Some other way         Sometimes
## 2579           Some other way            Always
## 2580  Heterosexual (straight)         Sometimes
## 2581  Heterosexual (straight)  Most of the time
## 2582  Heterosexual (straight)         Sometimes
## 2583  Heterosexual (straight)         Sometimes
## 2584  Heterosexual (straight)            Rarely
## 2585  Heterosexual (straight)            Rarely
## 2586                 Not sure  Most of the time
## 2587  Heterosexual (straight)            Always
## 2588           Some other way            Rarely
## 2589  Heterosexual (straight)  Most of the time
## 2590           Some other way         Sometimes
## 2591  Heterosexual (straight)         Sometimes
## 2592  Heterosexual (straight)  Most of the time
## 2593           Some other way              <NA>
## 2594  Heterosexual (straight)  Most of the time
## 2595                 Not sure            Rarely
## 2596  Heterosexual (straight)         Sometimes
## 2597  Heterosexual (straight)             Never
## 2598  Heterosexual (straight)         Sometimes
## 2599                 Bisexual            Rarely
## 2600  Heterosexual (straight)            Rarely
## 2601  Heterosexual (straight)            Rarely
## 2602  Heterosexual (straight)            Always
## 2603  Heterosexual (straight)            Rarely
## 2604                 Bisexual            Rarely
## 2605  Heterosexual (straight)            Always
## 2606           Gay or lesbian         Sometimes
## 2607  Heterosexual (straight)         Sometimes
## 2608  Heterosexual (straight)         Sometimes
## 2609                 Bisexual             Never
## 2610  Heterosexual (straight)            Always
## 2611  Heterosexual (straight)            Rarely
## 2612           Some other way  Most of the time
## 2613  Heterosexual (straight)  Most of the time
## 2614           Gay or lesbian         Sometimes
## 2615                 Not sure  Most of the time
## 2616  Heterosexual (straight)         Sometimes
## 2617           Gay or lesbian         Sometimes
## 2618  Heterosexual (straight)         Sometimes
## 2619  Heterosexual (straight)            Rarely
## 2620           Some other way  Most of the time
## 2621  Heterosexual (straight)         Sometimes
## 2622  Heterosexual (straight)         Sometimes
## 2623  Heterosexual (straight)         Sometimes
## 2624                 Bisexual             Never
## 2625  Heterosexual (straight)         Sometimes
## 2626                 Not sure  Most of the time
## 2627  Heterosexual (straight)         Sometimes
## 2628  Heterosexual (straight)            Rarely
## 2629                 Bisexual             Never
## 2630           Gay or lesbian         Sometimes
## 2631  Heterosexual (straight)             Never
## 2632  Heterosexual (straight)             Never
## 2633  Heterosexual (straight)         Sometimes
## 2634  Heterosexual (straight)         Sometimes
## 2635  Heterosexual (straight)            Rarely
## 2636                 Not sure         Sometimes
## 2637  Heterosexual (straight)         Sometimes
## 2638                 Bisexual  Most of the time
## 2639                 Bisexual         Sometimes
## 2640  Heterosexual (straight)         Sometimes
## 2641  Heterosexual (straight)             Never
## 2642  Heterosexual (straight)         Sometimes
## 2643  Heterosexual (straight)             Never
## 2644                 Bisexual         Sometimes
## 2645                 Bisexual         Sometimes
## 2646  Heterosexual (straight)            Rarely
## 2647  Heterosexual (straight)            Rarely
## 2648  Heterosexual (straight)  Most of the time
## 2649  Heterosexual (straight)            Rarely
## 2650  Heterosexual (straight)         Sometimes
## 2651  Heterosexual (straight)         Sometimes
## 2652  Heterosexual (straight)            Always
## 2653  Heterosexual (straight)             Never
## 2654                 Bisexual         Sometimes
## 2655  Heterosexual (straight)         Sometimes
## 2656  Heterosexual (straight)         Sometimes
## 2657                 Bisexual         Sometimes
## 2658           Some other way         Sometimes
## 2659                 Not sure         Sometimes
## 2660  Heterosexual (straight)            Rarely
## 2661  Heterosexual (straight)         Sometimes
## 2662  Heterosexual (straight)         Sometimes
## 2663  Heterosexual (straight)            Rarely
## 2664  Heterosexual (straight)             Never
## 2665  Heterosexual (straight)         Sometimes
## 2666                 Not sure         Sometimes
## 2667                 Bisexual            Rarely
## 2668  Heterosexual (straight)         Sometimes
## 2669  Heterosexual (straight)         Sometimes
## 2670  Heterosexual (straight)  Most of the time
## 2671                 Not sure  Most of the time
## 2672  Heterosexual (straight)            Always
## 2673           Some other way         Sometimes
## 2674           Gay or lesbian         Sometimes
## 2675  Heterosexual (straight)         Sometimes
## 2676           Gay or lesbian  Most of the time
## 2677           Gay or lesbian            Always
## 2678  Heterosexual (straight)             Never
## 2679                 Not sure  Most of the time
## 2680  Heterosexual (straight)            Rarely
## 2681  Heterosexual (straight)         Sometimes
## 2682  Heterosexual (straight)             Never
## 2683  Heterosexual (straight)         Sometimes
## 2684           Some other way             Never
## 2685           Gay or lesbian  Most of the time
## 2686  Heterosexual (straight)  Most of the time
## 2687  Heterosexual (straight)            Always
## 2688           Gay or lesbian            Always
## 2689                 Bisexual         Sometimes
## 2690                 Bisexual             Never
## 2691  Heterosexual (straight)             Never
## 2692  Heterosexual (straight)              <NA>
## 2693  Heterosexual (straight)            Rarely
## 2694  Heterosexual (straight)            Rarely
## 2695  Heterosexual (straight)         Sometimes
## 2696  Heterosexual (straight)         Sometimes
## 2697  Heterosexual (straight)              <NA>
## 2698  Heterosexual (straight)  Most of the time
## 2699                 Bisexual  Most of the time
## 2700                 Bisexual         Sometimes
## 2701  Heterosexual (straight)            Always
## 2702                 Bisexual            Rarely
## 2703                 Bisexual  Most of the time
## 2704                 Bisexual         Sometimes
## 2705                 Not sure  Most of the time
## 2706  Heterosexual (straight)             Never
## 2707  Heterosexual (straight)         Sometimes
## 2708  Heterosexual (straight)            Rarely
## 2709  Heterosexual (straight)            Always
## 2710           Some other way            Always
## 2711  Heterosexual (straight)         Sometimes
## 2712  Heterosexual (straight)            Rarely
## 2713           Some other way  Most of the time
## 2714  Heterosexual (straight)             Never
## 2715                 Not sure         Sometimes
## 2716                 Bisexual             Never
## 2717  Heterosexual (straight)  Most of the time
## 2718  Heterosexual (straight)             Never
## 2719                 Bisexual  Most of the time
## 2720           Some other way  Most of the time
## 2721  Heterosexual (straight)         Sometimes
## 2722  Heterosexual (straight)         Sometimes
## 2723                 Bisexual         Sometimes
## 2724  Heterosexual (straight)            Always
## 2725  Heterosexual (straight)            Rarely
## 2726                 Bisexual  Most of the time
## 2727  Heterosexual (straight)             Never
## 2728                 Not sure         Sometimes
## 2729  Heterosexual (straight)  Most of the time
## 2730  Heterosexual (straight)            Rarely
## 2731  Heterosexual (straight)              <NA>
## 2732                 Bisexual         Sometimes
## 2733  Heterosexual (straight)             Never
## 2734  Heterosexual (straight)         Sometimes
## 2735  Heterosexual (straight)         Sometimes
## 2736                 Not sure         Sometimes
## 2737  Heterosexual (straight)            Always
## 2738  Heterosexual (straight)  Most of the time
## 2739                 Not sure            Always
## 2740  Heterosexual (straight)         Sometimes
## 2741                 Bisexual  Most of the time
## 2742  Heterosexual (straight)         Sometimes
## 2743  Heterosexual (straight)             Never
## 2744  Heterosexual (straight)         Sometimes
## 2745  Heterosexual (straight)             Never
## 2746  Heterosexual (straight)             Never
## 2747  Heterosexual (straight)            Always
## 2748           Gay or lesbian         Sometimes
## 2749  Heterosexual (straight)              <NA>
## 2750  Heterosexual (straight)             Never
## 2751  Heterosexual (straight)             Never
## 2752  Heterosexual (straight)             Never
## 2753  Heterosexual (straight)         Sometimes
## 2754  Heterosexual (straight)  Most of the time
## 2755  Heterosexual (straight)         Sometimes
## 2756                 Bisexual  Most of the time
## 2757  Heterosexual (straight)            Rarely
## 2758  Heterosexual (straight)             Never
## 2759  Heterosexual (straight)         Sometimes
## 2760  Heterosexual (straight)            Rarely
## 2761                 Bisexual  Most of the time
## 2762           Some other way             Never
## 2763                 Bisexual  Most of the time
## 2764  Heterosexual (straight)            Rarely
## 2765  Heterosexual (straight)  Most of the time
## 2766                 Not sure         Sometimes
## 2767                 Bisexual         Sometimes
## 2768  Heterosexual (straight)         Sometimes
## 2769  Heterosexual (straight)         Sometimes
## 2770           Gay or lesbian             Never
## 2771           Some other way  Most of the time
## 2772  Heterosexual (straight)              <NA>
## 2773           Some other way  Most of the time
## 2774  Heterosexual (straight)             Never
## 2775  Heterosexual (straight)            Rarely
## 2776  Heterosexual (straight)         Sometimes
## 2777  Heterosexual (straight)  Most of the time
## 2778           Gay or lesbian            Rarely
## 2779  Heterosexual (straight)  Most of the time
## 2780  Heterosexual (straight)         Sometimes
## 2781                 Bisexual         Sometimes
## 2782  Heterosexual (straight)  Most of the time
## 2783                 Bisexual            Always
## 2784                 Bisexual         Sometimes
## 2785                 Bisexual  Most of the time
## 2786           Some other way            Always
## 2787  Heterosexual (straight)             Never
## 2788  Heterosexual (straight)             Never
## 2789                 Bisexual  Most of the time
## 2790  Heterosexual (straight)             Never
## 2791  Heterosexual (straight)             Never
## 2792           Some other way  Most of the time
## 2793  Heterosexual (straight)            Rarely
## 2794           Gay or lesbian         Sometimes
## 2795           Gay or lesbian            Rarely
## 2796  Heterosexual (straight)            Rarely
## 2797  Heterosexual (straight)            Rarely
## 2798  Heterosexual (straight)  Most of the time
## 2799  Heterosexual (straight)             Never
## 2800  Heterosexual (straight)         Sometimes
## 2801  Heterosexual (straight)            Rarely
## 2802                 Not sure            Rarely
## 2803  Heterosexual (straight)  Most of the time
## 2804  Heterosexual (straight)            Rarely
## 2805  Heterosexual (straight)  Most of the time
## 2806  Heterosexual (straight)            Always
## 2807  Heterosexual (straight)             Never
## 2808  Heterosexual (straight)         Sometimes
## 2809  Heterosexual (straight)  Most of the time
## 2810  Heterosexual (straight)             Never
## 2811  Heterosexual (straight)            Rarely
## 2812  Heterosexual (straight)             Never
## 2813  Heterosexual (straight)            Rarely
## 2814  Heterosexual (straight)         Sometimes
## 2815  Heterosexual (straight)            Rarely
## 2816  Heterosexual (straight)         Sometimes
## 2817  Heterosexual (straight)            Rarely
## 2818                 Bisexual         Sometimes
## 2819  Heterosexual (straight)         Sometimes
## 2820  Heterosexual (straight)         Sometimes
## 2821  Heterosexual (straight)         Sometimes
## 2822  Heterosexual (straight)         Sometimes
## 2823  Heterosexual (straight)  Most of the time
## 2824  Heterosexual (straight)            Rarely
## 2825                 Not sure            Rarely
## 2826  Heterosexual (straight)         Sometimes
## 2827  Heterosexual (straight)             Never
## 2828           Gay or lesbian              <NA>
## 2829           Gay or lesbian  Most of the time
## 2830  Heterosexual (straight)            Always
## 2831  Heterosexual (straight)             Never
## 2832  Heterosexual (straight)             Never
## 2833  Heterosexual (straight)             Never
## 2834                 Bisexual         Sometimes
## 2835  Heterosexual (straight)            Always
## 2836  Heterosexual (straight)             Never
## 2837  Heterosexual (straight)         Sometimes
## 2838  Heterosexual (straight)             Never
## 2839           Gay or lesbian  Most of the time
## 2840           Gay or lesbian            Rarely
## 2841  Heterosexual (straight)            Always
## 2842  Heterosexual (straight)         Sometimes
## 2843                 Bisexual         Sometimes
## 2844                 Bisexual  Most of the time
## 2845                 Bisexual  Most of the time
## 2846           Some other way            Always
## 2847  Heterosexual (straight)         Sometimes
## 2848  Heterosexual (straight)            Always
## 2849  Heterosexual (straight)             Never
## 2850  Heterosexual (straight)         Sometimes
## 2851                 Bisexual              <NA>
## 2852                 Not sure             Never
## 2853                 Bisexual  Most of the time
## 2854  Heterosexual (straight)         Sometimes
## 2855  Heterosexual (straight)  Most of the time
## 2856  Heterosexual (straight)             Never
## 2857  Heterosexual (straight)         Sometimes
## 2858  Heterosexual (straight)            Rarely
## 2859  Heterosexual (straight)         Sometimes
## 2860  Heterosexual (straight)         Sometimes
## 2861                 Bisexual         Sometimes
## 2862  Heterosexual (straight)            Rarely
## 2863  Heterosexual (straight)         Sometimes
## 2864  Heterosexual (straight)         Sometimes
## 2865  Heterosexual (straight)             Never
## 2866                 Not sure             Never
## 2867           Some other way            Always
## 2868                 Bisexual  Most of the time
## 2869                 Bisexual            Always
## 2870  Heterosexual (straight)         Sometimes
## 2871  Heterosexual (straight)         Sometimes
## 2872                 Bisexual            Always
## 2873  Heterosexual (straight)         Sometimes
## 2874  Heterosexual (straight)         Sometimes
## 2875  Heterosexual (straight)             Never
## 2876  Heterosexual (straight)         Sometimes
## 2877  Heterosexual (straight)             Never
## 2878                 Bisexual  Most of the time
## 2879  Heterosexual (straight)            Always
## 2880           Some other way         Sometimes
## 2881  Heterosexual (straight)  Most of the time
## 2882                 Bisexual         Sometimes
## 2883  Heterosexual (straight)  Most of the time
## 2884  Heterosexual (straight)            Always
## 2885  Heterosexual (straight)             Never
## 2886  Heterosexual (straight)            Rarely
## 2887  Heterosexual (straight)             Never
## 2888           Gay or lesbian            Always
## 2889  Heterosexual (straight)         Sometimes
## 2890  Heterosexual (straight)         Sometimes
## 2891  Heterosexual (straight)            Always
## 2892           Gay or lesbian            Always
## 2893  Heterosexual (straight)            Rarely
## 2894  Heterosexual (straight)  Most of the time
## 2895  Heterosexual (straight)         Sometimes
## 2896                 Not sure         Sometimes
## 2897  Heterosexual (straight)  Most of the time
## 2898  Heterosexual (straight)            Rarely
## 2899  Heterosexual (straight)  Most of the time
## 2900           Some other way            Always
## 2901  Heterosexual (straight)             Never
## 2902  Heterosexual (straight)         Sometimes
## 2903  Heterosexual (straight)         Sometimes
## 2904  Heterosexual (straight)              <NA>
## 2905           Some other way  Most of the time
## 2906  Heterosexual (straight)  Most of the time
## 2907  Heterosexual (straight)            Rarely
## 2908  Heterosexual (straight)         Sometimes
## 2909  Heterosexual (straight)             Never
## 2910  Heterosexual (straight)             Never
## 2911  Heterosexual (straight)            Rarely
## 2912  Heterosexual (straight)             Never
## 2913  Heterosexual (straight)             Never
## 2914  Heterosexual (straight)            Rarely
## 2915           Some other way            Always
## 2916           Some other way  Most of the time
## 2917  Heterosexual (straight)         Sometimes
## 2918  Heterosexual (straight)         Sometimes
## 2919  Heterosexual (straight)         Sometimes
## 2920  Heterosexual (straight)         Sometimes
## 2921                 Bisexual         Sometimes
## 2922  Heterosexual (straight)             Never
## 2923           Some other way  Most of the time
## 2924  Heterosexual (straight)         Sometimes
## 2925  Heterosexual (straight)  Most of the time
## 2926  Heterosexual (straight)         Sometimes
## 2927  Heterosexual (straight)         Sometimes
## 2928  Heterosexual (straight)            Always
## 2929  Heterosexual (straight)             Never
## 2930  Heterosexual (straight)         Sometimes
## 2931  Heterosexual (straight)              <NA>
## 2932  Heterosexual (straight)             Never
## 2933  Heterosexual (straight)             Never
## 2934  Heterosexual (straight)            Rarely
## 2935                 Bisexual         Sometimes
## 2936  Heterosexual (straight)         Sometimes
## 2937  Heterosexual (straight)            Rarely
## 2938  Heterosexual (straight)         Sometimes
## 2939  Heterosexual (straight)             Never
## 2940           Gay or lesbian            Always
## 2941  Heterosexual (straight)         Sometimes
## 2942  Heterosexual (straight)  Most of the time
## 2943  Heterosexual (straight)         Sometimes
## 2944  Heterosexual (straight)             Never
## 2945                 Bisexual  Most of the time
## 2946  Heterosexual (straight)             Never
## 2947                 Not sure  Most of the time
## 2948  Heterosexual (straight)             Never
## 2949  Heterosexual (straight)         Sometimes
## 2950  Heterosexual (straight)         Sometimes
## 2951  Heterosexual (straight)  Most of the time
## 2952           Some other way            Always
## 2953  Heterosexual (straight)         Sometimes
## 2954           Some other way            Always
## 2955                 Bisexual  Most of the time
## 2956           Some other way  Most of the time
## 2957           Gay or lesbian            Rarely
## 2958  Heterosexual (straight)  Most of the time
## 2959  Heterosexual (straight)            Rarely
## 2960  Heterosexual (straight)              <NA>
## 2961  Heterosexual (straight)             Never
## 2962                 Not sure            Always
## 2963  Heterosexual (straight)            Always
## 2964  Heterosexual (straight)             Never
## 2965  Heterosexual (straight)             Never
## 2966           Gay or lesbian         Sometimes
## 2967  Heterosexual (straight)            Rarely
## 2968  Heterosexual (straight)            Rarely
## 2969  Heterosexual (straight)            Rarely
## 2970  Heterosexual (straight)            Rarely
## 2971                 Bisexual            Always
## 2972           Some other way            Rarely
## 2973  Heterosexual (straight)         Sometimes
## 2974  Heterosexual (straight)             Never
## 2975  Heterosexual (straight)  Most of the time
## 2976  Heterosexual (straight)            Rarely
## 2977  Heterosexual (straight)         Sometimes
## 2978                 Not sure            Always
## 2979  Heterosexual (straight)  Most of the time
## 2980                 Not sure            Always
## 2981                 Not sure  Most of the time
## 2982  Heterosexual (straight)             Never
## 2983  Heterosexual (straight)             Never
## 2984  Heterosexual (straight)         Sometimes
## 2985  Heterosexual (straight)             Never
## 2986  Heterosexual (straight)         Sometimes
## 2987  Heterosexual (straight)            Rarely
## 2988                 Bisexual              <NA>
## 2989  Heterosexual (straight)         Sometimes
## 2990  Heterosexual (straight)         Sometimes
## 2991  Heterosexual (straight)            Rarely
## 2992  Heterosexual (straight)            Rarely
## 2993  Heterosexual (straight)            Rarely
## 2994           Gay or lesbian            Always
## 2995                 Bisexual            Always
## 2996  Heterosexual (straight)         Sometimes
## 2997  Heterosexual (straight)         Sometimes
## 2998  Heterosexual (straight)             Never
## 2999           Some other way  Most of the time
## 3000  Heterosexual (straight)             Never
## 3001  Heterosexual (straight)            Rarely
## 3002  Heterosexual (straight)             Never
## 3003  Heterosexual (straight)  Most of the time
## 3004                 Bisexual  Most of the time
## 3005  Heterosexual (straight)  Most of the time
## 3006  Heterosexual (straight)            Rarely
## 3007  Heterosexual (straight)  Most of the time
## 3008                 Not sure             Never
## 3009           Gay or lesbian            Rarely
## 3010           Gay or lesbian         Sometimes
## 3011  Heterosexual (straight)            Always
## 3012  Heterosexual (straight)         Sometimes
## 3013  Heterosexual (straight)            Rarely
## 3014                 Bisexual  Most of the time
## 3015  Heterosexual (straight)            Rarely
## 3016  Heterosexual (straight)            Rarely
## 3017  Heterosexual (straight)         Sometimes
## 3018  Heterosexual (straight)            Always
## 3019  Heterosexual (straight)         Sometimes
## 3020  Heterosexual (straight)             Never
## 3021  Heterosexual (straight)             Never
## 3022  Heterosexual (straight)             Never
## 3023                 Bisexual  Most of the time
## 3024  Heterosexual (straight)  Most of the time
## 3025  Heterosexual (straight)            Rarely
## 3026  Heterosexual (straight)         Sometimes
## 3027  Heterosexual (straight)            Always
## 3028                 Bisexual  Most of the time
## 3029  Heterosexual (straight)  Most of the time
## 3030           Some other way  Most of the time
## 3031  Heterosexual (straight)            Rarely
## 3032  Heterosexual (straight)         Sometimes
## 3033           Gay or lesbian         Sometimes
## 3034  Heterosexual (straight)            Rarely
## 3035                 Bisexual         Sometimes
## 3036  Heterosexual (straight)  Most of the time
## 3037                 Bisexual            Always
## 3038  Heterosexual (straight)         Sometimes
## 3039  Heterosexual (straight)         Sometimes
## 3040  Heterosexual (straight)         Sometimes
## 3041  Heterosexual (straight)  Most of the time
## 3042  Heterosexual (straight)             Never
## 3043  Heterosexual (straight)         Sometimes
## 3044  Heterosexual (straight)            Rarely
## 3045  Heterosexual (straight)            Rarely
## 3046  Heterosexual (straight)             Never
## 3047           Gay or lesbian         Sometimes
## 3048  Heterosexual (straight)  Most of the time
## 3049  Heterosexual (straight)             Never
## 3050  Heterosexual (straight)  Most of the time
## 3051  Heterosexual (straight)  Most of the time
## 3052  Heterosexual (straight)  Most of the time
## 3053           Some other way            Always
## 3054  Heterosexual (straight)             Never
## 3055  Heterosexual (straight)         Sometimes
## 3056  Heterosexual (straight)             Never
## 3057                 Bisexual  Most of the time
## 3058  Heterosexual (straight)             Never
## 3059  Heterosexual (straight)         Sometimes
## 3060  Heterosexual (straight)            Rarely
## 3061                 Not sure            Rarely
## 3062  Heterosexual (straight)  Most of the time
## 3063  Heterosexual (straight)         Sometimes
## 3064                 Bisexual            Always
## 3065  Heterosexual (straight)         Sometimes
## 3066           Some other way            Always
## 3067  Heterosexual (straight)         Sometimes
## 3068           Gay or lesbian  Most of the time
## 3069  Heterosexual (straight)  Most of the time
## 3070                 Bisexual         Sometimes
## 3071  Heterosexual (straight)            Rarely
## 3072  Heterosexual (straight)         Sometimes
## 3073  Heterosexual (straight)            Rarely
## 3074  Heterosexual (straight)            Always
## 3075  Heterosexual (straight)             Never
## 3076  Heterosexual (straight)            Rarely
## 3077  Heterosexual (straight)         Sometimes
## 3078                 Bisexual  Most of the time
## 3079  Heterosexual (straight)  Most of the time
## 3080                 Bisexual         Sometimes
## 3081  Heterosexual (straight)            Rarely
## 3082  Heterosexual (straight)         Sometimes
## 3083  Heterosexual (straight)  Most of the time
## 3084  Heterosexual (straight)            Rarely
## 3085  Heterosexual (straight)         Sometimes
## 3086           Gay or lesbian            Always
## 3087  Heterosexual (straight)            Rarely
## 3088  Heterosexual (straight)             Never
## 3089  Heterosexual (straight)            Always
## 3090  Heterosexual (straight)  Most of the time
## 3091  Heterosexual (straight)         Sometimes
## 3092  Heterosexual (straight)  Most of the time
## 3093                 Bisexual            Always
## 3094  Heterosexual (straight)            Rarely
## 3095  Heterosexual (straight)              <NA>
## 3096  Heterosexual (straight)         Sometimes
## 3097           Gay or lesbian         Sometimes
## 3098  Heterosexual (straight)             Never
## 3099  Heterosexual (straight)         Sometimes
## 3100  Heterosexual (straight)             Never
## 3101  Heterosexual (straight)             Never
## 3102                 Bisexual             Never
## 3103           Some other way         Sometimes
## 3104  Heterosexual (straight)         Sometimes
## 3105  Heterosexual (straight)             Never
## 3106  Heterosexual (straight)         Sometimes
## 3107  Heterosexual (straight)            Always
## 3108  Heterosexual (straight)         Sometimes
## 3109                 Bisexual            Always
## 3110  Heterosexual (straight)         Sometimes
## 3111  Heterosexual (straight)            Rarely
## 3112  Heterosexual (straight)            Rarely
## 3113  Heterosexual (straight)         Sometimes
## 3114  Heterosexual (straight)            Rarely
## 3115  Heterosexual (straight)            Always
## 3116  Heterosexual (straight)             Never
## 3117  Heterosexual (straight)            Always
## 3118                 Bisexual            Rarely
## 3119  Heterosexual (straight)            Rarely
## 3120  Heterosexual (straight)             Never
## 3121  Heterosexual (straight)            Rarely
## 3122  Heterosexual (straight)             Never
## 3123  Heterosexual (straight)         Sometimes
## 3124  Heterosexual (straight)         Sometimes
## 3125  Heterosexual (straight)            Rarely
## 3126  Heterosexual (straight)         Sometimes
## 3127  Heterosexual (straight)  Most of the time
## 3128  Heterosexual (straight)  Most of the time
## 3129  Heterosexual (straight)             Never
## 3130  Heterosexual (straight)         Sometimes
## 3131  Heterosexual (straight)             Never
## 3132  Heterosexual (straight)             Never
## 3133           Gay or lesbian         Sometimes
## 3134  Heterosexual (straight)            Rarely
## 3135           Some other way  Most of the time
## 3136  Heterosexual (straight)         Sometimes
## 3137  Heterosexual (straight)            Rarely
## 3138                 Not sure  Most of the time
## 3139  Heterosexual (straight)            Always
## 3140  Heterosexual (straight)            Rarely
## 3141  Heterosexual (straight)             Never
## 3142                 Bisexual             Never
## 3143  Heterosexual (straight)         Sometimes
## 3144  Heterosexual (straight)             Never
## 3145  Heterosexual (straight)             Never
## 3146  Heterosexual (straight)         Sometimes
## 3147  Heterosexual (straight)         Sometimes
## 3148  Heterosexual (straight)            Rarely
## 3149                 Bisexual  Most of the time
## 3150  Heterosexual (straight)             Never
## 3151  Heterosexual (straight)            Always
## 3152                 Bisexual  Most of the time
## 3153  Heterosexual (straight)             Never
## 3154  Heterosexual (straight)             Never
## 3155  Heterosexual (straight)             Never
## 3156  Heterosexual (straight)             Never
## 3157  Heterosexual (straight)         Sometimes
## 3158                 Bisexual  Most of the time
## 3159  Heterosexual (straight)         Sometimes
## 3160           Some other way  Most of the time
## 3161  Heterosexual (straight)         Sometimes
## 3162           Gay or lesbian  Most of the time
## 3163  Heterosexual (straight)             Never
## 3164                 Bisexual            Always
## 3165  Heterosexual (straight)             Never
## 3166  Heterosexual (straight)            Rarely
## 3167  Heterosexual (straight)         Sometimes
## 3168  Heterosexual (straight)            Always
## 3169  Heterosexual (straight)  Most of the time
## 3170  Heterosexual (straight)  Most of the time
## 3171  Heterosexual (straight)         Sometimes
## 3172  Heterosexual (straight)             Never
## 3173  Heterosexual (straight)            Always
## 3174  Heterosexual (straight)  Most of the time
## 3175  Heterosexual (straight)             Never
## 3176  Heterosexual (straight)  Most of the time
## 3177  Heterosexual (straight)             Never
## 3178                 Bisexual         Sometimes
## 3179                 Bisexual         Sometimes
## 3180                 Bisexual  Most of the time
## 3181                 Not sure            Rarely
## 3182  Heterosexual (straight)         Sometimes
## 3183  Heterosexual (straight)  Most of the time
## 3184  Heterosexual (straight)             Never
## 3185                 Not sure            Always
## 3186  Heterosexual (straight)             Never
## 3187  Heterosexual (straight)            Rarely
## 3188  Heterosexual (straight)  Most of the time
## 3189           Some other way            Rarely
## 3190  Heterosexual (straight)            Rarely
## 3191  Heterosexual (straight)             Never
## 3192  Heterosexual (straight)  Most of the time
## 3193  Heterosexual (straight)  Most of the time
## 3194  Heterosexual (straight)             Never
## 3195                 Bisexual         Sometimes
## 3196  Heterosexual (straight)             Never
## 3197  Heterosexual (straight)            Always
## 3198  Heterosexual (straight)  Most of the time
## 3199  Heterosexual (straight)            Rarely
## 3200                 Bisexual            Always
## 3201  Heterosexual (straight)  Most of the time
## 3202  Heterosexual (straight)             Never
## 3203           Some other way            Always
## 3204  Heterosexual (straight)            Rarely
## 3205  Heterosexual (straight)            Rarely
## 3206  Heterosexual (straight)         Sometimes
## 3207  Heterosexual (straight)            Rarely
## 3208  Heterosexual (straight)            Always
## 3209  Heterosexual (straight)             Never
## 3210  Heterosexual (straight)             Never
## 3211  Heterosexual (straight)            Rarely
## 3212  Heterosexual (straight)         Sometimes
## 3213  Heterosexual (straight)            Rarely
## 3214  Heterosexual (straight)            Rarely
## 3215  Heterosexual (straight)  Most of the time
## 3216  Heterosexual (straight)            Rarely
## 3217  Heterosexual (straight)  Most of the time
## 3218  Heterosexual (straight)             Never
## 3219  Heterosexual (straight)            Rarely
## 3220  Heterosexual (straight)         Sometimes
## 3221  Heterosexual (straight)             Never
## 3222  Heterosexual (straight)            Rarely
## 3223  Heterosexual (straight)            Rarely
## 3224  Heterosexual (straight)         Sometimes
## 3225                 Bisexual            Rarely
## 3226  Heterosexual (straight)            Rarely
## 3227  Heterosexual (straight)            Rarely
## 3228  Heterosexual (straight)         Sometimes
## 3229  Heterosexual (straight)         Sometimes
## 3230  Heterosexual (straight)            Rarely
## 3231  Heterosexual (straight)             Never
## 3232  Heterosexual (straight)  Most of the time
## 3233  Heterosexual (straight)             Never
## 3234  Heterosexual (straight)             Never
## 3235  Heterosexual (straight)         Sometimes
## 3236  Heterosexual (straight)  Most of the time
## 3237  Heterosexual (straight)  Most of the time
## 3238  Heterosexual (straight)            Rarely
## 3239  Heterosexual (straight)  Most of the time
## 3240  Heterosexual (straight)  Most of the time
## 3241  Heterosexual (straight)  Most of the time
## 3242  Heterosexual (straight)         Sometimes
## 3243  Heterosexual (straight)            Rarely
## 3244  Heterosexual (straight)         Sometimes
## 3245  Heterosexual (straight)         Sometimes
## 3246  Heterosexual (straight)  Most of the time
## 3247  Heterosexual (straight)            Rarely
## 3248  Heterosexual (straight)            Rarely
## 3249  Heterosexual (straight)            Always
## 3250  Heterosexual (straight)  Most of the time
## 3251  Heterosexual (straight)             Never
## 3252  Heterosexual (straight)  Most of the time
## 3253  Heterosexual (straight)            Rarely
## 3254  Heterosexual (straight)             Never
## 3255  Heterosexual (straight)            Always
## 3256  Heterosexual (straight)            Rarely
## 3257  Heterosexual (straight)             Never
## 3258  Heterosexual (straight)         Sometimes
## 3259  Heterosexual (straight)  Most of the time
## 3260                 Bisexual  Most of the time
## 3261  Heterosexual (straight)  Most of the time
## 3262  Heterosexual (straight)         Sometimes
## 3263  Heterosexual (straight)             Never
## 3264  Heterosexual (straight)  Most of the time
## 3265  Heterosexual (straight)  Most of the time
## 3266  Heterosexual (straight)         Sometimes
## 3267  Heterosexual (straight)         Sometimes
## 3268  Heterosexual (straight)         Sometimes
## 3269  Heterosexual (straight)            Rarely
## 3270                 Bisexual            Always
## 3271  Heterosexual (straight)             Never
## 3272  Heterosexual (straight)  Most of the time
## 3273  Heterosexual (straight)             Never
## 3274  Heterosexual (straight)            Rarely
## 3275  Heterosexual (straight)            Rarely
## 3276  Heterosexual (straight)         Sometimes
## 3277  Heterosexual (straight)  Most of the time
## 3278  Heterosexual (straight)             Never
## 3279  Heterosexual (straight)             Never
## 3280  Heterosexual (straight)            Always
## 3281                 Bisexual         Sometimes
## 3282  Heterosexual (straight)            Rarely
## 3283  Heterosexual (straight)            Always
## 3284  Heterosexual (straight)            Rarely
## 3285  Heterosexual (straight)            Rarely
## 3286  Heterosexual (straight)         Sometimes
## 3287  Heterosexual (straight)  Most of the time
## 3288  Heterosexual (straight)            Rarely
## 3289  Heterosexual (straight)         Sometimes
## 3290  Heterosexual (straight)         Sometimes
## 3291  Heterosexual (straight)            Rarely
## 3292  Heterosexual (straight)            Rarely
## 3293  Heterosexual (straight)            Rarely
## 3294  Heterosexual (straight)         Sometimes
## 3295                 Bisexual  Most of the time
## 3296  Heterosexual (straight)         Sometimes
## 3297  Heterosexual (straight)         Sometimes
## 3298  Heterosexual (straight)  Most of the time
## 3299  Heterosexual (straight)         Sometimes
## 3300  Heterosexual (straight)         Sometimes
## 3301  Heterosexual (straight)  Most of the time
## 3302  Heterosexual (straight)            Rarely
## 3303                 Bisexual            Rarely
## 3304  Heterosexual (straight)         Sometimes
## 3305  Heterosexual (straight)         Sometimes
## 3306                 Not sure  Most of the time
## 3307  Heterosexual (straight)            Rarely
## 3308  Heterosexual (straight)         Sometimes
## 3309  Heterosexual (straight)         Sometimes
## 3310  Heterosexual (straight)            Rarely
## 3311  Heterosexual (straight)             Never
## 3312  Heterosexual (straight)         Sometimes
## 3313  Heterosexual (straight)         Sometimes
## 3314  Heterosexual (straight)             Never
## 3315  Heterosexual (straight)         Sometimes
## 3316  Heterosexual (straight)            Always
## 3317  Heterosexual (straight)             Never
## 3318  Heterosexual (straight)         Sometimes
## 3319  Heterosexual (straight)         Sometimes
## 3320  Heterosexual (straight)         Sometimes
## 3321  Heterosexual (straight)             Never
## 3322  Heterosexual (straight)            Rarely
## 3323  Heterosexual (straight)         Sometimes
## 3324           Gay or lesbian            Always
## 3325  Heterosexual (straight)            Rarely
## 3326  Heterosexual (straight)            Rarely
## 3327  Heterosexual (straight)  Most of the time
## 3328           Some other way            Always
## 3329  Heterosexual (straight)             Never
## 3330  Heterosexual (straight)  Most of the time
## 3331  Heterosexual (straight)         Sometimes
## 3332  Heterosexual (straight)         Sometimes
## 3333  Heterosexual (straight)         Sometimes
## 3334  Heterosexual (straight)         Sometimes
## 3335  Heterosexual (straight)            Rarely
## 3336  Heterosexual (straight)         Sometimes
## 3337  Heterosexual (straight)            Always
## 3338  Heterosexual (straight)         Sometimes
## 3339  Heterosexual (straight)  Most of the time
## 3340  Heterosexual (straight)             Never
## 3341  Heterosexual (straight)  Most of the time
## 3342  Heterosexual (straight)             Never
## 3343  Heterosexual (straight)         Sometimes
## 3344  Heterosexual (straight)            Always
## 3345  Heterosexual (straight)            Rarely
## 3346  Heterosexual (straight)         Sometimes
## 3347  Heterosexual (straight)         Sometimes
## 3348  Heterosexual (straight)         Sometimes
## 3349  Heterosexual (straight)         Sometimes
## 3350           Some other way              <NA>
## 3351  Heterosexual (straight)            Always
## 3352  Heterosexual (straight)  Most of the time
## 3353  Heterosexual (straight)            Rarely
## 3354                 Not sure         Sometimes
## 3355  Heterosexual (straight)            Rarely
## 3356  Heterosexual (straight)             Never
## 3357  Heterosexual (straight)            Rarely
## 3358  Heterosexual (straight)             Never
## 3359  Heterosexual (straight)         Sometimes
## 3360  Heterosexual (straight)            Always
## 3361  Heterosexual (straight)  Most of the time
## 3362  Heterosexual (straight)            Rarely
## 3363  Heterosexual (straight)            Rarely
## 3364  Heterosexual (straight)             Never
## 3365  Heterosexual (straight)  Most of the time
## 3366  Heterosexual (straight)         Sometimes
## 3367  Heterosexual (straight)             Never
## 3368  Heterosexual (straight)            Rarely
## 3369  Heterosexual (straight)         Sometimes
## 3370  Heterosexual (straight)            Rarely
## 3371  Heterosexual (straight)             Never
## 3372  Heterosexual (straight)         Sometimes
## 3373                 Bisexual         Sometimes
## 3374  Heterosexual (straight)         Sometimes
## 3375  Heterosexual (straight)  Most of the time
## 3376  Heterosexual (straight)         Sometimes
## 3377  Heterosexual (straight)            Rarely
## 3378  Heterosexual (straight)            Rarely
## 3379  Heterosexual (straight)              <NA>
## 3380  Heterosexual (straight)  Most of the time
## 3381  Heterosexual (straight)         Sometimes
## 3382  Heterosexual (straight)         Sometimes
## 3383  Heterosexual (straight)  Most of the time
## 3384                 Bisexual  Most of the time
## 3385  Heterosexual (straight)            Rarely
## 3386  Heterosexual (straight)             Never
## 3387  Heterosexual (straight)         Sometimes
## 3388  Heterosexual (straight)  Most of the time
## 3389  Heterosexual (straight)         Sometimes
## 3390  Heterosexual (straight)         Sometimes
## 3391  Heterosexual (straight)            Always
## 3392  Heterosexual (straight)            Rarely
## 3393  Heterosexual (straight)         Sometimes
## 3394  Heterosexual (straight)              <NA>
## 3395  Heterosexual (straight)         Sometimes
## 3396  Heterosexual (straight)            Rarely
## 3397  Heterosexual (straight)         Sometimes
## 3398  Heterosexual (straight)            Rarely
## 3399  Heterosexual (straight)            Rarely
## 3400  Heterosexual (straight)            Always
## 3401  Heterosexual (straight)             Never
## 3402  Heterosexual (straight)             Never
## 3403  Heterosexual (straight)             Never
## 3404  Heterosexual (straight)            Rarely
## 3405  Heterosexual (straight)             Never
## 3406  Heterosexual (straight)         Sometimes
## 3407  Heterosexual (straight)  Most of the time
## 3408           Gay or lesbian            Rarely
## 3409           Some other way            Always
## 3410  Heterosexual (straight)              <NA>
## 3411  Heterosexual (straight)             Never
## 3412  Heterosexual (straight)         Sometimes
## 3413  Heterosexual (straight)             Never
## 3414  Heterosexual (straight)  Most of the time
## 3415  Heterosexual (straight)            Rarely
## 3416  Heterosexual (straight)         Sometimes
## 3417  Heterosexual (straight)            Rarely
## 3418  Heterosexual (straight)            Rarely
## 3419  Heterosexual (straight)             Never
## 3420  Heterosexual (straight)  Most of the time
## 3421  Heterosexual (straight)             Never
## 3422  Heterosexual (straight)         Sometimes
## 3423  Heterosexual (straight)            Rarely
## 3424  Heterosexual (straight)         Sometimes
## 3425  Heterosexual (straight)            Rarely
## 3426  Heterosexual (straight)         Sometimes
## 3427                 Bisexual            Rarely
## 3428  Heterosexual (straight)            Rarely
## 3429  Heterosexual (straight)  Most of the time
## 3430           Some other way  Most of the time
## 3431  Heterosexual (straight)         Sometimes
## 3432  Heterosexual (straight)            Always
## 3433  Heterosexual (straight)  Most of the time
## 3434  Heterosexual (straight)         Sometimes
## 3435  Heterosexual (straight)  Most of the time
## 3436  Heterosexual (straight)            Rarely
## 3437                 Bisexual            Always
## 3438  Heterosexual (straight)            Always
## 3439  Heterosexual (straight)  Most of the time
## 3440  Heterosexual (straight)  Most of the time
## 3441  Heterosexual (straight)  Most of the time
## 3442  Heterosexual (straight)         Sometimes
## 3443  Heterosexual (straight)            Rarely
## 3444           Gay or lesbian            Always
## 3445  Heterosexual (straight)             Never
## 3446  Heterosexual (straight)  Most of the time
## 3447  Heterosexual (straight)  Most of the time
## 3448  Heterosexual (straight)            Always
## 3449  Heterosexual (straight)  Most of the time
## 3450           Some other way            Always
## 3451  Heterosexual (straight)             Never
## 3452  Heterosexual (straight)             Never
## 3453  Heterosexual (straight)            Rarely
## 3454  Heterosexual (straight)         Sometimes
## 3455  Heterosexual (straight)         Sometimes
## 3456                 Not sure            Always
## 3457  Heterosexual (straight)         Sometimes
## 3458  Heterosexual (straight)             Never
## 3459  Heterosexual (straight)             Never
## 3460  Heterosexual (straight)            Rarely
## 3461  Heterosexual (straight)             Never
## 3462  Heterosexual (straight)  Most of the time
## 3463  Heterosexual (straight)             Never
## 3464  Heterosexual (straight)            Rarely
## 3465                 Bisexual  Most of the time
## 3466                 Bisexual         Sometimes
## 3467                 Bisexual            Rarely
## 3468  Heterosexual (straight)            Rarely
## 3469  Heterosexual (straight)         Sometimes
## 3470  Heterosexual (straight)  Most of the time
## 3471  Heterosexual (straight)         Sometimes
## 3472  Heterosexual (straight)            Always
## 3473  Heterosexual (straight)         Sometimes
## 3474           Gay or lesbian  Most of the time
## 3475  Heterosexual (straight)         Sometimes
## 3476  Heterosexual (straight)             Never
## 3477  Heterosexual (straight)  Most of the time
## 3478  Heterosexual (straight)         Sometimes
## 3479  Heterosexual (straight)         Sometimes
## 3480  Heterosexual (straight)            Always
## 3481  Heterosexual (straight)            Rarely
## 3482  Heterosexual (straight)  Most of the time
## 3483  Heterosexual (straight)  Most of the time
## 3484  Heterosexual (straight)         Sometimes
## 3485                 Bisexual  Most of the time
## 3486  Heterosexual (straight)  Most of the time
## 3487                 Bisexual  Most of the time
## 3488  Heterosexual (straight)  Most of the time
## 3489  Heterosexual (straight)         Sometimes
## 3490           Some other way  Most of the time
## 3491           Some other way  Most of the time
## 3492  Heterosexual (straight)            Always
## 3493  Heterosexual (straight)         Sometimes
## 3494  Heterosexual (straight)            Rarely
## 3495  Heterosexual (straight)            Rarely
## 3496  Heterosexual (straight)         Sometimes
## 3497                 Not sure         Sometimes
## 3498  Heterosexual (straight)            Always
## 3499  Heterosexual (straight)  Most of the time
## 3500                 Bisexual  Most of the time
## 3501  Heterosexual (straight)         Sometimes
## 3502  Heterosexual (straight)             Never
## 3503                 Bisexual  Most of the time
## 3504  Heterosexual (straight)              <NA>
## 3505                 Bisexual  Most of the time
## 3506  Heterosexual (straight)         Sometimes
## 3507  Heterosexual (straight)  Most of the time
## 3508  Heterosexual (straight)  Most of the time
## 3509  Heterosexual (straight)  Most of the time
## 3510           Gay or lesbian            Rarely
## 3511  Heterosexual (straight)  Most of the time
## 3512           Some other way            Always
## 3513  Heterosexual (straight)         Sometimes
## 3514           Gay or lesbian  Most of the time
## 3515  Heterosexual (straight)  Most of the time
## 3516  Heterosexual (straight)            Rarely
## 3517  Heterosexual (straight)             Never
## 3518  Heterosexual (straight)              <NA>
## 3519                 Bisexual            Always
## 3520  Heterosexual (straight)  Most of the time
## 3521           Gay or lesbian  Most of the time
## 3522  Heterosexual (straight)            Rarely
## 3523  Heterosexual (straight)            Rarely
## 3524  Heterosexual (straight)            Rarely
## 3525  Heterosexual (straight)            Always
## 3526  Heterosexual (straight)  Most of the time
## 3527  Heterosexual (straight)         Sometimes
## 3528  Heterosexual (straight)            Rarely
## 3529  Heterosexual (straight)             Never
## 3530  Heterosexual (straight)  Most of the time
## 3531  Heterosexual (straight)         Sometimes
## 3532  Heterosexual (straight)         Sometimes
## 3533  Heterosexual (straight)            Always
## 3534  Heterosexual (straight)         Sometimes
## 3535  Heterosexual (straight)         Sometimes
## 3536  Heterosexual (straight)  Most of the time
## 3537  Heterosexual (straight)             Never
## 3538  Heterosexual (straight)             Never
## 3539  Heterosexual (straight)             Never
## 3540  Heterosexual (straight)            Rarely
## 3541                 Bisexual            Always
## 3542  Heterosexual (straight)            Rarely
## 3543  Heterosexual (straight)  Most of the time
## 3544  Heterosexual (straight)            Rarely
## 3545  Heterosexual (straight)  Most of the time
## 3546  Heterosexual (straight)  Most of the time
## 3547  Heterosexual (straight)             Never
## 3548  Heterosexual (straight)            Rarely
## 3549  Heterosexual (straight)            Rarely
## 3550  Heterosexual (straight)             Never
## 3551  Heterosexual (straight)            Rarely
## 3552  Heterosexual (straight)              <NA>
## 3553  Heterosexual (straight)  Most of the time
## 3554  Heterosexual (straight)            Rarely
## 3555  Heterosexual (straight)  Most of the time
## 3556  Heterosexual (straight)         Sometimes
## 3557                 Bisexual         Sometimes
## 3558                 Bisexual             Never
## 3559  Heterosexual (straight)  Most of the time
## 3560  Heterosexual (straight)         Sometimes
## 3561  Heterosexual (straight)         Sometimes
## 3562  Heterosexual (straight)         Sometimes
## 3563           Gay or lesbian         Sometimes
## 3564  Heterosexual (straight)             Never
## 3565  Heterosexual (straight)             Never
## 3566  Heterosexual (straight)  Most of the time
## 3567  Heterosexual (straight)         Sometimes
## 3568                 Bisexual  Most of the time
## 3569  Heterosexual (straight)         Sometimes
## 3570  Heterosexual (straight)             Never
## 3571  Heterosexual (straight)         Sometimes
## 3572  Heterosexual (straight)            Always
## 3573  Heterosexual (straight)             Never
## 3574  Heterosexual (straight)            Rarely
## 3575  Heterosexual (straight)            Rarely
## 3576                 Not sure             Never
## 3577  Heterosexual (straight)  Most of the time
## 3578                 Bisexual  Most of the time
## 3579  Heterosexual (straight)         Sometimes
## 3580  Heterosexual (straight)  Most of the time
## 3581  Heterosexual (straight)         Sometimes
## 3582  Heterosexual (straight)  Most of the time
## 3583  Heterosexual (straight)  Most of the time
## 3584  Heterosexual (straight)         Sometimes
## 3585  Heterosexual (straight)            Rarely
## 3586  Heterosexual (straight)  Most of the time
## 3587           Some other way            Rarely
## 3588  Heterosexual (straight)            Rarely
## 3589  Heterosexual (straight)             Never
## 3590                 Bisexual  Most of the time
## 3591  Heterosexual (straight)  Most of the time
## 3592  Heterosexual (straight)         Sometimes
## 3593  Heterosexual (straight)         Sometimes
## 3594  Heterosexual (straight)             Never
## 3595                 Bisexual  Most of the time
## 3596                 Bisexual  Most of the time
## 3597  Heterosexual (straight)         Sometimes
## 3598                 Bisexual  Most of the time
## 3599  Heterosexual (straight)         Sometimes
## 3600           Some other way            Always
## 3601  Heterosexual (straight)  Most of the time
## 3602  Heterosexual (straight)  Most of the time
## 3603  Heterosexual (straight)            Rarely
## 3604  Heterosexual (straight)         Sometimes
## 3605  Heterosexual (straight)            Rarely
## 3606  Heterosexual (straight)             Never
## 3607  Heterosexual (straight)  Most of the time
## 3608  Heterosexual (straight)            Always
## 3609                 Bisexual  Most of the time
## 3610           Some other way            Rarely
## 3611  Heterosexual (straight)            Always
## 3612                 Bisexual            Rarely
## 3613           Some other way            Always
## 3614                 Not sure            Always
## 3615  Heterosexual (straight)         Sometimes
## 3616  Heterosexual (straight)            Rarely
## 3617  Heterosexual (straight)         Sometimes
## 3618  Heterosexual (straight)            Always
## 3619  Heterosexual (straight)            Rarely
## 3620  Heterosexual (straight)            Rarely
## 3621  Heterosexual (straight)            Always
## 3622  Heterosexual (straight)            Always
## 3623  Heterosexual (straight)         Sometimes
## 3624           Some other way  Most of the time
## 3625  Heterosexual (straight)            Rarely
## 3626                 Not sure  Most of the time
## 3627  Heterosexual (straight)         Sometimes
## 3628  Heterosexual (straight)         Sometimes
## 3629  Heterosexual (straight)            Always
## 3630                 Bisexual  Most of the time
## 3631  Heterosexual (straight)         Sometimes
## 3632  Heterosexual (straight)            Rarely
## 3633  Heterosexual (straight)            Rarely
## 3634                 Bisexual            Rarely
## 3635  Heterosexual (straight)            Rarely
## 3636  Heterosexual (straight)             Never
## 3637  Heterosexual (straight)  Most of the time
## 3638  Heterosexual (straight)            Rarely
## 3639  Heterosexual (straight)  Most of the time
## 3640  Heterosexual (straight)            Rarely
## 3641  Heterosexual (straight)         Sometimes
## 3642  Heterosexual (straight)             Never
## 3643  Heterosexual (straight)            Rarely
## 3644  Heterosexual (straight)         Sometimes
## 3645  Heterosexual (straight)         Sometimes
## 3646  Heterosexual (straight)             Never
## 3647  Heterosexual (straight)             Never
## 3648  Heterosexual (straight)            Rarely
## 3649  Heterosexual (straight)         Sometimes
## 3650  Heterosexual (straight)            Rarely
## 3651  Heterosexual (straight)         Sometimes
## 3652  Heterosexual (straight)         Sometimes
## 3653  Heterosexual (straight)         Sometimes
## 3654  Heterosexual (straight)         Sometimes
## 3655                 Bisexual            Always
## 3656  Heterosexual (straight)         Sometimes
## 3657  Heterosexual (straight)            Rarely
## 3658  Heterosexual (straight)  Most of the time
## 3659           Some other way         Sometimes
## 3660  Heterosexual (straight)             Never
## 3661           Gay or lesbian         Sometimes
## 3662  Heterosexual (straight)  Most of the time
## 3663           Some other way  Most of the time
## 3664  Heterosexual (straight)             Never
## 3665  Heterosexual (straight)            Rarely
## 3666  Heterosexual (straight)            Rarely
## 3667  Heterosexual (straight)             Never
## 3668  Heterosexual (straight)            Rarely
## 3669  Heterosexual (straight)            Rarely
## 3670  Heterosexual (straight)              <NA>
## 3671  Heterosexual (straight)  Most of the time
## 3672  Heterosexual (straight)         Sometimes
## 3673                 Not sure            Always
## 3674  Heterosexual (straight)            Rarely
## 3675  Heterosexual (straight)         Sometimes
## 3676  Heterosexual (straight)            Rarely
## 3677  Heterosexual (straight)             Never
## 3678  Heterosexual (straight)             Never
## 3679                 Not sure         Sometimes
## 3680           Some other way         Sometimes
## 3681  Heterosexual (straight)            Rarely
## 3682  Heterosexual (straight)            Rarely
## 3683           Gay or lesbian         Sometimes
## 3684                 Bisexual         Sometimes
## 3685           Gay or lesbian              <NA>
## 3686  Heterosexual (straight)             Never
## 3687  Heterosexual (straight)             Never
## 3688  Heterosexual (straight)            Rarely
## 3689  Heterosexual (straight)            Rarely
## 3690  Heterosexual (straight)            Rarely
## 3691  Heterosexual (straight)         Sometimes
## 3692  Heterosexual (straight)         Sometimes
## 3693  Heterosexual (straight)         Sometimes
## 3694  Heterosexual (straight)         Sometimes
## 3695  Heterosexual (straight)            Rarely
## 3696  Heterosexual (straight)  Most of the time
## 3697           Some other way         Sometimes
## 3698  Heterosexual (straight)  Most of the time
## 3699  Heterosexual (straight)         Sometimes
## 3700  Heterosexual (straight)             Never
## 3701  Heterosexual (straight)         Sometimes
## 3702  Heterosexual (straight)         Sometimes
## 3703  Heterosexual (straight)            Rarely
## 3704                 Not sure            Rarely
## 3705  Heterosexual (straight)  Most of the time
## 3706  Heterosexual (straight)             Never
## 3707  Heterosexual (straight)  Most of the time
## 3708  Heterosexual (straight)             Never
## 3709                 Not sure              <NA>
## 3710                 Bisexual         Sometimes
## 3711  Heterosexual (straight)             Never
## 3712  Heterosexual (straight)            Rarely
## 3713  Heterosexual (straight)  Most of the time
## 3714  Heterosexual (straight)            Rarely
## 3715  Heterosexual (straight)            Rarely
## 3716  Heterosexual (straight)         Sometimes
## 3717  Heterosexual (straight)            Rarely
## 3718  Heterosexual (straight)             Never
## 3719  Heterosexual (straight)            Rarely
## 3720  Heterosexual (straight)             Never
## 3721  Heterosexual (straight)            Rarely
## 3722  Heterosexual (straight)  Most of the time
## 3723  Heterosexual (straight)            Rarely
## 3724  Heterosexual (straight)             Never
## 3725  Heterosexual (straight)            Rarely
## 3726  Heterosexual (straight)             Never
## 3727  Heterosexual (straight)            Rarely
## 3728  Heterosexual (straight)             Never
## 3729  Heterosexual (straight)         Sometimes
## 3730                 Bisexual              <NA>
## 3731  Heterosexual (straight)             Never
## 3732  Heterosexual (straight)            Always
## 3733  Heterosexual (straight)            Rarely
## 3734  Heterosexual (straight)         Sometimes
## 3735  Heterosexual (straight)         Sometimes
## 3736  Heterosexual (straight)         Sometimes
## 3737  Heterosexual (straight)             Never
## 3738  Heterosexual (straight)             Never
## 3739  Heterosexual (straight)             Never
## 3740  Heterosexual (straight)            Rarely
## 3741  Heterosexual (straight)         Sometimes
## 3742  Heterosexual (straight)             Never
## 3743  Heterosexual (straight)  Most of the time
## 3744  Heterosexual (straight)             Never
## 3745  Heterosexual (straight)            Rarely
## 3746  Heterosexual (straight)             Never
## 3747  Heterosexual (straight)             Never
## 3748  Heterosexual (straight)         Sometimes
## 3749  Heterosexual (straight)             Never
## 3750  Heterosexual (straight)             Never
## 3751  Heterosexual (straight)             Never
## 3752  Heterosexual (straight)            Rarely
## 3753  Heterosexual (straight)             Never
## 3754  Heterosexual (straight)             Never
## 3755  Heterosexual (straight)            Rarely
## 3756                 Bisexual  Most of the time
## 3757                 Bisexual         Sometimes
## 3758  Heterosexual (straight)         Sometimes
## 3759  Heterosexual (straight)            Rarely
## 3760  Heterosexual (straight)         Sometimes
## 3761  Heterosexual (straight)         Sometimes
## 3762  Heterosexual (straight)         Sometimes
## 3763  Heterosexual (straight)             Never
## 3764  Heterosexual (straight)            Rarely
## 3765  Heterosexual (straight)         Sometimes
## 3766  Heterosexual (straight)             Never
## 3767  Heterosexual (straight)         Sometimes
## 3768  Heterosexual (straight)         Sometimes
## 3769  Heterosexual (straight)             Never
## 3770  Heterosexual (straight)  Most of the time
## 3771  Heterosexual (straight)  Most of the time
## 3772  Heterosexual (straight)         Sometimes
## 3773  Heterosexual (straight)  Most of the time
## 3774  Heterosexual (straight)         Sometimes
## 3775  Heterosexual (straight)             Never
## 3776  Heterosexual (straight)            Always
## 3777  Heterosexual (straight)            Rarely
## 3778  Heterosexual (straight)            Rarely
## 3779                 Not sure         Sometimes
## 3780  Heterosexual (straight)            Rarely
## 3781           Gay or lesbian  Most of the time
## 3782  Heterosexual (straight)  Most of the time
## 3783  Heterosexual (straight)            Rarely
## 3784           Gay or lesbian  Most of the time
## 3785  Heterosexual (straight)  Most of the time
## 3786                 Bisexual         Sometimes
## 3787  Heterosexual (straight)  Most of the time
## 3788  Heterosexual (straight)         Sometimes
## 3789  Heterosexual (straight)             Never
## 3790  Heterosexual (straight)  Most of the time
## 3791  Heterosexual (straight)            Rarely
## 3792  Heterosexual (straight)         Sometimes
## 3793  Heterosexual (straight)  Most of the time
## 3794  Heterosexual (straight)            Rarely
## 3795                 Bisexual         Sometimes
## 3796  Heterosexual (straight)         Sometimes
## 3797  Heterosexual (straight)  Most of the time
## 3798  Heterosexual (straight)         Sometimes
## 3799  Heterosexual (straight)  Most of the time
## 3800                 Not sure             Never
## 3801  Heterosexual (straight)            Rarely
## 3802  Heterosexual (straight)             Never
## 3803  Heterosexual (straight)            Always
## 3804  Heterosexual (straight)            Rarely
## 3805  Heterosexual (straight)         Sometimes
## 3806  Heterosexual (straight)         Sometimes
## 3807  Heterosexual (straight)         Sometimes
## 3808                 Bisexual  Most of the time
## 3809  Heterosexual (straight)            Rarely
## 3810  Heterosexual (straight)         Sometimes
## 3811  Heterosexual (straight)             Never
## 3812  Heterosexual (straight)         Sometimes
## 3813  Heterosexual (straight)            Rarely
## 3814  Heterosexual (straight)         Sometimes
## 3815                 Bisexual  Most of the time
## 3816  Heterosexual (straight)  Most of the time
## 3817  Heterosexual (straight)             Never
## 3818  Heterosexual (straight)  Most of the time
## 3819  Heterosexual (straight)             Never
## 3820                 Bisexual            Rarely
## 3821  Heterosexual (straight)         Sometimes
## 3822  Heterosexual (straight)             Never
## 3823  Heterosexual (straight)         Sometimes
## 3824  Heterosexual (straight)            Rarely
## 3825  Heterosexual (straight)  Most of the time
## 3826  Heterosexual (straight)            Rarely
## 3827  Heterosexual (straight)         Sometimes
## 3828  Heterosexual (straight)         Sometimes
## 3829  Heterosexual (straight)            Rarely
## 3830           Some other way            Rarely
## 3831           Gay or lesbian  Most of the time
## 3832  Heterosexual (straight)             Never
## 3833  Heterosexual (straight)            Rarely
## 3834  Heterosexual (straight)  Most of the time
## 3835                 Bisexual  Most of the time
## 3836  Heterosexual (straight)             Never
## 3837                 Bisexual         Sometimes
## 3838                 Bisexual  Most of the time
## 3839  Heterosexual (straight)             Never
## 3840           Gay or lesbian             Never
## 3841  Heterosexual (straight)  Most of the time
## 3842  Heterosexual (straight)            Rarely
## 3843  Heterosexual (straight)             Never
## 3844  Heterosexual (straight)            Rarely
## 3845  Heterosexual (straight)            Rarely
## 3846           Some other way            Rarely
## 3847           Gay or lesbian            Always
## 3848  Heterosexual (straight)         Sometimes
## 3849           Some other way         Sometimes
## 3850  Heterosexual (straight)            Always
## 3851  Heterosexual (straight)            Rarely
## 3852  Heterosexual (straight)         Sometimes
## 3853  Heterosexual (straight)  Most of the time
## 3854  Heterosexual (straight)            Always
## 3855  Heterosexual (straight)             Never
## 3856  Heterosexual (straight)            Rarely
## 3857  Heterosexual (straight)            Rarely
## 3858  Heterosexual (straight)            Always
## 3859                 Bisexual              <NA>
## 3860           Some other way  Most of the time
## 3861  Heterosexual (straight)         Sometimes
## 3862  Heterosexual (straight)             Never
## 3863  Heterosexual (straight)         Sometimes
## 3864  Heterosexual (straight)         Sometimes
## 3865  Heterosexual (straight)         Sometimes
## 3866  Heterosexual (straight)             Never
## 3867  Heterosexual (straight)             Never
## 3868  Heterosexual (straight)            Rarely
## 3869  Heterosexual (straight)            Rarely
## 3870  Heterosexual (straight)            Rarely
## 3871  Heterosexual (straight)  Most of the time
## 3872  Heterosexual (straight)            Always
## 3873  Heterosexual (straight)            Rarely
## 3874  Heterosexual (straight)         Sometimes
## 3875  Heterosexual (straight)            Rarely
## 3876  Heterosexual (straight)            Always
## 3877  Heterosexual (straight)            Rarely
## 3878  Heterosexual (straight)         Sometimes
## 3879  Heterosexual (straight)         Sometimes
## 3880  Heterosexual (straight)         Sometimes
## 3881  Heterosexual (straight)         Sometimes
## 3882                 Not sure              <NA>
## 3883  Heterosexual (straight)            Rarely
## 3884  Heterosexual (straight)         Sometimes
## 3885  Heterosexual (straight)             Never
## 3886  Heterosexual (straight)            Rarely
## 3887  Heterosexual (straight)         Sometimes
## 3888  Heterosexual (straight)         Sometimes
## 3889                 Not sure  Most of the time
## 3890  Heterosexual (straight)            Rarely
## 3891  Heterosexual (straight)            Always
## 3892  Heterosexual (straight)            Rarely
## 3893  Heterosexual (straight)         Sometimes
## 3894  Heterosexual (straight)             Never
## 3895  Heterosexual (straight)         Sometimes
## 3896  Heterosexual (straight)  Most of the time
## 3897  Heterosexual (straight)  Most of the time
## 3898  Heterosexual (straight)         Sometimes
## 3899  Heterosexual (straight)         Sometimes
## 3900  Heterosexual (straight)  Most of the time
## 3901                 Bisexual         Sometimes
## 3902  Heterosexual (straight)         Sometimes
## 3903                 Bisexual  Most of the time
## 3904  Heterosexual (straight)         Sometimes
## 3905  Heterosexual (straight)  Most of the time
## 3906  Heterosexual (straight)         Sometimes
## 3907  Heterosexual (straight)             Never
## 3908  Heterosexual (straight)             Never
## 3909  Heterosexual (straight)  Most of the time
## 3910  Heterosexual (straight)         Sometimes
## 3911                 Bisexual            Always
## 3912  Heterosexual (straight)         Sometimes
## 3913  Heterosexual (straight)              <NA>
## 3914  Heterosexual (straight)         Sometimes
## 3915  Heterosexual (straight)         Sometimes
## 3916  Heterosexual (straight)  Most of the time
## 3917  Heterosexual (straight)             Never
## 3918  Heterosexual (straight)            Rarely
## 3919  Heterosexual (straight)             Never
## 3920  Heterosexual (straight)         Sometimes
## 3921  Heterosexual (straight)         Sometimes
## 3922           Some other way  Most of the time
## 3923  Heterosexual (straight)             Never
## 3924  Heterosexual (straight)  Most of the time
## 3925  Heterosexual (straight)         Sometimes
## 3926  Heterosexual (straight)            Rarely
## 3927  Heterosexual (straight)            Rarely
## 3928  Heterosexual (straight)         Sometimes
## 3929  Heterosexual (straight)             Never
## 3930  Heterosexual (straight)            Rarely
## 3931  Heterosexual (straight)  Most of the time
## 3932  Heterosexual (straight)         Sometimes
## 3933                 Bisexual  Most of the time
## 3934  Heterosexual (straight)            Rarely
## 3935  Heterosexual (straight)            Rarely
## 3936  Heterosexual (straight)            Rarely
## 3937  Heterosexual (straight)             Never
## 3938  Heterosexual (straight)  Most of the time
## 3939  Heterosexual (straight)            Rarely
## 3940  Heterosexual (straight)             Never
## 3941  Heterosexual (straight)             Never
## 3942  Heterosexual (straight)  Most of the time
## 3943  Heterosexual (straight)  Most of the time
## 3944           Gay or lesbian  Most of the time
## 3945  Heterosexual (straight)            Rarely
## 3946  Heterosexual (straight)         Sometimes
## 3947  Heterosexual (straight)            Rarely
## 3948  Heterosexual (straight)             Never
## 3949  Heterosexual (straight)            Rarely
## 3950                 Not sure  Most of the time
## 3951  Heterosexual (straight)         Sometimes
## 3952  Heterosexual (straight)         Sometimes
## 3953  Heterosexual (straight)            Rarely
## 3954  Heterosexual (straight)         Sometimes
## 3955  Heterosexual (straight)         Sometimes
## 3956  Heterosexual (straight)         Sometimes
## 3957  Heterosexual (straight)  Most of the time
## 3958  Heterosexual (straight)         Sometimes
## 3959  Heterosexual (straight)            Rarely
## 3960  Heterosexual (straight)         Sometimes
## 3961  Heterosexual (straight)  Most of the time
## 3962  Heterosexual (straight)            Rarely
## 3963                 Bisexual             Never
## 3964  Heterosexual (straight)  Most of the time
## 3965  Heterosexual (straight)              <NA>
## 3966           Some other way            Always
## 3967  Heterosexual (straight)  Most of the time
## 3968  Heterosexual (straight)             Never
## 3969  Heterosexual (straight)  Most of the time
## 3970  Heterosexual (straight)             Never
## 3971  Heterosexual (straight)  Most of the time
## 3972  Heterosexual (straight)            Always
## 3973  Heterosexual (straight)              <NA>
## 3974                 Bisexual  Most of the time
## 3975  Heterosexual (straight)         Sometimes
## 3976  Heterosexual (straight)         Sometimes
## 3977  Heterosexual (straight)            Rarely
## 3978  Heterosexual (straight)         Sometimes
## 3979  Heterosexual (straight)  Most of the time
## 3980           Some other way            Rarely
## 3981  Heterosexual (straight)             Never
## 3982  Heterosexual (straight)  Most of the time
## 3983                 Bisexual  Most of the time
## 3984  Heterosexual (straight)            Always
## 3985  Heterosexual (straight)         Sometimes
## 3986  Heterosexual (straight)  Most of the time
## 3987                 Bisexual            Always
## 3988  Heterosexual (straight)              <NA>
## 3989  Heterosexual (straight)  Most of the time
## 3990  Heterosexual (straight)         Sometimes
## 3991                 Bisexual         Sometimes
## 3992  Heterosexual (straight)  Most of the time
## 3993                 Bisexual            Always
## 3994  Heterosexual (straight)             Never
## 3995  Heterosexual (straight)         Sometimes
## 3996  Heterosexual (straight)              <NA>
## 3997  Heterosexual (straight)         Sometimes
## 3998  Heterosexual (straight)             Never
## 3999  Heterosexual (straight)  Most of the time
## 4000  Heterosexual (straight)            Rarely
## 4001  Heterosexual (straight)            Rarely
## 4002  Heterosexual (straight)              <NA>
## 4003  Heterosexual (straight)            Rarely
## 4004  Heterosexual (straight)            Rarely
## 4005                 Not sure         Sometimes
## 4006                 Not sure  Most of the time
## 4007  Heterosexual (straight)              <NA>
## 4008  Heterosexual (straight)         Sometimes
## 4009  Heterosexual (straight)         Sometimes
## 4010  Heterosexual (straight)  Most of the time
## 4011  Heterosexual (straight)            Rarely
## 4012  Heterosexual (straight)            Always
## 4013           Gay or lesbian         Sometimes
## 4014  Heterosexual (straight)         Sometimes
## 4015                 Bisexual         Sometimes
## 4016                 Not sure  Most of the time
## 4017  Heterosexual (straight)         Sometimes
## 4018           Gay or lesbian         Sometimes
## 4019  Heterosexual (straight)            Rarely
## 4020  Heterosexual (straight)  Most of the time
## 4021  Heterosexual (straight)            Rarely
## 4022  Heterosexual (straight)            Rarely
## 4023  Heterosexual (straight)            Rarely
## 4024           Some other way              <NA>
## 4025  Heterosexual (straight)         Sometimes
## 4026                 Not sure         Sometimes
## 4027  Heterosexual (straight)         Sometimes
## 4028  Heterosexual (straight)             Never
## 4029  Heterosexual (straight)            Rarely
## 4030                 Not sure         Sometimes
## 4031  Heterosexual (straight)             Never
## 4032  Heterosexual (straight)              <NA>
## 4033  Heterosexual (straight)             Never
## 4034                 Bisexual  Most of the time
## 4035  Heterosexual (straight)  Most of the time
## 4036  Heterosexual (straight)             Never
## 4037  Heterosexual (straight)            Rarely
## 4038  Heterosexual (straight)         Sometimes
## 4039  Heterosexual (straight)            Always
## 4040  Heterosexual (straight)             Never
## 4041  Heterosexual (straight)             Never
## 4042           Some other way              <NA>
## 4043  Heterosexual (straight)         Sometimes
## 4044                 Bisexual  Most of the time
## 4045           Gay or lesbian              <NA>
## 4046  Heterosexual (straight)  Most of the time
## 4047  Heterosexual (straight)         Sometimes
## 4048  Heterosexual (straight)            Rarely
## 4049  Heterosexual (straight)  Most of the time
## 4050  Heterosexual (straight)              <NA>
## 4051                 Not sure  Most of the time
## 4052  Heterosexual (straight)         Sometimes
## 4053  Heterosexual (straight)  Most of the time
## 4054  Heterosexual (straight)         Sometimes
## 4055                 Bisexual            Always
## 4056  Heterosexual (straight)         Sometimes
## 4057  Heterosexual (straight)  Most of the time
## 4058  Heterosexual (straight)              <NA>
## 4059  Heterosexual (straight)            Rarely
## 4060                 Bisexual  Most of the time
## 4061  Heterosexual (straight)              <NA>
## 4062  Heterosexual (straight)             Never
## 4063  Heterosexual (straight)         Sometimes
## 4064                 Bisexual  Most of the time
## 4065  Heterosexual (straight)            Rarely
## 4066  Heterosexual (straight)         Sometimes
## 4067  Heterosexual (straight)            Rarely
## 4068  Heterosexual (straight)  Most of the time
## 4069  Heterosexual (straight)              <NA>
## 4070  Heterosexual (straight)  Most of the time
## 4071  Heterosexual (straight)         Sometimes
## 4072  Heterosexual (straight)             Never
## 4073  Heterosexual (straight)  Most of the time
## 4074  Heterosexual (straight)            Always
## 4075  Heterosexual (straight)         Sometimes
## 4076  Heterosexual (straight)         Sometimes
## 4077  Heterosexual (straight)            Rarely
## 4078           Gay or lesbian            Always
## 4079           Gay or lesbian            Rarely
## 4080  Heterosexual (straight)             Never
## 4081  Heterosexual (straight)  Most of the time
## 4082  Heterosexual (straight)         Sometimes
## 4083  Heterosexual (straight)         Sometimes
## 4084           Some other way         Sometimes
## 4085           Some other way            Rarely
## 4086                 Bisexual              <NA>
## 4087  Heterosexual (straight)            Rarely
## 4088  Heterosexual (straight)             Never
## 4089  Heterosexual (straight)            Rarely
## 4090  Heterosexual (straight)  Most of the time
## 4091           Some other way              <NA>
## 4092  Heterosexual (straight)             Never
## 4093  Heterosexual (straight)            Rarely
## 4094  Heterosexual (straight)             Never
## 4095  Heterosexual (straight)  Most of the time
## 4096  Heterosexual (straight)         Sometimes
## 4097  Heterosexual (straight)  Most of the time
## 4098  Heterosexual (straight)              <NA>
## 4099  Heterosexual (straight)             Never
## 4100  Heterosexual (straight)              <NA>
## 4101  Heterosexual (straight)  Most of the time
## 4102  Heterosexual (straight)             Never
## 4103  Heterosexual (straight)  Most of the time
## 4104  Heterosexual (straight)            Rarely
## 4105  Heterosexual (straight)              <NA>
## 4106  Heterosexual (straight)             Never
## 4107  Heterosexual (straight)  Most of the time
## 4108  Heterosexual (straight)  Most of the time
## 4109  Heterosexual (straight)  Most of the time
## 4110  Heterosexual (straight)         Sometimes
## 4111  Heterosexual (straight)             Never
## 4112  Heterosexual (straight)  Most of the time
## 4113  Heterosexual (straight)         Sometimes
## 4114  Heterosexual (straight)              <NA>
## 4115  Heterosexual (straight)             Never
## 4116  Heterosexual (straight)  Most of the time
## 4117  Heterosexual (straight)             Never
## 4118                 Bisexual         Sometimes
## 4119  Heterosexual (straight)            Rarely
## 4120  Heterosexual (straight)             Never
## 4121  Heterosexual (straight)              <NA>
## 4122  Heterosexual (straight)  Most of the time
## 4123  Heterosexual (straight)              <NA>
## 4124  Heterosexual (straight)  Most of the time
## 4125           Some other way  Most of the time
## 4126                 Bisexual         Sometimes
## 4127  Heterosexual (straight)  Most of the time
## 4128  Heterosexual (straight)              <NA>
## 4129  Heterosexual (straight)         Sometimes
## 4130  Heterosexual (straight)         Sometimes
## 4131  Heterosexual (straight)             Never
## 4132                 Not sure            Always
## 4133  Heterosexual (straight)         Sometimes
## 4134  Heterosexual (straight)            Always
## 4135  Heterosexual (straight)            Rarely
## 4136  Heterosexual (straight)            Rarely
## 4137                 Bisexual         Sometimes
## 4138  Heterosexual (straight)            Rarely
## 4139  Heterosexual (straight)         Sometimes
## 4140  Heterosexual (straight)             Never
## 4141  Heterosexual (straight)            Always
## 4142                 Bisexual  Most of the time
## 4143  Heterosexual (straight)         Sometimes
## 4144  Heterosexual (straight)         Sometimes
## 4145                 Bisexual  Most of the time
## 4146  Heterosexual (straight)             Never
## 4147  Heterosexual (straight)            Always
## 4148  Heterosexual (straight)            Always
## 4149  Heterosexual (straight)  Most of the time
## 4150  Heterosexual (straight)         Sometimes
## 4151  Heterosexual (straight)         Sometimes
## 4152  Heterosexual (straight)              <NA>
## 4153  Heterosexual (straight)             Never
## 4154  Heterosexual (straight)            Rarely
## 4155  Heterosexual (straight)             Never
## 4156  Heterosexual (straight)  Most of the time
## 4157  Heterosexual (straight)  Most of the time
## 4158  Heterosexual (straight)            Rarely
## 4159  Heterosexual (straight)             Never
## 4160  Heterosexual (straight)         Sometimes
## 4161  Heterosexual (straight)  Most of the time
## 4162  Heterosexual (straight)         Sometimes
## 4163                 Bisexual         Sometimes
## 4164  Heterosexual (straight)         Sometimes
## 4165  Heterosexual (straight)         Sometimes
## 4166  Heterosexual (straight)  Most of the time
## 4167           Gay or lesbian  Most of the time
## 4168  Heterosexual (straight)            Rarely
## 4169  Heterosexual (straight)            Rarely
## 4170  Heterosexual (straight)         Sometimes
## 4171  Heterosexual (straight)            Rarely
## 4172  Heterosexual (straight)         Sometimes
## 4173  Heterosexual (straight)             Never
## 4174  Heterosexual (straight)             Never
## 4175  Heterosexual (straight)            Rarely
## 4176  Heterosexual (straight)            Rarely
## 4177  Heterosexual (straight)         Sometimes
## 4178  Heterosexual (straight)            Rarely
## 4179  Heterosexual (straight)  Most of the time
## 4180  Heterosexual (straight)            Rarely
## 4181  Heterosexual (straight)              <NA>
## 4182  Heterosexual (straight)  Most of the time
## 4183  Heterosexual (straight)             Never
## 4184  Heterosexual (straight)         Sometimes
## 4185  Heterosexual (straight)         Sometimes
## 4186                 Not sure            Always
## 4187  Heterosexual (straight)            Rarely
## 4188           Gay or lesbian  Most of the time
## 4189  Heterosexual (straight)            Rarely
## 4190  Heterosexual (straight)            Rarely
## 4191  Heterosexual (straight)            Always
## 4192  Heterosexual (straight)         Sometimes
## 4193                 Not sure            Always
## 4194  Heterosexual (straight)             Never
## 4195  Heterosexual (straight)            Always
## 4196  Heterosexual (straight)             Never
## 4197  Heterosexual (straight)         Sometimes
## 4198  Heterosexual (straight)         Sometimes
## 4199  Heterosexual (straight)            Rarely
## 4200                 Bisexual  Most of the time
## 4201  Heterosexual (straight)  Most of the time
## 4202  Heterosexual (straight)  Most of the time
## 4203  Heterosexual (straight)             Never
## 4204                 Bisexual  Most of the time
## 4205  Heterosexual (straight)         Sometimes
## 4206  Heterosexual (straight)         Sometimes
## 4207  Heterosexual (straight)            Rarely
## 4208  Heterosexual (straight)  Most of the time
## 4209  Heterosexual (straight)  Most of the time
## 4210  Heterosexual (straight)             Never
## 4211  Heterosexual (straight)         Sometimes
## 4212  Heterosexual (straight)             Never
## 4213  Heterosexual (straight)  Most of the time
## 4214  Heterosexual (straight)         Sometimes
## 4215  Heterosexual (straight)         Sometimes
## 4216  Heterosexual (straight)             Never
## 4217  Heterosexual (straight)  Most of the time
## 4218  Heterosexual (straight)              <NA>
## 4219                 Bisexual            Rarely
## 4220  Heterosexual (straight)              <NA>
## 4221  Heterosexual (straight)            Rarely
## 4222  Heterosexual (straight)            Rarely
## 4223  Heterosexual (straight)  Most of the time
## 4224  Heterosexual (straight)             Never
## 4225  Heterosexual (straight)            Rarely
## 4226                 Bisexual  Most of the time
## 4227  Heterosexual (straight)            Always
## 4228  Heterosexual (straight)             Never
## 4229  Heterosexual (straight)              <NA>
## 4230  Heterosexual (straight)         Sometimes
## 4231  Heterosexual (straight)              <NA>
## 4232                 Bisexual            Always
## 4233  Heterosexual (straight)            Rarely
## 4234  Heterosexual (straight)             Never
## 4235                 Bisexual              <NA>
## 4236  Heterosexual (straight)             Never
## 4237  Heterosexual (straight)             Never
## 4238                 Bisexual  Most of the time
## 4239  Heterosexual (straight)              <NA>
## 4240                 Bisexual              <NA>
## 4241                 Bisexual  Most of the time
## 4242                 Bisexual            Always
## 4243                 Bisexual             Never
## 4244  Heterosexual (straight)  Most of the time
## 4245  Heterosexual (straight)             Never
## 4246  Heterosexual (straight)             Never
## 4247  Heterosexual (straight)         Sometimes
## 4248                 Bisexual         Sometimes
## 4249                 Not sure         Sometimes
## 4250  Heterosexual (straight)            Rarely
## 4251  Heterosexual (straight)         Sometimes
## 4252  Heterosexual (straight)             Never
## 4253  Heterosexual (straight)         Sometimes
## 4254  Heterosexual (straight)         Sometimes
## 4255                 Not sure            Always
## 4256  Heterosexual (straight)         Sometimes
## 4257  Heterosexual (straight)         Sometimes
## 4258  Heterosexual (straight)         Sometimes
## 4259                 Bisexual            Always
## 4260  Heterosexual (straight)            Rarely
## 4261  Heterosexual (straight)             Never
## 4262  Heterosexual (straight)             Never
## 4263  Heterosexual (straight)         Sometimes
## 4264  Heterosexual (straight)             Never
## 4265                 Not sure  Most of the time
## 4266  Heterosexual (straight)         Sometimes
## 4267  Heterosexual (straight)         Sometimes
## 4268  Heterosexual (straight)             Never
## 4269  Heterosexual (straight)  Most of the time
## 4270  Heterosexual (straight)  Most of the time
## 4271  Heterosexual (straight)             Never
## 4272  Heterosexual (straight)             Never
## 4273  Heterosexual (straight)            Always
## 4274  Heterosexual (straight)         Sometimes
## 4275  Heterosexual (straight)         Sometimes
## 4276  Heterosexual (straight)  Most of the time
## 4277  Heterosexual (straight)         Sometimes
## 4278  Heterosexual (straight)            Rarely
## 4279  Heterosexual (straight)             Never
## 4280  Heterosexual (straight)  Most of the time
## 4281  Heterosexual (straight)         Sometimes
## 4282  Heterosexual (straight)  Most of the time
## 4283  Heterosexual (straight)            Rarely
## 4284  Heterosexual (straight)         Sometimes
## 4285  Heterosexual (straight)             Never
## 4286  Heterosexual (straight)         Sometimes
## 4287  Heterosexual (straight)         Sometimes
## 4288  Heterosexual (straight)             Never
## 4289  Heterosexual (straight)             Never
## 4290  Heterosexual (straight)            Rarely
## 4291  Heterosexual (straight)            Rarely
## 4292  Heterosexual (straight)            Rarely
## 4293  Heterosexual (straight)             Never
## 4294                 Bisexual  Most of the time
## 4295  Heterosexual (straight)             Never
## 4296                 Bisexual         Sometimes
## 4297  Heterosexual (straight)         Sometimes
## 4298                 Not sure  Most of the time
## 4299           Some other way            Rarely
## 4300  Heterosexual (straight)             Never
## 4301  Heterosexual (straight)         Sometimes
## 4302  Heterosexual (straight)         Sometimes
## 4303  Heterosexual (straight)  Most of the time
## 4304  Heterosexual (straight)         Sometimes
## 4305  Heterosexual (straight)         Sometimes
## 4306  Heterosexual (straight)  Most of the time
## 4307  Heterosexual (straight)         Sometimes
## 4308  Heterosexual (straight)         Sometimes
## 4309           Some other way         Sometimes
## 4310  Heterosexual (straight)         Sometimes
## 4311  Heterosexual (straight)            Rarely
## 4312  Heterosexual (straight)            Rarely
## 4313  Heterosexual (straight)             Never
## 4314  Heterosexual (straight)            Rarely
## 4315  Heterosexual (straight)  Most of the time
## 4316  Heterosexual (straight)         Sometimes
## 4317  Heterosexual (straight)            Rarely
## 4318  Heterosexual (straight)  Most of the time
## 4319                 Not sure  Most of the time
## 4320  Heterosexual (straight)         Sometimes
## 4321  Heterosexual (straight)            Rarely
## 4322  Heterosexual (straight)            Rarely
## 4323  Heterosexual (straight)         Sometimes
## 4324  Heterosexual (straight)         Sometimes
## 4325  Heterosexual (straight)            Always
## 4326  Heterosexual (straight)         Sometimes
## 4327  Heterosexual (straight)         Sometimes
## 4328  Heterosexual (straight)         Sometimes
## 4329  Heterosexual (straight)            Always
## 4330  Heterosexual (straight)         Sometimes
## 4331  Heterosexual (straight)         Sometimes
## 4332  Heterosexual (straight)            Always
## 4333  Heterosexual (straight)             Never
## 4334  Heterosexual (straight)         Sometimes
## 4335  Heterosexual (straight)             Never
## 4336  Heterosexual (straight)  Most of the time
## 4337  Heterosexual (straight)         Sometimes
## 4338                 Not sure            Always
## 4339  Heterosexual (straight)         Sometimes
## 4340  Heterosexual (straight)         Sometimes
## 4341  Heterosexual (straight)             Never
## 4342           Some other way            Always
## 4343  Heterosexual (straight)  Most of the time
## 4344  Heterosexual (straight)            Rarely
## 4345  Heterosexual (straight)             Never
## 4346  Heterosexual (straight)            Rarely
## 4347  Heterosexual (straight)             Never
## 4348  Heterosexual (straight)         Sometimes
## 4349  Heterosexual (straight)  Most of the time
## 4350  Heterosexual (straight)  Most of the time
## 4351  Heterosexual (straight)         Sometimes
## 4352  Heterosexual (straight)             Never
## 4353  Heterosexual (straight)  Most of the time
## 4354  Heterosexual (straight)            Rarely
## 4355  Heterosexual (straight)         Sometimes
## 4356           Some other way  Most of the time
## 4357  Heterosexual (straight)            Always
## 4358           Some other way         Sometimes
## 4359  Heterosexual (straight)            Rarely
## 4360  Heterosexual (straight)             Never
## 4361  Heterosexual (straight)             Never
## 4362  Heterosexual (straight)            Rarely
## 4363  Heterosexual (straight)         Sometimes
## 4364  Heterosexual (straight)            Rarely
## 4365           Gay or lesbian             Never
## 4366  Heterosexual (straight)            Rarely
## 4367  Heterosexual (straight)             Never
## 4368  Heterosexual (straight)            Rarely
## 4369  Heterosexual (straight)             Never
## 4370  Heterosexual (straight)         Sometimes
## 4371  Heterosexual (straight)         Sometimes
## 4372  Heterosexual (straight)            Rarely
## 4373  Heterosexual (straight)  Most of the time
## 4374  Heterosexual (straight)            Rarely
## 4375  Heterosexual (straight)            Rarely
## 4376                 Bisexual  Most of the time
## 4377  Heterosexual (straight)         Sometimes
## 4378  Heterosexual (straight)             Never
## 4379  Heterosexual (straight)         Sometimes
## 4380  Heterosexual (straight)         Sometimes
## 4381  Heterosexual (straight)  Most of the time
## 4382  Heterosexual (straight)  Most of the time
## 4383  Heterosexual (straight)         Sometimes
## 4384           Some other way  Most of the time
## 4385  Heterosexual (straight)             Never
## 4386  Heterosexual (straight)  Most of the time
## 4387  Heterosexual (straight)  Most of the time
## 4388  Heterosexual (straight)            Rarely
## 4389  Heterosexual (straight)         Sometimes
## 4390  Heterosexual (straight)            Rarely
## 4391           Some other way         Sometimes
## 4392  Heterosexual (straight)         Sometimes
## 4393  Heterosexual (straight)         Sometimes
## 4394  Heterosexual (straight)             Never
## 4395  Heterosexual (straight)            Rarely
## 4396           Gay or lesbian  Most of the time
## 4397                 Bisexual            Always
## 4398  Heterosexual (straight)  Most of the time
## 4399  Heterosexual (straight)             Never
## 4400  Heterosexual (straight)  Most of the time
## 4401  Heterosexual (straight)  Most of the time
## 4402  Heterosexual (straight)            Rarely
## 4403  Heterosexual (straight)  Most of the time
## 4404                 Bisexual            Rarely
## 4405  Heterosexual (straight)         Sometimes
## 4406  Heterosexual (straight)             Never
## 4407  Heterosexual (straight)  Most of the time
## 4408  Heterosexual (straight)            Always
## 4409  Heterosexual (straight)         Sometimes
## 4410                 Bisexual  Most of the time
## 4411           Some other way  Most of the time
## 4412                 Bisexual         Sometimes
## 4413  Heterosexual (straight)         Sometimes
## 4414  Heterosexual (straight)         Sometimes
## 4415  Heterosexual (straight)             Never
## 4416  Heterosexual (straight)             Never
## 4417  Heterosexual (straight)  Most of the time
## 4418  Heterosexual (straight)  Most of the time
## 4419                 Bisexual  Most of the time
## 4420  Heterosexual (straight)            Rarely
## 4421           Gay or lesbian            Always
## 4422                 Bisexual         Sometimes
## 4423  Heterosexual (straight)            Always
## 4424  Heterosexual (straight)            Always
## 4425           Some other way  Most of the time
## 4426  Heterosexual (straight)         Sometimes
## 4427           Some other way         Sometimes
## 4428  Heterosexual (straight)  Most of the time
## 4429  Heterosexual (straight)  Most of the time
## 4430  Heterosexual (straight)            Rarely
## 4431  Heterosexual (straight)            Rarely
## 4432  Heterosexual (straight)         Sometimes
## 4433                 Bisexual  Most of the time
## 4434  Heterosexual (straight)  Most of the time
## 4435  Heterosexual (straight)             Never
## 4436  Heterosexual (straight)            Rarely
## 4437           Some other way            Always
## 4438  Heterosexual (straight)         Sometimes
## 4439  Heterosexual (straight)            Rarely
## 4440  Heterosexual (straight)         Sometimes
## 4441                 Bisexual  Most of the time
## 4442  Heterosexual (straight)            Rarely
## 4443  Heterosexual (straight)  Most of the time
## 4444  Heterosexual (straight)  Most of the time
## 4445  Heterosexual (straight)             Never
## 4446  Heterosexual (straight)         Sometimes
## 4447  Heterosexual (straight)         Sometimes
## 4448  Heterosexual (straight)            Rarely
## 4449           Gay or lesbian            Rarely
## 4450  Heterosexual (straight)         Sometimes
## 4451  Heterosexual (straight)            Rarely
## 4452  Heterosexual (straight)             Never
## 4453  Heterosexual (straight)         Sometimes
## 4454  Heterosexual (straight)            Rarely
## 4455           Some other way  Most of the time
## 4456  Heterosexual (straight)             Never
## 4457  Heterosexual (straight)            Rarely
## 4458  Heterosexual (straight)  Most of the time
## 4459  Heterosexual (straight)            Rarely
## 4460  Heterosexual (straight)             Never
## 4461  Heterosexual (straight)            Rarely
## 4462  Heterosexual (straight)            Rarely
## 4463  Heterosexual (straight)            Always
## 4464  Heterosexual (straight)             Never
## 4465  Heterosexual (straight)            Rarely
## 4466  Heterosexual (straight)             Never
## 4467           Gay or lesbian  Most of the time
## 4468  Heterosexual (straight)             Never
## 4469  Heterosexual (straight)         Sometimes
## 4470  Heterosexual (straight)         Sometimes
## 4471  Heterosexual (straight)            Rarely
## 4472                 Bisexual              <NA>
## 4473  Heterosexual (straight)            Rarely
## 4474  Heterosexual (straight)  Most of the time
## 4475  Heterosexual (straight)            Rarely
## 4476  Heterosexual (straight)             Never
## 4477           Some other way  Most of the time
## 4478  Heterosexual (straight)  Most of the time
## 4479           Gay or lesbian            Always
## 4480                 Bisexual            Rarely
## 4481  Heterosexual (straight)         Sometimes
## 4482  Heterosexual (straight)             Never
## 4483  Heterosexual (straight)         Sometimes
## 4484  Heterosexual (straight)  Most of the time
## 4485  Heterosexual (straight)            Always
## 4486  Heterosexual (straight)             Never
## 4487  Heterosexual (straight)              <NA>
## 4488  Heterosexual (straight)  Most of the time
## 4489                 Bisexual            Rarely
## 4490  Heterosexual (straight)         Sometimes
## 4491  Heterosexual (straight)         Sometimes
## 4492                 Not sure            Rarely
## 4493  Heterosexual (straight)              <NA>
## 4494  Heterosexual (straight)            Rarely
## 4495           Some other way  Most of the time
## 4496  Heterosexual (straight)            Rarely
## 4497                 Not sure  Most of the time
## 4498  Heterosexual (straight)         Sometimes
## 4499  Heterosexual (straight)  Most of the time
## 4500  Heterosexual (straight)            Rarely
## 4501  Heterosexual (straight)         Sometimes
## 4502  Heterosexual (straight)         Sometimes
## 4503  Heterosexual (straight)  Most of the time
## 4504  Heterosexual (straight)         Sometimes
## 4505  Heterosexual (straight)            Rarely
## 4506  Heterosexual (straight)            Rarely
## 4507  Heterosexual (straight)            Rarely
## 4508  Heterosexual (straight)            Rarely
## 4509  Heterosexual (straight)  Most of the time
## 4510  Heterosexual (straight)            Rarely
## 4511  Heterosexual (straight)         Sometimes
## 4512                 Bisexual  Most of the time
## 4513  Heterosexual (straight)             Never
## 4514  Heterosexual (straight)         Sometimes
## 4515  Heterosexual (straight)         Sometimes
## 4516  Heterosexual (straight)         Sometimes
## 4517  Heterosexual (straight)            Rarely
## 4518  Heterosexual (straight)         Sometimes
## 4519  Heterosexual (straight)         Sometimes
## 4520  Heterosexual (straight)            Rarely
## 4521  Heterosexual (straight)         Sometimes
## 4522  Heterosexual (straight)             Never
## 4523  Heterosexual (straight)            Always
## 4524  Heterosexual (straight)  Most of the time
## 4525           Some other way  Most of the time
## 4526                 Bisexual            Always
## 4527  Heterosexual (straight)            Rarely
## 4528  Heterosexual (straight)         Sometimes
## 4529  Heterosexual (straight)         Sometimes
## 4530  Heterosexual (straight)             Never
## 4531  Heterosexual (straight)            Always
## 4532  Heterosexual (straight)            Rarely
## 4533  Heterosexual (straight)            Rarely
## 4534  Heterosexual (straight)             Never
## 4535           Some other way  Most of the time
## 4536  Heterosexual (straight)             Never
## 4537           Some other way  Most of the time
## 4538                 Not sure            Rarely
## 4539           Gay or lesbian             Never
## 4540  Heterosexual (straight)            Rarely
## 4541  Heterosexual (straight)  Most of the time
## 4542  Heterosexual (straight)         Sometimes
## 4543  Heterosexual (straight)         Sometimes
## 4544                 Bisexual  Most of the time
## 4545  Heterosexual (straight)             Never
## 4546           Some other way            Always
## 4547  Heterosexual (straight)         Sometimes
## 4548  Heterosexual (straight)         Sometimes
## 4549  Heterosexual (straight)         Sometimes
## 4550  Heterosexual (straight)            Rarely
## 4551                 Not sure  Most of the time
## 4552  Heterosexual (straight)  Most of the time
## 4553                 Bisexual  Most of the time
## 4554                 Bisexual            Always
## 4555           Gay or lesbian  Most of the time
## 4556                 Not sure  Most of the time
## 4557                 Bisexual         Sometimes
## 4558           Gay or lesbian  Most of the time
## 4559  Heterosexual (straight)             Never
## 4560  Heterosexual (straight)         Sometimes
## 4561  Heterosexual (straight)            Rarely
## 4562  Heterosexual (straight)            Rarely
## 4563  Heterosexual (straight)            Rarely
## 4564  Heterosexual (straight)  Most of the time
## 4565  Heterosexual (straight)            Rarely
## 4566                 Not sure  Most of the time
## 4567  Heterosexual (straight)  Most of the time
## 4568  Heterosexual (straight)            Always
## 4569  Heterosexual (straight)         Sometimes
## 4570                 Bisexual  Most of the time
## 4571                 Bisexual         Sometimes
## 4572           Some other way  Most of the time
## 4573           Some other way         Sometimes
## 4574           Gay or lesbian  Most of the time
## 4575                 Not sure  Most of the time
## 4576                 Not sure  Most of the time
## 4577                 Not sure         Sometimes
## 4578           Gay or lesbian  Most of the time
## 4579           Gay or lesbian  Most of the time
## 4580                 Bisexual  Most of the time
## 4581           Gay or lesbian         Sometimes
## 4582           Some other way         Sometimes
## 4583           Some other way            Always
## 4584                 Not sure  Most of the time
## 4585  Heterosexual (straight)  Most of the time
## 4586           Gay or lesbian  Most of the time
## 4587                 Bisexual  Most of the time
## 4588  Heterosexual (straight)         Sometimes
## 4589           Some other way         Sometimes
## 4590  Heterosexual (straight)  Most of the time
## 4591                 Bisexual         Sometimes
## 4592                 Bisexual  Most of the time
## 4593                 Bisexual  Most of the time
## 4594           Some other way         Sometimes
## 4595           Gay or lesbian         Sometimes
## 4596                 Bisexual         Sometimes
## 4597  Heterosexual (straight)         Sometimes
## 4598                 Bisexual            Always
## 4599  Heterosexual (straight)            Rarely
## 4600  Heterosexual (straight)         Sometimes
## 4601  Heterosexual (straight)            Rarely
## 4602                 Bisexual             Never
## 4603  Heterosexual (straight)  Most of the time
## 4604  Heterosexual (straight)         Sometimes
## 4605  Heterosexual (straight)             Never
## 4606  Heterosexual (straight)             Never
## 4607                 Bisexual         Sometimes
## 4608  Heterosexual (straight)         Sometimes
## 4609  Heterosexual (straight)         Sometimes
## 4610                 Bisexual  Most of the time
## 4611  Heterosexual (straight)            Rarely
## 4612                 Bisexual         Sometimes
## 4613  Heterosexual (straight)            Rarely
## 4614  Heterosexual (straight)            Always
## 4615  Heterosexual (straight)            Rarely
## 4616  Heterosexual (straight)            Always
## 4617  Heterosexual (straight)         Sometimes
## 4618  Heterosexual (straight)         Sometimes
## 4619  Heterosexual (straight)            Always
## 4620  Heterosexual (straight)            Rarely
## 4621  Heterosexual (straight)             Never
## 4622  Heterosexual (straight)             Never
## 4623  Heterosexual (straight)         Sometimes
## 4624  Heterosexual (straight)             Never
## 4625  Heterosexual (straight)         Sometimes
## 4626  Heterosexual (straight)            Rarely
## 4627                 Bisexual            Rarely
## 4628  Heterosexual (straight)         Sometimes
## 4629  Heterosexual (straight)         Sometimes
## 4630  Heterosexual (straight)         Sometimes
## 4631  Heterosexual (straight)         Sometimes
## 4632  Heterosexual (straight)         Sometimes
## 4633  Heterosexual (straight)  Most of the time
## 4634  Heterosexual (straight)         Sometimes
## 4635  Heterosexual (straight)  Most of the time
## 4636  Heterosexual (straight)            Rarely
## 4637  Heterosexual (straight)             Never
## 4638           Gay or lesbian         Sometimes
## 4639  Heterosexual (straight)            Rarely
## 4640  Heterosexual (straight)            Rarely
## 4641  Heterosexual (straight)         Sometimes
## 4642  Heterosexual (straight)         Sometimes
## 4643  Heterosexual (straight)             Never
## 4644  Heterosexual (straight)             Never
## 4645  Heterosexual (straight)             Never
## 4646  Heterosexual (straight)  Most of the time
## 4647  Heterosexual (straight)         Sometimes
## 4648  Heterosexual (straight)             Never
## 4649  Heterosexual (straight)            Always
## 4650  Heterosexual (straight)         Sometimes
## 4651                 Bisexual              <NA>
## 4652           Some other way  Most of the time
## 4653  Heterosexual (straight)             Never
## 4654                 Bisexual  Most of the time
## 4655  Heterosexual (straight)            Rarely
## 4656  Heterosexual (straight)             Never
## 4657  Heterosexual (straight)            Rarely
## 4658  Heterosexual (straight)            Always
## 4659                 Bisexual            Always
## 4660  Heterosexual (straight)             Never
## 4661  Heterosexual (straight)             Never
## 4662  Heterosexual (straight)            Rarely
## 4663  Heterosexual (straight)  Most of the time
## 4664  Heterosexual (straight)             Never
## 4665           Some other way         Sometimes
## 4666  Heterosexual (straight)         Sometimes
## 4667                 Not sure         Sometimes
## 4668  Heterosexual (straight)            Rarely
## 4669  Heterosexual (straight)             Never
## 4670                 Bisexual            Rarely
## 4671  Heterosexual (straight)             Never
## 4672           Gay or lesbian  Most of the time
## 4673  Heterosexual (straight)  Most of the time
## 4674  Heterosexual (straight)            Always
## 4675  Heterosexual (straight)  Most of the time
## 4676  Heterosexual (straight)         Sometimes
## 4677           Some other way  Most of the time
## 4678  Heterosexual (straight)         Sometimes
## 4679                 Bisexual  Most of the time
## 4680  Heterosexual (straight)             Never
## 4681  Heterosexual (straight)             Never
## 4682           Some other way         Sometimes
## 4683                 Bisexual  Most of the time
## 4684           Some other way            Always
## 4685  Heterosexual (straight)             Never
## 4686  Heterosexual (straight)         Sometimes
## 4687  Heterosexual (straight)         Sometimes
## 4688  Heterosexual (straight)            Always
## 4689  Heterosexual (straight)         Sometimes
## 4690                 Not sure  Most of the time
## 4691  Heterosexual (straight)             Never
## 4692  Heterosexual (straight)            Rarely
## 4693  Heterosexual (straight)            Rarely
## 4694  Heterosexual (straight)             Never
## 4695  Heterosexual (straight)            Rarely
## 4696           Gay or lesbian         Sometimes
## 4697  Heterosexual (straight)            Rarely
## 4698  Heterosexual (straight)  Most of the time
## 4699  Heterosexual (straight)            Rarely
## 4700  Heterosexual (straight)         Sometimes
## 4701  Heterosexual (straight)            Rarely
## 4702  Heterosexual (straight)             Never
## 4703  Heterosexual (straight)            Rarely
## 4704  Heterosexual (straight)            Rarely
## 4705  Heterosexual (straight)         Sometimes
## 4706  Heterosexual (straight)             Never
## 4707  Heterosexual (straight)            Rarely
## 4708  Heterosexual (straight)            Rarely
## 4709  Heterosexual (straight)         Sometimes
## 4710  Heterosexual (straight)         Sometimes
## 4711  Heterosexual (straight)             Never
## 4712  Heterosexual (straight)         Sometimes
## 4713  Heterosexual (straight)            Rarely
## 4714                 Not sure         Sometimes
## 4715  Heterosexual (straight)  Most of the time
## 4716           Gay or lesbian         Sometimes
## 4717                 Bisexual              <NA>
## 4718  Heterosexual (straight)  Most of the time
## 4719  Heterosexual (straight)         Sometimes
## 4720                 Bisexual  Most of the time
## 4721  Heterosexual (straight)            Rarely
## 4722  Heterosexual (straight)             Never
## 4723  Heterosexual (straight)         Sometimes
## 4724  Heterosexual (straight)            Rarely
## 4725  Heterosexual (straight)         Sometimes
## 4726  Heterosexual (straight)         Sometimes
## 4727  Heterosexual (straight)         Sometimes
## 4728           Gay or lesbian            Always
## 4729  Heterosexual (straight)         Sometimes
## 4730  Heterosexual (straight)         Sometimes
## 4731  Heterosexual (straight)            Always
## 4732  Heterosexual (straight)  Most of the time
## 4733           Some other way  Most of the time
## 4734  Heterosexual (straight)         Sometimes
## 4735  Heterosexual (straight)             Never
## 4736  Heterosexual (straight)  Most of the time
## 4737  Heterosexual (straight)         Sometimes
## 4738                 Bisexual  Most of the time
## 4739  Heterosexual (straight)            Rarely
## 4740  Heterosexual (straight)         Sometimes
## 4741  Heterosexual (straight)         Sometimes
## 4742                 Not sure  Most of the time
## 4743                 Bisexual             Never
## 4744  Heterosexual (straight)  Most of the time
## 4745  Heterosexual (straight)             Never
## 4746  Heterosexual (straight)  Most of the time
## 4747  Heterosexual (straight)            Rarely
## 4748  Heterosexual (straight)  Most of the time
## 4749  Heterosexual (straight)             Never
## 4750  Heterosexual (straight)         Sometimes
## 4751  Heterosexual (straight)            Rarely
## 4752                 Not sure         Sometimes
## 4753                 Bisexual            Always
## 4754           Gay or lesbian            Always
## 4755  Heterosexual (straight)  Most of the time
## 4756                 Bisexual  Most of the time
## 4757  Heterosexual (straight)            Rarely
## 4758  Heterosexual (straight)         Sometimes
## 4759  Heterosexual (straight)         Sometimes
## 4760  Heterosexual (straight)            Rarely
## 4761  Heterosexual (straight)         Sometimes
## 4762  Heterosexual (straight)         Sometimes
## 4763                 Not sure  Most of the time
## 4764  Heterosexual (straight)             Never
## 4765  Heterosexual (straight)            Rarely
## 4766  Heterosexual (straight)  Most of the time
## 4767  Heterosexual (straight)  Most of the time
## 4768           Gay or lesbian         Sometimes
## 4769  Heterosexual (straight)            Rarely
## 4770  Heterosexual (straight)             Never
## 4771  Heterosexual (straight)         Sometimes
## 4772  Heterosexual (straight)         Sometimes
## 4773  Heterosexual (straight)            Rarely
## 4774  Heterosexual (straight)  Most of the time
## 4775           Gay or lesbian  Most of the time
## 4776  Heterosexual (straight)  Most of the time
## 4777  Heterosexual (straight)  Most of the time
## 4778  Heterosexual (straight)            Rarely
## 4779  Heterosexual (straight)             Never
## 4780  Heterosexual (straight)         Sometimes
## 4781  Heterosexual (straight)             Never
## 4782  Heterosexual (straight)  Most of the time
## 4783  Heterosexual (straight)             Never
## 4784  Heterosexual (straight)            Rarely
## 4785  Heterosexual (straight)  Most of the time
## 4786                 Bisexual         Sometimes
## 4787  Heterosexual (straight)            Rarely
## 4788  Heterosexual (straight)  Most of the time
## 4789  Heterosexual (straight)         Sometimes
## 4790                 Bisexual         Sometimes
## 4791  Heterosexual (straight)            Rarely
## 4792  Heterosexual (straight)  Most of the time
## 4793  Heterosexual (straight)            Rarely
## 4794  Heterosexual (straight)         Sometimes
## 4795  Heterosexual (straight)             Never
## 4796           Gay or lesbian  Most of the time
## 4797                 Bisexual         Sometimes
## 4798  Heterosexual (straight)         Sometimes
## 4799           Some other way  Most of the time
## 4800           Gay or lesbian  Most of the time
## 4801  Heterosexual (straight)         Sometimes
## 4802  Heterosexual (straight)  Most of the time
## 4803  Heterosexual (straight)  Most of the time
## 4804                 Bisexual            Always
## 4805  Heterosexual (straight)         Sometimes
## 4806  Heterosexual (straight)            Rarely
## 4807  Heterosexual (straight)  Most of the time
## 4808           Some other way            Always
## 4809  Heterosexual (straight)            Rarely
## 4810  Heterosexual (straight)         Sometimes
## 4811                 Bisexual         Sometimes
## 4812  Heterosexual (straight)         Sometimes
## 4813  Heterosexual (straight)            Always
## 4814  Heterosexual (straight)             Never
## 4815  Heterosexual (straight)  Most of the time
## 4816  Heterosexual (straight)             Never
## 4817  Heterosexual (straight)  Most of the time
## 4818  Heterosexual (straight)  Most of the time
## 4819  Heterosexual (straight)  Most of the time
## 4820  Heterosexual (straight)         Sometimes
## 4821  Heterosexual (straight)            Rarely
## 4822                 Bisexual         Sometimes
## 4823  Heterosexual (straight)         Sometimes
## 4824  Heterosexual (straight)            Always
## 4825  Heterosexual (straight)  Most of the time
## 4826  Heterosexual (straight)            Rarely
## 4827                 Bisexual  Most of the time
## 4828  Heterosexual (straight)         Sometimes
## 4829  Heterosexual (straight)         Sometimes
## 4830  Heterosexual (straight)             Never
## 4831                 Bisexual            Rarely
## 4832  Heterosexual (straight)            Rarely
## 4833  Heterosexual (straight)         Sometimes
## 4834  Heterosexual (straight)         Sometimes
## 4835  Heterosexual (straight)             Never
## 4836  Heterosexual (straight)             Never
## 4837                 Bisexual            Always
## 4838  Heterosexual (straight)  Most of the time
## 4839  Heterosexual (straight)         Sometimes
## 4840  Heterosexual (straight)             Never
## 4841  Heterosexual (straight)            Rarely
## 4842           Some other way  Most of the time
## 4843  Heterosexual (straight)            Rarely
## 4844  Heterosexual (straight)         Sometimes
## 4845  Heterosexual (straight)            Rarely
## 4846  Heterosexual (straight)            Rarely
## 4847  Heterosexual (straight)  Most of the time
## 4848  Heterosexual (straight)             Never
## 4849  Heterosexual (straight)            Rarely
## 4850  Heterosexual (straight)         Sometimes
## 4851  Heterosexual (straight)            Always
## 4852                 Bisexual            Always
## 4853  Heterosexual (straight)  Most of the time
## 4854  Heterosexual (straight)            Always
## 4855  Heterosexual (straight)            Rarely
## 4856  Heterosexual (straight)  Most of the time
## 4857  Heterosexual (straight)            Rarely
## 4858  Heterosexual (straight)            Rarely
## 4859  Heterosexual (straight)  Most of the time
## 4860  Heterosexual (straight)            Rarely
## 4861  Heterosexual (straight)         Sometimes
## 4862  Heterosexual (straight)         Sometimes
## 4863  Heterosexual (straight)            Rarely
## 4864  Heterosexual (straight)             Never
## 4865  Heterosexual (straight)             Never
## 4866  Heterosexual (straight)             Never
## 4867                 Bisexual         Sometimes
## 4868  Heterosexual (straight)             Never
## 4869  Heterosexual (straight)            Rarely
## 4870  Heterosexual (straight)            Always
## 4871  Heterosexual (straight)            Rarely
## 4872  Heterosexual (straight)  Most of the time
## 4873  Heterosexual (straight)         Sometimes
## 4874  Heterosexual (straight)            Rarely
## 4875  Heterosexual (straight)            Rarely
## 4876           Some other way         Sometimes
## 4877  Heterosexual (straight)             Never
## 4878  Heterosexual (straight)         Sometimes
## 4879  Heterosexual (straight)         Sometimes
## 4880  Heterosexual (straight)              <NA>
## 4881  Heterosexual (straight)             Never
## 4882           Some other way  Most of the time
## 4883           Some other way         Sometimes
## 4884  Heterosexual (straight)            Rarely
## 4885  Heterosexual (straight)            Rarely
## 4886  Heterosexual (straight)  Most of the time
## 4887  Heterosexual (straight)            Rarely
## 4888  Heterosexual (straight)            Rarely
## 4889                 Not sure            Rarely
## 4890  Heterosexual (straight)            Always
## 4891  Heterosexual (straight)            Rarely
## 4892  Heterosexual (straight)            Rarely
## 4893  Heterosexual (straight)         Sometimes
## 4894  Heterosexual (straight)         Sometimes
## 4895  Heterosexual (straight)         Sometimes
## 4896  Heterosexual (straight)         Sometimes
## 4897                 Bisexual  Most of the time
## 4898  Heterosexual (straight)             Never
## 4899  Heterosexual (straight)             Never
## 4900  Heterosexual (straight)         Sometimes
## 4901  Heterosexual (straight)         Sometimes
## 4902  Heterosexual (straight)             Never
## 4903  Heterosexual (straight)  Most of the time
## 4904  Heterosexual (straight)            Rarely
## 4905  Heterosexual (straight)  Most of the time
## 4906  Heterosexual (straight)         Sometimes
## 4907           Some other way            Always
## 4908  Heterosexual (straight)            Rarely
## 4909                 Not sure  Most of the time
## 4910                 Bisexual  Most of the time
## 4911           Some other way  Most of the time
## 4912  Heterosexual (straight)            Rarely
## 4913  Heterosexual (straight)         Sometimes
## 4914  Heterosexual (straight)  Most of the time
## 4915  Heterosexual (straight)            Rarely
## 4916  Heterosexual (straight)  Most of the time
## 4917  Heterosexual (straight)             Never
## 4918                 Bisexual         Sometimes
## 4919  Heterosexual (straight)  Most of the time
## 4920  Heterosexual (straight)         Sometimes
## 4921           Gay or lesbian         Sometimes
## 4922  Heterosexual (straight)            Rarely
## 4923  Heterosexual (straight)            Rarely
## 4924  Heterosexual (straight)             Never
## 4925  Heterosexual (straight)  Most of the time
## 4926                 Not sure  Most of the time
## 4927  Heterosexual (straight)  Most of the time
## 4928  Heterosexual (straight)  Most of the time
## 4929                 Bisexual         Sometimes
## 4930  Heterosexual (straight)         Sometimes
## 4931                 Not sure  Most of the time
## 4932  Heterosexual (straight)            Rarely
## 4933           Gay or lesbian            Always
## 4934                 Bisexual            Always
## 4935  Heterosexual (straight)  Most of the time
## 4936  Heterosexual (straight)            Rarely
## 4937                 Not sure  Most of the time
## 4938  Heterosexual (straight)         Sometimes
## 4939  Heterosexual (straight)  Most of the time
## 4940  Heterosexual (straight)            Rarely
## 4941  Heterosexual (straight)            Rarely
## 4942  Heterosexual (straight)            Rarely
## 4943  Heterosexual (straight)  Most of the time
## 4944  Heterosexual (straight)            Rarely
## 4945  Heterosexual (straight)  Most of the time
## 4946  Heterosexual (straight)              <NA>
## 4947  Heterosexual (straight)            Rarely
## 4948           Gay or lesbian         Sometimes
## 4949  Heterosexual (straight)            Rarely
## 4950  Heterosexual (straight)         Sometimes
## 4951           Some other way            Always
## 4952  Heterosexual (straight)         Sometimes
## 4953  Heterosexual (straight)  Most of the time
## 4954  Heterosexual (straight)            Rarely
## 4955  Heterosexual (straight)            Always
## 4956  Heterosexual (straight)            Rarely
## 4957  Heterosexual (straight)            Rarely
## 4958  Heterosexual (straight)         Sometimes
## 4959  Heterosexual (straight)  Most of the time
## 4960  Heterosexual (straight)            Always
## 4961                 Bisexual         Sometimes
## 4962  Heterosexual (straight)         Sometimes
## 4963  Heterosexual (straight)         Sometimes
## 4964  Heterosexual (straight)         Sometimes
## 4965  Heterosexual (straight)            Rarely
## 4966                 Bisexual  Most of the time
## 4967  Heterosexual (straight)  Most of the time
## 4968           Some other way            Always
## 4969           Some other way  Most of the time
## 4970                 Bisexual  Most of the time
## 4971  Heterosexual (straight)            Always
## 4972  Heterosexual (straight)             Never
## 4973           Gay or lesbian         Sometimes
## 4974                 Bisexual  Most of the time
## 4975                 Bisexual              <NA>
## 4976  Heterosexual (straight)            Rarely
## 4977  Heterosexual (straight)         Sometimes
## 4978  Heterosexual (straight)            Rarely
## 4979                 Not sure         Sometimes
## 4980  Heterosexual (straight)            Always
## 4981  Heterosexual (straight)         Sometimes
## 4982  Heterosexual (straight)            Rarely
## 4983  Heterosexual (straight)             Never
## 4984  Heterosexual (straight)            Rarely
## 4985  Heterosexual (straight)         Sometimes
## 4986  Heterosexual (straight)         Sometimes
## 4987  Heterosexual (straight)  Most of the time
## 4988  Heterosexual (straight)              <NA>
## 4989  Heterosexual (straight)            Always
## 4990                 Bisexual  Most of the time
## 4991  Heterosexual (straight)  Most of the time
## 4992  Heterosexual (straight)         Sometimes
## 4993                 Bisexual              <NA>
## 4994  Heterosexual (straight)         Sometimes
## 4995  Heterosexual (straight)  Most of the time
## 4996           Some other way         Sometimes
## 4997  Heterosexual (straight)  Most of the time
## 4998  Heterosexual (straight)  Most of the time
## 4999  Heterosexual (straight)  Most of the time
## 5000  Heterosexual (straight)         Sometimes
## 5001  Heterosexual (straight)            Rarely
## 5002  Heterosexual (straight)         Sometimes
## 5003  Heterosexual (straight)            Always
## 5004           Gay or lesbian            Always
## 5005                 Bisexual            Always
## 5006  Heterosexual (straight)            Rarely
## 5007  Heterosexual (straight)            Rarely
## 5008  Heterosexual (straight)            Rarely
## 5009           Some other way  Most of the time
## 5010  Heterosexual (straight)             Never
## 5011  Heterosexual (straight)            Rarely
## 5012  Heterosexual (straight)             Never
## 5013           Gay or lesbian         Sometimes
## 5014  Heterosexual (straight)         Sometimes
## 5015  Heterosexual (straight)            Rarely
## 5016  Heterosexual (straight)            Rarely
## 5017  Heterosexual (straight)  Most of the time
## 5018                 Not sure  Most of the time
## 5019  Heterosexual (straight)  Most of the time
## 5020                 Bisexual         Sometimes
## 5021  Heterosexual (straight)         Sometimes
## 5022  Heterosexual (straight)  Most of the time
## 5023  Heterosexual (straight)            Rarely
## 5024  Heterosexual (straight)            Rarely
## 5025  Heterosexual (straight)             Never
## 5026  Heterosexual (straight)  Most of the time
## 5027  Heterosexual (straight)             Never
## 5028  Heterosexual (straight)            Rarely
## 5029  Heterosexual (straight)         Sometimes
## 5030  Heterosexual (straight)         Sometimes
## 5031  Heterosexual (straight)            Rarely
## 5032  Heterosexual (straight)         Sometimes
## 5033  Heterosexual (straight)  Most of the time
## 5034  Heterosexual (straight)  Most of the time
## 5035                 Not sure         Sometimes
## 5036                 Not sure  Most of the time
## 5037  Heterosexual (straight)            Always
## 5038                 Bisexual  Most of the time
## 5039  Heterosexual (straight)         Sometimes
## 5040  Heterosexual (straight)         Sometimes
## 5041  Heterosexual (straight)             Never
## 5042  Heterosexual (straight)             Never
## 5043  Heterosexual (straight)            Rarely
## 5044  Heterosexual (straight)            Rarely
## 5045  Heterosexual (straight)            Rarely
## 5046  Heterosexual (straight)         Sometimes
## 5047  Heterosexual (straight)            Rarely
## 5048  Heterosexual (straight)            Always
## 5049           Some other way  Most of the time
## 5050  Heterosexual (straight)            Always
## 5051  Heterosexual (straight)  Most of the time
## 5052  Heterosexual (straight)             Never
## 5053  Heterosexual (straight)         Sometimes
## 5054  Heterosexual (straight)             Never
## 5055                 Bisexual  Most of the time
## 5056  Heterosexual (straight)             Never
## 5057  Heterosexual (straight)         Sometimes
## 5058  Heterosexual (straight)            Rarely
## 5059  Heterosexual (straight)         Sometimes
## 5060  Heterosexual (straight)            Rarely
## 5061  Heterosexual (straight)  Most of the time
## 5062  Heterosexual (straight)            Rarely
## 5063  Heterosexual (straight)            Always
## 5064  Heterosexual (straight)  Most of the time
## 5065  Heterosexual (straight)  Most of the time
## 5066                 Bisexual  Most of the time
## 5067  Heterosexual (straight)         Sometimes
## 5068                 Bisexual  Most of the time
## 5069  Heterosexual (straight)            Rarely
## 5070  Heterosexual (straight)  Most of the time
## 5071                 Not sure  Most of the time
## 5072  Heterosexual (straight)  Most of the time
## 5073  Heterosexual (straight)             Never
## 5074  Heterosexual (straight)  Most of the time
## 5075  Heterosexual (straight)            Rarely
## 5076  Heterosexual (straight)            Always
## 5077  Heterosexual (straight)  Most of the time
## 5078                 Not sure         Sometimes
## 5079  Heterosexual (straight)            Always
## 5080  Heterosexual (straight)             Never
## 5081                 Not sure  Most of the time
## 5082  Heterosexual (straight)            Rarely
## 5083  Heterosexual (straight)  Most of the time
## 5084  Heterosexual (straight)            Always
## 5085  Heterosexual (straight)            Always
## 5086  Heterosexual (straight)             Never
## 5087  Heterosexual (straight)         Sometimes
## 5088                 Bisexual  Most of the time
## 5089  Heterosexual (straight)            Always
## 5090  Heterosexual (straight)             Never
## 5091                 Bisexual            Rarely
## 5092  Heterosexual (straight)  Most of the time
## 5093  Heterosexual (straight)         Sometimes
## 5094  Heterosexual (straight)         Sometimes
## 5095           Gay or lesbian  Most of the time
## 5096                 Not sure  Most of the time
## 5097                 Bisexual  Most of the time
## 5098  Heterosexual (straight)         Sometimes
## 5099  Heterosexual (straight)         Sometimes
## 5100                 Not sure  Most of the time
## 5101  Heterosexual (straight)            Rarely
## 5102                 Bisexual            Rarely
## 5103  Heterosexual (straight)  Most of the time
## 5104  Heterosexual (straight)  Most of the time
## 5105  Heterosexual (straight)  Most of the time
## 5106                 Not sure         Sometimes
## 5107  Heterosexual (straight)            Rarely
## 5108           Gay or lesbian         Sometimes
## 5109  Heterosexual (straight)             Never
## 5110  Heterosexual (straight)  Most of the time
## 5111                 Not sure         Sometimes
## 5112  Heterosexual (straight)  Most of the time
## 5113           Some other way            Always
## 5114  Heterosexual (straight)         Sometimes
## 5115  Heterosexual (straight)         Sometimes
## 5116  Heterosexual (straight)             Never
## 5117  Heterosexual (straight)  Most of the time
## 5118  Heterosexual (straight)            Rarely
## 5119  Heterosexual (straight)             Never
## 5120                 Not sure  Most of the time
## 5121  Heterosexual (straight)         Sometimes
## 5122  Heterosexual (straight)         Sometimes
## 5123  Heterosexual (straight)            Rarely
## 5124  Heterosexual (straight)            Rarely
## 5125  Heterosexual (straight)         Sometimes
## 5126  Heterosexual (straight)            Rarely
## 5127  Heterosexual (straight)         Sometimes
## 5128  Heterosexual (straight)            Rarely
## 5129  Heterosexual (straight)            Rarely
## 5130                 Bisexual         Sometimes
## 5131  Heterosexual (straight)             Never
## 5132  Heterosexual (straight)            Rarely
## 5133  Heterosexual (straight)             Never
## 5134  Heterosexual (straight)            Rarely
## 5135  Heterosexual (straight)  Most of the time
## 5136  Heterosexual (straight)         Sometimes
## 5137  Heterosexual (straight)             Never
## 5138  Heterosexual (straight)              <NA>
## 5139  Heterosexual (straight)  Most of the time
## 5140  Heterosexual (straight)            Rarely
## 5141  Heterosexual (straight)            Always
## 5142  Heterosexual (straight)            Rarely
## 5143  Heterosexual (straight)            Rarely
## 5144  Heterosexual (straight)         Sometimes
## 5145  Heterosexual (straight)            Rarely
## 5146  Heterosexual (straight)         Sometimes
## 5147                 Not sure  Most of the time
## 5148  Heterosexual (straight)         Sometimes
## 5149  Heterosexual (straight)         Sometimes
## 5150  Heterosexual (straight)            Always
## 5151  Heterosexual (straight)            Rarely
## 5152                 Not sure         Sometimes
## 5153  Heterosexual (straight)            Rarely
## 5154  Heterosexual (straight)             Never
## 5155  Heterosexual (straight)            Rarely
## 5156  Heterosexual (straight)            Rarely
## 5157  Heterosexual (straight)            Rarely
## 5158           Gay or lesbian         Sometimes
## 5159           Gay or lesbian  Most of the time
## 5160  Heterosexual (straight)            Always
## 5161  Heterosexual (straight)         Sometimes
## 5162                 Bisexual  Most of the time
## 5163  Heterosexual (straight)  Most of the time
## 5164  Heterosexual (straight)              <NA>
## 5165  Heterosexual (straight)              <NA>
## 5166                 Not sure            Always
## 5167  Heterosexual (straight)         Sometimes
## 5168                 Bisexual  Most of the time
## 5169  Heterosexual (straight)             Never
## 5170  Heterosexual (straight)         Sometimes
## 5171  Heterosexual (straight)              <NA>
## 5172  Heterosexual (straight)            Rarely
## 5173  Heterosexual (straight)             Never
## 5174  Heterosexual (straight)            Rarely
## 5175                 Bisexual  Most of the time
## 5176  Heterosexual (straight)         Sometimes
## 5177  Heterosexual (straight)         Sometimes
## 5178  Heterosexual (straight)         Sometimes
## 5179  Heterosexual (straight)  Most of the time
## 5180  Heterosexual (straight)  Most of the time
## 5181  Heterosexual (straight)         Sometimes
## 5182                 Not sure         Sometimes
## 5183  Heterosexual (straight)         Sometimes
## 5184           Gay or lesbian         Sometimes
## 5185  Heterosexual (straight)  Most of the time
## 5186  Heterosexual (straight)  Most of the time
## 5187  Heterosexual (straight)  Most of the time
## 5188                 Bisexual  Most of the time
## 5189  Heterosexual (straight)         Sometimes
## 5190  Heterosexual (straight)  Most of the time
## 5191  Heterosexual (straight)         Sometimes
## 5192  Heterosexual (straight)             Never
## 5193  Heterosexual (straight)         Sometimes
## 5194  Heterosexual (straight)            Rarely
## 5195  Heterosexual (straight)         Sometimes
## 5196                 Not sure         Sometimes
## 5197  Heterosexual (straight)             Never
## 5198  Heterosexual (straight)         Sometimes
## 5199  Heterosexual (straight)            Rarely
## 5200                 Not sure  Most of the time
## 5201  Heterosexual (straight)  Most of the time
## 5202  Heterosexual (straight)  Most of the time
## 5203                 Not sure            Always
## 5204  Heterosexual (straight)            Rarely
## 5205  Heterosexual (straight)         Sometimes
## 5206  Heterosexual (straight)         Sometimes
## 5207  Heterosexual (straight)  Most of the time
## 5208                 Bisexual            Always
## 5209  Heterosexual (straight)         Sometimes
## 5210  Heterosexual (straight)         Sometimes
## 5211                 Bisexual  Most of the time
## 5212  Heterosexual (straight)             Never
## 5213  Heterosexual (straight)         Sometimes
## 5214  Heterosexual (straight)            Rarely
## 5215  Heterosexual (straight)            Rarely
## 5216                 Bisexual  Most of the time
## 5217  Heterosexual (straight)  Most of the time
## 5218  Heterosexual (straight)         Sometimes
## 5219  Heterosexual (straight)         Sometimes
## 5220  Heterosexual (straight)         Sometimes
## 5221  Heterosexual (straight)  Most of the time
## 5222  Heterosexual (straight)            Rarely
## 5223  Heterosexual (straight)            Rarely
## 5224  Heterosexual (straight)         Sometimes
## 5225                 Bisexual             Never
## 5226  Heterosexual (straight)             Never
## 5227  Heterosexual (straight)         Sometimes
## 5228  Heterosexual (straight)         Sometimes
## 5229  Heterosexual (straight)             Never
## 5230  Heterosexual (straight)         Sometimes
## 5231  Heterosexual (straight)            Rarely
## 5232  Heterosexual (straight)  Most of the time
## 5233  Heterosexual (straight)         Sometimes
## 5234  Heterosexual (straight)  Most of the time
## 5235  Heterosexual (straight)             Never
## 5236  Heterosexual (straight)  Most of the time
## 5237  Heterosexual (straight)         Sometimes
## 5238  Heterosexual (straight)  Most of the time
## 5239  Heterosexual (straight)  Most of the time
## 5240  Heterosexual (straight)         Sometimes
## 5241  Heterosexual (straight)  Most of the time
## 5242           Some other way            Always
## 5243  Heterosexual (straight)         Sometimes
## 5244                 Bisexual            Rarely
## 5245  Heterosexual (straight)         Sometimes
## 5246                 Not sure         Sometimes
## 5247  Heterosexual (straight)         Sometimes
## 5248  Heterosexual (straight)         Sometimes
## 5249  Heterosexual (straight)  Most of the time
## 5250                 Not sure  Most of the time
## 5251                 Bisexual            Always
## 5252  Heterosexual (straight)  Most of the time
## 5253  Heterosexual (straight)         Sometimes
## 5254           Some other way         Sometimes
## 5255                 Bisexual         Sometimes
## 5256                 Not sure         Sometimes
## 5257  Heterosexual (straight)  Most of the time
## 5258  Heterosexual (straight)  Most of the time
## 5259  Heterosexual (straight)         Sometimes
## 5260  Heterosexual (straight)             Never
## 5261  Heterosexual (straight)  Most of the time
## 5262  Heterosexual (straight)         Sometimes
## 5263  Heterosexual (straight)  Most of the time
## 5264  Heterosexual (straight)            Rarely
## 5265  Heterosexual (straight)             Never
## 5266  Heterosexual (straight)         Sometimes
## 5267           Some other way            Always
## 5268  Heterosexual (straight)            Rarely
## 5269           Some other way            Rarely
## 5270  Heterosexual (straight)  Most of the time
## 5271  Heterosexual (straight)            Rarely
## 5272  Heterosexual (straight)            Rarely
## 5273  Heterosexual (straight)            Rarely
## 5274  Heterosexual (straight)         Sometimes
## 5275  Heterosexual (straight)         Sometimes
## 5276  Heterosexual (straight)            Rarely
## 5277  Heterosexual (straight)         Sometimes
## 5278                 Bisexual  Most of the time
## 5279           Gay or lesbian  Most of the time
## 5280  Heterosexual (straight)         Sometimes
## 5281  Heterosexual (straight)  Most of the time
## 5282  Heterosexual (straight)         Sometimes
## 5283           Some other way         Sometimes
## 5284           Gay or lesbian         Sometimes
## 5285           Gay or lesbian            Rarely
## 5286  Heterosexual (straight)         Sometimes
## 5287  Heterosexual (straight)            Rarely
## 5288  Heterosexual (straight)         Sometimes
## 5289  Heterosexual (straight)  Most of the time
## 5290           Gay or lesbian             Never
## 5291  Heterosexual (straight)            Rarely
## 5292  Heterosexual (straight)            Always
## 5293  Heterosexual (straight)  Most of the time
## 5294           Some other way         Sometimes
## 5295  Heterosexual (straight)  Most of the time
## 5296  Heterosexual (straight)            Rarely
## 5297  Heterosexual (straight)  Most of the time
## 5298           Some other way  Most of the time
## 5299  Heterosexual (straight)         Sometimes
## 5300                 Bisexual         Sometimes
## 5301  Heterosexual (straight)            Rarely
## 5302  Heterosexual (straight)         Sometimes
## 5303  Heterosexual (straight)            Rarely
## 5304                 Not sure  Most of the time
## 5305                 Bisexual            Always
## 5306  Heterosexual (straight)            Rarely
## 5307  Heterosexual (straight)            Rarely
## 5308  Heterosexual (straight)            Rarely
## 5309  Heterosexual (straight)         Sometimes
## 5310  Heterosexual (straight)            Always
## 5311  Heterosexual (straight)         Sometimes
## 5312  Heterosexual (straight)         Sometimes
## 5313                 Bisexual         Sometimes
## 5314  Heterosexual (straight)         Sometimes
## 5315  Heterosexual (straight)         Sometimes
## 5316  Heterosexual (straight)            Rarely
## 5317                 Not sure            Rarely
## 5318                 Bisexual         Sometimes
## 5319                 Bisexual  Most of the time
## 5320                 Bisexual         Sometimes
## 5321                 Bisexual            Always
## 5322                 Bisexual         Sometimes
## 5323  Heterosexual (straight)            Rarely
## 5324  Heterosexual (straight)         Sometimes
## 5325  Heterosexual (straight)             Never
## 5326                 Bisexual  Most of the time
## 5327  Heterosexual (straight)            Rarely
## 5328  Heterosexual (straight)             Never
## 5329  Heterosexual (straight)         Sometimes
## 5330                 Bisexual         Sometimes
## 5331  Heterosexual (straight)         Sometimes
## 5332  Heterosexual (straight)            Rarely
## 5333  Heterosexual (straight)         Sometimes
## 5334  Heterosexual (straight)         Sometimes
## 5335  Heterosexual (straight)            Rarely
## 5336                 Not sure  Most of the time
## 5337  Heterosexual (straight)  Most of the time
## 5338  Heterosexual (straight)         Sometimes
## 5339  Heterosexual (straight)         Sometimes
## 5340           Some other way         Sometimes
## 5341  Heterosexual (straight)  Most of the time
## 5342  Heterosexual (straight)            Rarely
## 5343  Heterosexual (straight)  Most of the time
## 5344                 Bisexual            Always
## 5345  Heterosexual (straight)             Never
## 5346  Heterosexual (straight)         Sometimes
## 5347  Heterosexual (straight)            Rarely
## 5348  Heterosexual (straight)            Rarely
## 5349  Heterosexual (straight)             Never
## 5350                 Bisexual            Rarely
## 5351           Some other way         Sometimes
## 5352  Heterosexual (straight)            Rarely
## 5353  Heterosexual (straight)            Rarely
## 5354  Heterosexual (straight)             Never
## 5355                 Bisexual            Always
## 5356  Heterosexual (straight)         Sometimes
## 5357  Heterosexual (straight)            Rarely
## 5358  Heterosexual (straight)             Never
## 5359  Heterosexual (straight)            Rarely
## 5360           Some other way            Rarely
## 5361                 Bisexual              <NA>
## 5362  Heterosexual (straight)         Sometimes
## 5363                 Not sure  Most of the time
## 5364  Heterosexual (straight)         Sometimes
## 5365  Heterosexual (straight)         Sometimes
## 5366  Heterosexual (straight)            Rarely
## 5367  Heterosexual (straight)            Rarely
## 5368  Heterosexual (straight)         Sometimes
## 5369  Heterosexual (straight)         Sometimes
## 5370  Heterosexual (straight)            Rarely
## 5371  Heterosexual (straight)         Sometimes
## 5372                 Bisexual         Sometimes
## 5373  Heterosexual (straight)         Sometimes
## 5374  Heterosexual (straight)         Sometimes
## 5375  Heterosexual (straight)             Never
## 5376  Heterosexual (straight)              <NA>
## 5377  Heterosexual (straight)  Most of the time
## 5378  Heterosexual (straight)         Sometimes
## 5379  Heterosexual (straight)            Rarely
## 5380  Heterosexual (straight)  Most of the time
## 5381  Heterosexual (straight)         Sometimes
## 5382  Heterosexual (straight)            Rarely
## 5383           Gay or lesbian            Always
## 5384  Heterosexual (straight)  Most of the time
## 5385  Heterosexual (straight)  Most of the time
## 5386  Heterosexual (straight)             Never
## 5387  Heterosexual (straight)            Rarely
## 5388  Heterosexual (straight)            Rarely
## 5389  Heterosexual (straight)            Always
## 5390  Heterosexual (straight)            Rarely
## 5391  Heterosexual (straight)         Sometimes
## 5392           Some other way  Most of the time
## 5393  Heterosexual (straight)            Always
## 5394  Heterosexual (straight)             Never
## 5395  Heterosexual (straight)  Most of the time
## 5396                 Not sure  Most of the time
## 5397  Heterosexual (straight)         Sometimes
## 5398                 Not sure  Most of the time
## 5399           Gay or lesbian            Rarely
## 5400  Heterosexual (straight)         Sometimes
## 5401  Heterosexual (straight)            Rarely
## 5402  Heterosexual (straight)            Always
## 5403  Heterosexual (straight)         Sometimes
## 5404  Heterosexual (straight)            Always
## 5405                 Bisexual            Always
## 5406  Heterosexual (straight)         Sometimes
## 5407  Heterosexual (straight)         Sometimes
## 5408                 Bisexual  Most of the time
## 5409  Heterosexual (straight)         Sometimes
## 5410                 Bisexual             Never
## 5411  Heterosexual (straight)  Most of the time
## 5412                 Not sure         Sometimes
## 5413  Heterosexual (straight)             Never
## 5414                 Bisexual            Rarely
## 5415  Heterosexual (straight)             Never
## 5416                 Bisexual            Always
## 5417                 Bisexual  Most of the time
## 5418  Heterosexual (straight)         Sometimes
## 5419  Heterosexual (straight)            Always
## 5420  Heterosexual (straight)  Most of the time
## 5421  Heterosexual (straight)             Never
## 5422                 Not sure            Always
## 5423  Heterosexual (straight)             Never
## 5424  Heterosexual (straight)             Never
## 5425  Heterosexual (straight)         Sometimes
## 5426  Heterosexual (straight)         Sometimes
## 5427  Heterosexual (straight)             Never
## 5428  Heterosexual (straight)         Sometimes
## 5429  Heterosexual (straight)             Never
## 5430  Heterosexual (straight)  Most of the time
## 5431  Heterosexual (straight)            Always
## 5432  Heterosexual (straight)         Sometimes
## 5433  Heterosexual (straight)         Sometimes
## 5434  Heterosexual (straight)         Sometimes
## 5435  Heterosexual (straight)         Sometimes
## 5436  Heterosexual (straight)             Never
## 5437  Heterosexual (straight)            Rarely
## 5438           Some other way  Most of the time
## 5439  Heterosexual (straight)            Rarely
## 5440  Heterosexual (straight)             Never
## 5441  Heterosexual (straight)  Most of the time
## 5442  Heterosexual (straight)             Never
## 5443  Heterosexual (straight)             Never
## 5444                 Not sure         Sometimes
## 5445  Heterosexual (straight)             Never
## 5446  Heterosexual (straight)         Sometimes
## 5447                 Bisexual            Always
## 5448  Heterosexual (straight)             Never
## 5449  Heterosexual (straight)         Sometimes
## 5450  Heterosexual (straight)            Rarely
## 5451  Heterosexual (straight)  Most of the time
## 5452  Heterosexual (straight)            Rarely
## 5453  Heterosexual (straight)  Most of the time
## 5454  Heterosexual (straight)  Most of the time
## 5455  Heterosexual (straight)            Rarely
## 5456  Heterosexual (straight)            Rarely
## 5457  Heterosexual (straight)  Most of the time
## 5458           Gay or lesbian             Never
## 5459  Heterosexual (straight)         Sometimes
## 5460  Heterosexual (straight)            Rarely
## 5461  Heterosexual (straight)            Rarely
## 5462  Heterosexual (straight)            Rarely
## 5463  Heterosexual (straight)             Never
## 5464  Heterosexual (straight)         Sometimes
## 5465  Heterosexual (straight)            Always
## 5466  Heterosexual (straight)         Sometimes
## 5467  Heterosexual (straight)            Rarely
## 5468  Heterosexual (straight)         Sometimes
## 5469  Heterosexual (straight)  Most of the time
## 5470  Heterosexual (straight)            Rarely
## 5471                 Not sure  Most of the time
## 5472  Heterosexual (straight)            Rarely
## 5473  Heterosexual (straight)  Most of the time
## 5474  Heterosexual (straight)             Never
## 5475  Heterosexual (straight)             Never
## 5476                 Bisexual            Always
## 5477  Heterosexual (straight)  Most of the time
## 5478                 Bisexual  Most of the time
## 5479  Heterosexual (straight)         Sometimes
## 5480  Heterosexual (straight)             Never
## 5481  Heterosexual (straight)            Rarely
## 5482  Heterosexual (straight)             Never
## 5483  Heterosexual (straight)            Rarely
## 5484                 Bisexual  Most of the time
## 5485           Some other way  Most of the time
## 5486  Heterosexual (straight)         Sometimes
## 5487           Some other way            Rarely
## 5488                 Bisexual         Sometimes
## 5489                 Bisexual  Most of the time
## 5490           Some other way  Most of the time
## 5491                 Not sure         Sometimes
## 5492  Heterosexual (straight)         Sometimes
## 5493  Heterosexual (straight)            Always
## 5494  Heterosexual (straight)         Sometimes
## 5495  Heterosexual (straight)            Rarely
## 5496  Heterosexual (straight)             Never
## 5497  Heterosexual (straight)         Sometimes
## 5498  Heterosexual (straight)         Sometimes
## 5499  Heterosexual (straight)            Rarely
## 5500  Heterosexual (straight)  Most of the time
## 5501  Heterosexual (straight)         Sometimes
## 5502  Heterosexual (straight)             Never
## 5503  Heterosexual (straight)         Sometimes
## 5504  Heterosexual (straight)  Most of the time
## 5505  Heterosexual (straight)         Sometimes
## 5506  Heterosexual (straight)            Rarely
## 5507  Heterosexual (straight)  Most of the time
## 5508                 Bisexual         Sometimes
## 5509                 Not sure  Most of the time
## 5510  Heterosexual (straight)         Sometimes
## 5511  Heterosexual (straight)  Most of the time
## 5512  Heterosexual (straight)  Most of the time
## 5513  Heterosexual (straight)         Sometimes
## 5514  Heterosexual (straight)  Most of the time
## 5515  Heterosexual (straight)            Rarely
## 5516  Heterosexual (straight)             Never
## 5517                 Bisexual            Always
## 5518  Heterosexual (straight)         Sometimes
## 5519           Some other way  Most of the time
## 5520  Heterosexual (straight)             Never
## 5521  Heterosexual (straight)             Never
## 5522  Heterosexual (straight)            Rarely
## 5523  Heterosexual (straight)             Never
## 5524  Heterosexual (straight)            Rarely
## 5525                 Bisexual  Most of the time
## 5526  Heterosexual (straight)            Always
## 5527  Heterosexual (straight)         Sometimes
## 5528  Heterosexual (straight)  Most of the time
## 5529  Heterosexual (straight)         Sometimes
## 5530  Heterosexual (straight)  Most of the time
## 5531  Heterosexual (straight)  Most of the time
## 5532                 Bisexual         Sometimes
## 5533  Heterosexual (straight)  Most of the time
## 5534  Heterosexual (straight)             Never
## 5535                 Bisexual         Sometimes
## 5536                 Bisexual         Sometimes
## 5537                 Bisexual  Most of the time
## 5538  Heterosexual (straight)            Rarely
## 5539  Heterosexual (straight)  Most of the time
## 5540                 Bisexual  Most of the time
## 5541  Heterosexual (straight)  Most of the time
## 5542  Heterosexual (straight)         Sometimes
## 5543           Gay or lesbian  Most of the time
## 5544  Heterosexual (straight)             Never
## 5545                 Bisexual              <NA>
## 5546           Some other way  Most of the time
## 5547                 Bisexual         Sometimes
## 5548                 Bisexual            Rarely
## 5549  Heterosexual (straight)            Rarely
## 5550  Heterosexual (straight)  Most of the time
## 5551  Heterosexual (straight)             Never
## 5552  Heterosexual (straight)         Sometimes
## 5553                 Bisexual  Most of the time
## 5554                 Bisexual  Most of the time
## 5555                 Bisexual  Most of the time
## 5556                 Bisexual            Always
## 5557           Some other way              <NA>
## 5558           Some other way         Sometimes
## 5559  Heterosexual (straight)            Rarely
## 5560                 Not sure         Sometimes
## 5561  Heterosexual (straight)            Rarely
## 5562  Heterosexual (straight)         Sometimes
## 5563  Heterosexual (straight)            Rarely
## 5564  Heterosexual (straight)            Rarely
## 5565  Heterosexual (straight)         Sometimes
## 5566  Heterosexual (straight)             Never
## 5567                 Not sure  Most of the time
## 5568  Heterosexual (straight)            Rarely
## 5569                 Bisexual  Most of the time
## 5570                 Not sure         Sometimes
## 5571                 Not sure         Sometimes
## 5572  Heterosexual (straight)  Most of the time
## 5573  Heterosexual (straight)         Sometimes
## 5574  Heterosexual (straight)            Rarely
## 5575  Heterosexual (straight)            Rarely
## 5576                 Bisexual  Most of the time
## 5577  Heterosexual (straight)            Always
## 5578           Some other way            Always
## 5579                 Bisexual            Always
## 5580                 Bisexual             Never
## 5581  Heterosexual (straight)             Never
## 5582  Heterosexual (straight)         Sometimes
## 5583  Heterosexual (straight)             Never
## 5584  Heterosexual (straight)         Sometimes
## 5585  Heterosexual (straight)             Never
## 5586  Heterosexual (straight)             Never
## 5587  Heterosexual (straight)            Rarely
## 5588  Heterosexual (straight)  Most of the time
## 5589  Heterosexual (straight)            Rarely
## 5590  Heterosexual (straight)  Most of the time
## 5591  Heterosexual (straight)             Never
## 5592                 Not sure  Most of the time
## 5593  Heterosexual (straight)            Always
## 5594  Heterosexual (straight)         Sometimes
## 5595  Heterosexual (straight)         Sometimes
## 5596  Heterosexual (straight)         Sometimes
## 5597  Heterosexual (straight)            Rarely
## 5598  Heterosexual (straight)             Never
## 5599  Heterosexual (straight)         Sometimes
## 5600  Heterosexual (straight)             Never
## 5601  Heterosexual (straight)            Rarely
## 5602  Heterosexual (straight)         Sometimes
## 5603                 Not sure         Sometimes
## 5604  Heterosexual (straight)         Sometimes
## 5605  Heterosexual (straight)  Most of the time
## 5606  Heterosexual (straight)         Sometimes
## 5607  Heterosexual (straight)             Never
## 5608           Gay or lesbian         Sometimes
## 5609  Heterosexual (straight)         Sometimes
## 5610                 Bisexual            Always
## 5611  Heterosexual (straight)         Sometimes
## 5612  Heterosexual (straight)              <NA>
## 5613  Heterosexual (straight)         Sometimes
## 5614  Heterosexual (straight)         Sometimes
## 5615                 Not sure         Sometimes
## 5616  Heterosexual (straight)            Rarely
## 5617                 Not sure            Rarely
## 5618  Heterosexual (straight)         Sometimes
## 5619  Heterosexual (straight)  Most of the time
## 5620                 Bisexual         Sometimes
## 5621                 Not sure  Most of the time
## 5622  Heterosexual (straight)  Most of the time
## 5623  Heterosexual (straight)             Never
## 5624  Heterosexual (straight)  Most of the time
## 5625  Heterosexual (straight)            Always
## 5626  Heterosexual (straight)         Sometimes
## 5627  Heterosexual (straight)  Most of the time
## 5628  Heterosexual (straight)  Most of the time
## 5629                 Bisexual            Rarely
## 5630                 Not sure  Most of the time
## 5631  Heterosexual (straight)         Sometimes
## 5632  Heterosexual (straight)         Sometimes
## 5633  Heterosexual (straight)         Sometimes
## 5634           Gay or lesbian            Always
## 5635           Gay or lesbian            Always
## 5636  Heterosexual (straight)         Sometimes
## 5637  Heterosexual (straight)            Rarely
## 5638           Gay or lesbian         Sometimes
## 5639  Heterosexual (straight)  Most of the time
## 5640                 Not sure              <NA>
## 5641  Heterosexual (straight)            Rarely
## 5642  Heterosexual (straight)            Rarely
## 5643  Heterosexual (straight)             Never
## 5644  Heterosexual (straight)             Never
## 5645  Heterosexual (straight)         Sometimes
## 5646  Heterosexual (straight)            Rarely
## 5647  Heterosexual (straight)            Rarely
## 5648  Heterosexual (straight)         Sometimes
## 5649                 Not sure  Most of the time
## 5650  Heterosexual (straight)         Sometimes
## 5651                 Not sure         Sometimes
## 5652  Heterosexual (straight)            Rarely
## 5653                 Bisexual  Most of the time
## 5654                 Bisexual            Rarely
## 5655  Heterosexual (straight)         Sometimes
## 5656  Heterosexual (straight)             Never
## 5657  Heterosexual (straight)            Rarely
## 5658                 Bisexual  Most of the time
## 5659  Heterosexual (straight)            Rarely
## 5660  Heterosexual (straight)            Rarely
## 5661  Heterosexual (straight)             Never
## 5662  Heterosexual (straight)            Rarely
## 5663  Heterosexual (straight)         Sometimes
## 5664  Heterosexual (straight)  Most of the time
## 5665  Heterosexual (straight)             Never
## 5666           Gay or lesbian         Sometimes
## 5667  Heterosexual (straight)             Never
## 5668  Heterosexual (straight)         Sometimes
## 5669  Heterosexual (straight)            Rarely
## 5670                 Bisexual         Sometimes
## 5671  Heterosexual (straight)  Most of the time
## 5672  Heterosexual (straight)            Rarely
## 5673  Heterosexual (straight)  Most of the time
## 5674                 Not sure  Most of the time
## 5675  Heterosexual (straight)         Sometimes
## 5676                 Bisexual  Most of the time
## 5677  Heterosexual (straight)         Sometimes
## 5678  Heterosexual (straight)         Sometimes
## 5679  Heterosexual (straight)  Most of the time
## 5680  Heterosexual (straight)            Rarely
## 5681  Heterosexual (straight)             Never
## 5682  Heterosexual (straight)             Never
## 5683  Heterosexual (straight)            Rarely
## 5684                 Bisexual            Always
## 5685  Heterosexual (straight)             Never
## 5686  Heterosexual (straight)              <NA>
## 5687  Heterosexual (straight)  Most of the time
## 5688  Heterosexual (straight)            Rarely
## 5689  Heterosexual (straight)             Never
## 5690  Heterosexual (straight)            Rarely
## 5691  Heterosexual (straight)  Most of the time
## 5692  Heterosexual (straight)            Rarely
## 5693  Heterosexual (straight)            Always
## 5694  Heterosexual (straight)  Most of the time
## 5695  Heterosexual (straight)         Sometimes
## 5696  Heterosexual (straight)  Most of the time
## 5697  Heterosexual (straight)         Sometimes
## 5698  Heterosexual (straight)  Most of the time
## 5699                 Bisexual         Sometimes
## 5700  Heterosexual (straight)             Never
## 5701  Heterosexual (straight)  Most of the time
## 5702  Heterosexual (straight)             Never
## 5703  Heterosexual (straight)  Most of the time
## 5704  Heterosexual (straight)            Rarely
## 5705  Heterosexual (straight)         Sometimes
## 5706  Heterosexual (straight)             Never
## 5707  Heterosexual (straight)         Sometimes
## 5708  Heterosexual (straight)         Sometimes
## 5709                 Bisexual            Always
## 5710  Heterosexual (straight)            Always
## 5711  Heterosexual (straight)         Sometimes
## 5712  Heterosexual (straight)             Never
## 5713  Heterosexual (straight)         Sometimes
## 5714  Heterosexual (straight)            Always
## 5715  Heterosexual (straight)            Rarely
## 5716  Heterosexual (straight)            Rarely
## 5717  Heterosexual (straight)             Never
## 5718  Heterosexual (straight)         Sometimes
## 5719  Heterosexual (straight)             Never
## 5720                 Bisexual  Most of the time
## 5721                 Bisexual         Sometimes
## 5722                 Not sure            Always
## 5723           Some other way         Sometimes
## 5724  Heterosexual (straight)            Always
## 5725  Heterosexual (straight)         Sometimes
## 5726  Heterosexual (straight)         Sometimes
## 5727  Heterosexual (straight)         Sometimes
## 5728  Heterosexual (straight)            Rarely
## 5729  Heterosexual (straight)            Rarely
## 5730  Heterosexual (straight)            Rarely
## 5731  Heterosexual (straight)         Sometimes
## 5732  Heterosexual (straight)  Most of the time
## 5733  Heterosexual (straight)         Sometimes
## 5734  Heterosexual (straight)         Sometimes
## 5735  Heterosexual (straight)            Always
## 5736                 Bisexual            Always
## 5737  Heterosexual (straight)            Always
## 5738           Some other way  Most of the time
## 5739  Heterosexual (straight)         Sometimes
## 5740  Heterosexual (straight)             Never
## 5741  Heterosexual (straight)            Rarely
## 5742  Heterosexual (straight)  Most of the time
## 5743  Heterosexual (straight)            Always
## 5744  Heterosexual (straight)  Most of the time
## 5745  Heterosexual (straight)            Always
## 5746  Heterosexual (straight)         Sometimes
## 5747  Heterosexual (straight)         Sometimes
## 5748  Heterosexual (straight)         Sometimes
## 5749  Heterosexual (straight)  Most of the time
## 5750  Heterosexual (straight)            Rarely
## 5751  Heterosexual (straight)         Sometimes
## 5752  Heterosexual (straight)  Most of the time
## 5753           Some other way            Always
## 5754           Some other way         Sometimes
## 5755  Heterosexual (straight)         Sometimes
## 5756  Heterosexual (straight)         Sometimes
## 5757  Heterosexual (straight)            Rarely
## 5758  Heterosexual (straight)         Sometimes
## 5759  Heterosexual (straight)             Never
## 5760  Heterosexual (straight)             Never
## 5761                 Not sure  Most of the time
## 5762  Heterosexual (straight)             Never
## 5763  Heterosexual (straight)            Always
## 5764  Heterosexual (straight)         Sometimes
## 5765  Heterosexual (straight)  Most of the time
## 5766  Heterosexual (straight)            Rarely
## 5767  Heterosexual (straight)         Sometimes
## 5768  Heterosexual (straight)             Never
## 5769  Heterosexual (straight)  Most of the time
## 5770                 Bisexual            Rarely
## 5771  Heterosexual (straight)            Rarely
## 5772                 Bisexual         Sometimes
## 5773  Heterosexual (straight)         Sometimes
## 5774  Heterosexual (straight)            Rarely
## 5775                 Bisexual         Sometimes
## 5776  Heterosexual (straight)             Never
## 5777  Heterosexual (straight)  Most of the time
## 5778                 Not sure            Rarely
## 5779                 Bisexual              <NA>
## 5780           Some other way  Most of the time
## 5781  Heterosexual (straight)  Most of the time
## 5782  Heterosexual (straight)            Rarely
## 5783  Heterosexual (straight)            Rarely
## 5784  Heterosexual (straight)  Most of the time
## 5785  Heterosexual (straight)            Rarely
## 5786           Some other way  Most of the time
## 5787                 Bisexual  Most of the time
## 5788  Heterosexual (straight)         Sometimes
## 5789  Heterosexual (straight)             Never
## 5790  Heterosexual (straight)            Rarely
## 5791  Heterosexual (straight)             Never
## 5792  Heterosexual (straight)         Sometimes
## 5793  Heterosexual (straight)            Rarely
## 5794  Heterosexual (straight)         Sometimes
## 5795  Heterosexual (straight)            Rarely
## 5796  Heterosexual (straight)            Rarely
## 5797                 Not sure         Sometimes
## 5798  Heterosexual (straight)         Sometimes
## 5799                 Not sure  Most of the time
## 5800  Heterosexual (straight)             Never
## 5801  Heterosexual (straight)         Sometimes
## 5802  Heterosexual (straight)  Most of the time
## 5803           Gay or lesbian         Sometimes
## 5804                 Bisexual            Rarely
## 5805                 Bisexual         Sometimes
## 5806                 Bisexual              <NA>
## 5807  Heterosexual (straight)             Never
## 5808                 Not sure         Sometimes
## 5809  Heterosexual (straight)            Rarely
## 5810  Heterosexual (straight)         Sometimes
## 5811  Heterosexual (straight)            Rarely
## 5812  Heterosexual (straight)             Never
## 5813  Heterosexual (straight)         Sometimes
## 5814  Heterosexual (straight)              <NA>
## 5815           Some other way              <NA>
## 5816  Heterosexual (straight)             Never
## 5817  Heterosexual (straight)              <NA>
## 5818  Heterosexual (straight)         Sometimes
## 5819  Heterosexual (straight)              <NA>
## 5820  Heterosexual (straight)              <NA>
## 5821  Heterosexual (straight)             Never
## 5822  Heterosexual (straight)              <NA>
## 5823  Heterosexual (straight)         Sometimes
## 5824  Heterosexual (straight)  Most of the time
## 5825  Heterosexual (straight)  Most of the time
## 5826  Heterosexual (straight)              <NA>
## 5827  Heterosexual (straight)             Never
## 5828  Heterosexual (straight)            Rarely
## 5829                 Bisexual              <NA>
## 5830                 Bisexual             Never
## 5831  Heterosexual (straight)            Rarely
## 5832  Heterosexual (straight)            Rarely
## 5833  Heterosexual (straight)              <NA>
## 5834                 Bisexual         Sometimes
## 5835  Heterosexual (straight)         Sometimes
## 5836                 Not sure         Sometimes
## 5837                 Not sure         Sometimes
## 5838  Heterosexual (straight)              <NA>
## 5839  Heterosexual (straight)              <NA>
## 5840                 Not sure         Sometimes
## 5841  Heterosexual (straight)             Never
## 5842                 Not sure  Most of the time
## 5843  Heterosexual (straight)             Never
## 5844  Heterosexual (straight)            Rarely
## 5845  Heterosexual (straight)            Rarely
## 5846  Heterosexual (straight)            Rarely
## 5847  Heterosexual (straight)              <NA>
## 5848  Heterosexual (straight)            Always
## 5849  Heterosexual (straight)  Most of the time
## 5850  Heterosexual (straight)  Most of the time
## 5851  Heterosexual (straight)  Most of the time
## 5852  Heterosexual (straight)         Sometimes
## 5853           Some other way              <NA>
## 5854  Heterosexual (straight)              <NA>
## 5855  Heterosexual (straight)              <NA>
## 5856  Heterosexual (straight)  Most of the time
## 5857  Heterosexual (straight)              <NA>
## 5858                 Not sure  Most of the time
## 5859  Heterosexual (straight)            Rarely
## 5860  Heterosexual (straight)  Most of the time
## 5861                 Not sure              <NA>
## 5862  Heterosexual (straight)         Sometimes
## 5863  Heterosexual (straight)             Never
## 5864  Heterosexual (straight)  Most of the time
## 5865                 Bisexual            Always
## 5866  Heterosexual (straight)             Never
## 5867  Heterosexual (straight)              <NA>
## 5868           Some other way         Sometimes
## 5869  Heterosexual (straight)         Sometimes
## 5870  Heterosexual (straight)            Rarely
## 5871  Heterosexual (straight)  Most of the time
## 5872  Heterosexual (straight)         Sometimes
## 5873  Heterosexual (straight)             Never
## 5874                 Not sure         Sometimes
## 5875  Heterosexual (straight)  Most of the time
## 5876  Heterosexual (straight)  Most of the time
## 5877  Heterosexual (straight)            Rarely
## 5878  Heterosexual (straight)         Sometimes
## 5879                 Bisexual  Most of the time
## 5880  Heterosexual (straight)  Most of the time
## 5881  Heterosexual (straight)         Sometimes
## 5882  Heterosexual (straight)            Rarely
## 5883  Heterosexual (straight)         Sometimes
## 5884  Heterosexual (straight)         Sometimes
## 5885  Heterosexual (straight)             Never
## 5886           Some other way            Always
## 5887           Some other way  Most of the time
## 5888  Heterosexual (straight)  Most of the time
## 5889  Heterosexual (straight)            Always
## 5890  Heterosexual (straight)  Most of the time
## 5891  Heterosexual (straight)  Most of the time
## 5892           Some other way            Always
## 5893           Some other way            Always
## 5894           Some other way         Sometimes
## 5895                 Not sure  Most of the time
## 5896  Heterosexual (straight)         Sometimes
## 5897  Heterosexual (straight)            Always
## 5898  Heterosexual (straight)  Most of the time
## 5899  Heterosexual (straight)             Never
## 5900           Gay or lesbian         Sometimes
## 5901  Heterosexual (straight)         Sometimes
## 5902  Heterosexual (straight)         Sometimes
## 5903  Heterosexual (straight)         Sometimes
## 5904  Heterosexual (straight)         Sometimes
## 5905  Heterosexual (straight)  Most of the time
## 5906  Heterosexual (straight)             Never
## 5907                 Not sure  Most of the time
## 5908  Heterosexual (straight)            Rarely
## 5909  Heterosexual (straight)         Sometimes
## 5910  Heterosexual (straight)            Rarely
## 5911                 Bisexual         Sometimes
## 5912  Heterosexual (straight)            Always
## 5913  Heterosexual (straight)         Sometimes
## 5914                 Bisexual  Most of the time
## 5915  Heterosexual (straight)            Always
## 5916  Heterosexual (straight)  Most of the time
## 5917                 Bisexual         Sometimes
## 5918           Gay or lesbian            Always
## 5919  Heterosexual (straight)            Rarely
## 5920  Heterosexual (straight)             Never
## 5921  Heterosexual (straight)         Sometimes
## 5922  Heterosexual (straight)            Always
## 5923  Heterosexual (straight)             Never
## 5924                 Bisexual  Most of the time
## 5925                 Bisexual  Most of the time
## 5926  Heterosexual (straight)         Sometimes
## 5927  Heterosexual (straight)  Most of the time
## 5928  Heterosexual (straight)         Sometimes
## 5929  Heterosexual (straight)  Most of the time
## 5930  Heterosexual (straight)         Sometimes
## 5931                 Not sure         Sometimes
## 5932  Heterosexual (straight)  Most of the time
## 5933                 Not sure         Sometimes
## 5934  Heterosexual (straight)            Rarely
## 5935                 Bisexual            Always
## 5936  Heterosexual (straight)  Most of the time
## 5937  Heterosexual (straight)  Most of the time
## 5938  Heterosexual (straight)            Always
## 5939  Heterosexual (straight)  Most of the time
## 5940  Heterosexual (straight)            Always
## 5941                 Bisexual         Sometimes
## 5942                 Not sure             Never
## 5943           Some other way  Most of the time
## 5944  Heterosexual (straight)  Most of the time
## 5945                 Not sure            Always
## 5946  Heterosexual (straight)            Rarely
## 5947                 Bisexual         Sometimes
## 5948  Heterosexual (straight)            Rarely
## 5949  Heterosexual (straight)            Rarely
## 5950  Heterosexual (straight)            Rarely
## 5951  Heterosexual (straight)  Most of the time
## 5952  Heterosexual (straight)  Most of the time
## 5953  Heterosexual (straight)             Never
## 5954  Heterosexual (straight)         Sometimes
## 5955  Heterosexual (straight)            Rarely
## 5956  Heterosexual (straight)            Rarely
## 5957  Heterosexual (straight)  Most of the time
## 5958                 Bisexual            Rarely
## 5959                 Not sure  Most of the time
## 5960  Heterosexual (straight)  Most of the time
## 5961  Heterosexual (straight)         Sometimes
## 5962                 Bisexual         Sometimes
## 5963  Heterosexual (straight)  Most of the time
## 5964           Some other way  Most of the time
## 5965  Heterosexual (straight)            Rarely
## 5966                 Bisexual            Always
## 5967  Heterosexual (straight)            Rarely
## 5968  Heterosexual (straight)         Sometimes
## 5969                 Bisexual  Most of the time
## 5970                 Bisexual            Rarely
## 5971  Heterosexual (straight)  Most of the time
## 5972  Heterosexual (straight)         Sometimes
## 5973                 Not sure         Sometimes
## 5974           Gay or lesbian            Rarely
## 5975  Heterosexual (straight)            Rarely
## 5976  Heterosexual (straight)            Rarely
## 5977  Heterosexual (straight)            Rarely
## 5978                 Bisexual         Sometimes
## 5979  Heterosexual (straight)  Most of the time
## 5980  Heterosexual (straight)         Sometimes
## 5981           Gay or lesbian  Most of the time
## 5982  Heterosexual (straight)            Always
## 5983  Heterosexual (straight)  Most of the time
## 5984  Heterosexual (straight)             Never
## 5985  Heterosexual (straight)         Sometimes
## 5986  Heterosexual (straight)  Most of the time
## 5987                 Bisexual  Most of the time
## 5988                 Not sure         Sometimes
## 5989  Heterosexual (straight)         Sometimes
## 5990  Heterosexual (straight)         Sometimes
## 5991  Heterosexual (straight)            Rarely
## 5992  Heterosexual (straight)         Sometimes
## 5993                 Bisexual            Always
## 5994                 Bisexual         Sometimes
## 5995  Heterosexual (straight)             Never
## 5996  Heterosexual (straight)  Most of the time
## 5997  Heterosexual (straight)  Most of the time
## 5998  Heterosexual (straight)             Never
## 5999  Heterosexual (straight)         Sometimes
## 6000  Heterosexual (straight)             Never
## 6001  Heterosexual (straight)              <NA>
## 6002                 Bisexual         Sometimes
## 6003                 Bisexual            Always
## 6004  Heterosexual (straight)             Never
## 6005  Heterosexual (straight)            Rarely
## 6006                 Bisexual         Sometimes
## 6007  Heterosexual (straight)            Rarely
## 6008  Heterosexual (straight)         Sometimes
## 6009  Heterosexual (straight)            Rarely
## 6010  Heterosexual (straight)            Rarely
## 6011           Some other way  Most of the time
## 6012  Heterosexual (straight)            Rarely
## 6013  Heterosexual (straight)            Always
## 6014  Heterosexual (straight)            Rarely
## 6015  Heterosexual (straight)            Rarely
## 6016  Heterosexual (straight)         Sometimes
## 6017  Heterosexual (straight)  Most of the time
## 6018           Some other way            Always
## 6019  Heterosexual (straight)             Never
## 6020  Heterosexual (straight)            Always
## 6021  Heterosexual (straight)             Never
## 6022  Heterosexual (straight)             Never
## 6023  Heterosexual (straight)            Rarely
## 6024           Some other way             Never
## 6025                 Bisexual         Sometimes
## 6026  Heterosexual (straight)              <NA>
## 6027                 Bisexual             Never
## 6028  Heterosexual (straight)            Rarely
## 6029  Heterosexual (straight)            Always
## 6030  Heterosexual (straight)             Never
## 6031  Heterosexual (straight)         Sometimes
## 6032  Heterosexual (straight)             Never
## 6033  Heterosexual (straight)         Sometimes
## 6034           Gay or lesbian  Most of the time
## 6035  Heterosexual (straight)  Most of the time
## 6036  Heterosexual (straight)            Rarely
## 6037  Heterosexual (straight)         Sometimes
## 6038  Heterosexual (straight)            Always
## 6039                 Bisexual         Sometimes
## 6040  Heterosexual (straight)            Rarely
## 6041  Heterosexual (straight)         Sometimes
## 6042  Heterosexual (straight)            Rarely
## 6043  Heterosexual (straight)            Rarely
## 6044  Heterosexual (straight)            Rarely
## 6045                 Bisexual  Most of the time
## 6046  Heterosexual (straight)            Rarely
## 6047  Heterosexual (straight)             Never
## 6048                 Bisexual         Sometimes
## 6049  Heterosexual (straight)            Rarely
## 6050  Heterosexual (straight)         Sometimes
## 6051  Heterosexual (straight)         Sometimes
## 6052  Heterosexual (straight)              <NA>
## 6053  Heterosexual (straight)            Always
## 6054                 Bisexual  Most of the time
## 6055                 Bisexual  Most of the time
## 6056  Heterosexual (straight)             Never
## 6057           Gay or lesbian  Most of the time
## 6058  Heterosexual (straight)            Rarely
## 6059  Heterosexual (straight)            Rarely
## 6060                 Bisexual  Most of the time
## 6061  Heterosexual (straight)         Sometimes
## 6062  Heterosexual (straight)            Rarely
## 6063  Heterosexual (straight)             Never
## 6064  Heterosexual (straight)  Most of the time
## 6065  Heterosexual (straight)  Most of the time
## 6066  Heterosexual (straight)            Rarely
## 6067  Heterosexual (straight)         Sometimes
## 6068                 Not sure  Most of the time
## 6069  Heterosexual (straight)            Rarely
## 6070  Heterosexual (straight)             Never
## 6071  Heterosexual (straight)             Never
## 6072  Heterosexual (straight)         Sometimes
## 6073  Heterosexual (straight)            Rarely
## 6074  Heterosexual (straight)  Most of the time
## 6075  Heterosexual (straight)            Rarely
## 6076  Heterosexual (straight)  Most of the time
## 6077  Heterosexual (straight)             Never
## 6078  Heterosexual (straight)             Never
## 6079  Heterosexual (straight)             Never
## 6080  Heterosexual (straight)  Most of the time
## 6081  Heterosexual (straight)         Sometimes
## 6082           Gay or lesbian  Most of the time
## 6083  Heterosexual (straight)            Rarely
## 6084                 Not sure  Most of the time
## 6085  Heterosexual (straight)            Rarely
## 6086  Heterosexual (straight)              <NA>
## 6087  Heterosexual (straight)              <NA>
## 6088  Heterosexual (straight)            Rarely
## 6089  Heterosexual (straight)         Sometimes
## 6090  Heterosexual (straight)             Never
## 6091                 Bisexual  Most of the time
## 6092                 Not sure            Always
## 6093  Heterosexual (straight)            Rarely
## 6094                 Not sure            Always
## 6095  Heterosexual (straight)            Always
## 6096                 Bisexual  Most of the time
## 6097  Heterosexual (straight)             Never
## 6098  Heterosexual (straight)            Always
## 6099                 Bisexual             Never
## 6100  Heterosexual (straight)         Sometimes
## 6101  Heterosexual (straight)             Never
## 6102                 Bisexual            Always
## 6103                 Not sure  Most of the time
## 6104  Heterosexual (straight)         Sometimes
## 6105  Heterosexual (straight)            Rarely
## 6106                 Bisexual              <NA>
## 6107  Heterosexual (straight)  Most of the time
## 6108  Heterosexual (straight)         Sometimes
## 6109  Heterosexual (straight)         Sometimes
## 6110                 Bisexual         Sometimes
## 6111                 Not sure            Always
## 6112  Heterosexual (straight)              <NA>
## 6113  Heterosexual (straight)         Sometimes
## 6114  Heterosexual (straight)         Sometimes
## 6115           Gay or lesbian         Sometimes
## 6116  Heterosexual (straight)             Never
## 6117                 Bisexual            Rarely
## 6118  Heterosexual (straight)             Never
## 6119  Heterosexual (straight)            Rarely
## 6120  Heterosexual (straight)             Never
## 6121                 Bisexual  Most of the time
## 6122  Heterosexual (straight)            Rarely
## 6123                 Bisexual            Always
## 6124  Heterosexual (straight)              <NA>
## 6125  Heterosexual (straight)             Never
## 6126  Heterosexual (straight)              <NA>
## 6127  Heterosexual (straight)             Never
## 6128  Heterosexual (straight)             Never
## 6129  Heterosexual (straight)             Never
## 6130  Heterosexual (straight)  Most of the time
## 6131  Heterosexual (straight)            Rarely
## 6132  Heterosexual (straight)         Sometimes
## 6133                 Bisexual             Never
## 6134  Heterosexual (straight)            Rarely
## 6135  Heterosexual (straight)            Always
## 6136  Heterosexual (straight)             Never
## 6137           Gay or lesbian             Never
## 6138  Heterosexual (straight)  Most of the time
## 6139  Heterosexual (straight)              <NA>
## 6140  Heterosexual (straight)         Sometimes
## 6141  Heterosexual (straight)             Never
## 6142  Heterosexual (straight)            Rarely
## 6143  Heterosexual (straight)             Never
## 6144  Heterosexual (straight)            Always
## 6145  Heterosexual (straight)             Never
## 6146  Heterosexual (straight)              <NA>
## 6147  Heterosexual (straight)            Rarely
## 6148  Heterosexual (straight)  Most of the time
## 6149  Heterosexual (straight)  Most of the time
## 6150  Heterosexual (straight)         Sometimes
## 6151  Heterosexual (straight)         Sometimes
## 6152  Heterosexual (straight)            Always
## 6153  Heterosexual (straight)             Never
## 6154  Heterosexual (straight)         Sometimes
## 6155  Heterosexual (straight)  Most of the time
## 6156  Heterosexual (straight)         Sometimes
## 6157                 Not sure            Always
## 6158                 Bisexual         Sometimes
## 6159                 Bisexual  Most of the time
## 6160  Heterosexual (straight)         Sometimes
## 6161                 Bisexual         Sometimes
## 6162  Heterosexual (straight)             Never
## 6163  Heterosexual (straight)              <NA>
## 6164  Heterosexual (straight)         Sometimes
## 6165  Heterosexual (straight)         Sometimes
## 6166  Heterosexual (straight)             Never
## 6167  Heterosexual (straight)         Sometimes
## 6168  Heterosexual (straight)            Rarely
## 6169  Heterosexual (straight)             Never
## 6170  Heterosexual (straight)         Sometimes
## 6171                 Not sure         Sometimes
## 6172  Heterosexual (straight)         Sometimes
## 6173                 Bisexual            Always
## 6174  Heterosexual (straight)              <NA>
## 6175  Heterosexual (straight)            Rarely
## 6176  Heterosexual (straight)         Sometimes
## 6177           Some other way  Most of the time
## 6178  Heterosexual (straight)            Always
## 6179  Heterosexual (straight)            Rarely
## 6180                 Bisexual  Most of the time
## 6181  Heterosexual (straight)  Most of the time
## 6182                 Bisexual         Sometimes
## 6183           Some other way            Always
## 6184  Heterosexual (straight)  Most of the time
## 6185  Heterosexual (straight)  Most of the time
## 6186  Heterosexual (straight)         Sometimes
## 6187  Heterosexual (straight)         Sometimes
## 6188  Heterosexual (straight)         Sometimes
## 6189  Heterosexual (straight)            Rarely
## 6190  Heterosexual (straight)         Sometimes
## 6191  Heterosexual (straight)            Rarely
## 6192  Heterosexual (straight)         Sometimes
## 6193  Heterosexual (straight)         Sometimes
## 6194  Heterosexual (straight)            Rarely
## 6195                 Not sure  Most of the time
## 6196           Gay or lesbian              <NA>
## 6197                 Bisexual            Always
## 6198  Heterosexual (straight)         Sometimes
## 6199  Heterosexual (straight)  Most of the time
## 6200  Heterosexual (straight)         Sometimes
## 6201  Heterosexual (straight)         Sometimes
## 6202  Heterosexual (straight)              <NA>
## 6203  Heterosexual (straight)         Sometimes
## 6204  Heterosexual (straight)         Sometimes
## 6205  Heterosexual (straight)             Never
## 6206  Heterosexual (straight)             Never
## 6207  Heterosexual (straight)  Most of the time
## 6208  Heterosexual (straight)         Sometimes
## 6209  Heterosexual (straight)            Rarely
## 6210  Heterosexual (straight)            Rarely
## 6211  Heterosexual (straight)  Most of the time
## 6212                 Bisexual            Always
## 6213  Heterosexual (straight)            Rarely
## 6214  Heterosexual (straight)  Most of the time
## 6215                 Bisexual  Most of the time
## 6216  Heterosexual (straight)              <NA>
## 6217                 Bisexual  Most of the time
## 6218  Heterosexual (straight)             Never
## 6219                 Not sure              <NA>
## 6220  Heterosexual (straight)            Rarely
## 6221  Heterosexual (straight)              <NA>
## 6222  Heterosexual (straight)            Always
## 6223  Heterosexual (straight)  Most of the time
## 6224  Heterosexual (straight)            Rarely
## 6225  Heterosexual (straight)  Most of the time
## 6226  Heterosexual (straight)              <NA>
## 6227           Gay or lesbian  Most of the time
## 6228  Heterosexual (straight)             Never
## 6229  Heterosexual (straight)         Sometimes
## 6230  Heterosexual (straight)             Never
## 6231  Heterosexual (straight)            Rarely
## 6232  Heterosexual (straight)         Sometimes
## 6233                 Bisexual         Sometimes
## 6234  Heterosexual (straight)              <NA>
## 6235  Heterosexual (straight)              <NA>
## 6236  Heterosexual (straight)              <NA>
## 6237  Heterosexual (straight)         Sometimes
## 6238  Heterosexual (straight)         Sometimes
## 6239  Heterosexual (straight)              <NA>
## 6240  Heterosexual (straight)            Rarely
## 6241  Heterosexual (straight)             Never
## 6242  Heterosexual (straight)         Sometimes
## 6243  Heterosexual (straight)              <NA>
## 6244                 Bisexual            Always
## 6245  Heterosexual (straight)             Never
## 6246  Heterosexual (straight)            Rarely
## 6247  Heterosexual (straight)             Never
## 6248  Heterosexual (straight)             Never
## 6249  Heterosexual (straight)             Never
## 6250  Heterosexual (straight)            Rarely
## 6251  Heterosexual (straight)             Never
## 6252  Heterosexual (straight)            Rarely
## 6253  Heterosexual (straight)         Sometimes
## 6254  Heterosexual (straight)              <NA>
## 6255  Heterosexual (straight)             Never
## 6256  Heterosexual (straight)            Rarely
## 6257  Heterosexual (straight)            Always
## 6258  Heterosexual (straight)  Most of the time
## 6259  Heterosexual (straight)             Never
## 6260  Heterosexual (straight)         Sometimes
## 6261  Heterosexual (straight)         Sometimes
## 6262  Heterosexual (straight)              <NA>
## 6263  Heterosexual (straight)         Sometimes
## 6264  Heterosexual (straight)             Never
## 6265                 Bisexual            Always
## 6266  Heterosexual (straight)  Most of the time
## 6267  Heterosexual (straight)              <NA>
## 6268  Heterosexual (straight)  Most of the time
## 6269  Heterosexual (straight)         Sometimes
## 6270  Heterosexual (straight)            Rarely
## 6271                 Not sure         Sometimes
## 6272  Heterosexual (straight)             Never
## 6273  Heterosexual (straight)  Most of the time
## 6274  Heterosexual (straight)             Never
## 6275  Heterosexual (straight)         Sometimes
## 6276  Heterosexual (straight)            Always
## 6277  Heterosexual (straight)         Sometimes
## 6278           Some other way         Sometimes
## 6279  Heterosexual (straight)         Sometimes
## 6280  Heterosexual (straight)            Rarely
## 6281  Heterosexual (straight)            Rarely
## 6282  Heterosexual (straight)              <NA>
## 6283           Gay or lesbian              <NA>
## 6284  Heterosexual (straight)              <NA>
## 6285  Heterosexual (straight)         Sometimes
## 6286           Gay or lesbian             Never
## 6287  Heterosexual (straight)         Sometimes
## 6288  Heterosexual (straight)             Never
## 6289  Heterosexual (straight)             Never
## 6290  Heterosexual (straight)            Rarely
## 6291  Heterosexual (straight)            Rarely
## 6292                 Bisexual         Sometimes
## 6293  Heterosexual (straight)         Sometimes
## 6294  Heterosexual (straight)            Rarely
## 6295                 Not sure         Sometimes
## 6296  Heterosexual (straight)              <NA>
## 6297  Heterosexual (straight)             Never
## 6298  Heterosexual (straight)             Never
## 6299  Heterosexual (straight)  Most of the time
## 6300  Heterosexual (straight)             Never
## 6301  Heterosexual (straight)             Never
## 6302  Heterosexual (straight)         Sometimes
## 6303  Heterosexual (straight)             Never
## 6304  Heterosexual (straight)             Never
## 6305  Heterosexual (straight)            Rarely
## 6306  Heterosexual (straight)         Sometimes
## 6307                 Bisexual         Sometimes
## 6308  Heterosexual (straight)         Sometimes
## 6309                 Bisexual  Most of the time
## 6310  Heterosexual (straight)  Most of the time
## 6311  Heterosexual (straight)  Most of the time
## 6312  Heterosexual (straight)            Rarely
## 6313           Gay or lesbian         Sometimes
## 6314                 Bisexual         Sometimes
## 6315  Heterosexual (straight)            Rarely
## 6316  Heterosexual (straight)  Most of the time
## 6317  Heterosexual (straight)            Always
## 6318  Heterosexual (straight)             Never
## 6319                 Bisexual  Most of the time
## 6320  Heterosexual (straight)            Rarely
## 6321  Heterosexual (straight)             Never
## 6322  Heterosexual (straight)         Sometimes
## 6323  Heterosexual (straight)            Always
## 6324                 Bisexual             Never
## 6325  Heterosexual (straight)            Rarely
## 6326                 Not sure         Sometimes
## 6327  Heterosexual (straight)         Sometimes
## 6328  Heterosexual (straight)         Sometimes
## 6329  Heterosexual (straight)         Sometimes
## 6330  Heterosexual (straight)            Always
## 6331  Heterosexual (straight)  Most of the time
## 6332  Heterosexual (straight)         Sometimes
## 6333           Gay or lesbian  Most of the time
## 6334  Heterosexual (straight)            Rarely
## 6335  Heterosexual (straight)             Never
## 6336  Heterosexual (straight)             Never
## 6337                 Bisexual         Sometimes
## 6338  Heterosexual (straight)            Always
## 6339  Heterosexual (straight)             Never
## 6340  Heterosexual (straight)         Sometimes
## 6341  Heterosexual (straight)  Most of the time
## 6342  Heterosexual (straight)             Never
## 6343           Gay or lesbian            Always
## 6344                 Not sure         Sometimes
## 6345                 Not sure  Most of the time
## 6346           Some other way            Always
## 6347  Heterosexual (straight)             Never
## 6348  Heterosexual (straight)            Always
## 6349  Heterosexual (straight)         Sometimes
## 6350  Heterosexual (straight)            Rarely
## 6351  Heterosexual (straight)         Sometimes
## 6352  Heterosexual (straight)             Never
## 6353                 Bisexual         Sometimes
## 6354  Heterosexual (straight)  Most of the time
## 6355  Heterosexual (straight)  Most of the time
## 6356  Heterosexual (straight)            Always
## 6357  Heterosexual (straight)  Most of the time
## 6358  Heterosexual (straight)  Most of the time
## 6359  Heterosexual (straight)         Sometimes
## 6360  Heterosexual (straight)            Rarely
## 6361  Heterosexual (straight)         Sometimes
## 6362                 Bisexual            Rarely
## 6363  Heterosexual (straight)         Sometimes
## 6364                 Bisexual             Never
## 6365                 Bisexual  Most of the time
## 6366                 Bisexual  Most of the time
## 6367                 Bisexual  Most of the time
## 6368  Heterosexual (straight)         Sometimes
## 6369  Heterosexual (straight)  Most of the time
## 6370  Heterosexual (straight)            Rarely
## 6371                 Bisexual             Never
## 6372  Heterosexual (straight)            Rarely
## 6373  Heterosexual (straight)  Most of the time
## 6374  Heterosexual (straight)  Most of the time
## 6375                 Bisexual            Rarely
## 6376  Heterosexual (straight)             Never
## 6377  Heterosexual (straight)            Rarely
## 6378           Gay or lesbian  Most of the time
## 6379  Heterosexual (straight)  Most of the time
## 6380  Heterosexual (straight)         Sometimes
## 6381  Heterosexual (straight)  Most of the time
## 6382                 Bisexual         Sometimes
## 6383  Heterosexual (straight)             Never
## 6384  Heterosexual (straight)             Never
## 6385                 Not sure  Most of the time
## 6386                 Not sure            Rarely
## 6387  Heterosexual (straight)         Sometimes
## 6388  Heterosexual (straight)             Never
## 6389  Heterosexual (straight)         Sometimes
## 6390  Heterosexual (straight)             Never
## 6391                 Not sure            Rarely
## 6392  Heterosexual (straight)              <NA>
## 6393  Heterosexual (straight)             Never
## 6394  Heterosexual (straight)  Most of the time
## 6395                 Bisexual            Always
## 6396                 Bisexual             Never
## 6397  Heterosexual (straight)  Most of the time
## 6398  Heterosexual (straight)            Rarely
## 6399           Some other way            Always
## 6400                 Bisexual  Most of the time
## 6401           Some other way  Most of the time
## 6402  Heterosexual (straight)            Rarely
## 6403                 Not sure  Most of the time
## 6404  Heterosexual (straight)             Never
## 6405  Heterosexual (straight)             Never
## 6406  Heterosexual (straight)  Most of the time
## 6407  Heterosexual (straight)            Rarely
## 6408                 Bisexual            Always
## 6409  Heterosexual (straight)             Never
## 6410                 Not sure            Rarely
## 6411  Heterosexual (straight)            Rarely
## 6412  Heterosexual (straight)         Sometimes
## 6413  Heterosexual (straight)            Always
## 6414  Heterosexual (straight)  Most of the time
## 6415  Heterosexual (straight)             Never
## 6416  Heterosexual (straight)              <NA>
## 6417                 Not sure            Rarely
## 6418  Heterosexual (straight)         Sometimes
## 6419  Heterosexual (straight)            Rarely
## 6420  Heterosexual (straight)         Sometimes
## 6421  Heterosexual (straight)             Never
## 6422  Heterosexual (straight)            Always
## 6423  Heterosexual (straight)            Always
## 6424  Heterosexual (straight)  Most of the time
## 6425  Heterosexual (straight)            Rarely
## 6426  Heterosexual (straight)              <NA>
## 6427  Heterosexual (straight)         Sometimes
## 6428  Heterosexual (straight)             Never
## 6429  Heterosexual (straight)         Sometimes
## 6430  Heterosexual (straight)            Rarely
## 6431  Heterosexual (straight)             Never
## 6432  Heterosexual (straight)             Never
## 6433  Heterosexual (straight)         Sometimes
## 6434                 Not sure              <NA>
## 6435  Heterosexual (straight)            Rarely
## 6436  Heterosexual (straight)              <NA>
## 6437  Heterosexual (straight)            Rarely
## 6438  Heterosexual (straight)             Never
## 6439  Heterosexual (straight)         Sometimes
## 6440                 Bisexual            Always
## 6441  Heterosexual (straight)             Never
## 6442           Gay or lesbian         Sometimes
## 6443           Some other way  Most of the time
## 6444  Heterosexual (straight)         Sometimes
## 6445  Heterosexual (straight)  Most of the time
## 6446  Heterosexual (straight)             Never
## 6447  Heterosexual (straight)  Most of the time
## 6448  Heterosexual (straight)         Sometimes
## 6449  Heterosexual (straight)         Sometimes
## 6450  Heterosexual (straight)             Never
## 6451  Heterosexual (straight)             Never
## 6452  Heterosexual (straight)            Rarely
## 6453  Heterosexual (straight)         Sometimes
## 6454           Gay or lesbian  Most of the time
## 6455  Heterosexual (straight)            Rarely
## 6456  Heterosexual (straight)            Rarely
## 6457  Heterosexual (straight)             Never
## 6458  Heterosexual (straight)         Sometimes
## 6459  Heterosexual (straight)              <NA>
## 6460  Heterosexual (straight)  Most of the time
## 6461                 Not sure  Most of the time
## 6462                 Bisexual         Sometimes
## 6463                 Not sure            Rarely
## 6464           Some other way         Sometimes
## 6465  Heterosexual (straight)            Rarely
## 6466                 Bisexual             Never
## 6467  Heterosexual (straight)             Never
## 6468  Heterosexual (straight)         Sometimes
## 6469  Heterosexual (straight)              <NA>
## 6470  Heterosexual (straight)  Most of the time
## 6471                 Not sure            Always
## 6472                 Bisexual  Most of the time
## 6473  Heterosexual (straight)  Most of the time
## 6474  Heterosexual (straight)         Sometimes
## 6475  Heterosexual (straight)         Sometimes
## 6476           Some other way            Always
## 6477                 Bisexual            Always
## 6478  Heterosexual (straight)            Rarely
## 6479  Heterosexual (straight)            Always
## 6480  Heterosexual (straight)            Rarely
## 6481  Heterosexual (straight)            Rarely
## 6482  Heterosexual (straight)             Never
## 6483  Heterosexual (straight)             Never
## 6484  Heterosexual (straight)             Never
## 6485  Heterosexual (straight)            Rarely
## 6486  Heterosexual (straight)         Sometimes
## 6487  Heterosexual (straight)  Most of the time
## 6488  Heterosexual (straight)         Sometimes
## 6489  Heterosexual (straight)  Most of the time
## 6490                 Not sure            Always
## 6491  Heterosexual (straight)         Sometimes
## 6492  Heterosexual (straight)              <NA>
## 6493           Gay or lesbian              <NA>
## 6494  Heterosexual (straight)             Never
## 6495           Some other way         Sometimes
## 6496           Some other way  Most of the time
## 6497  Heterosexual (straight)         Sometimes
## 6498  Heterosexual (straight)  Most of the time
## 6499  Heterosexual (straight)             Never
## 6500  Heterosexual (straight)            Rarely
## 6501           Gay or lesbian            Rarely
## 6502  Heterosexual (straight)             Never
## 6503  Heterosexual (straight)  Most of the time
## 6504  Heterosexual (straight)             Never
## 6505  Heterosexual (straight)             Never
## 6506  Heterosexual (straight)  Most of the time
## 6507  Heterosexual (straight)             Never
## 6508  Heterosexual (straight)         Sometimes
## 6509  Heterosexual (straight)             Never
## 6510                 Bisexual  Most of the time
## 6511  Heterosexual (straight)             Never
## 6512  Heterosexual (straight)             Never
## 6513  Heterosexual (straight)             Never
## 6514  Heterosexual (straight)            Always
## 6515  Heterosexual (straight)            Rarely
## 6516                 Bisexual         Sometimes
## 6517  Heterosexual (straight)             Never
## 6518  Heterosexual (straight)         Sometimes
## 6519  Heterosexual (straight)            Rarely
## 6520  Heterosexual (straight)            Always
## 6521  Heterosexual (straight)            Rarely
## 6522  Heterosexual (straight)         Sometimes
## 6523  Heterosexual (straight)            Rarely
## 6524  Heterosexual (straight)            Rarely
## 6525  Heterosexual (straight)            Always
## 6526                 Bisexual             Never
## 6527  Heterosexual (straight)             Never
## 6528  Heterosexual (straight)             Never
## 6529           Some other way  Most of the time
## 6530  Heterosexual (straight)  Most of the time
## 6531  Heterosexual (straight)            Rarely
## 6532  Heterosexual (straight)             Never
## 6533           Gay or lesbian            Always
## 6534           Some other way         Sometimes
## 6535           Gay or lesbian            Rarely
## 6536  Heterosexual (straight)             Never
## 6537  Heterosexual (straight)         Sometimes
## 6538  Heterosexual (straight)            Rarely
## 6539  Heterosexual (straight)  Most of the time
## 6540  Heterosexual (straight)            Always
## 6541           Some other way  Most of the time
## 6542  Heterosexual (straight)             Never
## 6543  Heterosexual (straight)            Rarely
## 6544  Heterosexual (straight)         Sometimes
## 6545  Heterosexual (straight)         Sometimes
## 6546  Heterosexual (straight)              <NA>
## 6547  Heterosexual (straight)            Rarely
## 6548  Heterosexual (straight)             Never
## 6549  Heterosexual (straight)             Never
## 6550  Heterosexual (straight)             Never
## 6551  Heterosexual (straight)            Rarely
## 6552  Heterosexual (straight)         Sometimes
## 6553  Heterosexual (straight)  Most of the time
## 6554  Heterosexual (straight)            Rarely
## 6555  Heterosexual (straight)            Rarely
## 6556  Heterosexual (straight)            Always
## 6557  Heterosexual (straight)            Rarely
## 6558  Heterosexual (straight)             Never
## 6559  Heterosexual (straight)             Never
## 6560                 Not sure         Sometimes
## 6561  Heterosexual (straight)              <NA>
## 6562  Heterosexual (straight)            Rarely
## 6563  Heterosexual (straight)              <NA>
## 6564  Heterosexual (straight)         Sometimes
## 6565  Heterosexual (straight)              <NA>
## 6566  Heterosexual (straight)  Most of the time
## 6567  Heterosexual (straight)            Rarely
## 6568                 Not sure  Most of the time
## 6569  Heterosexual (straight)             Never
## 6570  Heterosexual (straight)            Rarely
## 6571  Heterosexual (straight)  Most of the time
## 6572  Heterosexual (straight)         Sometimes
## 6573  Heterosexual (straight)         Sometimes
## 6574  Heterosexual (straight)         Sometimes
## 6575  Heterosexual (straight)            Rarely
## 6576  Heterosexual (straight)            Rarely
## 6577  Heterosexual (straight)         Sometimes
## 6578  Heterosexual (straight)            Rarely
## 6579           Some other way            Always
## 6580  Heterosexual (straight)            Rarely
## 6581  Heterosexual (straight)             Never
## 6582  Heterosexual (straight)  Most of the time
## 6583  Heterosexual (straight)             Never
## 6584  Heterosexual (straight)  Most of the time
## 6585  Heterosexual (straight)         Sometimes
## 6586  Heterosexual (straight)             Never
## 6587                 Not sure              <NA>
## 6588  Heterosexual (straight)             Never
## 6589  Heterosexual (straight)              <NA>
## 6590  Heterosexual (straight)            Rarely
## 6591  Heterosexual (straight)  Most of the time
## 6592                 Bisexual              <NA>
## 6593  Heterosexual (straight)         Sometimes
## 6594                 Not sure              <NA>
## 6595  Heterosexual (straight)         Sometimes
## 6596  Heterosexual (straight)              <NA>
## 6597           Gay or lesbian            Always
## 6598                 Bisexual             Never
## 6599  Heterosexual (straight)            Always
## 6600                 Not sure         Sometimes
## 6601  Heterosexual (straight)            Rarely
## 6602  Heterosexual (straight)            Rarely
## 6603  Heterosexual (straight)            Rarely
## 6604  Heterosexual (straight)             Never
## 6605                 Bisexual  Most of the time
## 6606                 Bisexual             Never
## 6607  Heterosexual (straight)            Rarely
## 6608  Heterosexual (straight)            Always
## 6609  Heterosexual (straight)         Sometimes
## 6610           Some other way  Most of the time
## 6611  Heterosexual (straight)             Never
## 6612  Heterosexual (straight)  Most of the time
## 6613  Heterosexual (straight)            Rarely
## 6614                 Bisexual  Most of the time
## 6615  Heterosexual (straight)             Never
## 6616  Heterosexual (straight)             Never
## 6617                 Bisexual         Sometimes
## 6618  Heterosexual (straight)            Rarely
## 6619  Heterosexual (straight)            Always
## 6620  Heterosexual (straight)         Sometimes
## 6621                 Bisexual            Rarely
## 6622           Gay or lesbian            Always
## 6623                 Bisexual  Most of the time
## 6624  Heterosexual (straight)            Rarely
## 6625  Heterosexual (straight)             Never
## 6626  Heterosexual (straight)  Most of the time
## 6627  Heterosexual (straight)  Most of the time
## 6628  Heterosexual (straight)            Always
## 6629  Heterosexual (straight)         Sometimes
## 6630                 Not sure         Sometimes
## 6631  Heterosexual (straight)             Never
## 6632                 Not sure            Rarely
## 6633  Heterosexual (straight)         Sometimes
## 6634  Heterosexual (straight)            Rarely
## 6635  Heterosexual (straight)            Rarely
## 6636  Heterosexual (straight)            Rarely
## 6637  Heterosexual (straight)             Never
## 6638  Heterosexual (straight)             Never
## 6639                 Not sure            Always
## 6640  Heterosexual (straight)         Sometimes
## 6641  Heterosexual (straight)         Sometimes
## 6642                 Bisexual  Most of the time
## 6643                 Bisexual  Most of the time
## 6644  Heterosexual (straight)  Most of the time
## 6645                 Bisexual         Sometimes
## 6646  Heterosexual (straight)         Sometimes
## 6647  Heterosexual (straight)             Never
## 6648  Heterosexual (straight)             Never
## 6649  Heterosexual (straight)            Rarely
## 6650  Heterosexual (straight)         Sometimes
## 6651  Heterosexual (straight)         Sometimes
## 6652  Heterosexual (straight)             Never
## 6653  Heterosexual (straight)              <NA>
## 6654  Heterosexual (straight)             Never
## 6655  Heterosexual (straight)         Sometimes
## 6656           Some other way  Most of the time
## 6657  Heterosexual (straight)            Always
## 6658  Heterosexual (straight)         Sometimes
## 6659  Heterosexual (straight)  Most of the time
## 6660                 Bisexual         Sometimes
## 6661                 Not sure         Sometimes
## 6662  Heterosexual (straight)            Rarely
## 6663  Heterosexual (straight)             Never
## 6664                 Not sure  Most of the time
## 6665                 Bisexual         Sometimes
## 6666  Heterosexual (straight)         Sometimes
## 6667  Heterosexual (straight)             Never
## 6668  Heterosexual (straight)         Sometimes
## 6669                 Not sure         Sometimes
## 6670           Gay or lesbian         Sometimes
## 6671  Heterosexual (straight)              <NA>
## 6672                 Not sure         Sometimes
## 6673  Heterosexual (straight)         Sometimes
## 6674  Heterosexual (straight)             Never
## 6675  Heterosexual (straight)  Most of the time
## 6676  Heterosexual (straight)  Most of the time
## 6677  Heterosexual (straight)         Sometimes
## 6678  Heterosexual (straight)              <NA>
## 6679  Heterosexual (straight)  Most of the time
## 6680           Gay or lesbian         Sometimes
## 6681  Heterosexual (straight)            Rarely
## 6682  Heterosexual (straight)            Always
## 6683  Heterosexual (straight)         Sometimes
## 6684  Heterosexual (straight)  Most of the time
## 6685  Heterosexual (straight)            Always
## 6686  Heterosexual (straight)  Most of the time
## 6687           Gay or lesbian             Never
## 6688  Heterosexual (straight)            Rarely
## 6689  Heterosexual (straight)         Sometimes
## 6690  Heterosexual (straight)            Always
## 6691  Heterosexual (straight)  Most of the time
## 6692  Heterosexual (straight)            Rarely
## 6693  Heterosexual (straight)  Most of the time
## 6694  Heterosexual (straight)         Sometimes
## 6695           Some other way            Rarely
## 6696  Heterosexual (straight)  Most of the time
## 6697  Heterosexual (straight)            Rarely
## 6698  Heterosexual (straight)         Sometimes
## 6699  Heterosexual (straight)  Most of the time
## 6700  Heterosexual (straight)            Always
## 6701  Heterosexual (straight)  Most of the time
## 6702  Heterosexual (straight)         Sometimes
## 6703  Heterosexual (straight)         Sometimes
## 6704  Heterosexual (straight)             Never
## 6705  Heterosexual (straight)         Sometimes
## 6706  Heterosexual (straight)            Always
## 6707                 Bisexual            Always
## 6708           Gay or lesbian             Never
## 6709                 Not sure              <NA>
## 6710  Heterosexual (straight)             Never
## 6711  Heterosexual (straight)         Sometimes
## 6712  Heterosexual (straight)         Sometimes
## 6713  Heterosexual (straight)         Sometimes
## 6714           Gay or lesbian  Most of the time
## 6715                 Bisexual  Most of the time
## 6716  Heterosexual (straight)            Rarely
## 6717  Heterosexual (straight)             Never
## 6718  Heterosexual (straight)            Rarely
## 6719  Heterosexual (straight)            Rarely
## 6720                 Bisexual            Always
## 6721  Heterosexual (straight)            Rarely
## 6722                 Bisexual         Sometimes
## 6723  Heterosexual (straight)            Rarely
## 6724                 Bisexual         Sometimes
## 6725           Gay or lesbian  Most of the time
## 6726  Heterosexual (straight)         Sometimes
## 6727                 Bisexual            Rarely
## 6728                 Bisexual            Always
## 6729  Heterosexual (straight)  Most of the time
## 6730           Gay or lesbian            Always
## 6731  Heterosexual (straight)         Sometimes
## 6732           Some other way            Always
## 6733  Heterosexual (straight)  Most of the time
## 6734  Heterosexual (straight)         Sometimes
## 6735  Heterosexual (straight)            Rarely
## 6736  Heterosexual (straight)             Never
## 6737  Heterosexual (straight)            Rarely
## 6738  Heterosexual (straight)            Rarely
## 6739  Heterosexual (straight)         Sometimes
## 6740  Heterosexual (straight)            Rarely
## 6741           Some other way         Sometimes
## 6742           Gay or lesbian             Never
## 6743  Heterosexual (straight)            Rarely
## 6744  Heterosexual (straight)         Sometimes
## 6745  Heterosexual (straight)  Most of the time
## 6746  Heterosexual (straight)  Most of the time
## 6747  Heterosexual (straight)         Sometimes
## 6748  Heterosexual (straight)  Most of the time
## 6749  Heterosexual (straight)            Rarely
## 6750  Heterosexual (straight)            Rarely
## 6751  Heterosexual (straight)  Most of the time
## 6752  Heterosexual (straight)             Never
## 6753  Heterosexual (straight)            Always
## 6754  Heterosexual (straight)  Most of the time
## 6755  Heterosexual (straight)            Rarely
## 6756  Heterosexual (straight)            Rarely
## 6757                 Not sure  Most of the time
## 6758  Heterosexual (straight)             Never
## 6759                 Bisexual  Most of the time
## 6760  Heterosexual (straight)             Never
## 6761  Heterosexual (straight)            Rarely
## 6762  Heterosexual (straight)             Never
## 6763  Heterosexual (straight)         Sometimes
## 6764  Heterosexual (straight)             Never
## 6765                 Bisexual            Rarely
## 6766  Heterosexual (straight)  Most of the time
## 6767                 Not sure             Never
## 6768  Heterosexual (straight)             Never
## 6769                 Not sure             Never
## 6770  Heterosexual (straight)            Rarely
## 6771  Heterosexual (straight)  Most of the time
## 6772  Heterosexual (straight)  Most of the time
## 6773  Heterosexual (straight)            Always
## 6774  Heterosexual (straight)         Sometimes
## 6775  Heterosexual (straight)             Never
## 6776  Heterosexual (straight)         Sometimes
## 6777  Heterosexual (straight)         Sometimes
## 6778                 Not sure  Most of the time
## 6779  Heterosexual (straight)            Rarely
## 6780  Heterosexual (straight)             Never
## 6781  Heterosexual (straight)            Rarely
## 6782  Heterosexual (straight)         Sometimes
## 6783  Heterosexual (straight)  Most of the time
## 6784  Heterosexual (straight)         Sometimes
## 6785  Heterosexual (straight)             Never
## 6786                 Bisexual            Always
## 6787  Heterosexual (straight)            Rarely
## 6788  Heterosexual (straight)  Most of the time
## 6789                 Bisexual  Most of the time
## 6790  Heterosexual (straight)            Rarely
## 6791  Heterosexual (straight)         Sometimes
## 6792  Heterosexual (straight)             Never
## 6793  Heterosexual (straight)            Rarely
## 6794                 Bisexual  Most of the time
## 6795  Heterosexual (straight)            Rarely
## 6796                 Bisexual  Most of the time
## 6797                 Not sure            Always
## 6798  Heterosexual (straight)         Sometimes
## 6799                 Not sure         Sometimes
## 6800  Heterosexual (straight)         Sometimes
## 6801  Heterosexual (straight)             Never
## 6802  Heterosexual (straight)  Most of the time
## 6803  Heterosexual (straight)  Most of the time
## 6804  Heterosexual (straight)         Sometimes
## 6805  Heterosexual (straight)            Rarely
## 6806  Heterosexual (straight)            Rarely
## 6807                 Bisexual         Sometimes
## 6808  Heterosexual (straight)         Sometimes
## 6809  Heterosexual (straight)            Always
## 6810  Heterosexual (straight)            Rarely
## 6811  Heterosexual (straight)            Rarely
## 6812  Heterosexual (straight)             Never
## 6813  Heterosexual (straight)             Never
## 6814  Heterosexual (straight)              <NA>
## 6815  Heterosexual (straight)            Rarely
## 6816                 Bisexual         Sometimes
## 6817  Heterosexual (straight)         Sometimes
## 6818  Heterosexual (straight)         Sometimes
## 6819  Heterosexual (straight)            Rarely
## 6820  Heterosexual (straight)            Rarely
## 6821  Heterosexual (straight)              <NA>
## 6822  Heterosexual (straight)  Most of the time
## 6823                 Bisexual            Rarely
## 6824  Heterosexual (straight)  Most of the time
## 6825  Heterosexual (straight)              <NA>
## 6826  Heterosexual (straight)            Rarely
## 6827                 Not sure  Most of the time
## 6828  Heterosexual (straight)            Always
## 6829  Heterosexual (straight)         Sometimes
## 6830  Heterosexual (straight)            Rarely
## 6831           Some other way             Never
## 6832  Heterosexual (straight)  Most of the time
## 6833           Gay or lesbian         Sometimes
## 6834  Heterosexual (straight)             Never
## 6835  Heterosexual (straight)            Rarely
## 6836  Heterosexual (straight)  Most of the time
## 6837  Heterosexual (straight)         Sometimes
## 6838  Heterosexual (straight)             Never
## 6839  Heterosexual (straight)  Most of the time
## 6840  Heterosexual (straight)         Sometimes
## 6841  Heterosexual (straight)  Most of the time
## 6842  Heterosexual (straight)            Rarely
## 6843  Heterosexual (straight)         Sometimes
## 6844  Heterosexual (straight)         Sometimes
## 6845  Heterosexual (straight)            Rarely
## 6846  Heterosexual (straight)         Sometimes
## 6847  Heterosexual (straight)         Sometimes
## 6848  Heterosexual (straight)            Rarely
## 6849                 Bisexual         Sometimes
## 6850                 Not sure            Always
## 6851           Gay or lesbian         Sometimes
## 6852  Heterosexual (straight)         Sometimes
## 6853  Heterosexual (straight)         Sometimes
## 6854                 Bisexual         Sometimes
## 6855                 Bisexual         Sometimes
## 6856                 Bisexual         Sometimes
## 6857  Heterosexual (straight)  Most of the time
## 6858                 Not sure  Most of the time
## 6859  Heterosexual (straight)            Rarely
## 6860  Heterosexual (straight)  Most of the time
## 6861  Heterosexual (straight)            Rarely
## 6862  Heterosexual (straight)            Rarely
## 6863                 Bisexual  Most of the time
## 6864  Heterosexual (straight)  Most of the time
## 6865  Heterosexual (straight)            Rarely
## 6866  Heterosexual (straight)         Sometimes
## 6867  Heterosexual (straight)             Never
## 6868           Some other way            Always
## 6869  Heterosexual (straight)             Never
## 6870                 Not sure            Rarely
## 6871  Heterosexual (straight)  Most of the time
## 6872  Heterosexual (straight)         Sometimes
## 6873                 Not sure         Sometimes
## 6874  Heterosexual (straight)            Rarely
## 6875                 Not sure  Most of the time
## 6876                 Bisexual         Sometimes
## 6877  Heterosexual (straight)             Never
## 6878  Heterosexual (straight)             Never
## 6879                 Bisexual             Never
## 6880  Heterosexual (straight)         Sometimes
## 6881  Heterosexual (straight)         Sometimes
## 6882  Heterosexual (straight)            Rarely
## 6883  Heterosexual (straight)         Sometimes
## 6884  Heterosexual (straight)            Rarely
## 6885  Heterosexual (straight)         Sometimes
## 6886  Heterosexual (straight)         Sometimes
## 6887  Heterosexual (straight)             Never
## 6888  Heterosexual (straight)             Never
## 6889  Heterosexual (straight)            Rarely
## 6890  Heterosexual (straight)            Rarely
## 6891  Heterosexual (straight)             Never
## 6892  Heterosexual (straight)            Rarely
## 6893                 Bisexual  Most of the time
## 6894  Heterosexual (straight)            Rarely
## 6895  Heterosexual (straight)         Sometimes
## 6896  Heterosexual (straight)         Sometimes
## 6897  Heterosexual (straight)            Rarely
## 6898           Some other way         Sometimes
## 6899  Heterosexual (straight)         Sometimes
## 6900  Heterosexual (straight)  Most of the time
## 6901  Heterosexual (straight)         Sometimes
## 6902  Heterosexual (straight)             Never
## 6903  Heterosexual (straight)             Never
## 6904  Heterosexual (straight)            Rarely
## 6905  Heterosexual (straight)         Sometimes
## 6906  Heterosexual (straight)             Never
## 6907  Heterosexual (straight)         Sometimes
## 6908  Heterosexual (straight)            Rarely
## 6909  Heterosexual (straight)  Most of the time
## 6910  Heterosexual (straight)            Rarely
## 6911                 Not sure            Always
## 6912  Heterosexual (straight)         Sometimes
## 6913  Heterosexual (straight)            Rarely
## 6914  Heterosexual (straight)         Sometimes
## 6915  Heterosexual (straight)         Sometimes
## 6916                 Bisexual         Sometimes
## 6917  Heterosexual (straight)         Sometimes
## 6918  Heterosexual (straight)            Always
## 6919  Heterosexual (straight)         Sometimes
## 6920                 Bisexual         Sometimes
## 6921  Heterosexual (straight)            Rarely
## 6922  Heterosexual (straight)              <NA>
## 6923  Heterosexual (straight)         Sometimes
## 6924  Heterosexual (straight)         Sometimes
## 6925           Some other way         Sometimes
## 6926  Heterosexual (straight)  Most of the time
## 6927                 Bisexual         Sometimes
## 6928  Heterosexual (straight)             Never
## 6929           Some other way            Always
## 6930  Heterosexual (straight)         Sometimes
## 6931                 Bisexual         Sometimes
## 6932  Heterosexual (straight)         Sometimes
## 6933  Heterosexual (straight)             Never
## 6934  Heterosexual (straight)            Rarely
## 6935                 Bisexual  Most of the time
## 6936                 Bisexual            Rarely
## 6937           Gay or lesbian  Most of the time
## 6938  Heterosexual (straight)            Rarely
## 6939                 Not sure  Most of the time
## 6940  Heterosexual (straight)            Rarely
## 6941  Heterosexual (straight)            Rarely
## 6942  Heterosexual (straight)             Never
## 6943                 Not sure            Always
## 6944  Heterosexual (straight)            Rarely
## 6945                 Bisexual            Rarely
## 6946                 Bisexual            Always
## 6947  Heterosexual (straight)             Never
## 6948           Some other way            Always
## 6949                 Bisexual  Most of the time
## 6950  Heterosexual (straight)         Sometimes
## 6951           Gay or lesbian            Rarely
## 6952  Heterosexual (straight)         Sometimes
## 6953                 Not sure            Rarely
## 6954  Heterosexual (straight)  Most of the time
## 6955  Heterosexual (straight)            Rarely
## 6956  Heterosexual (straight)             Never
## 6957  Heterosexual (straight)            Rarely
## 6958  Heterosexual (straight)         Sometimes
## 6959                 Bisexual            Rarely
## 6960  Heterosexual (straight)            Always
## 6961  Heterosexual (straight)            Rarely
## 6962  Heterosexual (straight)         Sometimes
## 6963  Heterosexual (straight)  Most of the time
## 6964  Heterosexual (straight)         Sometimes
## 6965  Heterosexual (straight)         Sometimes
## 6966  Heterosexual (straight)         Sometimes
## 6967           Gay or lesbian             Never
## 6968  Heterosexual (straight)         Sometimes
## 6969           Some other way            Always
## 6970           Some other way  Most of the time
## 6971  Heterosexual (straight)         Sometimes
## 6972           Some other way         Sometimes
## 6973           Gay or lesbian  Most of the time
## 6974  Heterosexual (straight)  Most of the time
## 6975           Gay or lesbian         Sometimes
## 6976                 Not sure            Always
## 6977  Heterosexual (straight)             Never
## 6978  Heterosexual (straight)         Sometimes
## 6979  Heterosexual (straight)             Never
## 6980                 Bisexual         Sometimes
## 6981                 Bisexual  Most of the time
## 6982  Heterosexual (straight)            Rarely
## 6983  Heterosexual (straight)            Rarely
## 6984  Heterosexual (straight)         Sometimes
## 6985                 Bisexual              <NA>
## 6986           Some other way            Always
## 6987                 Not sure         Sometimes
## 6988           Gay or lesbian             Never
## 6989  Heterosexual (straight)            Rarely
## 6990                 Not sure         Sometimes
## 6991           Some other way         Sometimes
## 6992  Heterosexual (straight)            Always
## 6993  Heterosexual (straight)         Sometimes
## 6994           Gay or lesbian         Sometimes
## 6995           Gay or lesbian  Most of the time
## 6996  Heterosexual (straight)            Rarely
## 6997           Some other way  Most of the time
## 6998  Heterosexual (straight)         Sometimes
## 6999  Heterosexual (straight)             Never
## 7000  Heterosexual (straight)         Sometimes
## 7001  Heterosexual (straight)         Sometimes
## 7002                 Bisexual         Sometimes
## 7003           Gay or lesbian            Rarely
## 7004  Heterosexual (straight)         Sometimes
## 7005                 Not sure         Sometimes
## 7006  Heterosexual (straight)            Rarely
## 7007                 Bisexual         Sometimes
## 7008  Heterosexual (straight)            Rarely
## 7009  Heterosexual (straight)            Rarely
## 7010                 Bisexual         Sometimes
## 7011                 Bisexual  Most of the time
## 7012           Some other way              <NA>
## 7013  Heterosexual (straight)         Sometimes
## 7014                 Bisexual            Always
## 7015                 Bisexual  Most of the time
## 7016  Heterosexual (straight)         Sometimes
## 7017  Heterosexual (straight)  Most of the time
## 7018  Heterosexual (straight)            Rarely
## 7019                 Bisexual  Most of the time
## 7020  Heterosexual (straight)  Most of the time
## 7021           Some other way         Sometimes
## 7022  Heterosexual (straight)         Sometimes
## 7023           Some other way  Most of the time
## 7024           Some other way         Sometimes
## 7025  Heterosexual (straight)            Rarely
## 7026                 Not sure         Sometimes
## 7027                 Bisexual            Rarely
## 7028                 Not sure         Sometimes
## 7029  Heterosexual (straight)         Sometimes
## 7030                 Not sure  Most of the time
## 7031           Some other way            Always
## 7032  Heterosexual (straight)            Rarely
## 7033  Heterosexual (straight)            Rarely
## 7034                 Bisexual         Sometimes
## 7035  Heterosexual (straight)  Most of the time
## 7036                 Not sure         Sometimes
## 7037  Heterosexual (straight)            Rarely
## 7038  Heterosexual (straight)            Rarely
## 7039  Heterosexual (straight)         Sometimes
## 7040  Heterosexual (straight)         Sometimes
## 7041  Heterosexual (straight)         Sometimes
## 7042  Heterosexual (straight)  Most of the time
## 7043                 Bisexual         Sometimes
## 7044  Heterosexual (straight)         Sometimes
## 7045           Gay or lesbian            Always
## 7046  Heterosexual (straight)            Rarely
## 7047           Gay or lesbian         Sometimes
## 7048                 Bisexual  Most of the time
## 7049  Heterosexual (straight)             Never
## 7050  Heterosexual (straight)            Rarely
## 7051  Heterosexual (straight)  Most of the time
## 7052                 Bisexual  Most of the time
## 7053                 Not sure         Sometimes
## 7054           Some other way            Always
## 7055           Gay or lesbian  Most of the time
## 7056  Heterosexual (straight)            Rarely
## 7057           Some other way         Sometimes
## 7058  Heterosexual (straight)            Rarely
## 7059  Heterosexual (straight)  Most of the time
## 7060  Heterosexual (straight)         Sometimes
## 7061  Heterosexual (straight)             Never
## 7062  Heterosexual (straight)            Rarely
## 7063  Heterosexual (straight)            Rarely
## 7064  Heterosexual (straight)            Rarely
## 7065  Heterosexual (straight)         Sometimes
## 7066  Heterosexual (straight)             Never
## 7067  Heterosexual (straight)         Sometimes
## 7068                 Bisexual         Sometimes
## 7069  Heterosexual (straight)         Sometimes
## 7070  Heterosexual (straight)            Rarely
## 7071  Heterosexual (straight)         Sometimes
## 7072  Heterosexual (straight)            Rarely
## 7073  Heterosexual (straight)         Sometimes
## 7074  Heterosexual (straight)         Sometimes
## 7075                 Not sure         Sometimes
## 7076  Heterosexual (straight)  Most of the time
## 7077                 Bisexual         Sometimes
## 7078  Heterosexual (straight)            Rarely
## 7079  Heterosexual (straight)            Always
## 7080  Heterosexual (straight)            Rarely
## 7081  Heterosexual (straight)  Most of the time
## 7082           Some other way            Always
## 7083  Heterosexual (straight)             Never
## 7084  Heterosexual (straight)         Sometimes
## 7085  Heterosexual (straight)            Always
## 7086  Heterosexual (straight)            Rarely
## 7087  Heterosexual (straight)             Never
## 7088  Heterosexual (straight)         Sometimes
## 7089           Gay or lesbian  Most of the time
## 7090  Heterosexual (straight)         Sometimes
## 7091           Some other way         Sometimes
## 7092                 Not sure            Always
## 7093           Gay or lesbian             Never
## 7094                 Not sure  Most of the time
## 7095  Heterosexual (straight)            Rarely
## 7096  Heterosexual (straight)            Rarely
## 7097                 Bisexual  Most of the time
## 7098                 Not sure         Sometimes
## 7099  Heterosexual (straight)  Most of the time
## 7100  Heterosexual (straight)         Sometimes
## 7101  Heterosexual (straight)  Most of the time
## 7102  Heterosexual (straight)            Rarely
## 7103  Heterosexual (straight)         Sometimes
## 7104  Heterosexual (straight)  Most of the time
## 7105                 Bisexual         Sometimes
## 7106  Heterosexual (straight)  Most of the time
## 7107                 Bisexual         Sometimes
## 7108  Heterosexual (straight)         Sometimes
## 7109  Heterosexual (straight)            Rarely
## 7110  Heterosexual (straight)             Never
## 7111  Heterosexual (straight)         Sometimes
## 7112  Heterosexual (straight)         Sometimes
## 7113  Heterosexual (straight)              <NA>
## 7114           Some other way  Most of the time
## 7115  Heterosexual (straight)            Rarely
## 7116  Heterosexual (straight)            Rarely
## 7117  Heterosexual (straight)            Rarely
## 7118  Heterosexual (straight)            Rarely
## 7119  Heterosexual (straight)             Never
## 7120                 Bisexual            Rarely
## 7121  Heterosexual (straight)            Rarely
## 7122  Heterosexual (straight)  Most of the time
## 7123  Heterosexual (straight)             Never
## 7124                 Not sure         Sometimes
## 7125  Heterosexual (straight)         Sometimes
## 7126  Heterosexual (straight)             Never
## 7127  Heterosexual (straight)            Rarely
## 7128  Heterosexual (straight)            Rarely
## 7129  Heterosexual (straight)         Sometimes
## 7130                 Bisexual  Most of the time
## 7131  Heterosexual (straight)             Never
## 7132  Heterosexual (straight)         Sometimes
## 7133                 Not sure  Most of the time
## 7134  Heterosexual (straight)  Most of the time
## 7135  Heterosexual (straight)             Never
## 7136  Heterosexual (straight)            Always
## 7137  Heterosexual (straight)         Sometimes
## 7138  Heterosexual (straight)            Rarely
## 7139  Heterosexual (straight)  Most of the time
## 7140           Some other way         Sometimes
## 7141  Heterosexual (straight)         Sometimes
## 7142  Heterosexual (straight)             Never
## 7143  Heterosexual (straight)            Rarely
## 7144  Heterosexual (straight)            Rarely
## 7145  Heterosexual (straight)             Never
## 7146  Heterosexual (straight)            Always
## 7147  Heterosexual (straight)         Sometimes
## 7148           Gay or lesbian  Most of the time
## 7149  Heterosexual (straight)         Sometimes
## 7150  Heterosexual (straight)         Sometimes
## 7151  Heterosexual (straight)            Rarely
## 7152  Heterosexual (straight)            Rarely
## 7153  Heterosexual (straight)            Rarely
## 7154  Heterosexual (straight)            Always
## 7155  Heterosexual (straight)             Never
## 7156  Heterosexual (straight)            Rarely
## 7157  Heterosexual (straight)            Rarely
## 7158  Heterosexual (straight)            Rarely
## 7159  Heterosexual (straight)         Sometimes
## 7160  Heterosexual (straight)         Sometimes
## 7161  Heterosexual (straight)            Rarely
## 7162  Heterosexual (straight)         Sometimes
## 7163  Heterosexual (straight)         Sometimes
## 7164  Heterosexual (straight)            Rarely
## 7165  Heterosexual (straight)            Rarely
## 7166  Heterosexual (straight)            Rarely
## 7167  Heterosexual (straight)  Most of the time
## 7168           Some other way            Always
## 7169  Heterosexual (straight)            Always
## 7170           Gay or lesbian         Sometimes
## 7171  Heterosexual (straight)            Rarely
## 7172  Heterosexual (straight)            Rarely
## 7173                 Not sure         Sometimes
## 7174  Heterosexual (straight)            Rarely
## 7175  Heterosexual (straight)            Rarely
## 7176  Heterosexual (straight)            Rarely
## 7177  Heterosexual (straight)         Sometimes
## 7178  Heterosexual (straight)         Sometimes
## 7179  Heterosexual (straight)         Sometimes
## 7180  Heterosexual (straight)             Never
## 7181  Heterosexual (straight)             Never
## 7182                 Not sure         Sometimes
## 7183  Heterosexual (straight)         Sometimes
## 7184  Heterosexual (straight)         Sometimes
## 7185  Heterosexual (straight)             Never
## 7186           Some other way  Most of the time
## 7187  Heterosexual (straight)  Most of the time
## 7188  Heterosexual (straight)             Never
## 7189  Heterosexual (straight)  Most of the time
## 7190  Heterosexual (straight)            Rarely
## 7191                 Bisexual              <NA>
## 7192  Heterosexual (straight)         Sometimes
## 7193  Heterosexual (straight)         Sometimes
## 7194  Heterosexual (straight)            Rarely
## 7195  Heterosexual (straight)  Most of the time
## 7196  Heterosexual (straight)         Sometimes
## 7197  Heterosexual (straight)         Sometimes
## 7198  Heterosexual (straight)             Never
## 7199                 Not sure  Most of the time
## 7200  Heterosexual (straight)         Sometimes
## 7201           Gay or lesbian         Sometimes
## 7202  Heterosexual (straight)             Never
## 7203  Heterosexual (straight)         Sometimes
## 7204  Heterosexual (straight)         Sometimes
## 7205                 Bisexual              <NA>
## 7206  Heterosexual (straight)             Never
## 7207           Gay or lesbian            Rarely
## 7208           Some other way         Sometimes
## 7209  Heterosexual (straight)            Rarely
## 7210  Heterosexual (straight)         Sometimes
## 7211  Heterosexual (straight)              <NA>
## 7212  Heterosexual (straight)             Never
## 7213  Heterosexual (straight)         Sometimes
## 7214  Heterosexual (straight)            Rarely
## 7215  Heterosexual (straight)             Never
## 7216                 Bisexual             Never
## 7217  Heterosexual (straight)              <NA>
## 7218  Heterosexual (straight)         Sometimes
## 7219  Heterosexual (straight)             Never
## 7220                 Bisexual         Sometimes
## 7221  Heterosexual (straight)         Sometimes
## 7222  Heterosexual (straight)             Never
## 7223  Heterosexual (straight)            Rarely
## 7224                 Bisexual  Most of the time
## 7225  Heterosexual (straight)            Rarely
## 7226  Heterosexual (straight)             Never
## 7227  Heterosexual (straight)         Sometimes
## 7228                 Bisexual             Never
## 7229  Heterosexual (straight)  Most of the time
## 7230  Heterosexual (straight)              <NA>
## 7231  Heterosexual (straight)            Rarely
## 7232           Some other way            Rarely
## 7233  Heterosexual (straight)             Never
## 7234  Heterosexual (straight)             Never
## 7235  Heterosexual (straight)            Rarely
## 7236  Heterosexual (straight)            Rarely
## 7237  Heterosexual (straight)            Always
## 7238  Heterosexual (straight)            Rarely
## 7239                 Not sure            Always
## 7240  Heterosexual (straight)         Sometimes
## 7241  Heterosexual (straight)            Always
## 7242  Heterosexual (straight)            Rarely
## 7243  Heterosexual (straight)            Rarely
## 7244  Heterosexual (straight)         Sometimes
## 7245                 Not sure            Always
## 7246                 Bisexual            Rarely
## 7247  Heterosexual (straight)         Sometimes
## 7248                 Bisexual         Sometimes
## 7249  Heterosexual (straight)         Sometimes
## 7250  Heterosexual (straight)            Rarely
## 7251  Heterosexual (straight)             Never
## 7252           Gay or lesbian            Always
## 7253                 Bisexual            Always
## 7254  Heterosexual (straight)             Never
## 7255                 Bisexual            Rarely
## 7256  Heterosexual (straight)            Rarely
## 7257  Heterosexual (straight)            Rarely
## 7258  Heterosexual (straight)            Rarely
## 7259  Heterosexual (straight)             Never
## 7260                 Bisexual         Sometimes
## 7261  Heterosexual (straight)  Most of the time
## 7262  Heterosexual (straight)            Rarely
## 7263  Heterosexual (straight)         Sometimes
## 7264  Heterosexual (straight)         Sometimes
## 7265  Heterosexual (straight)            Rarely
## 7266                 Bisexual  Most of the time
## 7267  Heterosexual (straight)         Sometimes
## 7268                 Not sure            Rarely
## 7269  Heterosexual (straight)         Sometimes
## 7270  Heterosexual (straight)             Never
## 7271           Gay or lesbian         Sometimes
## 7272                 Bisexual  Most of the time
## 7273                 Bisexual  Most of the time
## 7274  Heterosexual (straight)            Rarely
## 7275  Heterosexual (straight)         Sometimes
## 7276  Heterosexual (straight)  Most of the time
## 7277           Gay or lesbian  Most of the time
## 7278  Heterosexual (straight)  Most of the time
## 7279  Heterosexual (straight)             Never
## 7280  Heterosexual (straight)             Never
## 7281                 Bisexual            Rarely
## 7282                 Bisexual            Rarely
## 7283  Heterosexual (straight)  Most of the time
## 7284  Heterosexual (straight)  Most of the time
## 7285                 Bisexual         Sometimes
## 7286                 Bisexual         Sometimes
## 7287  Heterosexual (straight)            Rarely
## 7288           Gay or lesbian         Sometimes
## 7289  Heterosexual (straight)            Rarely
## 7290  Heterosexual (straight)  Most of the time
## 7291  Heterosexual (straight)            Rarely
## 7292  Heterosexual (straight)            Rarely
## 7293  Heterosexual (straight)            Rarely
## 7294  Heterosexual (straight)            Always
## 7295  Heterosexual (straight)  Most of the time
## 7296                 Not sure            Always
## 7297  Heterosexual (straight)         Sometimes
## 7298  Heterosexual (straight)  Most of the time
## 7299  Heterosexual (straight)  Most of the time
## 7300                 Not sure  Most of the time
## 7301  Heterosexual (straight)  Most of the time
## 7302  Heterosexual (straight)            Rarely
## 7303                 Not sure            Rarely
## 7304  Heterosexual (straight)         Sometimes
## 7305                 Bisexual            Always
## 7306  Heterosexual (straight)         Sometimes
## 7307  Heterosexual (straight)              <NA>
## 7308  Heterosexual (straight)  Most of the time
## 7309                 Not sure         Sometimes
## 7310  Heterosexual (straight)            Rarely
## 7311  Heterosexual (straight)            Always
## 7312           Some other way            Always
## 7313  Heterosexual (straight)  Most of the time
## 7314                 Bisexual  Most of the time
## 7315  Heterosexual (straight)  Most of the time
## 7316  Heterosexual (straight)             Never
## 7317  Heterosexual (straight)  Most of the time
## 7318  Heterosexual (straight)            Rarely
## 7319  Heterosexual (straight)            Always
## 7320  Heterosexual (straight)  Most of the time
## 7321  Heterosexual (straight)  Most of the time
## 7322  Heterosexual (straight)             Never
## 7323  Heterosexual (straight)              <NA>
## 7324  Heterosexual (straight)             Never
## 7325  Heterosexual (straight)            Rarely
## 7326  Heterosexual (straight)             Never
## 7327  Heterosexual (straight)         Sometimes
## 7328                 Bisexual  Most of the time
## 7329  Heterosexual (straight)             Never
## 7330                 Bisexual              <NA>
## 7331  Heterosexual (straight)            Rarely
## 7332  Heterosexual (straight)  Most of the time
## 7333  Heterosexual (straight)         Sometimes
## 7334  Heterosexual (straight)  Most of the time
## 7335                 Not sure         Sometimes
## 7336           Gay or lesbian            Always
## 7337  Heterosexual (straight)         Sometimes
## 7338  Heterosexual (straight)            Rarely
## 7339  Heterosexual (straight)            Rarely
## 7340  Heterosexual (straight)             Never
## 7341           Gay or lesbian            Always
## 7342  Heterosexual (straight)         Sometimes
## 7343  Heterosexual (straight)             Never
## 7344  Heterosexual (straight)             Never
## 7345  Heterosexual (straight)         Sometimes
## 7346  Heterosexual (straight)            Rarely
## 7347  Heterosexual (straight)            Always
## 7348  Heterosexual (straight)            Rarely
## 7349  Heterosexual (straight)             Never
## 7350  Heterosexual (straight)             Never
## 7351  Heterosexual (straight)              <NA>
## 7352                 Bisexual  Most of the time
## 7353  Heterosexual (straight)            Rarely
## 7354  Heterosexual (straight)  Most of the time
## 7355  Heterosexual (straight)              <NA>
## 7356                 Not sure         Sometimes
## 7357  Heterosexual (straight)             Never
## 7358  Heterosexual (straight)  Most of the time
## 7359  Heterosexual (straight)         Sometimes
## 7360           Gay or lesbian            Always
## 7361  Heterosexual (straight)              <NA>
## 7362  Heterosexual (straight)             Never
## 7363  Heterosexual (straight)             Never
## 7364  Heterosexual (straight)            Rarely
## 7365  Heterosexual (straight)            Rarely
## 7366  Heterosexual (straight)            Rarely
## 7367  Heterosexual (straight)            Always
## 7368  Heterosexual (straight)            Rarely
## 7369  Heterosexual (straight)         Sometimes
## 7370           Gay or lesbian  Most of the time
## 7371  Heterosexual (straight)             Never
## 7372  Heterosexual (straight)             Never
## 7373  Heterosexual (straight)            Rarely
## 7374                 Bisexual            Rarely
## 7375  Heterosexual (straight)              <NA>
## 7376  Heterosexual (straight)         Sometimes
## 7377                 Bisexual            Always
## 7378                 Bisexual         Sometimes
## 7379  Heterosexual (straight)             Never
## 7380  Heterosexual (straight)             Never
## 7381  Heterosexual (straight)            Always
## 7382  Heterosexual (straight)            Rarely
## 7383  Heterosexual (straight)            Rarely
## 7384  Heterosexual (straight)             Never
## 7385  Heterosexual (straight)             Never
## 7386                 Bisexual         Sometimes
## 7387  Heterosexual (straight)             Never
## 7388  Heterosexual (straight)             Never
## 7389  Heterosexual (straight)            Rarely
## 7390  Heterosexual (straight)             Never
## 7391  Heterosexual (straight)            Always
## 7392                 Bisexual         Sometimes
## 7393           Some other way            Always
## 7394  Heterosexual (straight)         Sometimes
## 7395  Heterosexual (straight)  Most of the time
## 7396  Heterosexual (straight)            Rarely
## 7397  Heterosexual (straight)             Never
## 7398  Heterosexual (straight)         Sometimes
## 7399           Gay or lesbian         Sometimes
## 7400  Heterosexual (straight)  Most of the time
## 7401  Heterosexual (straight)         Sometimes
## 7402  Heterosexual (straight)             Never
## 7403  Heterosexual (straight)            Rarely
## 7404           Gay or lesbian             Never
## 7405  Heterosexual (straight)  Most of the time
## 7406  Heterosexual (straight)             Never
## 7407  Heterosexual (straight)         Sometimes
## 7408  Heterosexual (straight)  Most of the time
## 7409  Heterosexual (straight)             Never
## 7410  Heterosexual (straight)  Most of the time
## 7411  Heterosexual (straight)         Sometimes
## 7412  Heterosexual (straight)             Never
## 7413  Heterosexual (straight)            Rarely
## 7414  Heterosexual (straight)         Sometimes
## 7415  Heterosexual (straight)             Never
## 7416  Heterosexual (straight)            Rarely
## 7417  Heterosexual (straight)             Never
## 7418  Heterosexual (straight)            Rarely
## 7419  Heterosexual (straight)             Never
## 7420  Heterosexual (straight)            Rarely
## 7421  Heterosexual (straight)         Sometimes
## 7422  Heterosexual (straight)            Rarely
## 7423  Heterosexual (straight)  Most of the time
## 7424  Heterosexual (straight)             Never
## 7425  Heterosexual (straight)            Always
## 7426  Heterosexual (straight)            Rarely
## 7427  Heterosexual (straight)         Sometimes
## 7428  Heterosexual (straight)            Rarely
## 7429           Some other way              <NA>
## 7430  Heterosexual (straight)         Sometimes
## 7431  Heterosexual (straight)              <NA>
## 7432  Heterosexual (straight)            Rarely
## 7433  Heterosexual (straight)             Never
## 7434  Heterosexual (straight)  Most of the time
## 7435  Heterosexual (straight)             Never
## 7436  Heterosexual (straight)         Sometimes
## 7437  Heterosexual (straight)            Rarely
## 7438  Heterosexual (straight)             Never
## 7439  Heterosexual (straight)            Always
## 7440  Heterosexual (straight)              <NA>
## 7441  Heterosexual (straight)         Sometimes
## 7442           Gay or lesbian         Sometimes
## 7443  Heterosexual (straight)            Rarely
## 7444  Heterosexual (straight)         Sometimes
## 7445  Heterosexual (straight)            Rarely
## 7446  Heterosexual (straight)            Rarely
## 7447  Heterosexual (straight)         Sometimes
## 7448  Heterosexual (straight)             Never
## 7449  Heterosexual (straight)         Sometimes
## 7450  Heterosexual (straight)         Sometimes
## 7451  Heterosexual (straight)         Sometimes
## 7452  Heterosexual (straight)            Rarely
## 7453           Some other way            Always
## 7454  Heterosexual (straight)             Never
## 7455  Heterosexual (straight)            Always
## 7456                 Bisexual         Sometimes
## 7457           Some other way            Always
## 7458  Heterosexual (straight)            Rarely
## 7459  Heterosexual (straight)         Sometimes
## 7460  Heterosexual (straight)             Never
## 7461  Heterosexual (straight)              <NA>
## 7462                 Bisexual  Most of the time
## 7463  Heterosexual (straight)            Rarely
## 7464           Gay or lesbian              <NA>
## 7465  Heterosexual (straight)  Most of the time
## 7466  Heterosexual (straight)             Never
## 7467  Heterosexual (straight)  Most of the time
## 7468  Heterosexual (straight)             Never
## 7469           Gay or lesbian         Sometimes
## 7470  Heterosexual (straight)         Sometimes
## 7471  Heterosexual (straight)            Rarely
## 7472  Heterosexual (straight)         Sometimes
## 7473  Heterosexual (straight)            Always
## 7474  Heterosexual (straight)            Rarely
## 7475  Heterosexual (straight)         Sometimes
## 7476                 Not sure  Most of the time
## 7477  Heterosexual (straight)             Never
## 7478  Heterosexual (straight)            Rarely
## 7479  Heterosexual (straight)         Sometimes
## 7480                 Not sure         Sometimes
## 7481  Heterosexual (straight)             Never
## 7482  Heterosexual (straight)            Rarely
## 7483  Heterosexual (straight)            Always
## 7484  Heterosexual (straight)            Always
## 7485  Heterosexual (straight)            Rarely
## 7486  Heterosexual (straight)         Sometimes
## 7487  Heterosexual (straight)              <NA>
## 7488  Heterosexual (straight)            Rarely
## 7489  Heterosexual (straight)             Never
## 7490  Heterosexual (straight)            Rarely
## 7491  Heterosexual (straight)         Sometimes
## 7492  Heterosexual (straight)             Never
## 7493  Heterosexual (straight)         Sometimes
## 7494  Heterosexual (straight)            Rarely
## 7495  Heterosexual (straight)             Never
## 7496  Heterosexual (straight)            Rarely
## 7497                 Bisexual         Sometimes
## 7498  Heterosexual (straight)             Never
## 7499  Heterosexual (straight)         Sometimes
## 7500  Heterosexual (straight)  Most of the time
## 7501  Heterosexual (straight)             Never
## 7502  Heterosexual (straight)            Always
## 7503  Heterosexual (straight)         Sometimes
## 7504  Heterosexual (straight)            Rarely
## 7505                 Bisexual  Most of the time
## 7506  Heterosexual (straight)             Never
## 7507  Heterosexual (straight)  Most of the time
## 7508  Heterosexual (straight)            Always
## 7509  Heterosexual (straight)            Rarely
## 7510  Heterosexual (straight)            Always
## 7511  Heterosexual (straight)             Never
## 7512  Heterosexual (straight)  Most of the time
## 7513  Heterosexual (straight)  Most of the time
## 7514  Heterosexual (straight)             Never
## 7515  Heterosexual (straight)         Sometimes
## 7516  Heterosexual (straight)         Sometimes
## 7517  Heterosexual (straight)            Rarely
## 7518           Some other way            Always
## 7519  Heterosexual (straight)         Sometimes
## 7520  Heterosexual (straight)  Most of the time
## 7521                 Not sure            Always
## 7522                 Bisexual  Most of the time
## 7523                 Bisexual  Most of the time
## 7524  Heterosexual (straight)  Most of the time
## 7525  Heterosexual (straight)         Sometimes
## 7526                 Bisexual  Most of the time
## 7527                 Not sure         Sometimes
## 7528  Heterosexual (straight)         Sometimes
## 7529  Heterosexual (straight)            Always
## 7530  Heterosexual (straight)  Most of the time
## 7531  Heterosexual (straight)            Always
## 7532  Heterosexual (straight)  Most of the time
## 7533  Heterosexual (straight)  Most of the time
## 7534                 Bisexual             Never
## 7535  Heterosexual (straight)  Most of the time
## 7536  Heterosexual (straight)  Most of the time
## 7537  Heterosexual (straight)            Rarely
## 7538  Heterosexual (straight)             Never
## 7539  Heterosexual (straight)  Most of the time
## 7540                 Bisexual            Always
## 7541  Heterosexual (straight)              <NA>
## 7542  Heterosexual (straight)            Always
## 7543  Heterosexual (straight)            Rarely
## 7544                 Not sure  Most of the time
## 7545  Heterosexual (straight)             Never
## 7546  Heterosexual (straight)         Sometimes
## 7547  Heterosexual (straight)         Sometimes
## 7548  Heterosexual (straight)            Always
## 7549  Heterosexual (straight)  Most of the time
## 7550  Heterosexual (straight)             Never
## 7551                 Bisexual         Sometimes
## 7552  Heterosexual (straight)         Sometimes
## 7553  Heterosexual (straight)            Always
## 7554  Heterosexual (straight)            Rarely
## 7555                 Bisexual            Always
## 7556  Heterosexual (straight)         Sometimes
## 7557  Heterosexual (straight)            Rarely
## 7558  Heterosexual (straight)            Rarely
## 7559  Heterosexual (straight)  Most of the time
## 7560  Heterosexual (straight)            Always
## 7561                 Bisexual         Sometimes
## 7562  Heterosexual (straight)  Most of the time
## 7563           Some other way            Always
## 7564  Heterosexual (straight)            Always
## 7565  Heterosexual (straight)             Never
## 7566           Some other way         Sometimes
## 7567  Heterosexual (straight)  Most of the time
## 7568  Heterosexual (straight)             Never
## 7569  Heterosexual (straight)            Rarely
## 7570  Heterosexual (straight)             Never
## 7571  Heterosexual (straight)            Rarely
## 7572  Heterosexual (straight)            Always
## 7573                 Bisexual         Sometimes
## 7574  Heterosexual (straight)  Most of the time
## 7575                 Bisexual  Most of the time
## 7576           Some other way            Always
## 7577                 Bisexual  Most of the time
## 7578                 Not sure            Always
## 7579  Heterosexual (straight)         Sometimes
## 7580                 Bisexual         Sometimes
## 7581  Heterosexual (straight)            Rarely
## 7582  Heterosexual (straight)             Never
## 7583  Heterosexual (straight)         Sometimes
## 7584           Some other way         Sometimes
## 7585                 Bisexual         Sometimes
## 7586  Heterosexual (straight)            Rarely
## 7587           Some other way            Rarely
## 7588  Heterosexual (straight)         Sometimes
## 7589                 Bisexual            Always
## 7590  Heterosexual (straight)             Never
## 7591                 Bisexual         Sometimes
## 7592                 Bisexual            Always
## 7593  Heterosexual (straight)         Sometimes
## 7594                 Bisexual  Most of the time
## 7595  Heterosexual (straight)         Sometimes
## 7596           Gay or lesbian         Sometimes
## 7597                 Bisexual  Most of the time
## 7598  Heterosexual (straight)            Rarely
## 7599                 Bisexual  Most of the time
## 7600  Heterosexual (straight)            Rarely
## 7601  Heterosexual (straight)             Never
## 7602  Heterosexual (straight)             Never
## 7603           Some other way            Always
## 7604  Heterosexual (straight)  Most of the time
## 7605  Heterosexual (straight)            Always
## 7606  Heterosexual (straight)             Never
## 7607  Heterosexual (straight)         Sometimes
## 7608  Heterosexual (straight)             Never
## 7609                 Bisexual  Most of the time
## 7610  Heterosexual (straight)         Sometimes
## 7611  Heterosexual (straight)  Most of the time
## 7612                 Bisexual            Rarely
## 7613  Heterosexual (straight)            Always
## 7614  Heterosexual (straight)         Sometimes
## 7615  Heterosexual (straight)            Rarely
## 7616           Gay or lesbian         Sometimes
## 7617  Heterosexual (straight)            Rarely
## 7618           Some other way  Most of the time
## 7619  Heterosexual (straight)  Most of the time
## 7620           Gay or lesbian  Most of the time
## 7621  Heterosexual (straight)            Rarely
## 7622  Heterosexual (straight)            Rarely
## 7623  Heterosexual (straight)  Most of the time
## 7624                 Bisexual            Always
## 7625           Some other way            Always
## 7626           Gay or lesbian         Sometimes
## 7627  Heterosexual (straight)             Never
## 7628  Heterosexual (straight)            Rarely
## 7629  Heterosexual (straight)         Sometimes
## 7630  Heterosexual (straight)  Most of the time
## 7631                 Bisexual            Rarely
## 7632  Heterosexual (straight)  Most of the time
## 7633  Heterosexual (straight)  Most of the time
## 7634  Heterosexual (straight)         Sometimes
## 7635  Heterosexual (straight)         Sometimes
## 7636  Heterosexual (straight)            Rarely
## 7637  Heterosexual (straight)             Never
## 7638  Heterosexual (straight)  Most of the time
## 7639  Heterosexual (straight)            Rarely
## 7640                 Bisexual            Rarely
## 7641  Heterosexual (straight)            Rarely
## 7642  Heterosexual (straight)            Rarely
## 7643  Heterosexual (straight)         Sometimes
## 7644  Heterosexual (straight)            Rarely
## 7645  Heterosexual (straight)            Rarely
## 7646  Heterosexual (straight)         Sometimes
## 7647                 Not sure            Rarely
## 7648  Heterosexual (straight)            Always
## 7649  Heterosexual (straight)         Sometimes
## 7650  Heterosexual (straight)             Never
## 7651                 Bisexual  Most of the time
## 7652  Heterosexual (straight)            Rarely
## 7653  Heterosexual (straight)            Always
## 7654  Heterosexual (straight)            Rarely
## 7655  Heterosexual (straight)         Sometimes
## 7656                 Bisexual            Always
## 7657  Heterosexual (straight)         Sometimes
## 7658  Heterosexual (straight)         Sometimes
## 7659                 Bisexual            Always
## 7660  Heterosexual (straight)         Sometimes
## 7661  Heterosexual (straight)  Most of the time
## 7662  Heterosexual (straight)            Always
## 7663  Heterosexual (straight)         Sometimes
## 7664                 Bisexual  Most of the time
## 7665  Heterosexual (straight)            Rarely
## 7666                 Not sure         Sometimes
## 7667  Heterosexual (straight)             Never
## 7668  Heterosexual (straight)            Rarely
## 7669  Heterosexual (straight)            Rarely
## 7670  Heterosexual (straight)  Most of the time
## 7671                 Bisexual            Always
## 7672  Heterosexual (straight)         Sometimes
## 7673  Heterosexual (straight)             Never
## 7674  Heterosexual (straight)            Rarely
## 7675           Gay or lesbian  Most of the time
## 7676  Heterosexual (straight)  Most of the time
## 7677                 Not sure            Always
## 7678  Heterosexual (straight)            Rarely
## 7679  Heterosexual (straight)            Rarely
## 7680                 Not sure  Most of the time
## 7681  Heterosexual (straight)  Most of the time
## 7682           Some other way            Always
## 7683  Heterosexual (straight)         Sometimes
## 7684  Heterosexual (straight)  Most of the time
## 7685  Heterosexual (straight)         Sometimes
## 7686  Heterosexual (straight)         Sometimes
## 7687  Heterosexual (straight)            Rarely
## 7688                 Bisexual            Always
## 7689  Heterosexual (straight)             Never
## 7690  Heterosexual (straight)             Never
## 7691  Heterosexual (straight)  Most of the time
## 7692  Heterosexual (straight)         Sometimes
## 7693           Some other way  Most of the time
## 7694  Heterosexual (straight)         Sometimes
## 7695  Heterosexual (straight)              <NA>
## 7696  Heterosexual (straight)             Never
## 7697  Heterosexual (straight)         Sometimes
## 7698                 Bisexual         Sometimes
## 7699                 Bisexual            Always
## 7700  Heterosexual (straight)            Always
## 7701  Heterosexual (straight)         Sometimes
## 7702  Heterosexual (straight)  Most of the time
## 7703                 Bisexual         Sometimes
## 7704                 Bisexual  Most of the time
## 7705                 Bisexual         Sometimes
## 7706  Heterosexual (straight)            Rarely
## 7707  Heterosexual (straight)  Most of the time
## 7708  Heterosexual (straight)             Never
## 7709                 Bisexual            Always
## 7710                 Bisexual             Never
## 7711  Heterosexual (straight)  Most of the time
## 7712  Heterosexual (straight)  Most of the time
## 7713  Heterosexual (straight)            Rarely
## 7714                 Bisexual             Never
## 7715           Some other way  Most of the time
## 7716  Heterosexual (straight)            Rarely
## 7717  Heterosexual (straight)            Rarely
## 7718  Heterosexual (straight)  Most of the time
## 7719  Heterosexual (straight)  Most of the time
## 7720  Heterosexual (straight)         Sometimes
## 7721  Heterosexual (straight)            Always
## 7722                 Bisexual         Sometimes
## 7723  Heterosexual (straight)         Sometimes
## 7724  Heterosexual (straight)            Rarely
## 7725  Heterosexual (straight)            Rarely
## 7726                 Bisexual  Most of the time
## 7727  Heterosexual (straight)            Rarely
## 7728                 Bisexual         Sometimes
## 7729  Heterosexual (straight)  Most of the time
## 7730                 Not sure  Most of the time
## 7731                 Bisexual         Sometimes
## 7732  Heterosexual (straight)            Rarely
## 7733                 Bisexual         Sometimes
## 7734  Heterosexual (straight)         Sometimes
## 7735  Heterosexual (straight)  Most of the time
## 7736  Heterosexual (straight)            Always
## 7737                 Bisexual  Most of the time
## 7738           Gay or lesbian            Always
## 7739                 Bisexual  Most of the time
## 7740  Heterosexual (straight)            Rarely
## 7741                 Bisexual         Sometimes
## 7742  Heterosexual (straight)         Sometimes
## 7743  Heterosexual (straight)            Rarely
## 7744  Heterosexual (straight)         Sometimes
## 7745                 Bisexual         Sometimes
## 7746  Heterosexual (straight)             Never
## 7747                 Bisexual  Most of the time
## 7748  Heterosexual (straight)            Rarely
## 7749  Heterosexual (straight)             Never
## 7750  Heterosexual (straight)            Rarely
## 7751  Heterosexual (straight)         Sometimes
## 7752  Heterosexual (straight)         Sometimes
## 7753  Heterosexual (straight)             Never
## 7754  Heterosexual (straight)  Most of the time
## 7755                 Not sure         Sometimes
## 7756  Heterosexual (straight)  Most of the time
## 7757                 Bisexual  Most of the time
## 7758                 Bisexual  Most of the time
## 7759  Heterosexual (straight)         Sometimes
## 7760  Heterosexual (straight)         Sometimes
## 7761                 Bisexual            Always
## 7762                 Not sure             Never
## 7763           Gay or lesbian            Always
## 7764                 Bisexual  Most of the time
## 7765  Heterosexual (straight)  Most of the time
## 7766  Heterosexual (straight)            Rarely
## 7767  Heterosexual (straight)         Sometimes
## 7768                 Not sure            Rarely
## 7769  Heterosexual (straight)         Sometimes
## 7770  Heterosexual (straight)            Rarely
## 7771  Heterosexual (straight)         Sometimes
## 7772  Heterosexual (straight)         Sometimes
## 7773  Heterosexual (straight)  Most of the time
## 7774  Heterosexual (straight)  Most of the time
## 7775  Heterosexual (straight)         Sometimes
## 7776  Heterosexual (straight)         Sometimes
## 7777                 Bisexual            Rarely
## 7778  Heterosexual (straight)            Rarely
## 7779  Heterosexual (straight)            Rarely
## 7780  Heterosexual (straight)  Most of the time
## 7781  Heterosexual (straight)            Rarely
## 7782  Heterosexual (straight)  Most of the time
## 7783  Heterosexual (straight)  Most of the time
## 7784  Heterosexual (straight)         Sometimes
## 7785  Heterosexual (straight)            Rarely
## 7786                 Bisexual  Most of the time
## 7787  Heterosexual (straight)         Sometimes
## 7788  Heterosexual (straight)  Most of the time
## 7789  Heterosexual (straight)         Sometimes
## 7790                 Bisexual  Most of the time
## 7791  Heterosexual (straight)  Most of the time
## 7792  Heterosexual (straight)         Sometimes
## 7793  Heterosexual (straight)             Never
## 7794  Heterosexual (straight)            Rarely
## 7795  Heterosexual (straight)  Most of the time
## 7796                 Not sure  Most of the time
## 7797                 Bisexual  Most of the time
## 7798  Heterosexual (straight)             Never
## 7799  Heterosexual (straight)  Most of the time
## 7800                 Bisexual            Rarely
## 7801  Heterosexual (straight)              <NA>
## 7802           Some other way  Most of the time
## 7803                 Bisexual         Sometimes
## 7804  Heterosexual (straight)            Rarely
## 7805                 Bisexual         Sometimes
## 7806  Heterosexual (straight)             Never
## 7807  Heterosexual (straight)            Rarely
## 7808  Heterosexual (straight)         Sometimes
## 7809  Heterosexual (straight)         Sometimes
## 7810  Heterosexual (straight)  Most of the time
## 7811  Heterosexual (straight)         Sometimes
## 7812  Heterosexual (straight)         Sometimes
## 7813                 Bisexual            Rarely
## 7814  Heterosexual (straight)            Always
## 7815  Heterosexual (straight)  Most of the time
## 7816  Heterosexual (straight)            Rarely
## 7817  Heterosexual (straight)         Sometimes
## 7818  Heterosexual (straight)             Never
## 7819  Heterosexual (straight)              <NA>
## 7820  Heterosexual (straight)         Sometimes
## 7821  Heterosexual (straight)            Rarely
## 7822  Heterosexual (straight)         Sometimes
## 7823  Heterosexual (straight)         Sometimes
## 7824  Heterosexual (straight)            Always
## 7825  Heterosexual (straight)         Sometimes
## 7826  Heterosexual (straight)  Most of the time
## 7827  Heterosexual (straight)            Rarely
## 7828  Heterosexual (straight)  Most of the time
## 7829                 Not sure         Sometimes
## 7830           Some other way         Sometimes
## 7831  Heterosexual (straight)         Sometimes
## 7832  Heterosexual (straight)         Sometimes
## 7833  Heterosexual (straight)             Never
## 7834  Heterosexual (straight)  Most of the time
## 7835  Heterosexual (straight)         Sometimes
## 7836                 Bisexual         Sometimes
## 7837                 Bisexual         Sometimes
## 7838                 Bisexual         Sometimes
## 7839  Heterosexual (straight)            Rarely
## 7840           Gay or lesbian            Always
## 7841  Heterosexual (straight)            Always
## 7842  Heterosexual (straight)             Never
## 7843                 Not sure  Most of the time
## 7844  Heterosexual (straight)  Most of the time
## 7845  Heterosexual (straight)            Rarely
## 7846                 Bisexual            Always
## 7847  Heterosexual (straight)  Most of the time
## 7848  Heterosexual (straight)         Sometimes
## 7849  Heterosexual (straight)             Never
## 7850           Gay or lesbian         Sometimes
## 7851                 Not sure         Sometimes
## 7852  Heterosexual (straight)  Most of the time
## 7853                 Bisexual  Most of the time
## 7854                 Bisexual  Most of the time
## 7855  Heterosexual (straight)         Sometimes
## 7856                 Bisexual  Most of the time
## 7857  Heterosexual (straight)            Rarely
## 7858                 Bisexual         Sometimes
## 7859  Heterosexual (straight)            Rarely
## 7860  Heterosexual (straight)  Most of the time
## 7861  Heterosexual (straight)             Never
## 7862           Gay or lesbian             Never
## 7863  Heterosexual (straight)              <NA>
## 7864                 Bisexual         Sometimes
## 7865  Heterosexual (straight)             Never
## 7866  Heterosexual (straight)         Sometimes
## 7867           Some other way  Most of the time
## 7868                 Bisexual         Sometimes
## 7869  Heterosexual (straight)         Sometimes
## 7870  Heterosexual (straight)         Sometimes
## 7871                 Bisexual  Most of the time
## 7872  Heterosexual (straight)         Sometimes
## 7873  Heterosexual (straight)         Sometimes
## 7874                 Bisexual         Sometimes
## 7875  Heterosexual (straight)            Always
## 7876  Heterosexual (straight)            Rarely
## 7877  Heterosexual (straight)             Never
## 7878  Heterosexual (straight)         Sometimes
## 7879  Heterosexual (straight)            Rarely
## 7880  Heterosexual (straight)            Rarely
## 7881  Heterosexual (straight)             Never
## 7882  Heterosexual (straight)             Never
## 7883  Heterosexual (straight)         Sometimes
## 7884                 Bisexual            Always
## 7885           Some other way         Sometimes
## 7886  Heterosexual (straight)  Most of the time
## 7887  Heterosexual (straight)            Rarely
## 7888  Heterosexual (straight)         Sometimes
## 7889  Heterosexual (straight)            Rarely
## 7890  Heterosexual (straight)         Sometimes
## 7891           Some other way            Always
## 7892  Heterosexual (straight)             Never
## 7893  Heterosexual (straight)  Most of the time
## 7894  Heterosexual (straight)             Never
## 7895  Heterosexual (straight)            Always
## 7896  Heterosexual (straight)            Rarely
## 7897                 Bisexual         Sometimes
## 7898  Heterosexual (straight)         Sometimes
## 7899  Heterosexual (straight)         Sometimes
## 7900  Heterosexual (straight)            Rarely
## 7901  Heterosexual (straight)             Never
## 7902                 Bisexual  Most of the time
## 7903  Heterosexual (straight)  Most of the time
## 7904  Heterosexual (straight)            Rarely
## 7905  Heterosexual (straight)            Rarely
## 7906           Gay or lesbian            Always
## 7907  Heterosexual (straight)  Most of the time
## 7908  Heterosexual (straight)  Most of the time
## 7909  Heterosexual (straight)         Sometimes
## 7910  Heterosexual (straight)            Rarely
## 7911  Heterosexual (straight)            Rarely
## 7912                 Bisexual            Always
## 7913  Heterosexual (straight)            Rarely
## 7914  Heterosexual (straight)             Never
## 7915  Heterosexual (straight)             Never
## 7916  Heterosexual (straight)             Never
## 7917  Heterosexual (straight)             Never
## 7918  Heterosexual (straight)         Sometimes
## 7919  Heterosexual (straight)            Rarely
## 7920  Heterosexual (straight)         Sometimes
## 7921           Some other way  Most of the time
## 7922  Heterosexual (straight)             Never
## 7923  Heterosexual (straight)            Rarely
## 7924  Heterosexual (straight)             Never
## 7925  Heterosexual (straight)            Rarely
## 7926  Heterosexual (straight)            Rarely
## 7927  Heterosexual (straight)            Rarely
## 7928  Heterosexual (straight)            Always
## 7929  Heterosexual (straight)            Rarely
## 7930  Heterosexual (straight)  Most of the time
## 7931  Heterosexual (straight)  Most of the time
## 7932                 Not sure            Rarely
## 7933  Heterosexual (straight)  Most of the time
## 7934  Heterosexual (straight)             Never
## 7935  Heterosexual (straight)         Sometimes
## 7936  Heterosexual (straight)            Always
## 7937  Heterosexual (straight)            Rarely
## 7938  Heterosexual (straight)         Sometimes
## 7939                 Not sure  Most of the time
## 7940  Heterosexual (straight)            Rarely
## 7941  Heterosexual (straight)  Most of the time
## 7942  Heterosexual (straight)            Rarely
## 7943  Heterosexual (straight)         Sometimes
## 7944  Heterosexual (straight)  Most of the time
## 7945  Heterosexual (straight)             Never
## 7946  Heterosexual (straight)  Most of the time
## 7947  Heterosexual (straight)         Sometimes
## 7948  Heterosexual (straight)             Never
## 7949                 Bisexual            Always
## 7950  Heterosexual (straight)         Sometimes
## 7951  Heterosexual (straight)            Rarely
## 7952  Heterosexual (straight)            Rarely
## 7953  Heterosexual (straight)         Sometimes
## 7954  Heterosexual (straight)             Never
## 7955                 Bisexual            Always
## 7956  Heterosexual (straight)             Never
## 7957  Heterosexual (straight)         Sometimes
## 7958  Heterosexual (straight)             Never
## 7959  Heterosexual (straight)  Most of the time
## 7960  Heterosexual (straight)         Sometimes
## 7961  Heterosexual (straight)         Sometimes
## 7962  Heterosexual (straight)         Sometimes
## 7963  Heterosexual (straight)         Sometimes
## 7964  Heterosexual (straight)             Never
## 7965  Heterosexual (straight)         Sometimes
## 7966  Heterosexual (straight)         Sometimes
## 7967  Heterosexual (straight)            Always
## 7968  Heterosexual (straight)            Rarely
## 7969  Heterosexual (straight)            Always
## 7970  Heterosexual (straight)         Sometimes
## 7971                 Bisexual            Always
## 7972  Heterosexual (straight)            Rarely
## 7973  Heterosexual (straight)             Never
## 7974  Heterosexual (straight)             Never
## 7975  Heterosexual (straight)            Rarely
## 7976  Heterosexual (straight)             Never
## 7977  Heterosexual (straight)              <NA>
## 7978                 Bisexual  Most of the time
## 7979  Heterosexual (straight)         Sometimes
## 7980                 Bisexual  Most of the time
## 7981                 Bisexual  Most of the time
## 7982           Gay or lesbian  Most of the time
## 7983  Heterosexual (straight)  Most of the time
## 7984  Heterosexual (straight)             Never
## 7985  Heterosexual (straight)            Always
## 7986  Heterosexual (straight)            Rarely
## 7987  Heterosexual (straight)  Most of the time
## 7988  Heterosexual (straight)  Most of the time
## 7989  Heterosexual (straight)            Rarely
## 7990           Gay or lesbian  Most of the time
## 7991  Heterosexual (straight)            Rarely
## 7992                 Bisexual  Most of the time
## 7993  Heterosexual (straight)         Sometimes
## 7994  Heterosexual (straight)         Sometimes
## 7995                 Bisexual         Sometimes
## 7996  Heterosexual (straight)             Never
## 7997  Heterosexual (straight)  Most of the time
## 7998  Heterosexual (straight)            Rarely
## 7999  Heterosexual (straight)         Sometimes
## 8000  Heterosexual (straight)             Never
## 8001  Heterosexual (straight)             Never
## 8002  Heterosexual (straight)  Most of the time
## 8003  Heterosexual (straight)  Most of the time
## 8004                 Bisexual  Most of the time
## 8005                 Not sure         Sometimes
## 8006                 Not sure             Never
## 8007  Heterosexual (straight)         Sometimes
## 8008           Gay or lesbian            Always
## 8009                 Bisexual         Sometimes
## 8010  Heterosexual (straight)         Sometimes
## 8011  Heterosexual (straight)             Never
## 8012                 Bisexual            Rarely
## 8013  Heterosexual (straight)  Most of the time
## 8014  Heterosexual (straight)         Sometimes
## 8015  Heterosexual (straight)         Sometimes
## 8016                 Bisexual  Most of the time
## 8017  Heterosexual (straight)         Sometimes
## 8018  Heterosexual (straight)              <NA>
## 8019                 Bisexual  Most of the time
## 8020                 Not sure            Always
## 8021           Some other way         Sometimes
## 8022                 Not sure  Most of the time
## 8023  Heterosexual (straight)             Never
## 8024  Heterosexual (straight)  Most of the time
## 8025  Heterosexual (straight)            Rarely
## 8026  Heterosexual (straight)            Rarely
## 8027                 Bisexual              <NA>
## 8028  Heterosexual (straight)         Sometimes
## 8029                 Bisexual  Most of the time
## 8030                 Bisexual  Most of the time
## 8031  Heterosexual (straight)         Sometimes
## 8032  Heterosexual (straight)         Sometimes
## 8033  Heterosexual (straight)  Most of the time
## 8034           Some other way  Most of the time
## 8035  Heterosexual (straight)         Sometimes
## 8036  Heterosexual (straight)            Always
## 8037                 Bisexual  Most of the time
## 8038  Heterosexual (straight)            Rarely
## 8039  Heterosexual (straight)         Sometimes
## 8040                 Bisexual  Most of the time
## 8041           Gay or lesbian         Sometimes
## 8042  Heterosexual (straight)         Sometimes
## 8043  Heterosexual (straight)             Never
## 8044  Heterosexual (straight)         Sometimes
## 8045                 Bisexual            Always
## 8046  Heterosexual (straight)  Most of the time
## 8047           Some other way         Sometimes
## 8048  Heterosexual (straight)            Rarely
## 8049  Heterosexual (straight)         Sometimes
## 8050           Gay or lesbian            Rarely
## 8051  Heterosexual (straight)            Always
## 8052                 Not sure         Sometimes
## 8053           Some other way         Sometimes
## 8054                 Bisexual  Most of the time
## 8055                 Bisexual            Always
## 8056  Heterosexual (straight)  Most of the time
## 8057  Heterosexual (straight)         Sometimes
## 8058  Heterosexual (straight)  Most of the time
## 8059                 Bisexual  Most of the time
## 8060  Heterosexual (straight)         Sometimes
## 8061  Heterosexual (straight)            Always
## 8062  Heterosexual (straight)             Never
## 8063  Heterosexual (straight)            Rarely
## 8064  Heterosexual (straight)  Most of the time
## 8065  Heterosexual (straight)             Never
## 8066  Heterosexual (straight)            Always
## 8067                 Not sure            Rarely
## 8068  Heterosexual (straight)         Sometimes
## 8069  Heterosexual (straight)             Never
## 8070                 Not sure  Most of the time
## 8071                 Bisexual  Most of the time
## 8072  Heterosexual (straight)  Most of the time
## 8073           Some other way         Sometimes
## 8074  Heterosexual (straight)  Most of the time
## 8075  Heterosexual (straight)  Most of the time
## 8076                 Bisexual            Rarely
## 8077  Heterosexual (straight)  Most of the time
## 8078  Heterosexual (straight)             Never
## 8079  Heterosexual (straight)             Never
## 8080                 Bisexual  Most of the time
## 8081           Some other way         Sometimes
## 8082  Heterosexual (straight)            Rarely
## 8083                 Bisexual  Most of the time
## 8084  Heterosexual (straight)            Rarely
## 8085  Heterosexual (straight)         Sometimes
## 8086  Heterosexual (straight)         Sometimes
## 8087  Heterosexual (straight)         Sometimes
## 8088  Heterosexual (straight)            Rarely
## 8089  Heterosexual (straight)         Sometimes
## 8090  Heterosexual (straight)            Rarely
## 8091  Heterosexual (straight)            Rarely
## 8092                 Bisexual            Rarely
## 8093  Heterosexual (straight)            Rarely
## 8094  Heterosexual (straight)         Sometimes
## 8095                 Bisexual            Always
## 8096  Heterosexual (straight)  Most of the time
## 8097           Gay or lesbian            Always
## 8098  Heterosexual (straight)         Sometimes
## 8099  Heterosexual (straight)            Always
## 8100  Heterosexual (straight)             Never
## 8101                 Bisexual            Always
## 8102  Heterosexual (straight)            Rarely
## 8103           Gay or lesbian            Rarely
## 8104  Heterosexual (straight)  Most of the time
## 8105  Heterosexual (straight)         Sometimes
## 8106                 Bisexual         Sometimes
## 8107  Heterosexual (straight)             Never
## 8108  Heterosexual (straight)             Never
## 8109  Heterosexual (straight)             Never
## 8110  Heterosexual (straight)         Sometimes
## 8111                 Bisexual            Rarely
## 8112  Heterosexual (straight)         Sometimes
## 8113  Heterosexual (straight)             Never
## 8114  Heterosexual (straight)  Most of the time
## 8115  Heterosexual (straight)  Most of the time
## 8116  Heterosexual (straight)         Sometimes
## 8117  Heterosexual (straight)         Sometimes
## 8118           Some other way  Most of the time
## 8119  Heterosexual (straight)            Rarely
## 8120  Heterosexual (straight)            Rarely
## 8121  Heterosexual (straight)         Sometimes
## 8122                 Bisexual            Always
## 8123  Heterosexual (straight)         Sometimes
## 8124  Heterosexual (straight)             Never
## 8125                 Not sure  Most of the time
## 8126           Some other way              <NA>
## 8127  Heterosexual (straight)         Sometimes
## 8128  Heterosexual (straight)            Rarely
## 8129                 Bisexual  Most of the time
## 8130                 Bisexual  Most of the time
## 8131                 Bisexual             Never
## 8132  Heterosexual (straight)            Rarely
## 8133  Heterosexual (straight)         Sometimes
## 8134  Heterosexual (straight)         Sometimes
## 8135  Heterosexual (straight)         Sometimes
## 8136  Heterosexual (straight)  Most of the time
## 8137  Heterosexual (straight)         Sometimes
## 8138  Heterosexual (straight)            Rarely
## 8139           Gay or lesbian  Most of the time
## 8140  Heterosexual (straight)         Sometimes
## 8141                 Bisexual         Sometimes
## 8142  Heterosexual (straight)  Most of the time
## 8143           Some other way              <NA>
## 8144           Gay or lesbian  Most of the time
## 8145  Heterosexual (straight)            Rarely
## 8146  Heterosexual (straight)            Rarely
## 8147  Heterosexual (straight)         Sometimes
## 8148  Heterosexual (straight)             Never
## 8149  Heterosexual (straight)         Sometimes
## 8150  Heterosexual (straight)         Sometimes
## 8151  Heterosexual (straight)         Sometimes
## 8152  Heterosexual (straight)  Most of the time
## 8153                 Not sure            Rarely
## 8154  Heterosexual (straight)            Rarely
## 8155  Heterosexual (straight)  Most of the time
## 8156  Heterosexual (straight)         Sometimes
## 8157  Heterosexual (straight)  Most of the time
## 8158  Heterosexual (straight)  Most of the time
## 8159                 Bisexual            Rarely
## 8160  Heterosexual (straight)  Most of the time
## 8161  Heterosexual (straight)            Rarely
## 8162  Heterosexual (straight)            Rarely
## 8163  Heterosexual (straight)         Sometimes
## 8164  Heterosexual (straight)            Rarely
## 8165  Heterosexual (straight)             Never
## 8166  Heterosexual (straight)            Rarely
## 8167                 Not sure             Never
## 8168  Heterosexual (straight)            Rarely
## 8169                 Bisexual            Rarely
## 8170  Heterosexual (straight)  Most of the time
## 8171  Heterosexual (straight)            Rarely
## 8172  Heterosexual (straight)            Rarely
## 8173  Heterosexual (straight)         Sometimes
## 8174  Heterosexual (straight)  Most of the time
## 8175  Heterosexual (straight)            Rarely
## 8176  Heterosexual (straight)         Sometimes
## 8177  Heterosexual (straight)  Most of the time
## 8178                 Not sure  Most of the time
## 8179  Heterosexual (straight)            Rarely
## 8180  Heterosexual (straight)         Sometimes
## 8181                 Bisexual  Most of the time
## 8182           Gay or lesbian            Rarely
## 8183  Heterosexual (straight)             Never
## 8184  Heterosexual (straight)            Rarely
## 8185                 Bisexual  Most of the time
## 8186           Gay or lesbian            Always
## 8187  Heterosexual (straight)             Never
## 8188  Heterosexual (straight)         Sometimes
## 8189  Heterosexual (straight)             Never
## 8190                 Bisexual  Most of the time
## 8191  Heterosexual (straight)         Sometimes
## 8192  Heterosexual (straight)            Rarely
## 8193  Heterosexual (straight)            Rarely
## 8194  Heterosexual (straight)         Sometimes
## 8195  Heterosexual (straight)              <NA>
## 8196                 Bisexual         Sometimes
## 8197  Heterosexual (straight)             Never
## 8198  Heterosexual (straight)         Sometimes
## 8199  Heterosexual (straight)             Never
## 8200           Some other way            Rarely
## 8201                 Bisexual  Most of the time
## 8202  Heterosexual (straight)         Sometimes
## 8203  Heterosexual (straight)             Never
## 8204  Heterosexual (straight)         Sometimes
## 8205  Heterosexual (straight)  Most of the time
## 8206  Heterosexual (straight)            Rarely
## 8207  Heterosexual (straight)  Most of the time
## 8208  Heterosexual (straight)             Never
## 8209  Heterosexual (straight)  Most of the time
## 8210  Heterosexual (straight)         Sometimes
## 8211  Heterosexual (straight)         Sometimes
## 8212           Gay or lesbian  Most of the time
## 8213  Heterosexual (straight)         Sometimes
## 8214  Heterosexual (straight)         Sometimes
## 8215  Heterosexual (straight)         Sometimes
## 8216  Heterosexual (straight)            Rarely
## 8217  Heterosexual (straight)  Most of the time
## 8218           Some other way             Never
## 8219  Heterosexual (straight)  Most of the time
## 8220                 Bisexual  Most of the time
## 8221                 Bisexual         Sometimes
## 8222  Heterosexual (straight)             Never
## 8223  Heterosexual (straight)            Rarely
## 8224  Heterosexual (straight)  Most of the time
## 8225  Heterosexual (straight)            Rarely
## 8226  Heterosexual (straight)             Never
## 8227                 Bisexual         Sometimes
## 8228  Heterosexual (straight)  Most of the time
## 8229  Heterosexual (straight)         Sometimes
## 8230  Heterosexual (straight)             Never
## 8231  Heterosexual (straight)            Always
## 8232  Heterosexual (straight)         Sometimes
## 8233  Heterosexual (straight)  Most of the time
## 8234  Heterosexual (straight)  Most of the time
## 8235           Some other way  Most of the time
## 8236                 Bisexual         Sometimes
## 8237  Heterosexual (straight)            Rarely
## 8238                 Not sure         Sometimes
## 8239  Heterosexual (straight)            Rarely
## 8240  Heterosexual (straight)            Rarely
## 8241  Heterosexual (straight)            Rarely
## 8242  Heterosexual (straight)  Most of the time
## 8243  Heterosexual (straight)            Rarely
## 8244  Heterosexual (straight)  Most of the time
## 8245  Heterosexual (straight)  Most of the time
## 8246  Heterosexual (straight)         Sometimes
## 8247  Heterosexual (straight)  Most of the time
## 8248                 Bisexual  Most of the time
## 8249                 Bisexual            Always
## 8250  Heterosexual (straight)         Sometimes
## 8251  Heterosexual (straight)  Most of the time
## 8252  Heterosexual (straight)         Sometimes
## 8253  Heterosexual (straight)            Rarely
## 8254  Heterosexual (straight)  Most of the time
## 8255  Heterosexual (straight)         Sometimes
## 8256  Heterosexual (straight)            Rarely
## 8257  Heterosexual (straight)         Sometimes
## 8258  Heterosexual (straight)  Most of the time
## 8259                 Bisexual            Always
## 8260                 Bisexual  Most of the time
## 8261  Heterosexual (straight)  Most of the time
## 8262  Heterosexual (straight)         Sometimes
## 8263           Gay or lesbian  Most of the time
## 8264  Heterosexual (straight)            Always
## 8265                 Bisexual         Sometimes
## 8266  Heterosexual (straight)            Always
## 8267  Heterosexual (straight)  Most of the time
## 8268  Heterosexual (straight)  Most of the time
## 8269  Heterosexual (straight)            Rarely
## 8270  Heterosexual (straight)         Sometimes
## 8271  Heterosexual (straight)             Never
## 8272  Heterosexual (straight)             Never
## 8273  Heterosexual (straight)         Sometimes
## 8274  Heterosexual (straight)             Never
## 8275  Heterosexual (straight)  Most of the time
## 8276                 Not sure            Rarely
## 8277                 Not sure         Sometimes
## 8278  Heterosexual (straight)         Sometimes
## 8279  Heterosexual (straight)         Sometimes
## 8280  Heterosexual (straight)         Sometimes
## 8281  Heterosexual (straight)  Most of the time
## 8282  Heterosexual (straight)             Never
## 8283                 Not sure              <NA>
## 8284           Gay or lesbian            Always
## 8285  Heterosexual (straight)             Never
## 8286  Heterosexual (straight)            Rarely
## 8287  Heterosexual (straight)            Rarely
## 8288  Heterosexual (straight)            Rarely
## 8289                 Bisexual         Sometimes
## 8290           Gay or lesbian  Most of the time
## 8291  Heterosexual (straight)  Most of the time
## 8292  Heterosexual (straight)         Sometimes
## 8293  Heterosexual (straight)            Rarely
## 8294  Heterosexual (straight)             Never
## 8295  Heterosexual (straight)  Most of the time
## 8296  Heterosexual (straight)  Most of the time
## 8297                 Bisexual         Sometimes
## 8298                 Bisexual         Sometimes
## 8299  Heterosexual (straight)            Rarely
## 8300  Heterosexual (straight)            Rarely
## 8301                 Bisexual         Sometimes
## 8302                 Bisexual         Sometimes
## 8303  Heterosexual (straight)             Never
## 8304  Heterosexual (straight)         Sometimes
## 8305                 Bisexual  Most of the time
## 8306  Heterosexual (straight)  Most of the time
## 8307  Heterosexual (straight)            Rarely
## 8308  Heterosexual (straight)         Sometimes
## 8309  Heterosexual (straight)             Never
## 8310  Heterosexual (straight)  Most of the time
## 8311  Heterosexual (straight)  Most of the time
## 8312  Heterosexual (straight)            Always
## 8313  Heterosexual (straight)            Rarely
## 8314                 Not sure            Always
## 8315  Heterosexual (straight)            Rarely
## 8316  Heterosexual (straight)            Always
## 8317                 Bisexual  Most of the time
## 8318  Heterosexual (straight)            Rarely
## 8319  Heterosexual (straight)  Most of the time
## 8320                 Bisexual         Sometimes
## 8321                 Bisexual            Always
## 8322                 Bisexual            Always
## 8323                 Not sure         Sometimes
## 8324                 Bisexual  Most of the time
## 8325  Heterosexual (straight)  Most of the time
## 8326                 Not sure            Rarely
## 8327  Heterosexual (straight)  Most of the time
## 8328                 Bisexual  Most of the time
## 8329  Heterosexual (straight)            Always
## 8330  Heterosexual (straight)         Sometimes
## 8331  Heterosexual (straight)             Never
## 8332  Heterosexual (straight)         Sometimes
## 8333  Heterosexual (straight)  Most of the time
## 8334                 Bisexual         Sometimes
## 8335  Heterosexual (straight)         Sometimes
## 8336  Heterosexual (straight)         Sometimes
## 8337  Heterosexual (straight)         Sometimes
## 8338  Heterosexual (straight)            Rarely
## 8339  Heterosexual (straight)  Most of the time
## 8340  Heterosexual (straight)            Always
## 8341  Heterosexual (straight)  Most of the time
## 8342                 Bisexual  Most of the time
## 8343  Heterosexual (straight)  Most of the time
## 8344  Heterosexual (straight)  Most of the time
## 8345                 Bisexual  Most of the time
## 8346  Heterosexual (straight)  Most of the time
## 8347                 Bisexual            Always
## 8348                 Not sure            Always
## 8349  Heterosexual (straight)  Most of the time
## 8350  Heterosexual (straight)         Sometimes
## 8351  Heterosexual (straight)             Never
## 8352  Heterosexual (straight)             Never
## 8353  Heterosexual (straight)            Rarely
## 8354           Some other way            Always
## 8355  Heterosexual (straight)            Rarely
## 8356           Some other way         Sometimes
## 8357  Heterosexual (straight)         Sometimes
## 8358                 Bisexual            Always
## 8359  Heterosexual (straight)            Rarely
## 8360  Heterosexual (straight)  Most of the time
## 8361  Heterosexual (straight)             Never
## 8362                 Bisexual            Always
## 8363                 Bisexual            Always
## 8364                 Not sure  Most of the time
## 8365  Heterosexual (straight)             Never
## 8366  Heterosexual (straight)         Sometimes
## 8367  Heterosexual (straight)            Rarely
## 8368  Heterosexual (straight)             Never
## 8369  Heterosexual (straight)  Most of the time
## 8370                 Not sure         Sometimes
## 8371  Heterosexual (straight)         Sometimes
## 8372  Heterosexual (straight)            Always
## 8373  Heterosexual (straight)            Always
## 8374  Heterosexual (straight)            Rarely
## 8375  Heterosexual (straight)         Sometimes
## 8376                 Bisexual         Sometimes
## 8377  Heterosexual (straight)         Sometimes
## 8378                 Bisexual  Most of the time
## 8379  Heterosexual (straight)         Sometimes
## 8380  Heterosexual (straight)            Rarely
## 8381  Heterosexual (straight)             Never
## 8382  Heterosexual (straight)         Sometimes
## 8383  Heterosexual (straight)         Sometimes
## 8384                 Not sure            Always
## 8385  Heterosexual (straight)            Rarely
## 8386                 Bisexual         Sometimes
## 8387  Heterosexual (straight)         Sometimes
## 8388  Heterosexual (straight)            Rarely
## 8389  Heterosexual (straight)            Rarely
## 8390                 Bisexual  Most of the time
## 8391                 Bisexual  Most of the time
## 8392  Heterosexual (straight)  Most of the time
## 8393                 Not sure            Always
## 8394  Heterosexual (straight)         Sometimes
## 8395  Heterosexual (straight)            Rarely
## 8396  Heterosexual (straight)  Most of the time
## 8397  Heterosexual (straight)         Sometimes
## 8398  Heterosexual (straight)         Sometimes
## 8399  Heterosexual (straight)            Rarely
## 8400  Heterosexual (straight)            Rarely
## 8401                 Bisexual            Always
## 8402  Heterosexual (straight)  Most of the time
## 8403  Heterosexual (straight)         Sometimes
## 8404  Heterosexual (straight)            Rarely
## 8405  Heterosexual (straight)         Sometimes
## 8406           Gay or lesbian         Sometimes
## 8407           Some other way         Sometimes
## 8408  Heterosexual (straight)  Most of the time
## 8409                 Bisexual  Most of the time
## 8410  Heterosexual (straight)         Sometimes
## 8411  Heterosexual (straight)  Most of the time
## 8412  Heterosexual (straight)            Rarely
## 8413  Heterosexual (straight)            Rarely
## 8414                 Bisexual         Sometimes
## 8415  Heterosexual (straight)            Rarely
## 8416                 Bisexual            Always
## 8417           Gay or lesbian  Most of the time
## 8418                 Not sure         Sometimes
## 8419                 Bisexual  Most of the time
## 8420  Heterosexual (straight)             Never
## 8421  Heterosexual (straight)             Never
## 8422  Heterosexual (straight)         Sometimes
## 8423  Heterosexual (straight)  Most of the time
## 8424  Heterosexual (straight)  Most of the time
## 8425  Heterosexual (straight)             Never
## 8426  Heterosexual (straight)            Rarely
## 8427  Heterosexual (straight)  Most of the time
## 8428  Heterosexual (straight)            Rarely
## 8429  Heterosexual (straight)            Always
## 8430                 Bisexual            Always
## 8431  Heterosexual (straight)  Most of the time
## 8432  Heterosexual (straight)  Most of the time
## 8433                 Bisexual            Always
## 8434                 Not sure            Always
## 8435  Heterosexual (straight)             Never
## 8436  Heterosexual (straight)         Sometimes
## 8437  Heterosexual (straight)         Sometimes
## 8438  Heterosexual (straight)  Most of the time
## 8439                 Bisexual         Sometimes
## 8440  Heterosexual (straight)            Always
## 8441  Heterosexual (straight)  Most of the time
## 8442                 Bisexual         Sometimes
## 8443  Heterosexual (straight)         Sometimes
## 8444  Heterosexual (straight)            Rarely
## 8445                 Bisexual  Most of the time
## 8446  Heterosexual (straight)  Most of the time
## 8447                 Bisexual  Most of the time
## 8448  Heterosexual (straight)            Always
## 8449  Heterosexual (straight)         Sometimes
## 8450  Heterosexual (straight)             Never
## 8451  Heterosexual (straight)             Never
## 8452  Heterosexual (straight)            Rarely
## 8453  Heterosexual (straight)            Rarely
## 8454  Heterosexual (straight)         Sometimes
## 8455  Heterosexual (straight)  Most of the time
## 8456  Heterosexual (straight)         Sometimes
## 8457  Heterosexual (straight)            Rarely
## 8458  Heterosexual (straight)            Rarely
## 8459                 Not sure  Most of the time
## 8460  Heterosexual (straight)         Sometimes
## 8461  Heterosexual (straight)            Rarely
## 8462                 Bisexual            Rarely
## 8463  Heterosexual (straight)         Sometimes
## 8464  Heterosexual (straight)            Rarely
## 8465  Heterosexual (straight)            Rarely
## 8466  Heterosexual (straight)         Sometimes
## 8467  Heterosexual (straight)         Sometimes
## 8468  Heterosexual (straight)  Most of the time
## 8469  Heterosexual (straight)         Sometimes
## 8470                 Not sure         Sometimes
## 8471  Heterosexual (straight)         Sometimes
## 8472  Heterosexual (straight)         Sometimes
## 8473  Heterosexual (straight)             Never
## 8474  Heterosexual (straight)            Rarely
## 8475  Heterosexual (straight)         Sometimes
## 8476  Heterosexual (straight)         Sometimes
## 8477  Heterosexual (straight)  Most of the time
## 8478  Heterosexual (straight)             Never
## 8479  Heterosexual (straight)         Sometimes
## 8480  Heterosexual (straight)  Most of the time
## 8481  Heterosexual (straight)         Sometimes
## 8482  Heterosexual (straight)            Always
## 8483  Heterosexual (straight)             Never
## 8484  Heterosexual (straight)             Never
## 8485           Some other way  Most of the time
## 8486  Heterosexual (straight)         Sometimes
## 8487  Heterosexual (straight)            Always
## 8488  Heterosexual (straight)  Most of the time
## 8489           Some other way             Never
## 8490                 Not sure         Sometimes
## 8491  Heterosexual (straight)         Sometimes
## 8492  Heterosexual (straight)  Most of the time
## 8493           Gay or lesbian         Sometimes
## 8494  Heterosexual (straight)             Never
## 8495                 Bisexual            Rarely
## 8496  Heterosexual (straight)            Rarely
## 8497                 Bisexual            Always
## 8498  Heterosexual (straight)         Sometimes
## 8499                 Bisexual  Most of the time
## 8500  Heterosexual (straight)             Never
## 8501  Heterosexual (straight)  Most of the time
## 8502  Heterosexual (straight)            Rarely
## 8503                 Bisexual         Sometimes
## 8504  Heterosexual (straight)         Sometimes
## 8505                 Not sure              <NA>
## 8506  Heterosexual (straight)         Sometimes
## 8507                 Bisexual            Rarely
## 8508                 Bisexual  Most of the time
## 8509                 Bisexual         Sometimes
## 8510  Heterosexual (straight)         Sometimes
## 8511  Heterosexual (straight)            Rarely
## 8512                 Bisexual  Most of the time
## 8513  Heterosexual (straight)             Never
## 8514                 Not sure             Never
## 8515                 Bisexual         Sometimes
## 8516  Heterosexual (straight)         Sometimes
## 8517  Heterosexual (straight)         Sometimes
## 8518  Heterosexual (straight)         Sometimes
## 8519  Heterosexual (straight)         Sometimes
## 8520                 Bisexual         Sometimes
## 8521  Heterosexual (straight)         Sometimes
## 8522           Some other way  Most of the time
## 8523  Heterosexual (straight)         Sometimes
## 8524  Heterosexual (straight)         Sometimes
## 8525  Heterosexual (straight)             Never
## 8526  Heterosexual (straight)  Most of the time
## 8527  Heterosexual (straight)            Rarely
## 8528  Heterosexual (straight)         Sometimes
## 8529  Heterosexual (straight)            Always
## 8530  Heterosexual (straight)             Never
## 8531  Heterosexual (straight)         Sometimes
## 8532                 Bisexual         Sometimes
## 8533                 Bisexual         Sometimes
## 8534  Heterosexual (straight)         Sometimes
## 8535  Heterosexual (straight)         Sometimes
## 8536  Heterosexual (straight)  Most of the time
## 8537  Heterosexual (straight)            Rarely
## 8538  Heterosexual (straight)         Sometimes
## 8539  Heterosexual (straight)  Most of the time
## 8540  Heterosexual (straight)            Rarely
## 8541  Heterosexual (straight)             Never
## 8542  Heterosexual (straight)            Rarely
## 8543  Heterosexual (straight)             Never
## 8544  Heterosexual (straight)         Sometimes
## 8545  Heterosexual (straight)            Rarely
## 8546  Heterosexual (straight)             Never
## 8547  Heterosexual (straight)            Rarely
## 8548  Heterosexual (straight)         Sometimes
## 8549  Heterosexual (straight)            Always
## 8550  Heterosexual (straight)         Sometimes
## 8551  Heterosexual (straight)            Rarely
## 8552  Heterosexual (straight)         Sometimes
## 8553  Heterosexual (straight)  Most of the time
## 8554  Heterosexual (straight)            Rarely
## 8555  Heterosexual (straight)  Most of the time
## 8556  Heterosexual (straight)            Rarely
## 8557  Heterosexual (straight)         Sometimes
## 8558  Heterosexual (straight)            Rarely
## 8559                 Not sure            Rarely
## 8560  Heterosexual (straight)  Most of the time
## 8561  Heterosexual (straight)            Rarely
## 8562  Heterosexual (straight)  Most of the time
## 8563  Heterosexual (straight)  Most of the time
## 8564  Heterosexual (straight)             Never
## 8565  Heterosexual (straight)             Never
## 8566  Heterosexual (straight)         Sometimes
## 8567  Heterosexual (straight)  Most of the time
## 8568  Heterosexual (straight)         Sometimes
## 8569  Heterosexual (straight)         Sometimes
## 8570  Heterosexual (straight)            Rarely
## 8571  Heterosexual (straight)  Most of the time
## 8572                 Bisexual  Most of the time
## 8573  Heterosexual (straight)             Never
## 8574  Heterosexual (straight)            Always
## 8575  Heterosexual (straight)  Most of the time
## 8576  Heterosexual (straight)             Never
## 8577  Heterosexual (straight)         Sometimes
## 8578  Heterosexual (straight)            Rarely
## 8579                 Bisexual  Most of the time
## 8580  Heterosexual (straight)            Rarely
## 8581  Heterosexual (straight)             Never
## 8582  Heterosexual (straight)             Never
## 8583  Heterosexual (straight)         Sometimes
## 8584  Heterosexual (straight)            Always
## 8585  Heterosexual (straight)              <NA>
## 8586                 Bisexual  Most of the time
## 8587                 Not sure  Most of the time
## 8588  Heterosexual (straight)             Never
## 8589  Heterosexual (straight)            Always
## 8590                 Bisexual         Sometimes
## 8591           Gay or lesbian             Never
## 8592  Heterosexual (straight)         Sometimes
## 8593  Heterosexual (straight)         Sometimes
## 8594  Heterosexual (straight)             Never
## 8595  Heterosexual (straight)            Rarely
## 8596  Heterosexual (straight)         Sometimes
## 8597  Heterosexual (straight)  Most of the time
## 8598  Heterosexual (straight)         Sometimes
## 8599  Heterosexual (straight)         Sometimes
## 8600                 Not sure  Most of the time
## 8601  Heterosexual (straight)             Never
## 8602  Heterosexual (straight)             Never
## 8603  Heterosexual (straight)            Rarely
## 8604  Heterosexual (straight)             Never
## 8605  Heterosexual (straight)         Sometimes
## 8606  Heterosexual (straight)             Never
## 8607  Heterosexual (straight)  Most of the time
## 8608  Heterosexual (straight)            Always
## 8609           Gay or lesbian             Never
## 8610                 Bisexual  Most of the time
## 8611  Heterosexual (straight)            Always
## 8612  Heterosexual (straight)             Never
## 8613  Heterosexual (straight)  Most of the time
## 8614  Heterosexual (straight)             Never
## 8615  Heterosexual (straight)         Sometimes
## 8616  Heterosexual (straight)         Sometimes
## 8617  Heterosexual (straight)  Most of the time
## 8618  Heterosexual (straight)         Sometimes
## 8619  Heterosexual (straight)  Most of the time
## 8620  Heterosexual (straight)             Never
## 8621                 Bisexual  Most of the time
## 8622  Heterosexual (straight)         Sometimes
## 8623                 Bisexual  Most of the time
## 8624  Heterosexual (straight)         Sometimes
## 8625  Heterosexual (straight)         Sometimes
## 8626  Heterosexual (straight)            Rarely
## 8627                 Not sure         Sometimes
## 8628                 Bisexual         Sometimes
## 8629                 Not sure            Rarely
## 8630  Heterosexual (straight)            Rarely
## 8631  Heterosexual (straight)  Most of the time
## 8632  Heterosexual (straight)             Never
## 8633                 Bisexual         Sometimes
## 8634  Heterosexual (straight)            Rarely
## 8635  Heterosexual (straight)         Sometimes
## 8636  Heterosexual (straight)            Rarely
## 8637  Heterosexual (straight)             Never
## 8638  Heterosexual (straight)            Rarely
## 8639  Heterosexual (straight)            Rarely
## 8640                 Bisexual            Rarely
## 8641  Heterosexual (straight)            Rarely
## 8642  Heterosexual (straight)  Most of the time
## 8643  Heterosexual (straight)            Rarely
## 8644  Heterosexual (straight)         Sometimes
## 8645  Heterosexual (straight)         Sometimes
## 8646  Heterosexual (straight)             Never
## 8647  Heterosexual (straight)         Sometimes
## 8648  Heterosexual (straight)            Rarely
## 8649  Heterosexual (straight)         Sometimes
## 8650                 Bisexual            Always
## 8651                 Bisexual  Most of the time
## 8652  Heterosexual (straight)             Never
## 8653  Heterosexual (straight)            Rarely
## 8654           Gay or lesbian  Most of the time
## 8655  Heterosexual (straight)            Always
## 8656  Heterosexual (straight)              <NA>
## 8657                 Bisexual         Sometimes
## 8658           Gay or lesbian            Always
## 8659  Heterosexual (straight)  Most of the time
## 8660  Heterosexual (straight)            Always
## 8661                 Bisexual            Always
## 8662  Heterosexual (straight)             Never
## 8663                 Bisexual            Rarely
## 8664  Heterosexual (straight)              <NA>
## 8665                 Bisexual         Sometimes
## 8666  Heterosexual (straight)  Most of the time
## 8667  Heterosexual (straight)            Rarely
## 8668                 Bisexual         Sometimes
## 8669  Heterosexual (straight)              <NA>
## 8670                 Bisexual         Sometimes
## 8671  Heterosexual (straight)              <NA>
## 8672  Heterosexual (straight)         Sometimes
## 8673  Heterosexual (straight)         Sometimes
## 8674  Heterosexual (straight)             Never
## 8675                 Bisexual            Always
## 8676  Heterosexual (straight)            Rarely
## 8677                 Bisexual            Always
## 8678  Heterosexual (straight)            Rarely
## 8679  Heterosexual (straight)         Sometimes
## 8680  Heterosexual (straight)            Rarely
## 8681  Heterosexual (straight)             Never
## 8682                 Not sure         Sometimes
## 8683  Heterosexual (straight)         Sometimes
## 8684  Heterosexual (straight)              <NA>
## 8685  Heterosexual (straight)  Most of the time
## 8686  Heterosexual (straight)  Most of the time
## 8687           Some other way  Most of the time
## 8688  Heterosexual (straight)             Never
## 8689           Gay or lesbian         Sometimes
## 8690  Heterosexual (straight)            Rarely
## 8691                 Bisexual            Always
## 8692                 Bisexual            Always
## 8693  Heterosexual (straight)         Sometimes
## 8694  Heterosexual (straight)  Most of the time
## 8695  Heterosexual (straight)  Most of the time
## 8696                 Bisexual         Sometimes
## 8697  Heterosexual (straight)            Rarely
## 8698                 Not sure  Most of the time
## 8699  Heterosexual (straight)            Rarely
## 8700  Heterosexual (straight)            Rarely
## 8701  Heterosexual (straight)             Never
## 8702  Heterosexual (straight)         Sometimes
## 8703  Heterosexual (straight)  Most of the time
## 8704  Heterosexual (straight)         Sometimes
## 8705                 Bisexual  Most of the time
## 8706  Heterosexual (straight)  Most of the time
## 8707  Heterosexual (straight)         Sometimes
## 8708                 Bisexual             Never
## 8709  Heterosexual (straight)             Never
## 8710           Some other way  Most of the time
## 8711  Heterosexual (straight)             Never
## 8712                 Not sure  Most of the time
## 8713                 Bisexual            Always
## 8714                 Bisexual  Most of the time
## 8715  Heterosexual (straight)             Never
## 8716           Some other way            Rarely
## 8717  Heterosexual (straight)         Sometimes
## 8718           Gay or lesbian            Always
## 8719  Heterosexual (straight)            Rarely
## 8720  Heterosexual (straight)            Rarely
## 8721  Heterosexual (straight)         Sometimes
## 8722  Heterosexual (straight)            Rarely
## 8723                 Bisexual  Most of the time
## 8724  Heterosexual (straight)  Most of the time
## 8725  Heterosexual (straight)         Sometimes
## 8726                 Not sure  Most of the time
## 8727  Heterosexual (straight)            Rarely
## 8728                 Not sure         Sometimes
## 8729  Heterosexual (straight)         Sometimes
## 8730                 Bisexual         Sometimes
## 8731  Heterosexual (straight)            Rarely
## 8732  Heterosexual (straight)         Sometimes
## 8733  Heterosexual (straight)            Rarely
## 8734  Heterosexual (straight)             Never
## 8735  Heterosexual (straight)         Sometimes
## 8736  Heterosexual (straight)            Rarely
## 8737  Heterosexual (straight)         Sometimes
## 8738  Heterosexual (straight)            Always
## 8739                 Bisexual  Most of the time
## 8740  Heterosexual (straight)  Most of the time
## 8741                 Not sure            Rarely
## 8742  Heterosexual (straight)            Rarely
## 8743  Heterosexual (straight)            Rarely
## 8744  Heterosexual (straight)             Never
## 8745  Heterosexual (straight)             Never
## 8746  Heterosexual (straight)            Rarely
## 8747           Some other way  Most of the time
## 8748  Heterosexual (straight)            Always
## 8749  Heterosexual (straight)             Never
## 8750  Heterosexual (straight)  Most of the time
## 8751  Heterosexual (straight)         Sometimes
## 8752  Heterosexual (straight)            Rarely
## 8753  Heterosexual (straight)             Never
## 8754  Heterosexual (straight)  Most of the time
## 8755  Heterosexual (straight)            Rarely
## 8756  Heterosexual (straight)            Rarely
## 8757  Heterosexual (straight)  Most of the time
## 8758  Heterosexual (straight)  Most of the time
## 8759  Heterosexual (straight)  Most of the time
## 8760                 Bisexual  Most of the time
## 8761                 Not sure            Rarely
## 8762  Heterosexual (straight)            Rarely
## 8763  Heterosexual (straight)            Rarely
## 8764           Some other way             Never
## 8765                 Not sure            Rarely
## 8766                 Bisexual            Always
## 8767  Heterosexual (straight)         Sometimes
## 8768  Heterosexual (straight)            Rarely
## 8769  Heterosexual (straight)             Never
## 8770  Heterosexual (straight)         Sometimes
## 8771  Heterosexual (straight)             Never
## 8772  Heterosexual (straight)             Never
## 8773  Heterosexual (straight)             Never
## 8774  Heterosexual (straight)         Sometimes
## 8775  Heterosexual (straight)  Most of the time
## 8776  Heterosexual (straight)         Sometimes
## 8777  Heterosexual (straight)  Most of the time
## 8778           Gay or lesbian  Most of the time
## 8779  Heterosexual (straight)              <NA>
## 8780                 Not sure         Sometimes
## 8781                 Bisexual  Most of the time
## 8782  Heterosexual (straight)  Most of the time
## 8783  Heterosexual (straight)  Most of the time
## 8784  Heterosexual (straight)              <NA>
## 8785  Heterosexual (straight)         Sometimes
## 8786  Heterosexual (straight)             Never
## 8787  Heterosexual (straight)         Sometimes
## 8788  Heterosexual (straight)            Always
## 8789  Heterosexual (straight)              <NA>
## 8790  Heterosexual (straight)         Sometimes
## 8791  Heterosexual (straight)         Sometimes
## 8792  Heterosexual (straight)            Always
## 8793  Heterosexual (straight)         Sometimes
## 8794  Heterosexual (straight)            Rarely
## 8795  Heterosexual (straight)         Sometimes
## 8796           Gay or lesbian         Sometimes
## 8797           Some other way         Sometimes
## 8798           Gay or lesbian  Most of the time
## 8799                 Bisexual  Most of the time
## 8800  Heterosexual (straight)         Sometimes
## 8801                 Not sure              <NA>
## 8802                 Bisexual  Most of the time
## 8803  Heterosexual (straight)             Never
## 8804           Some other way            Always
## 8805                 Bisexual         Sometimes
## 8806                 Bisexual            Rarely
## 8807  Heterosexual (straight)  Most of the time
## 8808  Heterosexual (straight)            Rarely
## 8809  Heterosexual (straight)            Rarely
## 8810  Heterosexual (straight)  Most of the time
## 8811  Heterosexual (straight)             Never
## 8812                 Bisexual  Most of the time
## 8813  Heterosexual (straight)             Never
## 8814                 Bisexual  Most of the time
## 8815  Heterosexual (straight)         Sometimes
## 8816  Heterosexual (straight)            Rarely
## 8817                 Not sure  Most of the time
## 8818  Heterosexual (straight)             Never
## 8819                 Bisexual         Sometimes
## 8820                 Bisexual  Most of the time
## 8821                 Not sure  Most of the time
## 8822  Heterosexual (straight)  Most of the time
## 8823  Heterosexual (straight)         Sometimes
## 8824  Heterosexual (straight)             Never
## 8825  Heterosexual (straight)  Most of the time
## 8826  Heterosexual (straight)  Most of the time
## 8827  Heterosexual (straight)  Most of the time
## 8828                 Bisexual            Always
## 8829  Heterosexual (straight)         Sometimes
## 8830  Heterosexual (straight)         Sometimes
## 8831  Heterosexual (straight)  Most of the time
## 8832  Heterosexual (straight)             Never
## 8833  Heterosexual (straight)            Rarely
## 8834  Heterosexual (straight)            Rarely
## 8835                 Not sure            Rarely
## 8836                 Bisexual         Sometimes
## 8837           Gay or lesbian             Never
## 8838                 Not sure  Most of the time
## 8839  Heterosexual (straight)         Sometimes
## 8840                 Bisexual  Most of the time
## 8841                 Not sure            Always
## 8842  Heterosexual (straight)  Most of the time
## 8843  Heterosexual (straight)         Sometimes
## 8844  Heterosexual (straight)         Sometimes
## 8845  Heterosexual (straight)         Sometimes
## 8846  Heterosexual (straight)  Most of the time
## 8847  Heterosexual (straight)            Rarely
## 8848  Heterosexual (straight)  Most of the time
## 8849  Heterosexual (straight)         Sometimes
## 8850  Heterosexual (straight)         Sometimes
## 8851  Heterosexual (straight)             Never
## 8852  Heterosexual (straight)             Never
## 8853           Gay or lesbian         Sometimes
## 8854  Heterosexual (straight)  Most of the time
## 8855  Heterosexual (straight)            Rarely
## 8856           Gay or lesbian  Most of the time
## 8857           Some other way         Sometimes
## 8858  Heterosexual (straight)         Sometimes
## 8859  Heterosexual (straight)             Never
## 8860                 Bisexual            Rarely
## 8861                 Not sure  Most of the time
## 8862                 Bisexual  Most of the time
## 8863                 Bisexual            Always
## 8864                 Bisexual            Rarely
## 8865  Heterosexual (straight)            Always
## 8866  Heterosexual (straight)            Always
## 8867  Heterosexual (straight)            Always
## 8868  Heterosexual (straight)            Rarely
## 8869  Heterosexual (straight)  Most of the time
## 8870  Heterosexual (straight)  Most of the time
## 8871           Gay or lesbian            Always
## 8872                 Not sure  Most of the time
## 8873  Heterosexual (straight)            Rarely
## 8874  Heterosexual (straight)             Never
## 8875                 Not sure  Most of the time
## 8876                 Not sure            Always
## 8877  Heterosexual (straight)         Sometimes
## 8878                 Bisexual  Most of the time
## 8879           Some other way            Always
## 8880                 Bisexual  Most of the time
## 8881                 Bisexual  Most of the time
## 8882  Heterosexual (straight)              <NA>
## 8883                 Bisexual            Always
## 8884  Heterosexual (straight)         Sometimes
## 8885  Heterosexual (straight)  Most of the time
## 8886  Heterosexual (straight)  Most of the time
## 8887  Heterosexual (straight)         Sometimes
## 8888  Heterosexual (straight)             Never
## 8889  Heterosexual (straight)            Rarely
## 8890  Heterosexual (straight)  Most of the time
## 8891           Some other way         Sometimes
## 8892                 Bisexual  Most of the time
## 8893  Heterosexual (straight)         Sometimes
## 8894  Heterosexual (straight)            Rarely
## 8895  Heterosexual (straight)            Rarely
## 8896  Heterosexual (straight)            Rarely
## 8897  Heterosexual (straight)         Sometimes
## 8898  Heterosexual (straight)            Rarely
## 8899  Heterosexual (straight)            Rarely
## 8900  Heterosexual (straight)  Most of the time
## 8901  Heterosexual (straight)         Sometimes
## 8902  Heterosexual (straight)            Rarely
## 8903  Heterosexual (straight)         Sometimes
## 8904  Heterosexual (straight)  Most of the time
## 8905  Heterosexual (straight)         Sometimes
## 8906  Heterosexual (straight)  Most of the time
## 8907  Heterosexual (straight)            Always
## 8908  Heterosexual (straight)            Rarely
## 8909  Heterosexual (straight)            Rarely
## 8910  Heterosexual (straight)             Never
## 8911           Some other way            Always
## 8912  Heterosexual (straight)         Sometimes
## 8913  Heterosexual (straight)            Always
## 8914                 Not sure  Most of the time
## 8915           Gay or lesbian  Most of the time
## 8916                 Not sure         Sometimes
## 8917                 Bisexual         Sometimes
## 8918  Heterosexual (straight)             Never
## 8919  Heterosexual (straight)         Sometimes
## 8920  Heterosexual (straight)            Rarely
## 8921                 Bisexual         Sometimes
## 8922  Heterosexual (straight)             Never
## 8923  Heterosexual (straight)            Rarely
## 8924                 Bisexual  Most of the time
## 8925  Heterosexual (straight)            Rarely
## 8926  Heterosexual (straight)  Most of the time
## 8927                 Bisexual  Most of the time
## 8928  Heterosexual (straight)             Never
## 8929                 Bisexual         Sometimes
## 8930  Heterosexual (straight)             Never
## 8931           Some other way         Sometimes
## 8932                 Not sure  Most of the time
## 8933  Heterosexual (straight)         Sometimes
## 8934  Heterosexual (straight)  Most of the time
## 8935  Heterosexual (straight)            Rarely
## 8936  Heterosexual (straight)  Most of the time
## 8937  Heterosexual (straight)            Rarely
## 8938                 Bisexual            Always
## 8939                 Not sure         Sometimes
## 8940  Heterosexual (straight)            Rarely
## 8941  Heterosexual (straight)  Most of the time
## 8942  Heterosexual (straight)            Rarely
## 8943                 Not sure         Sometimes
## 8944  Heterosexual (straight)         Sometimes
## 8945  Heterosexual (straight)             Never
## 8946  Heterosexual (straight)         Sometimes
## 8947  Heterosexual (straight)         Sometimes
## 8948  Heterosexual (straight)            Rarely
## 8949                 Not sure  Most of the time
## 8950                 Bisexual  Most of the time
## 8951  Heterosexual (straight)            Rarely
## 8952  Heterosexual (straight)  Most of the time
## 8953  Heterosexual (straight)  Most of the time
## 8954  Heterosexual (straight)             Never
## 8955  Heterosexual (straight)             Never
## 8956  Heterosexual (straight)  Most of the time
## 8957           Some other way  Most of the time
## 8958  Heterosexual (straight)  Most of the time
## 8959                 Bisexual  Most of the time
## 8960  Heterosexual (straight)            Rarely
## 8961  Heterosexual (straight)             Never
## 8962  Heterosexual (straight)            Always
## 8963  Heterosexual (straight)         Sometimes
## 8964                 Bisexual  Most of the time
## 8965                 Bisexual         Sometimes
## 8966  Heterosexual (straight)             Never
## 8967                 Bisexual         Sometimes
## 8968  Heterosexual (straight)  Most of the time
## 8969                 Bisexual         Sometimes
## 8970                 Bisexual         Sometimes
## 8971  Heterosexual (straight)         Sometimes
## 8972           Some other way  Most of the time
## 8973  Heterosexual (straight)  Most of the time
## 8974  Heterosexual (straight)         Sometimes
## 8975  Heterosexual (straight)            Rarely
## 8976  Heterosexual (straight)            Always
## 8977  Heterosexual (straight)         Sometimes
## 8978  Heterosexual (straight)  Most of the time
## 8979  Heterosexual (straight)            Always
## 8980  Heterosexual (straight)            Rarely
## 8981  Heterosexual (straight)         Sometimes
## 8982  Heterosexual (straight)  Most of the time
## 8983           Gay or lesbian  Most of the time
## 8984  Heterosexual (straight)         Sometimes
## 8985  Heterosexual (straight)             Never
## 8986  Heterosexual (straight)            Rarely
## 8987  Heterosexual (straight)         Sometimes
## 8988  Heterosexual (straight)  Most of the time
## 8989  Heterosexual (straight)         Sometimes
## 8990  Heterosexual (straight)            Rarely
## 8991                 Bisexual         Sometimes
## 8992                 Bisexual            Rarely
## 8993  Heterosexual (straight)            Rarely
## 8994           Some other way         Sometimes
## 8995                 Bisexual  Most of the time
## 8996  Heterosexual (straight)            Rarely
## 8997  Heterosexual (straight)         Sometimes
## 8998  Heterosexual (straight)            Always
## 8999  Heterosexual (straight)             Never
## 9000  Heterosexual (straight)            Rarely
## 9001  Heterosexual (straight)  Most of the time
## 9002  Heterosexual (straight)  Most of the time
## 9003  Heterosexual (straight)  Most of the time
## 9004  Heterosexual (straight)         Sometimes
## 9005                 Not sure         Sometimes
## 9006  Heterosexual (straight)             Never
## 9007                 Not sure  Most of the time
## 9008  Heterosexual (straight)         Sometimes
## 9009           Some other way         Sometimes
## 9010  Heterosexual (straight)            Rarely
## 9011  Heterosexual (straight)             Never
## 9012  Heterosexual (straight)         Sometimes
## 9013                 Bisexual            Always
## 9014  Heterosexual (straight)         Sometimes
## 9015  Heterosexual (straight)  Most of the time
## 9016                 Bisexual            Rarely
## 9017  Heterosexual (straight)  Most of the time
## 9018  Heterosexual (straight)         Sometimes
## 9019                 Bisexual            Always
## 9020  Heterosexual (straight)         Sometimes
## 9021  Heterosexual (straight)            Always
## 9022  Heterosexual (straight)         Sometimes
## 9023  Heterosexual (straight)  Most of the time
## 9024  Heterosexual (straight)              <NA>
## 9025  Heterosexual (straight)         Sometimes
## 9026  Heterosexual (straight)             Never
## 9027  Heterosexual (straight)             Never
## 9028                 Not sure         Sometimes
## 9029  Heterosexual (straight)            Rarely
## 9030  Heterosexual (straight)  Most of the time
## 9031  Heterosexual (straight)         Sometimes
## 9032                 Bisexual            Always
## 9033           Gay or lesbian            Rarely
## 9034  Heterosexual (straight)              <NA>
## 9035  Heterosexual (straight)             Never
## 9036  Heterosexual (straight)            Always
## 9037  Heterosexual (straight)             Never
## 9038                 Bisexual  Most of the time
## 9039                 Not sure            Always
## 9040  Heterosexual (straight)              <NA>
## 9041  Heterosexual (straight)            Rarely
## 9042  Heterosexual (straight)             Never
## 9043  Heterosexual (straight)  Most of the time
## 9044  Heterosexual (straight)             Never
## 9045                 Bisexual             Never
## 9046  Heterosexual (straight)            Rarely
## 9047                 Bisexual  Most of the time
## 9048  Heterosexual (straight)            Always
## 9049  Heterosexual (straight)             Never
## 9050  Heterosexual (straight)            Always
## 9051           Some other way  Most of the time
## 9052  Heterosexual (straight)         Sometimes
## 9053  Heterosexual (straight)             Never
## 9054  Heterosexual (straight)            Rarely
## 9055  Heterosexual (straight)              <NA>
## 9056  Heterosexual (straight)            Always
## 9057                 Bisexual  Most of the time
## 9058  Heterosexual (straight)  Most of the time
## 9059  Heterosexual (straight)            Always
## 9060  Heterosexual (straight)  Most of the time
## 9061  Heterosexual (straight)  Most of the time
## 9062  Heterosexual (straight)            Always
## 9063  Heterosexual (straight)            Rarely
## 9064  Heterosexual (straight)  Most of the time
## 9065           Some other way  Most of the time
## 9066  Heterosexual (straight)            Rarely
## 9067  Heterosexual (straight)             Never
## 9068  Heterosexual (straight)         Sometimes
## 9069                 Bisexual            Rarely
## 9070  Heterosexual (straight)             Never
## 9071  Heterosexual (straight)            Rarely
## 9072                 Bisexual  Most of the time
## 9073  Heterosexual (straight)            Always
## 9074  Heterosexual (straight)             Never
## 9075  Heterosexual (straight)             Never
## 9076  Heterosexual (straight)         Sometimes
## 9077  Heterosexual (straight)         Sometimes
## 9078  Heterosexual (straight)         Sometimes
## 9079  Heterosexual (straight)  Most of the time
## 9080  Heterosexual (straight)         Sometimes
## 9081  Heterosexual (straight)            Rarely
## 9082  Heterosexual (straight)            Rarely
## 9083  Heterosexual (straight)            Rarely
## 9084  Heterosexual (straight)  Most of the time
## 9085  Heterosexual (straight)            Always
## 9086  Heterosexual (straight)  Most of the time
## 9087  Heterosexual (straight)            Rarely
## 9088                 Bisexual              <NA>
## 9089  Heterosexual (straight)            Rarely
## 9090  Heterosexual (straight)            Rarely
## 9091  Heterosexual (straight)  Most of the time
## 9092           Some other way  Most of the time
## 9093  Heterosexual (straight)            Rarely
## 9094  Heterosexual (straight)            Rarely
## 9095  Heterosexual (straight)             Never
## 9096  Heterosexual (straight)         Sometimes
## 9097  Heterosexual (straight)         Sometimes
## 9098  Heterosexual (straight)            Always
## 9099  Heterosexual (straight)            Rarely
## 9100  Heterosexual (straight)         Sometimes
## 9101  Heterosexual (straight)             Never
## 9102                 Bisexual         Sometimes
## 9103           Gay or lesbian  Most of the time
## 9104  Heterosexual (straight)  Most of the time
## 9105  Heterosexual (straight)         Sometimes
## 9106           Some other way            Always
## 9107  Heterosexual (straight)            Always
## 9108  Heterosexual (straight)             Never
## 9109  Heterosexual (straight)            Rarely
## 9110                 Bisexual  Most of the time
## 9111                 Not sure         Sometimes
## 9112  Heterosexual (straight)            Rarely
## 9113  Heterosexual (straight)         Sometimes
## 9114  Heterosexual (straight)         Sometimes
## 9115           Gay or lesbian            Always
## 9116  Heterosexual (straight)            Rarely
## 9117  Heterosexual (straight)            Rarely
## 9118  Heterosexual (straight)         Sometimes
## 9119  Heterosexual (straight)            Rarely
## 9120           Gay or lesbian             Never
## 9121  Heterosexual (straight)             Never
## 9122  Heterosexual (straight)         Sometimes
## 9123  Heterosexual (straight)  Most of the time
## 9124  Heterosexual (straight)  Most of the time
## 9125  Heterosexual (straight)             Never
## 9126  Heterosexual (straight)  Most of the time
## 9127  Heterosexual (straight)         Sometimes
## 9128           Some other way  Most of the time
## 9129  Heterosexual (straight)         Sometimes
## 9130  Heterosexual (straight)         Sometimes
## 9131  Heterosexual (straight)         Sometimes
## 9132  Heterosexual (straight)  Most of the time
## 9133           Gay or lesbian  Most of the time
## 9134  Heterosexual (straight)         Sometimes
## 9135  Heterosexual (straight)              <NA>
## 9136  Heterosexual (straight)         Sometimes
## 9137  Heterosexual (straight)            Rarely
## 9138  Heterosexual (straight)            Rarely
## 9139  Heterosexual (straight)         Sometimes
## 9140  Heterosexual (straight)  Most of the time
## 9141  Heterosexual (straight)  Most of the time
## 9142  Heterosexual (straight)         Sometimes
## 9143  Heterosexual (straight)         Sometimes
## 9144           Gay or lesbian         Sometimes
## 9145                 Bisexual            Always
## 9146  Heterosexual (straight)         Sometimes
## 9147  Heterosexual (straight)         Sometimes
## 9148  Heterosexual (straight)            Rarely
## 9149  Heterosexual (straight)  Most of the time
## 9150                 Bisexual             Never
## 9151  Heterosexual (straight)            Rarely
## 9152  Heterosexual (straight)         Sometimes
## 9153  Heterosexual (straight)            Rarely
## 9154  Heterosexual (straight)         Sometimes
## 9155  Heterosexual (straight)            Always
## 9156  Heterosexual (straight)             Never
## 9157  Heterosexual (straight)         Sometimes
## 9158  Heterosexual (straight)             Never
## 9159  Heterosexual (straight)            Rarely
## 9160  Heterosexual (straight)            Rarely
## 9161  Heterosexual (straight)         Sometimes
## 9162  Heterosexual (straight)            Always
## 9163  Heterosexual (straight)  Most of the time
## 9164  Heterosexual (straight)            Rarely
## 9165  Heterosexual (straight)             Never
## 9166  Heterosexual (straight)             Never
## 9167  Heterosexual (straight)         Sometimes
## 9168  Heterosexual (straight)         Sometimes
## 9169  Heterosexual (straight)            Rarely
## 9170  Heterosexual (straight)  Most of the time
## 9171  Heterosexual (straight)            Rarely
## 9172  Heterosexual (straight)            Always
## 9173  Heterosexual (straight)  Most of the time
## 9174                 Bisexual             Never
## 9175  Heterosexual (straight)            Always
## 9176  Heterosexual (straight)         Sometimes
## 9177  Heterosexual (straight)  Most of the time
## 9178  Heterosexual (straight)            Rarely
## 9179  Heterosexual (straight)            Always
## 9180  Heterosexual (straight)  Most of the time
## 9181  Heterosexual (straight)         Sometimes
## 9182  Heterosexual (straight)            Rarely
## 9183  Heterosexual (straight)  Most of the time
## 9184  Heterosexual (straight)             Never
## 9185  Heterosexual (straight)         Sometimes
## 9186  Heterosexual (straight)         Sometimes
## 9187           Some other way  Most of the time
## 9188                 Bisexual         Sometimes
## 9189  Heterosexual (straight)             Never
## 9190  Heterosexual (straight)             Never
## 9191  Heterosexual (straight)         Sometimes
## 9192  Heterosexual (straight)            Always
## 9193  Heterosexual (straight)             Never
## 9194  Heterosexual (straight)         Sometimes
## 9195  Heterosexual (straight)         Sometimes
## 9196  Heterosexual (straight)  Most of the time
## 9197           Some other way  Most of the time
## 9198                 Bisexual            Always
## 9199  Heterosexual (straight)  Most of the time
## 9200  Heterosexual (straight)            Rarely
## 9201  Heterosexual (straight)         Sometimes
## 9202  Heterosexual (straight)             Never
## 9203                 Not sure            Always
## 9204  Heterosexual (straight)  Most of the time
## 9205  Heterosexual (straight)             Never
## 9206                 Not sure  Most of the time
## 9207  Heterosexual (straight)  Most of the time
## 9208                 Bisexual  Most of the time
## 9209           Gay or lesbian            Always
## 9210  Heterosexual (straight)            Rarely
## 9211  Heterosexual (straight)  Most of the time
## 9212           Some other way         Sometimes
## 9213  Heterosexual (straight)         Sometimes
## 9214  Heterosexual (straight)            Rarely
## 9215  Heterosexual (straight)            Rarely
## 9216  Heterosexual (straight)             Never
## 9217  Heterosexual (straight)             Never
## 9218  Heterosexual (straight)             Never
## 9219  Heterosexual (straight)             Never
## 9220  Heterosexual (straight)             Never
## 9221  Heterosexual (straight)         Sometimes
## 9222  Heterosexual (straight)             Never
## 9223  Heterosexual (straight)             Never
## 9224  Heterosexual (straight)         Sometimes
## 9225  Heterosexual (straight)         Sometimes
## 9226  Heterosexual (straight)            Always
## 9227  Heterosexual (straight)            Rarely
## 9228  Heterosexual (straight)         Sometimes
## 9229  Heterosexual (straight)         Sometimes
## 9230                 Not sure             Never
## 9231  Heterosexual (straight)  Most of the time
## 9232  Heterosexual (straight)            Rarely
## 9233  Heterosexual (straight)         Sometimes
## 9234  Heterosexual (straight)         Sometimes
## 9235  Heterosexual (straight)            Rarely
## 9236  Heterosexual (straight)  Most of the time
## 9237  Heterosexual (straight)            Rarely
## 9238  Heterosexual (straight)             Never
## 9239  Heterosexual (straight)              <NA>
## 9240                 Bisexual            Always
## 9241  Heterosexual (straight)             Never
## 9242           Some other way            Always
## 9243  Heterosexual (straight)              <NA>
## 9244           Some other way         Sometimes
## 9245  Heterosexual (straight)            Rarely
## 9246                 Bisexual            Always
## 9247                 Bisexual         Sometimes
## 9248  Heterosexual (straight)             Never
## 9249                 Not sure            Rarely
## 9250                 Bisexual            Always
## 9251  Heterosexual (straight)         Sometimes
## 9252  Heterosexual (straight)         Sometimes
## 9253           Some other way  Most of the time
## 9254  Heterosexual (straight)             Never
## 9255  Heterosexual (straight)         Sometimes
## 9256  Heterosexual (straight)            Rarely
## 9257  Heterosexual (straight)         Sometimes
## 9258  Heterosexual (straight)         Sometimes
## 9259  Heterosexual (straight)         Sometimes
## 9260  Heterosexual (straight)  Most of the time
## 9261           Some other way  Most of the time
## 9262  Heterosexual (straight)            Rarely
## 9263  Heterosexual (straight)            Rarely
## 9264  Heterosexual (straight)         Sometimes
## 9265                 Not sure         Sometimes
## 9266  Heterosexual (straight)            Always
## 9267  Heterosexual (straight)             Never
## 9268  Heterosexual (straight)         Sometimes
## 9269                 Not sure  Most of the time
## 9270  Heterosexual (straight)  Most of the time
## 9271  Heterosexual (straight)         Sometimes
## 9272  Heterosexual (straight)         Sometimes
## 9273  Heterosexual (straight)  Most of the time
## 9274  Heterosexual (straight)         Sometimes
## 9275  Heterosexual (straight)             Never
## 9276                 Bisexual  Most of the time
## 9277                 Bisexual  Most of the time
## 9278  Heterosexual (straight)  Most of the time
## 9279                 Bisexual  Most of the time
## 9280  Heterosexual (straight)  Most of the time
## 9281  Heterosexual (straight)  Most of the time
## 9282  Heterosexual (straight)         Sometimes
## 9283  Heterosexual (straight)         Sometimes
## 9284                 Bisexual             Never
## 9285  Heterosexual (straight)            Rarely
## 9286  Heterosexual (straight)            Rarely
## 9287  Heterosexual (straight)             Never
## 9288  Heterosexual (straight)         Sometimes
## 9289  Heterosexual (straight)             Never
## 9290  Heterosexual (straight)             Never
## 9291  Heterosexual (straight)             Never
## 9292  Heterosexual (straight)         Sometimes
## 9293  Heterosexual (straight)  Most of the time
## 9294           Gay or lesbian            Rarely
## 9295  Heterosexual (straight)         Sometimes
## 9296  Heterosexual (straight)            Rarely
## 9297  Heterosexual (straight)            Rarely
## 9298  Heterosexual (straight)            Rarely
## 9299  Heterosexual (straight)         Sometimes
## 9300  Heterosexual (straight)            Rarely
## 9301           Some other way            Always
## 9302  Heterosexual (straight)            Rarely
## 9303                 Bisexual         Sometimes
## 9304  Heterosexual (straight)  Most of the time
## 9305  Heterosexual (straight)  Most of the time
## 9306  Heterosexual (straight)         Sometimes
## 9307  Heterosexual (straight)  Most of the time
## 9308                 Not sure            Always
## 9309  Heterosexual (straight)         Sometimes
## 9310  Heterosexual (straight)  Most of the time
## 9311  Heterosexual (straight)            Always
## 9312  Heterosexual (straight)         Sometimes
## 9313  Heterosexual (straight)            Always
## 9314                 Bisexual         Sometimes
## 9315                 Bisexual  Most of the time
## 9316  Heterosexual (straight)            Always
## 9317  Heterosexual (straight)            Rarely
## 9318  Heterosexual (straight)            Rarely
## 9319  Heterosexual (straight)  Most of the time
## 9320  Heterosexual (straight)         Sometimes
## 9321  Heterosexual (straight)            Rarely
## 9322  Heterosexual (straight)         Sometimes
## 9323  Heterosexual (straight)            Rarely
## 9324                 Not sure         Sometimes
## 9325  Heterosexual (straight)  Most of the time
## 9326  Heterosexual (straight)            Rarely
## 9327  Heterosexual (straight)            Always
## 9328  Heterosexual (straight)  Most of the time
## 9329  Heterosexual (straight)  Most of the time
## 9330  Heterosexual (straight)         Sometimes
## 9331  Heterosexual (straight)         Sometimes
## 9332  Heterosexual (straight)         Sometimes
## 9333  Heterosexual (straight)  Most of the time
## 9334  Heterosexual (straight)  Most of the time
## 9335  Heterosexual (straight)             Never
## 9336  Heterosexual (straight)            Rarely
## 9337  Heterosexual (straight)            Rarely
## 9338  Heterosexual (straight)  Most of the time
## 9339  Heterosexual (straight)         Sometimes
## 9340  Heterosexual (straight)         Sometimes
## 9341  Heterosexual (straight)  Most of the time
## 9342  Heterosexual (straight)  Most of the time
## 9343  Heterosexual (straight)  Most of the time
## 9344  Heterosexual (straight)             Never
## 9345  Heterosexual (straight)  Most of the time
## 9346                 Bisexual            Always
## 9347  Heterosexual (straight)         Sometimes
## 9348  Heterosexual (straight)            Always
## 9349  Heterosexual (straight)            Always
## 9350  Heterosexual (straight)  Most of the time
## 9351  Heterosexual (straight)              <NA>
## 9352  Heterosexual (straight)            Rarely
## 9353                 Not sure         Sometimes
## 9354  Heterosexual (straight)            Rarely
## 9355  Heterosexual (straight)             Never
## 9356  Heterosexual (straight)            Rarely
## 9357  Heterosexual (straight)             Never
## 9358  Heterosexual (straight)  Most of the time
## 9359                 Bisexual            Always
## 9360                 Bisexual         Sometimes
## 9361  Heterosexual (straight)             Never
## 9362  Heterosexual (straight)         Sometimes
## 9363  Heterosexual (straight)            Rarely
## 9364  Heterosexual (straight)            Rarely
## 9365  Heterosexual (straight)  Most of the time
## 9366  Heterosexual (straight)            Rarely
## 9367  Heterosexual (straight)         Sometimes
## 9368  Heterosexual (straight)            Rarely
## 9369  Heterosexual (straight)             Never
## 9370  Heterosexual (straight)            Rarely
## 9371                 Not sure         Sometimes
## 9372  Heterosexual (straight)  Most of the time
## 9373  Heterosexual (straight)            Rarely
## 9374  Heterosexual (straight)  Most of the time
## 9375  Heterosexual (straight)         Sometimes
## 9376  Heterosexual (straight)         Sometimes
## 9377  Heterosexual (straight)         Sometimes
## 9378                 Bisexual         Sometimes
## 9379                 Bisexual            Rarely
## 9380  Heterosexual (straight)            Rarely
## 9381  Heterosexual (straight)            Rarely
## 9382  Heterosexual (straight)         Sometimes
## 9383                 Bisexual         Sometimes
## 9384           Gay or lesbian  Most of the time
## 9385  Heterosexual (straight)             Never
## 9386  Heterosexual (straight)         Sometimes
## 9387  Heterosexual (straight)             Never
## 9388  Heterosexual (straight)         Sometimes
## 9389                 Not sure            Rarely
## 9390  Heterosexual (straight)            Always
## 9391  Heterosexual (straight)  Most of the time
## 9392  Heterosexual (straight)             Never
## 9393  Heterosexual (straight)         Sometimes
## 9394  Heterosexual (straight)         Sometimes
## 9395  Heterosexual (straight)             Never
## 9396  Heterosexual (straight)            Rarely
## 9397                 Bisexual            Always
## 9398  Heterosexual (straight)             Never
## 9399                 Bisexual  Most of the time
## 9400                 Bisexual         Sometimes
## 9401  Heterosexual (straight)         Sometimes
## 9402  Heterosexual (straight)         Sometimes
## 9403  Heterosexual (straight)         Sometimes
## 9404                 Bisexual  Most of the time
## 9405  Heterosexual (straight)             Never
## 9406  Heterosexual (straight)            Rarely
## 9407           Some other way         Sometimes
## 9408  Heterosexual (straight)            Rarely
## 9409  Heterosexual (straight)         Sometimes
## 9410                 Bisexual  Most of the time
## 9411  Heterosexual (straight)             Never
## 9412           Gay or lesbian            Always
## 9413  Heterosexual (straight)  Most of the time
## 9414  Heterosexual (straight)  Most of the time
## 9415  Heterosexual (straight)            Rarely
## 9416                 Not sure         Sometimes
## 9417  Heterosexual (straight)            Rarely
## 9418  Heterosexual (straight)         Sometimes
## 9419  Heterosexual (straight)            Rarely
## 9420  Heterosexual (straight)         Sometimes
## 9421  Heterosexual (straight)             Never
## 9422  Heterosexual (straight)  Most of the time
## 9423  Heterosexual (straight)  Most of the time
## 9424  Heterosexual (straight)         Sometimes
## 9425                 Bisexual         Sometimes
## 9426  Heterosexual (straight)            Rarely
## 9427                 Bisexual         Sometimes
## 9428  Heterosexual (straight)  Most of the time
## 9429  Heterosexual (straight)             Never
## 9430  Heterosexual (straight)            Rarely
## 9431  Heterosexual (straight)            Rarely
## 9432  Heterosexual (straight)             Never
## 9433  Heterosexual (straight)             Never
## 9434  Heterosexual (straight)            Rarely
## 9435  Heterosexual (straight)             Never
## 9436  Heterosexual (straight)            Rarely
## 9437  Heterosexual (straight)             Never
## 9438  Heterosexual (straight)             Never
## 9439  Heterosexual (straight)             Never
## 9440  Heterosexual (straight)             Never
## 9441  Heterosexual (straight)         Sometimes
## 9442                 Not sure             Never
## 9443  Heterosexual (straight)         Sometimes
## 9444  Heterosexual (straight)              <NA>
## 9445                 Bisexual         Sometimes
## 9446  Heterosexual (straight)             Never
## 9447  Heterosexual (straight)             Never
## 9448  Heterosexual (straight)         Sometimes
## 9449  Heterosexual (straight)             Never
## 9450  Heterosexual (straight)             Never
## 9451  Heterosexual (straight)         Sometimes
## 9452  Heterosexual (straight)            Always
## 9453  Heterosexual (straight)             Never
## 9454  Heterosexual (straight)  Most of the time
## 9455  Heterosexual (straight)            Rarely
## 9456                 Bisexual         Sometimes
## 9457                 Bisexual  Most of the time
## 9458                 Bisexual            Rarely
## 9459  Heterosexual (straight)             Never
## 9460                 Bisexual  Most of the time
## 9461  Heterosexual (straight)             Never
## 9462  Heterosexual (straight)            Rarely
## 9463  Heterosexual (straight)             Never
## 9464  Heterosexual (straight)            Rarely
## 9465  Heterosexual (straight)             Never
## 9466  Heterosexual (straight)             Never
## 9467  Heterosexual (straight)         Sometimes
## 9468  Heterosexual (straight)         Sometimes
## 9469           Gay or lesbian            Rarely
## 9470  Heterosexual (straight)             Never
## 9471  Heterosexual (straight)         Sometimes
## 9472  Heterosexual (straight)             Never
## 9473                 Bisexual  Most of the time
## 9474  Heterosexual (straight)             Never
## 9475  Heterosexual (straight)             Never
## 9476           Gay or lesbian         Sometimes
## 9477                 Bisexual         Sometimes
## 9478           Some other way  Most of the time
## 9479  Heterosexual (straight)         Sometimes
## 9480  Heterosexual (straight)            Rarely
## 9481  Heterosexual (straight)         Sometimes
## 9482  Heterosexual (straight)            Rarely
## 9483  Heterosexual (straight)         Sometimes
## 9484  Heterosexual (straight)         Sometimes
## 9485           Some other way            Always
## 9486  Heterosexual (straight)             Never
## 9487  Heterosexual (straight)              <NA>
## 9488  Heterosexual (straight)            Rarely
## 9489  Heterosexual (straight)             Never
## 9490  Heterosexual (straight)             Never
## 9491  Heterosexual (straight)         Sometimes
## 9492                 Bisexual            Always
## 9493  Heterosexual (straight)  Most of the time
## 9494  Heterosexual (straight)         Sometimes
## 9495  Heterosexual (straight)  Most of the time
## 9496  Heterosexual (straight)            Always
## 9497                 Bisexual  Most of the time
## 9498  Heterosexual (straight)            Rarely
## 9499  Heterosexual (straight)            Rarely
## 9500           Gay or lesbian            Rarely
## 9501  Heterosexual (straight)             Never
## 9502  Heterosexual (straight)  Most of the time
## 9503  Heterosexual (straight)            Always
## 9504  Heterosexual (straight)            Always
## 9505  Heterosexual (straight)             Never
## 9506  Heterosexual (straight)            Always
## 9507                 Bisexual         Sometimes
## 9508  Heterosexual (straight)             Never
## 9509  Heterosexual (straight)         Sometimes
## 9510  Heterosexual (straight)  Most of the time
## 9511           Some other way         Sometimes
## 9512                 Not sure            Always
## 9513  Heterosexual (straight)  Most of the time
## 9514  Heterosexual (straight)         Sometimes
## 9515  Heterosexual (straight)            Always
## 9516  Heterosexual (straight)         Sometimes
## 9517                 Bisexual         Sometimes
## 9518  Heterosexual (straight)  Most of the time
## 9519                 Bisexual            Always
## 9520           Some other way            Always
## 9521                 Bisexual  Most of the time
## 9522  Heterosexual (straight)             Never
## 9523  Heterosexual (straight)            Rarely
## 9524  Heterosexual (straight)             Never
## 9525  Heterosexual (straight)             Never
## 9526  Heterosexual (straight)            Rarely
## 9527  Heterosexual (straight)             Never
## 9528  Heterosexual (straight)             Never
## 9529                 Bisexual  Most of the time
## 9530  Heterosexual (straight)             Never
## 9531  Heterosexual (straight)             Never
## 9532  Heterosexual (straight)         Sometimes
## 9533  Heterosexual (straight)         Sometimes
## 9534  Heterosexual (straight)         Sometimes
## 9535  Heterosexual (straight)            Rarely
## 9536  Heterosexual (straight)             Never
## 9537  Heterosexual (straight)             Never
## 9538  Heterosexual (straight)              <NA>
## 9539  Heterosexual (straight)             Never
## 9540  Heterosexual (straight)            Rarely
## 9541  Heterosexual (straight)         Sometimes
## 9542                 Bisexual            Always
## 9543           Gay or lesbian  Most of the time
## 9544  Heterosexual (straight)            Rarely
## 9545  Heterosexual (straight)  Most of the time
## 9546  Heterosexual (straight)             Never
## 9547                 Not sure            Rarely
## 9548  Heterosexual (straight)            Always
## 9549  Heterosexual (straight)             Never
## 9550  Heterosexual (straight)            Rarely
## 9551  Heterosexual (straight)            Rarely
## 9552           Gay or lesbian  Most of the time
## 9553                 Not sure         Sometimes
## 9554  Heterosexual (straight)            Rarely
## 9555  Heterosexual (straight)  Most of the time
## 9556  Heterosexual (straight)         Sometimes
## 9557  Heterosexual (straight)  Most of the time
## 9558  Heterosexual (straight)            Rarely
## 9559  Heterosexual (straight)             Never
## 9560  Heterosexual (straight)            Rarely
## 9561  Heterosexual (straight)            Rarely
## 9562  Heterosexual (straight)             Never
## 9563  Heterosexual (straight)             Never
## 9564  Heterosexual (straight)              <NA>
## 9565  Heterosexual (straight)  Most of the time
## 9566  Heterosexual (straight)            Rarely
## 9567                 Not sure            Always
## 9568  Heterosexual (straight)  Most of the time
## 9569  Heterosexual (straight)         Sometimes
## 9570  Heterosexual (straight)            Rarely
## 9571  Heterosexual (straight)         Sometimes
## 9572  Heterosexual (straight)             Never
## 9573  Heterosexual (straight)            Rarely
## 9574  Heterosexual (straight)  Most of the time
## 9575                 Bisexual            Always
## 9576  Heterosexual (straight)         Sometimes
## 9577                 Bisexual  Most of the time
## 9578                 Not sure             Never
## 9579  Heterosexual (straight)             Never
## 9580  Heterosexual (straight)            Rarely
## 9581           Gay or lesbian  Most of the time
## 9582  Heterosexual (straight)         Sometimes
## 9583  Heterosexual (straight)         Sometimes
## 9584  Heterosexual (straight)             Never
## 9585  Heterosexual (straight)         Sometimes
## 9586  Heterosexual (straight)         Sometimes
## 9587  Heterosexual (straight)             Never
## 9588  Heterosexual (straight)            Rarely
## 9589           Gay or lesbian         Sometimes
## 9590                 Bisexual             Never
## 9591  Heterosexual (straight)            Rarely
## 9592  Heterosexual (straight)            Rarely
## 9593  Heterosexual (straight)            Rarely
## 9594           Gay or lesbian         Sometimes
## 9595  Heterosexual (straight)  Most of the time
## 9596  Heterosexual (straight)            Rarely
## 9597  Heterosexual (straight)            Rarely
## 9598  Heterosexual (straight)             Never
## 9599  Heterosexual (straight)         Sometimes
## 9600  Heterosexual (straight)            Rarely
## 9601                 Bisexual         Sometimes
## 9602           Gay or lesbian  Most of the time
## 9603  Heterosexual (straight)         Sometimes
## 9604                 Bisexual  Most of the time
## 9605           Gay or lesbian  Most of the time
## 9606  Heterosexual (straight)             Never
## 9607  Heterosexual (straight)            Rarely
## 9608                 Bisexual  Most of the time
## 9609  Heterosexual (straight)  Most of the time
## 9610                 Bisexual         Sometimes
## 9611  Heterosexual (straight)  Most of the time
## 9612           Some other way         Sometimes
## 9613  Heterosexual (straight)  Most of the time
## 9614                 Bisexual         Sometimes
## 9615  Heterosexual (straight)  Most of the time
## 9616  Heterosexual (straight)  Most of the time
## 9617                 Bisexual  Most of the time
## 9618                 Bisexual  Most of the time
## 9619           Some other way  Most of the time
## 9620  Heterosexual (straight)            Rarely
## 9621  Heterosexual (straight)  Most of the time
## 9622                 Not sure  Most of the time
## 9623  Heterosexual (straight)         Sometimes
## 9624  Heterosexual (straight)            Rarely
## 9625                 Not sure         Sometimes
## 9626  Heterosexual (straight)            Rarely
## 9627  Heterosexual (straight)  Most of the time
## 9628  Heterosexual (straight)            Rarely
## 9629  Heterosexual (straight)            Rarely
## 9630  Heterosexual (straight)         Sometimes
## 9631  Heterosexual (straight)         Sometimes
## 9632  Heterosexual (straight)  Most of the time
## 9633  Heterosexual (straight)         Sometimes
## 9634  Heterosexual (straight)             Never
## 9635           Some other way             Never
## 9636                 Bisexual         Sometimes
## 9637  Heterosexual (straight)  Most of the time
## 9638  Heterosexual (straight)            Rarely
## 9639  Heterosexual (straight)            Rarely
## 9640                 Bisexual         Sometimes
## 9641                 Not sure            Rarely
## 9642  Heterosexual (straight)            Always
## 9643  Heterosexual (straight)         Sometimes
## 9644  Heterosexual (straight)            Rarely
## 9645  Heterosexual (straight)             Never
## 9646  Heterosexual (straight)            Rarely
## 9647                 Not sure         Sometimes
## 9648  Heterosexual (straight)            Rarely
## 9649  Heterosexual (straight)         Sometimes
## 9650  Heterosexual (straight)            Rarely
## 9651  Heterosexual (straight)            Rarely
## 9652  Heterosexual (straight)            Rarely
## 9653                 Bisexual  Most of the time
## 9654                 Bisexual         Sometimes
## 9655  Heterosexual (straight)         Sometimes
## 9656  Heterosexual (straight)            Always
## 9657                 Bisexual         Sometimes
## 9658           Gay or lesbian  Most of the time
## 9659  Heterosexual (straight)         Sometimes
## 9660                 Bisexual  Most of the time
## 9661  Heterosexual (straight)            Rarely
## 9662                 Bisexual  Most of the time
## 9663  Heterosexual (straight)             Never
## 9664  Heterosexual (straight)             Never
## 9665  Heterosexual (straight)  Most of the time
## 9666  Heterosexual (straight)         Sometimes
## 9667  Heterosexual (straight)         Sometimes
## 9668  Heterosexual (straight)            Always
## 9669  Heterosexual (straight)            Rarely
## 9670  Heterosexual (straight)            Always
## 9671  Heterosexual (straight)            Rarely
## 9672  Heterosexual (straight)            Rarely
## 9673                 Bisexual         Sometimes
## 9674                 Bisexual            Rarely
## 9675  Heterosexual (straight)            Rarely
## 9676  Heterosexual (straight)         Sometimes
## 9677  Heterosexual (straight)            Rarely
## 9678  Heterosexual (straight)            Rarely
## 9679  Heterosexual (straight)            Always
## 9680  Heterosexual (straight)  Most of the time
## 9681                 Bisexual  Most of the time
## 9682                 Bisexual  Most of the time
## 9683  Heterosexual (straight)            Rarely
## 9684                 Bisexual            Rarely
## 9685  Heterosexual (straight)         Sometimes
## 9686           Some other way  Most of the time
## 9687  Heterosexual (straight)            Rarely
## 9688           Gay or lesbian         Sometimes
## 9689           Gay or lesbian         Sometimes
## 9690  Heterosexual (straight)         Sometimes
## 9691  Heterosexual (straight)             Never
## 9692                 Bisexual  Most of the time
## 9693  Heterosexual (straight)  Most of the time
## 9694  Heterosexual (straight)         Sometimes
## 9695                 Not sure         Sometimes
## 9696                 Bisexual  Most of the time
## 9697  Heterosexual (straight)         Sometimes
## 9698  Heterosexual (straight)         Sometimes
## 9699  Heterosexual (straight)         Sometimes
## 9700  Heterosexual (straight)         Sometimes
## 9701  Heterosexual (straight)              <NA>
## 9702  Heterosexual (straight)  Most of the time
## 9703  Heterosexual (straight)             Never
## 9704           Some other way            Rarely
## 9705           Some other way         Sometimes
## 9706  Heterosexual (straight)         Sometimes
## 9707           Some other way         Sometimes
## 9708                 Bisexual  Most of the time
## 9709  Heterosexual (straight)  Most of the time
## 9710                 Bisexual         Sometimes
## 9711  Heterosexual (straight)            Always
## 9712  Heterosexual (straight)            Always
## 9713                 Bisexual         Sometimes
## 9714  Heterosexual (straight)  Most of the time
## 9715  Heterosexual (straight)            Rarely
## 9716  Heterosexual (straight)            Rarely
## 9717  Heterosexual (straight)             Never
## 9718                 Bisexual         Sometimes
## 9719  Heterosexual (straight)            Rarely
## 9720  Heterosexual (straight)            Always
## 9721  Heterosexual (straight)            Rarely
## 9722  Heterosexual (straight)  Most of the time
## 9723  Heterosexual (straight)             Never
## 9724  Heterosexual (straight)         Sometimes
## 9725  Heterosexual (straight)            Rarely
## 9726  Heterosexual (straight)             Never
## 9727                 Bisexual  Most of the time
## 9728  Heterosexual (straight)            Rarely
## 9729  Heterosexual (straight)            Rarely
## 9730  Heterosexual (straight)  Most of the time
## 9731  Heterosexual (straight)            Rarely
## 9732  Heterosexual (straight)            Always
## 9733  Heterosexual (straight)            Rarely
## 9734  Heterosexual (straight)            Rarely
## 9735  Heterosexual (straight)  Most of the time
## 9736  Heterosexual (straight)         Sometimes
## 9737  Heterosexual (straight)  Most of the time
## 9738  Heterosexual (straight)             Never
## 9739           Gay or lesbian         Sometimes
## 9740  Heterosexual (straight)  Most of the time
## 9741  Heterosexual (straight)            Rarely
## 9742  Heterosexual (straight)         Sometimes
## 9743           Gay or lesbian         Sometimes
## 9744  Heterosexual (straight)         Sometimes
## 9745  Heterosexual (straight)             Never
## 9746                 Bisexual  Most of the time
## 9747  Heterosexual (straight)            Rarely
## 9748  Heterosexual (straight)            Rarely
## 9749  Heterosexual (straight)         Sometimes
## 9750  Heterosexual (straight)  Most of the time
## 9751                 Bisexual  Most of the time
## 9752  Heterosexual (straight)         Sometimes
## 9753  Heterosexual (straight)         Sometimes
## 9754  Heterosexual (straight)            Rarely
## 9755  Heterosexual (straight)         Sometimes
## 9756  Heterosexual (straight)            Rarely
## 9757  Heterosexual (straight)             Never
## 9758  Heterosexual (straight)  Most of the time
## 9759                 Bisexual            Always
## 9760  Heterosexual (straight)            Always
## 9761           Gay or lesbian         Sometimes
## 9762                 Not sure  Most of the time
## 9763  Heterosexual (straight)  Most of the time
## 9764  Heterosexual (straight)  Most of the time
## 9765  Heterosexual (straight)            Rarely
## 9766  Heterosexual (straight)             Never
## 9767  Heterosexual (straight)  Most of the time
## 9768  Heterosexual (straight)            Rarely
## 9769  Heterosexual (straight)  Most of the time
## 9770           Some other way  Most of the time
## 9771  Heterosexual (straight)         Sometimes
## 9772                 Not sure  Most of the time
## 9773  Heterosexual (straight)            Always
## 9774  Heterosexual (straight)            Rarely
## 9775  Heterosexual (straight)            Rarely
## 9776  Heterosexual (straight)            Always
## 9777                 Bisexual  Most of the time
## 9778           Some other way  Most of the time
## 9779                 Bisexual            Rarely
## 9780  Heterosexual (straight)  Most of the time
## 9781  Heterosexual (straight)         Sometimes
## 9782  Heterosexual (straight)            Rarely
## 9783           Gay or lesbian            Rarely
## 9784  Heterosexual (straight)         Sometimes
## 9785  Heterosexual (straight)  Most of the time
## 9786  Heterosexual (straight)         Sometimes
## 9787                 Bisexual  Most of the time
## 9788  Heterosexual (straight)  Most of the time
## 9789  Heterosexual (straight)            Rarely
## 9790  Heterosexual (straight)            Rarely
## 9791  Heterosexual (straight)            Rarely
## 9792  Heterosexual (straight)         Sometimes
## 9793  Heterosexual (straight)             Never
## 9794  Heterosexual (straight)         Sometimes
## 9795  Heterosexual (straight)            Rarely
## 9796  Heterosexual (straight)            Always
## 9797  Heterosexual (straight)             Never
## 9798           Some other way  Most of the time
## 9799           Gay or lesbian  Most of the time
## 9800           Some other way         Sometimes
## 9801                 Bisexual         Sometimes
## 9802  Heterosexual (straight)            Rarely
## 9803  Heterosexual (straight)            Rarely
## 9804  Heterosexual (straight)         Sometimes
## 9805  Heterosexual (straight)             Never
## 9806  Heterosexual (straight)             Never
## 9807  Heterosexual (straight)             Never
## 9808  Heterosexual (straight)             Never
## 9809  Heterosexual (straight)            Always
## 9810  Heterosexual (straight)              <NA>
## 9811  Heterosexual (straight)  Most of the time
## 9812  Heterosexual (straight)         Sometimes
## 9813  Heterosexual (straight)  Most of the time
## 9814  Heterosexual (straight)            Rarely
## 9815  Heterosexual (straight)  Most of the time
## 9816  Heterosexual (straight)            Rarely
## 9817  Heterosexual (straight)         Sometimes
## 9818  Heterosexual (straight)            Rarely
## 9819  Heterosexual (straight)            Always
## 9820           Some other way            Always
## 9821  Heterosexual (straight)  Most of the time
## 9822  Heterosexual (straight)         Sometimes
## 9823  Heterosexual (straight)             Never
## 9824  Heterosexual (straight)         Sometimes
## 9825  Heterosexual (straight)         Sometimes
## 9826  Heterosexual (straight)         Sometimes
## 9827  Heterosexual (straight)            Rarely
## 9828  Heterosexual (straight)              <NA>
## 9829  Heterosexual (straight)         Sometimes
## 9830  Heterosexual (straight)             Never
## 9831  Heterosexual (straight)            Rarely
## 9832  Heterosexual (straight)            Rarely
## 9833  Heterosexual (straight)             Never
## 9834  Heterosexual (straight)            Rarely
## 9835  Heterosexual (straight)  Most of the time
## 9836  Heterosexual (straight)              <NA>
## 9837  Heterosexual (straight)             Never
## 9838  Heterosexual (straight)  Most of the time
## 9839  Heterosexual (straight)            Rarely
## 9840  Heterosexual (straight)         Sometimes
## 9841  Heterosexual (straight)            Always
## 9842  Heterosexual (straight)             Never
## 9843  Heterosexual (straight)  Most of the time
## 9844  Heterosexual (straight)  Most of the time
## 9845  Heterosexual (straight)         Sometimes
## 9846  Heterosexual (straight)            Rarely
## 9847  Heterosexual (straight)            Always
## 9848  Heterosexual (straight)         Sometimes
## 9849                 Bisexual            Rarely
## 9850  Heterosexual (straight)  Most of the time
## 9851  Heterosexual (straight)  Most of the time
## 9852           Gay or lesbian         Sometimes
## 9853  Heterosexual (straight)         Sometimes
## 9854           Gay or lesbian            Always
## 9855  Heterosexual (straight)            Rarely
## 9856           Gay or lesbian  Most of the time
## 9857           Some other way            Rarely
## 9858  Heterosexual (straight)         Sometimes
## 9859           Gay or lesbian              <NA>
## 9860  Heterosexual (straight)         Sometimes
## 9861  Heterosexual (straight)         Sometimes
## 9862  Heterosexual (straight)            Rarely
## 9863  Heterosexual (straight)         Sometimes
## 9864  Heterosexual (straight)            Rarely
## 9865  Heterosexual (straight)            Rarely
## 9866           Gay or lesbian         Sometimes
## 9867  Heterosexual (straight)            Rarely
## 9868  Heterosexual (straight)            Rarely
## 9869  Heterosexual (straight)            Rarely
## 9870                 Not sure         Sometimes
## 9871                 Not sure         Sometimes
## 9872  Heterosexual (straight)         Sometimes
## 9873  Heterosexual (straight)            Rarely
## 9874                 Bisexual  Most of the time
## 9875  Heterosexual (straight)         Sometimes
## 9876  Heterosexual (straight)         Sometimes
## 9877                 Bisexual  Most of the time
## 9878  Heterosexual (straight)         Sometimes
## 9879  Heterosexual (straight)            Always
## 9880                 Not sure            Always
## 9881  Heterosexual (straight)         Sometimes
## 9882           Gay or lesbian            Always
## 9883                 Not sure  Most of the time
## 9884  Heterosexual (straight)             Never
## 9885  Heterosexual (straight)            Rarely
## 9886                 Not sure         Sometimes
## 9887  Heterosexual (straight)            Rarely
## 9888  Heterosexual (straight)         Sometimes
## 9889           Some other way            Rarely
## 9890  Heterosexual (straight)             Never
## 9891           Gay or lesbian         Sometimes
## 9892  Heterosexual (straight)  Most of the time
## 9893  Heterosexual (straight)         Sometimes
## 9894                 Bisexual  Most of the time
## 9895  Heterosexual (straight)         Sometimes
## 9896                 Bisexual  Most of the time
## 9897           Gay or lesbian            Rarely
## 9898           Some other way  Most of the time
## 9899  Heterosexual (straight)         Sometimes
## 9900  Heterosexual (straight)             Never
## 9901                 Bisexual  Most of the time
## 9902  Heterosexual (straight)         Sometimes
## 9903  Heterosexual (straight)  Most of the time
## 9904  Heterosexual (straight)         Sometimes
## 9905  Heterosexual (straight)         Sometimes
## 9906  Heterosexual (straight)  Most of the time
## 9907  Heterosexual (straight)  Most of the time
## 9908  Heterosexual (straight)         Sometimes
## 9909  Heterosexual (straight)         Sometimes
## 9910  Heterosexual (straight)            Rarely
## 9911           Some other way         Sometimes
## 9912  Heterosexual (straight)         Sometimes
## 9913  Heterosexual (straight)  Most of the time
## 9914                 Bisexual  Most of the time
## 9915           Gay or lesbian  Most of the time
## 9916  Heterosexual (straight)            Rarely
## 9917  Heterosexual (straight)            Rarely
## 9918  Heterosexual (straight)            Always
## 9919           Gay or lesbian  Most of the time
## 9920  Heterosexual (straight)             Never
## 9921  Heterosexual (straight)            Rarely
## 9922  Heterosexual (straight)             Never
## 9923  Heterosexual (straight)            Rarely
## 9924           Gay or lesbian         Sometimes
## 9925  Heterosexual (straight)              <NA>
## 9926  Heterosexual (straight)  Most of the time
## 9927  Heterosexual (straight)             Never
## 9928  Heterosexual (straight)            Rarely
## 9929  Heterosexual (straight)         Sometimes
## 9930                 Not sure            Always
## 9931                 Bisexual         Sometimes
## 9932  Heterosexual (straight)  Most of the time
## 9933                 Not sure         Sometimes
## 9934                 Bisexual            Always
## 9935                 Not sure         Sometimes
## 9936                 Bisexual            Always
## 9937  Heterosexual (straight)            Rarely
## 9938  Heterosexual (straight)         Sometimes
## 9939  Heterosexual (straight)  Most of the time
## 9940  Heterosexual (straight)            Rarely
## 9941  Heterosexual (straight)  Most of the time
## 9942                 Bisexual         Sometimes
## 9943  Heterosexual (straight)             Never
## 9944                 Not sure         Sometimes
## 9945  Heterosexual (straight)  Most of the time
## 9946  Heterosexual (straight)         Sometimes
## 9947           Some other way         Sometimes
## 9948  Heterosexual (straight)            Rarely
## 9949                 Bisexual  Most of the time
## 9950  Heterosexual (straight)            Rarely
## 9951  Heterosexual (straight)         Sometimes
## 9952  Heterosexual (straight)            Rarely
## 9953           Some other way            Always
## 9954  Heterosexual (straight)            Rarely
## 9955           Some other way         Sometimes
## 9956  Heterosexual (straight)            Rarely
## 9957  Heterosexual (straight)             Never
## 9958  Heterosexual (straight)         Sometimes
## 9959                 Bisexual         Sometimes
## 9960                 Not sure  Most of the time
## 9961  Heterosexual (straight)            Rarely
## 9962  Heterosexual (straight)             Never
## 9963  Heterosexual (straight)             Never
## 9964           Some other way         Sometimes
## 9965                 Bisexual  Most of the time
## 9966                 Bisexual  Most of the time
## 9967  Heterosexual (straight)             Never
## 9968  Heterosexual (straight)         Sometimes
## 9969  Heterosexual (straight)         Sometimes
## 9970  Heterosexual (straight)            Rarely
## 9971  Heterosexual (straight)  Most of the time
## 9972  Heterosexual (straight)         Sometimes
## 9973                 Bisexual            Always
## 9974  Heterosexual (straight)         Sometimes
## 9975  Heterosexual (straight)         Sometimes
## 9976  Heterosexual (straight)         Sometimes
## 9977  Heterosexual (straight)            Rarely
## 9978  Heterosexual (straight)            Rarely
## 9979                 Bisexual  Most of the time
## 9980  Heterosexual (straight)            Rarely
## 9981  Heterosexual (straight)            Rarely
## 9982  Heterosexual (straight)            Rarely
## 9983           Some other way  Most of the time
## 9984  Heterosexual (straight)            Rarely
## 9985                 Bisexual  Most of the time
## 9986  Heterosexual (straight)         Sometimes
## 9987                 Bisexual            Always
## 9988  Heterosexual (straight)         Sometimes
## 9989  Heterosexual (straight)            Rarely
## 9990  Heterosexual (straight)         Sometimes
## 9991  Heterosexual (straight)            Rarely
## 9992  Heterosexual (straight)         Sometimes
## 9993                 Bisexual         Sometimes
## 9994  Heterosexual (straight)         Sometimes
## 9995  Heterosexual (straight)         Sometimes
## 9996           Gay or lesbian  Most of the time
## 9997  Heterosexual (straight)              <NA>
## 9998                 Bisexual  Most of the time
## 9999  Heterosexual (straight)            Rarely
## 10000 Heterosexual (straight)            Rarely
## 10001                Not sure  Most of the time
## 10002                Bisexual  Most of the time
## 10003 Heterosexual (straight)  Most of the time
## 10004                Bisexual            Always
## 10005                Bisexual            Rarely
## 10006 Heterosexual (straight)            Rarely
## 10007 Heterosexual (straight)            Rarely
## 10008 Heterosexual (straight)            Rarely
## 10009 Heterosexual (straight)  Most of the time
## 10010 Heterosexual (straight)            Rarely
## 10011 Heterosexual (straight)              <NA>
## 10012 Heterosexual (straight)         Sometimes
## 10013          Gay or lesbian         Sometimes
## 10014 Heterosexual (straight)            Always
## 10015 Heterosexual (straight)         Sometimes
## 10016 Heterosexual (straight)             Never
## 10017 Heterosexual (straight)             Never
## 10018 Heterosexual (straight)             Never
## 10019 Heterosexual (straight)         Sometimes
## 10020 Heterosexual (straight)         Sometimes
## 10021 Heterosexual (straight)            Always
## 10022 Heterosexual (straight)            Rarely
## 10023                Bisexual  Most of the time
## 10024                Bisexual  Most of the time
## 10025                Bisexual            Always
## 10026 Heterosexual (straight)  Most of the time
## 10027 Heterosexual (straight)  Most of the time
## 10028 Heterosexual (straight)            Always
## 10029 Heterosexual (straight)             Never
## 10030 Heterosexual (straight)            Rarely
## 10031 Heterosexual (straight)            Rarely
## 10032          Some other way              <NA>
## 10033 Heterosexual (straight)            Rarely
## 10034 Heterosexual (straight)         Sometimes
## 10035 Heterosexual (straight)             Never
## 10036                Bisexual  Most of the time
## 10037 Heterosexual (straight)         Sometimes
## 10038                Not sure  Most of the time
## 10039 Heterosexual (straight)            Always
## 10040 Heterosexual (straight)            Rarely
## 10041 Heterosexual (straight)         Sometimes
## 10042          Some other way             Never
## 10043 Heterosexual (straight)  Most of the time
## 10044 Heterosexual (straight)             Never
## 10045 Heterosexual (straight)         Sometimes
## 10046 Heterosexual (straight)            Rarely
## 10047                Bisexual            Always
## 10048                Not sure         Sometimes
## 10049 Heterosexual (straight)         Sometimes
## 10050 Heterosexual (straight)             Never
## 10051 Heterosexual (straight)         Sometimes
## 10052 Heterosexual (straight)              <NA>
## 10053 Heterosexual (straight)             Never
## 10054 Heterosexual (straight)            Rarely
## 10055 Heterosexual (straight)            Rarely
## 10056 Heterosexual (straight)            Rarely
## 10057 Heterosexual (straight)         Sometimes
## 10058 Heterosexual (straight)  Most of the time
## 10059 Heterosexual (straight)         Sometimes
## 10060 Heterosexual (straight)  Most of the time
## 10061 Heterosexual (straight)             Never
## 10062 Heterosexual (straight)         Sometimes
## 10063 Heterosexual (straight)             Never
## 10064 Heterosexual (straight)  Most of the time
## 10065 Heterosexual (straight)  Most of the time
## 10066 Heterosexual (straight)             Never
## 10067 Heterosexual (straight)             Never
## 10068 Heterosexual (straight)  Most of the time
## 10069 Heterosexual (straight)  Most of the time
## 10070          Gay or lesbian         Sometimes
## 10071 Heterosexual (straight)             Never
## 10072 Heterosexual (straight)  Most of the time
## 10073 Heterosexual (straight)             Never
## 10074 Heterosexual (straight)            Always
## 10075 Heterosexual (straight)         Sometimes
## 10076 Heterosexual (straight)             Never
## 10077 Heterosexual (straight)  Most of the time
## 10078 Heterosexual (straight)              <NA>
## 10079 Heterosexual (straight)             Never
## 10080                Bisexual            Always
## 10081 Heterosexual (straight)             Never
## 10082 Heterosexual (straight)         Sometimes
## 10083 Heterosexual (straight)            Rarely
## 10084 Heterosexual (straight)            Rarely
## 10085 Heterosexual (straight)         Sometimes
## 10086 Heterosexual (straight)  Most of the time
## 10087 Heterosexual (straight)              <NA>
## 10088 Heterosexual (straight)             Never
## 10089 Heterosexual (straight)         Sometimes
## 10090 Heterosexual (straight)  Most of the time
## 10091 Heterosexual (straight)             Never
## 10092 Heterosexual (straight)            Rarely
## 10093                Bisexual  Most of the time
## 10094 Heterosexual (straight)            Rarely
## 10095                Not sure            Always
## 10096 Heterosexual (straight)         Sometimes
## 10097 Heterosexual (straight)         Sometimes
## 10098 Heterosexual (straight)             Never
## 10099 Heterosexual (straight)             Never
## 10100 Heterosexual (straight)            Rarely
## 10101                Bisexual  Most of the time
## 10102 Heterosexual (straight)            Always
## 10103 Heterosexual (straight)         Sometimes
## 10104 Heterosexual (straight)         Sometimes
## 10105                Bisexual         Sometimes
## 10106 Heterosexual (straight)            Rarely
## 10107 Heterosexual (straight)              <NA>
## 10108 Heterosexual (straight)             Never
## 10109 Heterosexual (straight)            Rarely
## 10110                Bisexual  Most of the time
## 10111                Bisexual             Never
## 10112                Bisexual  Most of the time
## 10113                Bisexual         Sometimes
## 10114 Heterosexual (straight)  Most of the time
## 10115          Some other way            Always
## 10116          Some other way  Most of the time
## 10117 Heterosexual (straight)         Sometimes
## 10118 Heterosexual (straight)            Always
## 10119          Gay or lesbian  Most of the time
## 10120 Heterosexual (straight)             Never
## 10121                Not sure            Rarely
## 10122 Heterosexual (straight)            Rarely
## 10123 Heterosexual (straight)         Sometimes
## 10124          Some other way         Sometimes
## 10125 Heterosexual (straight)  Most of the time
## 10126 Heterosexual (straight)            Rarely
## 10127 Heterosexual (straight)  Most of the time
## 10128 Heterosexual (straight)  Most of the time
## 10129 Heterosexual (straight)            Rarely
## 10130 Heterosexual (straight)             Never
## 10131 Heterosexual (straight)            Always
## 10132                Bisexual            Always
## 10133 Heterosexual (straight)            Always
## 10134 Heterosexual (straight)            Rarely
## 10135 Heterosexual (straight)            Always
## 10136          Some other way         Sometimes
## 10137                Bisexual         Sometimes
## 10138                Not sure         Sometimes
## 10139 Heterosexual (straight)            Rarely
## 10140 Heterosexual (straight)            Rarely
## 10141 Heterosexual (straight)             Never
## 10142 Heterosexual (straight)         Sometimes
## 10143 Heterosexual (straight)         Sometimes
## 10144                Bisexual  Most of the time
## 10145 Heterosexual (straight)         Sometimes
## 10146                Bisexual         Sometimes
## 10147 Heterosexual (straight)  Most of the time
## 10148 Heterosexual (straight)            Rarely
## 10149 Heterosexual (straight)  Most of the time
## 10150 Heterosexual (straight)         Sometimes
## 10151 Heterosexual (straight)  Most of the time
## 10152 Heterosexual (straight)  Most of the time
## 10153                Bisexual            Always
## 10154                Bisexual            Always
## 10155 Heterosexual (straight)             Never
## 10156 Heterosexual (straight)            Always
## 10157 Heterosexual (straight)  Most of the time
## 10158 Heterosexual (straight)            Rarely
## 10159 Heterosexual (straight)             Never
## 10160 Heterosexual (straight)            Always
## 10161 Heterosexual (straight)  Most of the time
## 10162 Heterosexual (straight)            Rarely
## 10163 Heterosexual (straight)         Sometimes
## 10164 Heterosexual (straight)            Rarely
## 10165 Heterosexual (straight)             Never
## 10166 Heterosexual (straight)         Sometimes
## 10167 Heterosexual (straight)            Always
## 10168                Bisexual  Most of the time
## 10169 Heterosexual (straight)            Rarely
## 10170                Not sure         Sometimes
## 10171 Heterosexual (straight)             Never
## 10172 Heterosexual (straight)            Rarely
## 10173 Heterosexual (straight)            Rarely
## 10174 Heterosexual (straight)            Rarely
## 10175 Heterosexual (straight)  Most of the time
## 10176 Heterosexual (straight)  Most of the time
## 10177 Heterosexual (straight)         Sometimes
## 10178 Heterosexual (straight)  Most of the time
## 10179 Heterosexual (straight)             Never
## 10180 Heterosexual (straight)             Never
## 10181                Bisexual  Most of the time
## 10182 Heterosexual (straight)            Rarely
## 10183 Heterosexual (straight)             Never
## 10184 Heterosexual (straight)         Sometimes
## 10185 Heterosexual (straight)         Sometimes
## 10186 Heterosexual (straight)         Sometimes
## 10187 Heterosexual (straight)         Sometimes
## 10188 Heterosexual (straight)             Never
## 10189 Heterosexual (straight)            Always
## 10190 Heterosexual (straight)            Rarely
## 10191 Heterosexual (straight)            Rarely
## 10192 Heterosexual (straight)         Sometimes
## 10193                Bisexual  Most of the time
## 10194                Bisexual         Sometimes
## 10195 Heterosexual (straight)         Sometimes
## 10196 Heterosexual (straight)             Never
## 10197          Some other way  Most of the time
## 10198 Heterosexual (straight)            Always
## 10199          Gay or lesbian            Always
## 10200 Heterosexual (straight)         Sometimes
## 10201 Heterosexual (straight)             Never
## 10202 Heterosexual (straight)            Rarely
## 10203 Heterosexual (straight)            Rarely
## 10204 Heterosexual (straight)         Sometimes
## 10205 Heterosexual (straight)         Sometimes
## 10206 Heterosexual (straight)            Rarely
## 10207                Bisexual  Most of the time
## 10208          Some other way         Sometimes
## 10209          Some other way  Most of the time
## 10210 Heterosexual (straight)            Rarely
## 10211 Heterosexual (straight)            Rarely
## 10212 Heterosexual (straight)         Sometimes
## 10213 Heterosexual (straight)         Sometimes
## 10214 Heterosexual (straight)            Rarely
## 10215 Heterosexual (straight)            Rarely
## 10216                Not sure  Most of the time
## 10217 Heterosexual (straight)  Most of the time
## 10218 Heterosexual (straight)  Most of the time
## 10219 Heterosexual (straight)  Most of the time
## 10220 Heterosexual (straight)            Rarely
## 10221 Heterosexual (straight)            Rarely
## 10222 Heterosexual (straight)            Rarely
## 10223 Heterosexual (straight)         Sometimes
## 10224 Heterosexual (straight)         Sometimes
## 10225 Heterosexual (straight)  Most of the time
## 10226 Heterosexual (straight)              <NA>
## 10227 Heterosexual (straight)         Sometimes
## 10228 Heterosexual (straight)             Never
## 10229 Heterosexual (straight)            Rarely
## 10230 Heterosexual (straight)             Never
## 10231 Heterosexual (straight)  Most of the time
## 10232 Heterosexual (straight)         Sometimes
## 10233                Bisexual         Sometimes
## 10234 Heterosexual (straight)             Never
## 10235 Heterosexual (straight)             Never
## 10236 Heterosexual (straight)             Never
## 10237 Heterosexual (straight)         Sometimes
## 10238 Heterosexual (straight)  Most of the time
## 10239 Heterosexual (straight)            Rarely
## 10240          Gay or lesbian  Most of the time
## 10241          Some other way         Sometimes
## 10242 Heterosexual (straight)  Most of the time
## 10243 Heterosexual (straight)         Sometimes
## 10244                Bisexual  Most of the time
## 10245 Heterosexual (straight)            Rarely
## 10246          Gay or lesbian  Most of the time
## 10247 Heterosexual (straight)  Most of the time
## 10248 Heterosexual (straight)             Never
## 10249 Heterosexual (straight)             Never
## 10250 Heterosexual (straight)             Never
## 10251 Heterosexual (straight)  Most of the time
## 10252 Heterosexual (straight)  Most of the time
## 10253                Bisexual         Sometimes
## 10254 Heterosexual (straight)  Most of the time
## 10255                Not sure  Most of the time
## 10256 Heterosexual (straight)         Sometimes
## 10257 Heterosexual (straight)            Always
## 10258                Bisexual  Most of the time
## 10259                Not sure         Sometimes
## 10260 Heterosexual (straight)            Rarely
## 10261          Some other way            Rarely
## 10262 Heterosexual (straight)  Most of the time
## 10263 Heterosexual (straight)         Sometimes
## 10264                Not sure         Sometimes
## 10265 Heterosexual (straight)         Sometimes
## 10266 Heterosexual (straight)            Rarely
## 10267 Heterosexual (straight)  Most of the time
## 10268                Bisexual         Sometimes
## 10269 Heterosexual (straight)         Sometimes
## 10270                Bisexual  Most of the time
## 10271 Heterosexual (straight)             Never
## 10272 Heterosexual (straight)         Sometimes
## 10273 Heterosexual (straight)         Sometimes
## 10274                Bisexual            Always
## 10275                Not sure  Most of the time
## 10276 Heterosexual (straight)             Never
## 10277 Heterosexual (straight)            Rarely
## 10278 Heterosexual (straight)            Rarely
## 10279 Heterosexual (straight)  Most of the time
## 10280 Heterosexual (straight)  Most of the time
## 10281                Bisexual  Most of the time
## 10282 Heterosexual (straight)             Never
## 10283 Heterosexual (straight)            Rarely
## 10284 Heterosexual (straight)         Sometimes
## 10285 Heterosexual (straight)            Rarely
## 10286 Heterosexual (straight)  Most of the time
## 10287 Heterosexual (straight)         Sometimes
## 10288 Heterosexual (straight)             Never
## 10289                Bisexual  Most of the time
## 10290 Heterosexual (straight)            Rarely
## 10291 Heterosexual (straight)            Always
## 10292 Heterosexual (straight)         Sometimes
## 10293 Heterosexual (straight)            Rarely
## 10294 Heterosexual (straight)         Sometimes
## 10295 Heterosexual (straight)            Always
## 10296 Heterosexual (straight)             Never
## 10297 Heterosexual (straight)         Sometimes
## 10298 Heterosexual (straight)            Rarely
## 10299                Bisexual            Always
## 10300 Heterosexual (straight)  Most of the time
## 10301 Heterosexual (straight)            Rarely
## 10302 Heterosexual (straight)  Most of the time
## 10303 Heterosexual (straight)         Sometimes
## 10304 Heterosexual (straight)             Never
## 10305                Not sure  Most of the time
## 10306 Heterosexual (straight)         Sometimes
## 10307 Heterosexual (straight)         Sometimes
## 10308                Not sure  Most of the time
## 10309 Heterosexual (straight)             Never
## 10310 Heterosexual (straight)  Most of the time
## 10311 Heterosexual (straight)         Sometimes
## 10312 Heterosexual (straight)             Never
## 10313 Heterosexual (straight)         Sometimes
## 10314 Heterosexual (straight)  Most of the time
## 10315 Heterosexual (straight)            Rarely
## 10316 Heterosexual (straight)            Rarely
## 10317 Heterosexual (straight)  Most of the time
## 10318 Heterosexual (straight)            Rarely
## 10319 Heterosexual (straight)             Never
## 10320 Heterosexual (straight)            Always
## 10321 Heterosexual (straight)            Rarely
## 10322 Heterosexual (straight)            Rarely
## 10323 Heterosexual (straight)             Never
## 10324          Gay or lesbian         Sometimes
## 10325 Heterosexual (straight)  Most of the time
## 10326 Heterosexual (straight)  Most of the time
## 10327 Heterosexual (straight)             Never
## 10328 Heterosexual (straight)             Never
## 10329 Heterosexual (straight)            Rarely
## 10330 Heterosexual (straight)         Sometimes
## 10331 Heterosexual (straight)  Most of the time
## 10332 Heterosexual (straight)            Rarely
## 10333 Heterosexual (straight)  Most of the time
## 10334 Heterosexual (straight)            Rarely
## 10335 Heterosexual (straight)            Rarely
## 10336 Heterosexual (straight)            Rarely
## 10337 Heterosexual (straight)         Sometimes
## 10338                Not sure            Rarely
## 10339          Some other way         Sometimes
## 10340 Heterosexual (straight)            Rarely
## 10341 Heterosexual (straight)         Sometimes
## 10342 Heterosexual (straight)         Sometimes
## 10343 Heterosexual (straight)              <NA>
## 10344 Heterosexual (straight)             Never
## 10345 Heterosexual (straight)             Never
## 10346 Heterosexual (straight)         Sometimes
## 10347          Some other way         Sometimes
## 10348 Heterosexual (straight)            Rarely
## 10349 Heterosexual (straight)         Sometimes
## 10350          Some other way  Most of the time
## 10351 Heterosexual (straight)             Never
## 10352          Gay or lesbian            Rarely
## 10353 Heterosexual (straight)         Sometimes
## 10354          Gay or lesbian            Always
## 10355 Heterosexual (straight)         Sometimes
## 10356                Not sure            Rarely
## 10357 Heterosexual (straight)             Never
## 10358 Heterosexual (straight)         Sometimes
## 10359 Heterosexual (straight)            Rarely
## 10360 Heterosexual (straight)         Sometimes
## 10361                Not sure         Sometimes
## 10362 Heterosexual (straight)             Never
## 10363                Not sure  Most of the time
## 10364 Heterosexual (straight)              <NA>
## 10365 Heterosexual (straight)             Never
## 10366 Heterosexual (straight)  Most of the time
## 10367 Heterosexual (straight)             Never
## 10368 Heterosexual (straight)            Always
## 10369 Heterosexual (straight)              <NA>
## 10370 Heterosexual (straight)             Never
## 10371          Gay or lesbian            Rarely
## 10372 Heterosexual (straight)         Sometimes
## 10373 Heterosexual (straight)             Never
## 10374 Heterosexual (straight)             Never
## 10375          Some other way              <NA>
## 10376                Not sure         Sometimes
## 10377                Not sure            Always
## 10378                Bisexual         Sometimes
## 10379                Bisexual         Sometimes
## 10380 Heterosexual (straight)             Never
## 10381 Heterosexual (straight)         Sometimes
## 10382          Some other way         Sometimes
## 10383 Heterosexual (straight)  Most of the time
## 10384 Heterosexual (straight)         Sometimes
## 10385 Heterosexual (straight)              <NA>
## 10386          Some other way  Most of the time
## 10387 Heterosexual (straight)  Most of the time
## 10388 Heterosexual (straight)  Most of the time
## 10389 Heterosexual (straight)            Rarely
## 10390          Some other way  Most of the time
## 10391                Not sure             Never
## 10392 Heterosexual (straight)            Rarely
## 10393 Heterosexual (straight)         Sometimes
## 10394 Heterosexual (straight)             Never
## 10395 Heterosexual (straight)            Rarely
## 10396 Heterosexual (straight)  Most of the time
## 10397 Heterosexual (straight)         Sometimes
## 10398 Heterosexual (straight)  Most of the time
## 10399                Bisexual  Most of the time
## 10400 Heterosexual (straight)             Never
## 10401 Heterosexual (straight)            Rarely
## 10402 Heterosexual (straight)  Most of the time
## 10403 Heterosexual (straight)            Always
## 10404 Heterosexual (straight)            Always
## 10405 Heterosexual (straight)         Sometimes
## 10406 Heterosexual (straight)         Sometimes
## 10407 Heterosexual (straight)             Never
## 10408 Heterosexual (straight)  Most of the time
## 10409 Heterosexual (straight)            Rarely
## 10410 Heterosexual (straight)              <NA>
## 10411                Bisexual         Sometimes
## 10412 Heterosexual (straight)         Sometimes
## 10413 Heterosexual (straight)         Sometimes
## 10414 Heterosexual (straight)             Never
## 10415 Heterosexual (straight)         Sometimes
## 10416 Heterosexual (straight)  Most of the time
## 10417 Heterosexual (straight)         Sometimes
## 10418 Heterosexual (straight)         Sometimes
## 10419 Heterosexual (straight)         Sometimes
## 10420 Heterosexual (straight)             Never
## 10421          Gay or lesbian  Most of the time
## 10422 Heterosexual (straight)              <NA>
## 10423 Heterosexual (straight)         Sometimes
## 10424 Heterosexual (straight)             Never
## 10425 Heterosexual (straight)         Sometimes
## 10426          Gay or lesbian  Most of the time
## 10427 Heterosexual (straight)  Most of the time
## 10428 Heterosexual (straight)         Sometimes
## 10429 Heterosexual (straight)  Most of the time
## 10430          Gay or lesbian         Sometimes
## 10431          Gay or lesbian            Always
## 10432 Heterosexual (straight)            Rarely
## 10433                Not sure  Most of the time
## 10434 Heterosexual (straight)         Sometimes
## 10435 Heterosexual (straight)              <NA>
## 10436 Heterosexual (straight)  Most of the time
## 10437 Heterosexual (straight)             Never
## 10438 Heterosexual (straight)  Most of the time
## 10439 Heterosexual (straight)         Sometimes
## 10440 Heterosexual (straight)             Never
## 10441 Heterosexual (straight)  Most of the time
## 10442 Heterosexual (straight)  Most of the time
## 10443 Heterosexual (straight)         Sometimes
## 10444 Heterosexual (straight)             Never
## 10445          Gay or lesbian         Sometimes
## 10446 Heterosexual (straight)            Always
## 10447 Heterosexual (straight)  Most of the time
## 10448 Heterosexual (straight)             Never
## 10449 Heterosexual (straight)  Most of the time
## 10450                Bisexual  Most of the time
## 10451 Heterosexual (straight)         Sometimes
## 10452 Heterosexual (straight)            Rarely
## 10453 Heterosexual (straight)            Always
## 10454 Heterosexual (straight)  Most of the time
## 10455 Heterosexual (straight)         Sometimes
## 10456 Heterosexual (straight)         Sometimes
## 10457 Heterosexual (straight)            Rarely
## 10458          Some other way         Sometimes
## 10459 Heterosexual (straight)            Always
## 10460 Heterosexual (straight)             Never
## 10461 Heterosexual (straight)            Rarely
## 10462 Heterosexual (straight)  Most of the time
## 10463                Not sure  Most of the time
## 10464 Heterosexual (straight)         Sometimes
## 10465 Heterosexual (straight)         Sometimes
## 10466 Heterosexual (straight)            Always
## 10467          Gay or lesbian         Sometimes
## 10468 Heterosexual (straight)  Most of the time
## 10469          Gay or lesbian  Most of the time
## 10470 Heterosexual (straight)              <NA>
## 10471 Heterosexual (straight)         Sometimes
## 10472 Heterosexual (straight)             Never
## 10473 Heterosexual (straight)              <NA>
## 10474 Heterosexual (straight)         Sometimes
## 10475 Heterosexual (straight)            Rarely
## 10476 Heterosexual (straight)  Most of the time
## 10477 Heterosexual (straight)         Sometimes
## 10478 Heterosexual (straight)         Sometimes
## 10479 Heterosexual (straight)             Never
## 10480 Heterosexual (straight)            Always
## 10481 Heterosexual (straight)             Never
## 10482 Heterosexual (straight)  Most of the time
## 10483 Heterosexual (straight)            Rarely
## 10484 Heterosexual (straight)         Sometimes
## 10485                Bisexual  Most of the time
## 10486 Heterosexual (straight)            Rarely
## 10487 Heterosexual (straight)         Sometimes
## 10488 Heterosexual (straight)              <NA>
## 10489                Bisexual         Sometimes
## 10490 Heterosexual (straight)  Most of the time
## 10491 Heterosexual (straight)            Rarely
## 10492 Heterosexual (straight)            Rarely
## 10493 Heterosexual (straight)             Never
## 10494                Bisexual            Always
## 10495 Heterosexual (straight)         Sometimes
## 10496 Heterosexual (straight)         Sometimes
## 10497 Heterosexual (straight)         Sometimes
## 10498 Heterosexual (straight)            Rarely
## 10499 Heterosexual (straight)             Never
## 10500                Not sure         Sometimes
## 10501 Heterosexual (straight)         Sometimes
## 10502 Heterosexual (straight)         Sometimes
## 10503 Heterosexual (straight)  Most of the time
## 10504 Heterosexual (straight)            Rarely
## 10505 Heterosexual (straight)         Sometimes
## 10506 Heterosexual (straight)         Sometimes
## 10507 Heterosexual (straight)            Rarely
## 10508 Heterosexual (straight)             Never
## 10509          Some other way         Sometimes
## 10510 Heterosexual (straight)             Never
## 10511 Heterosexual (straight)            Rarely
## 10512 Heterosexual (straight)            Always
## 10513 Heterosexual (straight)            Rarely
## 10514 Heterosexual (straight)             Never
## 10515 Heterosexual (straight)             Never
## 10516 Heterosexual (straight)             Never
## 10517 Heterosexual (straight)         Sometimes
## 10518 Heterosexual (straight)             Never
## 10519                Bisexual         Sometimes
## 10520          Gay or lesbian            Rarely
## 10521 Heterosexual (straight)             Never
## 10522 Heterosexual (straight)  Most of the time
## 10523          Gay or lesbian         Sometimes
## 10524 Heterosexual (straight)             Never
## 10525 Heterosexual (straight)            Rarely
## 10526          Gay or lesbian         Sometimes
## 10527 Heterosexual (straight)         Sometimes
## 10528 Heterosexual (straight)            Rarely
## 10529 Heterosexual (straight)  Most of the time
## 10530                Bisexual            Always
## 10531 Heterosexual (straight)         Sometimes
## 10532 Heterosexual (straight)            Rarely
## 10533 Heterosexual (straight)  Most of the time
## 10534 Heterosexual (straight)         Sometimes
## 10535 Heterosexual (straight)         Sometimes
## 10536 Heterosexual (straight)             Never
## 10537          Some other way            Always
## 10538 Heterosexual (straight)            Rarely
## 10539 Heterosexual (straight)            Rarely
## 10540                Bisexual            Always
## 10541 Heterosexual (straight)            Rarely
## 10542 Heterosexual (straight)  Most of the time
## 10543 Heterosexual (straight)  Most of the time
## 10544 Heterosexual (straight)            Always
## 10545 Heterosexual (straight)            Rarely
## 10546                Not sure             Never
## 10547 Heterosexual (straight)             Never
## 10548 Heterosexual (straight)            Rarely
## 10549 Heterosexual (straight)         Sometimes
## 10550 Heterosexual (straight)         Sometimes
## 10551 Heterosexual (straight)         Sometimes
## 10552 Heterosexual (straight)            Rarely
## 10553 Heterosexual (straight)             Never
## 10554 Heterosexual (straight)  Most of the time
## 10555 Heterosexual (straight)             Never
## 10556 Heterosexual (straight)            Rarely
## 10557 Heterosexual (straight)         Sometimes
## 10558 Heterosexual (straight)            Rarely
## 10559                Bisexual  Most of the time
## 10560 Heterosexual (straight)         Sometimes
## 10561 Heterosexual (straight)             Never
## 10562 Heterosexual (straight)            Rarely
## 10563 Heterosexual (straight)  Most of the time
## 10564 Heterosexual (straight)         Sometimes
## 10565 Heterosexual (straight)             Never
## 10566 Heterosexual (straight)            Always
## 10567 Heterosexual (straight)            Rarely
## 10568 Heterosexual (straight)            Rarely
## 10569 Heterosexual (straight)            Rarely
## 10570          Some other way            Always
## 10571 Heterosexual (straight)            Rarely
## 10572 Heterosexual (straight)  Most of the time
## 10573 Heterosexual (straight)  Most of the time
## 10574 Heterosexual (straight)         Sometimes
## 10575                Bisexual             Never
## 10576 Heterosexual (straight)         Sometimes
## 10577                Bisexual  Most of the time
## 10578 Heterosexual (straight)         Sometimes
## 10579 Heterosexual (straight)  Most of the time
## 10580 Heterosexual (straight)            Rarely
## 10581 Heterosexual (straight)             Never
## 10582 Heterosexual (straight)         Sometimes
## 10583 Heterosexual (straight)            Rarely
## 10584 Heterosexual (straight)  Most of the time
## 10585 Heterosexual (straight)            Rarely
## 10586 Heterosexual (straight)         Sometimes
## 10587                Bisexual         Sometimes
## 10588 Heterosexual (straight)         Sometimes
## 10589 Heterosexual (straight)  Most of the time
## 10590 Heterosexual (straight)             Never
## 10591                Bisexual         Sometimes
## 10592 Heterosexual (straight)             Never
## 10593                Not sure            Rarely
## 10594                Bisexual  Most of the time
## 10595 Heterosexual (straight)            Rarely
## 10596 Heterosexual (straight)  Most of the time
## 10597 Heterosexual (straight)             Never
## 10598 Heterosexual (straight)             Never
## 10599                Bisexual            Rarely
## 10600 Heterosexual (straight)         Sometimes
## 10601                Bisexual            Rarely
## 10602 Heterosexual (straight)  Most of the time
## 10603 Heterosexual (straight)         Sometimes
## 10604                Not sure         Sometimes
## 10605 Heterosexual (straight)             Never
## 10606 Heterosexual (straight)         Sometimes
## 10607                Bisexual  Most of the time
## 10608 Heterosexual (straight)         Sometimes
## 10609 Heterosexual (straight)  Most of the time
## 10610          Some other way         Sometimes
## 10611 Heterosexual (straight)            Always
## 10612 Heterosexual (straight)         Sometimes
## 10613 Heterosexual (straight)  Most of the time
## 10614 Heterosexual (straight)             Never
## 10615 Heterosexual (straight)            Rarely
## 10616 Heterosexual (straight)  Most of the time
## 10617 Heterosexual (straight)         Sometimes
## 10618 Heterosexual (straight)            Rarely
## 10619 Heterosexual (straight)             Never
## 10620 Heterosexual (straight)         Sometimes
## 10621 Heterosexual (straight)            Rarely
## 10622 Heterosexual (straight)             Never
## 10623 Heterosexual (straight)         Sometimes
## 10624 Heterosexual (straight)  Most of the time
## 10625          Some other way  Most of the time
## 10626 Heterosexual (straight)  Most of the time
## 10627 Heterosexual (straight)         Sometimes
## 10628                Bisexual             Never
## 10629 Heterosexual (straight)  Most of the time
## 10630 Heterosexual (straight)  Most of the time
## 10631 Heterosexual (straight)         Sometimes
## 10632 Heterosexual (straight)            Rarely
## 10633 Heterosexual (straight)  Most of the time
## 10634 Heterosexual (straight)             Never
## 10635 Heterosexual (straight)            Rarely
## 10636 Heterosexual (straight)         Sometimes
## 10637 Heterosexual (straight)         Sometimes
## 10638 Heterosexual (straight)            Always
## 10639 Heterosexual (straight)            Always
## 10640 Heterosexual (straight)            Rarely
## 10641                Bisexual         Sometimes
## 10642          Gay or lesbian  Most of the time
## 10643 Heterosexual (straight)            Rarely
## 10644 Heterosexual (straight)              <NA>
## 10645 Heterosexual (straight)         Sometimes
## 10646 Heterosexual (straight)             Never
## 10647 Heterosexual (straight)         Sometimes
## 10648 Heterosexual (straight)  Most of the time
## 10649 Heterosexual (straight)             Never
## 10650 Heterosexual (straight)  Most of the time
## 10651 Heterosexual (straight)            Rarely
## 10652 Heterosexual (straight)         Sometimes
## 10653 Heterosexual (straight)            Rarely
## 10654 Heterosexual (straight)            Always
## 10655 Heterosexual (straight)  Most of the time
## 10656 Heterosexual (straight)             Never
## 10657          Some other way            Always
## 10658 Heterosexual (straight)            Rarely
## 10659          Some other way            Always
## 10660 Heterosexual (straight)            Rarely
## 10661 Heterosexual (straight)         Sometimes
## 10662 Heterosexual (straight)         Sometimes
## 10663 Heterosexual (straight)  Most of the time
## 10664                Bisexual  Most of the time
## 10665 Heterosexual (straight)         Sometimes
## 10666 Heterosexual (straight)             Never
## 10667 Heterosexual (straight)            Rarely
## 10668 Heterosexual (straight)         Sometimes
## 10669 Heterosexual (straight)         Sometimes
## 10670 Heterosexual (straight)         Sometimes
## 10671 Heterosexual (straight)         Sometimes
## 10672 Heterosexual (straight)  Most of the time
## 10673 Heterosexual (straight)  Most of the time
## 10674 Heterosexual (straight)            Rarely
## 10675 Heterosexual (straight)  Most of the time
## 10676 Heterosexual (straight)         Sometimes
## 10677 Heterosexual (straight)            Rarely
## 10678 Heterosexual (straight)         Sometimes
## 10679 Heterosexual (straight)         Sometimes
## 10680 Heterosexual (straight)            Always
## 10681 Heterosexual (straight)            Always
## 10682 Heterosexual (straight)            Always
## 10683 Heterosexual (straight)         Sometimes
## 10684 Heterosexual (straight)             Never
## 10685                Not sure  Most of the time
## 10686 Heterosexual (straight)            Rarely
## 10687 Heterosexual (straight)             Never
## 10688 Heterosexual (straight)             Never
## 10689 Heterosexual (straight)             Never
## 10690 Heterosexual (straight)            Rarely
## 10691 Heterosexual (straight)         Sometimes
## 10692 Heterosexual (straight)  Most of the time
## 10693 Heterosexual (straight)            Rarely
## 10694                Bisexual            Always
## 10695 Heterosexual (straight)  Most of the time
## 10696 Heterosexual (straight)            Always
## 10697 Heterosexual (straight)            Always
## 10698          Gay or lesbian         Sometimes
## 10699 Heterosexual (straight)         Sometimes
## 10700 Heterosexual (straight)            Rarely
## 10701 Heterosexual (straight)         Sometimes
## 10702 Heterosexual (straight)             Never
## 10703                Bisexual         Sometimes
## 10704 Heterosexual (straight)  Most of the time
## 10705 Heterosexual (straight)            Always
## 10706 Heterosexual (straight)            Always
## 10707 Heterosexual (straight)            Rarely
## 10708 Heterosexual (straight)            Rarely
## 10709 Heterosexual (straight)  Most of the time
## 10710                Bisexual  Most of the time
## 10711 Heterosexual (straight)         Sometimes
## 10712 Heterosexual (straight)  Most of the time
## 10713 Heterosexual (straight)         Sometimes
## 10714 Heterosexual (straight)         Sometimes
## 10715 Heterosexual (straight)         Sometimes
## 10716 Heterosexual (straight)            Rarely
## 10717 Heterosexual (straight)            Rarely
## 10718 Heterosexual (straight)              <NA>
## 10719 Heterosexual (straight)  Most of the time
## 10720 Heterosexual (straight)            Rarely
## 10721 Heterosexual (straight)  Most of the time
## 10722 Heterosexual (straight)  Most of the time
## 10723 Heterosexual (straight)  Most of the time
## 10724 Heterosexual (straight)         Sometimes
## 10725 Heterosexual (straight)         Sometimes
## 10726 Heterosexual (straight)  Most of the time
## 10727 Heterosexual (straight)             Never
## 10728 Heterosexual (straight)         Sometimes
## 10729          Gay or lesbian            Always
## 10730                Bisexual  Most of the time
## 10731          Some other way         Sometimes
## 10732 Heterosexual (straight)            Rarely
## 10733 Heterosexual (straight)         Sometimes
## 10734 Heterosexual (straight)              <NA>
## 10735 Heterosexual (straight)         Sometimes
## 10736 Heterosexual (straight)            Rarely
## 10737 Heterosexual (straight)            Rarely
## 10738 Heterosexual (straight)  Most of the time
## 10739          Gay or lesbian         Sometimes
## 10740 Heterosexual (straight)            Rarely
## 10741          Gay or lesbian  Most of the time
## 10742 Heterosexual (straight)            Rarely
## 10743 Heterosexual (straight)            Rarely
## 10744 Heterosexual (straight)            Rarely
## 10745 Heterosexual (straight)            Rarely
## 10746 Heterosexual (straight)             Never
## 10747                Not sure         Sometimes
## 10748 Heterosexual (straight)         Sometimes
## 10749 Heterosexual (straight)         Sometimes
## 10750 Heterosexual (straight)            Rarely
## 10751 Heterosexual (straight)            Rarely
## 10752          Some other way            Rarely
## 10753 Heterosexual (straight)             Never
## 10754                Bisexual  Most of the time
## 10755          Gay or lesbian  Most of the time
## 10756 Heterosexual (straight)            Rarely
## 10757 Heterosexual (straight)         Sometimes
## 10758 Heterosexual (straight)            Rarely
## 10759 Heterosexual (straight)  Most of the time
## 10760 Heterosexual (straight)  Most of the time
## 10761 Heterosexual (straight)            Rarely
## 10762          Some other way             Never
## 10763 Heterosexual (straight)         Sometimes
## 10764 Heterosexual (straight)  Most of the time
## 10765 Heterosexual (straight)  Most of the time
## 10766 Heterosexual (straight)  Most of the time
## 10767 Heterosexual (straight)            Rarely
## 10768 Heterosexual (straight)         Sometimes
## 10769 Heterosexual (straight)            Rarely
## 10770 Heterosexual (straight)            Rarely
## 10771                Bisexual  Most of the time
## 10772 Heterosexual (straight)  Most of the time
## 10773 Heterosexual (straight)         Sometimes
## 10774                Not sure         Sometimes
## 10775 Heterosexual (straight)         Sometimes
## 10776 Heterosexual (straight)         Sometimes
## 10777 Heterosexual (straight)            Rarely
## 10778 Heterosexual (straight)         Sometimes
## 10779 Heterosexual (straight)            Rarely
## 10780 Heterosexual (straight)         Sometimes
## 10781 Heterosexual (straight)         Sometimes
## 10782 Heterosexual (straight)         Sometimes
## 10783 Heterosexual (straight)             Never
## 10784                Bisexual            Rarely
## 10785 Heterosexual (straight)             Never
## 10786 Heterosexual (straight)             Never
## 10787 Heterosexual (straight)  Most of the time
## 10788 Heterosexual (straight)         Sometimes
## 10789                Not sure  Most of the time
## 10790 Heterosexual (straight)            Rarely
## 10791 Heterosexual (straight)  Most of the time
## 10792          Some other way  Most of the time
## 10793 Heterosexual (straight)         Sometimes
## 10794 Heterosexual (straight)            Rarely
## 10795 Heterosexual (straight)         Sometimes
## 10796 Heterosexual (straight)         Sometimes
## 10797 Heterosexual (straight)            Rarely
## 10798 Heterosexual (straight)  Most of the time
## 10799 Heterosexual (straight)             Never
## 10800          Some other way            Always
## 10801 Heterosexual (straight)  Most of the time
## 10802 Heterosexual (straight)            Rarely
## 10803 Heterosexual (straight)            Rarely
## 10804                Not sure         Sometimes
## 10805                Bisexual         Sometimes
## 10806 Heterosexual (straight)             Never
## 10807 Heterosexual (straight)              <NA>
## 10808 Heterosexual (straight)  Most of the time
## 10809                Not sure         Sometimes
## 10810                Bisexual            Always
## 10811          Gay or lesbian         Sometimes
## 10812 Heterosexual (straight)             Never
## 10813 Heterosexual (straight)            Rarely
## 10814                Bisexual         Sometimes
## 10815 Heterosexual (straight)         Sometimes
## 10816 Heterosexual (straight)  Most of the time
## 10817 Heterosexual (straight)         Sometimes
## 10818                Bisexual            Always
## 10819 Heterosexual (straight)            Always
## 10820 Heterosexual (straight)              <NA>
## 10821                Bisexual  Most of the time
## 10822 Heterosexual (straight)            Rarely
## 10823                Bisexual  Most of the time
## 10824 Heterosexual (straight)         Sometimes
## 10825 Heterosexual (straight)            Rarely
## 10826 Heterosexual (straight)         Sometimes
## 10827                Bisexual              <NA>
## 10828                Bisexual            Always
## 10829          Some other way            Always
## 10830                Bisexual  Most of the time
## 10831                Bisexual         Sometimes
## 10832 Heterosexual (straight)  Most of the time
## 10833 Heterosexual (straight)         Sometimes
## 10834 Heterosexual (straight)         Sometimes
## 10835 Heterosexual (straight)            Rarely
## 10836 Heterosexual (straight)  Most of the time
## 10837 Heterosexual (straight)         Sometimes
## 10838 Heterosexual (straight)             Never
## 10839 Heterosexual (straight)  Most of the time
## 10840 Heterosexual (straight)         Sometimes
## 10841          Gay or lesbian         Sometimes
## 10842 Heterosexual (straight)  Most of the time
## 10843 Heterosexual (straight)             Never
## 10844                Bisexual         Sometimes
## 10845 Heterosexual (straight)         Sometimes
## 10846 Heterosexual (straight)              <NA>
## 10847 Heterosexual (straight)             Never
## 10848                Bisexual         Sometimes
## 10849 Heterosexual (straight)            Rarely
## 10850          Some other way            Rarely
## 10851 Heterosexual (straight)         Sometimes
## 10852 Heterosexual (straight)             Never
## 10853 Heterosexual (straight)            Always
## 10854 Heterosexual (straight)            Rarely
## 10855 Heterosexual (straight)             Never
## 10856                Bisexual            Rarely
## 10857 Heterosexual (straight)             Never
## 10858          Gay or lesbian  Most of the time
## 10859 Heterosexual (straight)  Most of the time
## 10860 Heterosexual (straight)             Never
## 10861 Heterosexual (straight)             Never
## 10862 Heterosexual (straight)             Never
## 10863 Heterosexual (straight)             Never
## 10864 Heterosexual (straight)            Rarely
## 10865 Heterosexual (straight)         Sometimes
## 10866 Heterosexual (straight)             Never
## 10867 Heterosexual (straight)             Never
## 10868          Some other way             Never
## 10869 Heterosexual (straight)             Never
## 10870 Heterosexual (straight)             Never
## 10871 Heterosexual (straight)             Never
## 10872 Heterosexual (straight)             Never
## 10873 Heterosexual (straight)         Sometimes
## 10874 Heterosexual (straight)            Rarely
## 10875 Heterosexual (straight)  Most of the time
## 10876 Heterosexual (straight)             Never
## 10877 Heterosexual (straight)             Never
## 10878 Heterosexual (straight)             Never
## 10879 Heterosexual (straight)             Never
## 10880 Heterosexual (straight)             Never
## 10881 Heterosexual (straight)             Never
## 10882 Heterosexual (straight)         Sometimes
## 10883 Heterosexual (straight)            Rarely
## 10884 Heterosexual (straight)             Never
## 10885 Heterosexual (straight)            Rarely
## 10886                Bisexual            Rarely
## 10887 Heterosexual (straight)             Never
## 10888 Heterosexual (straight)         Sometimes
## 10889 Heterosexual (straight)            Rarely
## 10890 Heterosexual (straight)             Never
## 10891                Bisexual  Most of the time
## 10892 Heterosexual (straight)  Most of the time
## 10893 Heterosexual (straight)         Sometimes
## 10894 Heterosexual (straight)         Sometimes
## 10895 Heterosexual (straight)         Sometimes
## 10896 Heterosexual (straight)         Sometimes
## 10897                Not sure  Most of the time
## 10898 Heterosexual (straight)         Sometimes
## 10899 Heterosexual (straight)            Rarely
## 10900 Heterosexual (straight)         Sometimes
## 10901 Heterosexual (straight)         Sometimes
## 10902 Heterosexual (straight)             Never
## 10903 Heterosexual (straight)             Never
## 10904 Heterosexual (straight)            Rarely
## 10905                Bisexual         Sometimes
## 10906 Heterosexual (straight)            Rarely
## 10907                Not sure             Never
## 10908 Heterosexual (straight)            Rarely
## 10909 Heterosexual (straight)         Sometimes
## 10910 Heterosexual (straight)         Sometimes
## 10911 Heterosexual (straight)             Never
## 10912 Heterosexual (straight)         Sometimes
## 10913 Heterosexual (straight)            Rarely
## 10914 Heterosexual (straight)            Rarely
## 10915 Heterosexual (straight)         Sometimes
## 10916 Heterosexual (straight)            Rarely
## 10917          Some other way            Always
## 10918 Heterosexual (straight)             Never
## 10919          Some other way  Most of the time
## 10920 Heterosexual (straight)              <NA>
## 10921                Bisexual         Sometimes
## 10922 Heterosexual (straight)  Most of the time
## 10923 Heterosexual (straight)         Sometimes
## 10924 Heterosexual (straight)         Sometimes
## 10925 Heterosexual (straight)         Sometimes
## 10926 Heterosexual (straight)  Most of the time
## 10927 Heterosexual (straight)         Sometimes
## 10928 Heterosexual (straight)  Most of the time
## 10929 Heterosexual (straight)             Never
## 10930 Heterosexual (straight)         Sometimes
## 10931 Heterosexual (straight)             Never
## 10932 Heterosexual (straight)  Most of the time
## 10933                Bisexual  Most of the time
## 10934 Heterosexual (straight)             Never
## 10935 Heterosexual (straight)         Sometimes
## 10936 Heterosexual (straight)            Rarely
## 10937 Heterosexual (straight)  Most of the time
## 10938 Heterosexual (straight)  Most of the time
## 10939 Heterosexual (straight)            Rarely
## 10940 Heterosexual (straight)             Never
## 10941 Heterosexual (straight)  Most of the time
## 10942 Heterosexual (straight)         Sometimes
## 10943 Heterosexual (straight)            Rarely
## 10944          Gay or lesbian            Always
## 10945 Heterosexual (straight)            Rarely
## 10946 Heterosexual (straight)             Never
## 10947 Heterosexual (straight)            Rarely
## 10948 Heterosexual (straight)             Never
## 10949 Heterosexual (straight)  Most of the time
## 10950 Heterosexual (straight)             Never
## 10951 Heterosexual (straight)             Never
## 10952 Heterosexual (straight)             Never
## 10953                Not sure  Most of the time
## 10954          Some other way         Sometimes
## 10955 Heterosexual (straight)  Most of the time
## 10956 Heterosexual (straight)         Sometimes
## 10957          Gay or lesbian         Sometimes
## 10958 Heterosexual (straight)            Rarely
## 10959                Bisexual         Sometimes
## 10960                Bisexual  Most of the time
## 10961 Heterosexual (straight)            Rarely
## 10962 Heterosexual (straight)             Never
## 10963 Heterosexual (straight)            Rarely
## 10964                Bisexual            Rarely
## 10965 Heterosexual (straight)         Sometimes
## 10966 Heterosexual (straight)         Sometimes
## 10967 Heterosexual (straight)            Rarely
## 10968 Heterosexual (straight)            Rarely
## 10969 Heterosexual (straight)            Rarely
## 10970 Heterosexual (straight)         Sometimes
## 10971                Bisexual  Most of the time
## 10972 Heterosexual (straight)             Never
## 10973 Heterosexual (straight)            Always
## 10974 Heterosexual (straight)            Rarely
## 10975 Heterosexual (straight)             Never
## 10976 Heterosexual (straight)             Never
## 10977 Heterosexual (straight)            Rarely
## 10978          Gay or lesbian         Sometimes
## 10979 Heterosexual (straight)         Sometimes
## 10980 Heterosexual (straight)              <NA>
## 10981 Heterosexual (straight)            Rarely
## 10982 Heterosexual (straight)  Most of the time
## 10983          Some other way             Never
## 10984 Heterosexual (straight)  Most of the time
## 10985                Not sure         Sometimes
## 10986                Not sure         Sometimes
## 10987                Bisexual  Most of the time
## 10988 Heterosexual (straight)             Never
## 10989 Heterosexual (straight)             Never
## 10990 Heterosexual (straight)         Sometimes
## 10991          Gay or lesbian            Rarely
## 10992                Bisexual         Sometimes
## 10993                Not sure         Sometimes
## 10994 Heterosexual (straight)         Sometimes
## 10995 Heterosexual (straight)         Sometimes
## 10996 Heterosexual (straight)             Never
## 10997 Heterosexual (straight)         Sometimes
## 10998 Heterosexual (straight)             Never
## 10999                Not sure         Sometimes
## 11000 Heterosexual (straight)            Rarely
## 11001 Heterosexual (straight)  Most of the time
## 11002 Heterosexual (straight)            Rarely
## 11003 Heterosexual (straight)         Sometimes
## 11004 Heterosexual (straight)  Most of the time
## 11005 Heterosexual (straight)            Rarely
## 11006 Heterosexual (straight)             Never
## 11007 Heterosexual (straight)            Rarely
## 11008 Heterosexual (straight)             Never
## 11009 Heterosexual (straight)            Rarely
## 11010 Heterosexual (straight)  Most of the time
## 11011 Heterosexual (straight)            Always
## 11012 Heterosexual (straight)             Never
## 11013 Heterosexual (straight)             Never
## 11014 Heterosexual (straight)             Never
## 11015 Heterosexual (straight)             Never
## 11016 Heterosexual (straight)             Never
## 11017 Heterosexual (straight)             Never
## 11018 Heterosexual (straight)            Rarely
## 11019 Heterosexual (straight)            Rarely
## 11020 Heterosexual (straight)  Most of the time
## 11021                Not sure            Always
## 11022                Bisexual            Always
## 11023 Heterosexual (straight)         Sometimes
## 11024 Heterosexual (straight)             Never
## 11025 Heterosexual (straight)  Most of the time
## 11026 Heterosexual (straight)            Always
## 11027 Heterosexual (straight)            Always
## 11028 Heterosexual (straight)            Always
## 11029 Heterosexual (straight)         Sometimes
## 11030 Heterosexual (straight)  Most of the time
## 11031 Heterosexual (straight)         Sometimes
## 11032 Heterosexual (straight)            Rarely
## 11033 Heterosexual (straight)            Rarely
## 11034 Heterosexual (straight)             Never
## 11035 Heterosexual (straight)         Sometimes
## 11036 Heterosexual (straight)             Never
## 11037                Bisexual            Always
## 11038 Heterosexual (straight)         Sometimes
## 11039 Heterosexual (straight)            Rarely
## 11040 Heterosexual (straight)            Rarely
## 11041 Heterosexual (straight)            Rarely
## 11042 Heterosexual (straight)         Sometimes
## 11043 Heterosexual (straight)             Never
## 11044 Heterosexual (straight)             Never
## 11045 Heterosexual (straight)  Most of the time
## 11046 Heterosexual (straight)         Sometimes
## 11047          Gay or lesbian             Never
## 11048 Heterosexual (straight)            Rarely
## 11049 Heterosexual (straight)         Sometimes
## 11050 Heterosexual (straight)  Most of the time
## 11051 Heterosexual (straight)         Sometimes
## 11052 Heterosexual (straight)            Rarely
## 11053 Heterosexual (straight)  Most of the time
## 11054 Heterosexual (straight)         Sometimes
## 11055 Heterosexual (straight)            Always
## 11056 Heterosexual (straight)         Sometimes
## 11057 Heterosexual (straight)         Sometimes
## 11058 Heterosexual (straight)             Never
## 11059                Not sure              <NA>
## 11060 Heterosexual (straight)         Sometimes
## 11061 Heterosexual (straight)         Sometimes
## 11062 Heterosexual (straight)         Sometimes
## 11063 Heterosexual (straight)         Sometimes
## 11064                Bisexual            Rarely
## 11065 Heterosexual (straight)  Most of the time
## 11066 Heterosexual (straight)         Sometimes
## 11067 Heterosexual (straight)         Sometimes
## 11068 Heterosexual (straight)  Most of the time
## 11069 Heterosexual (straight)            Rarely
## 11070 Heterosexual (straight)         Sometimes
## 11071 Heterosexual (straight)             Never
## 11072                Not sure             Never
## 11073 Heterosexual (straight)            Rarely
## 11074 Heterosexual (straight)            Rarely
## 11075          Some other way             Never
## 11076 Heterosexual (straight)            Always
## 11077 Heterosexual (straight)         Sometimes
## 11078          Gay or lesbian            Rarely
## 11079                Bisexual  Most of the time
## 11080          Some other way            Always
## 11081 Heterosexual (straight)  Most of the time
## 11082                Not sure            Always
## 11083 Heterosexual (straight)            Rarely
## 11084 Heterosexual (straight)         Sometimes
## 11085 Heterosexual (straight)         Sometimes
## 11086 Heterosexual (straight)             Never
## 11087          Gay or lesbian         Sometimes
## 11088 Heterosexual (straight)         Sometimes
## 11089 Heterosexual (straight)            Rarely
## 11090 Heterosexual (straight)            Rarely
## 11091 Heterosexual (straight)            Rarely
## 11092 Heterosexual (straight)  Most of the time
## 11093 Heterosexual (straight)            Rarely
## 11094 Heterosexual (straight)  Most of the time
## 11095 Heterosexual (straight)            Rarely
## 11096                Bisexual         Sometimes
## 11097 Heterosexual (straight)  Most of the time
## 11098                Not sure         Sometimes
## 11099 Heterosexual (straight)            Rarely
## 11100 Heterosexual (straight)  Most of the time
## 11101 Heterosexual (straight)            Always
## 11102 Heterosexual (straight)             Never
## 11103 Heterosexual (straight)             Never
## 11104 Heterosexual (straight)            Always
## 11105 Heterosexual (straight)         Sometimes
## 11106          Gay or lesbian  Most of the time
## 11107 Heterosexual (straight)             Never
## 11108 Heterosexual (straight)             Never
## 11109 Heterosexual (straight)             Never
## 11110 Heterosexual (straight)             Never
## 11111 Heterosexual (straight)            Rarely
## 11112 Heterosexual (straight)             Never
## 11113                Not sure            Rarely
## 11114 Heterosexual (straight)  Most of the time
## 11115                Bisexual         Sometimes
## 11116 Heterosexual (straight)         Sometimes
## 11117                Bisexual  Most of the time
## 11118                Bisexual         Sometimes
## 11119                Not sure            Always
## 11120 Heterosexual (straight)         Sometimes
## 11121 Heterosexual (straight)         Sometimes
## 11122                Bisexual         Sometimes
## 11123 Heterosexual (straight)            Rarely
## 11124 Heterosexual (straight)  Most of the time
## 11125 Heterosexual (straight)             Never
## 11126 Heterosexual (straight)         Sometimes
## 11127 Heterosexual (straight)            Rarely
## 11128 Heterosexual (straight)         Sometimes
## 11129 Heterosexual (straight)             Never
## 11130 Heterosexual (straight)  Most of the time
## 11131                Bisexual  Most of the time
## 11132 Heterosexual (straight)            Always
## 11133 Heterosexual (straight)         Sometimes
## 11134 Heterosexual (straight)         Sometimes
## 11135 Heterosexual (straight)            Rarely
## 11136 Heterosexual (straight)             Never
## 11137 Heterosexual (straight)         Sometimes
## 11138 Heterosexual (straight)  Most of the time
## 11139 Heterosexual (straight)         Sometimes
## 11140 Heterosexual (straight)              <NA>
## 11141 Heterosexual (straight)             Never
## 11142 Heterosexual (straight)  Most of the time
## 11143 Heterosexual (straight)             Never
## 11144 Heterosexual (straight)              <NA>
## 11145                Not sure         Sometimes
## 11146 Heterosexual (straight)            Rarely
## 11147 Heterosexual (straight)  Most of the time
## 11148 Heterosexual (straight)         Sometimes
## 11149          Gay or lesbian  Most of the time
## 11150          Gay or lesbian         Sometimes
## 11151 Heterosexual (straight)            Rarely
## 11152 Heterosexual (straight)             Never
## 11153 Heterosexual (straight)            Rarely
## 11154 Heterosexual (straight)         Sometimes
## 11155                Not sure         Sometimes
## 11156 Heterosexual (straight)             Never
## 11157 Heterosexual (straight)             Never
## 11158 Heterosexual (straight)  Most of the time
## 11159 Heterosexual (straight)         Sometimes
## 11160 Heterosexual (straight)             Never
## 11161 Heterosexual (straight)         Sometimes
## 11162          Gay or lesbian  Most of the time
## 11163 Heterosexual (straight)             Never
## 11164 Heterosexual (straight)             Never
## 11165 Heterosexual (straight)            Rarely
## 11166 Heterosexual (straight)         Sometimes
## 11167 Heterosexual (straight)         Sometimes
## 11168 Heterosexual (straight)         Sometimes
## 11169 Heterosexual (straight)            Rarely
## 11170 Heterosexual (straight)         Sometimes
## 11171 Heterosexual (straight)         Sometimes
## 11172 Heterosexual (straight)         Sometimes
## 11173 Heterosexual (straight)              <NA>
## 11174 Heterosexual (straight)         Sometimes
## 11175 Heterosexual (straight)             Never
## 11176 Heterosexual (straight)         Sometimes
## 11177 Heterosexual (straight)            Rarely
## 11178 Heterosexual (straight)         Sometimes
## 11179 Heterosexual (straight)             Never
## 11180          Gay or lesbian         Sometimes
## 11181 Heterosexual (straight)             Never
## 11182 Heterosexual (straight)         Sometimes
## 11183                Bisexual              <NA>
## 11184                Bisexual            Rarely
## 11185 Heterosexual (straight)         Sometimes
## 11186 Heterosexual (straight)         Sometimes
## 11187 Heterosexual (straight)             Never
## 11188                Not sure         Sometimes
## 11189 Heterosexual (straight)         Sometimes
## 11190 Heterosexual (straight)              <NA>
## 11191 Heterosexual (straight)              <NA>
## 11192 Heterosexual (straight)              <NA>
## 11193 Heterosexual (straight)             Never
## 11194 Heterosexual (straight)  Most of the time
## 11195 Heterosexual (straight)              <NA>
## 11196 Heterosexual (straight)  Most of the time
## 11197 Heterosexual (straight)             Never
## 11198 Heterosexual (straight)             Never
## 11199                Bisexual            Rarely
## 11200                Bisexual            Always
## 11201 Heterosexual (straight)            Rarely
## 11202 Heterosexual (straight)             Never
## 11203 Heterosexual (straight)            Rarely
## 11204 Heterosexual (straight)             Never
## 11205 Heterosexual (straight)            Always
## 11206 Heterosexual (straight)  Most of the time
## 11207 Heterosexual (straight)            Always
## 11208 Heterosexual (straight)            Always
## 11209 Heterosexual (straight)  Most of the time
## 11210 Heterosexual (straight)              <NA>
## 11211 Heterosexual (straight)              <NA>
## 11212 Heterosexual (straight)              <NA>
## 11213 Heterosexual (straight)              <NA>
## 11214 Heterosexual (straight)              <NA>
## 11215 Heterosexual (straight)              <NA>
## 11216          Gay or lesbian         Sometimes
## 11217 Heterosexual (straight)            Rarely
## 11218 Heterosexual (straight)             Never
## 11219 Heterosexual (straight)         Sometimes
## 11220 Heterosexual (straight)            Always
## 11221          Some other way         Sometimes
## 11222 Heterosexual (straight)            Rarely
## 11223 Heterosexual (straight)             Never
## 11224 Heterosexual (straight)              <NA>
## 11225 Heterosexual (straight)            Rarely
## 11226                Not sure  Most of the time
## 11227 Heterosexual (straight)         Sometimes
## 11228 Heterosexual (straight)            Rarely
## 11229                Bisexual         Sometimes
## 11230          Gay or lesbian            Always
## 11231 Heterosexual (straight)         Sometimes
## 11232 Heterosexual (straight)            Rarely
## 11233 Heterosexual (straight)             Never
## 11234 Heterosexual (straight)            Rarely
## 11235                Not sure            Rarely
## 11236 Heterosexual (straight)              <NA>
## 11237 Heterosexual (straight)  Most of the time
## 11238          Some other way         Sometimes
## 11239 Heterosexual (straight)         Sometimes
## 11240 Heterosexual (straight)            Rarely
## 11241 Heterosexual (straight)            Rarely
## 11242 Heterosexual (straight)            Rarely
## 11243          Gay or lesbian             Never
## 11244 Heterosexual (straight)         Sometimes
## 11245 Heterosexual (straight)              <NA>
## 11246          Gay or lesbian            Rarely
## 11247 Heterosexual (straight)             Never
## 11248          Gay or lesbian             Never
## 11249 Heterosexual (straight)             Never
## 11250                Bisexual              <NA>
## 11251 Heterosexual (straight)             Never
## 11252 Heterosexual (straight)            Rarely
## 11253          Gay or lesbian              <NA>
## 11254          Gay or lesbian  Most of the time
## 11255 Heterosexual (straight)         Sometimes
## 11256 Heterosexual (straight)            Rarely
## 11257 Heterosexual (straight)             Never
## 11258 Heterosexual (straight)             Never
## 11259 Heterosexual (straight)         Sometimes
## 11260 Heterosexual (straight)            Rarely
## 11261                Bisexual         Sometimes
## 11262 Heterosexual (straight)             Never
## 11263 Heterosexual (straight)            Rarely
## 11264 Heterosexual (straight)         Sometimes
## 11265 Heterosexual (straight)         Sometimes
## 11266 Heterosexual (straight)            Rarely
## 11267 Heterosexual (straight)         Sometimes
## 11268 Heterosexual (straight)            Rarely
## 11269                Bisexual         Sometimes
## 11270                Bisexual         Sometimes
## 11271 Heterosexual (straight)              <NA>
## 11272 Heterosexual (straight)  Most of the time
## 11273 Heterosexual (straight)         Sometimes
## 11274 Heterosexual (straight)             Never
## 11275 Heterosexual (straight)         Sometimes
## 11276 Heterosexual (straight)             Never
## 11277                Bisexual         Sometimes
## 11278 Heterosexual (straight)             Never
## 11279          Gay or lesbian             Never
## 11280 Heterosexual (straight)         Sometimes
## 11281 Heterosexual (straight)         Sometimes
## 11282 Heterosexual (straight)         Sometimes
## 11283 Heterosexual (straight)            Rarely
## 11284 Heterosexual (straight)            Rarely
## 11285                Bisexual         Sometimes
## 11286 Heterosexual (straight)         Sometimes
## 11287 Heterosexual (straight)             Never
## 11288 Heterosexual (straight)            Rarely
## 11289          Gay or lesbian             Never
## 11290                Bisexual         Sometimes
## 11291 Heterosexual (straight)         Sometimes
## 11292                Not sure  Most of the time
## 11293 Heterosexual (straight)            Rarely
## 11294                Bisexual            Rarely
## 11295 Heterosexual (straight)             Never
## 11296 Heterosexual (straight)             Never
## 11297          Gay or lesbian  Most of the time
## 11298 Heterosexual (straight)             Never
## 11299          Gay or lesbian         Sometimes
## 11300 Heterosexual (straight)             Never
## 11301 Heterosexual (straight)         Sometimes
## 11302 Heterosexual (straight)            Rarely
## 11303 Heterosexual (straight)            Rarely
## 11304          Some other way         Sometimes
## 11305 Heterosexual (straight)  Most of the time
## 11306 Heterosexual (straight)            Rarely
## 11307 Heterosexual (straight)             Never
## 11308          Some other way         Sometimes
## 11309          Some other way             Never
## 11310          Some other way             Never
## 11311 Heterosexual (straight)         Sometimes
## 11312          Some other way  Most of the time
## 11313 Heterosexual (straight)             Never
## 11314          Gay or lesbian             Never
## 11315          Gay or lesbian         Sometimes
## 11316          Gay or lesbian  Most of the time
## 11317 Heterosexual (straight)             Never
## 11318 Heterosexual (straight)            Rarely
## 11319          Gay or lesbian            Rarely
## 11320 Heterosexual (straight)            Rarely
## 11321 Heterosexual (straight)            Rarely
## 11322                Not sure         Sometimes
## 11323          Some other way         Sometimes
## 11324 Heterosexual (straight)             Never
## 11325 Heterosexual (straight)  Most of the time
## 11326 Heterosexual (straight)         Sometimes
## 11327          Gay or lesbian            Rarely
## 11328                Bisexual         Sometimes
## 11329          Some other way            Always
## 11330                Bisexual  Most of the time
## 11331 Heterosexual (straight)             Never
## 11332          Some other way  Most of the time
## 11333 Heterosexual (straight)             Never
## 11334 Heterosexual (straight)             Never
## 11335                Not sure         Sometimes
## 11336 Heterosexual (straight)         Sometimes
## 11337                Bisexual            Rarely
## 11338 Heterosexual (straight)            Rarely
## 11339 Heterosexual (straight)            Rarely
## 11340 Heterosexual (straight)  Most of the time
## 11341                Bisexual         Sometimes
## 11342 Heterosexual (straight)  Most of the time
## 11343 Heterosexual (straight)         Sometimes
## 11344 Heterosexual (straight)         Sometimes
## 11345 Heterosexual (straight)         Sometimes
## 11346          Some other way  Most of the time
## 11347 Heterosexual (straight)            Rarely
## 11348 Heterosexual (straight)  Most of the time
## 11349 Heterosexual (straight)             Never
## 11350                Bisexual             Never
## 11351 Heterosexual (straight)         Sometimes
## 11352                Not sure         Sometimes
## 11353 Heterosexual (straight)            Rarely
## 11354 Heterosexual (straight)         Sometimes
## 11355                Not sure         Sometimes
## 11356 Heterosexual (straight)            Rarely
## 11357 Heterosexual (straight)             Never
## 11358 Heterosexual (straight)         Sometimes
## 11359 Heterosexual (straight)  Most of the time
## 11360                Bisexual  Most of the time
## 11361 Heterosexual (straight)             Never
## 11362 Heterosexual (straight)             Never
## 11363          Gay or lesbian  Most of the time
## 11364 Heterosexual (straight)         Sometimes
## 11365 Heterosexual (straight)  Most of the time
## 11366 Heterosexual (straight)             Never
## 11367                Bisexual         Sometimes
## 11368 Heterosexual (straight)             Never
## 11369          Some other way  Most of the time
## 11370 Heterosexual (straight)  Most of the time
## 11371 Heterosexual (straight)            Always
## 11372 Heterosexual (straight)            Always
## 11373 Heterosexual (straight)             Never
## 11374 Heterosexual (straight)  Most of the time
## 11375 Heterosexual (straight)            Rarely
## 11376 Heterosexual (straight)             Never
## 11377 Heterosexual (straight)             Never
## 11378 Heterosexual (straight)             Never
## 11379 Heterosexual (straight)  Most of the time
## 11380 Heterosexual (straight)         Sometimes
## 11381          Some other way         Sometimes
## 11382          Gay or lesbian         Sometimes
## 11383                Bisexual         Sometimes
## 11384                Not sure            Rarely
## 11385                Bisexual         Sometimes
## 11386                Bisexual            Always
## 11387 Heterosexual (straight)            Rarely
## 11388 Heterosexual (straight)  Most of the time
## 11389 Heterosexual (straight)         Sometimes
## 11390 Heterosexual (straight)         Sometimes
## 11391 Heterosexual (straight)            Rarely
## 11392                Not sure         Sometimes
## 11393 Heterosexual (straight)              <NA>
## 11394          Some other way            Rarely
## 11395 Heterosexual (straight)         Sometimes
## 11396 Heterosexual (straight)  Most of the time
## 11397 Heterosexual (straight)  Most of the time
## 11398          Gay or lesbian         Sometimes
## 11399 Heterosexual (straight)         Sometimes
## 11400          Some other way  Most of the time
## 11401 Heterosexual (straight)         Sometimes
## 11402          Gay or lesbian         Sometimes
## 11403 Heterosexual (straight)             Never
## 11404 Heterosexual (straight)             Never
## 11405 Heterosexual (straight)  Most of the time
## 11406 Heterosexual (straight)  Most of the time
## 11407                Bisexual  Most of the time
## 11408 Heterosexual (straight)            Rarely
## 11409 Heterosexual (straight)         Sometimes
## 11410                Bisexual         Sometimes
## 11411 Heterosexual (straight)         Sometimes
## 11412                Bisexual             Never
## 11413                Not sure         Sometimes
## 11414 Heterosexual (straight)  Most of the time
## 11415 Heterosexual (straight)         Sometimes
## 11416 Heterosexual (straight)  Most of the time
## 11417 Heterosexual (straight)             Never
## 11418                Bisexual            Always
## 11419 Heterosexual (straight)         Sometimes
## 11420 Heterosexual (straight)         Sometimes
## 11421          Some other way         Sometimes
## 11422                Bisexual            Always
## 11423 Heterosexual (straight)            Rarely
## 11424 Heterosexual (straight)            Always
## 11425 Heterosexual (straight)            Always
## 11426 Heterosexual (straight)             Never
## 11427          Gay or lesbian         Sometimes
## 11428          Gay or lesbian  Most of the time
## 11429 Heterosexual (straight)            Rarely
## 11430 Heterosexual (straight)              <NA>
## 11431                Bisexual  Most of the time
## 11432 Heterosexual (straight)            Rarely
## 11433 Heterosexual (straight)         Sometimes
## 11434 Heterosexual (straight)  Most of the time
## 11435 Heterosexual (straight)         Sometimes
## 11436 Heterosexual (straight)            Rarely
## 11437 Heterosexual (straight)            Rarely
## 11438                Bisexual  Most of the time
## 11439 Heterosexual (straight)              <NA>
## 11440 Heterosexual (straight)            Rarely
## 11441 Heterosexual (straight)  Most of the time
## 11442 Heterosexual (straight)             Never
## 11443          Gay or lesbian  Most of the time
## 11444 Heterosexual (straight)  Most of the time
## 11445 Heterosexual (straight)  Most of the time
## 11446                Not sure         Sometimes
## 11447 Heterosexual (straight)            Rarely
## 11448 Heterosexual (straight)             Never
## 11449 Heterosexual (straight)            Rarely
## 11450 Heterosexual (straight)            Always
## 11451 Heterosexual (straight)             Never
## 11452 Heterosexual (straight)         Sometimes
## 11453                Bisexual              <NA>
## 11454                Bisexual  Most of the time
## 11455 Heterosexual (straight)            Always
## 11456 Heterosexual (straight)  Most of the time
## 11457 Heterosexual (straight)         Sometimes
## 11458 Heterosexual (straight)            Always
## 11459 Heterosexual (straight)            Rarely
## 11460                Not sure         Sometimes
## 11461                Not sure  Most of the time
## 11462 Heterosexual (straight)            Rarely
## 11463                Not sure             Never
## 11464                Bisexual  Most of the time
## 11465 Heterosexual (straight)            Rarely
## 11466 Heterosexual (straight)         Sometimes
## 11467                Bisexual            Rarely
## 11468 Heterosexual (straight)             Never
## 11469 Heterosexual (straight)             Never
## 11470 Heterosexual (straight)            Always
## 11471          Gay or lesbian  Most of the time
## 11472 Heterosexual (straight)            Always
## 11473 Heterosexual (straight)  Most of the time
## 11474 Heterosexual (straight)         Sometimes
## 11475 Heterosexual (straight)         Sometimes
## 11476 Heterosexual (straight)  Most of the time
## 11477 Heterosexual (straight)         Sometimes
## 11478                Bisexual         Sometimes
## 11479 Heterosexual (straight)            Rarely
## 11480 Heterosexual (straight)         Sometimes
## 11481 Heterosexual (straight)  Most of the time
## 11482 Heterosexual (straight)            Rarely
## 11483 Heterosexual (straight)  Most of the time
## 11484                Not sure         Sometimes
## 11485 Heterosexual (straight)         Sometimes
## 11486 Heterosexual (straight)         Sometimes
## 11487          Some other way            Rarely
## 11488 Heterosexual (straight)         Sometimes
## 11489 Heterosexual (straight)            Rarely
## 11490          Gay or lesbian            Always
## 11491                Not sure             Never
## 11492                Not sure            Always
## 11493                Bisexual  Most of the time
## 11494          Gay or lesbian            Always
## 11495 Heterosexual (straight)         Sometimes
## 11496 Heterosexual (straight)            Rarely
## 11497 Heterosexual (straight)         Sometimes
## 11498 Heterosexual (straight)            Rarely
## 11499                Not sure            Rarely
## 11500 Heterosexual (straight)         Sometimes
## 11501 Heterosexual (straight)  Most of the time
## 11502 Heterosexual (straight)         Sometimes
## 11503 Heterosexual (straight)             Never
## 11504 Heterosexual (straight)         Sometimes
## 11505 Heterosexual (straight)            Rarely
## 11506 Heterosexual (straight)  Most of the time
## 11507 Heterosexual (straight)  Most of the time
## 11508 Heterosexual (straight)         Sometimes
## 11509                Bisexual  Most of the time
## 11510 Heterosexual (straight)             Never
## 11511 Heterosexual (straight)            Rarely
## 11512 Heterosexual (straight)         Sometimes
## 11513                Bisexual  Most of the time
## 11514 Heterosexual (straight)         Sometimes
## 11515 Heterosexual (straight)              <NA>
## 11516 Heterosexual (straight)         Sometimes
## 11517          Some other way            Always
## 11518 Heterosexual (straight)         Sometimes
## 11519                Not sure            Rarely
## 11520 Heterosexual (straight)             Never
## 11521                Bisexual  Most of the time
## 11522 Heterosexual (straight)         Sometimes
## 11523 Heterosexual (straight)            Rarely
## 11524 Heterosexual (straight)            Rarely
## 11525          Some other way            Rarely
## 11526 Heterosexual (straight)            Rarely
## 11527 Heterosexual (straight)         Sometimes
## 11528 Heterosexual (straight)         Sometimes
## 11529          Gay or lesbian            Always
## 11530 Heterosexual (straight)             Never
## 11531 Heterosexual (straight)            Rarely
## 11532 Heterosexual (straight)             Never
## 11533 Heterosexual (straight)         Sometimes
## 11534 Heterosexual (straight)         Sometimes
## 11535 Heterosexual (straight)  Most of the time
## 11536 Heterosexual (straight)         Sometimes
## 11537 Heterosexual (straight)             Never
## 11538          Some other way  Most of the time
## 11539                Bisexual         Sometimes
## 11540          Some other way         Sometimes
## 11541 Heterosexual (straight)  Most of the time
## 11542 Heterosexual (straight)         Sometimes
## 11543 Heterosexual (straight)         Sometimes
## 11544                Bisexual         Sometimes
## 11545 Heterosexual (straight)             Never
## 11546 Heterosexual (straight)            Always
## 11547 Heterosexual (straight)            Rarely
## 11548 Heterosexual (straight)             Never
## 11549 Heterosexual (straight)         Sometimes
## 11550                Bisexual            Always
## 11551                Bisexual  Most of the time
## 11552          Some other way            Always
## 11553 Heterosexual (straight)         Sometimes
## 11554 Heterosexual (straight)  Most of the time
## 11555 Heterosexual (straight)            Rarely
## 11556          Some other way         Sometimes
## 11557          Gay or lesbian            Rarely
## 11558 Heterosexual (straight)         Sometimes
## 11559 Heterosexual (straight)            Rarely
## 11560 Heterosexual (straight)             Never
## 11561 Heterosexual (straight)  Most of the time
## 11562 Heterosexual (straight)            Rarely
## 11563 Heterosexual (straight)         Sometimes
## 11564                Bisexual         Sometimes
## 11565                Not sure  Most of the time
## 11566 Heterosexual (straight)             Never
## 11567                Bisexual  Most of the time
## 11568 Heterosexual (straight)            Rarely
## 11569 Heterosexual (straight)            Rarely
## 11570                Bisexual  Most of the time
## 11571          Some other way  Most of the time
## 11572 Heterosexual (straight)  Most of the time
## 11573          Gay or lesbian  Most of the time
## 11574 Heterosexual (straight)         Sometimes
## 11575                Bisexual  Most of the time
## 11576 Heterosexual (straight)             Never
## 11577 Heterosexual (straight)            Rarely
## 11578 Heterosexual (straight)         Sometimes
## 11579 Heterosexual (straight)            Rarely
## 11580          Gay or lesbian            Always
## 11581 Heterosexual (straight)            Rarely
## 11582 Heterosexual (straight)            Rarely
## 11583 Heterosexual (straight)         Sometimes
## 11584 Heterosexual (straight)             Never
## 11585 Heterosexual (straight)             Never
## 11586                Bisexual         Sometimes
## 11587 Heterosexual (straight)            Rarely
## 11588 Heterosexual (straight)            Rarely
## 11589 Heterosexual (straight)         Sometimes
## 11590 Heterosexual (straight)            Always
## 11591 Heterosexual (straight)            Rarely
## 11592 Heterosexual (straight)             Never
## 11593 Heterosexual (straight)            Rarely
## 11594 Heterosexual (straight)              <NA>
## 11595 Heterosexual (straight)         Sometimes
## 11596 Heterosexual (straight)  Most of the time
## 11597 Heterosexual (straight)              <NA>
## 11598 Heterosexual (straight)             Never
## 11599 Heterosexual (straight)             Never
## 11600 Heterosexual (straight)         Sometimes
## 11601 Heterosexual (straight)         Sometimes
## 11602 Heterosexual (straight)            Rarely
## 11603 Heterosexual (straight)         Sometimes
## 11604 Heterosexual (straight)         Sometimes
## 11605                Not sure         Sometimes
## 11606 Heterosexual (straight)         Sometimes
## 11607 Heterosexual (straight)            Rarely
## 11608 Heterosexual (straight)             Never
## 11609 Heterosexual (straight)            Rarely
## 11610 Heterosexual (straight)             Never
## 11611 Heterosexual (straight)            Rarely
## 11612 Heterosexual (straight)         Sometimes
## 11613                Bisexual  Most of the time
## 11614 Heterosexual (straight)             Never
## 11615 Heterosexual (straight)              <NA>
## 11616 Heterosexual (straight)             Never
## 11617 Heterosexual (straight)         Sometimes
## 11618 Heterosexual (straight)         Sometimes
## 11619 Heterosexual (straight)         Sometimes
## 11620 Heterosexual (straight)         Sometimes
## 11621 Heterosexual (straight)             Never
## 11622 Heterosexual (straight)            Rarely
## 11623 Heterosexual (straight)            Rarely
## 11624 Heterosexual (straight)              <NA>
## 11625 Heterosexual (straight)  Most of the time
## 11626 Heterosexual (straight)            Rarely
## 11627 Heterosexual (straight)  Most of the time
## 11628                Bisexual         Sometimes
## 11629 Heterosexual (straight)            Rarely
## 11630 Heterosexual (straight)            Always
## 11631 Heterosexual (straight)             Never
## 11632 Heterosexual (straight)            Always
## 11633 Heterosexual (straight)            Rarely
## 11634 Heterosexual (straight)            Rarely
## 11635 Heterosexual (straight)            Rarely
## 11636 Heterosexual (straight)             Never
## 11637 Heterosexual (straight)            Rarely
## 11638 Heterosexual (straight)             Never
## 11639 Heterosexual (straight)  Most of the time
## 11640 Heterosexual (straight)  Most of the time
## 11641 Heterosexual (straight)         Sometimes
## 11642 Heterosexual (straight)             Never
## 11643 Heterosexual (straight)            Rarely
## 11644 Heterosexual (straight)            Rarely
## 11645 Heterosexual (straight)            Rarely
## 11646                Bisexual            Always
## 11647                Bisexual            Rarely
## 11648                Bisexual            Always
## 11649 Heterosexual (straight)            Rarely
## 11650                Not sure              <NA>
## 11651                Bisexual  Most of the time
## 11652                Bisexual  Most of the time
## 11653 Heterosexual (straight)            Rarely
## 11654                Not sure             Never
## 11655                Bisexual         Sometimes
## 11656 Heterosexual (straight)         Sometimes
## 11657 Heterosexual (straight)         Sometimes
## 11658 Heterosexual (straight)             Never
## 11659 Heterosexual (straight)         Sometimes
## 11660 Heterosexual (straight)  Most of the time
## 11661 Heterosexual (straight)             Never
## 11662                Bisexual  Most of the time
## 11663          Gay or lesbian             Never
## 11664 Heterosexual (straight)  Most of the time
## 11665 Heterosexual (straight)             Never
## 11666 Heterosexual (straight)  Most of the time
## 11667 Heterosexual (straight)         Sometimes
## 11668 Heterosexual (straight)            Always
## 11669                Bisexual         Sometimes
## 11670 Heterosexual (straight)         Sometimes
## 11671                Bisexual         Sometimes
## 11672 Heterosexual (straight)         Sometimes
## 11673          Some other way            Always
## 11674          Gay or lesbian            Always
## 11675 Heterosexual (straight)         Sometimes
## 11676 Heterosexual (straight)            Rarely
## 11677 Heterosexual (straight)              <NA>
## 11678 Heterosexual (straight)            Always
## 11679 Heterosexual (straight)            Rarely
## 11680 Heterosexual (straight)         Sometimes
## 11681 Heterosexual (straight)            Rarely
## 11682                Bisexual         Sometimes
## 11683 Heterosexual (straight)             Never
## 11684 Heterosexual (straight)  Most of the time
## 11685          Some other way            Always
## 11686 Heterosexual (straight)            Rarely
## 11687 Heterosexual (straight)             Never
## 11688 Heterosexual (straight)              <NA>
## 11689 Heterosexual (straight)            Rarely
## 11690                Bisexual            Always
## 11691 Heterosexual (straight)  Most of the time
## 11692 Heterosexual (straight)  Most of the time
## 11693 Heterosexual (straight)            Rarely
## 11694                Bisexual         Sometimes
## 11695 Heterosexual (straight)             Never
## 11696 Heterosexual (straight)         Sometimes
## 11697 Heterosexual (straight)         Sometimes
## 11698          Gay or lesbian            Always
## 11699 Heterosexual (straight)         Sometimes
## 11700 Heterosexual (straight)            Always
## 11701 Heterosexual (straight)            Rarely
## 11702 Heterosexual (straight)             Never
## 11703 Heterosexual (straight)             Never
## 11704 Heterosexual (straight)         Sometimes
## 11705 Heterosexual (straight)         Sometimes
## 11706                Not sure            Always
## 11707          Some other way  Most of the time
## 11708 Heterosexual (straight)            Rarely
## 11709 Heterosexual (straight)         Sometimes
## 11710 Heterosexual (straight)         Sometimes
## 11711 Heterosexual (straight)         Sometimes
## 11712                Not sure            Rarely
## 11713                Bisexual  Most of the time
## 11714          Some other way  Most of the time
## 11715 Heterosexual (straight)            Rarely
## 11716          Some other way            Always
## 11717 Heterosexual (straight)            Rarely
## 11718 Heterosexual (straight)         Sometimes
## 11719 Heterosexual (straight)            Always
## 11720 Heterosexual (straight)            Rarely
## 11721          Gay or lesbian            Always
## 11722 Heterosexual (straight)         Sometimes
## 11723 Heterosexual (straight)             Never
## 11724 Heterosexual (straight)         Sometimes
## 11725                Bisexual            Always
## 11726          Gay or lesbian         Sometimes
## 11727 Heterosexual (straight)  Most of the time
## 11728 Heterosexual (straight)         Sometimes
## 11729 Heterosexual (straight)         Sometimes
## 11730 Heterosexual (straight)  Most of the time
## 11731 Heterosexual (straight)         Sometimes
## 11732 Heterosexual (straight)            Rarely
## 11733 Heterosexual (straight)            Rarely
## 11734 Heterosexual (straight)            Rarely
## 11735 Heterosexual (straight)             Never
## 11736 Heterosexual (straight)  Most of the time
## 11737 Heterosexual (straight)            Always
## 11738 Heterosexual (straight)            Rarely
## 11739 Heterosexual (straight)            Rarely
## 11740 Heterosexual (straight)             Never
## 11741 Heterosexual (straight)  Most of the time
## 11742 Heterosexual (straight)            Always
## 11743 Heterosexual (straight)            Rarely
## 11744 Heterosexual (straight)         Sometimes
## 11745          Some other way            Always
## 11746                Bisexual         Sometimes
## 11747                Bisexual            Always
## 11748                Bisexual            Always
## 11749 Heterosexual (straight)             Never
## 11750          Some other way            Rarely
## 11751          Some other way         Sometimes
## 11752 Heterosexual (straight)            Rarely
## 11753 Heterosexual (straight)         Sometimes
## 11754 Heterosexual (straight)         Sometimes
## 11755 Heterosexual (straight)            Always
## 11756          Gay or lesbian  Most of the time
## 11757          Gay or lesbian         Sometimes
## 11758                Bisexual         Sometimes
## 11759 Heterosexual (straight)  Most of the time
## 11760          Some other way         Sometimes
## 11761 Heterosexual (straight)             Never
## 11762 Heterosexual (straight)             Never
## 11763                Bisexual  Most of the time
## 11764 Heterosexual (straight)            Rarely
## 11765 Heterosexual (straight)             Never
## 11766                Bisexual         Sometimes
## 11767 Heterosexual (straight)             Never
## 11768                Not sure  Most of the time
## 11769 Heterosexual (straight)         Sometimes
## 11770 Heterosexual (straight)            Rarely
## 11771 Heterosexual (straight)             Never
## 11772                Bisexual            Always
## 11773          Some other way         Sometimes
## 11774 Heterosexual (straight)         Sometimes
## 11775 Heterosexual (straight)            Rarely
## 11776 Heterosexual (straight)            Rarely
## 11777 Heterosexual (straight)         Sometimes
## 11778 Heterosexual (straight)             Never
## 11779 Heterosexual (straight)         Sometimes
## 11780 Heterosexual (straight)             Never
## 11781                Not sure            Always
## 11782 Heterosexual (straight)            Rarely
## 11783                Bisexual            Rarely
## 11784 Heterosexual (straight)            Rarely
## 11785 Heterosexual (straight)         Sometimes
## 11786 Heterosexual (straight)            Rarely
## 11787                Bisexual         Sometimes
## 11788 Heterosexual (straight)         Sometimes
## 11789 Heterosexual (straight)            Rarely
## 11790                Not sure  Most of the time
## 11791 Heterosexual (straight)         Sometimes
## 11792          Some other way         Sometimes
## 11793 Heterosexual (straight)  Most of the time
## 11794 Heterosexual (straight)         Sometimes
## 11795                Bisexual  Most of the time
## 11796                Bisexual         Sometimes
## 11797 Heterosexual (straight)         Sometimes
## 11798 Heterosexual (straight)         Sometimes
## 11799 Heterosexual (straight)         Sometimes
## 11800 Heterosexual (straight)            Rarely
## 11801 Heterosexual (straight)         Sometimes
## 11802 Heterosexual (straight)         Sometimes
## 11803 Heterosexual (straight)  Most of the time
## 11804                Bisexual  Most of the time
## 11805 Heterosexual (straight)             Never
## 11806                Bisexual         Sometimes
## 11807 Heterosexual (straight)  Most of the time
## 11808          Some other way  Most of the time
## 11809 Heterosexual (straight)  Most of the time
## 11810 Heterosexual (straight)             Never
## 11811                Bisexual             Never
## 11812 Heterosexual (straight)             Never
## 11813                Not sure            Rarely
## 11814                Not sure             Never
## 11815 Heterosexual (straight)            Rarely
## 11816 Heterosexual (straight)              <NA>
## 11817 Heterosexual (straight)            Rarely
## 11818 Heterosexual (straight)             Never
## 11819 Heterosexual (straight)              <NA>
## 11820 Heterosexual (straight)            Always
## 11821 Heterosexual (straight)            Rarely
## 11822 Heterosexual (straight)         Sometimes
## 11823                Bisexual  Most of the time
## 11824 Heterosexual (straight)         Sometimes
## 11825 Heterosexual (straight)             Never
## 11826                Bisexual  Most of the time
## 11827 Heterosexual (straight)             Never
## 11828                Not sure  Most of the time
## 11829          Some other way  Most of the time
## 11830 Heterosexual (straight)         Sometimes
## 11831                Bisexual         Sometimes
## 11832 Heterosexual (straight)            Rarely
## 11833 Heterosexual (straight)  Most of the time
## 11834 Heterosexual (straight)         Sometimes
## 11835          Some other way         Sometimes
## 11836 Heterosexual (straight)         Sometimes
## 11837                Bisexual            Always
## 11838 Heterosexual (straight)            Rarely
## 11839 Heterosexual (straight)            Rarely
## 11840 Heterosexual (straight)             Never
## 11841 Heterosexual (straight)             Never
## 11842 Heterosexual (straight)         Sometimes
## 11843 Heterosexual (straight)            Rarely
## 11844 Heterosexual (straight)  Most of the time
## 11845 Heterosexual (straight)         Sometimes
## 11846                Bisexual         Sometimes
## 11847 Heterosexual (straight)            Rarely
## 11848 Heterosexual (straight)            Rarely
## 11849 Heterosexual (straight)             Never
## 11850 Heterosexual (straight)             Never
## 11851 Heterosexual (straight)  Most of the time
## 11852                Not sure  Most of the time
## 11853                Not sure  Most of the time
## 11854 Heterosexual (straight)             Never
## 11855 Heterosexual (straight)             Never
## 11856 Heterosexual (straight)         Sometimes
## 11857 Heterosexual (straight)         Sometimes
## 11858 Heterosexual (straight)         Sometimes
## 11859 Heterosexual (straight)             Never
## 11860 Heterosexual (straight)             Never
## 11861                Not sure         Sometimes
## 11862 Heterosexual (straight)  Most of the time
## 11863 Heterosexual (straight)              <NA>
## 11864                Not sure              <NA>
## 11865                Bisexual            Always
## 11866 Heterosexual (straight)            Rarely
## 11867 Heterosexual (straight)              <NA>
## 11868          Some other way  Most of the time
## 11869 Heterosexual (straight)             Never
## 11870 Heterosexual (straight)              <NA>
## 11871 Heterosexual (straight)  Most of the time
## 11872 Heterosexual (straight)             Never
## 11873 Heterosexual (straight)             Never
## 11874 Heterosexual (straight)             Never
## 11875                Bisexual            Always
## 11876                Not sure         Sometimes
## 11877                Bisexual  Most of the time
## 11878          Gay or lesbian         Sometimes
## 11879                Not sure            Always
## 11880 Heterosexual (straight)            Always
## 11881 Heterosexual (straight)            Rarely
## 11882 Heterosexual (straight)  Most of the time
## 11883                Bisexual  Most of the time
## 11884 Heterosexual (straight)             Never
## 11885 Heterosexual (straight)            Rarely
## 11886          Some other way  Most of the time
## 11887 Heterosexual (straight)            Rarely
## 11888 Heterosexual (straight)  Most of the time
## 11889 Heterosexual (straight)            Rarely
## 11890 Heterosexual (straight)         Sometimes
## 11891 Heterosexual (straight)         Sometimes
## 11892          Some other way            Always
## 11893 Heterosexual (straight)            Rarely
## 11894 Heterosexual (straight)            Rarely
## 11895 Heterosexual (straight)            Rarely
## 11896 Heterosexual (straight)         Sometimes
## 11897 Heterosexual (straight)         Sometimes
## 11898 Heterosexual (straight)             Never
## 11899          Gay or lesbian  Most of the time
## 11900 Heterosexual (straight)            Rarely
## 11901 Heterosexual (straight)            Rarely
## 11902 Heterosexual (straight)             Never
## 11903                Bisexual            Always
## 11904 Heterosexual (straight)            Rarely
## 11905                Bisexual  Most of the time
## 11906                Bisexual  Most of the time
## 11907 Heterosexual (straight)         Sometimes
## 11908 Heterosexual (straight)             Never
## 11909 Heterosexual (straight)         Sometimes
## 11910                Bisexual  Most of the time
## 11911 Heterosexual (straight)             Never
## 11912 Heterosexual (straight)            Rarely
## 11913 Heterosexual (straight)              <NA>
## 11914 Heterosexual (straight)             Never
## 11915                Bisexual              <NA>
## 11916          Some other way  Most of the time
## 11917 Heterosexual (straight)            Rarely
## 11918 Heterosexual (straight)            Rarely
## 11919 Heterosexual (straight)            Always
## 11920 Heterosexual (straight)              <NA>
## 11921          Gay or lesbian            Always
## 11922 Heterosexual (straight)            Always
## 11923          Some other way         Sometimes
## 11924 Heterosexual (straight)            Rarely
## 11925          Gay or lesbian            Always
## 11926          Some other way  Most of the time
## 11927                Not sure  Most of the time
## 11928 Heterosexual (straight)             Never
## 11929 Heterosexual (straight)            Rarely
## 11930 Heterosexual (straight)             Never
## 11931 Heterosexual (straight)         Sometimes
## 11932                Bisexual  Most of the time
## 11933 Heterosexual (straight)  Most of the time
## 11934 Heterosexual (straight)            Rarely
## 11935 Heterosexual (straight)            Rarely
## 11936 Heterosexual (straight)            Always
## 11937                Bisexual            Always
## 11938          Gay or lesbian         Sometimes
## 11939 Heterosexual (straight)  Most of the time
## 11940 Heterosexual (straight)            Rarely
## 11941                Bisexual            Always
## 11942 Heterosexual (straight)              <NA>
## 11943          Some other way  Most of the time
## 11944 Heterosexual (straight)         Sometimes
## 11945 Heterosexual (straight)  Most of the time
## 11946 Heterosexual (straight)         Sometimes
## 11947 Heterosexual (straight)            Rarely
## 11948 Heterosexual (straight)  Most of the time
## 11949 Heterosexual (straight)            Rarely
## 11950 Heterosexual (straight)            Always
## 11951                Not sure  Most of the time
## 11952 Heterosexual (straight)         Sometimes
## 11953 Heterosexual (straight)  Most of the time
## 11954 Heterosexual (straight)            Rarely
## 11955 Heterosexual (straight)  Most of the time
## 11956          Some other way         Sometimes
## 11957                Not sure         Sometimes
## 11958                Bisexual  Most of the time
## 11959          Some other way  Most of the time
## 11960 Heterosexual (straight)  Most of the time
## 11961                Bisexual  Most of the time
## 11962 Heterosexual (straight)              <NA>
## 11963 Heterosexual (straight)             Never
## 11964 Heterosexual (straight)            Rarely
## 11965 Heterosexual (straight)         Sometimes
## 11966                Bisexual  Most of the time
## 11967 Heterosexual (straight)  Most of the time
## 11968 Heterosexual (straight)  Most of the time
## 11969 Heterosexual (straight)             Never
## 11970 Heterosexual (straight)  Most of the time
## 11971 Heterosexual (straight)            Always
## 11972 Heterosexual (straight)            Rarely
## 11973 Heterosexual (straight)             Never
## 11974 Heterosexual (straight)             Never
## 11975                Bisexual  Most of the time
## 11976 Heterosexual (straight)            Always
## 11977                Bisexual         Sometimes
## 11978 Heterosexual (straight)  Most of the time
## 11979 Heterosexual (straight)         Sometimes
## 11980                Bisexual            Always
## 11981 Heterosexual (straight)            Rarely
## 11982                Not sure         Sometimes
## 11983 Heterosexual (straight)            Rarely
## 11984                Bisexual         Sometimes
## 11985                Bisexual         Sometimes
## 11986                Bisexual  Most of the time
## 11987                Bisexual            Rarely
## 11988 Heterosexual (straight)            Rarely
## 11989 Heterosexual (straight)  Most of the time
## 11990 Heterosexual (straight)            Always
## 11991 Heterosexual (straight)            Rarely
## 11992 Heterosexual (straight)            Rarely
## 11993          Some other way         Sometimes
## 11994          Some other way  Most of the time
## 11995                Not sure         Sometimes
## 11996 Heterosexual (straight)         Sometimes
## 11997                Bisexual         Sometimes
## 11998                Bisexual         Sometimes
## 11999          Some other way  Most of the time
## 12000 Heterosexual (straight)            Rarely
## 12001 Heterosexual (straight)            Rarely
## 12002          Gay or lesbian            Always
## 12003                Bisexual  Most of the time
## 12004 Heterosexual (straight)             Never
## 12005 Heterosexual (straight)         Sometimes
## 12006          Gay or lesbian            Always
## 12007 Heterosexual (straight)  Most of the time
## 12008 Heterosexual (straight)  Most of the time
## 12009 Heterosexual (straight)         Sometimes
## 12010 Heterosexual (straight)  Most of the time
## 12011                Not sure         Sometimes
## 12012                Bisexual  Most of the time
## 12013          Gay or lesbian            Always
## 12014 Heterosexual (straight)  Most of the time
## 12015 Heterosexual (straight)         Sometimes
## 12016 Heterosexual (straight)         Sometimes
## 12017          Gay or lesbian         Sometimes
## 12018 Heterosexual (straight)            Rarely
## 12019 Heterosexual (straight)  Most of the time
## 12020 Heterosexual (straight)             Never
## 12021 Heterosexual (straight)         Sometimes
## 12022 Heterosexual (straight)         Sometimes
## 12023                Bisexual         Sometimes
## 12024 Heterosexual (straight)              <NA>
## 12025 Heterosexual (straight)            Rarely
## 12026 Heterosexual (straight)            Rarely
## 12027 Heterosexual (straight)  Most of the time
## 12028          Gay or lesbian            Always
## 12029                Bisexual  Most of the time
## 12030          Gay or lesbian  Most of the time
## 12031 Heterosexual (straight)            Rarely
## 12032 Heterosexual (straight)         Sometimes
## 12033 Heterosexual (straight)         Sometimes
## 12034 Heterosexual (straight)         Sometimes
## 12035 Heterosexual (straight)            Always
## 12036          Gay or lesbian  Most of the time
## 12037 Heterosexual (straight)  Most of the time
## 12038 Heterosexual (straight)         Sometimes
## 12039          Gay or lesbian         Sometimes
## 12040 Heterosexual (straight)  Most of the time
## 12041 Heterosexual (straight)         Sometimes
## 12042          Gay or lesbian            Rarely
## 12043 Heterosexual (straight)            Always
## 12044          Some other way              <NA>
## 12045 Heterosexual (straight)  Most of the time
## 12046          Gay or lesbian  Most of the time
## 12047 Heterosexual (straight)         Sometimes
## 12048 Heterosexual (straight)         Sometimes
## 12049 Heterosexual (straight)         Sometimes
## 12050                Bisexual  Most of the time
## 12051                Bisexual            Always
## 12052 Heterosexual (straight)            Rarely
## 12053 Heterosexual (straight)  Most of the time
## 12054          Some other way            Always
## 12055                Bisexual            Rarely
## 12056                Bisexual  Most of the time
## 12057          Gay or lesbian            Always
## 12058 Heterosexual (straight)             Never
## 12059                Bisexual  Most of the time
## 12060 Heterosexual (straight)         Sometimes
## 12061                Bisexual  Most of the time
## 12062                Bisexual            Always
## 12063 Heterosexual (straight)         Sometimes
## 12064 Heterosexual (straight)              <NA>
## 12065 Heterosexual (straight)            Always
## 12066 Heterosexual (straight)         Sometimes
## 12067                Not sure             Never
## 12068 Heterosexual (straight)  Most of the time
## 12069                Bisexual            Always
## 12070 Heterosexual (straight)             Never
## 12071 Heterosexual (straight)            Always
## 12072 Heterosexual (straight)            Always
## 12073 Heterosexual (straight)         Sometimes
## 12074 Heterosexual (straight)             Never
## 12075 Heterosexual (straight)         Sometimes
## 12076 Heterosexual (straight)             Never
## 12077 Heterosexual (straight)  Most of the time
## 12078 Heterosexual (straight)             Never
## 12079 Heterosexual (straight)  Most of the time
## 12080 Heterosexual (straight)             Never
## 12081                Bisexual            Always
## 12082 Heterosexual (straight)  Most of the time
## 12083 Heterosexual (straight)             Never
## 12084 Heterosexual (straight)            Rarely
## 12085 Heterosexual (straight)             Never
## 12086 Heterosexual (straight)             Never
## 12087 Heterosexual (straight)             Never
## 12088 Heterosexual (straight)  Most of the time
## 12089 Heterosexual (straight)             Never
## 12090 Heterosexual (straight)  Most of the time
## 12091 Heterosexual (straight)            Always
## 12092 Heterosexual (straight)         Sometimes
## 12093 Heterosexual (straight)  Most of the time
## 12094 Heterosexual (straight)            Rarely
## 12095 Heterosexual (straight)            Always
## 12096 Heterosexual (straight)             Never
## 12097 Heterosexual (straight)             Never
## 12098                Bisexual            Always
## 12099 Heterosexual (straight)  Most of the time
## 12100 Heterosexual (straight)         Sometimes
## 12101                Bisexual             Never
## 12102 Heterosexual (straight)            Always
## 12103 Heterosexual (straight)         Sometimes
## 12104                Bisexual         Sometimes
## 12105 Heterosexual (straight)             Never
## 12106 Heterosexual (straight)         Sometimes
## 12107                Bisexual  Most of the time
## 12108 Heterosexual (straight)         Sometimes
## 12109 Heterosexual (straight)            Rarely
## 12110 Heterosexual (straight)             Never
## 12111 Heterosexual (straight)             Never
## 12112 Heterosexual (straight)  Most of the time
## 12113 Heterosexual (straight)            Rarely
## 12114          Some other way         Sometimes
## 12115                Bisexual            Always
## 12116 Heterosexual (straight)         Sometimes
## 12117                Not sure         Sometimes
## 12118 Heterosexual (straight)         Sometimes
## 12119                Bisexual  Most of the time
## 12120                Not sure            Always
## 12121 Heterosexual (straight)             Never
## 12122 Heterosexual (straight)  Most of the time
## 12123 Heterosexual (straight)            Rarely
## 12124 Heterosexual (straight)            Always
## 12125 Heterosexual (straight)            Rarely
## 12126                Bisexual         Sometimes
## 12127          Some other way  Most of the time
## 12128                Not sure  Most of the time
## 12129          Some other way  Most of the time
## 12130 Heterosexual (straight)             Never
## 12131 Heterosexual (straight)              <NA>
## 12132 Heterosexual (straight)            Rarely
## 12133                Not sure  Most of the time
## 12134 Heterosexual (straight)         Sometimes
## 12135                Bisexual  Most of the time
## 12136 Heterosexual (straight)            Rarely
## 12137 Heterosexual (straight)             Never
## 12138                Bisexual         Sometimes
## 12139          Gay or lesbian  Most of the time
## 12140 Heterosexual (straight)         Sometimes
## 12141 Heterosexual (straight)              <NA>
## 12142 Heterosexual (straight)              <NA>
## 12143 Heterosexual (straight)             Never
## 12144 Heterosexual (straight)            Rarely
## 12145 Heterosexual (straight)         Sometimes
## 12146 Heterosexual (straight)              <NA>
## 12147 Heterosexual (straight)            Rarely
## 12148 Heterosexual (straight)         Sometimes
## 12149 Heterosexual (straight)            Always
## 12150                Bisexual         Sometimes
## 12151 Heterosexual (straight)  Most of the time
## 12152          Gay or lesbian  Most of the time
## 12153 Heterosexual (straight)  Most of the time
## 12154 Heterosexual (straight)         Sometimes
## 12155 Heterosexual (straight)             Never
## 12156 Heterosexual (straight)            Rarely
## 12157 Heterosexual (straight)              <NA>
## 12158 Heterosexual (straight)            Always
## 12159 Heterosexual (straight)              <NA>
## 12160          Some other way         Sometimes
## 12161 Heterosexual (straight)            Always
## 12162 Heterosexual (straight)             Never
## 12163 Heterosexual (straight)            Always
## 12164 Heterosexual (straight)         Sometimes
## 12165 Heterosexual (straight)  Most of the time
## 12166 Heterosexual (straight)         Sometimes
## 12167 Heterosexual (straight)             Never
## 12168 Heterosexual (straight)             Never
## 12169          Gay or lesbian  Most of the time
## 12170 Heterosexual (straight)            Always
## 12171 Heterosexual (straight)         Sometimes
## 12172          Gay or lesbian  Most of the time
## 12173 Heterosexual (straight)            Rarely
## 12174                Bisexual  Most of the time
## 12175 Heterosexual (straight)         Sometimes
## 12176 Heterosexual (straight)  Most of the time
## 12177 Heterosexual (straight)             Never
## 12178 Heterosexual (straight)  Most of the time
## 12179                Not sure              <NA>
## 12180 Heterosexual (straight)         Sometimes
## 12181          Some other way         Sometimes
## 12182 Heterosexual (straight)         Sometimes
## 12183          Some other way            Always
## 12184          Some other way            Rarely
## 12185 Heterosexual (straight)         Sometimes
## 12186 Heterosexual (straight)            Rarely
## 12187 Heterosexual (straight)             Never
## 12188 Heterosexual (straight)            Always
## 12189 Heterosexual (straight)             Never
## 12190 Heterosexual (straight)             Never
## 12191 Heterosexual (straight)             Never
## 12192 Heterosexual (straight)             Never
## 12193 Heterosexual (straight)            Rarely
## 12194 Heterosexual (straight)            Rarely
## 12195 Heterosexual (straight)              <NA>
## 12196 Heterosexual (straight)             Never
## 12197                Bisexual         Sometimes
## 12198 Heterosexual (straight)  Most of the time
## 12199                Bisexual         Sometimes
## 12200                Bisexual              <NA>
## 12201                Bisexual  Most of the time
## 12202 Heterosexual (straight)             Never
## 12203          Some other way            Always
## 12204                Bisexual            Always
## 12205                Bisexual  Most of the time
## 12206                Bisexual  Most of the time
## 12207 Heterosexual (straight)            Rarely
## 12208 Heterosexual (straight)             Never
## 12209 Heterosexual (straight)              <NA>
## 12210 Heterosexual (straight)  Most of the time
## 12211 Heterosexual (straight)             Never
## 12212 Heterosexual (straight)            Rarely
## 12213                Bisexual  Most of the time
## 12214 Heterosexual (straight)         Sometimes
## 12215                Bisexual            Rarely
## 12216 Heterosexual (straight)            Rarely
## 12217                Bisexual            Always
## 12218 Heterosexual (straight)             Never
## 12219 Heterosexual (straight)            Rarely
## 12220 Heterosexual (straight)              <NA>
## 12221                Not sure         Sometimes
## 12222 Heterosexual (straight)  Most of the time
## 12223                Bisexual            Always
## 12224 Heterosexual (straight)         Sometimes
## 12225 Heterosexual (straight)            Always
## 12226          Some other way            Always
## 12227                Not sure            Rarely
## 12228                Bisexual  Most of the time
## 12229 Heterosexual (straight)            Rarely
## 12230 Heterosexual (straight)             Never
## 12231 Heterosexual (straight)            Always
## 12232                Bisexual            Rarely
## 12233                Not sure            Always
## 12234          Gay or lesbian         Sometimes
## 12235 Heterosexual (straight)            Rarely
## 12236 Heterosexual (straight)  Most of the time
## 12237 Heterosexual (straight)             Never
## 12238 Heterosexual (straight)             Never
## 12239                Bisexual  Most of the time
## 12240                Bisexual  Most of the time
## 12241 Heterosexual (straight)            Rarely
## 12242                Bisexual         Sometimes
## 12243 Heterosexual (straight)             Never
## 12244 Heterosexual (straight)  Most of the time
## 12245                Bisexual         Sometimes
## 12246          Some other way            Rarely
## 12247 Heterosexual (straight)             Never
## 12248 Heterosexual (straight)             Never
## 12249                Bisexual  Most of the time
## 12250 Heterosexual (straight)            Rarely
## 12251 Heterosexual (straight)            Rarely
## 12252                Bisexual  Most of the time
## 12253 Heterosexual (straight)  Most of the time
## 12254 Heterosexual (straight)         Sometimes
## 12255 Heterosexual (straight)             Never
## 12256          Some other way              <NA>
## 12257                Bisexual            Always
## 12258 Heterosexual (straight)         Sometimes
## 12259 Heterosexual (straight)            Always
## 12260                Bisexual         Sometimes
## 12261 Heterosexual (straight)             Never
## 12262          Gay or lesbian              <NA>
## 12263          Gay or lesbian  Most of the time
## 12264 Heterosexual (straight)              <NA>
## 12265 Heterosexual (straight)         Sometimes
## 12266          Gay or lesbian            Always
## 12267 Heterosexual (straight)             Never
## 12268 Heterosexual (straight)            Rarely
## 12269 Heterosexual (straight)             Never
## 12270 Heterosexual (straight)            Rarely
## 12271          Some other way  Most of the time
## 12272          Gay or lesbian             Never
## 12273 Heterosexual (straight)            Rarely
## 12274 Heterosexual (straight)              <NA>
## 12275 Heterosexual (straight)         Sometimes
## 12276                Bisexual            Always
## 12277 Heterosexual (straight)              <NA>
## 12278                Not sure  Most of the time
## 12279 Heterosexual (straight)  Most of the time
## 12280 Heterosexual (straight)             Never
## 12281 Heterosexual (straight)  Most of the time
## 12282                Bisexual              <NA>
## 12283 Heterosexual (straight)             Never
## 12284 Heterosexual (straight)              <NA>
## 12285                Bisexual         Sometimes
## 12286                Bisexual         Sometimes
## 12287 Heterosexual (straight)         Sometimes
## 12288 Heterosexual (straight)            Always
## 12289 Heterosexual (straight)         Sometimes
## 12290                Bisexual         Sometimes
## 12291 Heterosexual (straight)            Rarely
## 12292 Heterosexual (straight)            Always
## 12293 Heterosexual (straight)         Sometimes
## 12294 Heterosexual (straight)             Never
## 12295          Gay or lesbian  Most of the time
## 12296                Bisexual  Most of the time
## 12297 Heterosexual (straight)            Rarely
## 12298 Heterosexual (straight)         Sometimes
## 12299                Bisexual              <NA>
## 12300 Heterosexual (straight)         Sometimes
## 12301                Not sure             Never
## 12302 Heterosexual (straight)            Always
## 12303                Bisexual         Sometimes
## 12304          Some other way  Most of the time
## 12305 Heterosexual (straight)            Always
## 12306 Heterosexual (straight)            Always
## 12307 Heterosexual (straight)         Sometimes
## 12308 Heterosexual (straight)             Never
## 12309          Some other way         Sometimes
## 12310                Bisexual  Most of the time
## 12311 Heterosexual (straight)            Rarely
## 12312 Heterosexual (straight)             Never
## 12313 Heterosexual (straight)             Never
## 12314 Heterosexual (straight)  Most of the time
## 12315          Gay or lesbian            Rarely
## 12316 Heterosexual (straight)         Sometimes
## 12317 Heterosexual (straight)             Never
## 12318 Heterosexual (straight)         Sometimes
## 12319 Heterosexual (straight)         Sometimes
## 12320 Heterosexual (straight)            Rarely
## 12321 Heterosexual (straight)         Sometimes
## 12322 Heterosexual (straight)  Most of the time
## 12323                Bisexual  Most of the time
## 12324 Heterosexual (straight)         Sometimes
## 12325 Heterosexual (straight)  Most of the time
## 12326 Heterosexual (straight)             Never
## 12327 Heterosexual (straight)         Sometimes
## 12328 Heterosexual (straight)             Never
## 12329                Bisexual  Most of the time
## 12330          Gay or lesbian            Always
## 12331 Heterosexual (straight)             Never
## 12332                Bisexual         Sometimes
## 12333 Heterosexual (straight)             Never
## 12334                Bisexual             Never
## 12335                Bisexual         Sometimes
## 12336 Heterosexual (straight)            Rarely
## 12337 Heterosexual (straight)         Sometimes
## 12338 Heterosexual (straight)             Never
## 12339 Heterosexual (straight)            Always
## 12340 Heterosexual (straight)             Never
## 12341 Heterosexual (straight)              <NA>
## 12342          Gay or lesbian            Always
## 12343 Heterosexual (straight)            Always
## 12344 Heterosexual (straight)            Rarely
## 12345 Heterosexual (straight)            Always
## 12346                Bisexual            Always
## 12347 Heterosexual (straight)            Always
## 12348                Bisexual  Most of the time
## 12349 Heterosexual (straight)            Always
## 12350 Heterosexual (straight)         Sometimes
## 12351 Heterosexual (straight)         Sometimes
## 12352                Not sure  Most of the time
## 12353 Heterosexual (straight)  Most of the time
## 12354 Heterosexual (straight)         Sometimes
## 12355 Heterosexual (straight)  Most of the time
## 12356 Heterosexual (straight)  Most of the time
## 12357 Heterosexual (straight)         Sometimes
## 12358 Heterosexual (straight)             Never
## 12359 Heterosexual (straight)         Sometimes
## 12360 Heterosexual (straight)             Never
## 12361 Heterosexual (straight)         Sometimes
## 12362                Bisexual  Most of the time
## 12363                Bisexual            Always
## 12364                Bisexual            Always
## 12365 Heterosexual (straight)             Never
## 12366 Heterosexual (straight)  Most of the time
## 12367 Heterosexual (straight)             Never
## 12368 Heterosexual (straight)         Sometimes
## 12369                Not sure            Always
## 12370 Heterosexual (straight)  Most of the time
## 12371          Gay or lesbian  Most of the time
## 12372 Heterosexual (straight)  Most of the time
## 12373 Heterosexual (straight)            Rarely
## 12374                Bisexual            Always
## 12375 Heterosexual (straight)            Always
## 12376 Heterosexual (straight)         Sometimes
## 12377 Heterosexual (straight)  Most of the time
## 12378 Heterosexual (straight)         Sometimes
## 12379 Heterosexual (straight)             Never
## 12380          Some other way            Always
## 12381 Heterosexual (straight)  Most of the time
## 12382 Heterosexual (straight)             Never
## 12383 Heterosexual (straight)         Sometimes
## 12384 Heterosexual (straight)            Always
## 12385 Heterosexual (straight)  Most of the time
## 12386          Some other way             Never
## 12387                Bisexual            Rarely
## 12388 Heterosexual (straight)            Rarely
## 12389                Not sure         Sometimes
## 12390 Heterosexual (straight)  Most of the time
## 12391                Bisexual            Always
## 12392 Heterosexual (straight)         Sometimes
## 12393 Heterosexual (straight)         Sometimes
## 12394                Bisexual            Always
## 12395 Heterosexual (straight)            Always
## 12396 Heterosexual (straight)  Most of the time
## 12397                Bisexual         Sometimes
## 12398                Bisexual  Most of the time
## 12399          Some other way            Rarely
## 12400          Gay or lesbian            Always
## 12401 Heterosexual (straight)         Sometimes
## 12402 Heterosexual (straight)  Most of the time
## 12403 Heterosexual (straight)            Always
## 12404          Gay or lesbian  Most of the time
## 12405 Heterosexual (straight)         Sometimes
## 12406 Heterosexual (straight)            Rarely
## 12407 Heterosexual (straight)            Always
## 12408          Some other way              <NA>
## 12409          Some other way  Most of the time
## 12410 Heterosexual (straight)  Most of the time
## 12411                Bisexual            Always
## 12412                Bisexual  Most of the time
## 12413          Some other way  Most of the time
## 12414 Heterosexual (straight)             Never
## 12415 Heterosexual (straight)            Always
## 12416 Heterosexual (straight)         Sometimes
## 12417 Heterosexual (straight)  Most of the time
## 12418 Heterosexual (straight)         Sometimes
## 12419          Some other way         Sometimes
## 12420 Heterosexual (straight)         Sometimes
## 12421 Heterosexual (straight)            Rarely
## 12422 Heterosexual (straight)         Sometimes
## 12423                Bisexual  Most of the time
## 12424 Heterosexual (straight)  Most of the time
## 12425 Heterosexual (straight)            Rarely
## 12426 Heterosexual (straight)         Sometimes
## 12427 Heterosexual (straight)             Never
## 12428 Heterosexual (straight)             Never
## 12429 Heterosexual (straight)            Rarely
## 12430                Not sure         Sometimes
## 12431 Heterosexual (straight)         Sometimes
## 12432 Heterosexual (straight)         Sometimes
## 12433 Heterosexual (straight)         Sometimes
## 12434 Heterosexual (straight)         Sometimes
## 12435 Heterosexual (straight)         Sometimes
## 12436 Heterosexual (straight)             Never
## 12437 Heterosexual (straight)            Rarely
## 12438 Heterosexual (straight)             Never
## 12439                Bisexual            Rarely
## 12440                Bisexual  Most of the time
## 12441 Heterosexual (straight)            Always
## 12442 Heterosexual (straight)            Rarely
## 12443 Heterosexual (straight)            Rarely
## 12444 Heterosexual (straight)  Most of the time
## 12445 Heterosexual (straight)         Sometimes
## 12446 Heterosexual (straight)         Sometimes
## 12447                Bisexual            Always
## 12448          Some other way         Sometimes
## 12449 Heterosexual (straight)         Sometimes
## 12450 Heterosexual (straight)  Most of the time
## 12451          Some other way  Most of the time
## 12452 Heterosexual (straight)            Rarely
## 12453 Heterosexual (straight)             Never
## 12454 Heterosexual (straight)         Sometimes
## 12455 Heterosexual (straight)  Most of the time
## 12456                Not sure  Most of the time
## 12457 Heterosexual (straight)         Sometimes
## 12458          Some other way            Always
## 12459 Heterosexual (straight)             Never
## 12460 Heterosexual (straight)         Sometimes
## 12461          Some other way            Always
## 12462                Not sure  Most of the time
## 12463 Heterosexual (straight)             Never
## 12464 Heterosexual (straight)             Never
## 12465 Heterosexual (straight)            Rarely
## 12466 Heterosexual (straight)         Sometimes
## 12467 Heterosexual (straight)            Rarely
## 12468 Heterosexual (straight)             Never
## 12469          Some other way  Most of the time
## 12470                Bisexual            Always
## 12471          Some other way            Always
## 12472 Heterosexual (straight)            Always
## 12473 Heterosexual (straight)  Most of the time
## 12474 Heterosexual (straight)  Most of the time
## 12475 Heterosexual (straight)             Never
## 12476 Heterosexual (straight)         Sometimes
## 12477 Heterosexual (straight)         Sometimes
## 12478          Gay or lesbian            Always
## 12479                Not sure         Sometimes
## 12480                Not sure  Most of the time
## 12481 Heterosexual (straight)             Never
## 12482 Heterosexual (straight)         Sometimes
## 12483                Bisexual         Sometimes
## 12484 Heterosexual (straight)  Most of the time
## 12485 Heterosexual (straight)  Most of the time
## 12486 Heterosexual (straight)            Always
## 12487 Heterosexual (straight)  Most of the time
## 12488          Gay or lesbian         Sometimes
## 12489 Heterosexual (straight)  Most of the time
## 12490 Heterosexual (straight)            Always
## 12491 Heterosexual (straight)            Always
## 12492                Not sure            Rarely
## 12493          Gay or lesbian             Never
## 12494 Heterosexual (straight)             Never
## 12495 Heterosexual (straight)         Sometimes
## 12496          Some other way            Rarely
## 12497 Heterosexual (straight)            Rarely
## 12498                Bisexual            Always
## 12499 Heterosexual (straight)            Always
## 12500 Heterosexual (straight)             Never
## 12501 Heterosexual (straight)            Rarely
## 12502          Gay or lesbian         Sometimes
## 12503 Heterosexual (straight)  Most of the time
## 12504 Heterosexual (straight)            Rarely
## 12505 Heterosexual (straight)         Sometimes
## 12506 Heterosexual (straight)         Sometimes
## 12507 Heterosexual (straight)            Rarely
## 12508          Gay or lesbian  Most of the time
## 12509 Heterosexual (straight)             Never
## 12510 Heterosexual (straight)             Never
## 12511 Heterosexual (straight)             Never
## 12512 Heterosexual (straight)         Sometimes
## 12513 Heterosexual (straight)            Always
## 12514          Some other way  Most of the time
## 12515 Heterosexual (straight)         Sometimes
## 12516 Heterosexual (straight)            Always
## 12517 Heterosexual (straight)  Most of the time
## 12518 Heterosexual (straight)            Always
## 12519 Heterosexual (straight)  Most of the time
## 12520 Heterosexual (straight)  Most of the time
## 12521 Heterosexual (straight)  Most of the time
## 12522                Bisexual         Sometimes
## 12523 Heterosexual (straight)  Most of the time
## 12524                Bisexual              <NA>
## 12525 Heterosexual (straight)         Sometimes
## 12526 Heterosexual (straight)            Rarely
## 12527 Heterosexual (straight)  Most of the time
## 12528 Heterosexual (straight)            Always
## 12529 Heterosexual (straight)         Sometimes
## 12530 Heterosexual (straight)            Rarely
## 12531 Heterosexual (straight)         Sometimes
## 12532 Heterosexual (straight)             Never
## 12533 Heterosexual (straight)         Sometimes
## 12534 Heterosexual (straight)         Sometimes
## 12535 Heterosexual (straight)             Never
## 12536 Heterosexual (straight)  Most of the time
## 12537 Heterosexual (straight)            Rarely
## 12538 Heterosexual (straight)  Most of the time
## 12539 Heterosexual (straight)            Rarely
## 12540 Heterosexual (straight)  Most of the time
## 12541 Heterosexual (straight)             Never
## 12542 Heterosexual (straight)             Never
## 12543 Heterosexual (straight)  Most of the time
## 12544                Bisexual            Always
## 12545 Heterosexual (straight)             Never
## 12546 Heterosexual (straight)             Never
## 12547 Heterosexual (straight)         Sometimes
## 12548 Heterosexual (straight)             Never
## 12549 Heterosexual (straight)             Never
## 12550 Heterosexual (straight)              <NA>
## 12551 Heterosexual (straight)            Rarely
## 12552 Heterosexual (straight)              <NA>
## 12553 Heterosexual (straight)         Sometimes
## 12554                Bisexual  Most of the time
## 12555 Heterosexual (straight)              <NA>
## 12556 Heterosexual (straight)             Never
## 12557 Heterosexual (straight)            Always
## 12558                Bisexual         Sometimes
## 12559 Heterosexual (straight)            Rarely
## 12560                Bisexual         Sometimes
## 12561 Heterosexual (straight)  Most of the time
## 12562                Bisexual         Sometimes
## 12563 Heterosexual (straight)         Sometimes
## 12564          Gay or lesbian             Never
## 12565 Heterosexual (straight)         Sometimes
## 12566 Heterosexual (straight)             Never
## 12567 Heterosexual (straight)             Never
## 12568 Heterosexual (straight)             Never
## 12569 Heterosexual (straight)            Rarely
## 12570 Heterosexual (straight)            Rarely
## 12571 Heterosexual (straight)              <NA>
## 12572 Heterosexual (straight)              <NA>
## 12573 Heterosexual (straight)              <NA>
## 12574 Heterosexual (straight)  Most of the time
## 12575 Heterosexual (straight)         Sometimes
## 12576 Heterosexual (straight)         Sometimes
## 12577 Heterosexual (straight)            Always
## 12578 Heterosexual (straight)            Always
## 12579                Bisexual         Sometimes
## 12580 Heterosexual (straight)  Most of the time
## 12581                Bisexual  Most of the time
## 12582          Gay or lesbian  Most of the time
## 12583 Heterosexual (straight)         Sometimes
## 12584 Heterosexual (straight)  Most of the time
## 12585 Heterosexual (straight)         Sometimes
## 12586 Heterosexual (straight)  Most of the time
## 12587                Not sure              <NA>
## 12588 Heterosexual (straight)         Sometimes
## 12589                Bisexual            Rarely
## 12590 Heterosexual (straight)            Rarely
## 12591 Heterosexual (straight)  Most of the time
## 12592 Heterosexual (straight)            Rarely
## 12593                Bisexual            Always
## 12594 Heterosexual (straight)            Rarely
## 12595 Heterosexual (straight)         Sometimes
## 12596 Heterosexual (straight)  Most of the time
## 12597          Some other way         Sometimes
## 12598                Bisexual         Sometimes
## 12599                Not sure  Most of the time
## 12600 Heterosexual (straight)         Sometimes
## 12601          Some other way  Most of the time
## 12602 Heterosexual (straight)         Sometimes
## 12603 Heterosexual (straight)            Rarely
## 12604 Heterosexual (straight)             Never
## 12605 Heterosexual (straight)         Sometimes
## 12606 Heterosexual (straight)            Rarely
## 12607 Heterosexual (straight)         Sometimes
## 12608 Heterosexual (straight)  Most of the time
## 12609                Bisexual         Sometimes
## 12610                Bisexual  Most of the time
## 12611 Heterosexual (straight)         Sometimes
## 12612 Heterosexual (straight)         Sometimes
## 12613 Heterosexual (straight)            Rarely
## 12614                Bisexual            Rarely
## 12615                Bisexual         Sometimes
## 12616 Heterosexual (straight)            Rarely
## 12617 Heterosexual (straight)  Most of the time
## 12618                Bisexual  Most of the time
## 12619 Heterosexual (straight)  Most of the time
## 12620 Heterosexual (straight)            Rarely
## 12621 Heterosexual (straight)            Always
## 12622 Heterosexual (straight)  Most of the time
## 12623 Heterosexual (straight)         Sometimes
## 12624 Heterosexual (straight)         Sometimes
## 12625 Heterosexual (straight)         Sometimes
## 12626                Not sure            Always
## 12627                Not sure  Most of the time
## 12628 Heterosexual (straight)              <NA>
## 12629                Not sure  Most of the time
## 12630 Heterosexual (straight)         Sometimes
## 12631 Heterosexual (straight)              <NA>
## 12632 Heterosexual (straight)              <NA>
## 12633 Heterosexual (straight)         Sometimes
## 12634 Heterosexual (straight)              <NA>
## 12635                Bisexual  Most of the time
## 12636                Bisexual  Most of the time
## 12637 Heterosexual (straight)            Always
## 12638 Heterosexual (straight)         Sometimes
## 12639 Heterosexual (straight)            Always
## 12640                Bisexual  Most of the time
## 12641 Heterosexual (straight)  Most of the time
## 12642 Heterosexual (straight)            Rarely
## 12643 Heterosexual (straight)             Never
## 12644 Heterosexual (straight)  Most of the time
## 12645 Heterosexual (straight)             Never
## 12646 Heterosexual (straight)            Rarely
## 12647 Heterosexual (straight)            Rarely
## 12648 Heterosexual (straight)         Sometimes
## 12649                Not sure  Most of the time
## 12650 Heterosexual (straight)         Sometimes
## 12651 Heterosexual (straight)         Sometimes
## 12652 Heterosexual (straight)            Always
## 12653                Bisexual         Sometimes
## 12654 Heterosexual (straight)            Rarely
## 12655 Heterosexual (straight)            Rarely
## 12656 Heterosexual (straight)             Never
## 12657 Heterosexual (straight)         Sometimes
## 12658                Bisexual  Most of the time
## 12659 Heterosexual (straight)  Most of the time
## 12660                Not sure         Sometimes
## 12661                Bisexual            Always
## 12662 Heterosexual (straight)            Rarely
## 12663 Heterosexual (straight)         Sometimes
## 12664 Heterosexual (straight)            Rarely
## 12665 Heterosexual (straight)  Most of the time
## 12666 Heterosexual (straight)            Rarely
## 12667                Not sure  Most of the time
## 12668                Not sure         Sometimes
## 12669 Heterosexual (straight)             Never
## 12670 Heterosexual (straight)             Never
## 12671 Heterosexual (straight)  Most of the time
## 12672                Not sure  Most of the time
## 12673 Heterosexual (straight)            Always
## 12674                Bisexual             Never
## 12675 Heterosexual (straight)  Most of the time
## 12676 Heterosexual (straight)         Sometimes
## 12677 Heterosexual (straight)             Never
## 12678 Heterosexual (straight)            Rarely
## 12679 Heterosexual (straight)         Sometimes
## 12680          Some other way         Sometimes
## 12681 Heterosexual (straight)              <NA>
## 12682 Heterosexual (straight)            Rarely
## 12683 Heterosexual (straight)             Never
## 12684 Heterosexual (straight)            Rarely
## 12685 Heterosexual (straight)             Never
## 12686 Heterosexual (straight)              <NA>
## 12687 Heterosexual (straight)              <NA>
## 12688 Heterosexual (straight)         Sometimes
## 12689          Some other way  Most of the time
## 12690 Heterosexual (straight)             Never
## 12691 Heterosexual (straight)            Rarely
## 12692                Bisexual  Most of the time
## 12693 Heterosexual (straight)         Sometimes
## 12694          Gay or lesbian  Most of the time
## 12695 Heterosexual (straight)         Sometimes
## 12696 Heterosexual (straight)              <NA>
## 12697 Heterosexual (straight)             Never
## 12698 Heterosexual (straight)  Most of the time
## 12699          Some other way         Sometimes
## 12700 Heterosexual (straight)             Never
## 12701 Heterosexual (straight)              <NA>
## 12702 Heterosexual (straight)            Rarely
## 12703          Gay or lesbian         Sometimes
## 12704 Heterosexual (straight)  Most of the time
## 12705 Heterosexual (straight)              <NA>
## 12706 Heterosexual (straight)             Never
## 12707          Gay or lesbian  Most of the time
## 12708 Heterosexual (straight)             Never
## 12709 Heterosexual (straight)            Rarely
## 12710 Heterosexual (straight)            Rarely
## 12711 Heterosexual (straight)         Sometimes
## 12712 Heterosexual (straight)         Sometimes
## 12713                Bisexual  Most of the time
## 12714                Bisexual         Sometimes
## 12715                Bisexual         Sometimes
## 12716 Heterosexual (straight)         Sometimes
## 12717 Heterosexual (straight)             Never
## 12718 Heterosexual (straight)  Most of the time
## 12719 Heterosexual (straight)         Sometimes
## 12720                Not sure            Rarely
## 12721 Heterosexual (straight)  Most of the time
## 12722 Heterosexual (straight)         Sometimes
## 12723 Heterosexual (straight)            Rarely
## 12724 Heterosexual (straight)         Sometimes
## 12725 Heterosexual (straight)         Sometimes
## 12726 Heterosexual (straight)         Sometimes
## 12727 Heterosexual (straight)            Always
## 12728 Heterosexual (straight)            Rarely
## 12729 Heterosexual (straight)             Never
## 12730 Heterosexual (straight)         Sometimes
## 12731          Gay or lesbian            Always
## 12732 Heterosexual (straight)  Most of the time
## 12733 Heterosexual (straight)  Most of the time
## 12734 Heterosexual (straight)             Never
## 12735 Heterosexual (straight)            Rarely
## 12736 Heterosexual (straight)            Rarely
## 12737 Heterosexual (straight)         Sometimes
## 12738 Heterosexual (straight)         Sometimes
## 12739 Heterosexual (straight)         Sometimes
## 12740 Heterosexual (straight)            Rarely
## 12741 Heterosexual (straight)            Rarely
## 12742 Heterosexual (straight)  Most of the time
## 12743 Heterosexual (straight)             Never
## 12744                Bisexual         Sometimes
## 12745 Heterosexual (straight)             Never
## 12746 Heterosexual (straight)            Rarely
## 12747 Heterosexual (straight)         Sometimes
## 12748                Not sure              <NA>
## 12749 Heterosexual (straight)  Most of the time
## 12750          Gay or lesbian         Sometimes
## 12751          Some other way  Most of the time
## 12752 Heterosexual (straight)            Rarely
## 12753 Heterosexual (straight)  Most of the time
## 12754 Heterosexual (straight)              <NA>
## 12755                Bisexual            Always
## 12756          Gay or lesbian  Most of the time
## 12757 Heterosexual (straight)            Rarely
## 12758 Heterosexual (straight)         Sometimes
## 12759 Heterosexual (straight)             Never
## 12760 Heterosexual (straight)  Most of the time
## 12761 Heterosexual (straight)            Rarely
## 12762 Heterosexual (straight)             Never
## 12763                Not sure  Most of the time
## 12764 Heterosexual (straight)         Sometimes
## 12765 Heterosexual (straight)             Never
## 12766          Some other way            Always
## 12767                Bisexual         Sometimes
## 12768 Heterosexual (straight)         Sometimes
## 12769 Heterosexual (straight)         Sometimes
## 12770 Heterosexual (straight)            Rarely
## 12771 Heterosexual (straight)  Most of the time
## 12772 Heterosexual (straight)  Most of the time
## 12773                Bisexual            Rarely
## 12774 Heterosexual (straight)  Most of the time
## 12775                Not sure             Never
## 12776                Bisexual         Sometimes
## 12777 Heterosexual (straight)            Rarely
## 12778 Heterosexual (straight)             Never
## 12779 Heterosexual (straight)             Never
## 12780 Heterosexual (straight)             Never
## 12781 Heterosexual (straight)         Sometimes
## 12782 Heterosexual (straight)  Most of the time
## 12783 Heterosexual (straight)         Sometimes
## 12784          Some other way         Sometimes
## 12785          Gay or lesbian  Most of the time
## 12786 Heterosexual (straight)             Never
## 12787          Gay or lesbian            Always
## 12788                Bisexual            Always
## 12789 Heterosexual (straight)            Rarely
## 12790 Heterosexual (straight)            Always
## 12791 Heterosexual (straight)  Most of the time
## 12792 Heterosexual (straight)            Rarely
## 12793                Not sure            Always
## 12794 Heterosexual (straight)  Most of the time
## 12795 Heterosexual (straight)         Sometimes
## 12796 Heterosexual (straight)             Never
## 12797                Bisexual  Most of the time
## 12798                Bisexual            Rarely
## 12799 Heterosexual (straight)              <NA>
## 12800 Heterosexual (straight)         Sometimes
## 12801                Not sure  Most of the time
## 12802 Heterosexual (straight)             Never
## 12803                Bisexual            Always
## 12804                Bisexual             Never
## 12805 Heterosexual (straight)            Rarely
## 12806 Heterosexual (straight)             Never
## 12807                Bisexual            Always
## 12808 Heterosexual (straight)  Most of the time
## 12809 Heterosexual (straight)         Sometimes
## 12810 Heterosexual (straight)            Rarely
## 12811                Bisexual  Most of the time
## 12812          Gay or lesbian             Never
## 12813                Bisexual            Rarely
## 12814 Heterosexual (straight)             Never
## 12815 Heterosexual (straight)            Rarely
## 12816 Heterosexual (straight)         Sometimes
## 12817 Heterosexual (straight)            Always
## 12818 Heterosexual (straight)            Rarely
## 12819 Heterosexual (straight)            Rarely
## 12820 Heterosexual (straight)             Never
## 12821 Heterosexual (straight)  Most of the time
## 12822          Some other way            Always
## 12823          Gay or lesbian  Most of the time
## 12824                Bisexual  Most of the time
## 12825 Heterosexual (straight)         Sometimes
## 12826 Heterosexual (straight)             Never
## 12827 Heterosexual (straight)            Rarely
## 12828 Heterosexual (straight)             Never
## 12829 Heterosexual (straight)  Most of the time
## 12830                Bisexual            Rarely
## 12831 Heterosexual (straight)         Sometimes
## 12832 Heterosexual (straight)            Rarely
## 12833 Heterosexual (straight)             Never
## 12834 Heterosexual (straight)         Sometimes
## 12835 Heterosexual (straight)         Sometimes
## 12836 Heterosexual (straight)            Rarely
## 12837 Heterosexual (straight)  Most of the time
## 12838 Heterosexual (straight)  Most of the time
## 12839 Heterosexual (straight)         Sometimes
## 12840 Heterosexual (straight)            Rarely
## 12841 Heterosexual (straight)         Sometimes
## 12842                Bisexual            Rarely
## 12843                Not sure  Most of the time
## 12844 Heterosexual (straight)         Sometimes
## 12845 Heterosexual (straight)         Sometimes
## 12846 Heterosexual (straight)  Most of the time
## 12847 Heterosexual (straight)             Never
## 12848 Heterosexual (straight)              <NA>
## 12849 Heterosexual (straight)             Never
## 12850 Heterosexual (straight)             Never
## 12851          Some other way  Most of the time
## 12852 Heterosexual (straight)         Sometimes
## 12853 Heterosexual (straight)             Never
## 12854                Bisexual  Most of the time
## 12855 Heterosexual (straight)         Sometimes
## 12856 Heterosexual (straight)  Most of the time
## 12857 Heterosexual (straight)  Most of the time
## 12858 Heterosexual (straight)         Sometimes
## 12859 Heterosexual (straight)            Rarely
## 12860                Not sure  Most of the time
## 12861                Bisexual         Sometimes
## 12862 Heterosexual (straight)         Sometimes
## 12863          Gay or lesbian  Most of the time
## 12864 Heterosexual (straight)            Rarely
## 12865 Heterosexual (straight)         Sometimes
## 12866          Some other way         Sometimes
## 12867          Some other way            Rarely
## 12868 Heterosexual (straight)            Rarely
## 12869 Heterosexual (straight)            Always
## 12870 Heterosexual (straight)            Always
## 12871 Heterosexual (straight)         Sometimes
## 12872 Heterosexual (straight)  Most of the time
## 12873                Not sure  Most of the time
## 12874          Some other way  Most of the time
## 12875                Bisexual  Most of the time
## 12876          Some other way            Always
## 12877 Heterosexual (straight)         Sometimes
## 12878 Heterosexual (straight)         Sometimes
## 12879                Bisexual         Sometimes
## 12880 Heterosexual (straight)             Never
## 12881 Heterosexual (straight)            Rarely
## 12882 Heterosexual (straight)            Rarely
## 12883                Not sure            Rarely
## 12884                Not sure  Most of the time
## 12885                Bisexual            Always
## 12886 Heterosexual (straight)  Most of the time
## 12887                Bisexual         Sometimes
## 12888 Heterosexual (straight)             Never
## 12889                Bisexual  Most of the time
## 12890 Heterosexual (straight)            Rarely
## 12891 Heterosexual (straight)            Rarely
## 12892 Heterosexual (straight)            Rarely
## 12893                Bisexual  Most of the time
## 12894                Not sure         Sometimes
## 12895                Bisexual             Never
## 12896 Heterosexual (straight)            Rarely
## 12897          Some other way            Always
## 12898 Heterosexual (straight)  Most of the time
## 12899          Gay or lesbian  Most of the time
## 12900 Heterosexual (straight)         Sometimes
## 12901 Heterosexual (straight)         Sometimes
## 12902 Heterosexual (straight)             Never
## 12903 Heterosexual (straight)            Always
## 12904 Heterosexual (straight)         Sometimes
## 12905 Heterosexual (straight)             Never
## 12906 Heterosexual (straight)            Rarely
## 12907 Heterosexual (straight)         Sometimes
## 12908 Heterosexual (straight)            Always
## 12909                Bisexual  Most of the time
## 12910                Not sure  Most of the time
## 12911 Heterosexual (straight)            Rarely
## 12912                Bisexual  Most of the time
## 12913 Heterosexual (straight)         Sometimes
## 12914 Heterosexual (straight)         Sometimes
## 12915 Heterosexual (straight)            Always
## 12916 Heterosexual (straight)  Most of the time
## 12917                Bisexual         Sometimes
## 12918 Heterosexual (straight)            Rarely
## 12919 Heterosexual (straight)            Rarely
## 12920                Bisexual  Most of the time
## 12921 Heterosexual (straight)         Sometimes
## 12922 Heterosexual (straight)  Most of the time
## 12923          Gay or lesbian  Most of the time
## 12924 Heterosexual (straight)  Most of the time
## 12925 Heterosexual (straight)             Never
## 12926                Bisexual            Rarely
## 12927 Heterosexual (straight)         Sometimes
## 12928 Heterosexual (straight)            Rarely
## 12929 Heterosexual (straight)         Sometimes
## 12930 Heterosexual (straight)              <NA>
## 12931 Heterosexual (straight)  Most of the time
## 12932 Heterosexual (straight)  Most of the time
## 12933 Heterosexual (straight)  Most of the time
## 12934                Bisexual  Most of the time
## 12935 Heterosexual (straight)             Never
## 12936                Not sure              <NA>
## 12937                Bisexual              <NA>
## 12938 Heterosexual (straight)         Sometimes
## 12939 Heterosexual (straight)             Never
## 12940                Bisexual             Never
## 12941 Heterosexual (straight)  Most of the time
## 12942                Not sure         Sometimes
## 12943 Heterosexual (straight)              <NA>
## 12944 Heterosexual (straight)              <NA>
## 12945          Some other way              <NA>
## 12946 Heterosexual (straight)              <NA>
## 12947                Bisexual  Most of the time
## 12948 Heterosexual (straight)              <NA>
## 12949                Bisexual            Always
## 12950          Gay or lesbian  Most of the time
## 12951                Not sure  Most of the time
## 12952 Heterosexual (straight)            Rarely
## 12953                Not sure         Sometimes
## 12954 Heterosexual (straight)         Sometimes
## 12955                Not sure         Sometimes
## 12956                Bisexual         Sometimes
## 12957                Bisexual  Most of the time
## 12958 Heterosexual (straight)             Never
## 12959                Not sure  Most of the time
## 12960          Some other way  Most of the time
## 12961 Heterosexual (straight)            Rarely
## 12962 Heterosexual (straight)             Never
## 12963                Bisexual  Most of the time
## 12964 Heterosexual (straight)  Most of the time
## 12965 Heterosexual (straight)         Sometimes
## 12966 Heterosexual (straight)             Never
## 12967 Heterosexual (straight)            Rarely
## 12968          Gay or lesbian             Never
## 12969          Gay or lesbian         Sometimes
## 12970 Heterosexual (straight)             Never
## 12971                Bisexual  Most of the time
## 12972 Heterosexual (straight)             Never
## 12973 Heterosexual (straight)             Never
## 12974 Heterosexual (straight)         Sometimes
## 12975 Heterosexual (straight)             Never
## 12976 Heterosexual (straight)             Never
## 12977 Heterosexual (straight)         Sometimes
## 12978 Heterosexual (straight)  Most of the time
## 12979 Heterosexual (straight)            Always
## 12980          Some other way         Sometimes
## 12981          Some other way            Rarely
## 12982 Heterosexual (straight)         Sometimes
## 12983 Heterosexual (straight)  Most of the time
## 12984 Heterosexual (straight)  Most of the time
## 12985 Heterosexual (straight)         Sometimes
## 12986          Some other way  Most of the time
## 12987 Heterosexual (straight)         Sometimes
## 12988 Heterosexual (straight)         Sometimes
## 12989 Heterosexual (straight)         Sometimes
## 12990                Not sure  Most of the time
## 12991                Not sure         Sometimes
## 12992 Heterosexual (straight)  Most of the time
## 12993          Some other way  Most of the time
## 12994                Not sure  Most of the time
## 12995                Not sure            Always
## 12996                Bisexual            Always
## 12997 Heterosexual (straight)            Rarely
## 12998 Heterosexual (straight)            Always
## 12999                Bisexual         Sometimes
## 13000                Bisexual         Sometimes
## 13001 Heterosexual (straight)             Never
## 13002 Heterosexual (straight)            Rarely
## 13003          Gay or lesbian            Always
## 13004 Heterosexual (straight)            Rarely
## 13005 Heterosexual (straight)            Rarely
## 13006 Heterosexual (straight)             Never
## 13007          Gay or lesbian  Most of the time
## 13008                Not sure  Most of the time
## 13009                Bisexual  Most of the time
## 13010 Heterosexual (straight)            Rarely
## 13011 Heterosexual (straight)            Rarely
## 13012 Heterosexual (straight)  Most of the time
## 13013 Heterosexual (straight)             Never
## 13014                Bisexual         Sometimes
## 13015 Heterosexual (straight)         Sometimes
## 13016 Heterosexual (straight)  Most of the time
## 13017 Heterosexual (straight)  Most of the time
## 13018 Heterosexual (straight)         Sometimes
## 13019                Not sure  Most of the time
## 13020          Some other way  Most of the time
## 13021          Gay or lesbian  Most of the time
## 13022 Heterosexual (straight)            Rarely
## 13023 Heterosexual (straight)         Sometimes
## 13024 Heterosexual (straight)         Sometimes
## 13025 Heterosexual (straight)         Sometimes
## 13026          Some other way         Sometimes
## 13027 Heterosexual (straight)            Rarely
## 13028          Gay or lesbian  Most of the time
## 13029 Heterosexual (straight)             Never
## 13030          Gay or lesbian  Most of the time
## 13031 Heterosexual (straight)         Sometimes
## 13032 Heterosexual (straight)         Sometimes
## 13033          Gay or lesbian         Sometimes
## 13034 Heterosexual (straight)            Rarely
## 13035          Some other way            Always
## 13036          Some other way         Sometimes
## 13037                Bisexual         Sometimes
## 13038                Bisexual  Most of the time
## 13039 Heterosexual (straight)            Rarely
## 13040                Bisexual         Sometimes
## 13041 Heterosexual (straight)            Rarely
## 13042          Some other way  Most of the time
## 13043 Heterosexual (straight)             Never
## 13044 Heterosexual (straight)            Always
## 13045 Heterosexual (straight)         Sometimes
## 13046 Heterosexual (straight)            Rarely
## 13047 Heterosexual (straight)            Rarely
## 13048 Heterosexual (straight)            Rarely
## 13049 Heterosexual (straight)  Most of the time
## 13050 Heterosexual (straight)         Sometimes
## 13051          Gay or lesbian             Never
## 13052 Heterosexual (straight)         Sometimes
## 13053                Bisexual            Rarely
## 13054                Not sure         Sometimes
## 13055 Heterosexual (straight)  Most of the time
## 13056 Heterosexual (straight)         Sometimes
## 13057                Not sure  Most of the time
## 13058                Not sure         Sometimes
## 13059 Heterosexual (straight)         Sometimes
## 13060 Heterosexual (straight)         Sometimes
## 13061 Heterosexual (straight)            Rarely
## 13062                Bisexual  Most of the time
## 13063                Not sure  Most of the time
## 13064 Heterosexual (straight)         Sometimes
## 13065 Heterosexual (straight)            Rarely
## 13066 Heterosexual (straight)            Rarely
## 13067 Heterosexual (straight)         Sometimes
## 13068 Heterosexual (straight)         Sometimes
## 13069 Heterosexual (straight)            Rarely
## 13070 Heterosexual (straight)         Sometimes
## 13071 Heterosexual (straight)             Never
## 13072 Heterosexual (straight)            Rarely
## 13073 Heterosexual (straight)         Sometimes
## 13074 Heterosexual (straight)  Most of the time
## 13075 Heterosexual (straight)            Rarely
## 13076 Heterosexual (straight)             Never
## 13077 Heterosexual (straight)             Never
## 13078                Not sure  Most of the time
## 13079                Bisexual         Sometimes
## 13080 Heterosexual (straight)             Never
## 13081 Heterosexual (straight)            Always
## 13082                Bisexual  Most of the time
## 13083 Heterosexual (straight)         Sometimes
## 13084 Heterosexual (straight)  Most of the time
## 13085 Heterosexual (straight)         Sometimes
## 13086 Heterosexual (straight)             Never
## 13087 Heterosexual (straight)             Never
## 13088 Heterosexual (straight)            Always
## 13089 Heterosexual (straight)            Rarely
## 13090 Heterosexual (straight)         Sometimes
## 13091 Heterosexual (straight)  Most of the time
## 13092                Bisexual         Sometimes
## 13093 Heterosexual (straight)         Sometimes
## 13094 Heterosexual (straight)         Sometimes
## 13095 Heterosexual (straight)            Rarely
## 13096 Heterosexual (straight)  Most of the time
## 13097                Not sure            Always
## 13098 Heterosexual (straight)         Sometimes
## 13099 Heterosexual (straight)            Rarely
## 13100 Heterosexual (straight)         Sometimes
## 13101 Heterosexual (straight)             Never
## 13102                Bisexual         Sometimes
## 13103 Heterosexual (straight)            Rarely
## 13104          Some other way         Sometimes
## 13105                Bisexual         Sometimes
## 13106 Heterosexual (straight)         Sometimes
## 13107 Heterosexual (straight)         Sometimes
## 13108 Heterosexual (straight)  Most of the time
## 13109 Heterosexual (straight)         Sometimes
## 13110 Heterosexual (straight)            Rarely
## 13111          Gay or lesbian            Always
## 13112                Bisexual  Most of the time
## 13113 Heterosexual (straight)         Sometimes
## 13114 Heterosexual (straight)            Always
## 13115 Heterosexual (straight)            Rarely
## 13116 Heterosexual (straight)  Most of the time
## 13117          Some other way  Most of the time
## 13118 Heterosexual (straight)            Always
## 13119                Bisexual         Sometimes
## 13120 Heterosexual (straight)  Most of the time
## 13121 Heterosexual (straight)         Sometimes
## 13122                Not sure         Sometimes
## 13123 Heterosexual (straight)         Sometimes
## 13124 Heterosexual (straight)         Sometimes
## 13125 Heterosexual (straight)         Sometimes
## 13126 Heterosexual (straight)         Sometimes
## 13127 Heterosexual (straight)            Rarely
## 13128 Heterosexual (straight)            Rarely
## 13129 Heterosexual (straight)             Never
## 13130 Heterosexual (straight)         Sometimes
## 13131 Heterosexual (straight)         Sometimes
## 13132 Heterosexual (straight)             Never
## 13133 Heterosexual (straight)  Most of the time
## 13134 Heterosexual (straight)            Rarely
## 13135                Bisexual  Most of the time
## 13136 Heterosexual (straight)            Rarely
## 13137 Heterosexual (straight)             Never
## 13138 Heterosexual (straight)             Never
## 13139                Bisexual         Sometimes
## 13140 Heterosexual (straight)             Never
## 13141 Heterosexual (straight)            Rarely
## 13142 Heterosexual (straight)  Most of the time
## 13143 Heterosexual (straight)         Sometimes
## 13144 Heterosexual (straight)  Most of the time
## 13145 Heterosexual (straight)             Never
## 13146 Heterosexual (straight)            Rarely
## 13147 Heterosexual (straight)             Never
## 13148 Heterosexual (straight)             Never
## 13149 Heterosexual (straight)            Rarely
## 13150                Not sure         Sometimes
## 13151 Heterosexual (straight)         Sometimes
## 13152                Bisexual            Rarely
## 13153 Heterosexual (straight)            Rarely
## 13154 Heterosexual (straight)         Sometimes
## 13155 Heterosexual (straight)         Sometimes
## 13156 Heterosexual (straight)         Sometimes
## 13157 Heterosexual (straight)             Never
## 13158 Heterosexual (straight)             Never
## 13159          Some other way            Always
## 13160          Some other way         Sometimes
## 13161 Heterosexual (straight)  Most of the time
## 13162 Heterosexual (straight)             Never
## 13163 Heterosexual (straight)             Never
## 13164                Bisexual            Rarely
## 13165          Some other way            Always
## 13166          Gay or lesbian  Most of the time
## 13167 Heterosexual (straight)            Rarely
## 13168 Heterosexual (straight)         Sometimes
## 13169 Heterosexual (straight)             Never
## 13170 Heterosexual (straight)            Rarely
## 13171 Heterosexual (straight)  Most of the time
## 13172 Heterosexual (straight)            Rarely
## 13173 Heterosexual (straight)  Most of the time
## 13174 Heterosexual (straight)         Sometimes
## 13175 Heterosexual (straight)         Sometimes
## 13176 Heterosexual (straight)         Sometimes
## 13177 Heterosexual (straight)             Never
## 13178 Heterosexual (straight)            Rarely
## 13179                Not sure         Sometimes
## 13180 Heterosexual (straight)         Sometimes
## 13181 Heterosexual (straight)             Never
## 13182 Heterosexual (straight)  Most of the time
## 13183 Heterosexual (straight)  Most of the time
## 13184 Heterosexual (straight)         Sometimes
## 13185 Heterosexual (straight)            Rarely
## 13186 Heterosexual (straight)         Sometimes
## 13187                Bisexual         Sometimes
## 13188          Some other way            Rarely
## 13189 Heterosexual (straight)             Never
## 13190 Heterosexual (straight)            Rarely
## 13191 Heterosexual (straight)         Sometimes
## 13192 Heterosexual (straight)             Never
## 13193 Heterosexual (straight)         Sometimes
## 13194                Bisexual            Rarely
## 13195 Heterosexual (straight)         Sometimes
## 13196 Heterosexual (straight)         Sometimes
## 13197          Gay or lesbian            Rarely
## 13198 Heterosexual (straight)             Never
## 13199 Heterosexual (straight)            Rarely
## 13200 Heterosexual (straight)              <NA>
## 13201          Gay or lesbian            Always
## 13202 Heterosexual (straight)         Sometimes
## 13203 Heterosexual (straight)  Most of the time
## 13204 Heterosexual (straight)  Most of the time
## 13205 Heterosexual (straight)  Most of the time
## 13206 Heterosexual (straight)             Never
## 13207 Heterosexual (straight)         Sometimes
## 13208                Bisexual  Most of the time
## 13209          Some other way         Sometimes
## 13210                Bisexual  Most of the time
## 13211          Some other way  Most of the time
## 13212 Heterosexual (straight)         Sometimes
## 13213 Heterosexual (straight)            Always
## 13214 Heterosexual (straight)  Most of the time
## 13215 Heterosexual (straight)  Most of the time
## 13216 Heterosexual (straight)            Rarely
## 13217 Heterosexual (straight)         Sometimes
## 13218                Bisexual            Always
## 13219 Heterosexual (straight)            Rarely
## 13220 Heterosexual (straight)            Rarely
## 13221 Heterosexual (straight)            Always
## 13222          Some other way            Always
## 13223 Heterosexual (straight)         Sometimes
## 13224          Some other way            Always
## 13225                Bisexual  Most of the time
## 13226 Heterosexual (straight)            Rarely
## 13227 Heterosexual (straight)            Rarely
## 13228 Heterosexual (straight)         Sometimes
## 13229                Bisexual             Never
## 13230 Heterosexual (straight)             Never
## 13231                Not sure             Never
## 13232          Some other way            Rarely
## 13233 Heterosexual (straight)         Sometimes
## 13234          Some other way  Most of the time
## 13235                Bisexual            Rarely
## 13236 Heterosexual (straight)             Never
## 13237          Some other way            Always
## 13238 Heterosexual (straight)         Sometimes
## 13239 Heterosexual (straight)            Rarely
## 13240 Heterosexual (straight)              <NA>
## 13241 Heterosexual (straight)         Sometimes
## 13242 Heterosexual (straight)  Most of the time
## 13243 Heterosexual (straight)             Never
## 13244                Bisexual            Rarely
## 13245                Bisexual            Always
## 13246          Some other way  Most of the time
## 13247 Heterosexual (straight)             Never
## 13248 Heterosexual (straight)             Never
## 13249 Heterosexual (straight)         Sometimes
## 13250 Heterosexual (straight)            Rarely
## 13251 Heterosexual (straight)         Sometimes
## 13252 Heterosexual (straight)         Sometimes
## 13253 Heterosexual (straight)         Sometimes
## 13254 Heterosexual (straight)         Sometimes
## 13255 Heterosexual (straight)            Rarely
## 13256 Heterosexual (straight)            Rarely
## 13257                Bisexual              <NA>
## 13258 Heterosexual (straight)         Sometimes
## 13259 Heterosexual (straight)  Most of the time
## 13260 Heterosexual (straight)            Always
## 13261                Bisexual  Most of the time
## 13262 Heterosexual (straight)            Rarely
## 13263 Heterosexual (straight)  Most of the time
## 13264 Heterosexual (straight)  Most of the time
## 13265 Heterosexual (straight)             Never
## 13266 Heterosexual (straight)         Sometimes
## 13267 Heterosexual (straight)         Sometimes
## 13268 Heterosexual (straight)            Always
## 13269 Heterosexual (straight)            Always
## 13270 Heterosexual (straight)             Never
## 13271 Heterosexual (straight)             Never
## 13272 Heterosexual (straight)             Never
## 13273 Heterosexual (straight)  Most of the time
## 13274          Gay or lesbian            Always
## 13275 Heterosexual (straight)         Sometimes
## 13276 Heterosexual (straight)         Sometimes
## 13277 Heterosexual (straight)            Rarely
## 13278 Heterosexual (straight)             Never
## 13279 Heterosexual (straight)             Never
## 13280 Heterosexual (straight)            Rarely
## 13281 Heterosexual (straight)             Never
## 13282 Heterosexual (straight)            Rarely
## 13283 Heterosexual (straight)         Sometimes
## 13284 Heterosexual (straight)  Most of the time
## 13285 Heterosexual (straight)  Most of the time
## 13286 Heterosexual (straight)            Rarely
## 13287 Heterosexual (straight)  Most of the time
## 13288 Heterosexual (straight)            Rarely
## 13289 Heterosexual (straight)            Rarely
## 13290 Heterosexual (straight)         Sometimes
## 13291 Heterosexual (straight)             Never
## 13292                Bisexual            Always
## 13293                Bisexual         Sometimes
## 13294 Heterosexual (straight)         Sometimes
## 13295 Heterosexual (straight)             Never
## 13296 Heterosexual (straight)  Most of the time
## 13297 Heterosexual (straight)            Rarely
## 13298 Heterosexual (straight)             Never
## 13299 Heterosexual (straight)             Never
## 13300 Heterosexual (straight)            Always
## 13301 Heterosexual (straight)         Sometimes
## 13302 Heterosexual (straight)            Always
## 13303 Heterosexual (straight)         Sometimes
## 13304 Heterosexual (straight)            Rarely
## 13305                Not sure            Rarely
## 13306 Heterosexual (straight)              <NA>
## 13307 Heterosexual (straight)             Never
## 13308 Heterosexual (straight)              <NA>
## 13309 Heterosexual (straight)         Sometimes
## 13310          Gay or lesbian              <NA>
## 13311                Not sure             Never
## 13312                Bisexual            Rarely
## 13313 Heterosexual (straight)              <NA>
## 13314 Heterosexual (straight)             Never
## 13315 Heterosexual (straight)            Rarely
## 13316 Heterosexual (straight)             Never
## 13317 Heterosexual (straight)  Most of the time
## 13318 Heterosexual (straight)            Rarely
## 13319                Bisexual            Always
## 13320 Heterosexual (straight)             Never
## 13321 Heterosexual (straight)  Most of the time
## 13322 Heterosexual (straight)  Most of the time
## 13323          Some other way  Most of the time
## 13324          Some other way  Most of the time
## 13325          Some other way         Sometimes
## 13326 Heterosexual (straight)             Never
## 13327                Bisexual         Sometimes
## 13328          Some other way            Always
## 13329 Heterosexual (straight)             Never
## 13330 Heterosexual (straight)         Sometimes
## 13331 Heterosexual (straight)            Rarely
## 13332 Heterosexual (straight)            Rarely
## 13333                Bisexual            Always
## 13334 Heterosexual (straight)         Sometimes
## 13335 Heterosexual (straight)         Sometimes
## 13336 Heterosexual (straight)         Sometimes
## 13337 Heterosexual (straight)  Most of the time
## 13338 Heterosexual (straight)             Never
## 13339 Heterosexual (straight)         Sometimes
## 13340 Heterosexual (straight)  Most of the time
## 13341 Heterosexual (straight)         Sometimes
## 13342 Heterosexual (straight)         Sometimes
## 13343 Heterosexual (straight)         Sometimes
## 13344                Bisexual            Always
## 13345                Not sure             Never
## 13346                Not sure  Most of the time
## 13347 Heterosexual (straight)            Rarely
## 13348 Heterosexual (straight)            Always
## 13349                Not sure  Most of the time
## 13350 Heterosexual (straight)         Sometimes
## 13351 Heterosexual (straight)         Sometimes
## 13352 Heterosexual (straight)             Never
## 13353 Heterosexual (straight)            Rarely
## 13354 Heterosexual (straight)  Most of the time
## 13355 Heterosexual (straight)  Most of the time
## 13356 Heterosexual (straight)         Sometimes
## 13357                Bisexual             Never
## 13358 Heterosexual (straight)            Rarely
## 13359 Heterosexual (straight)            Rarely
## 13360          Gay or lesbian            Always
## 13361 Heterosexual (straight)            Rarely
## 13362 Heterosexual (straight)            Rarely
## 13363 Heterosexual (straight)             Never
## 13364 Heterosexual (straight)         Sometimes
## 13365 Heterosexual (straight)         Sometimes
## 13366                Bisexual  Most of the time
## 13367 Heterosexual (straight)             Never
## 13368 Heterosexual (straight)             Never
## 13369 Heterosexual (straight)         Sometimes
## 13370 Heterosexual (straight)             Never
## 13371                Bisexual            Always
## 13372 Heterosexual (straight)  Most of the time
## 13373                Bisexual            Always
## 13374                Bisexual            Always
## 13375 Heterosexual (straight)         Sometimes
## 13376          Gay or lesbian             Never
## 13377 Heterosexual (straight)            Rarely
## 13378 Heterosexual (straight)            Always
## 13379                Bisexual            Rarely
## 13380 Heterosexual (straight)            Rarely
## 13381                Bisexual              <NA>
## 13382 Heterosexual (straight)         Sometimes
## 13383 Heterosexual (straight)             Never
## 13384 Heterosexual (straight)         Sometimes
## 13385 Heterosexual (straight)             Never
## 13386 Heterosexual (straight)             Never
## 13387 Heterosexual (straight)            Rarely
## 13388 Heterosexual (straight)             Never
## 13389          Some other way            Always
## 13390 Heterosexual (straight)            Rarely
## 13391 Heterosexual (straight)  Most of the time
## 13392 Heterosexual (straight)             Never
## 13393 Heterosexual (straight)  Most of the time
## 13394 Heterosexual (straight)  Most of the time
## 13395 Heterosexual (straight)         Sometimes
## 13396 Heterosexual (straight)         Sometimes
## 13397 Heterosexual (straight)             Never
## 13398 Heterosexual (straight)            Rarely
## 13399 Heterosexual (straight)  Most of the time
## 13400 Heterosexual (straight)             Never
## 13401                Bisexual            Rarely
## 13402 Heterosexual (straight)  Most of the time
## 13403 Heterosexual (straight)              <NA>
## 13404 Heterosexual (straight)  Most of the time
## 13405                Bisexual  Most of the time
## 13406                Bisexual  Most of the time
## 13407 Heterosexual (straight)            Always
## 13408 Heterosexual (straight)  Most of the time
## 13409 Heterosexual (straight)  Most of the time
## 13410                Bisexual  Most of the time
## 13411 Heterosexual (straight)            Rarely
## 13412 Heterosexual (straight)         Sometimes
## 13413 Heterosexual (straight)            Rarely
## 13414 Heterosexual (straight)  Most of the time
## 13415                Not sure         Sometimes
## 13416 Heterosexual (straight)            Rarely
## 13417          Gay or lesbian  Most of the time
## 13418 Heterosexual (straight)            Rarely
## 13419 Heterosexual (straight)             Never
## 13420 Heterosexual (straight)            Rarely
## 13421          Gay or lesbian             Never
## 13422 Heterosexual (straight)         Sometimes
## 13423                Bisexual  Most of the time
## 13424 Heterosexual (straight)            Rarely
## 13425 Heterosexual (straight)            Rarely
## 13426 Heterosexual (straight)            Rarely
## 13427                Not sure            Rarely
## 13428          Gay or lesbian         Sometimes
## 13429                Not sure  Most of the time
## 13430 Heterosexual (straight)         Sometimes
## 13431                Bisexual            Rarely
## 13432 Heterosexual (straight)         Sometimes
## 13433 Heterosexual (straight)         Sometimes
## 13434 Heterosexual (straight)            Always
## 13435 Heterosexual (straight)         Sometimes
## 13436 Heterosexual (straight)            Rarely
## 13437 Heterosexual (straight)            Rarely
## 13438                Not sure         Sometimes
## 13439          Gay or lesbian         Sometimes
## 13440 Heterosexual (straight)         Sometimes
## 13441 Heterosexual (straight)         Sometimes
## 13442 Heterosexual (straight)            Rarely
## 13443 Heterosexual (straight)            Rarely
## 13444 Heterosexual (straight)  Most of the time
## 13445 Heterosexual (straight)            Always
## 13446 Heterosexual (straight)  Most of the time
## 13447 Heterosexual (straight)         Sometimes
## 13448 Heterosexual (straight)         Sometimes
## 13449 Heterosexual (straight)            Rarely
## 13450 Heterosexual (straight)             Never
## 13451 Heterosexual (straight)             Never
## 13452          Gay or lesbian         Sometimes
## 13453 Heterosexual (straight)  Most of the time
## 13454                Not sure  Most of the time
## 13455 Heterosexual (straight)            Always
## 13456 Heterosexual (straight)         Sometimes
## 13457                Bisexual         Sometimes
## 13458 Heterosexual (straight)            Rarely
## 13459                Bisexual         Sometimes
## 13460 Heterosexual (straight)            Always
## 13461 Heterosexual (straight)         Sometimes
## 13462                Bisexual         Sometimes
## 13463                Not sure            Always
## 13464          Some other way         Sometimes
## 13465                Not sure         Sometimes
## 13466 Heterosexual (straight)         Sometimes
## 13467          Gay or lesbian  Most of the time
## 13468 Heterosexual (straight)  Most of the time
## 13469 Heterosexual (straight)             Never
## 13470                Bisexual  Most of the time
## 13471 Heterosexual (straight)         Sometimes
## 13472 Heterosexual (straight)            Always
## 13473 Heterosexual (straight)  Most of the time
## 13474 Heterosexual (straight)         Sometimes
## 13475                Bisexual  Most of the time
## 13476                Bisexual  Most of the time
## 13477 Heterosexual (straight)         Sometimes
## 13478                Not sure         Sometimes
## 13479                Bisexual         Sometimes
## 13480 Heterosexual (straight)         Sometimes
## 13481 Heterosexual (straight)         Sometimes
## 13482 Heterosexual (straight)         Sometimes
## 13483 Heterosexual (straight)  Most of the time
## 13484 Heterosexual (straight)            Rarely
## 13485          Some other way  Most of the time
## 13486                Bisexual         Sometimes
## 13487 Heterosexual (straight)            Rarely
## 13488 Heterosexual (straight)  Most of the time
## 13489 Heterosexual (straight)              <NA>
## 13490 Heterosexual (straight)             Never
## 13491 Heterosexual (straight)         Sometimes
## 13492 Heterosexual (straight)         Sometimes
## 13493 Heterosexual (straight)         Sometimes
## 13494 Heterosexual (straight)            Rarely
## 13495                Not sure            Rarely
## 13496 Heterosexual (straight)             Never
## 13497 Heterosexual (straight)            Always
## 13498                Bisexual  Most of the time
## 13499 Heterosexual (straight)              <NA>
## 13500 Heterosexual (straight)         Sometimes
## 13501          Gay or lesbian            Always
## 13502 Heterosexual (straight)            Rarely
## 13503          Gay or lesbian            Rarely
## 13504                Not sure         Sometimes
## 13505 Heterosexual (straight)            Rarely
## 13506 Heterosexual (straight)  Most of the time
## 13507 Heterosexual (straight)  Most of the time
## 13508                Bisexual         Sometimes
## 13509 Heterosexual (straight)             Never
## 13510 Heterosexual (straight)             Never
## 13511                Not sure         Sometimes
## 13512 Heterosexual (straight)         Sometimes
## 13513          Some other way            Always
## 13514 Heterosexual (straight)         Sometimes
## 13515 Heterosexual (straight)         Sometimes
## 13516 Heterosexual (straight)         Sometimes
## 13517 Heterosexual (straight)  Most of the time
## 13518 Heterosexual (straight)  Most of the time
## 13519 Heterosexual (straight)         Sometimes
## 13520 Heterosexual (straight)  Most of the time
## 13521 Heterosexual (straight)             Never
## 13522 Heterosexual (straight)            Rarely
## 13523 Heterosexual (straight)            Rarely
## 13524          Some other way         Sometimes
## 13525          Some other way            Always
## 13526          Gay or lesbian            Rarely
## 13527          Some other way  Most of the time
## 13528 Heterosexual (straight)            Rarely
## 13529                Not sure         Sometimes
## 13530 Heterosexual (straight)  Most of the time
## 13531 Heterosexual (straight)            Always
## 13532 Heterosexual (straight)  Most of the time
## 13533 Heterosexual (straight)             Never
## 13534                Bisexual  Most of the time
## 13535 Heterosexual (straight)            Rarely
## 13536 Heterosexual (straight)         Sometimes
## 13537                Bisexual            Rarely
## 13538 Heterosexual (straight)            Rarely
## 13539 Heterosexual (straight)            Rarely
## 13540          Some other way         Sometimes
## 13541 Heterosexual (straight)            Rarely
## 13542 Heterosexual (straight)            Rarely
## 13543 Heterosexual (straight)            Rarely
## 13544                Not sure         Sometimes
## 13545                Not sure  Most of the time
## 13546 Heterosexual (straight)         Sometimes
## 13547 Heterosexual (straight)         Sometimes
## 13548                Bisexual  Most of the time
## 13549                Bisexual            Rarely
## 13550 Heterosexual (straight)         Sometimes
## 13551                Not sure         Sometimes
## 13552 Heterosexual (straight)         Sometimes
## 13553 Heterosexual (straight)            Always
## 13554 Heterosexual (straight)            Always
## 13555 Heterosexual (straight)         Sometimes
## 13556 Heterosexual (straight)            Rarely
## 13557 Heterosexual (straight)            Always
## 13558 Heterosexual (straight)         Sometimes
## 13559 Heterosexual (straight)             Never
## 13560 Heterosexual (straight)  Most of the time
## 13561 Heterosexual (straight)         Sometimes
## 13562 Heterosexual (straight)            Rarely
## 13563 Heterosexual (straight)            Rarely
## 13564          Gay or lesbian            Always
## 13565 Heterosexual (straight)         Sometimes
## 13566 Heterosexual (straight)             Never
## 13567 Heterosexual (straight)             Never
## 13568 Heterosexual (straight)            Always
## 13569 Heterosexual (straight)            Always
## 13570                Bisexual  Most of the time
## 13571                Bisexual            Always
## 13572                Bisexual  Most of the time
## 13573 Heterosexual (straight)            Rarely
## 13574 Heterosexual (straight)  Most of the time
## 13575                Bisexual            Always
## 13576          Gay or lesbian         Sometimes
## 13577 Heterosexual (straight)             Never
## 13578          Some other way  Most of the time
## 13579                Bisexual         Sometimes
## 13580                Bisexual  Most of the time
## 13581 Heterosexual (straight)            Rarely
## 13582 Heterosexual (straight)            Rarely
## 13583          Gay or lesbian            Always
## 13584 Heterosexual (straight)            Rarely
## 13585 Heterosexual (straight)         Sometimes
## 13586 Heterosexual (straight)             Never
## 13587 Heterosexual (straight)  Most of the time
## 13588          Some other way            Rarely
## 13589 Heterosexual (straight)         Sometimes
## 13590 Heterosexual (straight)         Sometimes
## 13591 Heterosexual (straight)            Rarely
## 13592 Heterosexual (straight)            Rarely
## 13593 Heterosexual (straight)             Never
## 13594          Some other way  Most of the time
## 13595          Some other way  Most of the time
## 13596 Heterosexual (straight)             Never
## 13597 Heterosexual (straight)         Sometimes
## 13598          Some other way            Always
## 13599 Heterosexual (straight)         Sometimes
## 13600 Heterosexual (straight)            Rarely
## 13601                Bisexual            Always
## 13602 Heterosexual (straight)         Sometimes
## 13603 Heterosexual (straight)             Never
## 13604 Heterosexual (straight)            Rarely
## 13605 Heterosexual (straight)         Sometimes
## 13606 Heterosexual (straight)  Most of the time
## 13607 Heterosexual (straight)            Rarely
## 13608 Heterosexual (straight)            Rarely
## 13609 Heterosexual (straight)         Sometimes
## 13610 Heterosexual (straight)         Sometimes
## 13611 Heterosexual (straight)         Sometimes
## 13612 Heterosexual (straight)             Never
## 13613 Heterosexual (straight)         Sometimes
## 13614 Heterosexual (straight)  Most of the time
## 13615 Heterosexual (straight)             Never
## 13616 Heterosexual (straight)            Rarely
## 13617 Heterosexual (straight)         Sometimes
## 13618 Heterosexual (straight)  Most of the time
## 13619 Heterosexual (straight)            Always
## 13620 Heterosexual (straight)         Sometimes
## 13621 Heterosexual (straight)            Rarely
## 13622          Gay or lesbian  Most of the time
## 13623 Heterosexual (straight)              <NA>
## 13624                Not sure            Rarely
## 13625 Heterosexual (straight)             Never
## 13626                Not sure         Sometimes
## 13627 Heterosexual (straight)             Never
## 13628                Not sure         Sometimes
## 13629 Heterosexual (straight)            Rarely
## 13630 Heterosexual (straight)         Sometimes
## 13631                Bisexual              <NA>
## 13632 Heterosexual (straight)            Always
## 13633                Bisexual             Never
## 13634 Heterosexual (straight)            Rarely
## 13635 Heterosexual (straight)             Never
## 13636 Heterosexual (straight)  Most of the time
## 13637                Not sure         Sometimes
## 13638                Bisexual  Most of the time
## 13639 Heterosexual (straight)         Sometimes
## 13640 Heterosexual (straight)             Never
## 13641          Gay or lesbian            Always
## 13642          Some other way            Always
## 13643                Bisexual            Always
## 13644                Not sure            Always
## 13645          Gay or lesbian            Always
## 13646 Heterosexual (straight)             Never
## 13647 Heterosexual (straight)         Sometimes
## 13648 Heterosexual (straight)            Always
## 13649 Heterosexual (straight)            Rarely
## 13650 Heterosexual (straight)             Never
## 13651 Heterosexual (straight)  Most of the time
## 13652 Heterosexual (straight)             Never
## 13653 Heterosexual (straight)              <NA>
## 13654 Heterosexual (straight)  Most of the time
## 13655 Heterosexual (straight)            Rarely
## 13656 Heterosexual (straight)              <NA>
## 13657          Some other way  Most of the time
## 13658 Heterosexual (straight)  Most of the time
## 13659 Heterosexual (straight)         Sometimes
## 13660                Not sure         Sometimes
## 13661 Heterosexual (straight)             Never
## 13662          Some other way  Most of the time
## 13663                Not sure         Sometimes
## 13664 Heterosexual (straight)         Sometimes
## 13665 Heterosexual (straight)             Never
## 13666          Some other way         Sometimes
## 13667 Heterosexual (straight)             Never
## 13668 Heterosexual (straight)         Sometimes
## 13669                Not sure  Most of the time
## 13670 Heterosexual (straight)            Always
## 13671                Bisexual            Always
## 13672 Heterosexual (straight)         Sometimes
## 13673 Heterosexual (straight)  Most of the time
## 13674 Heterosexual (straight)            Rarely
## 13675                Not sure            Rarely
## 13676 Heterosexual (straight)            Always
## 13677 Heterosexual (straight)            Always
## 13678 Heterosexual (straight)            Rarely
## 13679 Heterosexual (straight)  Most of the time
## 13680 Heterosexual (straight)         Sometimes
## 13681 Heterosexual (straight)  Most of the time
## 13682                Bisexual            Rarely
## 13683 Heterosexual (straight)         Sometimes
## 13684 Heterosexual (straight)            Always
## 13685 Heterosexual (straight)         Sometimes
## 13686 Heterosexual (straight)  Most of the time
## 13687 Heterosexual (straight)  Most of the time
## 13688 Heterosexual (straight)            Rarely
## 13689 Heterosexual (straight)  Most of the time
## 13690 Heterosexual (straight)            Rarely
## 13691 Heterosexual (straight)         Sometimes
## 13692 Heterosexual (straight)            Rarely
## 13693 Heterosexual (straight)         Sometimes
## 13694                Bisexual         Sometimes
## 13695 Heterosexual (straight)             Never
## 13696 Heterosexual (straight)             Never
## 13697 Heterosexual (straight)             Never
## 13698 Heterosexual (straight)         Sometimes
## 13699                Bisexual             Never
## 13700          Some other way         Sometimes
## 13701 Heterosexual (straight)         Sometimes
## 13702                Not sure            Always
## 13703 Heterosexual (straight)            Rarely
## 13704 Heterosexual (straight)         Sometimes
## 13705                Bisexual            Always
## 13706                Not sure             Never
## 13707                Bisexual  Most of the time
## 13708 Heterosexual (straight)         Sometimes
## 13709 Heterosexual (straight)            Rarely
## 13710 Heterosexual (straight)         Sometimes
## 13711 Heterosexual (straight)         Sometimes
## 13712 Heterosexual (straight)            Rarely
## 13713                Bisexual         Sometimes
## 13714                Bisexual         Sometimes
## 13715          Some other way            Always
## 13716                Bisexual         Sometimes
## 13717 Heterosexual (straight)         Sometimes
## 13718                Bisexual         Sometimes
## 13719                Bisexual         Sometimes
## 13720                Bisexual  Most of the time
## 13721 Heterosexual (straight)         Sometimes
## 13722                Not sure         Sometimes
## 13723 Heterosexual (straight)         Sometimes
## 13724 Heterosexual (straight)             Never
## 13725 Heterosexual (straight)             Never
## 13726 Heterosexual (straight)            Rarely
## 13727 Heterosexual (straight)             Never
## 13728 Heterosexual (straight)  Most of the time
## 13729 Heterosexual (straight)            Always
## 13730 Heterosexual (straight)            Rarely
## 13731 Heterosexual (straight)             Never
## 13732 Heterosexual (straight)             Never
## 13733                Not sure         Sometimes
## 13734 Heterosexual (straight)         Sometimes
## 13735 Heterosexual (straight)         Sometimes
## 13736 Heterosexual (straight)         Sometimes
## 13737          Gay or lesbian            Rarely
## 13738                Bisexual  Most of the time
## 13739                Not sure            Rarely
## 13740 Heterosexual (straight)             Never
## 13741 Heterosexual (straight)            Rarely
## 13742 Heterosexual (straight)            Rarely
## 13743 Heterosexual (straight)             Never
## 13744 Heterosexual (straight)         Sometimes
## 13745 Heterosexual (straight)             Never
## 13746 Heterosexual (straight)  Most of the time
## 13747 Heterosexual (straight)         Sometimes
## 13748 Heterosexual (straight)         Sometimes
## 13749 Heterosexual (straight)             Never
## 13750 Heterosexual (straight)             Never
## 13751                Bisexual  Most of the time
## 13752 Heterosexual (straight)         Sometimes
## 13753 Heterosexual (straight)            Rarely
## 13754 Heterosexual (straight)  Most of the time
## 13755                Bisexual         Sometimes
## 13756 Heterosexual (straight)  Most of the time
## 13757 Heterosexual (straight)            Rarely
## 13758                Bisexual         Sometimes
## 13759 Heterosexual (straight)  Most of the time
## 13760 Heterosexual (straight)         Sometimes
## 13761 Heterosexual (straight)         Sometimes
## 13762 Heterosexual (straight)             Never
## 13763 Heterosexual (straight)         Sometimes
## 13764 Heterosexual (straight)              <NA>
## 13765 Heterosexual (straight)            Rarely
## 13766 Heterosexual (straight)             Never
## 13767                Bisexual         Sometimes
## 13768 Heterosexual (straight)            Rarely
## 13769 Heterosexual (straight)         Sometimes
## 13770          Some other way         Sometimes
## 13771 Heterosexual (straight)         Sometimes
## 13772 Heterosexual (straight)  Most of the time
## 13773 Heterosexual (straight)            Rarely
## 13774                Bisexual            Always
## 13775 Heterosexual (straight)            Rarely
## 13776          Some other way  Most of the time
## 13777 Heterosexual (straight)              <NA>
## 13778 Heterosexual (straight)            Rarely
## 13779 Heterosexual (straight)         Sometimes
## 13780 Heterosexual (straight)  Most of the time
## 13781 Heterosexual (straight)  Most of the time
## 13782 Heterosexual (straight)         Sometimes
## 13783 Heterosexual (straight)            Rarely
## 13784 Heterosexual (straight)         Sometimes
## 13785 Heterosexual (straight)  Most of the time
## 13786 Heterosexual (straight)             Never
## 13787 Heterosexual (straight)            Rarely
## 13788          Gay or lesbian            Always
## 13789                Bisexual  Most of the time
## 13790 Heterosexual (straight)             Never
## 13791 Heterosexual (straight)         Sometimes
## 13792 Heterosexual (straight)            Rarely
## 13793 Heterosexual (straight)            Rarely
## 13794                Bisexual            Always
## 13795 Heterosexual (straight)         Sometimes
## 13796 Heterosexual (straight)         Sometimes
## 13797 Heterosexual (straight)              <NA>
## 13798 Heterosexual (straight)              <NA>
## 13799 Heterosexual (straight)            Rarely
## 13800 Heterosexual (straight)            Rarely
## 13801          Some other way  Most of the time
## 13802 Heterosexual (straight)         Sometimes
## 13803 Heterosexual (straight)         Sometimes
## 13804 Heterosexual (straight)            Rarely
## 13805 Heterosexual (straight)             Never
## 13806 Heterosexual (straight)         Sometimes
## 13807                Bisexual  Most of the time
## 13808          Some other way            Always
## 13809 Heterosexual (straight)            Rarely
## 13810 Heterosexual (straight)         Sometimes
## 13811 Heterosexual (straight)         Sometimes
## 13812 Heterosexual (straight)         Sometimes
## 13813 Heterosexual (straight)         Sometimes
## 13814 Heterosexual (straight)            Rarely
## 13815                Bisexual  Most of the time
## 13816 Heterosexual (straight)            Rarely
## 13817 Heterosexual (straight)  Most of the time
## 13818 Heterosexual (straight)            Rarely
## 13819 Heterosexual (straight)            Rarely
## 13820 Heterosexual (straight)            Always
## 13821 Heterosexual (straight)             Never
## 13822 Heterosexual (straight)            Rarely
## 13823 Heterosexual (straight)         Sometimes
## 13824 Heterosexual (straight)            Always
## 13825                Bisexual  Most of the time
## 13826 Heterosexual (straight)            Rarely
## 13827 Heterosexual (straight)            Rarely
## 13828 Heterosexual (straight)  Most of the time
## 13829 Heterosexual (straight)  Most of the time
## 13830 Heterosexual (straight)            Rarely
## 13831 Heterosexual (straight)         Sometimes
## 13832 Heterosexual (straight)         Sometimes
## 13833                Bisexual  Most of the time
## 13834 Heterosexual (straight)         Sometimes
## 13835 Heterosexual (straight)             Never
## 13836 Heterosexual (straight)            Rarely
## 13837 Heterosexual (straight)            Rarely
## 13838 Heterosexual (straight)  Most of the time
## 13839 Heterosexual (straight)         Sometimes
## 13840 Heterosexual (straight)             Never
## 13841 Heterosexual (straight)            Rarely
## 13842 Heterosexual (straight)         Sometimes
## 13843 Heterosexual (straight)             Never
## 13844                Not sure  Most of the time
## 13845 Heterosexual (straight)             Never
## 13846 Heterosexual (straight)             Never
## 13847 Heterosexual (straight)             Never
## 13848 Heterosexual (straight)         Sometimes
## 13849          Gay or lesbian  Most of the time
## 13850 Heterosexual (straight)            Rarely
## 13851                Bisexual         Sometimes
## 13852 Heterosexual (straight)            Rarely
## 13853                Not sure  Most of the time
## 13854 Heterosexual (straight)  Most of the time
## 13855                Not sure              <NA>
## 13856                Bisexual  Most of the time
## 13857 Heterosexual (straight)  Most of the time
## 13858          Gay or lesbian  Most of the time
## 13859 Heterosexual (straight)  Most of the time
## 13860 Heterosexual (straight)  Most of the time
## 13861                Bisexual  Most of the time
## 13862 Heterosexual (straight)         Sometimes
## 13863 Heterosexual (straight)         Sometimes
## 13864 Heterosexual (straight)              <NA>
## 13865 Heterosexual (straight)             Never
## 13866 Heterosexual (straight)             Never
## 13867 Heterosexual (straight)  Most of the time
## 13868 Heterosexual (straight)            Rarely
## 13869 Heterosexual (straight)            Always
## 13870 Heterosexual (straight)            Rarely
## 13871 Heterosexual (straight)  Most of the time
## 13872          Gay or lesbian         Sometimes
## 13873 Heterosexual (straight)             Never
## 13874 Heterosexual (straight)            Rarely
## 13875 Heterosexual (straight)         Sometimes
## 13876          Some other way            Rarely
## 13877 Heterosexual (straight)         Sometimes
## 13878 Heterosexual (straight)         Sometimes
## 13879 Heterosexual (straight)             Never
## 13880 Heterosexual (straight)            Rarely
## 13881          Some other way  Most of the time
## 13882 Heterosexual (straight)             Never
## 13883 Heterosexual (straight)            Rarely
## 13884 Heterosexual (straight)         Sometimes
## 13885                Bisexual            Rarely
## 13886 Heterosexual (straight)         Sometimes
## 13887 Heterosexual (straight)         Sometimes
## 13888          Gay or lesbian            Always
## 13889                Bisexual         Sometimes
## 13890                Bisexual         Sometimes
## 13891          Some other way         Sometimes
## 13892          Some other way            Rarely
## 13893 Heterosexual (straight)             Never
## 13894 Heterosexual (straight)              <NA>
## 13895 Heterosexual (straight)         Sometimes
## 13896                Not sure         Sometimes
## 13897 Heterosexual (straight)  Most of the time
## 13898 Heterosexual (straight)         Sometimes
## 13899 Heterosexual (straight)  Most of the time
## 13900 Heterosexual (straight)             Never
## 13901 Heterosexual (straight)         Sometimes
## 13902 Heterosexual (straight)  Most of the time
## 13903 Heterosexual (straight)             Never
## 13904 Heterosexual (straight)            Always
## 13905          Gay or lesbian         Sometimes
## 13906                Not sure  Most of the time
## 13907 Heterosexual (straight)         Sometimes
## 13908 Heterosexual (straight)             Never
## 13909 Heterosexual (straight)             Never
## 13910 Heterosexual (straight)            Rarely
## 13911 Heterosexual (straight)             Never
## 13912 Heterosexual (straight)            Rarely
## 13913 Heterosexual (straight)  Most of the time
## 13914 Heterosexual (straight)             Never
## 13915 Heterosexual (straight)  Most of the time
## 13916 Heterosexual (straight)            Rarely
## 13917 Heterosexual (straight)            Always
## 13918          Some other way  Most of the time
## 13919 Heterosexual (straight)         Sometimes
## 13920          Some other way  Most of the time
## 13921 Heterosexual (straight)         Sometimes
## 13922 Heterosexual (straight)            Rarely
## 13923 Heterosexual (straight)            Rarely
## 13924 Heterosexual (straight)            Rarely
## 13925 Heterosexual (straight)         Sometimes
## 13926                Bisexual  Most of the time
## 13927 Heterosexual (straight)            Rarely
## 13928                Not sure         Sometimes
## 13929          Some other way  Most of the time
## 13930 Heterosexual (straight)  Most of the time
## 13931          Gay or lesbian              <NA>
## 13932 Heterosexual (straight)            Always
## 13933                Bisexual            Rarely
## 13934 Heterosexual (straight)         Sometimes
## 13935                Bisexual  Most of the time
## 13936 Heterosexual (straight)             Never
## 13937 Heterosexual (straight)            Rarely
## 13938 Heterosexual (straight)            Always
## 13939                Bisexual         Sometimes
## 13940 Heterosexual (straight)  Most of the time
## 13941          Gay or lesbian  Most of the time
## 13942                Bisexual  Most of the time
## 13943 Heterosexual (straight)            Always
## 13944 Heterosexual (straight)         Sometimes
## 13945                Not sure  Most of the time
## 13946                Bisexual  Most of the time
## 13947 Heterosexual (straight)  Most of the time
## 13948 Heterosexual (straight)            Rarely
## 13949 Heterosexual (straight)            Rarely
## 13950 Heterosexual (straight)         Sometimes
## 13951 Heterosexual (straight)            Rarely
## 13952                Bisexual  Most of the time
## 13953 Heterosexual (straight)         Sometimes
## 13954 Heterosexual (straight)             Never
## 13955 Heterosexual (straight)         Sometimes
## 13956 Heterosexual (straight)         Sometimes
## 13957 Heterosexual (straight)            Rarely
## 13958 Heterosexual (straight)            Rarely
## 13959                Bisexual         Sometimes
## 13960 Heterosexual (straight)         Sometimes
## 13961 Heterosexual (straight)             Never
## 13962 Heterosexual (straight)            Rarely
## 13963 Heterosexual (straight)            Rarely
## 13964 Heterosexual (straight)            Always
## 13965 Heterosexual (straight)            Rarely
## 13966 Heterosexual (straight)            Rarely
## 13967 Heterosexual (straight)         Sometimes
## 13968 Heterosexual (straight)            Rarely
## 13969                Bisexual            Always
## 13970                Bisexual  Most of the time
## 13971                Not sure            Always
## 13972 Heterosexual (straight)            Rarely
## 13973 Heterosexual (straight)         Sometimes
## 13974 Heterosexual (straight)  Most of the time
## 13975 Heterosexual (straight)  Most of the time
## 13976 Heterosexual (straight)         Sometimes
## 13977 Heterosexual (straight)         Sometimes
## 13978 Heterosexual (straight)              <NA>
## 13979 Heterosexual (straight)            Rarely
## 13980 Heterosexual (straight)            Rarely
## 13981 Heterosexual (straight)            Rarely
## 13982          Some other way         Sometimes
## 13983 Heterosexual (straight)            Rarely
## 13984 Heterosexual (straight)             Never
## 13985 Heterosexual (straight)  Most of the time
## 13986                Bisexual  Most of the time
## 13987          Some other way  Most of the time
## 13988 Heterosexual (straight)  Most of the time
## 13989          Some other way            Rarely
## 13990 Heterosexual (straight)  Most of the time
## 13991 Heterosexual (straight)         Sometimes
## 13992 Heterosexual (straight)  Most of the time
## 13993 Heterosexual (straight)            Rarely
## 13994 Heterosexual (straight)  Most of the time
## 13995                Bisexual            Always
## 13996                Bisexual         Sometimes
## 13997 Heterosexual (straight)         Sometimes
## 13998 Heterosexual (straight)  Most of the time
## 13999                Bisexual            Always
## 14000 Heterosexual (straight)         Sometimes
## 14001 Heterosexual (straight)         Sometimes
## 14002                Bisexual         Sometimes
## 14003                Bisexual         Sometimes
## 14004          Gay or lesbian            Rarely
## 14005 Heterosexual (straight)         Sometimes
## 14006 Heterosexual (straight)            Rarely
## 14007 Heterosexual (straight)             Never
## 14008                Bisexual  Most of the time
## 14009                Bisexual         Sometimes
## 14010 Heterosexual (straight)             Never
## 14011 Heterosexual (straight)         Sometimes
## 14012          Some other way         Sometimes
## 14013 Heterosexual (straight)  Most of the time
## 14014 Heterosexual (straight)  Most of the time
## 14015                Bisexual             Never
## 14016                Bisexual         Sometimes
## 14017          Some other way         Sometimes
## 14018 Heterosexual (straight)         Sometimes
## 14019 Heterosexual (straight)            Rarely
## 14020 Heterosexual (straight)            Always
## 14021                Not sure            Rarely
## 14022 Heterosexual (straight)         Sometimes
## 14023 Heterosexual (straight)         Sometimes
## 14024 Heterosexual (straight)             Never
## 14025 Heterosexual (straight)         Sometimes
## 14026                Not sure            Always
## 14027 Heterosexual (straight)         Sometimes
## 14028 Heterosexual (straight)         Sometimes
## 14029 Heterosexual (straight)            Rarely
## 14030 Heterosexual (straight)            Rarely
## 14031 Heterosexual (straight)             Never
## 14032 Heterosexual (straight)  Most of the time
## 14033 Heterosexual (straight)            Rarely
## 14034 Heterosexual (straight)            Rarely
## 14035 Heterosexual (straight)            Rarely
## 14036 Heterosexual (straight)         Sometimes
## 14037                Bisexual  Most of the time
## 14038                Bisexual         Sometimes
## 14039 Heterosexual (straight)  Most of the time
## 14040 Heterosexual (straight)         Sometimes
## 14041 Heterosexual (straight)            Rarely
## 14042 Heterosexual (straight)         Sometimes
## 14043                Bisexual         Sometimes
## 14044 Heterosexual (straight)            Rarely
## 14045                Not sure  Most of the time
## 14046 Heterosexual (straight)            Rarely
## 14047 Heterosexual (straight)            Rarely
## 14048 Heterosexual (straight)             Never
## 14049                Bisexual            Rarely
## 14050 Heterosexual (straight)            Rarely
## 14051                Bisexual         Sometimes
## 14052 Heterosexual (straight)             Never
## 14053 Heterosexual (straight)         Sometimes
## 14054 Heterosexual (straight)         Sometimes
## 14055 Heterosexual (straight)            Rarely
## 14056 Heterosexual (straight)             Never
## 14057          Some other way         Sometimes
## 14058 Heterosexual (straight)         Sometimes
## 14059 Heterosexual (straight)         Sometimes
## 14060 Heterosexual (straight)         Sometimes
## 14061 Heterosexual (straight)         Sometimes
## 14062 Heterosexual (straight)         Sometimes
## 14063 Heterosexual (straight)             Never
## 14064 Heterosexual (straight)            Rarely
## 14065 Heterosexual (straight)            Rarely
## 14066 Heterosexual (straight)         Sometimes
## 14067 Heterosexual (straight)            Rarely
## 14068 Heterosexual (straight)         Sometimes
## 14069                Bisexual         Sometimes
## 14070                Bisexual  Most of the time
## 14071 Heterosexual (straight)         Sometimes
## 14072 Heterosexual (straight)            Rarely
## 14073                Bisexual         Sometimes
## 14074 Heterosexual (straight)         Sometimes
## 14075          Some other way            Rarely
## 14076                Not sure            Always
## 14077 Heterosexual (straight)  Most of the time
## 14078 Heterosexual (straight)         Sometimes
## 14079 Heterosexual (straight)            Always
## 14080 Heterosexual (straight)             Never
## 14081 Heterosexual (straight)  Most of the time
## 14082 Heterosexual (straight)         Sometimes
## 14083                Bisexual         Sometimes
## 14084 Heterosexual (straight)         Sometimes
## 14085 Heterosexual (straight)  Most of the time
## 14086                Bisexual  Most of the time
## 14087                Not sure  Most of the time
## 14088 Heterosexual (straight)         Sometimes
## 14089 Heterosexual (straight)            Rarely
## 14090 Heterosexual (straight)         Sometimes
## 14091 Heterosexual (straight)            Rarely
## 14092 Heterosexual (straight)  Most of the time
## 14093 Heterosexual (straight)         Sometimes
## 14094 Heterosexual (straight)            Rarely
## 14095 Heterosexual (straight)            Rarely
## 14096 Heterosexual (straight)  Most of the time
## 14097 Heterosexual (straight)         Sometimes
## 14098                Not sure  Most of the time
## 14099 Heterosexual (straight)            Rarely
## 14100 Heterosexual (straight)  Most of the time
## 14101                Bisexual  Most of the time
## 14102 Heterosexual (straight)            Rarely
## 14103 Heterosexual (straight)            Rarely
## 14104 Heterosexual (straight)            Rarely
## 14105 Heterosexual (straight)            Rarely
## 14106                Bisexual  Most of the time
## 14107 Heterosexual (straight)            Rarely
## 14108                Bisexual         Sometimes
## 14109                Not sure         Sometimes
## 14110 Heterosexual (straight)         Sometimes
## 14111          Gay or lesbian            Rarely
## 14112          Gay or lesbian            Rarely
## 14113                Bisexual            Rarely
## 14114          Some other way         Sometimes
## 14115                Bisexual  Most of the time
## 14116 Heterosexual (straight)            Rarely
## 14117                Bisexual            Always
## 14118 Heterosexual (straight)            Rarely
## 14119 Heterosexual (straight)         Sometimes
## 14120 Heterosexual (straight)            Always
## 14121 Heterosexual (straight)             Never
## 14122 Heterosexual (straight)            Rarely
## 14123 Heterosexual (straight)             Never
## 14124          Some other way  Most of the time
## 14125 Heterosexual (straight)         Sometimes
## 14126                Not sure         Sometimes
## 14127 Heterosexual (straight)             Never
## 14128 Heterosexual (straight)            Always
## 14129                Bisexual            Always
## 14130 Heterosexual (straight)            Rarely
## 14131                Bisexual         Sometimes
## 14132 Heterosexual (straight)         Sometimes
## 14133          Some other way  Most of the time
## 14134 Heterosexual (straight)  Most of the time
## 14135 Heterosexual (straight)            Rarely
## 14136 Heterosexual (straight)             Never
## 14137 Heterosexual (straight)             Never
## 14138 Heterosexual (straight)             Never
## 14139 Heterosexual (straight)             Never
## 14140                Bisexual            Always
## 14141 Heterosexual (straight)             Never
## 14142 Heterosexual (straight)         Sometimes
## 14143 Heterosexual (straight)            Rarely
## 14144 Heterosexual (straight)  Most of the time
## 14145 Heterosexual (straight)             Never
## 14146 Heterosexual (straight)             Never
## 14147 Heterosexual (straight)            Always
## 14148 Heterosexual (straight)             Never
## 14149 Heterosexual (straight)             Never
## 14150 Heterosexual (straight)            Rarely
## 14151                Not sure         Sometimes
## 14152 Heterosexual (straight)            Always
## 14153 Heterosexual (straight)         Sometimes
## 14154                Not sure            Rarely
## 14155 Heterosexual (straight)  Most of the time
## 14156 Heterosexual (straight)         Sometimes
## 14157          Gay or lesbian            Always
## 14158 Heterosexual (straight)  Most of the time
## 14159 Heterosexual (straight)         Sometimes
## 14160 Heterosexual (straight)              <NA>
## 14161                Bisexual            Rarely
## 14162                Not sure         Sometimes
## 14163          Gay or lesbian         Sometimes
## 14164 Heterosexual (straight)         Sometimes
## 14165 Heterosexual (straight)            Rarely
## 14166 Heterosexual (straight)            Rarely
## 14167 Heterosexual (straight)            Rarely
## 14168 Heterosexual (straight)             Never
## 14169 Heterosexual (straight)             Never
## 14170                Not sure         Sometimes
## 14171 Heterosexual (straight)  Most of the time
## 14172 Heterosexual (straight)         Sometimes
## 14173 Heterosexual (straight)         Sometimes
## 14174                Bisexual         Sometimes
## 14175 Heterosexual (straight)              <NA>
## 14176                Bisexual  Most of the time
## 14177 Heterosexual (straight)         Sometimes
## 14178 Heterosexual (straight)         Sometimes
## 14179                Bisexual  Most of the time
## 14180 Heterosexual (straight)            Rarely
## 14181 Heterosexual (straight)             Never
## 14182 Heterosexual (straight)            Rarely
## 14183 Heterosexual (straight)  Most of the time
## 14184                Bisexual         Sometimes
## 14185 Heterosexual (straight)         Sometimes
## 14186                Bisexual  Most of the time
## 14187                Bisexual            Rarely
## 14188 Heterosexual (straight)         Sometimes
## 14189 Heterosexual (straight)         Sometimes
## 14190          Some other way         Sometimes
## 14191 Heterosexual (straight)            Rarely
## 14192 Heterosexual (straight)            Rarely
## 14193 Heterosexual (straight)             Never
## 14194 Heterosexual (straight)  Most of the time
## 14195          Gay or lesbian         Sometimes
## 14196 Heterosexual (straight)  Most of the time
## 14197 Heterosexual (straight)             Never
## 14198 Heterosexual (straight)             Never
## 14199 Heterosexual (straight)             Never
## 14200 Heterosexual (straight)            Rarely
## 14201                Bisexual  Most of the time
## 14202 Heterosexual (straight)         Sometimes
## 14203          Gay or lesbian             Never
## 14204 Heterosexual (straight)              <NA>
## 14205 Heterosexual (straight)            Rarely
## 14206 Heterosexual (straight)         Sometimes
## 14207 Heterosexual (straight)  Most of the time
## 14208 Heterosexual (straight)            Rarely
## 14209 Heterosexual (straight)            Rarely
## 14210                Bisexual            Always
## 14211                Bisexual  Most of the time
## 14212 Heterosexual (straight)             Never
## 14213 Heterosexual (straight)            Rarely
## 14214 Heterosexual (straight)             Never
## 14215 Heterosexual (straight)             Never
## 14216 Heterosexual (straight)         Sometimes
## 14217 Heterosexual (straight)            Rarely
## 14218 Heterosexual (straight)            Rarely
## 14219          Some other way  Most of the time
## 14220 Heterosexual (straight)             Never
## 14221          Gay or lesbian  Most of the time
## 14222                Bisexual            Rarely
## 14223 Heterosexual (straight)         Sometimes
## 14224 Heterosexual (straight)             Never
## 14225 Heterosexual (straight)             Never
## 14226 Heterosexual (straight)         Sometimes
## 14227 Heterosexual (straight)             Never
## 14228 Heterosexual (straight)            Rarely
## 14229 Heterosexual (straight)  Most of the time
## 14230 Heterosexual (straight)         Sometimes
## 14231 Heterosexual (straight)         Sometimes
## 14232 Heterosexual (straight)  Most of the time
## 14233 Heterosexual (straight)            Rarely
## 14234 Heterosexual (straight)            Rarely
## 14235 Heterosexual (straight)         Sometimes
## 14236                Bisexual            Always
## 14237 Heterosexual (straight)         Sometimes
## 14238 Heterosexual (straight)             Never
## 14239                Not sure         Sometimes
## 14240          Some other way         Sometimes
## 14241 Heterosexual (straight)            Rarely
## 14242                Bisexual            Always
## 14243          Some other way         Sometimes
## 14244 Heterosexual (straight)             Never
## 14245 Heterosexual (straight)         Sometimes
## 14246 Heterosexual (straight)             Never
## 14247 Heterosexual (straight)            Rarely
## 14248 Heterosexual (straight)            Rarely
## 14249 Heterosexual (straight)            Rarely
## 14250 Heterosexual (straight)            Rarely
## 14251 Heterosexual (straight)         Sometimes
## 14252 Heterosexual (straight)         Sometimes
## 14253 Heterosexual (straight)         Sometimes
## 14254 Heterosexual (straight)         Sometimes
## 14255 Heterosexual (straight)             Never
## 14256 Heterosexual (straight)            Always
## 14257 Heterosexual (straight)         Sometimes
## 14258                Bisexual  Most of the time
## 14259 Heterosexual (straight)             Never
## 14260 Heterosexual (straight)            Rarely
## 14261 Heterosexual (straight)            Rarely
## 14262 Heterosexual (straight)            Rarely
## 14263 Heterosexual (straight)            Rarely
## 14264 Heterosexual (straight)            Rarely
## 14265 Heterosexual (straight)         Sometimes
## 14266 Heterosexual (straight)            Rarely
## 14267 Heterosexual (straight)         Sometimes
## 14268 Heterosexual (straight)         Sometimes
## 14269 Heterosexual (straight)         Sometimes
## 14270                Bisexual         Sometimes
## 14271 Heterosexual (straight)         Sometimes
## 14272 Heterosexual (straight)             Never
## 14273 Heterosexual (straight)  Most of the time
## 14274 Heterosexual (straight)  Most of the time
## 14275 Heterosexual (straight)         Sometimes
## 14276 Heterosexual (straight)            Rarely
## 14277 Heterosexual (straight)  Most of the time
## 14278 Heterosexual (straight)             Never
## 14279 Heterosexual (straight)  Most of the time
## 14280 Heterosexual (straight)  Most of the time
## 14281          Some other way         Sometimes
## 14282 Heterosexual (straight)         Sometimes
## 14283 Heterosexual (straight)  Most of the time
## 14284 Heterosexual (straight)  Most of the time
## 14285 Heterosexual (straight)            Rarely
##  [ reached 'max' / getOption("max.print") -- omitted 3350 rows ]

We can always double check how this worked by using our count function again:

count(yrbs_filter, Sexual_identity)
##           Sexual_identity     n
## 1                Bisexual  2053
## 2          Gay or lesbian   683
## 3 Heterosexual (straight) 13289
## 4                Not sure   850
## 5          Some other way   760

We also see in this dataset from when we counted the sex column that there are “NA” or missing values. We may want to remove these as they can complicate downstream analysis, visualization, and interpretation. We could again use the filter function as it also takes other functions such as is.na. We could use the filter function to say we are looking for values that are not NA (!is.na). However, we would need to run this function for every column that has missing values. The example below would be for removing NAs from the sex variable.

For future reference since we used the same filter function twice we could have written that in a single line of code like this: yrbs_filter <- filter( yrbs_select, !is.na(sex) & Sexual_identity != "Don t know what this means")

3. arrange() - Sort Rows

The arrange() function sorts your data by one or more columns. Let’s say we are interested in how tall the tallest student is. We could use the arrange function on the yrbs_filter data object and sort the height variable in descending order using the desc option (by default it will sort in ascending order).

arrange(yrbs_filter, desc(height))
##                           age    sex                   grade height weight
## 1       18 years old or older   Male              12th grade   2.03 108.86
## 2                17 years old   Male                    <NA>   2.03  58.97
## 3       18 years old or older   Male              12th grade   2.03 180.99
## 4                17 years old   Male              11th grade   2.03 114.31
## 5                17 years old   Male              11th grade   2.03 108.86
## 6                17 years old   Male              11th grade   2.03  63.05
## 7                17 years old   Male              11th grade   2.03  86.18
## 8       18 years old or older   Male              12th grade   2.01 140.62
## 9                17 years old   Male              11th grade   2.01  86.18
## 10               15 years old   Male              10th grade   2.01 127.01
## 11      18 years old or older   Male              12th grade   2.01 104.33
## 12      18 years old or older   Male              12th grade   2.01  90.72
## 13               15 years old   Male               9th grade   2.01  68.95
## 14               17 years old   Male              11th grade   2.01 129.28
## 15               15 years old   Male              10th grade   2.01  77.11
## 16               15 years old   Male              10th grade   2.01  83.01
## 17               17 years old   Male Ungraded or other grade   2.01  86.18
## 18               17 years old   Male              11th grade   2.01 112.04
## 19               15 years old   Male              10th grade   2.01 113.40
## 20               16 years old   Male              11th grade   2.01  58.97
## 21               15 years old   Male               9th grade   2.01  58.97
## 22               17 years old   Male              11th grade   1.98 115.67
## 23               15 years old   Male               9th grade   1.98  58.97
## 24               15 years old   Male              10th grade   1.98  71.22
## 25               15 years old   Male               9th grade   1.98  50.35
## 26               15 years old   Male               9th grade   1.98 160.12
## 27      18 years old or older   Male              12th grade   1.98  77.11
## 28               17 years old   Male              12th grade   1.98 119.30
## 29               16 years old   Male              10th grade   1.98  88.45
## 30      18 years old or older   Male              12th grade   1.98 142.88
## 31               16 years old   Male              11th grade   1.98 133.81
## 32               16 years old   Male              10th grade   1.98 142.88
## 33               17 years old   Male              11th grade   1.98  90.72
## 34               15 years old   Male              10th grade   1.98 113.40
## 35               16 years old   Male              10th grade   1.96 147.42
## 36               15 years old   Male               9th grade   1.96  66.68
## 37               15 years old   Male               9th grade   1.96  95.26
## 38      18 years old or older   Male              12th grade   1.96  92.99
## 39               16 years old   Male               9th grade   1.96  79.38
## 40               17 years old   Male              11th grade   1.96  90.72
## 41               15 years old   Male               9th grade   1.96  67.59
## 42               17 years old   Male              11th grade   1.96 120.20
## 43      18 years old or older   Male              12th grade   1.96  97.52
## 44               16 years old   Male              11th grade   1.96 102.06
## 45               15 years old   Male               9th grade   1.96  81.65
## 46      18 years old or older   Male              12th grade   1.96 124.74
## 47               17 years old   Male              11th grade   1.96  63.96
## 48               16 years old   Male              11th grade   1.96  79.83
## 49               16 years old   Male              10th grade   1.96  72.58
## 50      18 years old or older   Male              12th grade   1.96  77.11
## 51               17 years old   Male              11th grade   1.96  95.26
## 52      18 years old or older   Male              12th grade   1.96 115.67
## 53               16 years old   Male              10th grade   1.96  54.43
## 54               17 years old   Male              12th grade   1.96  65.77
## 55               16 years old   Male              11th grade   1.96 131.54
## 56               17 years old   Male              11th grade   1.96 140.62
## 57               17 years old   Male              12th grade   1.96  82.56
## 58      18 years old or older   Male              12th grade   1.96 127.01
## 59      18 years old or older   Male              12th grade   1.96 127.01
## 60               17 years old   Male              11th grade   1.96  81.65
## 61               15 years old   Male              10th grade   1.96 105.69
## 62               17 years old   Male              11th grade   1.96  95.26
## 63               16 years old   Male              11th grade   1.96  72.58
## 64               17 years old   Male              11th grade   1.96  95.26
## 65      18 years old or older   Male              12th grade   1.96  88.45
## 66      18 years old or older   Male              12th grade   1.96  82.10
## 67               16 years old   Male              11th grade   1.96 149.69
## 68               17 years old   Male              12th grade   1.96  92.99
## 69      18 years old or older   Male              12th grade   1.96  69.85
## 70               16 years old   Male              10th grade   1.96  90.72
## 71               17 years old   Male              11th grade   1.96  89.81
## 72               16 years old   Male              11th grade   1.96  86.18
## 73      18 years old or older   Male              12th grade   1.96  86.18
## 74      18 years old or older   Male              12th grade   1.96  77.11
## 75      18 years old or older   Male              12th grade   1.96 113.40
## 76               16 years old   Male              11th grade   1.96  71.67
## 77               17 years old   Male              11th grade   1.96 136.08
## 78               16 years old   Male              11th grade   1.96  72.58
## 79      18 years old or older   Male              12th grade   1.96  97.52
## 80      18 years old or older   Male              12th grade   1.96 180.99
## 81               15 years old   Male               9th grade   1.96  58.97
## 82               15 years old   Male               9th grade   1.96  75.30
## 83      18 years old or older   Male              12th grade   1.96  63.50
## 84               14 years old   Male               9th grade   1.96  94.80
## 85               16 years old   Male              10th grade   1.96  92.99
## 86               17 years old   Male              11th grade   1.96  93.90
## 87               15 years old   Male               9th grade   1.96 154.22
## 88               14 years old   Male               9th grade   1.96  74.84
## 89      18 years old or older   Male              11th grade   1.93  68.04
## 90      18 years old or older   Male              11th grade   1.93 111.13
## 91      18 years old or older   Male              11th grade   1.93  97.52
## 92               17 years old   Male              11th grade   1.93  68.04
## 93               17 years old   Male              11th grade   1.93 111.13
## 94               15 years old   Male               9th grade   1.93  73.03
## 95               17 years old   Male              11th grade   1.93  72.58
## 96               16 years old   Male              11th grade   1.93  99.79
## 97               17 years old   Male              11th grade   1.93  97.52
## 98               17 years old   Male              12th grade   1.93  72.58
## 99               17 years old   Male              12th grade   1.93 104.33
## 100              15 years old   Male              10th grade   1.93  77.57
## 101              17 years old   Male              11th grade   1.93  99.79
## 102              16 years old   Male              11th grade   1.93  73.48
## 103              17 years old   Male              11th grade   1.93 124.74
## 104              17 years old   Male              11th grade   1.93  99.79
## 105              17 years old   Male              12th grade   1.93  74.84
## 106              17 years old   Male              11th grade   1.93  79.38
## 107              16 years old   Male              11th grade   1.93 104.33
## 108              17 years old   Male              12th grade   1.93  88.45
## 109              15 years old   Male              10th grade   1.93 122.47
## 110     18 years old or older   Male              12th grade   1.93 147.42
## 111              15 years old   Male               9th grade   1.93  92.99
## 112              17 years old   Male              12th grade   1.93 113.40
## 113              15 years old   Male              10th grade   1.93  79.38
## 114              16 years old   Male              10th grade   1.93  70.31
## 115              17 years old   Male              12th grade   1.93 145.15
## 116              15 years old   Male              10th grade   1.93  77.11
## 117              16 years old   Male              10th grade   1.93  79.38
## 118              17 years old   Male              12th grade   1.93  88.45
## 119              17 years old   Male              12th grade   1.93 136.08
## 120              17 years old   Male              12th grade   1.93  70.31
## 121     18 years old or older   Male              12th grade   1.93  88.45
## 122              17 years old   Male              11th grade   1.93 122.47
## 123              16 years old   Male              10th grade   1.93  97.07
## 124              14 years old   Male               9th grade   1.93  85.28
## 125              17 years old   Male              11th grade   1.93 158.76
## 126              17 years old   Male              12th grade   1.93 130.64
## 127     18 years old or older   Male              12th grade   1.93  74.84
## 128              16 years old   Male              11th grade   1.93 113.40
## 129              17 years old   Male              12th grade   1.93  68.04
## 130              17 years old   Male              11th grade   1.93  91.17
## 131              17 years old   Male              12th grade   1.93  83.92
## 132     18 years old or older   Male              12th grade   1.93 104.33
## 133     18 years old or older   Male              12th grade   1.93  88.91
## 134     18 years old or older   Male              12th grade   1.93 107.96
## 135              16 years old   Male              10th grade   1.93  81.65
## 136     18 years old or older   Male              11th grade   1.93 127.01
## 137              17 years old   Male              11th grade   1.93  83.92
## 138              17 years old   Male              12th grade   1.93 122.47
## 139              16 years old   Male              10th grade   1.93  89.81
## 140              16 years old   Male              11th grade   1.93  95.26
## 141              17 years old   Male              11th grade   1.93  90.72
## 142              14 years old   Male               9th grade   1.93  90.72
## 143     18 years old or older   Male              12th grade   1.93  63.50
## 144              17 years old   Male              11th grade   1.93  83.92
## 145     18 years old or older   Male              12th grade   1.93 106.60
## 146              14 years old   Male               9th grade   1.93  77.11
## 147              15 years old   Male              10th grade   1.93  76.20
## 148     18 years old or older   Male              12th grade   1.93  95.26
## 149              16 years old   Male              11th grade   1.93  83.92
## 150              17 years old   Male              11th grade   1.93  79.38
## 151              15 years old   Male               9th grade   1.93  88.91
## 152              16 years old   Male              10th grade   1.93  74.84
## 153              17 years old   Male              12th grade   1.93  83.92
## 154              16 years old   Male              11th grade   1.93  72.58
## 155              17 years old   Male              10th grade   1.93 112.04
## 156     18 years old or older   Male              12th grade   1.93  81.65
## 157              16 years old   Male              11th grade   1.93  74.84
## 158              14 years old   Male               9th grade   1.93 110.68
## 159              15 years old   Male              10th grade   1.93 103.42
## 160              17 years old   Male              12th grade   1.93 172.37
## 161              17 years old   Male              11th grade   1.93  68.04
## 162              15 years old   Male              10th grade   1.93  72.58
## 163              17 years old   Male              11th grade   1.93  49.44
## 164              16 years old   Male              11th grade   1.93  86.18
## 165              17 years old   Male              12th grade   1.93  83.92
## 166              15 years old   Male              10th grade   1.93  90.27
## 167     18 years old or older   Male              12th grade   1.93  90.72
## 168              16 years old   Male              10th grade   1.93  79.38
## 169              17 years old   Male              11th grade   1.93  97.52
## 170              16 years old   Male              10th grade   1.93  74.84
## 171              17 years old   Male              12th grade   1.93  88.45
## 172              17 years old   Male              11th grade   1.93  64.86
## 173     18 years old or older   Male              12th grade   1.93  83.92
## 174              14 years old   Male               9th grade   1.93 131.54
## 175     18 years old or older   Male              12th grade   1.93  85.28
## 176              16 years old   Male              11th grade   1.93  67.59
## 177              17 years old   Male              11th grade   1.93  70.31
## 178              17 years old   Male              11th grade   1.93 131.54
## 179              15 years old   Male               9th grade   1.93  49.90
## 180              14 years old   Male               9th grade   1.93  99.79
## 181              16 years old   Male              10th grade   1.90 131.54
## 182              15 years old   Male              10th grade   1.90  69.85
## 183     18 years old or older   Male              12th grade   1.90  77.11
## 184              17 years old   Male              11th grade   1.90  83.92
## 185     18 years old or older   Male              12th grade   1.90  77.11
## 186              16 years old   Male              10th grade   1.90  86.18
## 187              15 years old   Male              10th grade   1.90  65.77
## 188              16 years old   Male              10th grade   1.90  54.43
## 189              17 years old   Male              11th grade   1.90  86.18
## 190              14 years old   Male               9th grade   1.90  68.95
## 191              17 years old   Male              12th grade   1.90  77.11
## 192     18 years old or older   Male              12th grade   1.90  88.45
## 193              16 years old   Male              11th grade   1.90  90.72
## 194              14 years old   Male               9th grade   1.90  97.52
## 195              16 years old   Male              11th grade   1.90 117.94
## 196              15 years old   Male              10th grade   1.90  97.52
## 197     18 years old or older   Male              12th grade   1.90  83.92
## 198              15 years old   Male               9th grade   1.90 106.60
## 199              16 years old   Male               9th grade   1.90  81.65
## 200              16 years old   Male              11th grade   1.90  83.92
## 201              16 years old   Male              11th grade   1.90  90.72
## 202              15 years old   Male              10th grade   1.90 104.33
## 203              17 years old   Male              11th grade   1.90 101.61
## 204              17 years old   Male              12th grade   1.90 126.10
## 205              17 years old   Male              12th grade   1.90 101.61
## 206              17 years old   Male              12th grade   1.90  75.75
## 207              16 years old   Male              11th grade   1.90  90.72
## 208              17 years old   Male              12th grade   1.90  83.92
## 209              17 years old   Male              12th grade   1.90  79.38
## 210     18 years old or older   Male              12th grade   1.90  81.65
## 211     18 years old or older   Male              12th grade   1.90  71.22
## 212              15 years old   Male              10th grade   1.90  72.58
## 213              17 years old   Male              11th grade   1.90 108.86
## 214              15 years old   Male              10th grade   1.90  82.56
## 215     18 years old or older   Male              12th grade   1.90  77.11
## 216     18 years old or older   Male              12th grade   1.90  71.67
## 217              15 years old   Male              10th grade   1.90  83.46
## 218              17 years old   Male              12th grade   1.90  90.72
## 219              17 years old   Male              11th grade   1.90  65.77
## 220              15 years old   Male               9th grade   1.90 111.13
## 221              17 years old   Male              12th grade   1.90 101.61
## 222     18 years old or older   Male              12th grade   1.90 113.40
## 223              17 years old   Male              11th grade   1.90  70.76
## 224              15 years old   Male              10th grade   1.90  97.52
## 225              15 years old   Male              10th grade   1.90  83.92
## 226              16 years old   Male              11th grade   1.90  83.46
## 227     18 years old or older   Male              12th grade   1.90  78.02
## 228              16 years old   Male              11th grade   1.90  79.83
## 229              17 years old   Male              12th grade   1.90  81.65
## 230              15 years old   Male               9th grade   1.90  77.11
## 231              17 years old   Male              12th grade   1.90  68.04
## 232              17 years old   Male              12th grade   1.90  86.18
## 233     18 years old or older   Male              11th grade   1.90  68.49
## 234              15 years old   Male               9th grade   1.90 102.06
## 235              17 years old   Male              12th grade   1.90  97.52
## 236     18 years old or older   Male              12th grade   1.90  65.77
## 237     18 years old or older   Male              12th grade   1.90  90.72
## 238     18 years old or older   Male              12th grade   1.90  83.92
## 239              17 years old   Male              10th grade   1.90  88.45
## 240              17 years old   Male              12th grade   1.90  72.58
## 241              17 years old   Male              12th grade   1.90  88.45
## 242              17 years old   Male              11th grade   1.90  72.58
## 243     18 years old or older   Male              12th grade   1.90  74.84
## 244              17 years old   Male              12th grade   1.90 104.33
## 245              16 years old   Male              10th grade   1.90  87.09
## 246     18 years old or older   Male              12th grade   1.90 108.86
## 247              15 years old   Male              10th grade   1.90 106.60
## 248              15 years old   Male               9th grade   1.90  65.77
## 249              16 years old   Male              10th grade   1.90 120.66
## 250              17 years old   Male              11th grade   1.90  91.17
## 251              16 years old   Male              11th grade   1.90  79.38
## 252     18 years old or older   Male              12th grade   1.90  90.72
## 253              17 years old   Male              11th grade   1.90  99.34
## 254              14 years old   Male               9th grade   1.90  81.65
## 255              16 years old   Male               9th grade   1.90  77.11
## 256     18 years old or older   Male              12th grade   1.90  83.92
## 257              15 years old   Male              10th grade   1.90  73.48
## 258              14 years old   Male               9th grade   1.90 104.33
## 259     18 years old or older   Male              12th grade   1.90  81.65
## 260              15 years old   Male              10th grade   1.90  99.79
## 261              14 years old   Male               9th grade   1.90  99.79
## 262              16 years old   Male              11th grade   1.90 149.69
## 263              16 years old   Male              11th grade   1.90  84.37
## 264              17 years old   Male              11th grade   1.90  62.60
## 265              16 years old   Male              10th grade   1.90  95.26
## 266              14 years old   Male               9th grade   1.90  71.67
## 267              15 years old   Male              10th grade   1.90  61.24
## 268              16 years old   Male              10th grade   1.90  63.50
## 269              16 years old   Male              11th grade   1.90  86.18
## 270              16 years old   Male              10th grade   1.90  79.38
## 271              15 years old   Male              10th grade   1.90 161.03
## 272              15 years old   Male              10th grade   1.90  88.45
## 273              17 years old   Male              11th grade   1.90  78.93
## 274              16 years old   Male              10th grade   1.90  79.38
## 275              15 years old   Male              10th grade   1.90  79.38
## 276              17 years old   Male              11th grade   1.90  56.70
## 277              17 years old   Male              11th grade   1.90  73.94
## 278              15 years old   Male              10th grade   1.90  61.24
## 279              17 years old   Male              11th grade   1.90  79.83
## 280              17 years old   Male              11th grade   1.90  86.18
## 281              17 years old   Male              12th grade   1.90  72.58
## 282              17 years old   Male              12th grade   1.90  68.04
## 283     18 years old or older   Male              12th grade   1.90 122.47
## 284              16 years old   Male              11th grade   1.90  83.46
## 285     18 years old or older   Male              12th grade   1.90  77.11
## 286     18 years old or older   Male              12th grade   1.90  68.04
## 287              16 years old   Male              11th grade   1.90  63.50
## 288     18 years old or older   Male              12th grade   1.90  63.50
## 289              16 years old   Male              11th grade   1.90  72.58
## 290     18 years old or older   Male              12th grade   1.90  99.79
## 291              17 years old   Male              11th grade   1.90  65.77
## 292              16 years old   Male              10th grade   1.90  94.35
## 293              15 years old   Male               9th grade   1.90  94.80
## 294              15 years old   Male              10th grade   1.90  86.18
## 295              17 years old   Male              12th grade   1.90  61.24
## 296     18 years old or older   Male              12th grade   1.90  76.20
## 297     18 years old or older   Male              12th grade   1.90 103.87
## 298              17 years old   Male              11th grade   1.90  97.52
## 299              16 years old   Male              10th grade   1.90 113.40
## 300              16 years old   Male              10th grade   1.90  95.26
## 301              17 years old   Male              11th grade   1.90 136.08
## 302              16 years old   Male              10th grade   1.90  83.01
## 303     18 years old or older   Male              12th grade   1.90  79.83
## 304              16 years old   Male              10th grade   1.90  92.99
## 305              16 years old   Male              10th grade   1.90  72.58
## 306     18 years old or older   Male              12th grade   1.90  74.84
## 307              14 years old   Male               9th grade   1.90 131.09
## 308              16 years old   Male              10th grade   1.90  79.38
## 309     18 years old or older   Male              12th grade   1.90  89.81
## 310              17 years old   Male              12th grade   1.90  77.11
## 311     18 years old or older   Male              12th grade   1.90 124.74
## 312     18 years old or older   Male              12th grade   1.90  90.72
## 313              16 years old   Male              10th grade   1.90  63.50
## 314              15 years old   Male               9th grade   1.90  86.18
## 315              16 years old   Male              11th grade   1.90 124.74
## 316              15 years old   Male               9th grade   1.90  77.11
## 317              15 years old   Male              10th grade   1.90  74.84
## 318              17 years old   Male              12th grade   1.90  70.31
## 319     18 years old or older   Male              12th grade   1.90  95.26
## 320              15 years old   Male               9th grade   1.90 140.62
## 321              17 years old   Male              12th grade   1.90  83.92
## 322              17 years old   Male              11th grade   1.90  81.65
## 323              16 years old   Male              10th grade   1.90  86.18
## 324              17 years old   Male              11th grade   1.90  95.26
## 325              17 years old   Male              11th grade   1.90  68.04
## 326     18 years old or older   Male              11th grade   1.90 102.97
## 327              17 years old   Male              12th grade   1.90  77.11
## 328     18 years old or older   Male              12th grade   1.90  61.24
## 329              15 years old   Male              10th grade   1.90  89.36
## 330              16 years old   Male              10th grade   1.90  96.62
## 331              15 years old   Male               9th grade   1.90 106.60
## 332              15 years old   Male               9th grade   1.90  83.92
## 333              15 years old   Male                    <NA>   1.90  68.04
## 334              16 years old   Male              10th grade   1.90  81.65
## 335              17 years old   Male              11th grade   1.90  83.92
## 336              16 years old   Male              11th grade   1.90  77.11
## 337     18 years old or older   Male              12th grade   1.90  77.11
## 338     18 years old or older   Male              12th grade   1.90  73.48
## 339              14 years old   Male               9th grade   1.90  79.38
## 340              15 years old   Male              10th grade   1.90  77.11
## 341              15 years old   Male                    <NA>   1.90  90.72
## 342              17 years old   Male              11th grade   1.90  90.72
## 343              17 years old   Male              11th grade   1.90  68.04
## 344              17 years old   Male              11th grade   1.90 104.33
## 345              17 years old   Male              11th grade   1.90 112.49
## 346              16 years old   Male              11th grade   1.90  95.26
## 347              17 years old   Male              11th grade   1.90  79.38
## 348     18 years old or older   Male              12th grade   1.90  97.52
## 349              15 years old   Male              10th grade   1.90  77.11
## 350              15 years old   Male              10th grade   1.90  65.77
## 351              17 years old   Male              12th grade   1.90 113.40
## 352     18 years old or older   Male              12th grade   1.90  89.81
## 353              16 years old   Male              11th grade   1.90  72.58
## 354              16 years old   Male              11th grade   1.90  70.31
## 355              17 years old   Male              11th grade   1.90  80.74
## 356              17 years old   Male              12th grade   1.90  72.58
## 357              16 years old   Male              11th grade   1.90  79.38
## 358              16 years old   Male              11th grade   1.90  72.58
## 359              16 years old   Male              11th grade   1.90  99.79
## 360              16 years old   Male              10th grade   1.90  72.58
## 361              16 years old   Male              11th grade   1.90  64.41
## 362              16 years old   Male              11th grade   1.90  80.74
## 363              14 years old   Male               9th grade   1.90  56.70
## 364              15 years old   Male              10th grade   1.90  90.72
## 365              16 years old   Male              11th grade   1.90 113.40
## 366              16 years old   Male              11th grade   1.90  85.28
## 367              14 years old   Male               9th grade   1.90  87.54
## 368              16 years old   Male              11th grade   1.90  86.18
## 369     18 years old or older   Male              12th grade   1.90  88.45
## 370              14 years old   Male               9th grade   1.90  90.72
## 371              16 years old   Male              11th grade   1.90  72.58
## 372              17 years old   Male              12th grade   1.90  81.65
## 373              16 years old   Male              11th grade   1.90  65.77
## 374              17 years old   Male              12th grade   1.90  83.92
## 375     18 years old or older   Male              12th grade   1.90  70.31
## 376              15 years old   Male              10th grade   1.90  74.84
## 377              17 years old   Male              12th grade   1.90  81.65
## 378              16 years old   Male              11th grade   1.90  74.84
## 379     18 years old or older   Male              12th grade   1.90  85.73
## 380              14 years old   Male               9th grade   1.90  79.38
## 381              17 years old   Male              11th grade   1.90 113.40
## 382              16 years old   Male              10th grade   1.90  77.11
## 383              16 years old   Male              10th grade   1.90  79.38
## 384     18 years old or older   Male              12th grade   1.90  77.11
## 385              16 years old   Male              10th grade   1.90 106.60
## 386     18 years old or older   Male              12th grade   1.90  74.84
## 387              17 years old   Male              11th grade   1.90  72.58
## 388              16 years old   Male              10th grade   1.90  91.17
## 389              16 years old   Male              10th grade   1.90 102.06
## 390              15 years old   Male              10th grade   1.90  90.72
## 391              16 years old   Male              11th grade   1.90  63.50
## 392              16 years old   Male              11th grade   1.90  77.11
## 393              15 years old   Male              10th grade   1.90  74.84
## 394              16 years old   Male              11th grade   1.90 104.33
## 395              16 years old   Male              11th grade   1.90  90.72
## 396              17 years old   Male              11th grade   1.90 105.69
## 397              17 years old   Male              11th grade   1.90 143.79
## 398              15 years old   Male              10th grade   1.90 122.47
## 399              15 years old   Male               9th grade   1.90  78.02
## 400              15 years old   Male               9th grade   1.90  61.24
## 401              15 years old   Male               9th grade   1.88 122.47
## 402              15 years old   Male              10th grade   1.88  90.72
## 403              17 years old   Male              11th grade   1.88  74.84
## 404              17 years old   Male Ungraded or other grade   1.88 108.86
## 405              16 years old   Male              10th grade   1.88  83.92
## 406              17 years old   Male              11th grade   1.88  99.79
## 407              17 years old   Male              11th grade   1.88  70.76
## 408     18 years old or older   Male              12th grade   1.88 131.54
## 409              16 years old   Male              10th grade   1.88  78.02
## 410              15 years old   Male              10th grade   1.88  83.92
## 411              15 years old   Male              10th grade   1.88  77.11
## 412              16 years old   Male              10th grade   1.88 127.01
## 413              16 years old   Male              11th grade   1.88  67.59
## 414              16 years old   Male              11th grade   1.88  66.23
## 415              15 years old   Male              10th grade   1.88 106.60
## 416              16 years old   Male              11th grade   1.88  72.58
## 417              16 years old   Male              10th grade   1.88 102.06
## 418     18 years old or older   Male              12th grade   1.88  81.65
## 419     18 years old or older   Male              12th grade   1.88  83.92
## 420              17 years old   Male              12th grade   1.88  75.75
## 421              15 years old   Male               9th grade   1.88  68.04
## 422              17 years old   Male              12th grade   1.88  72.58
## 423     18 years old or older   Male              12th grade   1.88  84.82
## 424              15 years old   Male               9th grade   1.88  63.50
## 425              17 years old   Male              12th grade   1.88  67.13
## 426              14 years old   Male               9th grade   1.88  63.50
## 427              16 years old   Male              11th grade   1.88  70.31
## 428              15 years old   Male              10th grade   1.88  71.67
## 429              15 years old   Male              10th grade   1.88  94.80
## 430              17 years old   Male              12th grade   1.88 102.06
## 431              16 years old   Male              10th grade   1.88  83.92
## 432              15 years old   Male               9th grade   1.88  62.14
## 433              16 years old Female              11th grade   1.88 141.52
## 434              15 years old   Male              10th grade   1.88  93.90
## 435              16 years old   Male              11th grade   1.88  90.72
## 436              15 years old   Male              10th grade   1.88  63.50
## 437              16 years old   Male              11th grade   1.88  88.91
## 438     18 years old or older   Male              12th grade   1.88  83.01
## 439              15 years old   Male               9th grade   1.88  65.77
## 440              16 years old   Male              11th grade   1.88  73.48
## 441              15 years old   Male              10th grade   1.88  86.18
## 442              17 years old   Male              12th grade   1.88  86.18
## 443              16 years old   Male              10th grade   1.88  79.38
## 444              15 years old   Male              10th grade   1.88  76.20
## 445              17 years old   Male              12th grade   1.88  92.99
## 446     18 years old or older   Male              12th grade   1.88  74.84
## 447              16 years old   Male              11th grade   1.88 130.18
## 448              16 years old   Male              11th grade   1.88 106.60
## 449              15 years old   Male               9th grade   1.88  56.70
## 450              15 years old   Male              10th grade   1.88  98.43
## 451     18 years old or older   Male              12th grade   1.88  80.29
## 452              16 years old   Male              10th grade   1.88  81.65
## 453              17 years old   Male              12th grade   1.88 113.40
## 454     18 years old or older   Male              12th grade   1.88  92.53
## 455              17 years old   Male              11th grade   1.88  63.50
## 456              16 years old   Male              11th grade   1.88 111.13
## 457              16 years old   Male              10th grade   1.88  81.65
## 458              14 years old   Male               9th grade   1.88  77.11
## 459              15 years old   Male              10th grade   1.88 111.13
## 460              17 years old   Male              12th grade   1.88  72.58
## 461              17 years old   Male              12th grade   1.88  68.95
## 462              16 years old   Male              11th grade   1.88  72.58
## 463              17 years old   Male              12th grade   1.88  71.22
## 464              17 years old   Male              11th grade   1.88  93.44
## 465              17 years old Female              12th grade   1.88  49.90
## 466              15 years old   Male              10th grade   1.88  68.04
## 467              17 years old   Male              11th grade   1.88  77.11
## 468              17 years old   Male              11th grade   1.88  65.77
## 469     18 years old or older   Male              12th grade   1.88  70.31
## 470              17 years old   Male              11th grade   1.88  99.79
## 471              17 years old   Male              11th grade   1.88  71.22
## 472     18 years old or older   Male              12th grade   1.88  71.67
## 473              17 years old   Male              11th grade   1.88  81.65
## 474              17 years old   Male              11th grade   1.88  68.04
## 475              16 years old   Male              11th grade   1.88  99.79
## 476              17 years old   Male              11th grade   1.88  88.45
## 477     18 years old or older   Male              12th grade   1.88  88.45
## 478              16 years old   Male              10th grade   1.88  77.11
## 479              15 years old   Male               9th grade   1.88  79.38
## 480              17 years old   Male              11th grade   1.88 113.40
## 481              17 years old   Male              11th grade   1.88  99.79
## 482              16 years old   Male              11th grade   1.88  61.24
## 483              15 years old   Male              10th grade   1.88  76.20
## 484              15 years old   Male              10th grade   1.88  79.38
## 485     18 years old or older   Male              12th grade   1.88 124.74
## 486              16 years old   Male               9th grade   1.88  90.72
## 487              15 years old   Male              10th grade   1.88  61.24
## 488     18 years old or older   Male              12th grade   1.88 122.47
## 489              16 years old   Male              10th grade   1.88  95.26
## 490     18 years old or older   Male              12th grade   1.88  81.65
## 491              16 years old   Male              11th grade   1.88  79.38
## 492              16 years old   Male              10th grade   1.88  73.03
## 493              17 years old   Male              12th grade   1.88  82.56
## 494              14 years old   Male               9th grade   1.88  78.47
## 495     18 years old or older   Male              12th grade   1.88  78.93
## 496     18 years old or older   Male              11th grade   1.88  68.04
## 497              16 years old   Male              11th grade   1.88  90.72
## 498              17 years old   Male                    <NA>   1.88  73.48
## 499              17 years old   Male              12th grade   1.88  83.92
## 500              14 years old   Male               9th grade   1.88  70.31
## 501     18 years old or older   Male              12th grade   1.88  67.59
## 502              16 years old   Male              10th grade   1.88  92.08
## 503              17 years old   Male              12th grade   1.88  67.59
## 504     18 years old or older   Male              12th grade   1.88  78.02
## 505     18 years old or older   Male              12th grade   1.88 106.60
## 506              14 years old   Male               9th grade   1.88  70.31
## 507              16 years old   Male              11th grade   1.88  72.58
## 508              17 years old   Male              12th grade   1.88  68.04
## 509              17 years old   Male              12th grade   1.88  70.31
## 510              14 years old   Male               9th grade   1.88 102.06
## 511              16 years old   Male              10th grade   1.88  88.45
## 512              16 years old   Male              10th grade   1.88  81.65
## 513              15 years old   Male               9th grade   1.88  76.20
## 514     18 years old or older   Male              12th grade   1.88  90.72
## 515              16 years old   Male              11th grade   1.88  95.26
## 516              16 years old   Male              11th grade   1.88  74.84
## 517     18 years old or older   Male              10th grade   1.88  58.97
## 518              17 years old   Male              12th grade   1.88  68.95
## 519     18 years old or older   Male              11th grade   1.88  99.79
## 520              17 years old   Male              11th grade   1.88 112.49
## 521              17 years old   Male              10th grade   1.88  68.04
## 522     18 years old or older   Male              12th grade   1.88  97.52
## 523              16 years old   Male              11th grade   1.88  72.58
## 524              17 years old   Male              11th grade   1.88 113.40
## 525              17 years old   Male              12th grade   1.88  74.84
## 526              16 years old   Male              11th grade   1.88 136.08
## 527              17 years old   Male              11th grade   1.88  92.99
## 528              17 years old   Male              12th grade   1.88  74.84
## 529              16 years old   Male              10th grade   1.88  96.16
## 530              16 years old Female              11th grade   1.88 176.90
## 531              17 years old   Male              11th grade   1.88  92.99
## 532              16 years old   Male              10th grade   1.88  71.67
## 533              15 years old   Male              10th grade   1.88  74.84
## 534              16 years old   Male              10th grade   1.88 180.99
## 535              16 years old   Male              11th grade   1.88  74.84
## 536              16 years old   Male              10th grade   1.88  77.11
## 537              16 years old   Male              10th grade   1.88  78.47
## 538              17 years old   Male              11th grade   1.88  79.38
## 539              16 years old   Male              10th grade   1.88  62.60
## 540              15 years old   Male               9th grade   1.88  68.04
## 541     18 years old or older   Male              12th grade   1.88 135.17
## 542              17 years old   Male              11th grade   1.88  63.96
## 543              16 years old   Male              10th grade   1.88  79.38
## 544              16 years old   Male              10th grade   1.88  92.99
## 545              17 years old   Male              12th grade   1.88 124.74
## 546              16 years old   Male               9th grade   1.88 130.64
## 547              15 years old Female               9th grade   1.88 172.37
## 548     18 years old or older   Male              12th grade   1.88  86.18
## 549              16 years old   Male              11th grade   1.88  89.36
## 550     18 years old or older   Male              12th grade   1.88  58.97
## 551              15 years old   Male              10th grade   1.88 115.21
## 552              15 years old   Male              10th grade   1.88  66.23
## 553     18 years old or older   Male              12th grade   1.88  90.27
## 554              17 years old   Male              11th grade   1.88  65.77
## 555     18 years old or older   Male              12th grade   1.88  79.83
## 556              16 years old   Male              10th grade   1.88  90.72
## 557              17 years old   Male              11th grade   1.88  70.31
## 558              16 years old   Male              11th grade   1.88  68.04
## 559              15 years old   Male              10th grade   1.88  72.58
## 560              17 years old   Male              11th grade   1.88 122.47
## 561              15 years old   Male              10th grade   1.88  84.37
## 562              16 years old   Male              11th grade   1.88  90.72
## 563     18 years old or older   Male              12th grade   1.88 102.06
## 564              15 years old   Male              10th grade   1.88  61.24
## 565     18 years old or older   Male              12th grade   1.88 113.40
## 566              16 years old   Male              10th grade   1.88  84.37
## 567              17 years old   Male              11th grade   1.88 104.33
## 568              17 years old   Male              11th grade   1.88  96.16
## 569              15 years old   Male               9th grade   1.88 113.40
## 570     18 years old or older   Male              12th grade   1.88  81.65
## 571              17 years old   Male              11th grade   1.88  68.04
## 572              17 years old   Male              11th grade   1.88  82.10
## 573              17 years old   Male              11th grade   1.88  82.56
## 574              16 years old   Male              10th grade   1.88  58.97
## 575              16 years old   Male              11th grade   1.88 122.93
## 576              16 years old   Male              11th grade   1.88  72.58
## 577     18 years old or older   Male              12th grade   1.88 151.96
## 578              16 years old   Male              10th grade   1.88  90.72
## 579              17 years old   Male              11th grade   1.88  81.65
## 580              14 years old   Male               9th grade   1.88  76.20
## 581              16 years old   Male              10th grade   1.88  83.92
## 582     18 years old or older   Male              12th grade   1.88 131.54
## 583              17 years old   Male              12th grade   1.88  77.11
## 584     18 years old or older   Male              11th grade   1.88  73.03
## 585              17 years old   Male              11th grade   1.88 117.94
## 586     18 years old or older   Male              12th grade   1.88  86.18
## 587     18 years old or older   Male              12th grade   1.88  86.18
## 588              16 years old   Male              11th grade   1.88  79.38
## 589     18 years old or older   Male              12th grade   1.88  94.35
## 590     18 years old or older   Male              12th grade   1.88  77.11
## 591              16 years old   Male              11th grade   1.88 104.33
## 592              17 years old   Male              11th grade   1.88 140.62
## 593              15 years old   Male               9th grade   1.88  77.11
## 594              17 years old   Male              11th grade   1.88  92.99
## 595              16 years old   Male              10th grade   1.88 111.13
## 596              17 years old   Male              11th grade   1.88 111.13
## 597              17 years old   Male              12th grade   1.88  68.04
## 598     18 years old or older   Male              12th grade   1.88 117.94
## 599     18 years old or older   Male              12th grade   1.88  87.54
## 600              16 years old   Male              11th grade   1.88  81.65
## 601              17 years old   Male              11th grade   1.88  68.04
## 602              17 years old   Male              11th grade   1.88  81.65
## 603              17 years old   Male              12th grade   1.88 122.02
## 604              16 years old   Male              11th grade   1.88  81.65
## 605              15 years old Female               9th grade   1.88  81.65
## 606              16 years old   Male              10th grade   1.88  81.65
## 607              17 years old   Male              12th grade   1.88  90.72
## 608              17 years old   Male              11th grade   1.88  97.52
## 609              16 years old   Male              10th grade   1.88  81.65
## 610              16 years old   Male              10th grade   1.88  81.65
## 611              15 years old   Male               9th grade   1.88 106.60
## 612              16 years old   Male              11th grade   1.88  77.11
## 613     18 years old or older   Male              12th grade   1.88  70.31
## 614              17 years old   Male              11th grade   1.88  68.04
## 615     18 years old or older   Male              12th grade   1.88  92.99
## 616     18 years old or older   Male              11th grade   1.88  77.11
## 617              17 years old   Male              11th grade   1.88  92.99
## 618              17 years old   Male              12th grade   1.88  54.43
## 619     18 years old or older   Male              12th grade   1.88  71.67
## 620              16 years old   Male              11th grade   1.88  86.18
## 621              17 years old   Male              12th grade   1.88  97.52
## 622              16 years old   Male              11th grade   1.88 104.33
## 623              17 years old   Male              11th grade   1.88  95.26
## 624     18 years old or older   Male              12th grade   1.88  77.11
## 625              17 years old   Male              11th grade   1.88  68.04
## 626              17 years old   Male              11th grade   1.88 121.56
## 627              17 years old   Male              12th grade   1.88  83.92
## 628     18 years old or older   Male              12th grade   1.88  99.79
## 629              17 years old   Male              11th grade   1.88  88.91
## 630              17 years old   Male              11th grade   1.88  68.95
## 631              16 years old   Male              10th grade   1.88  77.11
## 632              15 years old   Male               9th grade   1.88 108.86
## 633              17 years old   Male              12th grade   1.88  90.72
## 634     18 years old or older   Male              12th grade   1.88  86.64
## 635              16 years old   Male               9th grade   1.88  89.36
## 636              17 years old   Male              11th grade   1.88  73.48
## 637              15 years old   Male               9th grade   1.88  65.77
## 638              15 years old   Male               9th grade   1.88  88.00
## 639     18 years old or older   Male              12th grade   1.88 131.54
## 640              17 years old   Male              11th grade   1.88  79.38
## 641              15 years old   Male               9th grade   1.88  81.65
## 642              17 years old   Male              10th grade   1.88  78.02
## 643              17 years old   Male              10th grade   1.88 129.28
## 644     18 years old or older   Male              12th grade   1.88  68.04
## 645              16 years old   Male              11th grade   1.88  74.84
## 646              15 years old   Male              10th grade   1.88  86.18
## 647              16 years old   Male              11th grade   1.88  77.11
## 648              16 years old   Male               9th grade   1.88 131.54
## 649     18 years old or older   Male              12th grade   1.88  92.08
## 650              17 years old   Male              12th grade   1.88  89.36
## 651              13 years old   Male               9th grade   1.88 104.33
## 652              16 years old   Male              11th grade   1.88  68.04
## 653              14 years old   Male                    <NA>   1.88 126.55
## 654              14 years old   Male               9th grade   1.88 112.04
## 655              15 years old   Male              10th grade   1.88 133.81
## 656              15 years old   Male              10th grade   1.88 113.40
## 657              16 years old   Male              11th grade   1.88  63.50
## 658              16 years old   Male              11th grade   1.88  72.12
## 659              16 years old   Male              11th grade   1.88  77.11
## 660     18 years old or older   Male              12th grade   1.88  83.92
## 661              17 years old   Male              12th grade   1.88  77.11
## 662              17 years old   Male              12th grade   1.88  65.77
## 663     18 years old or older   Male              12th grade   1.88  70.31
## 664              15 years old   Male              10th grade   1.88 100.25
## 665              16 years old   Male              10th grade   1.88  90.72
## 666              15 years old   Male              10th grade   1.88 120.20
## 667              17 years old   Male              12th grade   1.88  74.84
## 668              14 years old   Male               9th grade   1.88 104.33
## 669     18 years old or older   Male              12th grade   1.88  74.84
## 670              15 years old   Male               9th grade   1.88  70.31
## 671              17 years old   Male              12th grade   1.88 106.60
## 672              15 years old   Male                    <NA>   1.88  72.58
## 673              16 years old   Male              10th grade   1.88  58.97
## 674     18 years old or older   Male              12th grade   1.88 102.06
## 675              16 years old   Male              10th grade   1.88  60.78
## 676              16 years old   Male              11th grade   1.88  68.04
## 677              16 years old   Male              10th grade   1.88  68.04
## 678              15 years old   Male              10th grade   1.88  70.31
## 679              13 years old   Male              12th grade   1.88 113.40
## 680              17 years old   Male              12th grade   1.88  68.04
## 681              15 years old   Male              10th grade   1.88 136.08
## 682              16 years old   Male              11th grade   1.88  77.57
## 683              17 years old   Male              12th grade   1.88 104.33
## 684              16 years old   Male              10th grade   1.88  83.92
## 685              16 years old   Male              11th grade   1.88 102.06
## 686              17 years old   Male              11th grade   1.88  58.97
## 687              15 years old   Male              10th grade   1.88 129.28
## 688              14 years old   Male               9th grade   1.88  68.04
## 689              16 years old   Male              11th grade   1.88  79.38
## 690              15 years old   Male               9th grade   1.88  95.26
## 691              17 years old   Male              12th grade   1.88  79.38
## 692              17 years old   Male              11th grade   1.88 139.71
## 693     18 years old or older   Male              12th grade   1.88  82.56
## 694     18 years old or older   Male              12th grade   1.88 104.33
## 695     18 years old or older   Male              12th grade   1.88  81.65
## 696              16 years old   Male              11th grade   1.88  95.26
## 697              16 years old   Male              10th grade   1.88  70.31
## 698              15 years old   Male              10th grade   1.88  63.05
## 699              15 years old Female              10th grade   1.88  79.38
## 700              15 years old Female               9th grade   1.88  74.84
## 701              14 years old   Male               9th grade   1.88  88.00
## 702              17 years old   Male              11th grade   1.88  83.92
## 703              15 years old   Male              10th grade   1.88  81.65
## 704              16 years old   Male              11th grade   1.88 108.86
## 705     18 years old or older   Male              12th grade   1.88  95.26
## 706              16 years old   Male              11th grade   1.88  71.22
## 707              15 years old Female              10th grade   1.88  68.04
## 708              15 years old   Male              10th grade   1.88  72.58
## 709              16 years old   Male              11th grade   1.88  57.15
## 710              16 years old   Male              11th grade   1.88  88.45
## 711              17 years old   Male              12th grade   1.88  79.38
## 712              16 years old   Male              11th grade   1.88  74.84
## 713              16 years old   Male              11th grade   1.88  63.50
## 714              17 years old   Male              12th grade   1.88  95.26
## 715              15 years old   Male              10th grade   1.88  68.04
## 716              16 years old   Male              11th grade   1.88  81.65
## 717              14 years old   Male               9th grade   1.88  52.16
## 718              15 years old   Male              10th grade   1.88  83.46
## 719              17 years old   Male              12th grade   1.88  79.38
## 720              15 years old   Male              10th grade   1.88 127.01
## 721              15 years old   Male              10th grade   1.88 122.47
## 722              17 years old   Male              12th grade   1.88  70.31
## 723              16 years old   Male              10th grade   1.88  79.83
## 724              17 years old   Male              11th grade   1.88  83.92
## 725              16 years old   Male              10th grade   1.88  88.45
## 726              17 years old   Male              11th grade   1.88  68.04
## 727              15 years old   Male               9th grade   1.88  95.71
## 728              15 years old   Male               9th grade   1.88 108.86
## 729     18 years old or older   Male              12th grade   1.88 102.51
## 730     18 years old or older   Male              12th grade   1.88 121.56
## 731     18 years old or older   Male              12th grade   1.88  72.58
## 732              16 years old   Male              10th grade   1.88  74.84
## 733              16 years old   Male              11th grade   1.88  79.38
## 734              14 years old   Male               9th grade   1.88  86.18
## 735     18 years old or older   Male              12th grade   1.88  72.58
## 736              16 years old   Male              10th grade   1.88  79.38
## 737              17 years old   Male              12th grade   1.88  73.48
## 738              17 years old   Male              12th grade   1.88 122.47
## 739     18 years old or older   Male              12th grade   1.88 124.74
## 740              17 years old   Male              11th grade   1.88  76.20
## 741              17 years old   Male              11th grade   1.88  90.72
## 742              16 years old Female              10th grade   1.88  83.92
## 743              16 years old   Male              11th grade   1.88 124.74
## 744              17 years old   Male              11th grade   1.88 127.01
## 745              16 years old   Male              11th grade   1.88  81.65
## 746     18 years old or older   Male              12th grade   1.88  97.52
## 747     18 years old or older   Male              12th grade   1.88  72.58
## 748              17 years old   Male              11th grade   1.88  77.11
## 749     18 years old or older   Male              12th grade   1.88  74.84
## 750              16 years old   Male              11th grade   1.88  88.45
## 751     18 years old or older   Male              12th grade   1.88  86.18
## 752              15 years old   Male              10th grade   1.88  75.75
## 753              16 years old   Male              11th grade   1.88  77.11
## 754              17 years old   Male              11th grade   1.88  97.52
## 755              16 years old   Male              11th grade   1.88  77.11
## 756              15 years old   Male              10th grade   1.88  97.98
## 757              17 years old   Male              12th grade   1.88  87.09
## 758              15 years old   Male               9th grade   1.88 108.86
## 759     18 years old or older   Male              12th grade   1.88  72.58
## 760              16 years old   Male              10th grade   1.88  95.26
## 761              14 years old   Male               9th grade   1.88  80.74
## 762              16 years old   Male              11th grade   1.88 104.33
## 763              16 years old   Male              10th grade   1.88 103.42
## 764     18 years old or older   Male              12th grade   1.88 128.82
## 765              15 years old   Male              10th grade   1.88 108.86
## 766              15 years old   Male              10th grade   1.88  66.23
## 767              17 years old   Male              12th grade   1.88  70.31
## 768              17 years old   Male              11th grade   1.88  90.27
## 769              15 years old   Male               9th grade   1.88  89.36
## 770              15 years old   Male              10th grade   1.88  81.65
## 771              15 years old   Male               9th grade   1.88  63.05
## 772     18 years old or older   Male              12th grade   1.88  73.94
## 773              16 years old   Male              10th grade   1.88 107.05
## 774              15 years old   Male              10th grade   1.88  72.58
## 775              16 years old   Male              10th grade   1.88 135.17
## 776              17 years old   Male              11th grade   1.88 110.22
## 777              17 years old   Male              11th grade   1.88  63.50
## 778              17 years old   Male              11th grade   1.88  79.38
## 779              17 years old   Male              12th grade   1.88  57.61
## 780              14 years old   Male               9th grade   1.88 121.56
## 781              15 years old   Male               9th grade   1.88  68.95
## 782              15 years old   Male               9th grade   1.88  79.38
## 783              15 years old   Male               9th grade   1.88  88.45
## 784              15 years old   Male               9th grade   1.88  82.56
## 785              14 years old   Male               9th grade   1.88  68.04
## 786              14 years old   Male               9th grade   1.85  56.70
## 787     18 years old or older   Male              12th grade   1.85  63.50
## 788              15 years old   Male              10th grade   1.85  78.02
## 789              16 years old   Male              11th grade   1.85  89.81
## 790              15 years old   Male               9th grade   1.85  77.11
## 791              16 years old   Male              10th grade   1.85  64.86
## 792              17 years old   Male              10th grade   1.85  70.31
## 793              17 years old   Male              11th grade   1.85 104.33
## 794              17 years old   Male              11th grade   1.85  56.70
## 795              16 years old   Male              10th grade   1.85 172.37
## 796              16 years old   Male              10th grade   1.85 102.06
## 797              16 years old   Male              10th grade   1.85  86.64
## 798              17 years old   Male              11th grade   1.85 102.97
## 799              16 years old   Male              10th grade   1.85  87.09
## 800              15 years old   Male               9th grade   1.85  71.22
## 801              16 years old   Male              10th grade   1.85  66.23
## 802              15 years old   Male              10th grade   1.85 113.40
## 803              15 years old   Male              10th grade   1.85  72.58
## 804              17 years old   Male              11th grade   1.85  72.58
## 805              17 years old   Male              12th grade   1.85  85.73
## 806              15 years old   Male               9th grade   1.85  81.65
## 807              17 years old   Male              12th grade   1.85 117.94
## 808              17 years old   Male              12th grade   1.85  74.84
## 809              16 years old   Male              11th grade   1.85 105.24
## 810              17 years old   Male              12th grade   1.85  83.92
## 811              17 years old   Male              11th grade   1.85  58.97
## 812              17 years old   Male              11th grade   1.85  77.11
## 813     18 years old or older   Male              12th grade   1.85  97.52
## 814     18 years old or older   Male              12th grade   1.85  86.18
## 815              17 years old   Male              12th grade   1.85  73.94
## 816              17 years old   Male              11th grade   1.85  77.11
## 817              16 years old   Male              10th grade   1.85  87.54
## 818              17 years old   Male              12th grade   1.85  65.77
## 819              15 years old   Male               9th grade   1.85  70.76
## 820              15 years old   Male              10th grade   1.85  74.84
## 821              14 years old   Male               9th grade   1.85 108.86
## 822              17 years old   Male              12th grade   1.85  61.69
## 823              16 years old   Male              10th grade   1.85  66.23
## 824              16 years old   Male              10th grade   1.85  80.29
## 825              16 years old   Male              11th grade   1.85  83.92
## 826     18 years old or older   Male              12th grade   1.85  81.65
## 827              16 years old   Male              10th grade   1.85  86.18
## 828              17 years old   Male              11th grade   1.85 117.94
## 829     18 years old or older   Male              12th grade   1.85  68.04
## 830              15 years old   Male              10th grade   1.85  88.45
## 831              16 years old Female              10th grade   1.85  63.50
## 832              17 years old   Male              12th grade   1.85  99.79
## 833              16 years old   Male              11th grade   1.85  75.30
## 834              17 years old   Male              12th grade   1.85  72.58
## 835              17 years old   Male              12th grade   1.85  95.26
## 836              15 years old   Male               9th grade   1.85 111.13
## 837              16 years old   Male              11th grade   1.85  64.41
## 838              14 years old   Male               9th grade   1.85  68.04
## 839              16 years old Female              10th grade   1.85  70.76
## 840              15 years old   Male              10th grade   1.85  72.58
## 841              16 years old   Male              10th grade   1.85  77.11
## 842              14 years old   Male               9th grade   1.85  72.58
## 843              17 years old   Male              12th grade   1.85  59.42
## 844              16 years old   Male              11th grade   1.85  70.76
## 845     18 years old or older   Male              12th grade   1.85  78.93
## 846              17 years old   Male              12th grade   1.85  81.65
## 847              15 years old   Male               9th grade   1.85  65.77
## 848              17 years old   Male              11th grade   1.85  77.11
## 849     18 years old or older Female              12th grade   1.85  89.36
## 850              16 years old   Male              11th grade   1.85  63.50
## 851     18 years old or older   Male              11th grade   1.85 102.06
## 852              15 years old   Male              10th grade   1.85  90.72
## 853              17 years old   Male              12th grade   1.85  86.64
## 854              17 years old   Male              11th grade   1.85  66.23
## 855              17 years old   Male              11th grade   1.85  81.65
## 856              16 years old   Male              10th grade   1.85  52.16
## 857     18 years old or older   Male              12th grade   1.85  79.83
## 858              16 years old   Male              11th grade   1.85  86.18
## 859     18 years old or older   Male              12th grade   1.85  74.84
## 860              15 years old   Male              10th grade   1.85  68.04
## 861     18 years old or older   Male              12th grade   1.85  72.58
## 862              15 years old   Male               9th grade   1.85  61.24
## 863              17 years old   Male              10th grade   1.85  77.11
## 864              15 years old   Male              10th grade   1.85  88.91
## 865              16 years old   Male              10th grade   1.85  81.65
## 866              17 years old   Male              12th grade   1.85  83.46
## 867     18 years old or older   Male              12th grade   1.85  77.11
## 868              15 years old   Male               9th grade   1.85  58.97
## 869              15 years old   Male               9th grade   1.85  68.04
## 870              14 years old   Male               9th grade   1.85  66.68
## 871              17 years old   Male              11th grade   1.85  97.52
## 872              16 years old   Male              11th grade   1.85  83.92
## 873              16 years old   Male              10th grade   1.85  68.04
## 874              15 years old   Male              10th grade   1.85  61.69
## 875              16 years old   Male              11th grade   1.85  58.97
## 876     18 years old or older   Male              12th grade   1.85  63.50
## 877     18 years old or older   Male              12th grade   1.85  65.77
## 878              16 years old   Male              11th grade   1.85  73.48
## 879              16 years old   Male              10th grade   1.85  86.18
## 880              15 years old   Male              10th grade   1.85  79.38
## 881              16 years old   Male              10th grade   1.85  95.26
## 882              17 years old   Male              12th grade   1.85  86.18
## 883              17 years old   Male              11th grade   1.85  77.11
## 884     18 years old or older   Male              12th grade   1.85  80.74
## 885              17 years old   Male              11th grade   1.85  84.37
## 886              16 years old   Male              10th grade   1.85  72.58
## 887              15 years old   Male               9th grade   1.85  65.77
## 888              16 years old   Male              11th grade   1.85  87.09
## 889              16 years old   Male              10th grade   1.85  83.92
## 890              17 years old   Male              11th grade   1.85  95.26
## 891              16 years old   Male              10th grade   1.85 117.94
## 892              16 years old   Male              11th grade   1.85 147.42
## 893              17 years old   Male              11th grade   1.85  63.50
## 894              17 years old   Male              12th grade   1.85  75.75
## 895              17 years old   Male              11th grade   1.85  79.38
## 896              17 years old   Male              11th grade   1.85  79.38
## 897     18 years old or older   Male              12th grade   1.85  70.31
## 898     18 years old or older   Male              12th grade   1.85  62.60
## 899              16 years old   Male              11th grade   1.85  74.84
## 900     18 years old or older   Male              12th grade   1.85 102.06
## 901              17 years old   Male              12th grade   1.85  74.84
## 902              16 years old   Male              11th grade   1.85  65.77
## 903              16 years old   Male              11th grade   1.85  70.31
## 904              17 years old   Male              12th grade   1.85  86.18
## 905     18 years old or older   Male              12th grade   1.85  64.41
## 906     18 years old or older   Male              12th grade   1.85  72.58
## 907              15 years old   Male               9th grade   1.85  66.68
## 908              15 years old   Male               9th grade   1.85  77.57
## 909     18 years old or older   Male              12th grade   1.85  70.31
## 910              17 years old   Male              11th grade   1.85  78.47
## 911     18 years old or older   Male              12th grade   1.85  74.84
## 912              17 years old   Male              11th grade   1.85  69.40
## 913              16 years old   Male              10th grade   1.85  95.26
## 914              16 years old   Male              10th grade   1.85 108.86
## 915              16 years old   Male              10th grade   1.85  76.20
## 916              16 years old   Male              10th grade   1.85  83.92
## 917              17 years old   Male              12th grade   1.85  72.58
## 918              17 years old   Male              12th grade   1.85  63.50
## 919              15 years old   Male              10th grade   1.85  89.81
## 920              16 years old   Male              11th grade   1.85  63.50
## 921              17 years old   Male              12th grade   1.85  99.79
## 922     18 years old or older   Male              12th grade   1.85 136.08
## 923     18 years old or older   Male              12th grade   1.85 107.05
## 924              17 years old   Male              12th grade   1.85 127.01
## 925     18 years old or older   Male              12th grade   1.85 111.13
## 926     18 years old or older   Male              12th grade   1.85  86.18
## 927              16 years old   Male              10th grade   1.85  99.79
## 928              15 years old   Male               9th grade   1.85  65.77
## 929              16 years old   Male              10th grade   1.85 108.86
## 930     18 years old or older   Male              12th grade   1.85  75.75
## 931     18 years old or older   Male              12th grade   1.85  86.18
## 932     18 years old or older   Male              12th grade   1.85  99.79
## 933     18 years old or older   Male              12th grade   1.85  76.20
## 934              16 years old   Male              11th grade   1.85  72.58
## 935              15 years old   Male               9th grade   1.85  92.99
## 936              17 years old   Male              11th grade   1.85  79.38
## 937              16 years old   Male              10th grade   1.85  81.65
## 938              15 years old   Male              10th grade   1.85  68.04
## 939              15 years old   Male               9th grade   1.85 106.60
## 940              16 years old   Male              10th grade   1.85  77.11
## 941              16 years old   Male              10th grade   1.85  80.74
## 942              16 years old   Male               9th grade   1.85  81.65
## 943              17 years old   Male              11th grade   1.85  65.77
## 944              17 years old   Male              11th grade   1.85  68.04
## 945              16 years old   Male              10th grade   1.85  71.22
## 946              16 years old   Male              11th grade   1.85  65.77
## 947              17 years old   Male              11th grade   1.85  79.38
## 948              16 years old   Male              11th grade   1.85  90.72
## 949              15 years old   Male              10th grade   1.85 104.33
## 950              16 years old   Male              11th grade   1.85 115.67
## 951              16 years old   Male              10th grade   1.85  90.72
## 952     18 years old or older   Male              12th grade   1.85  70.31
## 953              16 years old   Male               9th grade   1.85  68.04
## 954              16 years old   Male              11th grade   1.85  66.68
## 955     18 years old or older   Male              12th grade   1.85  77.57
## 956     18 years old or older   Male              12th grade   1.85  83.92
## 957              17 years old   Male              12th grade   1.85  72.58
## 958              15 years old   Male               9th grade   1.85  72.58
## 959     18 years old or older   Male              12th grade   1.85  97.98
## 960              16 years old   Male              11th grade   1.85  92.99
## 961              17 years old   Male              11th grade   1.85  69.85
## 962     18 years old or older   Male              12th grade   1.85  72.58
## 963              17 years old   Male              11th grade   1.85  68.04
## 964              16 years old   Male              10th grade   1.85  56.70
## 965              17 years old   Male              11th grade   1.85  81.19
## 966              17 years old   Male              11th grade   1.85  99.79
## 967              14 years old   Male               9th grade   1.85 103.42
## 968              17 years old   Male              12th grade   1.85  89.36
## 969              14 years old   Male              10th grade   1.85  65.77
## 970              16 years old   Male              11th grade   1.85  92.08
## 971              15 years old   Male              10th grade   1.85  93.44
## 972              17 years old   Male              11th grade   1.85  68.04
## 973              16 years old   Male              11th grade   1.85  76.20
## 974              16 years old   Male              10th grade   1.85  83.92
## 975              15 years old   Male              10th grade   1.85 127.01
## 976              15 years old   Male              10th grade   1.85  68.95
## 977              17 years old   Male              11th grade   1.85  94.35
## 978              17 years old   Male              11th grade   1.85  70.76
## 979              14 years old   Male               9th grade   1.85  83.46
## 980     18 years old or older   Male              12th grade   1.85 108.86
## 981              16 years old   Male              10th grade   1.85  60.33
## 982              15 years old   Male              10th grade   1.85  72.58
## 983              17 years old   Male              11th grade   1.85  74.84
## 984              17 years old   Male              12th grade   1.85  70.31
## 985              17 years old   Male              11th grade   1.85  74.84
## 986              17 years old   Male              11th grade   1.85  72.12
## 987              17 years old   Male              12th grade   1.85  73.48
## 988              17 years old   Male              11th grade   1.85  88.45
## 989              14 years old   Male               9th grade   1.85  61.24
## 990              15 years old   Male              10th grade   1.85  66.23
## 991              15 years old   Male               9th grade   1.85 127.01
## 992              17 years old   Male              12th grade   1.85  65.77
## 993              14 years old   Male               9th grade   1.85  74.39
## 994     18 years old or older   Male              12th grade   1.85 149.69
## 995              16 years old   Male              11th grade   1.85  68.04
## 996              16 years old   Male              10th grade   1.85  72.58
## 997              16 years old   Male              10th grade   1.85  68.04
## 998              16 years old Female              10th grade   1.85  86.18
## 999              15 years old   Male               9th grade   1.85  90.72
## 1000             17 years old   Male              12th grade   1.85  58.97
## 1001             15 years old   Male               9th grade   1.85  58.97
## 1002             17 years old   Male              11th grade   1.85  88.45
## 1003             17 years old   Male              12th grade   1.85 111.13
## 1004             15 years old   Male               9th grade   1.85 102.06
## 1005             16 years old   Male              10th grade   1.85  62.60
## 1006             17 years old   Male              12th grade   1.85  92.99
## 1007             16 years old   Male              10th grade   1.85  95.26
## 1008             14 years old   Male               9th grade   1.85  65.77
## 1009             17 years old   Male              11th grade   1.85 131.54
## 1010             17 years old   Male              11th grade   1.85  86.18
## 1011             17 years old   Male              12th grade   1.85 105.24
## 1012             15 years old Female              10th grade   1.85  77.11
## 1013             17 years old   Male              11th grade   1.85 117.94
## 1014             16 years old   Male               9th grade   1.85 111.13
## 1015             15 years old   Male              10th grade   1.85  83.01
## 1016             17 years old   Male              12th grade   1.85  97.52
## 1017             16 years old   Male              10th grade   1.85  77.11
## 1018             17 years old   Male              12th grade   1.85 141.98
## 1019    18 years old or older   Male              12th grade   1.85  74.84
## 1020             15 years old   Male               9th grade   1.85  61.24
## 1021             17 years old   Male              12th grade   1.85  63.50
## 1022             14 years old   Male               9th grade   1.85  64.41
## 1023    18 years old or older   Male              12th grade   1.85  63.50
## 1024    18 years old or older   Male              12th grade   1.85  83.92
## 1025             17 years old   Male              11th grade   1.85  77.11
## 1026             16 years old   Male              10th grade   1.85  61.24
## 1027    18 years old or older   Male              12th grade   1.85  74.84
## 1028    18 years old or older   Male              12th grade   1.85  61.24
## 1029             16 years old   Male              10th grade   1.85  77.11
## 1030    18 years old or older   Male              11th grade   1.85  65.77
## 1031    18 years old or older   Male              12th grade   1.85 117.94
## 1032             15 years old   Male               9th grade   1.85  86.18
## 1033             15 years old   Male               9th grade   1.85  81.65
## 1034             14 years old   Male               9th grade   1.85 106.60
## 1035             17 years old   Male              11th grade   1.85  72.58
## 1036             17 years old   Male              12th grade   1.85  88.45
## 1037             16 years old   Male              11th grade   1.85  70.31
## 1038    18 years old or older   Male              12th grade   1.85  90.72
## 1039             17 years old   Male              11th grade   1.85  90.72
## 1040             16 years old   Male              11th grade   1.85  63.96
## 1041             17 years old   Male              11th grade   1.85  97.52
## 1042    18 years old or older   Male              12th grade   1.85  99.79
## 1043    18 years old or older   Male              12th grade   1.85  79.38
## 1044             17 years old   Male              11th grade   1.85  92.99
## 1045             16 years old   Male              10th grade   1.85  65.77
## 1046    18 years old or older   Male              11th grade   1.85 106.14
## 1047             15 years old   Male               9th grade   1.85  87.54
## 1048             17 years old   Male              12th grade   1.85  81.65
## 1049             17 years old   Male              12th grade   1.85  67.13
## 1050             15 years old   Male              10th grade   1.85  72.58
## 1051             17 years old   Male              11th grade   1.85  68.04
## 1052             16 years old   Male               9th grade   1.85 110.22
## 1053    18 years old or older   Male              12th grade   1.85 102.06
## 1054             17 years old   Male              11th grade   1.85  63.50
## 1055             15 years old   Male              10th grade   1.85  72.58
## 1056             17 years old   Male              12th grade   1.85 122.47
## 1057             17 years old   Male              12th grade   1.85  68.04
## 1058    18 years old or older   Male              12th grade   1.85  70.31
## 1059             16 years old   Male              10th grade   1.85  72.58
## 1060             16 years old   Male              11th grade   1.85  63.50
## 1061             17 years old   Male              11th grade   1.85  65.77
## 1062             17 years old   Male              12th grade   1.85  90.72
## 1063             16 years old   Male              12th grade   1.85  92.08
## 1064    18 years old or older   Male              12th grade   1.85  63.50
## 1065             15 years old   Male               9th grade   1.85  56.70
## 1066             17 years old   Male              10th grade   1.85  79.38
## 1067             16 years old   Male              10th grade   1.85  81.65
## 1068             15 years old   Male               9th grade   1.85  72.58
## 1069             15 years old   Male               9th grade   1.85 101.15
## 1070             14 years old   Male               9th grade   1.85  95.26
## 1071             16 years old   Male              10th grade   1.85  90.72
## 1072             17 years old   Male              12th grade   1.85 110.22
## 1073             16 years old   Male              10th grade   1.85  83.92
## 1074             17 years old   Male              11th grade   1.85  65.77
## 1075    18 years old or older   Male              12th grade   1.85  85.73
## 1076             15 years old   Male               9th grade   1.85  63.50
## 1077             16 years old   Male              10th grade   1.85  83.92
## 1078    18 years old or older   Male              12th grade   1.85  61.24
## 1079    18 years old or older   Male              12th grade   1.85  81.65
## 1080             14 years old   Male               9th grade   1.85  97.52
## 1081             16 years old   Male              11th grade   1.85  84.82
## 1082             17 years old   Male              11th grade   1.85  97.52
## 1083             15 years old   Male               9th grade   1.85  84.37
## 1084             16 years old   Male              11th grade   1.85  65.77
## 1085    18 years old or older   Male              12th grade   1.85  68.04
## 1086             16 years old   Male              10th grade   1.85  77.11
## 1087    18 years old or older   Male              12th grade   1.85  75.75
## 1088             15 years old   Male               9th grade   1.85  73.48
## 1089             14 years old   Male               9th grade   1.85  95.26
## 1090             17 years old   Male              11th grade   1.85 140.62
## 1091             16 years old   Male              10th grade   1.85  78.02
## 1092             16 years old   Male              10th grade   1.85  86.18
## 1093             17 years old   Male              11th grade   1.85  81.65
## 1094    18 years old or older   Male              12th grade   1.85  79.38
## 1095             15 years old   Male               9th grade   1.85  88.45
## 1096             16 years old   Male               9th grade   1.85 104.33
## 1097             16 years old   Male              10th grade   1.85  82.10
## 1098             16 years old   Male              10th grade   1.85  70.31
## 1099             17 years old   Male              12th grade   1.85  65.77
## 1100             17 years old   Male              11th grade   1.85  68.04
## 1101             15 years old   Male              10th grade   1.85 119.75
## 1102             15 years old   Male              10th grade   1.85 108.86
## 1103             15 years old   Male              10th grade   1.85  85.28
## 1104             16 years old   Male              10th grade   1.85 117.94
## 1105             17 years old   Male              11th grade   1.85  77.11
## 1106             17 years old   Male              12th grade   1.85  68.04
## 1107             17 years old   Male              12th grade   1.85  76.20
## 1108             15 years old   Male              10th grade   1.85  62.14
## 1109             17 years old   Male              11th grade   1.85 104.33
## 1110             16 years old   Male              10th grade   1.85  96.16
## 1111    18 years old or older   Male              12th grade   1.85  99.79
## 1112             16 years old   Male              11th grade   1.85 101.15
## 1113             15 years old   Male               9th grade   1.85  53.52
## 1114             14 years old   Male               9th grade   1.85  83.01
## 1115             15 years old   Male               9th grade   1.85  77.11
## 1116             16 years old   Male              10th grade   1.85  72.58
## 1117             16 years old   Male              10th grade   1.85  74.84
## 1118             17 years old   Male              11th grade   1.85  81.65
## 1119             16 years old   Male              11th grade   1.85  74.84
## 1120    18 years old or older   Male              12th grade   1.85  54.43
## 1121             14 years old   Male               9th grade   1.85  56.70
## 1122             16 years old   Male              10th grade   1.85  83.92
## 1123             15 years old   Male              10th grade   1.85  63.50
## 1124             17 years old   Male              10th grade   1.85  71.67
## 1125             17 years old   Male              11th grade   1.85  79.38
## 1126             17 years old   Male              12th grade   1.85  95.26
## 1127             17 years old   Male              12th grade   1.85  84.37
## 1128             14 years old   Male               9th grade   1.85 151.50
## 1129             15 years old   Male              10th grade   1.85  95.26
## 1130             16 years old   Male              11th grade   1.85  92.08
## 1131             16 years old   Male              11th grade   1.85  69.40
## 1132             17 years old   Male              12th grade   1.85  82.10
## 1133             14 years old   Male               9th grade   1.85  72.58
## 1134             16 years old   Male              11th grade   1.85 115.67
## 1135             17 years old   Male                    <NA>   1.85  74.84
## 1136             17 years old   Male              12th grade   1.85  67.13
## 1137             17 years old   Male                    <NA>   1.85  86.18
## 1138             16 years old   Male              10th grade   1.85  72.58
## 1139             16 years old   Male              11th grade   1.85  67.13
## 1140    18 years old or older   Male              12th grade   1.85 104.33
## 1141             14 years old   Male               9th grade   1.85  73.03
## 1142             15 years old   Male               9th grade   1.85  73.94
## 1143             17 years old   Male              12th grade   1.85  99.79
## 1144             17 years old   Male              12th grade   1.85  74.84
## 1145             17 years old   Male              12th grade   1.85  74.84
## 1146             16 years old   Male              11th grade   1.85  84.82
## 1147             15 years old   Male              10th grade   1.85  71.22
## 1148             16 years old   Male              10th grade   1.85  68.95
## 1149             17 years old   Male              12th grade   1.85  65.77
## 1150             17 years old   Male              11th grade   1.85  68.04
## 1151             14 years old   Male               9th grade   1.85  73.03
## 1152             17 years old   Male              12th grade   1.85 130.18
## 1153             16 years old   Male              11th grade   1.85 138.80
## 1154             14 years old   Male Ungraded or other grade   1.85  81.65
## 1155             16 years old   Male              10th grade   1.85  72.58
## 1156             15 years old   Male              10th grade   1.85  88.45
## 1157             17 years old   Male              12th grade   1.85  72.58
## 1158             15 years old   Male              10th grade   1.85 106.60
## 1159             17 years old   Male              12th grade   1.85  97.52
## 1160             16 years old   Male              11th grade   1.85  72.58
## 1161             17 years old   Male              11th grade   1.85  56.70
## 1162             15 years old   Male              10th grade   1.85  83.92
## 1163             16 years old   Male              11th grade   1.85  99.79
## 1164             15 years old   Male              10th grade   1.85  58.97
## 1165             16 years old   Male              10th grade   1.85  81.65
## 1166             15 years old   Male              10th grade   1.85  77.11
## 1167             16 years old   Male              10th grade   1.85 113.40
## 1168             14 years old   Male               9th grade   1.85  83.01
## 1169             16 years old   Male              11th grade   1.85  74.39
## 1170             16 years old   Male              11th grade   1.85 117.94
## 1171             16 years old   Male              11th grade   1.85  77.11
## 1172             14 years old   Male               9th grade   1.85  90.72
## 1173             14 years old   Male               9th grade   1.85  68.04
## 1174             14 years old   Male               9th grade   1.85  79.38
## 1175             16 years old   Male              11th grade   1.85 108.86
## 1176             16 years old   Male              10th grade   1.85 101.61
## 1177             14 years old   Male               9th grade   1.85  68.95
## 1178             16 years old   Male              11th grade   1.85  83.92
## 1179    18 years old or older   Male              12th grade   1.85 140.62
## 1180             16 years old   Male              11th grade   1.85 112.04
## 1181             16 years old   Male              11th grade   1.85  74.84
## 1182             16 years old   Male              10th grade   1.85  92.99
## 1183             16 years old   Male              10th grade   1.85  71.67
## 1184             15 years old   Male               9th grade   1.85 113.40
## 1185             16 years old   Male              11th grade   1.85  90.72
## 1186             15 years old   Male              10th grade   1.85  90.72
## 1187             16 years old   Male              10th grade   1.85  71.67
## 1188             16 years old   Male              11th grade   1.85  79.38
## 1189             16 years old   Male              10th grade   1.85  63.50
## 1190             14 years old   Male               9th grade   1.85  79.38
## 1191             16 years old   Male              11th grade   1.85  83.92
## 1192             16 years old   Male              11th grade   1.85  63.50
## 1193    18 years old or older   Male              12th grade   1.85  92.99
## 1194             16 years old Female              11th grade   1.85 102.06
## 1195             17 years old   Male              11th grade   1.85 136.08
## 1196             15 years old   Male              10th grade   1.85  70.31
## 1197             15 years old   Male              10th grade   1.85  61.24
## 1198    18 years old or older   Male              12th grade   1.85  74.84
## 1199             17 years old   Male              12th grade   1.85  63.50
## 1200             15 years old   Male              10th grade   1.85  97.52
## 1201             15 years old   Male               9th grade   1.85  79.38
## 1202             16 years old   Male              11th grade   1.85  65.77
## 1203             16 years old   Male              11th grade   1.85  79.38
## 1204             16 years old   Male              11th grade   1.85  58.97
## 1205             16 years old   Male              10th grade   1.85  81.65
## 1206             15 years old   Male               9th grade   1.85  68.95
## 1207             17 years old   Male              12th grade   1.85  86.18
## 1208             17 years old   Male              11th grade   1.85  97.52
## 1209             16 years old   Male              10th grade   1.85  74.84
## 1210             15 years old   Male              10th grade   1.85  54.89
## 1211             17 years old   Male              11th grade   1.85  74.84
## 1212             17 years old   Male              11th grade   1.85  65.77
## 1213             17 years old   Male              11th grade   1.85 102.06
## 1214             17 years old   Male              11th grade   1.85 113.40
## 1215             15 years old   Male              10th grade   1.85  61.24
## 1216    18 years old or older   Male              12th grade   1.85  88.45
## 1217             15 years old   Male              10th grade   1.85  68.04
## 1218             17 years old   Male              12th grade   1.85 131.09
## 1219             16 years old   Male              10th grade   1.85  81.65
## 1220             15 years old   Male               9th grade   1.85  81.65
## 1221             15 years old   Male               9th grade   1.85  78.47
## 1222             17 years old   Male              11th grade   1.85  66.68
## 1223    18 years old or older   Male              12th grade   1.85  86.18
## 1224             17 years old   Male              12th grade   1.85  74.84
## 1225             16 years old   Male              10th grade   1.85 112.95
## 1226             16 years old   Male              11th grade   1.85  77.11
## 1227             16 years old   Male              10th grade   1.85  81.65
## 1228             16 years old   Male              11th grade   1.85 102.06
## 1229             16 years old   Male              11th grade   1.85  81.65
## 1230    18 years old or older   Male              12th grade   1.85 102.06
## 1231             16 years old   Male              11th grade   1.85  74.84
## 1232             15 years old   Male               9th grade   1.85  74.84
## 1233             17 years old   Male              11th grade   1.85 108.86
## 1234    18 years old or older   Male              12th grade   1.85  58.97
## 1235             16 years old   Male              10th grade   1.85  72.58
## 1236             15 years old   Male              10th grade   1.85  86.18
## 1237             14 years old   Male               9th grade   1.85  77.11
## 1238             16 years old   Male              10th grade   1.85  76.20
## 1239             17 years old   Male              11th grade   1.85  61.24
## 1240             14 years old   Male               9th grade   1.85  90.72
## 1241             15 years old   Male               9th grade   1.85  72.58
## 1242             17 years old Female              11th grade   1.85  58.97
## 1243             16 years old   Male              11th grade   1.85 129.28
## 1244             16 years old   Male              11th grade   1.85  61.24
## 1245             17 years old   Male              11th grade   1.85  99.79
## 1246             16 years old   Male              10th grade   1.85  68.04
## 1247             16 years old   Male              10th grade   1.85  80.29
## 1248             16 years old   Male              10th grade   1.85  81.65
## 1249             16 years old   Male              10th grade   1.85 142.88
## 1250             15 years old   Male              10th grade   1.85  67.13
## 1251             15 years old   Male               9th grade   1.85  97.52
## 1252             17 years old   Male              11th grade   1.85  86.18
## 1253             17 years old   Male              11th grade   1.85 113.40
## 1254             16 years old   Male              10th grade   1.85  62.14
## 1255    18 years old or older   Male              12th grade   1.85  79.38
## 1256             16 years old   Male              10th grade   1.85  72.58
## 1257             14 years old   Male               9th grade   1.85  77.11
## 1258             14 years old   Male               9th grade   1.85  81.19
## 1259             16 years old   Male              11th grade   1.85 113.40
## 1260    18 years old or older   Male              12th grade   1.85  99.79
## 1261             17 years old   Male              11th grade   1.85  79.38
## 1262             17 years old   Male              11th grade   1.85  95.26
## 1263             14 years old   Male               9th grade   1.85  70.31
## 1264             15 years old   Male               9th grade   1.85  77.57
## 1265             14 years old   Male               9th grade   1.85  75.75
## 1266             13 years old   Male               9th grade   1.85  99.79
## 1267             16 years old   Male              11th grade   1.85  70.31
## 1268             14 years old   Male               9th grade   1.85  77.11
## 1269             15 years old   Male               9th grade   1.85  81.65
## 1270             15 years old   Male               9th grade   1.85  70.31
## 1271             14 years old   Male               9th grade   1.85  68.04
## 1272             14 years old   Male               9th grade   1.85  61.69
## 1273             15 years old   Male               9th grade   1.85  56.70
## 1274             14 years old   Male               9th grade   1.85  64.41
## 1275             15 years old   Male               9th grade   1.85  72.58
## 1276             15 years old   Male               9th grade   1.85  86.18
## 1277             17 years old   Male              11th grade   1.83  74.84
## 1278             16 years old   Male              10th grade   1.83  83.92
## 1279    18 years old or older   Male              12th grade   1.83  80.74
## 1280    18 years old or older   Male              11th grade   1.83  86.18
## 1281             14 years old   Male               9th grade   1.83 111.13
## 1282             17 years old   Male              10th grade   1.83  74.39
## 1283             15 years old   Male               9th grade   1.83  72.58
## 1284             15 years old   Male               9th grade   1.83  89.81
## 1285             17 years old   Male              12th grade   1.83  99.79
## 1286    18 years old or older   Male              11th grade   1.83  75.30
## 1287             15 years old   Male               9th grade   1.83  88.91
## 1288             16 years old   Male              11th grade   1.83  92.99
## 1289             17 years old   Male              11th grade   1.83  55.79
## 1290             15 years old   Male               9th grade   1.83  60.78
## 1291    18 years old or older   Male              12th grade   1.83  86.18
## 1292    18 years old or older   Male              12th grade   1.83  68.04
## 1293    18 years old or older   Male              12th grade   1.83 108.86
## 1294             16 years old   Male              10th grade   1.83  79.38
## 1295             15 years old   Male              10th grade   1.83  74.84
## 1296             15 years old   Male              10th grade   1.83  87.09
## 1297             15 years old   Male              10th grade   1.83  60.33
## 1298             16 years old   Male              11th grade   1.83  65.32
## 1299             16 years old   Male              10th grade   1.83  68.04
## 1300             17 years old   Male              12th grade   1.83  97.52
## 1301             17 years old   Male              12th grade   1.83  68.95
## 1302    18 years old or older   Male              12th grade   1.83  83.92
## 1303             16 years old   Male              10th grade   1.83  82.56
## 1304    18 years old or older   Male              12th grade   1.83  94.35
## 1305             16 years old   Male              11th grade   1.83  72.58
## 1306             16 years old   Male              10th grade   1.83 127.01
## 1307             16 years old   Male              11th grade   1.83  70.31
## 1308             16 years old   Male              11th grade   1.83  60.78
## 1309             14 years old   Male               9th grade   1.83  54.43
## 1310             17 years old   Male              11th grade   1.83 113.40
## 1311             17 years old   Male              11th grade   1.83  90.72
## 1312             16 years old   Male              11th grade   1.83  63.50
## 1313             17 years old   Male              11th grade   1.83  77.11
## 1314    18 years old or older   Male              12th grade   1.83  85.28
## 1315             17 years old   Male              12th grade   1.83 115.67
## 1316             17 years old   Male              12th grade   1.83  88.45
## 1317             15 years old   Male               9th grade   1.83  61.69
## 1318             17 years old   Male              12th grade   1.83  83.92
## 1319             17 years old   Male              12th grade   1.83  68.04
## 1320             16 years old   Male              11th grade   1.83  68.04
## 1321             15 years old   Male               9th grade   1.83  99.79
## 1322             17 years old   Male              12th grade   1.83  69.85
## 1323             15 years old   Male              10th grade   1.83 122.47
## 1324             15 years old   Male              10th grade   1.83 104.33
## 1325             15 years old   Male              10th grade   1.83  68.04
## 1326             17 years old   Male              12th grade   1.83  72.58
## 1327             15 years old   Male               9th grade   1.83  96.16
## 1328             15 years old   Male              10th grade   1.83  71.67
## 1329             17 years old   Male              12th grade   1.83 136.08
## 1330             15 years old   Male               9th grade   1.83  72.58
## 1331             16 years old   Male              11th grade   1.83  63.50
## 1332             15 years old   Male               9th grade   1.83  74.84
## 1333             15 years old   Male              10th grade   1.83  64.41
## 1334             16 years old   Male              10th grade   1.83  72.58
## 1335             17 years old   Male              12th grade   1.83  70.31
## 1336             13 years old   Male               9th grade   1.83  88.45
## 1337             14 years old   Male               9th grade   1.83  56.70
## 1338             16 years old   Male              11th grade   1.83  62.14
## 1339             17 years old   Male              12th grade   1.83  63.96
## 1340             16 years old   Male              11th grade   1.83  64.86
## 1341             15 years old   Male               9th grade   1.83  90.72
## 1342             17 years old   Male              12th grade   1.83  70.31
## 1343             16 years old   Male              11th grade   1.83  74.84
## 1344    18 years old or older   Male              12th grade   1.83  81.65
## 1345             16 years old   Male              10th grade   1.83  77.57
## 1346    18 years old or older   Male              12th grade   1.83  88.45
## 1347             14 years old   Male               9th grade   1.83  56.25
## 1348    18 years old or older   Male              12th grade   1.83  90.72
## 1349    18 years old or older   Male              12th grade   1.83 111.13
## 1350    18 years old or older   Male              12th grade   1.83  77.11
## 1351    18 years old or older   Male              12th grade   1.83 108.86
## 1352             15 years old   Male               9th grade   1.83  72.58
## 1353             15 years old   Male              10th grade   1.83  70.76
## 1354    18 years old or older   Male              12th grade   1.83  74.84
## 1355             15 years old   Male              10th grade   1.83  81.65
## 1356             15 years old   Male               9th grade   1.83  69.40
## 1357             16 years old   Male              10th grade   1.83  70.31
## 1358             16 years old   Male              11th grade   1.83  92.99
## 1359             15 years old   Male               9th grade   1.83  65.77
## 1360             16 years old   Male              10th grade   1.83 122.47
## 1361             17 years old   Male              12th grade   1.83  61.24
## 1362             17 years old   Male              12th grade   1.83  83.92
## 1363             16 years old   Male              10th grade   1.83  60.33
## 1364             17 years old   Male              12th grade   1.83  65.77
## 1365             17 years old   Male              12th grade   1.83  59.88
## 1366             17 years old   Male              12th grade   1.83  68.04
## 1367    18 years old or older   Male              12th grade   1.83  78.02
## 1368             17 years old   Male              12th grade   1.83  70.31
## 1369             15 years old   Male              10th grade   1.83  76.20
## 1370             17 years old Female              12th grade   1.83  88.45
## 1371             15 years old   Male               9th grade   1.83  90.72
## 1372             14 years old   Male               9th grade   1.83  90.72
## 1373             16 years old   Male              10th grade   1.83  54.43
## 1374             15 years old   Male              10th grade   1.83 111.13
## 1375             17 years old   Male              12th grade   1.83  56.70
## 1376             16 years old   Male              10th grade   1.83 149.69
## 1377             14 years old   Male               9th grade   1.83  65.77
## 1378             16 years old   Male              10th grade   1.83  61.69
## 1379             17 years old   Male              10th grade   1.83  61.24
## 1380             16 years old   Male              11th grade   1.83 113.40
## 1381             17 years old   Male              11th grade   1.83 113.40
## 1382             17 years old   Male              11th grade   1.83  65.77
## 1383    18 years old or older   Male              12th grade   1.83  56.70
## 1384    18 years old or older   Male              12th grade   1.83  81.65
## 1385             17 years old   Male              12th grade   1.83  74.84
## 1386    18 years old or older   Male              12th grade   1.83  72.58
## 1387    18 years old or older   Male              12th grade   1.83  63.50
## 1388             15 years old   Male              10th grade   1.83  85.73
## 1389             15 years old   Male              10th grade   1.83  86.18
## 1390             17 years old   Male              11th grade   1.83 104.33
## 1391             14 years old   Male               9th grade   1.83 108.86
## 1392             17 years old   Male              11th grade   1.83  88.91
## 1393             17 years old   Male              12th grade   1.83  99.79
## 1394             16 years old   Male              11th grade   1.83  71.67
## 1395             16 years old   Male              10th grade   1.83  83.92
## 1396             16 years old   Male              11th grade   1.83  68.04
## 1397             15 years old   Male              10th grade   1.83  86.18
## 1398    18 years old or older   Male              12th grade   1.83  99.79
## 1399             16 years old   Male              11th grade   1.83 108.86
## 1400             17 years old   Male              12th grade   1.83  68.04
## 1401             16 years old   Male              10th grade   1.83  65.77
## 1402             17 years old   Male              11th grade   1.83 104.33
## 1403             17 years old   Male              11th grade   1.83  61.24
## 1404             16 years old   Male              11th grade   1.83  79.38
## 1405             16 years old   Male              10th grade   1.83 129.28
## 1406    18 years old or older   Male              12th grade   1.83 113.40
## 1407    18 years old or older   Male              12th grade   1.83 132.00
## 1408             14 years old   Male               9th grade   1.83  76.20
## 1409             16 years old   Male              10th grade   1.83  90.72
## 1410             16 years old   Male              10th grade   1.83 116.58
## 1411             16 years old   Male              11th grade   1.83  84.37
## 1412    18 years old or older   Male              12th grade   1.83  61.69
## 1413             14 years old   Male               9th grade   1.83  88.45
## 1414             17 years old   Male              12th grade   1.83 106.60
## 1415    18 years old or older   Male              12th grade   1.83  74.84
## 1416    18 years old or older   Male              12th grade   1.83  92.99
## 1417             17 years old   Male              11th grade   1.83  80.74
## 1418             16 years old   Male              11th grade   1.83 117.94
## 1419             15 years old   Male              10th grade   1.83  70.31
## 1420    18 years old or older   Male              12th grade   1.83  71.22
## 1421    18 years old or older   Male              12th grade   1.83  67.13
## 1422    18 years old or older   Male              12th grade   1.83  72.58
## 1423             15 years old   Male               9th grade   1.83  72.58
## 1424             17 years old   Male              12th grade   1.83  77.11
## 1425             16 years old   Male              11th grade   1.83 132.45
## 1426             17 years old   Male              10th grade   1.83  77.11
## 1427    18 years old or older   Male              12th grade   1.83 158.76
## 1428    18 years old or older   Male              12th grade   1.83  56.70
## 1429             16 years old   Male              11th grade   1.83  63.50
## 1430             16 years old   Male              10th grade   1.83  56.70
## 1431    18 years old or older   Male              11th grade   1.83  93.44
## 1432             16 years old   Male              10th grade   1.83  70.31
## 1433             17 years old   Male              12th grade   1.83 102.06
## 1434             17 years old   Male              11th grade   1.83  68.04
## 1435             16 years old   Male              11th grade   1.83 122.47
## 1436             15 years old   Male               9th grade   1.83  91.17
## 1437             15 years old   Male              10th grade   1.83  86.18
## 1438             15 years old   Male               9th grade   1.83  72.58
## 1439             15 years old   Male               9th grade   1.83  65.77
## 1440             15 years old   Male              10th grade   1.83  58.51
## 1441             15 years old   Male              10th grade   1.83  68.04
## 1442             16 years old   Male              10th grade   1.83  63.50
## 1443             16 years old   Male              10th grade   1.83  95.26
## 1444             16 years old   Male              11th grade   1.83 104.33
## 1445             16 years old   Male              10th grade   1.83 104.33
## 1446             16 years old   Male              10th grade   1.83  70.31
## 1447             16 years old   Male              11th grade   1.83  63.50
## 1448             17 years old   Male              11th grade   1.83  68.04
## 1449             17 years old   Male              12th grade   1.83 117.94
## 1450             16 years old   Male              11th grade   1.83  74.84
## 1451             16 years old Female              10th grade   1.83  69.85
## 1452             16 years old   Male              11th grade   1.83  70.31
## 1453             15 years old   Male               9th grade   1.83  54.43
## 1454             16 years old   Male              10th grade   1.83 120.20
## 1455    18 years old or older   Male              11th grade   1.83  72.58
## 1456             16 years old   Male              11th grade   1.83  73.03
## 1457             16 years old   Male              10th grade   1.83 125.19
## 1458             17 years old   Male              12th grade   1.83  65.77
## 1459             16 years old   Male              11th grade   1.83  92.08
## 1460             17 years old   Male              12th grade   1.83  97.52
## 1461             16 years old   Male              10th grade   1.83  77.11
## 1462             15 years old   Male                    <NA>   1.83  58.97
## 1463    18 years old or older   Male              12th grade   1.83  63.50
## 1464    18 years old or older Female              12th grade   1.83  58.97
## 1465             17 years old   Male              11th grade   1.83  97.52
## 1466             17 years old   Male              11th grade   1.83 104.33
## 1467             17 years old   Male              12th grade   1.83  70.31
## 1468             17 years old   Male              11th grade   1.83  89.36
## 1469             16 years old   Male               9th grade   1.83  77.11
## 1470    18 years old or older   Male              12th grade   1.83  61.24
## 1471             16 years old   Male              11th grade   1.83 102.06
## 1472    18 years old or older   Male              12th grade   1.83  77.11
## 1473             17 years old   Male              12th grade   1.83  65.77
## 1474             17 years old   Male              11th grade   1.83  86.18
## 1475             14 years old   Male               9th grade   1.83  68.49
## 1476             17 years old   Male              12th grade   1.83  88.45
## 1477             15 years old   Male              10th grade   1.83  65.77
## 1478    18 years old or older   Male              12th grade   1.83  83.01
## 1479             15 years old   Male              10th grade   1.83  96.62
## 1480             16 years old   Male              11th grade   1.83  58.97
## 1481             16 years old   Male              10th grade   1.83  59.88
## 1482    18 years old or older   Male              12th grade   1.83  72.58
## 1483    18 years old or older   Male              12th grade   1.83  94.35
## 1484             16 years old   Male              11th grade   1.83 112.49
## 1485             14 years old   Male               9th grade   1.83  65.77
## 1486             16 years old   Male              10th grade   1.83 104.33
## 1487             14 years old   Male               9th grade   1.83  72.58
## 1488             15 years old   Male              10th grade   1.83  54.43
## 1489             15 years old   Male              10th grade   1.83 111.13
## 1490             17 years old   Male              11th grade   1.83  81.65
## 1491             16 years old   Male              10th grade   1.83  58.97
## 1492             16 years old   Male              10th grade   1.83  74.84
## 1493             16 years old   Male              11th grade   1.83  83.92
## 1494             15 years old   Male              10th grade   1.83 113.40
## 1495             16 years old   Male              11th grade   1.83  58.97
## 1496    18 years old or older   Male              12th grade   1.83  65.77
## 1497             16 years old   Male              12th grade   1.83  95.26
## 1498             15 years old   Male              10th grade   1.83 104.33
## 1499             15 years old   Male               9th grade   1.83  74.84
## 1500    18 years old or older   Male              12th grade   1.83  86.18
## 1501             16 years old Female              11th grade   1.83  68.49
## 1502    18 years old or older   Male              12th grade   1.83  71.22
## 1503    18 years old or older   Male              12th grade   1.83  65.77
## 1504             16 years old   Male              11th grade   1.83  72.58
## 1505    18 years old or older   Male              12th grade   1.83  77.11
## 1506             16 years old   Male              11th grade   1.83  72.58
## 1507             17 years old   Male              11th grade   1.83  67.13
## 1508             16 years old   Male               9th grade   1.83  63.50
## 1509             16 years old   Male              10th grade   1.83  81.65
## 1510             17 years old   Male              12th grade   1.83  70.31
## 1511    18 years old or older   Male              12th grade   1.83  77.11
## 1512             14 years old   Male               9th grade   1.83  94.80
## 1513             15 years old   Male              10th grade   1.83  70.31
## 1514             16 years old   Male              11th grade   1.83  72.58
## 1515             17 years old   Male              11th grade   1.83  70.31
## 1516             15 years old   Male              10th grade   1.83  92.99
## 1517             17 years old   Male              12th grade   1.83 110.22
## 1518             14 years old Female               9th grade   1.83 104.33
## 1519             15 years old   Male               9th grade   1.83 109.77
## 1520    18 years old or older   Male              12th grade   1.83  74.84
## 1521             15 years old   Male               9th grade   1.83  81.65
## 1522             16 years old   Male              11th grade   1.83  95.26
## 1523             15 years old   Male              10th grade   1.83  65.77
## 1524             16 years old   Male              10th grade   1.83  73.94
## 1525             15 years old   Male              10th grade   1.83  79.83
## 1526             17 years old   Male              12th grade   1.83  81.65
## 1527    18 years old or older   Male              12th grade   1.83  79.83
## 1528    18 years old or older   Male              12th grade   1.83  61.69
## 1529             17 years old   Male              11th grade   1.83  70.31
## 1530             15 years old   Male              10th grade   1.83  68.04
## 1531             17 years old   Male              11th grade   1.83  63.50
## 1532             15 years old   Male              10th grade   1.83  73.94
## 1533             15 years old   Male              10th grade   1.83  68.04
## 1534    18 years old or older   Male              12th grade   1.83  64.86
## 1535             17 years old   Male              11th grade   1.83  88.45
## 1536             16 years old   Male              11th grade   1.83  72.58
## 1537             17 years old Female              11th grade   1.83  65.77
## 1538             16 years old   Male              10th grade   1.83  62.14
## 1539             15 years old   Male               9th grade   1.83  77.11
## 1540             17 years old   Male              12th grade   1.83  69.85
## 1541             15 years old   Male              10th grade   1.83 108.86
## 1542             15 years old   Male              10th grade   1.83  78.47
## 1543             15 years old   Male               9th grade   1.83 101.15
## 1544             16 years old   Male              11th grade   1.83 158.76
## 1545             17 years old   Male              11th grade   1.83  76.20
## 1546             16 years old   Male              12th grade   1.83  88.45
## 1547             17 years old   Male              11th grade   1.83  99.79
## 1548    18 years old or older   Male              12th grade   1.83  70.31
## 1549             16 years old   Male              10th grade   1.83  78.93
## 1550             16 years old   Male              10th grade   1.83  96.16
## 1551             16 years old   Male              11th grade   1.83  63.50
## 1552             16 years old   Male              11th grade   1.83  61.24
## 1553             17 years old   Male              11th grade   1.83  70.31
## 1554             17 years old   Male              12th grade   1.83  86.18
## 1555             17 years old   Male              12th grade   1.83  95.26
## 1556             17 years old   Male              12th grade   1.83  65.77
## 1557             14 years old   Male               9th grade   1.83  68.04
## 1558    18 years old or older   Male              12th grade   1.83  83.92
## 1559             16 years old   Male              11th grade   1.83  64.86
## 1560    18 years old or older   Male              12th grade   1.83  74.84
## 1561             15 years old   Male               9th grade   1.83  79.38
## 1562             15 years old   Male               9th grade   1.83  69.85
## 1563             16 years old   Male              10th grade   1.83  61.69
## 1564             17 years old   Male              12th grade   1.83  68.04
## 1565    18 years old or older   Male              12th grade   1.83  72.58
## 1566             17 years old   Male              11th grade   1.83  80.74
## 1567             16 years old   Male              11th grade   1.83  81.65
## 1568             17 years old   Male              12th grade   1.83  90.72
## 1569    18 years old or older   Male              12th grade   1.83  74.84
## 1570    18 years old or older   Male              12th grade   1.83  80.74
## 1571             17 years old   Male              11th grade   1.83  78.02
## 1572             17 years old   Male              11th grade   1.83  70.76
## 1573             17 years old   Male              11th grade   1.83  70.31
## 1574             16 years old   Male              11th grade   1.83 127.01
## 1575             14 years old   Male               9th grade   1.83  74.84
## 1576             16 years old   Male              11th grade   1.83  72.58
## 1577             16 years old   Male              11th grade   1.83  68.04
## 1578    18 years old or older Female              12th grade   1.83  58.97
## 1579             16 years old   Male              10th grade   1.83  95.26
## 1580             17 years old Female              12th grade   1.83  56.70
## 1581    18 years old or older Female              12th grade   1.83  68.04
## 1582             16 years old   Male              10th grade   1.83  63.50
## 1583             16 years old   Male              10th grade   1.83  77.11
## 1584             15 years old   Male               9th grade   1.83  69.40
## 1585             15 years old   Male               9th grade   1.83  65.77
## 1586             17 years old   Male              12th grade   1.83  88.45
## 1587             16 years old   Male              11th grade   1.83  86.18
## 1588             15 years old   Male               9th grade   1.83  72.58
## 1589             15 years old   Male               9th grade   1.83  68.04
## 1590             17 years old   Male              11th grade   1.83  72.58
## 1591             15 years old   Male              10th grade   1.83  54.43
## 1592    18 years old or older   Male              12th grade   1.83  70.31
## 1593    18 years old or older   Male              12th grade   1.83  58.97
## 1594             17 years old   Male              11th grade   1.83 111.13
## 1595    18 years old or older   Male              12th grade   1.83  74.84
## 1596    18 years old or older   Male              11th grade   1.83  95.26
## 1597             14 years old   Male               9th grade   1.83  68.95
## 1598             16 years old   Male              10th grade   1.83  90.72
## 1599             16 years old   Male              10th grade   1.83  62.60
## 1600             15 years old   Male               9th grade   1.83 131.54
## 1601             16 years old   Male              10th grade   1.83  58.97
## 1602    18 years old or older   Male              12th grade   1.83  70.31
## 1603    18 years old or older   Male              12th grade   1.83 106.14
## 1604    18 years old or older   Male              12th grade   1.83  63.50
## 1605    18 years old or older   Male              12th grade   1.83  77.11
## 1606             17 years old   Male              11th grade   1.83 106.60
## 1607             16 years old   Male              10th grade   1.83  88.45
## 1608             17 years old   Male              11th grade   1.83 112.95
## 1609             15 years old   Male               9th grade   1.83  63.50
## 1610             17 years old   Male              12th grade   1.83 117.94
## 1611             17 years old   Male              11th grade   1.83  79.38
## 1612             16 years old   Male              10th grade   1.83  86.18
## 1613             17 years old   Male              12th grade   1.83  65.77
## 1614    18 years old or older   Male              12th grade   1.83  60.78
## 1615             16 years old   Male              11th grade   1.83  65.77
## 1616             17 years old   Male              12th grade   1.83  68.04
## 1617             14 years old   Male               9th grade   1.83  81.19
## 1618             16 years old   Male              10th grade   1.83  77.11
## 1619             15 years old   Male               9th grade   1.83  99.79
## 1620             16 years old   Male               9th grade   1.83  90.72
## 1621             17 years old   Male              12th grade   1.83 124.74
## 1622    18 years old or older   Male              12th grade   1.83  68.04
## 1623             16 years old   Male              11th grade   1.83 107.50
## 1624             16 years old   Male              11th grade   1.83  69.85
## 1625             17 years old   Male              12th grade   1.83  74.84
## 1626             15 years old   Male              10th grade   1.83  97.07
## 1627    18 years old or older   Male              11th grade   1.83  88.45
## 1628             17 years old   Male              10th grade   1.83  77.11
## 1629             16 years old   Male              10th grade   1.83  90.72
## 1630             17 years old   Male              12th grade   1.83  88.45
## 1631             16 years old   Male              11th grade   1.83  88.45
## 1632    18 years old or older   Male              12th grade   1.83  81.65
## 1633             16 years old   Male              11th grade   1.83  88.45
## 1634             17 years old   Male              11th grade   1.83 104.33
## 1635             15 years old   Male               9th grade   1.83 108.86
## 1636             15 years old   Male               9th grade   1.83  90.72
## 1637             17 years old   Male              12th grade   1.83  76.20
## 1638             17 years old   Male              12th grade   1.83  68.04
## 1639    18 years old or older   Male              12th grade   1.83  97.52
## 1640    18 years old or older   Male              12th grade   1.83  78.93
## 1641             16 years old   Male              11th grade   1.83  74.84
## 1642             15 years old   Male              10th grade   1.83  57.61
## 1643             17 years old   Male              12th grade   1.83 117.03
## 1644             17 years old Female              12th grade   1.83  54.43
## 1645             17 years old   Male              11th grade   1.83  77.11
## 1646             16 years old   Male              11th grade   1.83  63.50
## 1647    18 years old or older   Male              12th grade   1.83  70.31
## 1648             16 years old   Male              10th grade   1.83  61.24
## 1649             17 years old   Male              12th grade   1.83  83.92
## 1650             16 years old   Male              11th grade   1.83  68.04
## 1651             17 years old   Male              12th grade   1.83  80.74
## 1652             16 years old   Male              10th grade   1.83 113.40
## 1653             17 years old   Male              11th grade   1.83  78.47
## 1654             16 years old   Male              11th grade   1.83  78.93
## 1655             14 years old   Male               9th grade   1.83  77.11
## 1656             15 years old   Male              10th grade   1.83  78.02
## 1657             16 years old   Male              11th grade   1.83  90.27
## 1658             16 years old   Male              11th grade   1.83  68.04
## 1659             16 years old   Male              10th grade   1.83  68.04
## 1660             17 years old   Male              12th grade   1.83  48.99
## 1661    18 years old or older   Male              12th grade   1.83  74.84
## 1662             15 years old   Male              10th grade   1.83  70.31
## 1663             17 years old   Male              12th grade   1.83  68.04
## 1664             15 years old   Male              10th grade   1.83  64.41
## 1665             16 years old   Male              11th grade   1.83  60.33
## 1666             17 years old   Male              12th grade   1.83  97.52
## 1667             17 years old Female              11th grade   1.83  70.31
## 1668             15 years old   Male               9th grade   1.83  63.50
## 1669    18 years old or older   Male              12th grade   1.83  74.84
## 1670             17 years old   Male              12th grade   1.83 111.13
## 1671             16 years old   Male               9th grade   1.83  77.11
## 1672    18 years old or older   Male              12th grade   1.83  56.70
## 1673             17 years old   Male              12th grade   1.83  61.24
## 1674             17 years old   Male              11th grade   1.83  85.28
## 1675             16 years old   Male              10th grade   1.83  72.58
## 1676             14 years old   Male               9th grade   1.83  70.31
## 1677             16 years old   Male              10th grade   1.83  68.95
## 1678             15 years old   Male              10th grade   1.83  52.16
## 1679             16 years old Female              11th grade   1.83 106.60
## 1680    18 years old or older   Male              12th grade   1.83 108.86
## 1681             16 years old   Male              11th grade   1.83  63.50
## 1682             16 years old   Male              10th grade   1.83  70.31
## 1683             16 years old   Male              10th grade   1.83 117.94
## 1684    18 years old or older   Male              12th grade   1.83  67.13
## 1685             17 years old   Male              12th grade   1.83  61.24
## 1686             17 years old   Male              12th grade   1.83  80.74
## 1687             17 years old   Male              11th grade   1.83  86.18
## 1688    18 years old or older   Male              12th grade   1.83  83.01
## 1689             15 years old   Male               9th grade   1.83  99.79
## 1690             16 years old   Male              11th grade   1.83  72.58
## 1691             17 years old   Male              11th grade   1.83  74.84
## 1692             17 years old   Male              12th grade   1.83  63.50
## 1693             15 years old   Male              10th grade   1.83  56.70
## 1694             17 years old   Male              11th grade   1.83  88.45
## 1695             16 years old   Male              10th grade   1.83  99.79
## 1696             17 years old   Male              11th grade   1.83  95.26
## 1697             17 years old   Male              11th grade   1.83 106.60
## 1698             16 years old   Male              11th grade   1.83  62.14
## 1699    18 years old or older   Male              12th grade   1.83  74.84
## 1700             16 years old Female              10th grade   1.83 127.01
## 1701             17 years old   Male              12th grade   1.83  88.00
## 1702    18 years old or older   Male              12th grade   1.83  61.24
## 1703             17 years old   Male              11th grade   1.83  70.31
## 1704    18 years old or older   Male              12th grade   1.83  68.04
## 1705             15 years old   Male              10th grade   1.83  64.86
## 1706             16 years old   Male              10th grade   1.83  74.84
## 1707             17 years old   Male              11th grade   1.83  63.50
## 1708             17 years old   Male              11th grade   1.83  61.24
## 1709    18 years old or older   Male              12th grade   1.83 102.06
## 1710    18 years old or older   Male              12th grade   1.83  75.30
## 1711             17 years old   Male              11th grade   1.83 121.11
## 1712             16 years old   Male              10th grade   1.83 124.74
## 1713             16 years old   Male              10th grade   1.83  97.52
## 1714             17 years old   Male              11th grade   1.83  63.50
## 1715             15 years old   Male               9th grade   1.83  80.74
## 1716    18 years old or older   Male              12th grade   1.83  90.72
## 1717    18 years old or older   Male              12th grade   1.83  83.92
## 1718    18 years old or older   Male              12th grade   1.83  59.42
## 1719             15 years old   Male               9th grade   1.83  70.31
## 1720             15 years old   Male               9th grade   1.83  68.04
## 1721             17 years old   Male              11th grade   1.83  79.38
## 1722             17 years old   Male              12th grade   1.83  74.84
## 1723             16 years old   Male              10th grade   1.83  90.72
## 1724             17 years old   Male              11th grade   1.83  81.65
## 1725             16 years old   Male              10th grade   1.83  61.24
## 1726             16 years old   Male              10th grade   1.83  58.06
## 1727             17 years old   Male              11th grade   1.83 104.33
## 1728             16 years old   Male              10th grade   1.83  72.58
## 1729             16 years old   Male              10th grade   1.83  97.52
## 1730             15 years old   Male               9th grade   1.83  90.72
## 1731             16 years old   Male              10th grade   1.83  74.84
## 1732             16 years old   Male              10th grade   1.83  79.38
## 1733             16 years old   Male              10th grade   1.83  72.58
## 1734             15 years old   Male               9th grade   1.83  88.45
## 1735             16 years old   Male              10th grade   1.83  97.98
## 1736             15 years old   Male               9th grade   1.83  65.77
## 1737             16 years old   Male              11th grade   1.83  52.16
## 1738             17 years old   Male              12th grade   1.83  68.04
## 1739             16 years old   Male              10th grade   1.83  74.84
## 1740             16 years old   Male              10th grade   1.83  95.26
## 1741             16 years old   Male               9th grade   1.83  73.94
## 1742             17 years old   Male              11th grade   1.83  90.72
## 1743    18 years old or older   Male              12th grade   1.83  81.65
## 1744             16 years old   Male              11th grade   1.83  80.74
## 1745             17 years old   Male              10th grade   1.83  70.31
## 1746    18 years old or older   Male              12th grade   1.83  61.24
## 1747    18 years old or older   Male              12th grade   1.83  83.46
## 1748    18 years old or older   Male              12th grade   1.83  83.92
## 1749             16 years old   Male               9th grade   1.83  81.65
## 1750             15 years old   Male               9th grade   1.83  65.32
## 1751    18 years old or older   Male              12th grade   1.83  81.65
## 1752             16 years old   Male              11th grade   1.83  61.24
## 1753             15 years old   Male               9th grade   1.83  76.20
## 1754             16 years old   Male              10th grade   1.83 111.59
## 1755             16 years old   Male              10th grade   1.83  79.38
## 1756             15 years old   Male              10th grade   1.83  61.24
## 1757    18 years old or older   Male              12th grade   1.83  88.45
## 1758             17 years old   Male              12th grade   1.83 117.48
## 1759    18 years old or older   Male              12th grade   1.83  58.97
## 1760    18 years old or older   Male              12th grade   1.83 127.01
## 1761             17 years old   Male              11th grade   1.83  70.31
## 1762             15 years old   Male               9th grade   1.83  69.85
## 1763             14 years old   Male               9th grade   1.83 106.60
## 1764             16 years old   Male              10th grade   1.83  68.04
## 1765             17 years old   Male              11th grade   1.83 135.63
## 1766             16 years old   Male              10th grade   1.83  74.84
## 1767    18 years old or older   Male              12th grade   1.83  71.67
## 1768             16 years old   Male              11th grade   1.83  70.31
## 1769             17 years old   Male              11th grade   1.83  75.75
## 1770             16 years old   Male              11th grade   1.83  76.66
## 1771             17 years old   Male              12th grade   1.83  74.84
## 1772             17 years old   Male              11th grade   1.83 106.60
## 1773    18 years old or older   Male              12th grade   1.83 104.33
## 1774             17 years old   Male              12th grade   1.83  70.31
## 1775             17 years old   Male              12th grade   1.83  70.31
## 1776             17 years old   Male              12th grade   1.83  74.84
## 1777             17 years old   Male              12th grade   1.83  86.18
## 1778             16 years old   Male              10th grade   1.83  71.67
## 1779             15 years old   Male               9th grade   1.83  85.28
## 1780             15 years old   Male               9th grade   1.83  74.84
## 1781             15 years old   Male               9th grade   1.83  52.16
## 1782    18 years old or older Female              11th grade   1.83  83.92
## 1783             16 years old   Male              10th grade   1.83 145.15
## 1784             17 years old   Male              11th grade   1.83  84.82
## 1785             15 years old   Male              10th grade   1.83  86.18
## 1786             17 years old   Male              12th grade   1.83 122.47
## 1787             16 years old   Male              10th grade   1.83  88.45
## 1788             16 years old   Male              10th grade   1.83  67.13
## 1789             15 years old   Male               9th grade   1.83  65.77
## 1790             15 years old   Male              10th grade   1.83  81.65
## 1791             15 years old   Male              10th grade   1.83  90.72
## 1792             17 years old   Male              11th grade   1.83 106.60
## 1793             16 years old Female              10th grade   1.83  83.92
## 1794             17 years old   Male              11th grade   1.83  90.72
## 1795    18 years old or older   Male              12th grade   1.83  95.26
## 1796             16 years old   Male              10th grade   1.83  63.50
## 1797             17 years old   Male              11th grade   1.83 100.70
## 1798             16 years old   Male              11th grade   1.83 102.06
## 1799             17 years old   Male              12th grade   1.83  58.97
## 1800    18 years old or older   Male              12th grade   1.83  79.38
## 1801             15 years old   Male               9th grade   1.83 103.42
## 1802             14 years old   Male               9th grade   1.83  97.98
## 1803             16 years old Female              11th grade   1.83  83.92
## 1804             17 years old   Male              11th grade   1.83 145.15
## 1805    18 years old or older   Male              11th grade   1.83 113.40
## 1806    18 years old or older   Male              12th grade   1.83  81.65
## 1807             16 years old   Male               9th grade   1.83  75.75
## 1808             16 years old   Male              11th grade   1.83  65.77
## 1809    18 years old or older   Male              12th grade   1.83  72.58
## 1810             14 years old   Male               9th grade   1.83  79.38
## 1811             17 years old   Male              11th grade   1.83  86.18
## 1812    18 years old or older   Male              12th grade   1.83  79.38
## 1813             17 years old   Male              11th grade   1.83  78.93
## 1814    18 years old or older   Male              12th grade   1.83  56.70
## 1815    18 years old or older   Male              12th grade   1.83  76.66
## 1816             17 years old   Male              12th grade   1.83 120.20
## 1817             15 years old   Male               9th grade   1.83  86.64
## 1818             16 years old   Male              10th grade   1.83  65.77
## 1819             16 years old   Male              10th grade   1.83  70.31
## 1820             17 years old   Male              11th grade   1.83  97.52
## 1821             17 years old   Male              11th grade   1.83  61.24
## 1822             15 years old   Male               9th grade   1.83  72.58
## 1823             17 years old   Male              10th grade   1.83  88.00
## 1824             16 years old   Male              10th grade   1.83  65.77
## 1825             15 years old   Male               9th grade   1.83  61.24
## 1826             17 years old   Male              12th grade   1.83  79.38
## 1827             16 years old   Male              11th grade   1.83  90.72
## 1828    18 years old or older   Male              12th grade   1.83  88.45
## 1829             16 years old   Male              11th grade   1.83  70.31
## 1830             17 years old   Male              12th grade   1.83  72.58
## 1831             16 years old   Male              11th grade   1.83  68.04
## 1832             16 years old   Male              11th grade   1.83  83.92
## 1833             14 years old   Male               9th grade   1.83  61.24
## 1834             17 years old   Male              12th grade   1.83  83.92
## 1835             16 years old   Male              10th grade   1.83  81.65
## 1836    18 years old or older   Male              12th grade   1.83  86.18
## 1837    18 years old or older   Male              12th grade   1.83  99.79
## 1838             14 years old   Male               9th grade   1.83  65.77
## 1839             17 years old   Male              12th grade   1.83  72.58
## 1840             15 years old Female               9th grade   1.83  83.01
## 1841             17 years old   Male              11th grade   1.83  61.69
## 1842             17 years old   Male              12th grade   1.83  95.26
## 1843             17 years old   Male              12th grade   1.83  72.58
## 1844             16 years old   Male              10th grade   1.83  52.62
## 1845             15 years old   Male              10th grade   1.83 101.15
## 1846    18 years old or older   Male              12th grade   1.83  95.26
## 1847             15 years old   Male              10th grade   1.83  72.58
## 1848             16 years old   Male              10th grade   1.83  74.84
## 1849    18 years old or older   Male              11th grade   1.83  65.77
## 1850             15 years old   Male               9th grade   1.83 117.94
## 1851             14 years old   Male               9th grade   1.83  73.48
## 1852             15 years old   Male               9th grade   1.83  73.94
## 1853             17 years old Female              11th grade   1.83  68.04
## 1854             16 years old   Male              10th grade   1.83 106.60
## 1855             17 years old   Male              12th grade   1.83  68.04
## 1856             17 years old   Male              12th grade   1.83  92.99
## 1857    18 years old or older   Male              12th grade   1.83  74.84
## 1858             17 years old   Male              12th grade   1.83  63.05
## 1859    18 years old or older   Male              12th grade   1.83  72.12
## 1860    18 years old or older   Male              12th grade   1.83  97.52
## 1861             17 years old   Male              11th grade   1.83 113.40
## 1862    18 years old or older   Male              12th grade   1.83 117.94
## 1863             15 years old   Male              10th grade   1.83  79.83
## 1864             17 years old   Male              12th grade   1.83  62.14
## 1865             15 years old   Male               9th grade   1.83 145.15
## 1866             16 years old   Male              11th grade   1.83 104.33
## 1867             15 years old   Male               9th grade   1.83  72.58
## 1868             16 years old   Male              10th grade   1.83  73.94
## 1869             16 years old   Male              10th grade   1.83  65.77
## 1870             16 years old   Male                    <NA>   1.83  70.31
## 1871             16 years old   Male              11th grade   1.83  74.84
## 1872    18 years old or older   Male              12th grade   1.83  63.50
## 1873             15 years old   Male               9th grade   1.83  61.24
## 1874             15 years old   Male               9th grade   1.83  71.67
## 1875             15 years old   Male               9th grade   1.83  65.77
## 1876             15 years old   Male              10th grade   1.83 102.06
## 1877             15 years old   Male               9th grade   1.83  64.86
## 1878             14 years old   Male               9th grade   1.83  90.72
## 1879             14 years old   Male               9th grade   1.83  63.50
## 1880             15 years old Female               9th grade   1.83  71.67
## 1881             15 years old   Male              10th grade   1.83  63.50
## 1882             16 years old   Male              10th grade   1.83  66.68
## 1883             15 years old   Male               9th grade   1.83  69.85
## 1884             15 years old   Male               9th grade   1.83  92.99
## 1885             16 years old   Male               9th grade   1.83 104.33
## 1886             16 years old   Male              10th grade   1.83  68.04
## 1887    18 years old or older   Male              11th grade   1.83  90.72
## 1888             16 years old   Male              11th grade   1.83  87.54
## 1889    18 years old or older   Male              12th grade   1.83  61.24
## 1890    18 years old or older   Male              12th grade   1.83  92.08
## 1891             16 years old   Male              11th grade   1.83  68.04
## 1892    18 years old or older   Male              12th grade   1.83  79.38
## 1893             16 years old   Male              10th grade   1.83  68.49
## 1894             14 years old   Male               9th grade   1.83  98.43
## 1895             15 years old   Male              10th grade   1.83  95.26
## 1896             16 years old   Male              10th grade   1.83 163.30
## 1897             15 years old   Male              10th grade   1.83  79.38
## 1898             17 years old   Male              12th grade   1.83  73.48
## 1899             17 years old   Male              12th grade   1.83  67.13
## 1900             15 years old   Male              10th grade   1.83  81.65
## 1901             16 years old   Male              11th grade   1.83  61.24
## 1902             15 years old   Male               9th grade   1.83 104.33
## 1903             14 years old   Male               9th grade   1.83  79.83
## 1904             15 years old   Male              10th grade   1.83  86.18
## 1905             16 years old   Male              10th grade   1.83  90.72
## 1906             17 years old   Male              11th grade   1.83  70.31
## 1907             17 years old   Male              12th grade   1.83  81.65
## 1908             17 years old   Male              11th grade   1.83  62.60
## 1909             16 years old   Male              11th grade   1.83 127.01
## 1910             15 years old   Male               9th grade   1.83  72.58
## 1911             14 years old   Male               9th grade   1.83  63.50
## 1912             14 years old   Male               9th grade   1.83  75.30
## 1913             15 years old   Male               9th grade   1.83  63.50
## 1914             15 years old   Male               9th grade   1.83  56.70
## 1915             15 years old   Male              10th grade   1.83  77.11
## 1916             16 years old Female                    <NA>   1.83  74.84
## 1917             15 years old   Male              10th grade   1.83  68.04
## 1918             16 years old   Male              10th grade   1.83 108.86
## 1919             15 years old   Male              10th grade   1.83  86.18
## 1920             16 years old   Male              11th grade   1.83  63.50
## 1921    18 years old or older   Male              12th grade   1.83  70.31
## 1922             17 years old   Male              12th grade   1.83  79.38
## 1923             17 years old   Male              12th grade   1.83  86.18
## 1924             14 years old   Male               9th grade   1.83 136.99
## 1925             14 years old   Male               9th grade   1.83  68.49
## 1926             14 years old   Male               9th grade   1.83  63.50
## 1927             16 years old   Male               9th grade   1.83  67.13
## 1928             14 years old   Male              10th grade   1.83  70.31
## 1929             16 years old   Male              11th grade   1.83  81.65
## 1930             17 years old   Male              11th grade   1.83  72.58
## 1931    18 years old or older   Male              12th grade   1.83  79.83
## 1932             17 years old   Male              12th grade   1.83  74.84
## 1933    18 years old or older Female              12th grade   1.83  58.97
## 1934             15 years old   Male               9th grade   1.83  95.26
## 1935             14 years old Female               9th grade   1.83  72.58
## 1936             15 years old   Male               9th grade   1.83  72.58
## 1937             16 years old   Male              10th grade   1.83 104.33
## 1938             16 years old   Male              10th grade   1.83  58.97
## 1939             16 years old   Male              11th grade   1.83  90.72
## 1940             16 years old   Male              11th grade   1.83  65.77
## 1941             16 years old   Male              11th grade   1.83  90.72
## 1942             16 years old   Male              11th grade   1.83  87.54
## 1943             17 years old   Male                    <NA>   1.83  90.72
## 1944             16 years old   Male              11th grade   1.83  83.92
## 1945    18 years old or older   Male                    <NA>   1.83  65.77
## 1946             16 years old   Male              11th grade   1.83  61.24
## 1947             17 years old   Male              12th grade   1.83  74.39
## 1948    18 years old or older   Male              12th grade   1.83  76.66
## 1949             16 years old   Male              11th grade   1.83  54.43
## 1950             15 years old   Male               9th grade   1.83  71.22
## 1951             15 years old Female              10th grade   1.83  81.65
## 1952             16 years old Female                    <NA>   1.83 113.40
## 1953             15 years old   Male                    <NA>   1.83  72.58
## 1954             15 years old   Male              10th grade   1.83  83.92
## 1955             17 years old   Male              11th grade   1.83  74.84
## 1956    18 years old or older   Male              12th grade   1.83  74.84
## 1957             17 years old   Male              12th grade   1.83  74.84
## 1958    18 years old or older   Male              12th grade   1.83 106.60
## 1959    18 years old or older   Male              12th grade   1.83  72.58
## 1960             14 years old   Male               9th grade   1.83  88.45
## 1961             16 years old   Male              10th grade   1.83  65.32
## 1962             16 years old   Male              11th grade   1.83  81.65
## 1963             17 years old   Male              11th grade   1.83  84.37
## 1964             16 years old   Male              11th grade   1.83  72.58
## 1965             17 years old   Male              12th grade   1.83  81.65
## 1966             14 years old   Male               9th grade   1.83  83.92
## 1967             17 years old   Male              11th grade   1.83 115.67
## 1968             17 years old   Male              12th grade   1.83  68.49
## 1969             17 years old   Male              12th grade   1.83  90.72
## 1970    18 years old or older   Male              12th grade   1.83  97.52
## 1971             17 years old   Male              11th grade   1.83  79.38
## 1972             17 years old   Male              11th grade   1.83  63.50
## 1973             15 years old   Male              10th grade   1.83  58.97
## 1974             15 years old   Male              10th grade   1.83  64.41
## 1975             16 years old   Male              11th grade   1.83  64.86
## 1976             16 years old   Male              10th grade   1.83  68.04
## 1977             15 years old   Male              10th grade   1.83  87.09
## 1978             16 years old   Male              10th grade   1.83  74.84
## 1979             16 years old   Male              11th grade   1.83  63.50
## 1980             17 years old   Male              12th grade   1.83  73.48
## 1981             15 years old   Male              10th grade   1.83  58.97
## 1982             16 years old   Male              11th grade   1.83  65.77
## 1983             16 years old   Male              11th grade   1.83  86.18
## 1984             16 years old   Male              11th grade   1.83 108.86
## 1985             17 years old   Male              11th grade   1.83  81.65
## 1986             16 years old   Male              11th grade   1.83  75.75
## 1987             16 years old   Male              11th grade   1.83  74.84
## 1988             17 years old   Male              12th grade   1.83  64.86
## 1989             17 years old   Male              12th grade   1.83  84.82
## 1990             17 years old   Male              12th grade   1.83  77.11
## 1991    18 years old or older   Male              12th grade   1.83  62.60
## 1992             17 years old   Male              12th grade   1.83  64.41
## 1993             15 years old   Male              10th grade   1.83  81.19
## 1994             17 years old   Male              12th grade   1.83  61.24
## 1995             14 years old   Male               9th grade   1.83  90.72
## 1996             14 years old   Male               9th grade   1.83  72.58
## 1997             16 years old   Male              11th grade   1.83  72.58
## 1998             16 years old   Male              11th grade   1.83  90.72
## 1999             14 years old   Male               9th grade   1.83  74.84
## 2000             17 years old   Male              12th grade   1.83  99.34
## 2001             16 years old   Male              11th grade   1.83  72.58
## 2002             16 years old   Male              11th grade   1.83 102.06
## 2003             15 years old   Male              10th grade   1.83  76.20
## 2004             17 years old   Male              12th grade   1.83  77.11
## 2005             15 years old   Male              10th grade   1.83  58.97
## 2006             14 years old   Male               9th grade   1.83  60.33
## 2007             16 years old   Male              11th grade   1.83  65.32
## 2008             16 years old   Male              11th grade   1.83  70.31
## 2009             16 years old   Male              11th grade   1.83  63.50
## 2010             16 years old   Male              11th grade   1.83  72.58
## 2011             16 years old   Male              11th grade   1.83  90.72
## 2012             15 years old   Male              10th grade   1.83  65.77
## 2013             14 years old   Male               9th grade   1.83  90.72
## 2014             16 years old   Male              11th grade   1.83  83.92
## 2015             17 years old   Male              12th grade   1.83  55.79
## 2016    18 years old or older   Male              12th grade   1.83  72.58
## 2017             17 years old   Male              11th grade   1.83  74.84
## 2018             16 years old   Male              11th grade   1.83  90.72
## 2019             16 years old   Male              10th grade   1.83  89.36
## 2020             16 years old   Male              10th grade   1.83  92.99
## 2021             15 years old   Male              10th grade   1.83  58.97
## 2022             17 years old   Male              12th grade   1.83  99.79
## 2023             17 years old   Male              12th grade   1.83  79.38
## 2024             17 years old   Male              12th grade   1.83  74.84
## 2025             16 years old   Male              11th grade   1.83  74.84
## 2026             17 years old   Male              12th grade   1.83 136.08
## 2027    18 years old or older   Male              12th grade   1.83  79.38
## 2028             14 years old   Male               9th grade   1.83  68.04
## 2029             14 years old   Male               9th grade   1.83  63.96
## 2030             15 years old   Male              10th grade   1.83  61.24
## 2031             16 years old   Male              11th grade   1.83  64.86
## 2032             15 years old   Male               9th grade   1.83  74.84
## 2033             16 years old   Male              11th grade   1.83  74.84
## 2034             17 years old   Male              12th grade   1.83  70.31
## 2035             15 years old   Male               9th grade   1.83  97.52
## 2036             16 years old   Male              10th grade   1.83  99.79
## 2037             17 years old   Male              11th grade   1.83  81.19
## 2038             16 years old Female              11th grade   1.83  61.24
## 2039             15 years old   Male              10th grade   1.83  72.58
## 2040             17 years old   Male              12th grade   1.83  65.32
## 2041             15 years old   Male              10th grade   1.83  69.40
## 2042             17 years old   Male              12th grade   1.83  79.83
## 2043             16 years old   Male              11th grade   1.83 102.06
## 2044             15 years old   Male              10th grade   1.83  68.04
## 2045             15 years old   Male              10th grade   1.83  79.38
## 2046             16 years old   Male              11th grade   1.83  59.88
## 2047             16 years old   Male              11th grade   1.83  70.31
## 2048             17 years old   Male              12th grade   1.83 120.20
## 2049             16 years old   Male              11th grade   1.83  79.38
## 2050             15 years old   Male              10th grade   1.83  56.70
## 2051             17 years old   Male              12th grade   1.83  66.68
## 2052             17 years old   Male              11th grade   1.83  68.04
## 2053             16 years old Female              11th grade   1.83  70.31
## 2054             17 years old   Male              12th grade   1.83 180.99
## 2055             16 years old   Male              11th grade   1.83  77.11
## 2056             14 years old   Male               9th grade   1.83 131.54
## 2057             16 years old   Male              11th grade   1.83  65.32
## 2058             17 years old   Male              12th grade   1.83  69.85
## 2059             14 years old   Male              10th grade   1.83  63.50
## 2060             15 years old   Male              10th grade   1.83  66.23
## 2061             15 years old   Male              10th grade   1.83  68.04
## 2062             16 years old   Male              11th grade   1.83  74.84
## 2063             14 years old   Male               9th grade   1.83  69.85
## 2064             15 years old   Male              10th grade   1.83  62.60
## 2065             16 years old   Male              11th grade   1.83  99.79
## 2066             15 years old   Male              10th grade   1.83  64.86
## 2067             16 years old   Male              11th grade   1.83  77.57
## 2068             17 years old   Male              12th grade   1.83  76.20
## 2069             15 years old   Male              10th grade   1.83  77.11
## 2070             16 years old   Male              10th grade   1.83  58.97
## 2071             16 years old   Male              11th grade   1.83  97.52
## 2072             17 years old   Male              12th grade   1.83 117.94
## 2073             17 years old   Male              11th grade   1.83  74.84
## 2074             16 years old   Male              11th grade   1.83  99.79
## 2075    18 years old or older   Male              12th grade   1.83  93.44
## 2076             16 years old   Male              11th grade   1.83 136.08
## 2077             17 years old   Male              11th grade   1.83  86.18
## 2078             15 years old   Male               9th grade   1.83  86.18
## 2079             17 years old   Male              11th grade   1.83  87.09
## 2080             14 years old   Male               9th grade   1.83 127.01
## 2081    18 years old or older   Male              12th grade   1.83  77.11
## 2082             16 years old   Male              11th grade   1.83  58.97
## 2083             16 years old   Male              11th grade   1.83  70.31
## 2084             17 years old   Male              11th grade   1.83  70.31
## 2085             15 years old   Male               9th grade   1.83  76.20
## 2086             17 years old   Male              12th grade   1.83  79.38
## 2087    18 years old or older   Male              12th grade   1.83  83.92
## 2088             16 years old   Male              10th grade   1.83  74.84
## 2089             16 years old   Male              10th grade   1.83  72.58
## 2090    18 years old or older   Male              12th grade   1.83  86.18
## 2091             17 years old   Male              11th grade   1.83  77.11
## 2092             16 years old   Male              11th grade   1.83  78.47
## 2093             16 years old   Male              11th grade   1.83 106.60
## 2094             17 years old   Male              11th grade   1.83  77.11
## 2095             17 years old   Male              12th grade   1.83  79.38
## 2096             17 years old   Male              12th grade   1.83  79.38
## 2097             16 years old   Male              10th grade   1.83  86.18
## 2098             16 years old   Male              10th grade   1.83 120.20
## 2099             16 years old Female              10th grade   1.83 108.86
## 2100             15 years old   Male               9th grade   1.83 111.59
## 2101             17 years old   Male              12th grade   1.83  70.31
## 2102             15 years old   Male              10th grade   1.83  78.02
## 2103             16 years old   Male              10th grade   1.83  53.07
## 2104             15 years old   Male              10th grade   1.83  63.50
## 2105             17 years old   Male              11th grade   1.83  63.50
## 2106             17 years old   Male              11th grade   1.83  91.63
## 2107    18 years old or older   Male              12th grade   1.83  73.94
## 2108             16 years old   Male              11th grade   1.83 117.94
## 2109    18 years old or older   Male              12th grade   1.83 104.33
## 2110             17 years old   Male              11th grade   1.83  77.11
## 2111             17 years old   Male              11th grade   1.83  81.65
## 2112             16 years old   Male              11th grade   1.83  64.41
## 2113             16 years old   Male              10th grade   1.83  98.43
## 2114    18 years old or older   Male              12th grade   1.83  72.58
## 2115             17 years old   Male              12th grade   1.83  77.11
## 2116             15 years old   Male              10th grade   1.83  72.58
## 2117             17 years old   Male              11th grade   1.83  65.77
## 2118             15 years old   Male              10th grade   1.83  61.24
## 2119             17 years old   Male              12th grade   1.83  72.58
## 2120    18 years old or older   Male              12th grade   1.83  72.58
## 2121             14 years old   Male               9th grade   1.83  83.92
## 2122             17 years old   Male              11th grade   1.83  72.58
## 2123             16 years old   Male              11th grade   1.83  63.50
## 2124             17 years old   Male              12th grade   1.83  74.84
## 2125             15 years old   Male               9th grade   1.83  70.76
## 2126             15 years old   Male              10th grade   1.83  83.92
## 2127             16 years old   Male              11th grade   1.83  65.77
## 2128             16 years old   Male              10th grade   1.83  63.50
## 2129             16 years old   Male              11th grade   1.83 105.24
## 2130             15 years old   Male              10th grade   1.83 108.86
## 2131             16 years old   Male              10th grade   1.83  68.04
## 2132    18 years old or older   Male              12th grade   1.83 149.69
## 2133             15 years old   Male               9th grade   1.83  54.43
## 2134             17 years old   Male              12th grade   1.83  84.37
## 2135             16 years old   Male              10th grade   1.83  95.26
## 2136             15 years old   Male               9th grade   1.83  82.56
## 2137             17 years old   Male              12th grade   1.83  90.72
## 2138             15 years old Female               9th grade   1.83  72.58
## 2139             17 years old   Male              12th grade   1.83  59.88
## 2140             15 years old   Male               9th grade   1.83  83.92
## 2141             16 years old Female              10th grade   1.83  68.04
## 2142    18 years old or older   Male              12th grade   1.83  77.11
## 2143    18 years old or older   Male              12th grade   1.83  83.92
## 2144             17 years old   Male              12th grade   1.83  77.11
## 2145    18 years old or older   Male              12th grade   1.83  71.22
## 2146             17 years old   Male              12th grade   1.83  64.86
## 2147             15 years old   Male               9th grade   1.83  62.60
## 2148             14 years old   Male               9th grade   1.83  92.99
## 2149             15 years old   Male              10th grade   1.83  98.88
## 2150             15 years old   Male               9th grade   1.83  83.92
## 2151             16 years old   Male              11th grade   1.83  77.11
## 2152             15 years old   Male               9th grade   1.83  77.11
## 2153             15 years old   Male               9th grade   1.83 102.06
## 2154             14 years old   Male               9th grade   1.83  61.24
## 2155             16 years old   Male              10th grade   1.83  90.72
## 2156             15 years old   Male              10th grade   1.83  77.11
## 2157             16 years old   Male              10th grade   1.83  74.84
## 2158             16 years old   Male              10th grade   1.83  62.60
## 2159             15 years old   Male              10th grade   1.83  75.75
## 2160             14 years old   Male               9th grade   1.83  54.43
## 2161             15 years old   Male              10th grade   1.83  77.11
## 2162             14 years old   Male               9th grade   1.83  68.04
## 2163             16 years old   Male              10th grade   1.83  86.18
## 2164             15 years old   Male              10th grade   1.83  99.79
## 2165             16 years old   Male              10th grade   1.83  83.92
## 2166    18 years old or older   Male              12th grade   1.83  68.95
## 2167             17 years old   Male              12th grade   1.83  56.70
## 2168    18 years old or older   Male              11th grade   1.83 131.54
## 2169             16 years old   Male              11th grade   1.83  81.19
## 2170             14 years old   Male               9th grade   1.83  74.39
## 2171             15 years old   Male               9th grade   1.83  68.04
## 2172             16 years old   Male              11th grade   1.83  92.99
## 2173             16 years old   Male              10th grade   1.83  61.24
## 2174    18 years old or older   Male              12th grade   1.83  72.58
## 2175             16 years old   Male              10th grade   1.83  61.69
## 2176             16 years old   Male              11th grade   1.83  77.11
## 2177             16 years old   Male              10th grade   1.83 106.60
## 2178    18 years old or older   Male              12th grade   1.83  99.79
## 2179             16 years old   Male              10th grade   1.83  79.38
## 2180             15 years old   Male              10th grade   1.83  92.99
## 2181             16 years old   Male              11th grade   1.83  67.13
## 2182    18 years old or older   Male              12th grade   1.83 117.94
## 2183             15 years old   Male               9th grade   1.83  81.65
## 2184             16 years old   Male              11th grade   1.83 102.06
## 2185             16 years old   Male              10th grade   1.83 122.47
## 2186             16 years old   Male              11th grade   1.83  81.65
## 2187             17 years old   Male              12th grade   1.83  75.30
## 2188             17 years old   Male              11th grade   1.83  67.13
## 2189             15 years old   Male               9th grade   1.83  84.37
## 2190             16 years old   Male               9th grade   1.83  78.02
## 2191             15 years old   Male               9th grade   1.83  78.47
## 2192             15 years old   Male               9th grade   1.83  56.70
## 2193             14 years old   Male               9th grade   1.83  71.67
## 2194             15 years old   Male               9th grade   1.83  90.72
## 2195             15 years old   Male               9th grade   1.83  58.97
## 2196             14 years old   Male               9th grade   1.83 129.28
## 2197             14 years old   Male               9th grade   1.83  68.04
## 2198             14 years old   Male               9th grade   1.83  68.04
## 2199             15 years old   Male               9th grade   1.83  68.04
## 2200             15 years old   Male               9th grade   1.83  64.86
## 2201             15 years old   Male               9th grade   1.83  68.04
## 2202             15 years old   Male               9th grade   1.83  70.31
## 2203             14 years old   Male               9th grade   1.83  83.92
## 2204             15 years old   Male               9th grade   1.83  59.88
## 2205             14 years old   Male               9th grade   1.83  72.58
## 2206             16 years old   Male               9th grade   1.80  72.58
## 2207             16 years old Female              11th grade   1.80  83.01
## 2208             17 years old   Male              11th grade   1.80 122.47
## 2209             17 years old   Male              10th grade   1.80 122.47
## 2210             16 years old   Male              10th grade   1.80  86.18
## 2211             14 years old   Male               9th grade   1.80  70.31
## 2212             17 years old   Male              12th grade   1.80  68.04
## 2213             15 years old   Male              10th grade   1.80  68.04
## 2214             16 years old   Male              11th grade   1.80  61.24
## 2215             17 years old   Male              11th grade   1.80  63.50
## 2216             16 years old   Male              11th grade   1.80  73.94
## 2217    18 years old or older   Male              12th grade   1.80  68.04
## 2218             15 years old   Male              10th grade   1.80  68.04
## 2219             17 years old   Male              10th grade   1.80  87.09
## 2220    18 years old or older   Male              12th grade   1.80 113.40
## 2221             17 years old   Male              12th grade   1.80  79.38
## 2222             14 years old   Male               9th grade   1.80  92.99
## 2223             14 years old   Male               9th grade   1.80  62.14
## 2224             15 years old   Male              10th grade   1.80  79.38
## 2225             15 years old   Male              10th grade   1.80  65.32
## 2226             15 years old   Male              10th grade   1.80  48.99
## 2227             15 years old   Male              10th grade   1.80  70.31
## 2228             15 years old   Male              10th grade   1.80  81.65
## 2229             15 years old   Male              10th grade   1.80  77.11
## 2230             16 years old   Male              11th grade   1.80  79.38
## 2231             17 years old   Male              12th grade   1.80 104.33
## 2232             17 years old   Male              12th grade   1.80  79.38
## 2233    18 years old or older   Male              12th grade   1.80  90.72
## 2234    18 years old or older   Male              12th grade   1.80  77.11
## 2235             15 years old   Male               9th grade   1.80  65.77
## 2236             16 years old   Male              11th grade   1.80  61.24
## 2237             16 years old   Male              10th grade   1.80  61.24
## 2238             16 years old   Male              11th grade   1.80  74.84
## 2239    18 years old or older   Male              12th grade   1.80  70.31
## 2240             16 years old   Male              10th grade   1.80  72.58
## 2241             15 years old   Male              10th grade   1.80  80.74
## 2242             16 years old   Male              10th grade   1.80  65.77
## 2243             15 years old   Male              10th grade   1.80  90.72
## 2244             15 years old   Male              10th grade   1.80  90.72
## 2245             16 years old   Male              11th grade   1.80  74.84
## 2246             15 years old   Male              10th grade   1.80  91.17
## 2247             17 years old   Male              12th grade   1.80  88.45
## 2248    18 years old or older   Male              12th grade   1.80  97.52
## 2249    18 years old or older   Male              12th grade   1.80 111.13
## 2250             15 years old   Male               9th grade   1.80  77.11
## 2251             17 years old   Male              11th grade   1.80  90.72
## 2252             17 years old   Male              11th grade   1.80  58.97
## 2253             14 years old   Male               9th grade   1.80  80.74
## 2254             15 years old   Male              10th grade   1.80 104.33
## 2255             16 years old   Male              11th grade   1.80  54.43
## 2256             16 years old   Male              11th grade   1.80  81.65
## 2257             17 years old   Male              12th grade   1.80  61.24
## 2258             14 years old   Male               9th grade   1.80  78.02
## 2259             16 years old   Male              10th grade   1.80  63.50
## 2260             17 years old   Male              12th grade   1.80  73.48
## 2261             15 years old   Male              10th grade   1.80  84.82
## 2262             15 years old   Male              10th grade   1.80  81.65
## 2263             16 years old   Male              11th grade   1.80 102.06
## 2264             14 years old   Male               9th grade   1.80  62.60
## 2265             15 years old   Male               9th grade   1.80  95.26
## 2266             16 years old   Male              10th grade   1.80  69.40
## 2267             17 years old Female              12th grade   1.80  56.70
## 2268             17 years old   Male              12th grade   1.80  81.19
## 2269             17 years old   Male              12th grade   1.80  61.24
## 2270             15 years old   Male               9th grade   1.80  65.77
## 2271             17 years old   Male              12th grade   1.80  74.84
## 2272             15 years old   Male               9th grade   1.80  76.66
## 2273             17 years old   Male              12th grade   1.80  74.84
## 2274             14 years old   Male               9th grade   1.80  77.57
## 2275             17 years old   Male              11th grade   1.80 108.86
## 2276             15 years old   Male               9th grade   1.80  85.73
## 2277             16 years old   Male              11th grade   1.80  63.50
## 2278             16 years old   Male              11th grade   1.80  68.04
## 2279             14 years old   Male               9th grade   1.80  69.85
## 2280             17 years old   Male              12th grade   1.80  90.72
## 2281             15 years old   Male               9th grade   1.80  68.95
## 2282             17 years old   Male              12th grade   1.80  68.04
## 2283    18 years old or older   Male              12th grade   1.80  97.52
## 2284    18 years old or older   Male              12th grade   1.80  63.50
## 2285             16 years old   Male              11th grade   1.80 111.13
## 2286             15 years old   Male              10th grade   1.80  86.18
## 2287             16 years old   Male              10th grade   1.80  67.13
## 2288             15 years old   Male              10th grade   1.80  72.58
## 2289             16 years old   Male              10th grade   1.80  74.84
## 2290             15 years old   Male              10th grade   1.80 115.21
## 2291             15 years old   Male               9th grade   1.80  58.06
## 2292             17 years old   Male              12th grade   1.80  90.72
## 2293             15 years old   Male              10th grade   1.80  63.50
## 2294             17 years old   Male              11th grade   1.80  73.94
## 2295             15 years old   Male               9th grade   1.80  68.04
## 2296             15 years old   Male               9th grade   1.80  65.77
## 2297    18 years old or older Female              12th grade   1.80  92.53
## 2298             17 years old   Male              12th grade   1.80  77.11
## 2299             16 years old   Male              10th grade   1.80  72.58
## 2300             16 years old   Male              10th grade   1.80  58.97
## 2301             14 years old   Male               9th grade   1.80  72.58
## 2302             15 years old   Male               9th grade   1.80  72.58
## 2303             17 years old Female              11th grade   1.80  68.04
## 2304             15 years old   Male               9th grade   1.80  61.24
## 2305             15 years old   Male              10th grade   1.80  65.77
## 2306             17 years old   Male              11th grade   1.80  63.05
## 2307             16 years old   Male              11th grade   1.80 113.40
## 2308             16 years old   Male              12th grade   1.80  81.65
## 2309             14 years old   Male               9th grade   1.80  52.16
## 2310             16 years old   Male              11th grade   1.80  73.94
## 2311             16 years old   Male              11th grade   1.80  90.72
## 2312             17 years old   Male              11th grade   1.80  75.30
## 2313    18 years old or older   Male              10th grade   1.80  83.92
## 2314             16 years old   Male              11th grade   1.80  72.58
## 2315             17 years old   Male              12th grade   1.80  97.52
## 2316             17 years old   Male              12th grade   1.80 108.86
## 2317             16 years old   Male              11th grade   1.80  68.95
## 2318    18 years old or older   Male              12th grade   1.80  68.95
## 2319    18 years old or older   Male              12th grade   1.80  65.77
## 2320    18 years old or older   Male              12th grade   1.80  81.65
## 2321             17 years old   Male              11th grade   1.80  74.84
## 2322             16 years old   Male              10th grade   1.80 104.33
## 2323             16 years old   Male              11th grade   1.80  70.31
## 2324             17 years old   Male              11th grade   1.80  90.72
## 2325             17 years old   Male              12th grade   1.80  84.82
## 2326             17 years old   Male              11th grade   1.80 129.28
## 2327             14 years old   Male               9th grade   1.80  89.81
## 2328    18 years old or older   Male              12th grade   1.80  65.77
## 2329             16 years old   Male              10th grade   1.80  99.79
## 2330             16 years old   Male              10th grade   1.80  95.26
## 2331    18 years old or older   Male              12th grade   1.80  63.50
## 2332             15 years old   Male               9th grade   1.80  54.43
## 2333             16 years old   Male              10th grade   1.80  72.58
## 2334             15 years old   Male               9th grade   1.80  71.67
## 2335             17 years old   Male              11th grade   1.80  63.50
## 2336             17 years old   Male              11th grade   1.80  74.84
## 2337    18 years old or older   Male              11th grade   1.80  78.93
## 2338             16 years old   Male              11th grade   1.80  95.26
## 2339             15 years old   Male               9th grade   1.80  63.50
## 2340    18 years old or older   Male              12th grade   1.80  90.72
## 2341             14 years old   Male               9th grade   1.80  90.72
## 2342             16 years old   Male              10th grade   1.80  77.57
## 2343             14 years old   Male               9th grade   1.80  70.31
## 2344             17 years old   Male              12th grade   1.80  62.14
## 2345             17 years old   Male              11th grade   1.80 117.94
## 2346             16 years old   Male              10th grade   1.80  90.72
## 2347             15 years old Female               9th grade   1.80 140.16
## 2348             16 years old   Male              10th grade   1.80  74.84
## 2349    18 years old or older   Male              12th grade   1.80  65.77
## 2350             15 years old   Male              10th grade   1.80  63.50
## 2351             17 years old   Male              12th grade   1.80 106.14
## 2352    18 years old or older Female              12th grade   1.80  88.00
## 2353             17 years old   Male              12th grade   1.80  77.11
## 2354    18 years old or older   Male              12th grade   1.80  58.97
## 2355             17 years old   Male              11th grade   1.80  86.18
## 2356             16 years old   Male              10th grade   1.80  83.92
## 2357             16 years old   Male              10th grade   1.80 131.54
## 2358             16 years old   Male              11th grade   1.80  61.24
## 2359             17 years old   Male              11th grade   1.80  63.50
## 2360             17 years old   Male              11th grade   1.80  62.14
## 2361             15 years old Female              10th grade   1.80  49.90
## 2362             15 years old   Male              10th grade   1.80  76.20
## 2363             15 years old   Male               9th grade   1.80  71.22
## 2364             17 years old   Male              11th grade   1.80  64.41
## 2365             16 years old   Male              10th grade   1.80 102.06
## 2366             14 years old   Male               9th grade   1.80  63.50
## 2367             16 years old   Male               9th grade   1.80  72.58
## 2368             14 years old   Male               9th grade   1.80  63.50
## 2369             17 years old   Male              12th grade   1.80  74.84
## 2370             15 years old   Male              10th grade   1.80  72.58
## 2371             16 years old   Male              10th grade   1.80  63.50
## 2372             16 years old   Male              10th grade   1.80  90.72
## 2373             15 years old   Male              10th grade   1.80  80.74
## 2374             17 years old   Male              11th grade   1.80  72.58
## 2375    18 years old or older   Male              12th grade   1.80  77.11
## 2376             16 years old   Male              11th grade   1.80  77.11
## 2377             16 years old Female              10th grade   1.80  61.24
## 2378             17 years old   Male              11th grade   1.80  79.38
## 2379             16 years old   Male              11th grade   1.80  54.43
## 2380             16 years old   Male              10th grade   1.80  65.77
## 2381             16 years old   Male              10th grade   1.80  72.58
## 2382             15 years old   Male               9th grade   1.80  63.50
## 2383             17 years old   Male              12th grade   1.80  81.65
## 2384             17 years old   Male              11th grade   1.80  56.70
## 2385             17 years old   Male              12th grade   1.80  97.52
## 2386             15 years old   Male               9th grade   1.80  70.31
## 2387             17 years old   Male              11th grade   1.80  52.16
## 2388             14 years old   Male               9th grade   1.80  90.27
## 2389             16 years old   Male              11th grade   1.80  67.13
## 2390             15 years old   Male               9th grade   1.80  71.22
## 2391             14 years old Female               9th grade   1.80  90.72
## 2392             17 years old   Male              12th grade   1.80  69.40
## 2393             17 years old   Male              11th grade   1.80  70.31
## 2394             15 years old   Male               9th grade   1.80  58.97
## 2395    18 years old or older   Male              12th grade   1.80  72.58
## 2396             15 years old   Male               9th grade   1.80  86.18
## 2397             17 years old   Male              12th grade   1.80  92.99
## 2398             15 years old   Male              10th grade   1.80  81.65
## 2399             17 years old Female              12th grade   1.80  81.65
## 2400             16 years old   Male              11th grade   1.80  49.90
## 2401             16 years old   Male              10th grade   1.80 120.20
## 2402             15 years old   Male              10th grade   1.80  61.69
## 2403             14 years old   Male               9th grade   1.80  72.58
## 2404             16 years old   Male              11th grade   1.80  77.11
## 2405             14 years old   Male               9th grade   1.80  97.52
## 2406             14 years old   Male               9th grade   1.80  81.65
## 2407             16 years old   Male              10th grade   1.80  79.38
## 2408             15 years old   Male               9th grade   1.80  63.50
## 2409             14 years old   Male               9th grade   1.80  56.70
## 2410    18 years old or older   Male              12th grade   1.80  78.02
## 2411    18 years old or older   Male              12th grade   1.80  72.58
## 2412             17 years old   Male              11th grade   1.80  87.09
## 2413             17 years old   Male              12th grade   1.80  72.12
## 2414             15 years old   Male              10th grade   1.80  97.07
## 2415    18 years old or older   Male              12th grade   1.80 104.33
## 2416             16 years old   Male              11th grade   1.80  68.04
## 2417             14 years old   Male               9th grade   1.80  68.04
## 2418             15 years old   Male               9th grade   1.80 108.86
## 2419             17 years old   Male              11th grade   1.80  77.11
## 2420    18 years old or older   Male              12th grade   1.80  69.40
## 2421             14 years old   Male               9th grade   1.80  81.65
## 2422             15 years old   Male               9th grade   1.80  68.04
## 2423             16 years old   Male              10th grade   1.80  83.92
## 2424             16 years old   Male              11th grade   1.80  72.58
## 2425             17 years old Female              12th grade   1.80 108.86
## 2426             14 years old   Male               9th grade   1.80  68.04
## 2427             15 years old   Male              10th grade   1.80  71.22
## 2428             17 years old Female              11th grade   1.80  89.81
## 2429             16 years old   Male              11th grade   1.80  90.72
## 2430             17 years old   Male              11th grade   1.80 140.62
## 2431             17 years old   Male              12th grade   1.80  68.04
## 2432    18 years old or older   Male              12th grade   1.80  82.56
## 2433             15 years old   Male              10th grade   1.80  61.24
## 2434             15 years old   Male              10th grade   1.80  65.77
## 2435             15 years old   Male              10th grade   1.80  49.90
## 2436             16 years old   Male              11th grade   1.80  83.92
## 2437             15 years old   Male               9th grade   1.80  74.39
## 2438             16 years old   Male              10th grade   1.80  65.77
## 2439             16 years old   Male              10th grade   1.80  65.77
## 2440             15 years old   Male               9th grade   1.80  86.18
## 2441    18 years old or older   Male              12th grade   1.80  74.84
## 2442    18 years old or older   Male              12th grade   1.80  86.18
## 2443             15 years old   Male              10th grade   1.80 113.40
## 2444             17 years old   Male              11th grade   1.80  83.92
## 2445             17 years old   Male              11th grade   1.80  72.58
## 2446             15 years old   Male              10th grade   1.80  83.46
## 2447    18 years old or older   Male              12th grade   1.80  73.94
## 2448             15 years old   Male              10th grade   1.80  73.94
## 2449             16 years old   Male              10th grade   1.80  72.58
## 2450             17 years old   Male              11th grade   1.80  95.26
## 2451             17 years old   Male              11th grade   1.80 106.60
## 2452             16 years old Female              10th grade   1.80  81.65
## 2453             17 years old Female              12th grade   1.80  79.38
## 2454             15 years old   Male              10th grade   1.80  72.58
## 2455             16 years old   Male              11th grade   1.80  68.04
## 2456             17 years old Female              11th grade   1.80  63.50
## 2457             17 years old   Male              10th grade   1.80 143.79
## 2458             15 years old   Male               9th grade   1.80  56.25
## 2459             16 years old   Male              10th grade   1.80  83.92
## 2460             17 years old   Male              10th grade   1.80  79.38
## 2461             16 years old   Male              11th grade   1.80  84.37
## 2462             16 years old   Male              11th grade   1.80  90.72
## 2463    18 years old or older   Male              12th grade   1.80  66.68
## 2464             16 years old   Male              11th grade   1.80  99.79
## 2465             15 years old   Male              10th grade   1.80  76.66
## 2466             17 years old   Male              11th grade   1.80  65.77
## 2467             17 years old   Male              11th grade   1.80  79.38
## 2468             16 years old   Male              11th grade   1.80  59.88
## 2469             17 years old   Male              11th grade   1.80  74.84
## 2470             16 years old   Male              10th grade   1.80  71.22
## 2471             15 years old   Male               9th grade   1.80  67.13
## 2472             15 years old   Male               9th grade   1.80  62.60
## 2473             17 years old   Male              12th grade   1.80  64.41
## 2474             15 years old   Male               9th grade   1.80  88.45
## 2475             17 years old Female              12th grade   1.80  90.72
## 2476             17 years old   Male              12th grade   1.80  58.06
## 2477             16 years old   Male              10th grade   1.80  56.70
## 2478             17 years old   Male              10th grade   1.80 108.86
## 2479             15 years old   Male              10th grade   1.80  60.33
## 2480             15 years old   Male              10th grade   1.80  71.22
## 2481             16 years old   Male              10th grade   1.80  61.24
## 2482             17 years old   Male              12th grade   1.80 122.47
## 2483    18 years old or older   Male              12th grade   1.80  79.38
## 2484             17 years old   Male              11th grade   1.80  79.38
## 2485             16 years old   Male              11th grade   1.80  78.47
## 2486             17 years old   Male              11th grade   1.80  63.50
## 2487             15 years old   Male               9th grade   1.80  75.75
## 2488             17 years old   Male              11th grade   1.80  64.41
## 2489             15 years old   Male              10th grade   1.80  68.04
## 2490             17 years old   Male              10th grade   1.80 104.33
## 2491             17 years old   Male              12th grade   1.80  68.04
## 2492    18 years old or older   Male              12th grade   1.80  61.24
## 2493             15 years old   Male               9th grade   1.80  81.65
## 2494             14 years old   Male               9th grade   1.80  70.31
## 2495             15 years old   Male               9th grade   1.80  71.22
## 2496    18 years old or older   Male              12th grade   1.80  74.39
## 2497             17 years old   Male              11th grade   1.80  72.58
## 2498             16 years old Female              10th grade   1.80  65.77
## 2499    18 years old or older   Male              12th grade   1.80  79.38
## 2500             16 years old Female              11th grade   1.80  80.74
## 2501             16 years old   Male              10th grade   1.80  63.50
## 2502    18 years old or older   Male              12th grade   1.80  81.65
## 2503             16 years old   Male              10th grade   1.80 104.33
## 2504             16 years old   Male              10th grade   1.80  86.18
## 2505             17 years old   Male              12th grade   1.80 113.40
## 2506             17 years old   Male              11th grade   1.80 106.60
## 2507             16 years old   Male              11th grade   1.80 101.61
## 2508             14 years old   Male               9th grade   1.80  83.92
## 2509             16 years old   Male              10th grade   1.80  77.11
## 2510             17 years old   Male              11th grade   1.80  65.77
## 2511    18 years old or older   Male              12th grade   1.80  83.92
## 2512             15 years old   Male               9th grade   1.80  66.23
## 2513             15 years old   Male               9th grade   1.80  86.18
## 2514             17 years old   Male              11th grade   1.80  81.65
## 2515             17 years old   Male              11th grade   1.80  63.50
## 2516             16 years old   Male              10th grade   1.80  79.38
## 2517             15 years old   Male               9th grade   1.80  75.75
## 2518             17 years old   Male              11th grade   1.80  99.79
## 2519             15 years old   Male               9th grade   1.80  98.43
## 2520    18 years old or older   Male              12th grade   1.80 134.72
## 2521    18 years old or older   Male              12th grade   1.80  77.11
## 2522    18 years old or older   Male              12th grade   1.80  63.50
## 2523             15 years old   Male              10th grade   1.80  64.41
## 2524             16 years old   Male              10th grade   1.80  66.68
## 2525             15 years old Female              10th grade   1.80  99.79
## 2526             17 years old   Male              12th grade   1.80 110.22
## 2527             17 years old   Male              12th grade   1.80 104.33
## 2528             15 years old   Male               9th grade   1.80  79.38
## 2529             15 years old   Male               9th grade   1.80  79.38
## 2530             15 years old   Male              10th grade   1.80 104.33
## 2531    18 years old or older   Male              12th grade   1.80  81.65
## 2532    18 years old or older   Male              12th grade   1.80 115.67
## 2533             15 years old Female               9th grade   1.80  76.20
## 2534             16 years old Female              11th grade   1.80  61.24
## 2535             17 years old   Male              12th grade   1.80 104.33
## 2536             16 years old   Male              10th grade   1.80  74.84
## 2537    18 years old or older   Male              12th grade   1.80  72.58
## 2538             15 years old   Male              11th grade   1.80  72.58
## 2539             17 years old   Male              12th grade   1.80 127.01
## 2540             16 years old   Male              10th grade   1.80  92.99
## 2541             17 years old   Male              11th grade   1.80  99.34
## 2542             17 years old   Male              11th grade   1.80  86.18
## 2543             16 years old   Male              10th grade   1.80  84.82
## 2544             17 years old   Male              12th grade   1.80 104.33
## 2545             16 years old   Male              10th grade   1.80 161.48
## 2546             15 years old   Male               9th grade   1.80  91.17
## 2547             14 years old   Male               9th grade   1.80  95.26
## 2548             16 years old   Male               9th grade   1.80  68.04
## 2549    18 years old or older   Male              12th grade   1.80  68.95
## 2550             16 years old Female              10th grade   1.80  61.24
## 2551             17 years old   Male              12th grade   1.80 111.13
## 2552             15 years old   Male               9th grade   1.80  90.72
## 2553    18 years old or older   Male              12th grade   1.80  63.96
## 2554    18 years old or older   Male              12th grade   1.80 104.33
## 2555    18 years old or older   Male              12th grade   1.80  88.45
## 2556             16 years old   Male              11th grade   1.80  98.43
## 2557             15 years old   Male              10th grade   1.80  81.19
## 2558             15 years old   Male              10th grade   1.80  68.04
## 2559             15 years old   Male              10th grade   1.80  99.79
## 2560             16 years old   Male              11th grade   1.80  75.75
## 2561             15 years old   Male               9th grade   1.80 117.94
## 2562             16 years old   Male              11th grade   1.80  77.11
## 2563             17 years old   Male              12th grade   1.80  53.98
## 2564             17 years old   Male              11th grade   1.80  72.58
## 2565    18 years old or older   Male              12th grade   1.80  68.04
## 2566             16 years old   Male              10th grade   1.80 102.06
## 2567             15 years old   Male              10th grade   1.80  86.18
## 2568             15 years old Female              10th grade   1.80  81.65
## 2569             17 years old   Male              12th grade   1.80  77.11
## 2570             16 years old   Male              10th grade   1.80  79.38
## 2571    18 years old or older Female              12th grade   1.80 136.08
## 2572             16 years old   Male              10th grade   1.80  72.12
## 2573             17 years old   Male              12th grade   1.80 122.47
## 2574    18 years old or older   Male              12th grade   1.80  70.31
## 2575             17 years old   Male              12th grade   1.80  62.60
## 2576             16 years old   Male              11th grade   1.80  54.43
## 2577             15 years old   Male              10th grade   1.80  68.04
## 2578             16 years old Female              11th grade   1.80  76.20
## 2579             15 years old   Male              10th grade   1.80  61.24
## 2580             16 years old Female              10th grade   1.80  65.77
## 2581             15 years old   Male              10th grade   1.80  67.13
## 2582    18 years old or older   Male              11th grade   1.80  56.70
## 2583             16 years old   Male              10th grade   1.80  60.33
## 2584             15 years old   Male              10th grade   1.80  68.04
## 2585             15 years old   Male               9th grade   1.80  95.26
## 2586             14 years old   Male               9th grade   1.80  81.65
## 2587             16 years old   Male              11th grade   1.80  61.24
## 2588    18 years old or older   Male              12th grade   1.80  63.50
## 2589             17 years old   Male              11th grade   1.80  68.04
## 2590             16 years old   Male              11th grade   1.80  67.13
## 2591             15 years old   Male               9th grade   1.80  63.05
## 2592             17 years old   Male              12th grade   1.80  65.77
## 2593             16 years old   Male              10th grade   1.80 108.41
## 2594    18 years old or older   Male              12th grade   1.80  74.84
## 2595             15 years old   Male               9th grade   1.80  90.72
## 2596    18 years old or older   Male              12th grade   1.80  72.58
## 2597             16 years old   Male              11th grade   1.80  81.65
## 2598             15 years old   Male              10th grade   1.80  63.50
## 2599             15 years old   Male              10th grade   1.80  75.30
## 2600             15 years old   Male               9th grade   1.80  79.38
## 2601             16 years old   Male              11th grade   1.80  72.58
## 2602    18 years old or older   Male              12th grade   1.80  58.97
## 2603    18 years old or older   Male              12th grade   1.80  72.58
## 2604             16 years old   Male              11th grade   1.80 104.33
## 2605             17 years old   Male              12th grade   1.80  61.69
## 2606             17 years old   Male              10th grade   1.80  95.26
## 2607             17 years old   Male              11th grade   1.80  79.38
## 2608             17 years old   Male              12th grade   1.80 113.40
## 2609             17 years old Female              12th grade   1.80  54.43
## 2610             15 years old   Male               9th grade   1.80  68.04
## 2611    18 years old or older   Male              12th grade   1.80  74.84
## 2612             15 years old   Male              10th grade   1.80  58.97
## 2613             16 years old   Male              10th grade   1.80  48.08
## 2614             15 years old   Male              10th grade   1.80  81.65
## 2615             15 years old   Male               9th grade   1.80  80.74
## 2616    18 years old or older   Male              12th grade   1.80  79.38
## 2617             16 years old   Male              10th grade   1.80  73.94
## 2618             17 years old   Male              12th grade   1.80  77.11
## 2619    18 years old or older   Male              12th grade   1.80  74.84
## 2620             16 years old   Male              10th grade   1.80 122.47
## 2621             16 years old   Male              10th grade   1.80 113.40
## 2622    18 years old or older   Male              12th grade   1.80  70.31
## 2623    18 years old or older   Male              11th grade   1.80 108.86
## 2624             17 years old   Male              11th grade   1.80  81.65
## 2625             15 years old   Male               9th grade   1.80  68.04
## 2626             16 years old   Male              10th grade   1.80  90.72
## 2627             17 years old   Male              10th grade   1.80 106.60
## 2628             14 years old   Male               9th grade   1.80  59.42
## 2629             17 years old   Male              11th grade   1.80  72.58
## 2630             16 years old   Male              10th grade   1.80  68.04
## 2631             14 years old   Male               9th grade   1.80 115.67
## 2632             14 years old   Male               9th grade   1.80  94.35
## 2633             15 years old   Male              10th grade   1.80  77.11
## 2634             17 years old   Male              11th grade   1.80 106.60
## 2635             15 years old   Male               9th grade   1.80 113.40
## 2636             17 years old   Male              11th grade   1.80  64.41
## 2637             15 years old   Male               9th grade   1.80  77.11
## 2638             17 years old   Male              11th grade   1.80 113.40
## 2639    18 years old or older   Male              12th grade   1.80  72.58
## 2640    18 years old or older   Male              11th grade   1.80 110.22
## 2641             17 years old Female              12th grade   1.80  83.92
## 2642             16 years old   Male              10th grade   1.80  82.56
## 2643    18 years old or older Female              12th grade   1.80 129.28
## 2644             16 years old   Male              10th grade   1.80  83.92
## 2645             16 years old   Male              11th grade   1.80  77.11
## 2646             15 years old   Male               9th grade   1.80  77.11
## 2647             16 years old   Male              10th grade   1.80  85.28
## 2648             15 years old   Male               9th grade   1.80  83.92
## 2649    18 years old or older   Male              12th grade   1.80  58.97
## 2650             17 years old   Male              11th grade   1.80  68.04
## 2651             15 years old   Male               9th grade   1.80  63.50
## 2652             17 years old   Male              12th grade   1.80  65.77
## 2653    18 years old or older   Male              12th grade   1.80  63.50
## 2654    18 years old or older   Male              12th grade   1.80  66.23
## 2655    18 years old or older   Male              12th grade   1.80  73.94
## 2656             15 years old   Male               9th grade   1.80 124.74
## 2657    18 years old or older   Male              12th grade   1.80 115.67
## 2658             16 years old   Male              10th grade   1.80  86.18
## 2659    18 years old or older   Male              12th grade   1.80  83.46
## 2660    18 years old or older   Male              12th grade   1.80 129.28
## 2661             16 years old   Male              11th grade   1.80  56.70
## 2662             16 years old   Male              11th grade   1.80  68.04
## 2663             14 years old Female               9th grade   1.80  48.54
## 2664             15 years old   Male               9th grade   1.80  88.45
## 2665    18 years old or older   Male              12th grade   1.80  95.26
## 2666             15 years old   Male               9th grade   1.80 100.25
## 2667             15 years old   Male              10th grade   1.80 109.77
## 2668             15 years old   Male               9th grade   1.80  49.90
## 2669             16 years old   Male              10th grade   1.80  92.53
## 2670             14 years old   Male               9th grade   1.80  59.88
## 2671             15 years old   Male               9th grade   1.80  54.43
## 2672             16 years old   Male              10th grade   1.80 140.62
## 2673             15 years old   Male               9th grade   1.80 107.05
## 2674             14 years old Female               9th grade   1.80  83.92
## 2675             15 years old   Male               9th grade   1.80  71.22
## 2676             16 years old   Male              10th grade   1.80  81.65
## 2677    18 years old or older   Male              12th grade   1.80  76.20
## 2678             16 years old   Male              10th grade   1.80 108.41
## 2679             17 years old   Male              12th grade   1.80  68.04
## 2680             16 years old   Male              11th grade   1.80  72.12
## 2681             15 years old   Male              10th grade   1.80 112.95
## 2682             17 years old   Male              11th grade   1.80  86.18
## 2683             16 years old   Male              11th grade   1.80 136.08
## 2684    18 years old or older   Male              11th grade   1.80  88.45
## 2685             16 years old   Male              10th grade   1.80 102.06
## 2686             17 years old   Male              10th grade   1.80  90.72
## 2687             15 years old   Male               9th grade   1.80  67.13
## 2688             16 years old   Male              10th grade   1.80  72.58
## 2689             17 years old   Male              11th grade   1.80  86.18
## 2690    18 years old or older   Male              12th grade   1.80  95.26
## 2691             17 years old   Male              11th grade   1.80  56.70
## 2692             17 years old   Male              11th grade   1.80  83.92
## 2693             17 years old   Male              11th grade   1.80  77.11
## 2694    18 years old or older   Male              11th grade   1.80  66.68
## 2695    18 years old or older   Male              11th grade   1.80 104.33
## 2696             17 years old   Male              11th grade   1.80 139.71
## 2697    18 years old or older   Male              12th grade   1.80  79.38
## 2698             17 years old   Male              11th grade   1.80  92.99
## 2699    18 years old or older   Male              11th grade   1.80  71.22
## 2700             16 years old   Male              10th grade   1.80 106.60
## 2701             16 years old   Male               9th grade   1.80 109.77
## 2702             15 years old   Male               9th grade   1.80  63.50
## 2703             16 years old   Male              11th grade   1.80  65.77
## 2704             17 years old   Male              11th grade   1.80  82.56
## 2705             16 years old   Male               9th grade   1.80  63.50
## 2706             14 years old   Male               9th grade   1.80  72.58
## 2707             17 years old   Male              12th grade   1.80  96.62
## 2708    18 years old or older   Male              12th grade   1.80 104.33
## 2709    18 years old or older   Male              12th grade   1.80  72.58
## 2710             17 years old   Male              12th grade   1.80  70.31
## 2711    18 years old or older   Male              12th grade   1.80  86.18
## 2712             17 years old   Male              11th grade   1.80  68.04
## 2713    18 years old or older   Male              12th grade   1.80  49.90
## 2714    18 years old or older   Male              12th grade   1.80  72.58
## 2715             16 years old   Male              11th grade   1.80  63.50
## 2716             17 years old   Male              11th grade   1.80 104.33
## 2717             16 years old   Male              11th grade   1.80  73.48
## 2718             16 years old   Male              11th grade   1.80  52.16
## 2719             17 years old   Male              11th grade   1.80  92.99
## 2720    18 years old or older   Male              12th grade   1.80  72.58
## 2721             15 years old   Male              10th grade   1.80  78.47
## 2722    18 years old or older   Male              12th grade   1.80  63.50
## 2723    18 years old or older   Male              12th grade   1.80 128.37
## 2724    18 years old or older   Male              12th grade   1.80  61.24
## 2725             16 years old   Male              11th grade   1.80  77.11
## 2726             17 years old   Male              12th grade   1.80  81.65
## 2727             16 years old   Male              10th grade   1.80  47.17
## 2728             16 years old   Male              11th grade   1.80  74.84
## 2729    18 years old or older   Male              12th grade   1.80  63.50
## 2730             17 years old Female              11th grade   1.80 116.12
## 2731    18 years old or older   Male              12th grade   1.80  72.58
## 2732    18 years old or older   Male              12th grade   1.80  90.72
## 2733             15 years old   Male               9th grade   1.80  95.26
## 2734             17 years old   Male              10th grade   1.80  94.35
## 2735             15 years old   Male               9th grade   1.80  65.77
## 2736             17 years old   Male              10th grade   1.80  61.24
## 2737             17 years old   Male              11th grade   1.80 122.47
## 2738             16 years old   Male               9th grade   1.80 111.59
## 2739    18 years old or older Female              12th grade   1.80  62.60
## 2740             14 years old   Male               9th grade   1.80  95.26
## 2741             16 years old Female              10th grade   1.80  70.31
## 2742             15 years old   Male               9th grade   1.80  63.50
## 2743             16 years old   Male              10th grade   1.80  86.18
## 2744             15 years old   Male               9th grade   1.80  86.18
## 2745             17 years old   Male              11th grade   1.80  68.04
## 2746    18 years old or older   Male              12th grade   1.80  90.72
## 2747             16 years old   Male              10th grade   1.80  86.18
## 2748             15 years old   Male               9th grade   1.80  95.26
## 2749             16 years old   Male              11th grade   1.80  72.58
## 2750             17 years old   Male              11th grade   1.80  83.92
## 2751             16 years old   Male              10th grade   1.80  68.04
## 2752             16 years old   Male              10th grade   1.80  68.04
## 2753             16 years old   Male              10th grade   1.80  88.45
## 2754    18 years old or older   Male              12th grade   1.80  68.04
## 2755             17 years old   Male              11th grade   1.80  63.96
## 2756    18 years old or older   Male              12th grade   1.80  68.04
## 2757             16 years old   Male              11th grade   1.80 138.35
## 2758             17 years old   Male              12th grade   1.80  74.84
## 2759    18 years old or older   Male              12th grade   1.80  74.84
## 2760             17 years old   Male              11th grade   1.80  65.77
## 2761             17 years old   Male              12th grade   1.80  65.77
## 2762             17 years old   Male              11th grade   1.80  58.97
## 2763    18 years old or older   Male              12th grade   1.80  65.77
## 2764    18 years old or older   Male              12th grade   1.80 108.86
## 2765             16 years old   Male              10th grade   1.80  84.37
## 2766             15 years old   Male               9th grade   1.80  52.16
## 2767             17 years old   Male              12th grade   1.80  77.11
## 2768             14 years old   Male               9th grade   1.80  90.27
## 2769             15 years old   Male              10th grade   1.80  92.99
## 2770             14 years old   Male               9th grade   1.80  88.45
## 2771             16 years old   Male              11th grade   1.80  96.16
## 2772             16 years old   Male              11th grade   1.80  65.77
## 2773             15 years old   Male               9th grade   1.80  54.89
## 2774             15 years old   Male               9th grade   1.80 104.33
## 2775             15 years old   Male               9th grade   1.80  63.50
## 2776             17 years old   Male              12th grade   1.80  54.43
## 2777    18 years old or older   Male              12th grade   1.80  79.38
## 2778             16 years old   Male              10th grade   1.80 122.47
## 2779             16 years old   Male              11th grade   1.80  61.69
## 2780             15 years old Female               9th grade   1.80  72.58
## 2781             16 years old   Male              10th grade   1.80  77.11
## 2782             17 years old   Male              11th grade   1.80  68.95
## 2783             15 years old   Male              10th grade   1.80 106.60
## 2784             15 years old   Male               9th grade   1.80  77.11
## 2785             15 years old   Male              10th grade   1.80  73.94
## 2786             16 years old   Male              10th grade   1.80  61.24
## 2787             16 years old Female              10th grade   1.80  61.24
## 2788             15 years old   Male               9th grade   1.80  86.18
## 2789             17 years old   Male              11th grade   1.80  95.26
## 2790             17 years old   Male              12th grade   1.80  72.12
## 2791             17 years old   Male              12th grade   1.80 127.01
## 2792             16 years old   Male              10th grade   1.80 138.80
## 2793             16 years old Female              10th grade   1.80  61.69
## 2794    18 years old or older   Male              12th grade   1.80  68.04
## 2795             17 years old   Male              12th grade   1.80  84.37
## 2796             17 years old   Male              10th grade   1.80  88.45
## 2797    18 years old or older   Male              12th grade   1.80 106.60
## 2798             16 years old Female              10th grade   1.80 117.03
## 2799             16 years old   Male              10th grade   1.80  63.50
## 2800             17 years old   Male              10th grade   1.80  63.50
## 2801             16 years old Female              10th grade   1.80  61.69
## 2802             17 years old   Male              12th grade   1.80  83.92
## 2803             15 years old   Male              10th grade   1.80 102.06
## 2804             16 years old   Male              10th grade   1.80  79.38
## 2805             16 years old   Male              10th grade   1.80  62.14
## 2806             15 years old   Male              10th grade   1.80  77.11
## 2807             16 years old   Male              10th grade   1.80 113.40
## 2808             17 years old   Male              11th grade   1.80  88.91
## 2809             15 years old   Male               9th grade   1.80  58.51
## 2810             15 years old   Male               9th grade   1.80  88.45
## 2811             14 years old   Male               9th grade   1.80 111.59
## 2812             15 years old   Male               9th grade   1.80 127.01
## 2813             17 years old   Male              11th grade   1.80  64.41
## 2814             16 years old Female              10th grade   1.80  91.63
## 2815             15 years old   Male              10th grade   1.80  79.38
## 2816             17 years old   Male              12th grade   1.80  56.70
## 2817             14 years old   Male               9th grade   1.80  97.52
## 2818             15 years old   Male              10th grade   1.80  70.31
## 2819             16 years old   Male              10th grade   1.80  79.38
## 2820             17 years old   Male              11th grade   1.80  74.84
## 2821             17 years old   Male              11th grade   1.80  96.16
## 2822    18 years old or older   Male              12th grade   1.80  77.11
## 2823             16 years old   Male              11th grade   1.80  79.38
## 2824             15 years old   Male              11th grade   1.80 108.86
## 2825             16 years old   Male              11th grade   1.80  73.94
## 2826             14 years old   Male               9th grade   1.80  69.85
## 2827             17 years old   Male              11th grade   1.80  61.24
## 2828             16 years old   Male              10th grade   1.80  95.26
## 2829             17 years old   Male              11th grade   1.80  61.24
## 2830             14 years old   Male               9th grade   1.80  63.50
## 2831             14 years old   Male               9th grade   1.80  74.84
## 2832             16 years old   Male              10th grade   1.80  50.35
## 2833             16 years old   Male              10th grade   1.80  68.04
## 2834             15 years old   Male              10th grade   1.80  77.11
## 2835             16 years old   Male              10th grade   1.80  58.06
## 2836             17 years old   Male              11th grade   1.80 102.06
## 2837             17 years old Female              11th grade   1.80  68.04
## 2838             17 years old   Male              12th grade   1.80  90.72
## 2839             17 years old   Male              11th grade   1.80  56.70
## 2840             17 years old Female              12th grade   1.80  72.58
## 2841             17 years old   Male              12th grade   1.80  68.04
## 2842             15 years old   Male               9th grade   1.80  99.79
## 2843             15 years old   Male               9th grade   1.80  66.23
## 2844             15 years old   Male               9th grade   1.80  83.92
## 2845             14 years old   Male               9th grade   1.80  74.39
## 2846             15 years old   Male               9th grade   1.80  77.11
## 2847             15 years old   Male               9th grade   1.80  56.70
## 2848             15 years old   Male              10th grade   1.80  65.77
## 2849             15 years old   Male              10th grade   1.80  99.79
## 2850             15 years old   Male              10th grade   1.80  65.77
## 2851             16 years old   Male              11th grade   1.80  65.77
## 2852             17 years old   Male              11th grade   1.80  61.24
## 2853             15 years old   Male                    <NA>   1.80  90.72
## 2854             15 years old   Male              10th grade   1.80  71.22
## 2855             15 years old   Male               9th grade   1.80  81.65
## 2856             16 years old   Male              10th grade   1.80  68.04
## 2857             14 years old   Male               9th grade   1.80  65.77
## 2858             16 years old   Male              10th grade   1.80  70.31
## 2859             15 years old   Male              10th grade   1.80  73.03
## 2860             15 years old   Male              10th grade   1.80  63.50
## 2861             16 years old   Male              10th grade   1.80  56.70
## 2862             16 years old   Male              11th grade   1.80  81.19
## 2863             16 years old   Male              11th grade   1.80  63.50
## 2864             17 years old   Male              11th grade   1.80  68.04
## 2865             17 years old Female              12th grade   1.80  68.04
## 2866             17 years old Female              12th grade   1.80  90.72
## 2867    18 years old or older   Male              12th grade   1.80 106.60
## 2868             17 years old   Male              12th grade   1.80 104.33
## 2869             17 years old   Male              12th grade   1.80  68.04
## 2870             16 years old   Male              11th grade   1.80  96.62
## 2871             15 years old   Male               9th grade   1.80  66.23
## 2872             15 years old   Male              10th grade   1.80  78.93
## 2873             15 years old   Male                    <NA>   1.80  58.97
## 2874             16 years old   Male              10th grade   1.80  63.50
## 2875             17 years old   Male              11th grade   1.80  75.30
## 2876             17 years old   Male              11th grade   1.80  62.60
## 2877             17 years old   Male                    <NA>   1.80  58.97
## 2878             17 years old   Male              12th grade   1.80  83.46
## 2879             17 years old   Male              12th grade   1.80  90.72
## 2880             17 years old   Male              12th grade   1.80 104.33
## 2881             17 years old   Male              12th grade   1.80  70.31
## 2882             17 years old   Male              12th grade   1.80 113.40
## 2883             14 years old   Male               9th grade   1.80  81.65
## 2884             15 years old   Male               9th grade   1.80  71.22
## 2885             15 years old   Male              10th grade   1.80  81.65
## 2886             15 years old Female              10th grade   1.80 104.33
## 2887             17 years old   Male              11th grade   1.80  60.33
## 2888    18 years old or older   Male              12th grade   1.80  82.10
## 2889             14 years old   Male               9th grade   1.80  58.06
## 2890             16 years old   Male              11th grade   1.80  66.23
## 2891    18 years old or older   Male              12th grade   1.80  58.97
## 2892             16 years old   Male              11th grade   1.80  65.77
## 2893             15 years old Female              10th grade   1.80  72.58
## 2894             16 years old   Male              11th grade   1.80 104.33
## 2895             17 years old   Male              12th grade   1.80  68.04
## 2896             17 years old   Male              12th grade   1.80  90.72
## 2897             16 years old   Male              10th grade   1.80  58.97
## 2898             16 years old   Male              11th grade   1.80  95.26
## 2899             15 years old   Male              10th grade   1.80  68.04
## 2900             15 years old   Male              10th grade   1.80  81.65
## 2901             15 years old   Male              10th grade   1.80  58.06
## 2902             17 years old   Male              12th grade   1.80  70.31
## 2903             16 years old   Male              11th grade   1.80  65.77
## 2904             16 years old   Male              11th grade   1.80  66.68
## 2905             15 years old   Male              10th grade   1.80  68.04
## 2906             14 years old   Male              10th grade   1.80  73.03
## 2907             16 years old   Male              10th grade   1.80  61.24
## 2908             16 years old   Male              10th grade   1.80 159.67
## 2909             16 years old Female              10th grade   1.80  76.20
## 2910             15 years old   Male              10th grade   1.80 131.54
## 2911             16 years old   Male              11th grade   1.80  72.58
## 2912             14 years old   Male               9th grade   1.80  61.24
## 2913             17 years old Female              12th grade   1.80 106.60
## 2914             14 years old   Male               9th grade   1.80  66.23
## 2915             15 years old   Male              10th grade   1.80  55.34
## 2916             16 years old   Male              11th grade   1.80  61.24
## 2917             17 years old   Male              12th grade   1.80  74.84
## 2918             13 years old   Male              12th grade   1.80  61.24
## 2919    18 years old or older   Male              12th grade   1.80  70.76
## 2920             16 years old   Male              10th grade   1.80  55.79
## 2921             14 years old   Male               9th grade   1.80  90.72
## 2922             14 years old   Male               9th grade   1.80  67.13
## 2923             16 years old   Male              11th grade   1.80  70.31
## 2924             16 years old   Male              11th grade   1.80  94.35
## 2925    18 years old or older   Male              12th grade   1.80  67.13
## 2926             17 years old   Male              12th grade   1.80  74.84
## 2927             14 years old   Male               9th grade   1.80  76.20
## 2928             17 years old   Male              11th grade   1.80  77.11
## 2929             16 years old   Male              11th grade   1.80  65.77
## 2930             17 years old   Male              12th grade   1.80  77.11
## 2931             16 years old   Male              11th grade   1.80  77.11
## 2932             17 years old   Male              11th grade   1.80  66.68
## 2933             15 years old   Male              10th grade   1.80  58.97
## 2934             15 years old   Male              10th grade   1.80  64.86
## 2935             15 years old Female              10th grade   1.80 113.40
## 2936             16 years old   Male              11th grade   1.80  71.22
## 2937    18 years old or older   Male              12th grade   1.80 149.69
## 2938             16 years old   Male              11th grade   1.80  70.31
## 2939             16 years old   Male              11th grade   1.80  68.04
## 2940             17 years old   Male              12th grade   1.80  81.65
## 2941    18 years old or older   Male              12th grade   1.80  90.72
## 2942             17 years old   Male              12th grade   1.80  79.38
## 2943             16 years old   Male              11th grade   1.80  79.38
## 2944             16 years old   Male              11th grade   1.80  67.59
## 2945             16 years old   Male              11th grade   1.80  61.69
## 2946             14 years old   Male               9th grade   1.80 111.13
## 2947             14 years old   Male               9th grade   1.80 104.33
## 2948             14 years old   Male              10th grade   1.80  95.26
## 2949             15 years old   Male              10th grade   1.80  61.24
## 2950             16 years old   Male              11th grade   1.80  65.77
## 2951             16 years old   Male              11th grade   1.80 126.10
## 2952             15 years old   Male              10th grade   1.80  79.83
## 2953             17 years old   Male              11th grade   1.80  71.22
## 2954             17 years old Female              11th grade   1.80  54.43
## 2955             14 years old Female               9th grade   1.80  90.72
## 2956             16 years old   Male              11th grade   1.80  63.50
## 2957             16 years old   Male              11th grade   1.80  79.38
## 2958             16 years old   Male              11th grade   1.80  70.31
## 2959             15 years old   Male              10th grade   1.80  90.27
## 2960             17 years old   Male              12th grade   1.80  74.84
## 2961             15 years old   Male              10th grade   1.80  95.26
## 2962             14 years old   Male               9th grade   1.80  63.50
## 2963             14 years old   Male               9th grade   1.80  92.53
## 2964             14 years old   Male               9th grade   1.80  70.31
## 2965             14 years old   Male               9th grade   1.80  90.72
## 2966             14 years old   Male               9th grade   1.80  63.50
## 2967             17 years old   Male              11th grade   1.80  81.65
## 2968             15 years old   Male              10th grade   1.80  54.43
## 2969             14 years old   Male               9th grade   1.80  57.15
## 2970             16 years old   Male              11th grade   1.80  80.74
## 2971             14 years old   Male               9th grade   1.80  64.41
## 2972             15 years old   Male              10th grade   1.80  52.16
## 2973             16 years old   Male              11th grade   1.80 108.86
## 2974             15 years old   Male               9th grade   1.80  67.13
## 2975             14 years old   Male               9th grade   1.80  54.43
## 2976    18 years old or older   Male              12th grade   1.80  88.45
## 2977             16 years old   Male              11th grade   1.80  54.43
## 2978             15 years old   Male              10th grade   1.80  58.97
## 2979             15 years old   Male              10th grade   1.80  64.41
## 2980             15 years old   Male              10th grade   1.80  54.43
## 2981             15 years old   Male              10th grade   1.80  70.31
## 2982             14 years old   Male               9th grade   1.80  64.86
## 2983             16 years old   Male              11th grade   1.80  68.04
## 2984             16 years old   Male              11th grade   1.80  63.50
## 2985    18 years old or older   Male              12th grade   1.80  90.72
## 2986             16 years old   Male              11th grade   1.80  74.84
## 2987             16 years old   Male              11th grade   1.80  82.56
## 2988             17 years old   Male              11th grade   1.80  95.26
## 2989             14 years old   Male              10th grade   1.80  49.90
## 2990             15 years old   Male              10th grade   1.80  63.05
## 2991             15 years old   Male              10th grade   1.80  65.77
## 2992             15 years old   Male              10th grade   1.80  62.14
## 2993             15 years old Female              10th grade   1.80  45.36
## 2994             16 years old   Male              11th grade   1.80  74.84
## 2995             17 years old   Male              12th grade   1.80  70.31
## 2996             16 years old   Male              11th grade   1.80  72.58
## 2997             16 years old   Male              11th grade   1.80  66.68
## 2998             14 years old Female               9th grade   1.80  68.04
## 2999             14 years old   Male               9th grade   1.80  91.17
## 3000             15 years old   Male              10th grade   1.80  68.04
## 3001             15 years old   Male              10th grade   1.80 113.40
## 3002             15 years old   Male              10th grade   1.80  64.41
## 3003             15 years old   Male              10th grade   1.80  71.67
## 3004             15 years old   Male              10th grade   1.80  70.31
## 3005             14 years old   Male               9th grade   1.80  74.84
## 3006             15 years old   Male              10th grade   1.80  73.94
## 3007             17 years old   Male              11th grade   1.80  68.04
## 3008             16 years old   Male              11th grade   1.80  76.66
## 3009    18 years old or older   Male              12th grade   1.80  86.18
## 3010             17 years old   Male              12th grade   1.80  95.26
## 3011             16 years old Female              11th grade   1.80 108.86
## 3012             15 years old   Male              10th grade   1.80  71.67
## 3013             16 years old   Male              11th grade   1.80  71.22
## 3014             14 years old   Male               9th grade   1.80  77.11
## 3015             15 years old   Male              10th grade   1.80  71.67
## 3016             16 years old   Male              11th grade   1.80  68.04
## 3017             16 years old   Male              11th grade   1.80  63.50
## 3018             15 years old Female               9th grade   1.80  56.70
## 3019             16 years old   Male              10th grade   1.80  72.58
## 3020             15 years old   Male               9th grade   1.80  83.01
## 3021             17 years old   Male              12th grade   1.80  81.65
## 3022    18 years old or older   Male              12th grade   1.80  63.50
## 3023             15 years old   Male              10th grade   1.80  63.50
## 3024             16 years old   Male              10th grade   1.80  68.04
## 3025             16 years old   Male               9th grade   1.80  70.76
## 3026             14 years old   Male               9th grade   1.80  79.38
## 3027             16 years old Female              11th grade   1.80  74.84
## 3028             17 years old   Male              11th grade   1.80  77.57
## 3029             17 years old   Male              10th grade   1.80  74.84
## 3030    18 years old or older   Male              11th grade   1.80  65.77
## 3031             15 years old   Male               9th grade   1.80  77.11
## 3032             17 years old   Male              12th grade   1.80  82.56
## 3033             16 years old   Male              11th grade   1.80  73.48
## 3034             17 years old Female              12th grade   1.80  54.43
## 3035    18 years old or older   Male              12th grade   1.80 120.20
## 3036             15 years old   Male              10th grade   1.80  52.16
## 3037             15 years old   Male               9th grade   1.80 116.58
## 3038             15 years old Female               9th grade   1.80  86.18
## 3039             15 years old   Male               9th grade   1.80  81.65
## 3040             17 years old   Male              11th grade   1.80  65.77
## 3041             17 years old   Male              12th grade   1.80  90.72
## 3042    18 years old or older Female              12th grade   1.80 111.13
## 3043             16 years old Female              11th grade   1.80  61.24
## 3044             16 years old   Male              11th grade   1.80  64.86
## 3045             17 years old   Male              11th grade   1.80  72.58
## 3046             17 years old   Male              11th grade   1.80  75.75
## 3047             17 years old   Male              11th grade   1.80  79.38
## 3048             15 years old   Male              10th grade   1.80  80.29
## 3049             15 years old Female               9th grade   1.80  53.98
## 3050    18 years old or older   Male              12th grade   1.80  87.54
## 3051             17 years old   Male              11th grade   1.80  94.80
## 3052             16 years old   Male              10th grade   1.80  58.97
## 3053             16 years old   Male              10th grade   1.80  65.77
## 3054             15 years old   Male              10th grade   1.80  95.26
## 3055             16 years old   Male              10th grade   1.80  63.50
## 3056             16 years old   Male              10th grade   1.80  63.50
## 3057             17 years old   Male              11th grade   1.80  65.77
## 3058             16 years old Female              12th grade   1.80 104.33
## 3059             17 years old   Male              11th grade   1.80  73.94
## 3060             17 years old   Male              11th grade   1.80  60.78
## 3061             15 years old   Male              10th grade   1.80  63.50
## 3062             16 years old   Male              10th grade   1.80  66.23
## 3063             17 years old   Male              12th grade   1.80  97.52
## 3064             16 years old   Male              11th grade   1.80  61.24
## 3065             17 years old   Male              12th grade   1.80  63.50
## 3066             17 years old   Male              11th grade   1.80 131.54
## 3067    18 years old or older   Male              12th grade   1.80  72.12
## 3068             16 years old   Male              10th grade   1.80 136.08
## 3069    18 years old or older   Male              12th grade   1.80 106.60
## 3070             17 years old   Male              12th grade   1.80  72.58
## 3071             17 years old   Male              12th grade   1.80  90.72
## 3072    18 years old or older   Male              12th grade   1.80  86.18
## 3073             15 years old   Male               9th grade   1.80  70.31
## 3074             17 years old   Male              11th grade   1.80  97.52
## 3075             17 years old   Male              12th grade   1.80  76.20
## 3076             16 years old   Male              10th grade   1.80  74.84
## 3077             14 years old Female               9th grade   1.80  84.82
## 3078             16 years old   Male              11th grade   1.80  58.97
## 3079    18 years old or older   Male              12th grade   1.80  79.38
## 3080             17 years old   Male              11th grade   1.80  85.73
## 3081             15 years old   Male              10th grade   1.80 133.81
## 3082             16 years old   Male              10th grade   1.80  68.04
## 3083    18 years old or older   Male              12th grade   1.80 111.13
## 3084             15 years old   Male              10th grade   1.80  95.26
## 3085             17 years old   Male              12th grade   1.80  74.84
## 3086             17 years old   Male              12th grade   1.80  70.31
## 3087             14 years old   Male               9th grade   1.80  61.24
## 3088    18 years old or older   Male              12th grade   1.80  71.67
## 3089             17 years old   Male              12th grade   1.80  79.38
## 3090    18 years old or older   Male              12th grade   1.80  81.65
## 3091             15 years old Female               9th grade   1.80  68.04
## 3092             16 years old Female              10th grade   1.80  72.58
## 3093    18 years old or older   Male              12th grade   1.80  72.58
## 3094             16 years old   Male              11th grade   1.80  73.03
## 3095             17 years old   Male              11th grade   1.80  86.18
## 3096             15 years old   Male              10th grade   1.80  95.26
## 3097             17 years old   Male              12th grade   1.80  68.04
## 3098             15 years old   Male               9th grade   1.80  77.11
## 3099             17 years old Female              11th grade   1.80  74.84
## 3100             15 years old   Male              10th grade   1.80  83.92
## 3101             14 years old   Male               9th grade   1.80  58.97
## 3102             15 years old   Male              10th grade   1.80  95.26
## 3103             16 years old   Male              10th grade   1.80  75.30
## 3104             17 years old   Male              11th grade   1.80  90.72
## 3105             16 years old   Male              10th grade   1.80  81.65
## 3106             15 years old   Male               9th grade   1.80  96.16
## 3107    18 years old or older   Male              12th grade   1.80  71.67
## 3108             16 years old   Male              10th grade   1.80  58.97
## 3109    18 years old or older   Male              12th grade   1.80  95.26
## 3110             17 years old   Male              11th grade   1.80  58.97
## 3111             15 years old   Male               9th grade   1.80  84.82
## 3112             16 years old   Male              10th grade   1.80  86.18
## 3113             15 years old   Male              10th grade   1.80  99.79
## 3114             15 years old   Male               9th grade   1.80  59.88
## 3115             15 years old   Male              10th grade   1.80  96.16
## 3116             15 years old   Male               9th grade   1.80  54.43
## 3117             15 years old   Male              10th grade   1.80  70.76
## 3118             14 years old   Male               9th grade   1.80  83.01
## 3119             16 years old   Male              10th grade   1.80  69.85
## 3120             16 years old   Male              10th grade   1.80  68.95
## 3121             15 years old   Male               9th grade   1.80  84.82
## 3122             15 years old   Male               9th grade   1.80  90.72
## 3123             14 years old   Male               9th grade   1.80  84.82
## 3124             15 years old Female               9th grade   1.80  58.97
## 3125             14 years old   Male               9th grade   1.80  59.42
## 3126             16 years old   Male              10th grade   1.80  84.37
## 3127             16 years old   Male              11th grade   1.80  99.79
## 3128             17 years old   Male              12th grade   1.80  71.22
## 3129    18 years old or older   Male              12th grade   1.80  72.58
## 3130             17 years old   Male              11th grade   1.80  65.77
## 3131             17 years old   Male              11th grade   1.80  68.04
## 3132             17 years old   Male              11th grade   1.80  74.84
## 3133             16 years old   Male              11th grade   1.80  81.65
## 3134             14 years old   Male               9th grade   1.80 108.86
## 3135             16 years old   Male              10th grade   1.80  70.31
## 3136             15 years old   Male               9th grade   1.80  81.65
## 3137    18 years old or older   Male              12th grade   1.80  77.11
## 3138             14 years old   Male               9th grade   1.80  70.31
## 3139    18 years old or older   Male              12th grade   1.80  54.43
## 3140             15 years old   Male               9th grade   1.80  92.53
## 3141             14 years old   Male               9th grade   1.80  81.65
## 3142    18 years old or older   Male              12th grade   1.80  72.58
## 3143             15 years old   Male              10th grade   1.80  70.31
## 3144             14 years old   Male               9th grade   1.80  63.50
## 3145             16 years old   Male              11th grade   1.80  68.95
## 3146             15 years old   Male               9th grade   1.80  99.79
## 3147             15 years old   Male               9th grade   1.80  79.83
## 3148             15 years old   Male               9th grade   1.80  61.24
## 3149             15 years old   Male               9th grade   1.80  54.43
## 3150             15 years old   Male               9th grade   1.80  59.88
## 3151             15 years old Female               9th grade   1.80  68.04
## 3152             15 years old   Male               9th grade   1.80  73.03
## 3153             15 years old   Male               9th grade   1.80  83.01
## 3154             14 years old   Male               9th grade   1.80  93.90
## 3155             14 years old   Male               9th grade   1.80  60.78
## 3156             15 years old   Male               9th grade   1.80  74.84
## 3157             15 years old   Male               9th grade   1.80  54.43
## 3158             15 years old   Male               9th grade   1.80  70.76
## 3159             15 years old   Male               9th grade   1.80 124.74
## 3160             15 years old   Male               9th grade   1.80  96.62
## 3161    18 years old or older Female              12th grade   1.78  74.84
## 3162             16 years old   Male              10th grade   1.78  79.38
## 3163             17 years old   Male              11th grade   1.78  70.31
## 3164             17 years old   Male              11th grade   1.78  83.92
## 3165             17 years old   Male              11th grade   1.78  66.68
## 3166             16 years old   Male              11th grade   1.78  72.58
## 3167             16 years old   Male              11th grade   1.78  72.58
## 3168             15 years old   Male               9th grade   1.78  54.89
## 3169             15 years old   Male               9th grade   1.78  49.90
## 3170             15 years old   Male               9th grade   1.78  75.30
## 3171             17 years old   Male              11th grade   1.78  64.86
## 3172             17 years old   Male              11th grade   1.78  77.11
## 3173             16 years old   Male              11th grade   1.78  61.24
## 3174             14 years old   Male               9th grade   1.78  85.73
## 3175             14 years old   Male               9th grade   1.78  61.24
## 3176             16 years old Female              10th grade   1.78  81.65
## 3177             15 years old   Male               9th grade   1.78  84.37
## 3178             14 years old   Male               9th grade   1.78  89.36
## 3179             17 years old   Male              12th grade   1.78  88.45
## 3180             17 years old   Male              12th grade   1.78 108.41
## 3181    18 years old or older   Male              12th grade   1.78  61.24
## 3182             16 years old   Male              10th grade   1.78  96.62
## 3183             15 years old   Male               9th grade   1.78  76.20
## 3184             16 years old Female              10th grade   1.78  56.70
## 3185             15 years old   Male               9th grade   1.78  61.69
## 3186             15 years old   Male               9th grade   1.78  54.43
## 3187             15 years old   Male              10th grade   1.78  70.31
## 3188             15 years old   Male              10th grade   1.78 117.94
## 3189             15 years old   Male              10th grade   1.78  61.24
## 3190             16 years old   Male              11th grade   1.78  58.97
## 3191             15 years old   Male              10th grade   1.78  99.79
## 3192             16 years old Female              11th grade   1.78  74.84
## 3193             16 years old   Male              10th grade   1.78 120.20
## 3194             16 years old Female              11th grade   1.78  99.79
## 3195             17 years old   Male              12th grade   1.78  74.84
## 3196             15 years old   Male              10th grade   1.78  60.78
## 3197             17 years old   Male              12th grade   1.78  92.99
## 3198             16 years old   Male              10th grade   1.78  72.58
## 3199             16 years old   Male              11th grade   1.78  62.60
## 3200             16 years old   Male              11th grade   1.78  72.58
## 3201             17 years old   Male              11th grade   1.78 127.01
## 3202             16 years old   Male              11th grade   1.78  63.50
## 3203             16 years old   Male              11th grade   1.78  78.93
## 3204             17 years old   Male              11th grade   1.78  78.02
## 3205             16 years old   Male              10th grade   1.78  63.50
## 3206    18 years old or older   Male              12th grade   1.78  77.11
## 3207    18 years old or older   Male              12th grade   1.78  62.14
## 3208             17 years old   Male              12th grade   1.78  92.99
## 3209             15 years old   Male               9th grade   1.78 103.87
## 3210    18 years old or older   Male              12th grade   1.78  68.04
## 3211             16 years old   Male              11th grade   1.78  90.72
## 3212             14 years old   Male               9th grade   1.78  54.43
## 3213             16 years old   Male              11th grade   1.78  65.77
## 3214             17 years old Female              11th grade   1.78 116.12
## 3215             14 years old   Male               9th grade   1.78  54.43
## 3216             17 years old   Male              11th grade   1.78  94.80
## 3217    18 years old or older   Male              12th grade   1.78  79.38
## 3218             14 years old   Male               9th grade   1.78  85.28
## 3219             17 years old Female              12th grade   1.78  61.24
## 3220             17 years old   Male              12th grade   1.78  58.97
## 3221             17 years old   Male              12th grade   1.78  79.38
## 3222             16 years old   Male              11th grade   1.78  77.11
## 3223             16 years old   Male              11th grade   1.78  83.92
## 3224             17 years old   Male              11th grade   1.78  52.16
## 3225             16 years old   Male              11th grade   1.78  76.66
## 3226             16 years old   Male              11th grade   1.78  81.65
## 3227             14 years old   Male               9th grade   1.78  56.70
## 3228             17 years old   Male              12th grade   1.78  74.84
## 3229             17 years old   Male              12th grade   1.78  62.60
## 3230             15 years old   Male              10th grade   1.78  68.04
## 3231             17 years old   Male              12th grade   1.78  95.26
## 3232             15 years old   Male              10th grade   1.78  58.97
## 3233             16 years old   Male              11th grade   1.78  85.73
## 3234             16 years old   Male              10th grade   1.78  58.97
## 3235    18 years old or older   Male              12th grade   1.78  61.24
## 3236             14 years old   Male               9th grade   1.78 108.86
## 3237             16 years old   Male              10th grade   1.78  65.32
## 3238             17 years old   Male              12th grade   1.78  74.84
## 3239    18 years old or older   Male              12th grade   1.78  74.84
## 3240             14 years old   Male               9th grade   1.78  72.58
## 3241             15 years old Female               9th grade   1.78  70.31
## 3242             15 years old   Male               9th grade   1.78  83.92
## 3243             15 years old   Male               9th grade   1.78  79.38
## 3244             15 years old   Male               9th grade   1.78  86.18
## 3245    18 years old or older   Male              12th grade   1.78 132.45
## 3246             16 years old   Male              10th grade   1.78  83.92
## 3247             15 years old   Male               9th grade   1.78  99.79
## 3248             17 years old   Male              12th grade   1.78  65.77
## 3249    18 years old or older   Male              12th grade   1.78  67.13
## 3250             17 years old   Male              10th grade   1.78  72.58
## 3251             15 years old   Male               9th grade   1.78  95.71
## 3252             16 years old   Male              10th grade   1.78  65.77
## 3253             15 years old   Male               9th grade   1.78  54.43
## 3254    18 years old or older   Male              12th grade   1.78  71.22
## 3255    18 years old or older   Male              12th grade   1.78  58.97
## 3256             17 years old   Male              11th grade   1.78  91.63
## 3257             15 years old   Male              10th grade   1.78  88.45
## 3258             14 years old   Male               9th grade   1.78  68.04
## 3259             17 years old   Male              11th grade   1.78  79.38
## 3260             15 years old   Male              10th grade   1.78  61.24
## 3261             16 years old   Male              11th grade   1.78  65.77
## 3262             16 years old   Male              10th grade   1.78  58.97
## 3263             16 years old   Male              10th grade   1.78  99.79
## 3264             15 years old   Male               9th grade   1.78  58.97
## 3265             17 years old   Male              12th grade   1.78  86.18
## 3266             14 years old Female               9th grade   1.78  61.69
## 3267             14 years old   Male               9th grade   1.78 108.86
## 3268             15 years old   Male               9th grade   1.78  65.77
## 3269             15 years old   Male              10th grade   1.78  57.61
## 3270             16 years old   Male              11th grade   1.78  72.58
## 3271             15 years old   Male              10th grade   1.78  70.31
## 3272             15 years old   Male               9th grade   1.78  72.58
## 3273             15 years old   Male               9th grade   1.78  47.63
## 3274    18 years old or older   Male              12th grade   1.78  71.67
## 3275             17 years old   Male              11th grade   1.78  65.77
## 3276    18 years old or older   Male              12th grade   1.78  72.58
## 3277             17 years old Female              12th grade   1.78  65.77
## 3278             17 years old   Male              12th grade   1.78  56.70
## 3279             16 years old   Male              10th grade   1.78  64.41
## 3280             17 years old   Male              11th grade   1.78  58.97
## 3281             14 years old   Male               9th grade   1.78  45.36
## 3282             14 years old   Male               9th grade   1.78  58.97
## 3283             16 years old   Male              11th grade   1.78  52.16
## 3284             14 years old   Male               9th grade   1.78  83.01
## 3285             17 years old   Male              12th grade   1.78  54.43
## 3286             17 years old   Male              11th grade   1.78  77.11
## 3287             16 years old   Male              11th grade   1.78  70.31
## 3288    18 years old or older   Male              12th grade   1.78  67.59
## 3289             14 years old   Male               9th grade   1.78  77.11
## 3290             15 years old   Male               9th grade   1.78  77.57
## 3291             16 years old   Male              11th grade   1.78  61.24
## 3292             16 years old Female              10th grade   1.78  62.60
## 3293             17 years old Female              12th grade   1.78  93.90
## 3294             17 years old   Male              12th grade   1.78  73.94
## 3295             17 years old   Male              11th grade   1.78  56.70
## 3296             17 years old   Male              12th grade   1.78  86.18
## 3297             17 years old Female              11th grade   1.78 115.67
## 3298    18 years old or older   Male              12th grade   1.78  58.97
## 3299    18 years old or older   Male              11th grade   1.78  99.79
## 3300             17 years old   Male              11th grade   1.78  86.18
## 3301             17 years old   Male              11th grade   1.78  72.58
## 3302    18 years old or older   Male              12th grade   1.78  81.65
## 3303             14 years old   Male               9th grade   1.78  77.57
## 3304             16 years old   Male              11th grade   1.78  54.43
## 3305             14 years old   Male               9th grade   1.78  63.50
## 3306             14 years old   Male               9th grade   1.78  81.65
## 3307             16 years old   Male              10th grade   1.78  73.03
## 3308             17 years old   Male              11th grade   1.78  77.11
## 3309             17 years old Female              12th grade   1.78  72.58
## 3310             15 years old   Male               9th grade   1.78  61.24
## 3311             17 years old Female              11th grade   1.78  58.97
## 3312    18 years old or older   Male              12th grade   1.78  63.50
## 3313             16 years old   Male              10th grade   1.78  83.01
## 3314             15 years old   Male               9th grade   1.78  99.79
## 3315             15 years old   Male              10th grade   1.78  54.43
## 3316             15 years old   Male               9th grade   1.78  56.70
## 3317             15 years old   Male              10th grade   1.78  90.27
## 3318             16 years old   Male               9th grade   1.78  54.43
## 3319             17 years old   Male              10th grade   1.78  74.39
## 3320             17 years old   Male              12th grade   1.78  61.69
## 3321             17 years old   Male              11th grade   1.78  70.76
## 3322             15 years old   Male               9th grade   1.78  54.43
## 3323             16 years old   Male              10th grade   1.78  55.79
## 3324             17 years old   Male              11th grade   1.78  92.08
## 3325             17 years old   Male              11th grade   1.78  86.18
## 3326             17 years old   Male              12th grade   1.78  54.43
## 3327             17 years old   Male              12th grade   1.78  68.04
## 3328             17 years old   Male              12th grade   1.78  76.20
## 3329             17 years old   Male              12th grade   1.78  54.43
## 3330             15 years old   Male              10th grade   1.78  68.04
## 3331             17 years old   Male              12th grade   1.78  58.97
## 3332             15 years old   Male               9th grade   1.78  56.70
## 3333             15 years old   Male               9th grade   1.78  73.48
## 3334             15 years old   Male              10th grade   1.78  61.69
## 3335             15 years old   Male               9th grade   1.78  56.70
## 3336             17 years old   Male              12th grade   1.78  74.84
## 3337             17 years old Female              11th grade   1.78  70.31
## 3338    18 years old or older   Male              12th grade   1.78  61.24
## 3339             17 years old   Male              12th grade   1.78  72.58
## 3340             14 years old   Male               9th grade   1.78  88.45
## 3341             15 years old   Male               9th grade   1.78  74.39
## 3342    18 years old or older   Male              12th grade   1.78  65.77
## 3343             16 years old Female              11th grade   1.78  99.79
## 3344             16 years old   Male              11th grade   1.78  72.58
## 3345             16 years old   Male              11th grade   1.78  56.25
## 3346             17 years old   Male              11th grade   1.78  58.97
## 3347    18 years old or older   Male              12th grade   1.78  68.04
## 3348             16 years old   Male              10th grade   1.78  68.49
## 3349             15 years old   Male              10th grade   1.78  63.50
## 3350             17 years old   Male              11th grade   1.78  83.01
## 3351             14 years old   Male               9th grade   1.78  67.13
## 3352             15 years old   Male               9th grade   1.78  67.13
## 3353             14 years old Female               9th grade   1.78  49.90
## 3354             16 years old   Male              10th grade   1.78  63.50
## 3355             17 years old   Male              11th grade   1.78  65.77
## 3356             15 years old   Male              10th grade   1.78  72.58
## 3357    18 years old or older   Male              12th grade   1.78  68.04
## 3358             16 years old   Male              10th grade   1.78  65.77
## 3359    18 years old or older Female              12th grade   1.78  65.77
## 3360             16 years old   Male              11th grade   1.78  65.32
## 3361             17 years old   Male              11th grade   1.78  70.31
## 3362    18 years old or older   Male              12th grade   1.78 115.67
## 3363             16 years old   Male              10th grade   1.78  71.67
## 3364             17 years old   Male              12th grade   1.78  72.58
## 3365    18 years old or older   Male              12th grade   1.78  99.79
## 3366             16 years old   Male              10th grade   1.78  86.18
## 3367             17 years old   Male              12th grade   1.78  99.79
## 3368             16 years old   Male              10th grade   1.78  58.97
## 3369             17 years old   Male              11th grade   1.78  88.00
## 3370             15 years old   Male               9th grade   1.78  97.52
## 3371             16 years old   Male              10th grade   1.78  74.84
## 3372             14 years old   Male               9th grade   1.78  63.05
## 3373             17 years old   Male              11th grade   1.78  92.99
## 3374             16 years old   Male              10th grade   1.78  56.70
## 3375             17 years old   Male              11th grade   1.78  68.04
## 3376             15 years old Female               9th grade   1.78  86.18
## 3377             17 years old   Male              12th grade   1.78  79.38
## 3378             17 years old   Male              11th grade   1.78  90.72
## 3379             16 years old   Male              10th grade   1.78  58.97
## 3380    18 years old or older   Male              12th grade   1.78  79.38
## 3381             15 years old   Male               9th grade   1.78  99.79
## 3382             15 years old   Male               9th grade   1.78  76.20
## 3383             15 years old   Male               9th grade   1.78  67.59
## 3384             15 years old   Male               9th grade   1.78  56.70
## 3385             16 years old   Male              11th grade   1.78  70.31
## 3386             17 years old   Male              11th grade   1.78  74.84
## 3387             17 years old   Male              11th grade   1.78  92.99
## 3388             17 years old   Male              12th grade   1.78  70.31
## 3389             16 years old   Male              10th grade   1.78  79.38
## 3390             15 years old   Male              10th grade   1.78  74.39
## 3391             17 years old   Male              11th grade   1.78  63.50
## 3392    18 years old or older   Male              12th grade   1.78  65.77
## 3393             14 years old   Male               9th grade   1.78  80.29
## 3394             16 years old   Male              10th grade   1.78  70.31
## 3395             17 years old   Male              12th grade   1.78  75.75
## 3396             14 years old   Male               9th grade   1.78  58.97
## 3397    18 years old or older   Male              12th grade   1.78  61.24
## 3398             16 years old   Male              10th grade   1.78  54.43
## 3399             16 years old   Male              10th grade   1.78  88.45
## 3400             17 years old   Male              12th grade   1.78  92.99
## 3401             15 years old   Male              10th grade   1.78  71.67
## 3402             15 years old   Male               9th grade   1.78  74.84
## 3403             15 years old Female              10th grade   1.78  74.84
## 3404             16 years old   Male              11th grade   1.78  90.72
## 3405             15 years old   Male              10th grade   1.78  68.95
## 3406             17 years old   Male              12th grade   1.78  69.40
## 3407             17 years old   Male              11th grade   1.78  62.60
## 3408             16 years old   Male              11th grade   1.78  61.24
## 3409             17 years old   Male              11th grade   1.78 107.96
## 3410             16 years old   Male              10th grade   1.78  76.20
## 3411             17 years old   Male              11th grade   1.78  91.17
## 3412             15 years old   Male               9th grade   1.78  63.50
## 3413             17 years old Female              12th grade   1.78  70.31
## 3414             16 years old   Male              11th grade   1.78  61.24
## 3415    18 years old or older   Male              12th grade   1.78  79.38
## 3416             17 years old   Male              11th grade   1.78  54.89
## 3417             16 years old   Male              10th grade   1.78  83.92
## 3418             16 years old   Male              10th grade   1.78  61.24
## 3419             17 years old Female              12th grade   1.78  64.86
## 3420             17 years old   Male              12th grade   1.78  79.38
## 3421             17 years old   Male              10th grade   1.78 108.86
## 3422             17 years old Female              11th grade   1.78  71.22
## 3423             17 years old   Male              11th grade   1.78 113.40
## 3424             17 years old   Male              12th grade   1.78  58.97
## 3425             16 years old   Male              10th grade   1.78  95.26
## 3426             17 years old   Male              11th grade   1.78  95.26
## 3427             15 years old   Male              10th grade   1.78  57.61
## 3428             15 years old   Male              10th grade   1.78  77.11
## 3429             17 years old   Male              12th grade   1.78  56.70
## 3430    18 years old or older   Male              12th grade   1.78 104.33
## 3431             16 years old   Male              11th grade   1.78  72.58
## 3432             17 years old   Male              12th grade   1.78  83.92
## 3433    18 years old or older   Male              12th grade   1.78  61.24
## 3434             15 years old   Male               9th grade   1.78  65.77
## 3435             15 years old   Male               9th grade   1.78  63.05
## 3436             14 years old Female               9th grade   1.78  79.38
## 3437             16 years old   Male              11th grade   1.78 110.22
## 3438    18 years old or older   Male              12th grade   1.78  56.70
## 3439             16 years old   Male              10th grade   1.78  54.43
## 3440             16 years old   Male              11th grade   1.78  95.26
## 3441             17 years old   Male              12th grade   1.78  58.97
## 3442             15 years old   Male              10th grade   1.78  57.61
## 3443             16 years old   Male              10th grade   1.78  61.24
## 3444             15 years old   Male              10th grade   1.78  70.31
## 3445    18 years old or older   Male              12th grade   1.78  73.03
## 3446    18 years old or older   Male              12th grade   1.78  71.67
## 3447             14 years old   Male               9th grade   1.78  58.97
## 3448             14 years old   Male               9th grade   1.78 113.40
## 3449             15 years old Female               9th grade   1.78 101.61
## 3450             16 years old   Male               9th grade   1.78 138.35
## 3451             15 years old   Male              10th grade   1.78  72.58
## 3452    18 years old or older   Male              12th grade   1.78  86.18
## 3453             17 years old   Male              11th grade   1.78  58.97
## 3454             17 years old   Male              12th grade   1.78  74.84
## 3455             14 years old   Male               9th grade   1.78  70.31
## 3456    18 years old or older   Male              12th grade   1.78 124.74
## 3457             17 years old   Male              11th grade   1.78  65.77
## 3458             16 years old Female              11th grade   1.78  58.97
## 3459             17 years old   Male              11th grade   1.78 120.20
## 3460             17 years old   Male              11th grade   1.78  54.43
## 3461    18 years old or older   Male              12th grade   1.78  65.77
## 3462    18 years old or older Female              12th grade   1.78  77.11
## 3463             16 years old   Male              10th grade   1.78 101.61
## 3464             15 years old   Male              10th grade   1.78  95.26
## 3465             16 years old   Male              10th grade   1.78  83.92
## 3466             14 years old   Male               9th grade   1.78  65.32
## 3467             15 years old   Male               9th grade   1.78 104.33
## 3468    18 years old or older   Male              12th grade   1.78  68.04
## 3469             17 years old   Male              11th grade   1.78  74.39
## 3470             16 years old   Male              11th grade   1.78  72.58
## 3471             17 years old   Male              12th grade   1.78  65.77
## 3472             17 years old   Male              11th grade   1.78  99.79
## 3473             15 years old   Male              10th grade   1.78  80.74
## 3474             16 years old   Male              11th grade   1.78  61.24
## 3475             16 years old   Male              11th grade   1.78  58.06
## 3476             16 years old   Male              10th grade   1.78  78.02
## 3477             14 years old   Male               9th grade   1.78  47.63
## 3478             15 years old   Male               9th grade   1.78  63.96
## 3479             15 years old   Male               9th grade   1.78  68.04
## 3480             15 years old   Male               9th grade   1.78  61.24
## 3481             15 years old   Male               9th grade   1.78  90.72
## 3482             14 years old   Male               9th grade   1.78  63.50
## 3483    18 years old or older   Male              12th grade   1.78  54.43
## 3484             17 years old   Male              12th grade   1.78  63.50
## 3485             17 years old   Male              11th grade   1.78  79.38
## 3486             15 years old   Male               9th grade   1.78  63.50
## 3487             16 years old   Male              10th grade   1.78  90.72
## 3488             16 years old   Male              10th grade   1.78  56.70
## 3489             15 years old   Male              10th grade   1.78  79.38
## 3490             16 years old   Male              10th grade   1.78 104.33
## 3491             14 years old   Male               9th grade   1.78  68.04
## 3492             16 years old   Male              10th grade   1.78  68.04
## 3493             15 years old   Male              10th grade   1.78  81.65
## 3494             16 years old   Male              10th grade   1.78  86.18
## 3495             16 years old   Male              11th grade   1.78  61.69
## 3496             17 years old   Male              12th grade   1.78  70.31
## 3497             17 years old   Male              12th grade   1.78  60.33
## 3498             17 years old   Male              11th grade   1.78  68.04
## 3499             15 years old Female               9th grade   1.78  99.79
## 3500             14 years old   Male               9th grade   1.78  68.49
## 3501             17 years old   Male              11th grade   1.78  61.24
## 3502             16 years old   Male              11th grade   1.78  90.72
## 3503             14 years old   Male               9th grade   1.78  75.30
## 3504             15 years old   Male               9th grade   1.78  70.76
## 3505    18 years old or older   Male              12th grade   1.78  97.52
## 3506             16 years old Female              10th grade   1.78  54.43
## 3507             15 years old   Male              10th grade   1.78  58.06
## 3508             15 years old   Male               9th grade   1.78  61.24
## 3509             16 years old   Male              11th grade   1.78  62.14
## 3510             17 years old   Male              12th grade   1.78  66.68
## 3511             17 years old   Male              11th grade   1.78  88.45
## 3512             17 years old   Male              11th grade   1.78  63.50
## 3513             15 years old   Male              10th grade   1.78  77.11
## 3514             16 years old   Male              10th grade   1.78  78.93
## 3515             16 years old   Male               9th grade   1.78  66.68
## 3516             16 years old   Male               9th grade   1.78  77.11
## 3517             15 years old Female               9th grade   1.78  65.77
## 3518    18 years old or older Female              12th grade   1.78  72.58
## 3519             16 years old   Male              10th grade   1.78  65.77
## 3520             17 years old   Male              11th grade   1.78  74.84
## 3521    18 years old or older   Male              12th grade   1.78  77.11
## 3522             14 years old Female               9th grade   1.78  63.50
## 3523    18 years old or older Female              12th grade   1.78  74.84
## 3524             15 years old   Male              10th grade   1.78  62.60
## 3525             17 years old   Male              12th grade   1.78  65.77
## 3526             16 years old   Male              11th grade   1.78  81.65
## 3527             16 years old   Male              11th grade   1.78  52.16
## 3528             17 years old   Male              12th grade   1.78  65.77
## 3529             17 years old   Male              12th grade   1.78  49.90
## 3530             15 years old   Male               9th grade   1.78  58.97
## 3531             17 years old   Male              12th grade   1.78  58.97
## 3532             15 years old   Male               9th grade   1.78  72.58
## 3533             16 years old   Male              11th grade   1.78  98.43
## 3534             17 years old   Male              11th grade   1.78  58.06
## 3535             16 years old   Male              10th grade   1.78  79.38
## 3536             16 years old   Male              10th grade   1.78  65.77
## 3537             16 years old   Male              10th grade   1.78  79.38
## 3538    18 years old or older   Male              12th grade   1.78  80.74
## 3539             16 years old   Male              10th grade   1.78  72.58
## 3540             17 years old   Male              12th grade   1.78  74.84
## 3541             15 years old   Male               9th grade   1.78 111.13
## 3542             17 years old   Male              11th grade   1.78  70.31
## 3543             16 years old   Male              10th grade   1.78  86.18
## 3544             16 years old   Male              10th grade   1.78  72.58
## 3545             16 years old   Male              10th grade   1.78  61.24
## 3546    18 years old or older   Male              12th grade   1.78  89.36
## 3547    18 years old or older   Male              12th grade   1.78  70.31
## 3548    18 years old or older   Male              12th grade   1.78  83.92
## 3549             16 years old   Male              11th grade   1.78  66.68
## 3550             15 years old   Male              10th grade   1.78  59.88
## 3551             16 years old   Male              10th grade   1.78  61.24
## 3552             16 years old   Male              11th grade   1.78  70.31
## 3553             16 years old   Male              11th grade   1.78 111.13
## 3554             17 years old   Male              11th grade   1.78  88.45
## 3555             17 years old   Male              11th grade   1.78 117.94
## 3556             16 years old   Male              10th grade   1.78  65.77
## 3557             15 years old Female              10th grade   1.78  90.72
## 3558             15 years old Female              10th grade   1.78  58.51
## 3559             17 years old   Male              12th grade   1.78  88.45
## 3560    18 years old or older   Male              12th grade   1.78  76.20
## 3561             17 years old   Male              11th grade   1.78  74.84
## 3562    18 years old or older   Male              12th grade   1.78 113.40
## 3563             15 years old Female              10th grade   1.78  54.43
## 3564    18 years old or older   Male              12th grade   1.78  74.84
## 3565             17 years old   Male              11th grade   1.78 154.68
## 3566             16 years old   Male              10th grade   1.78  99.79
## 3567    18 years old or older   Male              11th grade   1.78  81.65
## 3568    18 years old or older Female              12th grade   1.78  73.03
## 3569             16 years old   Male              10th grade   1.78 128.37
## 3570             17 years old   Male              12th grade   1.78  58.97
## 3571             17 years old   Male              11th grade   1.78  60.78
## 3572             17 years old   Male              11th grade   1.78  86.18
## 3573             16 years old   Male               9th grade   1.78  58.97
## 3574             15 years old   Male               9th grade   1.78  86.18
## 3575             16 years old   Male              10th grade   1.78  58.97
## 3576             16 years old Female              10th grade   1.78  59.88
## 3577             16 years old   Male              11th grade   1.78 106.60
## 3578             16 years old   Male              11th grade   1.78  81.65
## 3579             14 years old   Male               9th grade   1.78  57.15
## 3580             17 years old   Male              11th grade   1.78  97.52
## 3581             17 years old   Male              12th grade   1.78 102.06
## 3582             16 years old   Male              10th grade   1.78  52.16
## 3583             17 years old   Male              12th grade   1.78  68.04
## 3584             16 years old   Male              11th grade   1.78 107.05
## 3585             17 years old   Male              12th grade   1.78  84.37
## 3586             15 years old   Male              10th grade   1.78  84.82
## 3587             16 years old   Male              10th grade   1.78  94.35
## 3588             16 years old   Male              10th grade   1.78  58.97
## 3589             16 years old   Male              10th grade   1.78  58.97
## 3590             16 years old   Male              11th grade   1.78  56.70
## 3591             16 years old   Male              10th grade   1.78  54.43
## 3592             17 years old   Male              11th grade   1.78  68.04
## 3593    18 years old or older   Male              12th grade   1.78  69.85
## 3594             15 years old   Male              10th grade   1.78  70.31
## 3595             15 years old   Male              10th grade   1.78 111.13
## 3596             15 years old   Male              10th grade   1.78  79.38
## 3597             16 years old Female              11th grade   1.78  61.24
## 3598             16 years old   Male              11th grade   1.78  65.77
## 3599             15 years old   Male              10th grade   1.78  71.67
## 3600             15 years old   Male              10th grade   1.78  74.84
## 3601             17 years old   Male              11th grade   1.78  90.72
## 3602             16 years old   Male              11th grade   1.78  70.31
## 3603             15 years old   Male              10th grade   1.78  58.97
## 3604             15 years old   Male               9th grade   1.78  79.38
## 3605             17 years old Female              12th grade   1.78 113.40
## 3606             16 years old Female              11th grade   1.78  58.97
## 3607             15 years old   Male              10th grade   1.78  90.72
## 3608             16 years old   Male              11th grade   1.78  88.45
## 3609             17 years old   Male              11th grade   1.78 108.86
## 3610             15 years old   Male              10th grade   1.78 111.13
## 3611             16 years old   Male              11th grade   1.78  83.92
## 3612             15 years old   Male              10th grade   1.78 108.86
## 3613    18 years old or older   Male              12th grade   1.78  90.72
## 3614             16 years old   Male              11th grade   1.78 113.40
## 3615    18 years old or older   Male              12th grade   1.78  73.48
## 3616             17 years old   Male              11th grade   1.78 104.33
## 3617             15 years old   Male              10th grade   1.78  65.77
## 3618             17 years old   Male              11th grade   1.78  68.04
## 3619             16 years old   Male              11th grade   1.78  56.70
## 3620             16 years old   Male              10th grade   1.78  77.11
## 3621             16 years old   Male              10th grade   1.78  87.54
## 3622             15 years old   Male              10th grade   1.78  56.70
## 3623             15 years old   Male              10th grade   1.78  54.43
## 3624             16 years old   Male              10th grade   1.78  58.97
## 3625             17 years old   Male              11th grade   1.78 104.33
## 3626             17 years old   Male              11th grade   1.78  70.76
## 3627             16 years old   Male              11th grade   1.78  77.11
## 3628             16 years old   Male              11th grade   1.78  77.11
## 3629             16 years old   Male              10th grade   1.78  66.68
## 3630             16 years old   Male              10th grade   1.78  81.19
## 3631             15 years old Female              10th grade   1.78  74.84
## 3632             17 years old   Male              11th grade   1.78  72.12
## 3633             14 years old   Male               9th grade   1.78  63.50
## 3634             17 years old   Male              11th grade   1.78  81.65
## 3635    18 years old or older   Male              12th grade   1.78  54.43
## 3636    18 years old or older   Male              12th grade   1.78 108.86
## 3637             17 years old   Male              12th grade   1.78  62.60
## 3638    18 years old or older   Male              12th grade   1.78  70.31
## 3639             15 years old   Male              10th grade   1.78  56.70
## 3640    18 years old or older   Male              12th grade   1.78  74.84
## 3641             16 years old   Male              10th grade   1.78  66.68
## 3642    18 years old or older   Male              12th grade   1.78  73.03
## 3643             15 years old   Male               9th grade   1.78  68.04
## 3644             15 years old   Male              10th grade   1.78  85.73
## 3645             15 years old   Male               9th grade   1.78  77.11
## 3646             17 years old   Male              11th grade   1.78  77.11
## 3647             14 years old   Male               9th grade   1.78  81.65
## 3648    18 years old or older Female              12th grade   1.78  62.60
## 3649             14 years old   Male               9th grade   1.78  79.83
## 3650             14 years old   Male               9th grade   1.78  58.97
## 3651             17 years old   Male              11th grade   1.78 108.86
## 3652             17 years old   Male              11th grade   1.78  72.58
## 3653             14 years old   Male               9th grade   1.78  83.92
## 3654             15 years old   Male              10th grade   1.78 113.40
## 3655             15 years old   Male               9th grade   1.78 113.40
## 3656             17 years old   Male              11th grade   1.78  54.43
## 3657             15 years old   Male              10th grade   1.78  60.78
## 3658             17 years old Female              12th grade   1.78  80.74
## 3659             14 years old Female               9th grade   1.78 107.05
## 3660             17 years old   Male              12th grade   1.78 108.86
## 3661    18 years old or older   Male              12th grade   1.78  86.18
## 3662             16 years old   Male              11th grade   1.78  96.16
## 3663             17 years old   Male              11th grade   1.78  63.50
## 3664             16 years old   Male              10th grade   1.78  97.07
## 3665             16 years old   Male              10th grade   1.78  92.99
## 3666             17 years old   Male              12th grade   1.78  79.38
## 3667             15 years old   Male               9th grade   1.78 113.40
## 3668    18 years old or older   Male              12th grade   1.78 106.60
## 3669             15 years old   Male               9th grade   1.78  68.04
## 3670             15 years old   Male               9th grade   1.78  79.38
## 3671    18 years old or older   Male              12th grade   1.78  81.65
## 3672             15 years old   Male               9th grade   1.78  61.24
## 3673             16 years old Female              10th grade   1.78  58.97
## 3674    18 years old or older   Male              12th grade   1.78  74.84
## 3675             15 years old   Male               9th grade   1.78  64.41
## 3676    18 years old or older   Male              12th grade   1.78 104.33
## 3677             17 years old   Male              11th grade   1.78  61.24
## 3678             17 years old   Male              11th grade   1.78 144.24
## 3679             15 years old   Male               9th grade   1.78  61.69
## 3680             15 years old   Male              11th grade   1.78  65.77
## 3681             16 years old   Male              10th grade   1.78 109.77
## 3682             17 years old   Male              11th grade   1.78  86.18
## 3683             15 years old   Male               9th grade   1.78  65.77
## 3684             17 years old   Male              12th grade   1.78  81.65
## 3685             15 years old   Male              10th grade   1.78  73.94
## 3686             17 years old   Male              12th grade   1.78  79.38
## 3687             15 years old   Male               9th grade   1.78  69.85
## 3688             14 years old Female               9th grade   1.78  74.84
## 3689             14 years old   Male               9th grade   1.78  69.85
## 3690             16 years old   Male              10th grade   1.78  65.77
## 3691             15 years old   Male               9th grade   1.78  49.44
## 3692             17 years old   Male              12th grade   1.78  88.45
## 3693             15 years old Female               9th grade   1.78  89.36
## 3694             16 years old   Male              10th grade   1.78  67.13
## 3695             15 years old   Male               9th grade   1.78  95.26
## 3696             17 years old   Male              11th grade   1.78  74.39
## 3697             16 years old   Male              10th grade   1.78  71.67
## 3698             17 years old   Male              11th grade   1.78 108.86
## 3699             15 years old   Male              10th grade   1.78  54.43
## 3700             15 years old   Male              10th grade   1.78 104.33
## 3701             16 years old   Male               9th grade   1.78  70.31
## 3702             15 years old   Male               9th grade   1.78  58.97
## 3703             17 years old   Male              12th grade   1.78 176.45
## 3704             16 years old   Male              10th grade   1.78 117.94
## 3705             17 years old   Male              11th grade   1.78  72.58
## 3706    18 years old or older   Male              12th grade   1.78  81.65
## 3707             17 years old Female              11th grade   1.78  67.59
## 3708             16 years old   Male              11th grade   1.78  63.50
## 3709             17 years old   Male              11th grade   1.78 106.60
## 3710             16 years old   Male              10th grade   1.78  65.77
## 3711             17 years old   Male              12th grade   1.78  89.81
## 3712             15 years old   Male               9th grade   1.78  66.68
## 3713    18 years old or older   Male              12th grade   1.78  86.18
## 3714    18 years old or older   Male              12th grade   1.78  96.62
## 3715             16 years old   Male               9th grade   1.78  65.77
## 3716             14 years old   Male               9th grade   1.78  99.79
## 3717             16 years old   Male              11th grade   1.78  57.61
## 3718             16 years old   Male              10th grade   1.78  68.04
## 3719             15 years old   Male              10th grade   1.78  70.31
## 3720             16 years old   Male              10th grade   1.78  59.42
## 3721             17 years old   Male              11th grade   1.78  63.50
## 3722             16 years old   Male              10th grade   1.78  68.04
## 3723             16 years old   Male              10th grade   1.78  63.50
## 3724             16 years old   Male              10th grade   1.78  56.70
## 3725             15 years old   Male               9th grade   1.78  79.38
## 3726             16 years old   Male              10th grade   1.78 131.09
## 3727             15 years old   Male               9th grade   1.78 115.21
## 3728             15 years old   Male               9th grade   1.78  69.85
## 3729             15 years old   Male               9th grade   1.78 144.70
## 3730             17 years old   Male              11th grade   1.78  73.48
## 3731             16 years old   Male              10th grade   1.78  68.04
## 3732             17 years old   Male              11th grade   1.78  79.38
## 3733    18 years old or older   Male              12th grade   1.78 100.70
## 3734             15 years old   Male               9th grade   1.78  70.31
## 3735             15 years old   Male               9th grade   1.78  65.32
## 3736             16 years old Female              10th grade   1.78  75.30
## 3737             17 years old   Male              11th grade   1.78  76.66
## 3738             14 years old   Male               9th grade   1.78  65.77
## 3739             16 years old   Male               9th grade   1.78  61.24
## 3740             15 years old   Male               9th grade   1.78  62.60
## 3741    18 years old or older   Male              12th grade   1.78  80.74
## 3742             16 years old   Male              10th grade   1.78  63.50
## 3743             17 years old   Male              11th grade   1.78  99.79
## 3744    18 years old or older Female              12th grade   1.78  75.30
## 3745             17 years old   Male              11th grade   1.78 104.33
## 3746             15 years old   Male              10th grade   1.78  78.47
## 3747             16 years old Female              10th grade   1.78  54.43
## 3748    18 years old or older   Male              12th grade   1.78  63.50
## 3749             16 years old   Male              11th grade   1.78  93.44
## 3750             17 years old   Male              12th grade   1.78  86.18
## 3751             17 years old   Male              11th grade   1.78  74.84
## 3752    18 years old or older   Male              12th grade   1.78  86.18
## 3753    18 years old or older   Male              12th grade   1.78  74.84
## 3754             17 years old   Male              11th grade   1.78  70.31
## 3755             17 years old Female              10th grade   1.78 106.60
## 3756             16 years old   Male              10th grade   1.78  79.38
## 3757             17 years old Female              11th grade   1.78  85.28
## 3758    18 years old or older   Male              12th grade   1.78  65.77
## 3759             16 years old   Male              10th grade   1.78  77.11
## 3760    18 years old or older Female              12th grade   1.78  68.04
## 3761             15 years old   Male               9th grade   1.78  65.77
## 3762             17 years old Female              11th grade   1.78  86.18
## 3763             14 years old   Male               9th grade   1.78  56.70
## 3764             17 years old   Male              11th grade   1.78  77.11
## 3765    18 years old or older   Male              12th grade   1.78  84.37
## 3766    18 years old or older Female              11th grade   1.78 154.22
## 3767             16 years old   Male              11th grade   1.78  78.47
## 3768             16 years old   Male              11th grade   1.78  65.77
## 3769    18 years old or older   Male              12th grade   1.78  67.13
## 3770             16 years old   Male              11th grade   1.78  82.10
## 3771    18 years old or older   Male              12th grade   1.78  71.22
## 3772             16 years old   Male              10th grade   1.78  72.58
## 3773             17 years old   Male              11th grade   1.78  88.45
## 3774    18 years old or older   Male              11th grade   1.78  58.97
## 3775             15 years old   Male              10th grade   1.78  61.24
## 3776             17 years old   Male              11th grade   1.78  65.77
## 3777             15 years old   Male               9th grade   1.78  61.24
## 3778             17 years old   Male              11th grade   1.78  87.09
## 3779             16 years old   Male              10th grade   1.78  65.77
## 3780             15 years old Female               9th grade   1.78  68.04
## 3781             17 years old   Male              11th grade   1.78  70.31
## 3782             16 years old   Male              10th grade   1.78 104.33
## 3783             15 years old   Male              10th grade   1.78  74.84
## 3784             15 years old   Male               9th grade   1.78  63.50
## 3785             15 years old   Male               9th grade   1.78  65.77
## 3786             15 years old   Male              10th grade   1.78  77.57
## 3787    18 years old or older   Male              12th grade   1.78  63.50
## 3788             15 years old   Male              10th grade   1.78  55.34
## 3789             15 years old Female               9th grade   1.78  81.65
## 3790             17 years old   Male              12th grade   1.78  70.76
## 3791             15 years old   Male               9th grade   1.78  68.04
## 3792             15 years old   Male               9th grade   1.78  69.85
## 3793             16 years old   Male              10th grade   1.78  61.24
## 3794             16 years old   Male              11th grade   1.78  88.45
## 3795             16 years old   Male              10th grade   1.78  61.24
## 3796             17 years old   Male              12th grade   1.78  90.72
## 3797             14 years old   Male               9th grade   1.78 119.30
## 3798             15 years old   Male              10th grade   1.78  80.74
## 3799             17 years old   Male              11th grade   1.78  68.04
## 3800             14 years old   Male               9th grade   1.78  63.50
## 3801             17 years old   Male              12th grade   1.78  61.24
## 3802             15 years old   Male               9th grade   1.78  77.11
## 3803             17 years old   Male              11th grade   1.78 102.06
## 3804             15 years old   Male               9th grade   1.78  81.65
## 3805             17 years old   Male              12th grade   1.78  84.37
## 3806             17 years old   Male              11th grade   1.78  65.77
## 3807             15 years old   Male               9th grade   1.78  89.81
## 3808             14 years old   Male               9th grade   1.78  73.48
## 3809             17 years old   Male              11th grade   1.78  72.12
## 3810             14 years old   Male               9th grade   1.78  58.97
## 3811             17 years old   Male              11th grade   1.78  61.24
## 3812             17 years old Female              12th grade   1.78  63.50
## 3813    18 years old or older   Male              12th grade   1.78  56.70
## 3814             14 years old   Male               9th grade   1.78  88.45
## 3815             15 years old   Male               9th grade   1.78  55.79
## 3816             15 years old   Male               9th grade   1.78  72.58
## 3817             16 years old   Male              10th grade   1.78  63.50
## 3818             15 years old   Male               9th grade   1.78  58.97
## 3819             15 years old   Male               9th grade   1.78  90.72
## 3820             17 years old   Male              12th grade   1.78 116.12
## 3821             16 years old   Male              11th grade   1.78  79.38
## 3822             15 years old Female               9th grade   1.78 145.15
## 3823             16 years old Female              11th grade   1.78  65.77
## 3824             15 years old   Male               9th grade   1.78  58.97
## 3825             15 years old   Male               9th grade   1.78  90.72
## 3826             17 years old   Male              11th grade   1.78 111.13
## 3827    18 years old or older   Male                    <NA>   1.78  70.76
## 3828             14 years old   Male               9th grade   1.78  53.52
## 3829    18 years old or older   Male              12th grade   1.78 158.76
## 3830             15 years old   Male              10th grade   1.78  70.31
## 3831             14 years old   Male               9th grade   1.78  65.77
## 3832    18 years old or older   Male              12th grade   1.78  68.04
## 3833             17 years old   Male              12th grade   1.78  53.52
## 3834             15 years old   Male              10th grade   1.78  68.95
## 3835             15 years old   Male               9th grade   1.78  60.78
## 3836             16 years old   Male              11th grade   1.78  70.31
## 3837             16 years old   Male              11th grade   1.78  90.72
## 3838             16 years old   Male              11th grade   1.78  58.97
## 3839    18 years old or older   Male              12th grade   1.78  81.65
## 3840             17 years old   Male              11th grade   1.78  94.80
## 3841             16 years old   Male              10th grade   1.78  49.44
## 3842             15 years old   Male               9th grade   1.78  64.86
## 3843             17 years old Female              11th grade   1.78  83.92
## 3844             17 years old   Male              12th grade   1.78  68.04
## 3845             15 years old   Male              10th grade   1.78  68.04
## 3846             17 years old   Male              12th grade   1.78  70.31
## 3847             16 years old   Male              11th grade   1.78  48.54
## 3848             16 years old   Male              11th grade   1.78  59.88
## 3849             15 years old Female               9th grade   1.78  73.94
## 3850             14 years old   Male               9th grade   1.78  59.88
## 3851             17 years old   Male              12th grade   1.78  83.92
## 3852             17 years old   Male              12th grade   1.78  88.45
## 3853             16 years old   Male              10th grade   1.78  72.58
## 3854             15 years old   Male              10th grade   1.78  65.77
## 3855    18 years old or older   Male              12th grade   1.78  77.11
## 3856             16 years old   Male              11th grade   1.78 111.13
## 3857             16 years old   Male              10th grade   1.78  56.25
## 3858             16 years old   Male              10th grade   1.78  99.79
## 3859             16 years old   Male              10th grade   1.78  63.50
## 3860             15 years old   Male              10th grade   1.78  63.50
## 3861    18 years old or older   Male              12th grade   1.78  79.38
## 3862             17 years old   Male              12th grade   1.78  61.24
## 3863    18 years old or older   Male              12th grade   1.78  59.88
## 3864             17 years old Female              11th grade   1.78  71.67
## 3865             16 years old   Male              11th grade   1.78  70.31
## 3866             17 years old   Male              11th grade   1.78  79.38
## 3867             17 years old   Male              11th grade   1.78  72.58
## 3868             15 years old   Male              10th grade   1.78  67.13
## 3869             15 years old   Male              10th grade   1.78  78.93
## 3870             14 years old   Male               9th grade   1.78  63.50
## 3871             17 years old   Male              11th grade   1.78  71.22
## 3872             16 years old Female              11th grade   1.78  56.25
## 3873             16 years old   Male              10th grade   1.78  61.24
## 3874             14 years old   Male               9th grade   1.78  77.11
## 3875             15 years old   Male               9th grade   1.78 111.13
## 3876             15 years old   Male               9th grade   1.78  46.27
## 3877             17 years old Female              10th grade   1.78  97.52
## 3878             15 years old   Male               9th grade   1.78  73.94
## 3879             15 years old   Male               9th grade   1.78  95.26
## 3880             15 years old   Male              10th grade   1.78  67.13
## 3881             17 years old   Male              11th grade   1.78  99.79
## 3882             17 years old   Male              11th grade   1.78  95.26
## 3883    18 years old or older   Male              12th grade   1.78  72.58
## 3884    18 years old or older   Male              12th grade   1.78  74.84
## 3885    18 years old or older   Male              12th grade   1.78  65.77
## 3886             16 years old   Male              10th grade   1.78  74.84
## 3887             15 years old   Male              10th grade   1.78  74.84
## 3888             15 years old   Male              10th grade   1.78  54.89
## 3889    18 years old or older   Male              12th grade   1.78  78.47
## 3890             16 years old   Male              11th grade   1.78 131.54
## 3891    18 years old or older   Male              12th grade   1.78  96.16
## 3892             14 years old   Male               9th grade   1.78  61.24
## 3893             15 years old   Male              10th grade   1.78 129.73
## 3894             17 years old   Male              12th grade   1.78 117.94
## 3895             14 years old Female               9th grade   1.78  60.33
## 3896             15 years old   Male               9th grade   1.78  65.32
## 3897             15 years old   Male               9th grade   1.78  73.94
## 3898             15 years old   Male              10th grade   1.78  58.97
## 3899             15 years old   Male              10th grade   1.78  81.65
## 3900             15 years old   Male              10th grade   1.78  88.00
## 3901             16 years old   Male              10th grade   1.78  54.43
## 3902             16 years old   Male              10th grade   1.78  63.50
## 3903             16 years old   Male              10th grade   1.78  92.99
## 3904             15 years old   Male              10th grade   1.78  77.11
## 3905             16 years old   Male              10th grade   1.78  62.14
## 3906             17 years old   Male              11th grade   1.78  65.77
## 3907             17 years old   Male              11th grade   1.78  99.79
## 3908    18 years old or older   Male              12th grade   1.78  78.02
## 3909             17 years old   Male              12th grade   1.78  72.58
## 3910             16 years old   Male              11th grade   1.78  70.31
## 3911             17 years old   Male              11th grade   1.78  66.68
## 3912             15 years old Female               9th grade   1.78  68.04
## 3913             14 years old Female               9th grade   1.78  58.97
## 3914             14 years old Female               9th grade   1.78  59.88
## 3915             14 years old   Male               9th grade   1.78  67.59
## 3916             14 years old   Male               9th grade   1.78  58.97
## 3917             16 years old Female                    <NA>   1.78  84.82
## 3918             16 years old   Male              10th grade   1.78  65.77
## 3919             15 years old   Male              10th grade   1.78  84.82
## 3920             15 years old   Male              10th grade   1.78  57.61
## 3921             15 years old   Male              10th grade   1.78  83.92
## 3922             15 years old   Male              10th grade   1.78  58.97
## 3923             16 years old   Male              11th grade   1.78  56.70
## 3924             16 years old   Male              11th grade   1.78  63.05
## 3925             17 years old   Male              11th grade   1.78  77.11
## 3926             17 years old Female              11th grade   1.78  68.04
## 3927             16 years old   Male              11th grade   1.78  57.61
## 3928             16 years old Female              11th grade   1.78  54.43
## 3929             16 years old   Male              11th grade   1.78  77.11
## 3930             16 years old   Male              11th grade   1.78  63.50
## 3931             17 years old   Male              11th grade   1.78  69.40
## 3932    18 years old or older Female              12th grade   1.78  57.61
## 3933    18 years old or older   Male              12th grade   1.78  72.58
## 3934             17 years old   Male              12th grade   1.78  63.50
## 3935             13 years old   Male               9th grade   1.78  77.11
## 3936             14 years old   Male               9th grade   1.78  66.68
## 3937             15 years old   Male               9th grade   1.78  77.11
## 3938             15 years old   Male               9th grade   1.78  72.58
## 3939             15 years old Female               9th grade   1.78  68.04
## 3940             15 years old   Male              10th grade   1.78  99.79
## 3941             15 years old   Male              10th grade   1.78  95.26
## 3942             15 years old   Male              10th grade   1.78  61.24
## 3943             16 years old   Male              11th grade   1.78  84.82
## 3944             16 years old Female              11th grade   1.78  70.31
## 3945             17 years old Female              11th grade   1.78  61.24
## 3946             16 years old   Male              11th grade   1.78  95.26
## 3947             16 years old   Male              10th grade   1.78  83.92
## 3948             16 years old   Male                    <NA>   1.78  61.24
## 3949             16 years old   Male              11th grade   1.78  72.58
## 3950             17 years old   Male              11th grade   1.78  78.47
## 3951             16 years old   Male              11th grade   1.78  83.92
## 3952             16 years old   Male              11th grade   1.78  75.75
## 3953             17 years old Female              11th grade   1.78  81.65
## 3954    18 years old or older   Male              12th grade   1.78  92.99
## 3955             17 years old Female              12th grade   1.78  90.72
## 3956             17 years old   Male              12th grade   1.78  70.31
## 3957             15 years old   Male               9th grade   1.78  90.72
## 3958             14 years old   Male               9th grade   1.78  63.50
## 3959             15 years old   Male               9th grade   1.78  55.79
## 3960             15 years old   Male               9th grade   1.78  61.24
## 3961             16 years old   Male              10th grade   1.78  72.58
## 3962             15 years old   Male              10th grade   1.78 104.33
## 3963             15 years old   Male              10th grade   1.78  52.16
## 3964             16 years old   Male              11th grade   1.78 107.50
## 3965             17 years old   Male              11th grade   1.78  68.04
## 3966             16 years old   Male              11th grade   1.78  70.31
## 3967    18 years old or older   Male              12th grade   1.78  95.26
## 3968             16 years old Female              10th grade   1.78 124.74
## 3969             16 years old   Male              11th grade   1.78  78.47
## 3970             15 years old   Male               9th grade   1.78  90.27
## 3971             14 years old   Male               9th grade   1.78  61.24
## 3972             14 years old   Male               9th grade   1.78  63.50
## 3973             15 years old   Male              10th grade   1.78  56.70
## 3974             16 years old   Male              11th grade   1.78  61.24
## 3975             16 years old   Male              11th grade   1.78  65.77
## 3976    18 years old or older   Male              12th grade   1.78  63.96
## 3977    18 years old or older   Male                    <NA>   1.78  90.72
## 3978             17 years old   Male              12th grade   1.78  95.26
## 3979             16 years old   Male              10th grade   1.78 101.15
## 3980             15 years old   Male              10th grade   1.78  86.18
## 3981    18 years old or older   Male              11th grade   1.78  65.77
## 3982             16 years old   Male              11th grade   1.78  63.50
## 3983             16 years old   Male              11th grade   1.78  67.13
## 3984    18 years old or older   Male              12th grade   1.78  97.98
## 3985             14 years old   Male               9th grade   1.78  99.79
## 3986             16 years old   Male              10th grade   1.78  69.40
## 3987             16 years old Female              11th grade   1.78  68.04
## 3988             16 years old   Male              11th grade   1.78  58.97
## 3989             15 years old   Male               9th grade   1.78  90.72
## 3990             17 years old   Male              11th grade   1.78  65.77
## 3991             16 years old Female              11th grade   1.78  54.43
## 3992             17 years old   Male              12th grade   1.78  89.36
## 3993             17 years old   Male              12th grade   1.78  81.65
## 3994             14 years old   Male               9th grade   1.78  66.68
## 3995             13 years old   Male               9th grade   1.78  83.92
## 3996             16 years old   Male              11th grade   1.78  54.43
## 3997             17 years old   Male              11th grade   1.78  83.92
## 3998             17 years old   Male              11th grade   1.78  56.70
## 3999             16 years old   Male              11th grade   1.78  56.70
## 4000             16 years old   Male              10th grade   1.78  62.14
## 4001             16 years old   Male              11th grade   1.78  74.84
## 4002             16 years old   Male              11th grade   1.78  47.63
## 4003             16 years old   Male              11th grade   1.78  72.58
## 4004             16 years old   Male              11th grade   1.78  52.16
## 4005             15 years old   Male              10th grade   1.78  62.60
## 4006             15 years old   Male              10th grade   1.78  66.68
## 4007             16 years old   Male              11th grade   1.78  68.95
## 4008             17 years old   Male              12th grade   1.78  72.58
## 4009             17 years old   Male              12th grade   1.78  61.24
## 4010    18 years old or older   Male              12th grade   1.78  72.58
## 4011             15 years old   Male              10th grade   1.78  61.24
## 4012             17 years old   Male              11th grade   1.78  69.40
## 4013             16 years old Female              11th grade   1.78  63.50
## 4014    18 years old or older   Male              12th grade   1.78  97.52
## 4015             15 years old   Male              10th grade   1.78  60.78
## 4016             15 years old   Male              10th grade   1.78  58.97
## 4017             16 years old Female              11th grade   1.78  65.77
## 4018             15 years old   Male              10th grade   1.78  63.50
## 4019             16 years old   Male              11th grade   1.78  57.15
## 4020             15 years old   Male              10th grade   1.78  63.50
## 4021             17 years old   Male              11th grade   1.78  49.90
## 4022             14 years old   Male               9th grade   1.78  49.90
## 4023             14 years old   Male               9th grade   1.78  54.43
## 4024             16 years old   Male              11th grade   1.78  70.31
## 4025             17 years old   Male              12th grade   1.78  99.79
## 4026             15 years old   Male              10th grade   1.78  82.56
## 4027             17 years old   Male              12th grade   1.78  67.59
## 4028             15 years old   Male              10th grade   1.78  65.77
## 4029    18 years old or older   Male              12th grade   1.78  89.36
## 4030             17 years old   Male              12th grade   1.78  63.50
## 4031             15 years old   Male              10th grade   1.78  90.72
## 4032             15 years old   Male               9th grade   1.78  61.24
## 4033             16 years old   Male              11th grade   1.78  79.38
## 4034             15 years old   Male              10th grade   1.78  78.93
## 4035             15 years old   Male              10th grade   1.78  80.74
## 4036             17 years old   Male              12th grade   1.78  61.24
## 4037             15 years old   Male              10th grade   1.78  77.11
## 4038             15 years old   Male              10th grade   1.78 117.94
## 4039             16 years old   Male              11th grade   1.78  65.77
## 4040             16 years old   Male              11th grade   1.78  72.58
## 4041             17 years old   Male              11th grade   1.78  63.50
## 4042             16 years old   Male              11th grade   1.78  77.11
## 4043             16 years old   Male              11th grade   1.78  72.58
## 4044             14 years old   Male               9th grade   1.78  72.58
## 4045             17 years old   Male              12th grade   1.78  56.70
## 4046             15 years old   Male               9th grade   1.78  63.50
## 4047             15 years old   Male              10th grade   1.78  68.95
## 4048             16 years old   Male              10th grade   1.78  77.11
## 4049             15 years old   Male              10th grade   1.78  68.04
## 4050             14 years old   Male               9th grade   1.78  77.11
## 4051             17 years old   Male              10th grade   1.78  95.26
## 4052             15 years old   Male              10th grade   1.78  78.47
## 4053             16 years old   Male              11th grade   1.78  68.04
## 4054    18 years old or older   Male              12th grade   1.78  77.11
## 4055             16 years old Female              10th grade   1.78  68.04
## 4056             14 years old Female               9th grade   1.78  59.88
## 4057             14 years old   Male               9th grade   1.78  56.25
## 4058             17 years old   Male              11th grade   1.78  68.04
## 4059             14 years old   Male               9th grade   1.78 110.68
## 4060             15 years old   Male              10th grade   1.78  59.88
## 4061             16 years old   Male              11th grade   1.78  95.26
## 4062             15 years old   Male              10th grade   1.78  54.43
## 4063             15 years old   Male              10th grade   1.78  61.24
## 4064             15 years old   Male              10th grade   1.78  65.77
## 4065             15 years old   Male              10th grade   1.78  86.18
## 4066             15 years old   Male              10th grade   1.78  77.11
## 4067             15 years old   Male              10th grade   1.78  53.07
## 4068             14 years old   Male               9th grade   1.78  81.19
## 4069             14 years old   Male               9th grade   1.78  83.92
## 4070             14 years old Female               9th grade   1.78  83.92
## 4071             16 years old   Male              11th grade   1.78  54.43
## 4072             17 years old   Male              12th grade   1.78  61.24
## 4073             14 years old   Male               9th grade   1.78  78.47
## 4074             14 years old   Male               9th grade   1.78  69.40
## 4075             14 years old   Male               9th grade   1.78  70.31
## 4076             14 years old   Male               9th grade   1.78  65.77
## 4077             16 years old   Male              10th grade   1.78  62.60
## 4078             15 years old   Male              10th grade   1.78  58.97
## 4079             14 years old   Male               9th grade   1.78  83.92
## 4080             17 years old   Male              11th grade   1.78  72.58
## 4081             17 years old   Male              12th grade   1.78  64.86
## 4082             15 years old   Male              10th grade   1.78  54.43
## 4083    18 years old or older   Male              12th grade   1.78  58.97
## 4084             16 years old   Male              11th grade   1.78  75.30
## 4085             16 years old   Male              11th grade   1.78  68.04
## 4086             15 years old   Male              10th grade   1.78  86.18
## 4087             15 years old   Male               9th grade   1.78  61.24
## 4088             14 years old   Male               9th grade   1.78  61.69
## 4089             15 years old   Male              10th grade   1.78  49.90
## 4090             15 years old   Male              10th grade   1.78  61.24
## 4091             15 years old   Male              10th grade   1.78  61.24
## 4092             16 years old   Male              11th grade   1.78  74.84
## 4093             15 years old   Male              10th grade   1.78  66.68
## 4094             16 years old   Male              11th grade   1.78  65.77
## 4095             16 years old   Male              11th grade   1.78  65.77
## 4096             17 years old   Male              12th grade   1.78 101.61
## 4097             17 years old   Male              12th grade   1.78  68.04
## 4098             16 years old   Male              11th grade   1.78  78.93
## 4099             16 years old   Male              11th grade   1.78  86.18
## 4100             15 years old Female              10th grade   1.78  63.50
## 4101             15 years old   Male              10th grade   1.78  63.50
## 4102             16 years old   Male              11th grade   1.78  65.77
## 4103             16 years old   Male              11th grade   1.78  79.38
## 4104             15 years old   Male              10th grade   1.78  61.24
## 4105             14 years old   Male               9th grade   1.78  63.50
## 4106             16 years old   Male              10th grade   1.78  63.50
## 4107             14 years old   Male              10th grade   1.78  77.57
## 4108             17 years old   Male              12th grade   1.78  74.84
## 4109             16 years old   Male              11th grade   1.78  56.70
## 4110             16 years old Female              11th grade   1.78  56.70
## 4111             16 years old   Male              10th grade   1.78  88.45
## 4112             16 years old   Male              11th grade   1.78  58.97
## 4113             15 years old   Male               9th grade   1.78  76.66
## 4114             17 years old   Male              12th grade   1.78  74.84
## 4115             17 years old   Male              11th grade   1.78  92.99
## 4116             17 years old   Male              11th grade   1.78  72.58
## 4117             17 years old Female              11th grade   1.78  77.11
## 4118             17 years old Female              11th grade   1.78  65.77
## 4119             15 years old   Male              10th grade   1.78 122.47
## 4120             15 years old   Male              10th grade   1.78  63.50
## 4121             14 years old   Male               9th grade   1.78  76.66
## 4122             15 years old   Male              10th grade   1.78  68.04
## 4123             15 years old   Male              10th grade   1.78  60.78
## 4124             14 years old   Male               9th grade   1.78  76.66
## 4125             15 years old   Male              10th grade   1.78  79.83
## 4126             16 years old   Male              11th grade   1.78  65.77
## 4127             17 years old   Male              11th grade   1.78  63.50
## 4128             14 years old   Male               9th grade   1.78  68.04
## 4129             15 years old   Male              11th grade   1.78  63.50
## 4130             15 years old   Male               9th grade   1.78  74.84
## 4131             17 years old   Male              12th grade   1.78  65.77
## 4132             16 years old   Male              10th grade   1.78  90.72
## 4133             16 years old   Male              10th grade   1.78  58.97
## 4134             14 years old   Male               9th grade   1.78  81.65
## 4135    18 years old or older   Male              12th grade   1.78  72.58
## 4136    18 years old or older   Male              12th grade   1.78  72.58
## 4137    18 years old or older   Male              12th grade   1.78  70.31
## 4138             17 years old   Male              11th grade   1.78 131.54
## 4139             17 years old   Male              11th grade   1.78 122.47
## 4140             16 years old   Male              11th grade   1.78  72.58
## 4141             17 years old   Male              11th grade   1.78  83.01
## 4142             17 years old   Male              11th grade   1.78  72.58
## 4143             17 years old   Male              11th grade   1.78  74.84
## 4144             15 years old   Male              10th grade   1.78  64.86
## 4145             15 years old   Male              10th grade   1.78  74.84
## 4146             15 years old   Male              10th grade   1.78  90.72
## 4147             15 years old   Male              10th grade   1.78  68.04
## 4148             14 years old   Male               9th grade   1.78  54.43
## 4149             16 years old Female              10th grade   1.78  69.85
## 4150             16 years old   Male              10th grade   1.78  91.17
## 4151             16 years old   Male              10th grade   1.78  68.04
## 4152             16 years old   Male              11th grade   1.78  70.31
## 4153             17 years old   Male              11th grade   1.78  77.11
## 4154             14 years old   Male               9th grade   1.78  64.41
## 4155             15 years old   Male               9th grade   1.78  65.77
## 4156             14 years old   Male               9th grade   1.78  81.65
## 4157             15 years old   Male               9th grade   1.78  61.24
## 4158             14 years old   Male               9th grade   1.78 113.40
## 4159    18 years old or older Female              12th grade   1.78  52.16
## 4160             17 years old   Male              12th grade   1.78  70.31
## 4161             16 years old Female              10th grade   1.78  57.61
## 4162             15 years old Female              10th grade   1.78  68.04
## 4163             16 years old   Male              11th grade   1.78  92.08
## 4164             16 years old Female              10th grade   1.78  74.84
## 4165             16 years old   Male              11th grade   1.78  64.41
## 4166    18 years old or older   Male              12th grade   1.78  74.84
## 4167             14 years old   Male               9th grade   1.78  72.58
## 4168             14 years old   Male               9th grade   1.78  60.33
## 4169             15 years old   Male               9th grade   1.78  57.61
## 4170             17 years old   Male              12th grade   1.78  58.97
## 4171    18 years old or older Female              12th grade   1.78  61.24
## 4172    18 years old or older   Male              12th grade   1.78  68.04
## 4173             16 years old   Male              11th grade   1.78  79.38
## 4174             17 years old   Male              11th grade   1.78  68.95
## 4175             16 years old   Male              10th grade   1.78  61.24
## 4176             16 years old   Male              10th grade   1.78  83.92
## 4177             15 years old   Male               9th grade   1.78  68.04
## 4178    18 years old or older   Male              12th grade   1.78  72.58
## 4179             15 years old   Male              10th grade   1.78  63.50
## 4180             16 years old   Male              10th grade   1.78  81.65
## 4181             16 years old   Male              10th grade   1.78  63.50
## 4182    18 years old or older   Male              12th grade   1.78  72.58
## 4183             17 years old   Male              12th grade   1.78  72.58
## 4184             17 years old   Male              12th grade   1.78  90.72
## 4185             17 years old   Male              12th grade   1.78 120.20
## 4186             15 years old   Male               9th grade   1.78  63.50
## 4187             17 years old Female              12th grade   1.78  79.38
## 4188             16 years old   Male              10th grade   1.78  70.31
## 4189             17 years old   Male              11th grade   1.78  68.95
## 4190             16 years old   Male              10th grade   1.78 142.88
## 4191             15 years old   Male              10th grade   1.78  62.60
## 4192             16 years old   Male              11th grade   1.78  80.74
## 4193             17 years old   Male              11th grade   1.78  68.04
## 4194             16 years old Female              11th grade   1.78  56.70
## 4195             16 years old   Male              11th grade   1.78 133.81
## 4196    18 years old or older   Male              12th grade   1.78  62.14
## 4197             17 years old   Male              12th grade   1.78  63.50
## 4198             15 years old   Male               9th grade   1.78  63.50
## 4199             15 years old   Male              10th grade   1.78  63.50
## 4200             16 years old   Male              10th grade   1.78  79.38
## 4201             17 years old   Male              12th grade   1.78  83.92
## 4202             16 years old   Male              11th grade   1.78  56.70
## 4203    18 years old or older   Male              12th grade   1.78  77.11
## 4204    18 years old or older   Male              12th grade   1.78 104.33
## 4205             17 years old   Male              11th grade   1.78  67.13
## 4206    18 years old or older   Male              12th grade   1.78  65.77
## 4207             17 years old   Male              12th grade   1.78  90.72
## 4208             17 years old   Male              11th grade   1.78  90.72
## 4209             16 years old   Male              11th grade   1.78  81.65
## 4210             15 years old   Male              10th grade   1.78 108.86
## 4211             17 years old   Male              11th grade   1.78  90.72
## 4212             15 years old   Male               9th grade   1.78  63.50
## 4213             17 years old   Male              11th grade   1.78  63.50
## 4214             15 years old   Male               9th grade   1.78  81.65
## 4215             15 years old   Male               9th grade   1.78  89.36
## 4216             15 years old   Male              10th grade   1.78 120.20
## 4217             17 years old   Male              12th grade   1.78  68.04
## 4218             17 years old   Male              11th grade   1.78  63.50
## 4219             16 years old Female              11th grade   1.78  76.20
## 4220             16 years old   Male              11th grade   1.78  65.77
## 4221             15 years old   Male              10th grade   1.78  92.99
## 4222             16 years old   Male              11th grade   1.78  54.43
## 4223             16 years old   Male              11th grade   1.78  58.51
## 4224             15 years old   Male               9th grade   1.78  54.43
## 4225    18 years old or older Female              12th grade   1.78  83.92
## 4226             16 years old   Male              11th grade   1.78  90.72
## 4227             17 years old   Male              12th grade   1.78  72.58
## 4228             14 years old   Male               9th grade   1.78  68.04
## 4229             17 years old   Male              12th grade   1.78  67.13
## 4230             15 years old   Male              10th grade   1.78 104.33
## 4231             17 years old   Male              11th grade   1.78  81.65
## 4232             15 years old   Male              10th grade   1.78  90.72
## 4233             17 years old   Male              11th grade   1.78  74.84
## 4234             16 years old   Male              10th grade   1.78  74.84
## 4235             14 years old   Male               9th grade   1.78  68.04
## 4236             16 years old   Male              10th grade   1.78  45.36
## 4237             17 years old   Male              12th grade   1.78  90.72
## 4238             15 years old   Male               9th grade   1.78 104.33
## 4239             15 years old   Male              10th grade   1.78  72.58
## 4240             15 years old   Male               9th grade   1.78  95.26
## 4241             16 years old   Male              11th grade   1.78  68.04
## 4242             16 years old   Male              10th grade   1.78  65.77
## 4243             17 years old   Male              11th grade   1.78  90.72
## 4244             17 years old   Male              11th grade   1.78  72.58
## 4245             16 years old   Male              11th grade   1.78  71.67
## 4246             14 years old   Male               9th grade   1.78  64.86
## 4247             15 years old   Male              10th grade   1.78  56.70
## 4248             16 years old   Male              11th grade   1.78 131.09
## 4249             15 years old   Male               9th grade   1.78  74.39
## 4250             15 years old   Male              10th grade   1.78  70.31
## 4251             15 years old   Male               9th grade   1.78 113.40
## 4252             16 years old   Male              11th grade   1.78  72.58
## 4253             14 years old   Male               9th grade   1.78  95.26
## 4254             15 years old Female              10th grade   1.78  59.88
## 4255             14 years old   Male               9th grade   1.78  92.08
## 4256             17 years old   Male              12th grade   1.78  65.77
## 4257             16 years old   Male              11th grade   1.78 100.70
## 4258             16 years old   Male              11th grade   1.78  74.84
## 4259             17 years old   Male              11th grade   1.78  72.58
## 4260             16 years old   Male              10th grade   1.78  90.72
## 4261             15 years old   Male               9th grade   1.78  63.50
## 4262             14 years old   Male               9th grade   1.78  58.97
## 4263             15 years old   Male              10th grade   1.78  68.04
## 4264             17 years old   Male              11th grade   1.78 109.32
## 4265             14 years old   Male               9th grade   1.78  80.74
## 4266             16 years old   Male              10th grade   1.78  61.24
## 4267    18 years old or older   Male              12th grade   1.78  92.99
## 4268             15 years old   Male              10th grade   1.78  90.72
## 4269    18 years old or older Female              12th grade   1.78 107.50
## 4270             16 years old   Male              10th grade   1.78  54.43
## 4271    18 years old or older   Male Ungraded or other grade   1.78 105.69
## 4272             15 years old   Male               9th grade   1.78 113.40
## 4273             15 years old   Male               9th grade   1.78  72.58
## 4274             16 years old   Male              10th grade   1.78  47.63
## 4275             17 years old   Male              12th grade   1.78  94.35
## 4276             17 years old   Male              12th grade   1.78  55.79
## 4277             17 years old   Male              12th grade   1.78  77.11
## 4278             14 years old   Male               9th grade   1.78  59.42
## 4279             15 years old   Male               9th grade   1.78  64.41
## 4280             17 years old   Male              11th grade   1.78  81.65
## 4281             17 years old   Male              11th grade   1.78  49.90
## 4282             15 years old   Male               9th grade   1.78  70.31
## 4283             16 years old   Male              10th grade   1.78  79.83
## 4284             17 years old   Male              11th grade   1.78  86.18
## 4285             15 years old   Male               9th grade   1.78  90.72
## 4286             15 years old   Male               9th grade   1.78  68.04
## 4287             16 years old   Male              10th grade   1.78  69.40
## 4288             15 years old   Male               9th grade   1.78  58.06
## 4289             17 years old   Male              11th grade   1.78  79.38
## 4290             17 years old   Male              11th grade   1.78  79.83
## 4291             15 years old   Male              10th grade   1.78  87.54
## 4292             17 years old   Male              11th grade   1.78  81.65
## 4293             16 years old   Male              10th grade   1.78  72.58
## 4294             16 years old Female              10th grade   1.78  54.43
## 4295             15 years old   Male               9th grade   1.78  64.86
## 4296             15 years old   Male               9th grade   1.78  90.72
## 4297             15 years old   Male               9th grade   1.78  65.77
## 4298    18 years old or older   Male              12th grade   1.78  63.50
## 4299             17 years old   Male              11th grade   1.78  81.65
## 4300             16 years old   Male              11th grade   1.78  70.31
## 4301             17 years old   Male              11th grade   1.78  79.38
## 4302             16 years old   Male              11th grade   1.78 104.33
## 4303    18 years old or older   Male              11th grade   1.78 113.40
## 4304    18 years old or older   Male              12th grade   1.78  56.70
## 4305             16 years old   Male              10th grade   1.78  77.11
## 4306             16 years old   Male              10th grade   1.78  62.60
## 4307             15 years old   Male               9th grade   1.78  58.97
## 4308             15 years old Female               9th grade   1.78 136.08
## 4309             14 years old   Male               9th grade   1.78  62.14
## 4310             14 years old   Male               9th grade   1.78 111.13
## 4311             15 years old   Male               9th grade   1.78  85.73
## 4312             15 years old   Male               9th grade   1.78  68.04
## 4313             15 years old   Male               9th grade   1.78  65.77
## 4314             15 years old   Male               9th grade   1.78  63.50
## 4315             14 years old   Male               9th grade   1.78  63.50
## 4316             14 years old   Male               9th grade   1.78  58.97
## 4317             15 years old   Male               9th grade   1.78  90.72
## 4318             15 years old Female               9th grade   1.78  65.77
## 4319             14 years old Female               9th grade   1.78  68.04
## 4320             15 years old   Male               9th grade   1.78  45.36
## 4321             15 years old   Male               9th grade   1.78  90.72
## 4322             14 years old   Male               9th grade   1.78  73.48
## 4323             15 years old   Male               9th grade   1.78  68.04
## 4324             14 years old   Male               9th grade   1.78 113.40
## 4325             14 years old Female               9th grade   1.78  65.77
## 4326             15 years old   Male               9th grade   1.78 115.67
## 4327             15 years old   Male              10th grade   1.75  73.94
## 4328             17 years old Female              11th grade   1.75  74.84
## 4329             17 years old   Male              11th grade   1.75  63.50
## 4330             17 years old   Male              11th grade   1.75  83.92
## 4331             15 years old   Male               9th grade   1.75  72.58
## 4332             15 years old   Male               9th grade   1.75  61.24
## 4333             14 years old   Male               9th grade   1.75  65.77
## 4334             15 years old   Male              10th grade   1.75  65.77
## 4335             17 years old   Male              12th grade   1.75  90.72
## 4336             15 years old   Male               9th grade   1.75  58.51
## 4337             16 years old   Male              10th grade   1.75  97.52
## 4338             17 years old   Male              11th grade   1.75  68.04
## 4339             15 years old Female               9th grade   1.75  61.24
## 4340             15 years old   Male               9th grade   1.75 111.13
## 4341             17 years old   Male              11th grade   1.75  56.70
## 4342             16 years old   Male              10th grade   1.75  77.11
## 4343             16 years old   Male              10th grade   1.75  73.03
## 4344             15 years old   Male               9th grade   1.75  63.50
## 4345             15 years old Female               9th grade   1.75  92.53
## 4346             14 years old   Male               9th grade   1.75  68.04
## 4347             15 years old   Male               9th grade   1.75  62.14
## 4348             15 years old   Male               9th grade   1.75  61.24
## 4349             15 years old   Male              10th grade   1.75  90.72
## 4350             16 years old   Male              10th grade   1.75 106.60
## 4351             15 years old   Male              10th grade   1.75  74.84
## 4352    18 years old or older   Male              12th grade   1.75 101.15
## 4353    18 years old or older   Male              12th grade   1.75  68.04
## 4354             17 years old Female              12th grade   1.75  68.04
## 4355             17 years old   Male              11th grade   1.75  70.31
## 4356    18 years old or older   Male              12th grade   1.75  83.01
## 4357             17 years old   Male              11th grade   1.75  74.84
## 4358             15 years old Female               9th grade   1.75  68.95
## 4359             15 years old   Male              10th grade   1.75  67.13
## 4360    18 years old or older   Male              12th grade   1.75  87.54
## 4361             15 years old   Male               9th grade   1.75  79.38
## 4362             15 years old   Male               9th grade   1.75  63.50
## 4363             17 years old   Male              12th grade   1.75  68.04
## 4364    18 years old or older Female              12th grade   1.75  68.04
## 4365             14 years old   Male               9th grade   1.75  56.70
## 4366             16 years old   Male              11th grade   1.75  83.92
## 4367             17 years old   Male              12th grade   1.75  79.38
## 4368             17 years old   Male              12th grade   1.75  65.77
## 4369             16 years old   Male              11th grade   1.75  86.18
## 4370             16 years old Female              11th grade   1.75  79.38
## 4371             17 years old Female              11th grade   1.75  72.58
## 4372             17 years old   Male              11th grade   1.75  68.04
## 4373             17 years old   Male              11th grade   1.75  71.67
## 4374             17 years old   Male              11th grade   1.75  83.46
## 4375             16 years old   Male              10th grade   1.75  65.77
## 4376             15 years old Female              10th grade   1.75  72.58
## 4377             16 years old   Male              11th grade   1.75  83.01
## 4378             17 years old   Male              11th grade   1.75  73.94
## 4379             17 years old   Male              11th grade   1.75  90.72
## 4380             15 years old   Male              10th grade   1.75  54.43
## 4381             17 years old   Male              12th grade   1.75  68.04
## 4382    18 years old or older   Male              12th grade   1.75  62.60
## 4383             15 years old   Male               9th grade   1.75  79.38
## 4384             16 years old   Male              10th grade   1.75  63.50
## 4385             14 years old   Male               9th grade   1.75  55.34
## 4386             14 years old   Male               9th grade   1.75  72.58
## 4387    18 years old or older   Male              12th grade   1.75  76.66
## 4388             16 years old   Male              11th grade   1.75 102.06
## 4389             17 years old   Male              12th grade   1.75  84.37
## 4390             16 years old   Male              11th grade   1.75  59.42
## 4391             16 years old Female              11th grade   1.75  56.70
## 4392             16 years old   Male              10th grade   1.75  81.65
## 4393             17 years old   Male              12th grade   1.75 136.08
## 4394             17 years old   Male              12th grade   1.75  92.99
## 4395             14 years old   Male               9th grade   1.75 108.86
## 4396             15 years old   Male              10th grade   1.75  61.24
## 4397             16 years old   Male               9th grade   1.75 102.06
## 4398             14 years old   Male               9th grade   1.75  63.96
## 4399    18 years old or older   Male              12th grade   1.75  52.16
## 4400             17 years old   Male              11th grade   1.75  67.13
## 4401             15 years old   Male               9th grade   1.75  61.24
## 4402    18 years old or older   Male              12th grade   1.75  64.41
## 4403             16 years old Female              11th grade   1.75  83.46
## 4404             17 years old   Male              12th grade   1.75  90.72
## 4405             15 years old   Male               9th grade   1.75  52.16
## 4406             17 years old   Male              11th grade   1.75  74.84
## 4407             16 years old   Male              11th grade   1.75  61.24
## 4408             15 years old   Male               9th grade   1.75  81.65
## 4409             16 years old   Male              11th grade   1.75  77.11
## 4410             17 years old   Male              12th grade   1.75  90.72
## 4411             14 years old   Male               9th grade   1.75  68.04
## 4412             16 years old Female              11th grade   1.75  47.17
## 4413             16 years old   Male              11th grade   1.75  74.84
## 4414    18 years old or older   Male              12th grade   1.75  90.72
## 4415             16 years old   Male              11th grade   1.75  59.88
## 4416             16 years old   Male              11th grade   1.75  83.92
## 4417             15 years old   Male              10th grade   1.75  68.04
## 4418    18 years old or older   Male              12th grade   1.75  72.58
## 4419             17 years old   Male              11th grade   1.75  56.70
## 4420             16 years old Female              11th grade   1.75  68.04
## 4421             16 years old   Male              10th grade   1.75  64.86
## 4422             17 years old   Male              12th grade   1.75  72.58
## 4423             15 years old   Male               9th grade   1.75  61.24
## 4424             15 years old   Male              10th grade   1.75  58.97
## 4425             17 years old   Male              12th grade   1.75  99.79
## 4426             15 years old   Male               9th grade   1.75  53.52
## 4427             15 years old   Male               9th grade   1.75  70.76
## 4428             15 years old   Male               9th grade   1.75  65.77
## 4429             15 years old   Male               9th grade   1.75  58.97
## 4430             16 years old   Male              10th grade   1.75  62.60
## 4431    18 years old or older   Male              12th grade   1.75  63.50
## 4432             15 years old   Male              10th grade   1.75  54.43
## 4433             16 years old Female              10th grade   1.75  79.83
## 4434             15 years old   Male              10th grade   1.75  63.50
## 4435             17 years old   Male              12th grade   1.75  99.79
## 4436             16 years old   Male              11th grade   1.75  68.95
## 4437             16 years old   Male              10th grade   1.75  70.31
## 4438             15 years old Female              10th grade   1.75  56.70
## 4439             15 years old   Male               9th grade   1.75  53.98
## 4440             14 years old   Male               9th grade   1.75  70.31
## 4441             14 years old   Male               9th grade   1.75  57.61
## 4442             16 years old   Male              11th grade   1.75  63.50
## 4443             15 years old   Male              10th grade   1.75  65.77
## 4444             15 years old   Male               9th grade   1.75  86.18
## 4445             16 years old   Male              10th grade   1.75  74.84
## 4446             16 years old   Male              10th grade   1.75  54.43
## 4447    18 years old or older Female              12th grade   1.75 104.33
## 4448    18 years old or older Female              12th grade   1.75  56.70
## 4449             15 years old   Male              10th grade   1.75  48.99
## 4450             14 years old   Male               9th grade   1.75  77.11
## 4451             16 years old   Male              10th grade   1.75  81.65
## 4452             16 years old Female              11th grade   1.75  68.04
## 4453             16 years old   Male              10th grade   1.75  58.97
## 4454             16 years old   Male              10th grade   1.75  65.77
## 4455             16 years old Female              10th grade   1.75  64.41
## 4456             17 years old   Male              11th grade   1.75  67.13
## 4457    18 years old or older   Male              12th grade   1.75  78.02
## 4458             17 years old   Male              12th grade   1.75 108.86
## 4459    18 years old or older   Male              12th grade   1.75  65.77
## 4460             15 years old   Male               9th grade   1.75  61.24
## 4461             16 years old Female              11th grade   1.75 142.43
## 4462             15 years old   Male               9th grade   1.75  57.15
## 4463             14 years old   Male               9th grade   1.75  56.25
## 4464             17 years old   Male              12th grade   1.75  58.97
## 4465             17 years old   Male              12th grade   1.75  74.84
## 4466             17 years old   Male              12th grade   1.75 103.87
## 4467             16 years old   Male              11th grade   1.75  68.04
## 4468             17 years old Female              11th grade   1.75  75.30
## 4469    18 years old or older Female              12th grade   1.75  79.38
## 4470             15 years old   Male              10th grade   1.75  81.65
## 4471             15 years old   Male               9th grade   1.75  54.43
## 4472    18 years old or older   Male              12th grade   1.75  62.14
## 4473    18 years old or older   Male              12th grade   1.75  70.31
## 4474             17 years old   Male              12th grade   1.75  68.04
## 4475             17 years old   Male              12th grade   1.75  67.13
## 4476             16 years old Female              10th grade   1.75 150.14
## 4477             16 years old   Male              10th grade   1.75 120.20
## 4478             14 years old   Male               9th grade   1.75  58.97
## 4479             16 years old   Male              10th grade   1.75  72.58
## 4480             16 years old   Male              11th grade   1.75  61.24
## 4481             16 years old   Male              11th grade   1.75 139.71
## 4482             16 years old   Male              10th grade   1.75  83.92
## 4483             15 years old   Male               9th grade   1.75  63.50
## 4484             17 years old   Male              11th grade   1.75  61.24
## 4485             15 years old   Male              10th grade   1.75  90.72
## 4486             17 years old   Male              12th grade   1.75  77.11
## 4487             14 years old   Male               9th grade   1.75 117.94
## 4488             15 years old Female              10th grade   1.75 104.33
## 4489             14 years old   Male               9th grade   1.75  64.41
## 4490             15 years old   Male               9th grade   1.75  72.58
## 4491             15 years old   Male               9th grade   1.75  65.77
## 4492             15 years old   Male               9th grade   1.75  68.04
## 4493             14 years old   Male               9th grade   1.75  63.50
## 4494             17 years old Female              11th grade   1.75  71.67
## 4495             15 years old Female               9th grade   1.75  68.04
## 4496             15 years old   Male               9th grade   1.75 107.05
## 4497             15 years old   Male               9th grade   1.75  69.85
## 4498             15 years old   Male               9th grade   1.75  58.97
## 4499             17 years old   Male              12th grade   1.75  86.18
## 4500             16 years old   Male              10th grade   1.75  57.15
## 4501             17 years old   Male              11th grade   1.75  76.20
## 4502    18 years old or older   Male              12th grade   1.75  81.19
## 4503             16 years old   Male              11th grade   1.75  57.61
## 4504             17 years old Female              12th grade   1.75  68.04
## 4505             17 years old Female              11th grade   1.75  88.45
## 4506             16 years old   Male              10th grade   1.75  65.32
## 4507             14 years old   Male               9th grade   1.75  56.70
## 4508             17 years old   Male              12th grade   1.75  99.79
## 4509             15 years old   Male               9th grade   1.75  80.74
## 4510             15 years old   Male               9th grade   1.75  65.77
## 4511             15 years old   Male              10th grade   1.75  56.70
## 4512             17 years old Female              12th grade   1.75  67.59
## 4513             15 years old   Male               9th grade   1.75  61.24
## 4514    18 years old or older Female              12th grade   1.75  63.50
## 4515             15 years old   Male               9th grade   1.75  65.77
## 4516             16 years old   Male              10th grade   1.75  71.22
## 4517             16 years old   Male              10th grade   1.75  65.77
## 4518             17 years old   Male              11th grade   1.75  54.43
## 4519             17 years old   Male              11th grade   1.75  68.04
## 4520             16 years old   Male              11th grade   1.75  95.26
## 4521             16 years old   Male              11th grade   1.75  56.70
## 4522             17 years old Female              12th grade   1.75  65.77
## 4523             17 years old   Male              10th grade   1.75  54.89
## 4524    18 years old or older   Male              12th grade   1.75  68.04
## 4525             17 years old   Male              11th grade   1.75  74.84
## 4526             14 years old Female               9th grade   1.75  59.88
## 4527             17 years old   Male              10th grade   1.75  97.52
## 4528             16 years old   Male              10th grade   1.75  68.04
## 4529             15 years old   Male               9th grade   1.75  63.50
## 4530             15 years old   Male               9th grade   1.75  72.58
## 4531             14 years old Female               9th grade   1.75  94.35
## 4532             15 years old   Male              10th grade   1.75  88.45
## 4533             15 years old Female              10th grade   1.75  53.07
## 4534             16 years old   Male              10th grade   1.75  58.97
## 4535             17 years old   Male              11th grade   1.75  65.77
## 4536             14 years old   Male               9th grade   1.75  95.26
## 4537             17 years old Female              11th grade   1.75  70.31
## 4538             17 years old   Male              12th grade   1.75  77.11
## 4539             16 years old Female              11th grade   1.75  81.65
## 4540             16 years old   Male              11th grade   1.75  77.11
## 4541             15 years old   Male              10th grade   1.75  65.77
## 4542             16 years old   Male              11th grade   1.75 104.33
## 4543             17 years old   Male              11th grade   1.75  61.24
## 4544    18 years old or older   Male              12th grade   1.75  81.65
## 4545             16 years old   Male              11th grade   1.75  75.75
## 4546    18 years old or older   Male              12th grade   1.75  70.31
## 4547             17 years old Female              12th grade   1.75  68.04
## 4548             14 years old   Male               9th grade   1.75  72.58
## 4549             14 years old   Male               9th grade   1.75  76.20
## 4550             15 years old   Male               9th grade   1.75  69.85
## 4551             15 years old Female               9th grade   1.75  54.43
## 4552             15 years old   Male               9th grade   1.75  46.27
## 4553             14 years old   Male               9th grade   1.75  63.50
## 4554             16 years old Female              12th grade   1.75  60.33
## 4555             15 years old Female              10th grade   1.75  58.06
## 4556             15 years old   Male               9th grade   1.75  68.04
## 4557             14 years old   Male               9th grade   1.75  83.92
## 4558             16 years old   Male              10th grade   1.75 112.49
## 4559             15 years old   Male              10th grade   1.75  65.77
## 4560             16 years old   Male              10th grade   1.75  74.84
## 4561             15 years old   Male              10th grade   1.75  77.11
## 4562             15 years old   Male              10th grade   1.75  88.45
## 4563             15 years old   Male               9th grade   1.75  67.13
## 4564    18 years old or older   Male              12th grade   1.75  71.67
## 4565    18 years old or older   Male              12th grade   1.75  81.65
## 4566             14 years old   Male               9th grade   1.75  61.24
## 4567             15 years old   Male              10th grade   1.75  73.03
## 4568             16 years old   Male              10th grade   1.75  63.50
## 4569             16 years old   Male              11th grade   1.75  65.32
## 4570             15 years old   Male              10th grade   1.75  61.24
## 4571             17 years old   Male              11th grade   1.75  61.69
## 4572             17 years old   Male              12th grade   1.75  54.43
## 4573             15 years old   Male              10th grade   1.75  77.11
## 4574             17 years old   Male              12th grade   1.75  63.50
## 4575             17 years old   Male              12th grade   1.75  62.14
## 4576             17 years old Female              11th grade   1.75  57.15
## 4577             15 years old Female               9th grade   1.75  63.50
## 4578             17 years old   Male              12th grade   1.75  54.43
## 4579    18 years old or older   Male              12th grade   1.75  83.92
## 4580             15 years old   Male               9th grade   1.75  61.24
## 4581             15 years old   Male              10th grade   1.75  65.77
## 4582             16 years old Female              11th grade   1.75  70.76
## 4583             17 years old   Male              11th grade   1.75  83.92
## 4584             14 years old   Male               9th grade   1.75  81.65
## 4585             17 years old   Male              11th grade   1.75  61.24
## 4586             14 years old   Male               9th grade   1.75  63.50
## 4587             16 years old Female              11th grade   1.75  67.59
## 4588             15 years old   Male              10th grade   1.75  58.06
## 4589             15 years old   Male               9th grade   1.75  68.04
## 4590             14 years old   Male               9th grade   1.75  56.70
## 4591             15 years old   Male               9th grade   1.75  64.86
## 4592    18 years old or older Female              12th grade   1.75 131.54
## 4593             17 years old Female              12th grade   1.75  56.70
## 4594             14 years old   Male               9th grade   1.75  61.24
## 4595             17 years old   Male              11th grade   1.75  77.11
## 4596    18 years old or older   Male              12th grade   1.75  71.22
## 4597             14 years old   Male               9th grade   1.75 108.86
## 4598             15 years old   Male               9th grade   1.75  76.66
## 4599             17 years old Female              11th grade   1.75 127.92
## 4600             17 years old Female              11th grade   1.75  54.43
## 4601             16 years old Female              10th grade   1.75  58.97
## 4602             16 years old   Male              10th grade   1.75  66.68
## 4603             17 years old Female              12th grade   1.75  59.88
## 4604             16 years old   Male              11th grade   1.75  55.79
## 4605             15 years old   Male               9th grade   1.75  58.06
## 4606             15 years old Female              10th grade   1.75  79.38
## 4607             16 years old   Male               9th grade   1.75  86.18
## 4608             15 years old   Male               9th grade   1.75  80.29
## 4609             16 years old   Male               9th grade   1.75  52.16
## 4610             15 years old   Male               9th grade   1.75  58.97
## 4611             14 years old   Male               9th grade   1.75  64.86
## 4612             15 years old   Male              10th grade   1.75  72.58
## 4613             14 years old   Male               9th grade   1.75  70.31
## 4614             17 years old   Male              12th grade   1.75  80.74
## 4615             17 years old   Male              11th grade   1.75  61.24
## 4616             16 years old   Male              10th grade   1.75  61.69
## 4617    18 years old or older   Male              12th grade   1.75  58.97
## 4618    18 years old or older   Male              12th grade   1.75  61.24
## 4619             15 years old   Male                    <NA>   1.75  92.99
## 4620             16 years old   Male              11th grade   1.75  96.62
## 4621             17 years old   Male              11th grade   1.75  97.98
## 4622             16 years old Female              10th grade   1.75  61.24
## 4623    18 years old or older Female              12th grade   1.75  65.77
## 4624             15 years old   Male              10th grade   1.75  83.92
## 4625             15 years old   Male               9th grade   1.75  68.04
## 4626             17 years old   Male              12th grade   1.75  63.50
## 4627             17 years old   Male              11th grade   1.75  68.04
## 4628             15 years old Female              10th grade   1.75  49.90
## 4629             14 years old   Male               9th grade   1.75  67.13
## 4630             17 years old   Male              11th grade   1.75  72.58
## 4631             17 years old Female              11th grade   1.75  63.50
## 4632             17 years old Female              12th grade   1.75  77.11
## 4633             17 years old Female              11th grade   1.75  59.42
## 4634             16 years old   Male              11th grade   1.75  74.84
## 4635             17 years old   Male              12th grade   1.75  55.79
## 4636             17 years old   Male              11th grade   1.75  63.50
## 4637             15 years old   Male              10th grade   1.75  79.38
## 4638             15 years old Female               9th grade   1.75  81.65
## 4639             17 years old   Male              12th grade   1.75  78.93
## 4640             14 years old Female               9th grade   1.75  51.71
## 4641             15 years old   Male               9th grade   1.75  62.60
## 4642             15 years old Female               9th grade   1.75  63.50
## 4643             15 years old   Male              10th grade   1.75  70.31
## 4644             15 years old   Male              10th grade   1.75  68.04
## 4645             15 years old Female               9th grade   1.75  61.24
## 4646             15 years old   Male               9th grade   1.75  63.50
## 4647             14 years old Female               9th grade   1.75  56.70
## 4648             16 years old   Male               9th grade   1.75  52.16
## 4649             16 years old   Male              11th grade   1.75  65.77
## 4650             17 years old Female              12th grade   1.75  72.58
## 4651    18 years old or older   Male              12th grade   1.75  97.52
## 4652             16 years old Female              11th grade   1.75  74.84
## 4653    18 years old or older   Male              12th grade   1.75  92.99
## 4654             17 years old   Male              12th grade   1.75 108.86
## 4655             14 years old   Male               9th grade   1.75  58.51
## 4656             14 years old Female               9th grade   1.75  55.79
## 4657             16 years old   Male              11th grade   1.75  95.26
## 4658             17 years old   Male              11th grade   1.75  73.48
## 4659    18 years old or older   Male              12th grade   1.75  70.31
## 4660             16 years old   Male              10th grade   1.75  74.84
## 4661             17 years old   Male              12th grade   1.75 102.06
## 4662             15 years old Female              10th grade   1.75  65.77
## 4663             17 years old Female              12th grade   1.75  68.04
## 4664             17 years old Female              12th grade   1.75  63.50
## 4665             15 years old   Male              10th grade   1.75  79.38
## 4666             15 years old   Male              10th grade   1.75  97.52
## 4667    18 years old or older Female              12th grade   1.75  86.18
## 4668             15 years old   Male               9th grade   1.75  71.67
## 4669             16 years old   Male              10th grade   1.75  59.88
## 4670             15 years old   Male               9th grade   1.75  51.71
## 4671             17 years old Female              12th grade   1.75  63.50
## 4672             15 years old   Male               9th grade   1.75  65.32
## 4673             15 years old   Male              10th grade   1.75  74.84
## 4674             16 years old   Male              10th grade   1.75 109.77
## 4675             17 years old Female              11th grade   1.75  77.11
## 4676             15 years old   Male               9th grade   1.75  61.24
## 4677    18 years old or older   Male              12th grade   1.75  74.84
## 4678             17 years old Female              11th grade   1.75  60.78
## 4679             15 years old   Male              10th grade   1.75  88.45
## 4680             16 years old Female              10th grade   1.75  56.70
## 4681             16 years old   Male              10th grade   1.75  58.06
## 4682             16 years old   Male              10th grade   1.75  70.31
## 4683             15 years old   Male               9th grade   1.75  67.13
## 4684             16 years old   Male              11th grade   1.75  81.65
## 4685             17 years old Female              12th grade   1.75  68.04
## 4686             17 years old   Male              11th grade   1.75 106.14
## 4687    18 years old or older   Male              12th grade   1.75  81.65
## 4688    18 years old or older Female              12th grade   1.75  81.65
## 4689             14 years old   Male               9th grade   1.75  81.65
## 4690             15 years old   Male              10th grade   1.75  58.51
## 4691             16 years old   Male              11th grade   1.75  83.92
## 4692             14 years old   Male               9th grade   1.75  61.24
## 4693             16 years old   Male              10th grade   1.75  61.24
## 4694             16 years old   Male              10th grade   1.75  54.43
## 4695             16 years old   Male              11th grade   1.75  72.58
## 4696             17 years old   Male              11th grade   1.75  81.65
## 4697             15 years old   Male               9th grade   1.75  90.72
## 4698             17 years old Female              12th grade   1.75  92.08
## 4699    18 years old or older   Male              12th grade   1.75  58.97
## 4700             17 years old   Male              11th grade   1.75  77.11
## 4701             17 years old   Male              12th grade   1.75 125.19
## 4702             16 years old   Male              10th grade   1.75  63.50
## 4703             16 years old   Male              10th grade   1.75  86.18
## 4704             15 years old   Male               9th grade   1.75  54.43
## 4705             16 years old Female              11th grade   1.75  57.61
## 4706             14 years old   Male               9th grade   1.75  54.43
## 4707             15 years old   Male               9th grade   1.75 167.38
## 4708             17 years old   Male              11th grade   1.75  95.26
## 4709             15 years old Female              10th grade   1.75  65.77
## 4710             15 years old Female               9th grade   1.75  70.31
## 4711             17 years old   Male              12th grade   1.75 129.28
## 4712             17 years old   Male              12th grade   1.75  68.04
## 4713             16 years old   Male              11th grade   1.75  61.24
## 4714             17 years old   Male              11th grade   1.75  79.38
## 4715             17 years old   Male              12th grade   1.75  58.06
## 4716             17 years old Female              12th grade   1.75  82.56
## 4717    18 years old or older   Male              12th grade   1.75  71.22
## 4718             17 years old   Male              11th grade   1.75  96.62
## 4719             15 years old   Male              10th grade   1.75  65.77
## 4720             15 years old   Male              10th grade   1.75  98.88
## 4721             15 years old   Male               9th grade   1.75  64.86
## 4722             15 years old Female               9th grade   1.75  58.97
## 4723             16 years old   Male              10th grade   1.75  62.60
## 4724             17 years old   Male              11th grade   1.75  61.24
## 4725             15 years old   Male               9th grade   1.75  63.50
## 4726             14 years old   Male               9th grade   1.75  97.98
## 4727             16 years old Female              11th grade   1.75  90.72
## 4728             17 years old   Male              12th grade   1.75  69.40
## 4729    18 years old or older   Male              12th grade   1.75  55.79
## 4730             16 years old   Male              10th grade   1.75  70.76
## 4731             17 years old   Male              11th grade   1.75  54.89
## 4732             17 years old   Male              11th grade   1.75  88.91
## 4733             17 years old   Male              11th grade   1.75  58.97
## 4734             15 years old   Male               9th grade   1.75 102.51
## 4735             15 years old   Male              10th grade   1.75  53.52
## 4736    18 years old or older   Male              12th grade   1.75  68.04
## 4737             17 years old   Male              11th grade   1.75  61.24
## 4738             17 years old   Male              11th grade   1.75  90.72
## 4739             15 years old   Male              10th grade   1.75 156.49
## 4740    18 years old or older   Male              12th grade   1.75 113.40
## 4741             17 years old   Male              12th grade   1.75  83.92
## 4742             16 years old Female              10th grade   1.75  72.58
## 4743             17 years old   Male              12th grade   1.75 127.01
## 4744    18 years old or older   Male              12th grade   1.75 111.13
## 4745             17 years old   Male              11th grade   1.75  54.43
## 4746             17 years old   Male              11th grade   1.75 113.40
## 4747             15 years old   Male              10th grade   1.75  68.95
## 4748             16 years old   Male              11th grade   1.75  49.90
## 4749             15 years old   Male              10th grade   1.75  88.45
## 4750    18 years old or older   Male              12th grade   1.75  54.43
## 4751             15 years old   Male               9th grade   1.75  53.98
## 4752             15 years old   Male               9th grade   1.75  90.72
## 4753             14 years old   Male               9th grade   1.75 111.59
## 4754             14 years old Female               9th grade   1.75  63.50
## 4755             15 years old   Male              10th grade   1.75  61.24
## 4756             16 years old Female              11th grade   1.75  63.96
## 4757             15 years old Female              10th grade   1.75  61.24
## 4758             16 years old   Male              11th grade   1.75  72.58
## 4759             16 years old   Male              10th grade   1.75  71.22
## 4760             17 years old   Male              11th grade   1.75  49.90
## 4761             14 years old   Male               9th grade   1.75 113.40
## 4762             14 years old   Male               9th grade   1.75  72.58
## 4763             15 years old   Male               9th grade   1.75 118.84
## 4764             14 years old   Male               9th grade   1.75  65.77
## 4765             16 years old   Male              10th grade   1.75  72.12
## 4766             17 years old   Male              10th grade   1.75  86.18
## 4767             17 years old Female              12th grade   1.75  86.18
## 4768             16 years old   Male              11th grade   1.75  83.92
## 4769             15 years old   Male              10th grade   1.75  68.49
## 4770             15 years old   Male              10th grade   1.75  58.97
## 4771             16 years old Female              11th grade   1.75  58.97
## 4772             16 years old   Male              11th grade   1.75  77.11
## 4773             15 years old   Male               9th grade   1.75  59.88
## 4774    18 years old or older   Male              12th grade   1.75  61.24
## 4775             16 years old   Male              11th grade   1.75  87.09
## 4776             14 years old   Male               9th grade   1.75  54.43
## 4777             15 years old   Male              10th grade   1.75  58.06
## 4778             16 years old Female              11th grade   1.75  81.65
## 4779             17 years old   Male              11th grade   1.75  68.04
## 4780    18 years old or older Female              12th grade   1.75  60.78
## 4781             14 years old Female               9th grade   1.75  61.24
## 4782             14 years old   Male               9th grade   1.75  68.04
## 4783             17 years old   Male              11th grade   1.75  66.68
## 4784             17 years old   Male              12th grade   1.75  56.70
## 4785             16 years old   Male              11th grade   1.75  72.58
## 4786             15 years old   Male               9th grade   1.75  50.35
## 4787             17 years old   Male              11th grade   1.75  83.01
## 4788    18 years old or older   Male              12th grade   1.75  63.50
## 4789             15 years old   Male              10th grade   1.75  64.41
## 4790             16 years old   Male              11th grade   1.75  68.04
## 4791             16 years old Female              11th grade   1.75  74.84
## 4792             15 years old   Male              10th grade   1.75  79.83
## 4793             15 years old   Male              10th grade   1.75  65.77
## 4794             16 years old   Male              10th grade   1.75  91.63
## 4795             16 years old   Male              10th grade   1.75  63.50
## 4796             15 years old   Male              10th grade   1.75  72.58
## 4797             16 years old   Male              10th grade   1.75  68.95
## 4798             15 years old Female              10th grade   1.75  70.31
## 4799             16 years old   Male              10th grade   1.75  78.47
## 4800             15 years old   Male              10th grade   1.75  65.77
## 4801             17 years old   Male              11th grade   1.75  68.04
## 4802             16 years old Female              10th grade   1.75  61.24
## 4803             16 years old   Male              11th grade   1.75  71.22
## 4804             15 years old   Male               9th grade   1.75  54.43
## 4805             16 years old Female              11th grade   1.75 122.93
## 4806             15 years old   Male              10th grade   1.75  64.41
## 4807             17 years old Female              11th grade   1.75  70.76
## 4808             15 years old   Male               9th grade   1.75  83.92
## 4809             15 years old   Male               9th grade   1.75  58.06
## 4810             15 years old Female               9th grade   1.75  68.04
## 4811             16 years old   Male              11th grade   1.75  72.58
## 4812             16 years old   Male              10th grade   1.75  70.31
## 4813             17 years old Female              12th grade   1.75  56.70
## 4814             15 years old   Male              10th grade   1.75  49.90
## 4815             14 years old   Male               9th grade   1.75  68.04
## 4816             17 years old   Male              12th grade   1.75  68.04
## 4817             17 years old   Male              12th grade   1.75  63.50
## 4818             17 years old   Male              12th grade   1.75  81.65
## 4819             15 years old Female               9th grade   1.75  61.24
## 4820             17 years old   Male              12th grade   1.75  72.58
## 4821             17 years old   Male              12th grade   1.75  65.77
## 4822             16 years old   Male              11th grade   1.75  68.95
## 4823    18 years old or older   Male              12th grade   1.75  70.31
## 4824    18 years old or older   Male              12th grade   1.75  61.24
## 4825             15 years old   Male               9th grade   1.75  69.40
## 4826             16 years old   Male              10th grade   1.75  63.50
## 4827    18 years old or older   Male              12th grade   1.75  58.06
## 4828             15 years old   Male               9th grade   1.75  54.43
## 4829             15 years old   Male               9th grade   1.75  84.37
## 4830             16 years old   Male              11th grade   1.75  90.72
## 4831             15 years old   Male              10th grade   1.75  97.52
## 4832             15 years old Female              10th grade   1.75  81.65
## 4833             15 years old   Male               9th grade   1.75  90.72
## 4834             15 years old   Male              10th grade   1.75  83.92
## 4835             16 years old   Male              10th grade   1.75  75.30
## 4836             14 years old   Male               9th grade   1.75  65.32
## 4837             17 years old   Male              11th grade   1.75  86.18
## 4838             13 years old   Male               9th grade   1.75  66.68
## 4839             16 years old   Male              11th grade   1.75  74.84
## 4840    18 years old or older   Male              12th grade   1.75  56.70
## 4841             17 years old   Male              12th grade   1.75  63.50
## 4842             17 years old   Male              12th grade   1.75  61.24
## 4843             17 years old   Male              12th grade   1.75  63.50
## 4844             16 years old   Male              10th grade   1.75  77.11
## 4845             14 years old   Male               9th grade   1.75 127.01
## 4846             15 years old   Male              10th grade   1.75  68.95
## 4847             17 years old   Male              12th grade   1.75  71.67
## 4848             15 years old Female              10th grade   1.75  61.69
## 4849             14 years old   Male               9th grade   1.75  97.52
## 4850             16 years old   Male              11th grade   1.75  56.70
## 4851             15 years old   Male               9th grade   1.75  76.20
## 4852             17 years old   Male              11th grade   1.75  68.04
## 4853             17 years old   Male              11th grade   1.75  81.65
## 4854             17 years old   Male              11th grade   1.75  65.77
## 4855             17 years old   Male              11th grade   1.75  79.38
## 4856             15 years old   Male               9th grade   1.75  88.91
## 4857    18 years old or older   Male              12th grade   1.75  99.79
## 4858             17 years old   Male              11th grade   1.75  74.84
## 4859             17 years old   Male              12th grade   1.75  68.04
## 4860             15 years old Female               9th grade   1.75  70.31
## 4861             16 years old Female              11th grade   1.75  70.31
## 4862             16 years old   Male              11th grade   1.75 108.86
## 4863    18 years old or older Female              12th grade   1.75 102.06
## 4864             16 years old Female              10th grade   1.75  79.38
## 4865             16 years old Female              10th grade   1.75  56.70
## 4866             17 years old   Male              12th grade   1.75  58.97
## 4867             15 years old   Male               9th grade   1.75  85.28
## 4868    18 years old or older   Male              12th grade   1.75 112.49
## 4869    18 years old or older   Male              12th grade   1.75  62.60
## 4870             17 years old   Male              11th grade   1.75  68.04
## 4871             17 years old   Male              11th grade   1.75  63.50
## 4872             17 years old   Male              11th grade   1.75  70.31
## 4873             15 years old Female              10th grade   1.75  74.84
## 4874             17 years old   Male              11th grade   1.75 111.13
## 4875             16 years old   Male              10th grade   1.75  74.84
## 4876             17 years old   Male              12th grade   1.75  61.69
## 4877             16 years old Female              10th grade   1.75  72.58
## 4878             17 years old   Male              11th grade   1.75  77.11
## 4879             15 years old Female              10th grade   1.75  72.58
## 4880             16 years old   Male              10th grade   1.75  75.30
## 4881             17 years old   Male              12th grade   1.75  78.02
## 4882             17 years old Female              12th grade   1.75  90.72
## 4883             17 years old Female              12th grade   1.75  88.45
## 4884             15 years old   Male               9th grade   1.75  67.13
## 4885             15 years old   Male               9th grade   1.75  86.18
## 4886             16 years old Female              11th grade   1.75  68.04
## 4887             17 years old   Male              12th grade   1.75  70.31
## 4888    18 years old or older   Male              12th grade   1.75  72.58
## 4889             17 years old Female              11th grade   1.75  84.82
## 4890             16 years old Female              10th grade   1.75  64.86
## 4891             16 years old   Male              10th grade   1.75  56.70
## 4892    18 years old or older   Male              12th grade   1.75  65.77
## 4893             15 years old   Male               9th grade   1.75  62.60
## 4894             17 years old   Male              12th grade   1.75 108.86
## 4895             15 years old   Male               9th grade   1.75  54.43
## 4896             17 years old   Male              12th grade   1.75  81.65
## 4897    18 years old or older   Male              12th grade   1.75 104.33
## 4898             16 years old   Male               9th grade   1.75 113.85
## 4899             16 years old   Male              10th grade   1.75  58.97
## 4900             16 years old   Male              10th grade   1.75  81.65
## 4901    18 years old or older   Male              12th grade   1.75  63.50
## 4902             15 years old   Male              10th grade   1.75  61.24
## 4903             16 years old   Male              10th grade   1.75  56.70
## 4904             15 years old Female               9th grade   1.75  62.14
## 4905    18 years old or older   Male              11th grade   1.75  57.15
## 4906             16 years old   Male              11th grade   1.75  68.04
## 4907             17 years old   Male              11th grade   1.75  77.11
## 4908             15 years old   Male              10th grade   1.75  63.50
## 4909             16 years old   Male              10th grade   1.75  68.04
## 4910    18 years old or older Female              12th grade   1.75  50.80
## 4911    18 years old or older   Male              12th grade   1.75  81.65
## 4912    18 years old or older   Male              12th grade   1.75  52.16
## 4913             16 years old   Male              10th grade   1.75 117.94
## 4914             15 years old   Male               9th grade   1.75  54.43
## 4915    18 years old or older   Male              11th grade   1.75  88.00
## 4916    18 years old or older   Male              12th grade   1.75  74.84
## 4917             15 years old   Male               9th grade   1.75  69.40
## 4918             16 years old Female              11th grade   1.75  73.94
## 4919    18 years old or older Female              12th grade   1.75  99.79
## 4920             17 years old   Male              11th grade   1.75  86.18
## 4921             15 years old   Male               9th grade   1.75  58.97
## 4922             17 years old   Male              11th grade   1.75  67.13
## 4923             17 years old   Male              11th grade   1.75  58.97
## 4924             15 years old   Male               9th grade   1.75  54.43
## 4925             15 years old Female               9th grade   1.75  61.24
## 4926             14 years old   Male               9th grade   1.75  87.54
## 4927             16 years old   Male              11th grade   1.75  56.70
## 4928    18 years old or older   Male              12th grade   1.75  63.50
## 4929    18 years old or older Female              11th grade   1.75  90.72
## 4930             16 years old Female              10th grade   1.75 108.86
## 4931             17 years old   Male              10th grade   1.75 113.40
## 4932             15 years old Female               9th grade   1.75  52.16
## 4933             17 years old   Male              11th grade   1.75  86.18
## 4934             16 years old Female              10th grade   1.75  86.18
## 4935             16 years old   Male              10th grade   1.75  68.04
## 4936             15 years old   Male               9th grade   1.75  72.58
## 4937             17 years old   Male              10th grade   1.75  74.84
## 4938             15 years old   Male              10th grade   1.75  61.24
## 4939    18 years old or older   Male              12th grade   1.75  54.43
## 4940             15 years old Female              10th grade   1.75  53.98
## 4941             16 years old Female              10th grade   1.75  81.65
## 4942             15 years old   Male               9th grade   1.75  69.40
## 4943    18 years old or older   Male              12th grade   1.75  97.52
## 4944             14 years old   Male               9th grade   1.75  49.90
## 4945             16 years old   Male              10th grade   1.75  79.38
## 4946    18 years old or older   Male              12th grade   1.75  70.31
## 4947             17 years old   Male              11th grade   1.75  63.50
## 4948             15 years old Female               9th grade   1.75  56.70
## 4949             15 years old Female              10th grade   1.75  77.11
## 4950             16 years old   Male               9th grade   1.75  79.38
## 4951             15 years old   Male               9th grade   1.75  55.79
## 4952             16 years old   Male              11th grade   1.75  59.88
## 4953             17 years old Female              10th grade   1.75  68.95
## 4954             14 years old   Male               9th grade   1.75 119.30
## 4955    18 years old or older   Male              12th grade   1.75  72.58
## 4956             16 years old   Male              10th grade   1.75  82.56
## 4957    18 years old or older   Male              12th grade   1.75  63.05
## 4958             17 years old   Male              11th grade   1.75  54.43
## 4959             17 years old   Male              11th grade   1.75  77.11
## 4960             15 years old   Male              10th grade   1.75  68.04
## 4961             14 years old   Male               9th grade   1.75 102.06
## 4962             14 years old   Male               9th grade   1.75 102.06
## 4963             17 years old   Male              11th grade   1.75  67.13
## 4964             15 years old   Male              10th grade   1.75  56.70
## 4965             16 years old   Male              10th grade   1.75  71.67
## 4966    18 years old or older Female              12th grade   1.75  63.50
## 4967             17 years old   Male              12th grade   1.75  49.90
## 4968             17 years old   Male              11th grade   1.75  95.26
## 4969             14 years old Female               9th grade   1.75  58.97
## 4970             15 years old   Male               9th grade   1.75  99.79
## 4971             15 years old Female               9th grade   1.75  64.86
## 4972             15 years old   Male               9th grade   1.75  56.70
## 4973             15 years old Female              10th grade   1.75  86.18
## 4974             15 years old   Male              10th grade   1.75  59.88
## 4975             16 years old   Male              10th grade   1.75  83.92
## 4976             15 years old   Male               9th grade   1.75  56.70
## 4977    18 years old or older   Male              12th grade   1.75  66.23
## 4978             15 years old   Male              10th grade   1.75  53.98
## 4979             16 years old   Male              10th grade   1.75  72.58
## 4980             16 years old Female              11th grade   1.75  63.50
## 4981             15 years old   Male               9th grade   1.75  83.92
## 4982             15 years old Female              10th grade   1.75  79.38
## 4983             16 years old Female              10th grade   1.75  56.70
## 4984             16 years old   Male              10th grade   1.75  58.97
## 4985             16 years old   Male              10th grade   1.75  58.97
## 4986             17 years old Female              11th grade   1.75  61.24
## 4987             16 years old   Male              10th grade   1.75  63.05
## 4988             15 years old   Male               9th grade   1.75 113.40
## 4989             15 years old   Male              10th grade   1.75  61.24
## 4990             17 years old   Male              11th grade   1.75  64.86
## 4991    18 years old or older   Male              12th grade   1.75  61.24
## 4992             16 years old   Male              11th grade   1.75  70.31
## 4993             16 years old   Male              11th grade   1.75  59.88
## 4994             17 years old   Male              11th grade   1.75  68.95
## 4995             16 years old   Male              11th grade   1.75  77.11
## 4996             15 years old   Male              10th grade   1.75  82.56
## 4997             17 years old   Male              12th grade   1.75  72.58
## 4998             16 years old   Male              10th grade   1.75  81.65
## 4999             16 years old   Male              10th grade   1.75  52.16
## 5000             16 years old   Male              10th grade   1.75  68.04
## 5001             17 years old   Male              11th grade   1.75 127.01
## 5002             15 years old   Male               9th grade   1.75  61.24
## 5003             15 years old   Male               9th grade   1.75  68.04
## 5004             16 years old   Male              11th grade   1.75  86.18
## 5005             15 years old Female               9th grade   1.75 124.74
## 5006             14 years old Female               9th grade   1.75  74.84
## 5007             14 years old Female               9th grade   1.75 125.65
## 5008             15 years old   Male               9th grade   1.75  58.97
## 5009             17 years old   Male              12th grade   1.75  74.39
## 5010             17 years old   Male              12th grade   1.75  77.11
## 5011             16 years old   Male              10th grade   1.75  61.24
## 5012             16 years old   Male              10th grade   1.75  69.40
## 5013    18 years old or older Female              12th grade   1.75  79.38
## 5014             15 years old   Male              10th grade   1.75  70.31
## 5015    18 years old or older   Male              12th grade   1.75  90.72
## 5016    18 years old or older   Male              12th grade   1.75  60.33
## 5017             14 years old Female               9th grade   1.75  65.77
## 5018             17 years old Female              11th grade   1.75  68.04
## 5019             15 years old Female               9th grade   1.75  56.70
## 5020             14 years old Female               9th grade   1.75  81.65
## 5021             15 years old Female              10th grade   1.75  54.43
## 5022             15 years old   Male              10th grade   1.75  72.58
## 5023             15 years old   Male              10th grade   1.75 113.40
## 5024             17 years old Female              12th grade   1.75  61.24
## 5025             15 years old   Male              10th grade   1.75 104.33
## 5026             15 years old   Male              10th grade   1.75  72.58
## 5027             14 years old   Male               9th grade   1.75  65.77
## 5028             14 years old   Male               9th grade   1.75  61.24
## 5029             16 years old   Male              10th grade   1.75  71.22
## 5030             16 years old Female              10th grade   1.75  63.50
## 5031    18 years old or older   Male              12th grade   1.75  74.84
## 5032             17 years old   Male              11th grade   1.75  63.50
## 5033             17 years old   Male              12th grade   1.75  61.24
## 5034             17 years old   Male              10th grade   1.75  72.58
## 5035             15 years old   Male               9th grade   1.75  72.58
## 5036             16 years old   Male              10th grade   1.75  97.52
## 5037             15 years old   Male               9th grade   1.75  46.27
## 5038             15 years old   Male               9th grade   1.75  77.11
## 5039             14 years old   Male               9th grade   1.75  64.41
## 5040             15 years old Female               9th grade   1.75  67.59
## 5041             16 years old   Male               9th grade   1.75 114.76
## 5042             16 years old   Male               9th grade   1.75  63.50
## 5043             16 years old   Male               9th grade   1.75 107.05
## 5044             16 years old   Male              10th grade   1.75  90.72
## 5045             15 years old   Male              10th grade   1.75  72.58
## 5046             15 years old   Male               9th grade   1.75  73.48
## 5047             16 years old   Male              10th grade   1.75  68.04
## 5048    18 years old or older   Male              11th grade   1.75  68.04
## 5049             17 years old Female              12th grade   1.75  58.97
## 5050    18 years old or older   Male              12th grade   1.75  65.77
## 5051    18 years old or older Female              12th grade   1.75  65.77
## 5052             16 years old   Male              10th grade   1.75  81.65
## 5053             16 years old   Male              10th grade   1.75  60.78
## 5054             15 years old Female              10th grade   1.75  65.77
## 5055             16 years old   Male              11th grade   1.75  58.97
## 5056             15 years old   Male              10th grade   1.75  65.77
## 5057             15 years old   Male               9th grade   1.75  61.69
## 5058             15 years old   Male               9th grade   1.75  61.24
## 5059             15 years old   Male               9th grade   1.75  74.84
## 5060             15 years old   Male               9th grade   1.75  67.59
## 5061             16 years old   Male              11th grade   1.75  79.38
## 5062             15 years old   Male              10th grade   1.75  78.02
## 5063             16 years old   Male              11th grade   1.75 117.48
## 5064             17 years old   Male              11th grade   1.75  58.97
## 5065    18 years old or older Female                    <NA>   1.75  52.16
## 5066             15 years old Female               9th grade   1.75  67.59
## 5067             14 years old   Male               9th grade   1.75 104.33
## 5068             16 years old   Male              10th grade   1.75  68.04
## 5069             16 years old   Male              10th grade   1.75  58.97
## 5070             16 years old   Male              10th grade   1.75  92.53
## 5071             16 years old   Male              10th grade   1.75  65.77
## 5072             16 years old   Male              10th grade   1.75  68.04
## 5073             16 years old   Male              10th grade   1.75  86.64
## 5074             15 years old   Male               9th grade   1.75  56.70
## 5075             16 years old Female              11th grade   1.75  67.13
## 5076             16 years old   Male              11th grade   1.75  57.61
## 5077             17 years old   Male              11th grade   1.75 106.60
## 5078  12 years old or younger Female               9th grade   1.75  97.52
## 5079    18 years old or older Female              12th grade   1.75  58.97
## 5080             16 years old   Male              11th grade   1.75  72.58
## 5081             16 years old   Male              10th grade   1.75  70.31
## 5082             17 years old   Male              11th grade   1.75  59.88
## 5083  12 years old or younger Female               9th grade   1.75  54.43
## 5084             14 years old   Male               9th grade   1.75  76.20
## 5085             15 years old Female               9th grade   1.75  54.43
## 5086             14 years old   Male               9th grade   1.75  61.24
## 5087             14 years old   Male               9th grade   1.75  58.51
## 5088             14 years old Female               9th grade   1.75  61.24
## 5089             15 years old   Male               9th grade   1.75  68.04
## 5090             14 years old   Male               9th grade   1.75  58.97
## 5091             16 years old Female              10th grade   1.75  47.63
## 5092             15 years old   Male                    <NA>   1.75  68.04
## 5093             15 years old   Male              10th grade   1.75  68.04
## 5094             15 years old   Male              10th grade   1.75  70.31
## 5095             16 years old   Male                    <NA>   1.75  56.70
## 5096             16 years old Female                    <NA>   1.75  56.70
## 5097             16 years old Female              11th grade   1.75  59.88
## 5098             16 years old   Male                    <NA>   1.75  61.24
## 5099             16 years old Female              11th grade   1.75  63.50
## 5100             16 years old   Male              11th grade   1.75  56.70
## 5101    18 years old or older Female              12th grade   1.75  63.50
## 5102    18 years old or older   Male                    <NA>   1.75  70.31
## 5103    18 years old or older   Male              12th grade   1.75  65.77
## 5104    18 years old or older Female              12th grade   1.75  63.50
## 5105    18 years old or older Female              12th grade   1.75  54.43
## 5106             17 years old Female              12th grade   1.75  56.70
## 5107             14 years old   Male               9th grade   1.75  49.90
## 5108             14 years old Female               9th grade   1.75  59.88
## 5109             16 years old   Male              11th grade   1.75  68.04
## 5110             17 years old Female              11th grade   1.75  72.58
## 5111             17 years old Female              11th grade   1.75  58.97
## 5112             16 years old   Male                    <NA>   1.75  63.50
## 5113             17 years old   Male              11th grade   1.75  63.50
## 5114             16 years old Female              11th grade   1.75  61.24
## 5115    18 years old or older   Male              12th grade   1.75  70.31
## 5116             17 years old   Male              12th grade   1.75  63.50
## 5117             14 years old   Male               9th grade   1.75  63.50
## 5118             14 years old   Male               9th grade   1.75  52.16
## 5119             15 years old   Male               9th grade   1.75 127.01
## 5120             14 years old   Male               9th grade   1.75  70.31
## 5121             15 years old   Male               9th grade   1.75  60.78
## 5122             14 years old   Male               9th grade   1.75  59.88
## 5123             16 years old   Male              10th grade   1.75  55.79
## 5124             15 years old Female              10th grade   1.75  68.04
## 5125             16 years old   Male              10th grade   1.75  54.43
## 5126             15 years old   Male              10th grade   1.75  67.13
## 5127             16 years old   Male              11th grade   1.75  68.04
## 5128             17 years old Female              11th grade   1.75 104.33
## 5129    18 years old or older   Male              12th grade   1.75  74.84
## 5130             15 years old   Male              10th grade   1.75  65.77
## 5131             15 years old   Male              10th grade   1.75  68.04
## 5132             15 years old   Male              10th grade   1.75  65.77
## 5133             16 years old Female              10th grade   1.75  51.71
## 5134             17 years old   Male              11th grade   1.75  77.11
## 5135             16 years old   Male                    <NA>   1.75  84.37
## 5136             16 years old   Male              11th grade   1.75  95.26
## 5137    18 years old or older   Male              12th grade   1.75  61.24
## 5138             17 years old   Male              11th grade   1.75  65.77
## 5139             14 years old   Male               9th grade   1.75  65.77
## 5140             16 years old   Male               9th grade   1.75  70.31
## 5141             14 years old   Male               9th grade   1.75  83.01
## 5142             16 years old   Male              10th grade   1.75  60.78
## 5143             17 years old   Male              10th grade   1.75  54.43
## 5144             17 years old   Male              11th grade   1.75  50.80
## 5145    18 years old or older   Male              12th grade   1.75  80.74
## 5146             15 years old   Male              10th grade   1.75  77.11
## 5147             15 years old   Male              10th grade   1.75  68.04
## 5148             17 years old   Male              11th grade   1.75  54.89
## 5149             14 years old   Male               9th grade   1.75  65.77
## 5150             14 years old   Male               9th grade   1.75  65.77
## 5151             16 years old   Male              11th grade   1.75  72.58
## 5152             16 years old   Male              11th grade   1.75  74.39
## 5153             17 years old   Male              11th grade   1.75  68.95
## 5154             17 years old Female              11th grade   1.75  61.24
## 5155             15 years old   Male              10th grade   1.75  60.33
## 5156             16 years old Female              11th grade   1.75  61.24
## 5157             17 years old Female              11th grade   1.75  61.24
## 5158             15 years old   Male              10th grade   1.75  61.24
## 5159             17 years old   Male              12th grade   1.75 107.96
## 5160             17 years old   Male              12th grade   1.75  65.77
## 5161             17 years old   Male              12th grade   1.75  68.04
## 5162             15 years old   Male              10th grade   1.75  61.24
## 5163             16 years old   Male              10th grade   1.75  56.70
## 5164             17 years old   Male              12th grade   1.75  70.76
## 5165             15 years old   Male              10th grade   1.75  64.41
## 5166             15 years old   Male              10th grade   1.75 109.32
## 5167             16 years old   Male              10th grade   1.75  58.06
## 5168             16 years old Female              11th grade   1.75  65.77
## 5169             15 years old   Male              10th grade   1.75  57.61
## 5170             17 years old   Male              12th grade   1.75  58.97
## 5171             15 years old Female               9th grade   1.75  83.01
## 5172             16 years old   Male              11th grade   1.75  70.31
## 5173             14 years old Female               9th grade   1.75  52.16
## 5174             14 years old Female               9th grade   1.75 136.08
## 5175             16 years old   Male              11th grade   1.75  65.77
## 5176             16 years old   Male              11th grade   1.75  58.97
## 5177             16 years old Female              11th grade   1.75  68.95
## 5178             16 years old   Male              11th grade   1.75  67.59
## 5179             17 years old Female              12th grade   1.75  65.77
## 5180             15 years old Female              10th grade   1.75  72.58
## 5181             17 years old   Male              12th grade   1.75  65.77
## 5182             15 years old   Male              10th grade   1.75  61.24
## 5183             15 years old   Male              10th grade   1.75  68.04
## 5184             16 years old   Male              11th grade   1.75  61.69
## 5185             17 years old   Male              11th grade   1.75  74.84
## 5186             15 years old Female              10th grade   1.75  61.24
## 5187             17 years old   Male              12th grade   1.75  73.94
## 5188             15 years old   Male              10th grade   1.75  77.11
## 5189             15 years old   Male              10th grade   1.75  74.84
## 5190             16 years old   Male              10th grade   1.75  68.04
## 5191             17 years old Female              12th grade   1.75  53.07
## 5192             17 years old   Male              12th grade   1.75  65.77
## 5193             16 years old Female              11th grade   1.75 101.15
## 5194             17 years old   Male              11th grade   1.75  82.56
## 5195             16 years old   Male              11th grade   1.75  63.50
## 5196             15 years old   Male              10th grade   1.75  70.76
## 5197             16 years old   Male              10th grade   1.75  58.97
## 5198             15 years old   Male              10th grade   1.75  72.58
## 5199             14 years old   Male               9th grade   1.75  75.75
## 5200             17 years old   Male              11th grade   1.75  61.24
## 5201             15 years old   Male               9th grade   1.75  64.41
## 5202             16 years old Female              11th grade   1.75  63.50
## 5203             14 years old   Male               9th grade   1.75  90.72
## 5204             16 years old Female              11th grade   1.75  58.06
## 5205             15 years old   Male              10th grade   1.75  86.18
## 5206             16 years old   Male              11th grade   1.75  49.90
## 5207             16 years old   Male              10th grade   1.75  90.72
## 5208             17 years old Female              12th grade   1.75  97.52
## 5209             17 years old   Male              12th grade   1.75  58.97
## 5210    18 years old or older   Male              12th grade   1.75  62.60
## 5211             16 years old   Male              11th grade   1.75  77.11
## 5212             14 years old   Male               9th grade   1.75  62.14
## 5213             14 years old   Male               9th grade   1.75  77.11
## 5214             14 years old   Male               9th grade   1.75  63.50
## 5215             16 years old   Male              11th grade   1.75  62.60
## 5216             16 years old   Male              11th grade   1.75  61.24
## 5217             16 years old   Male              10th grade   1.75  56.70
## 5218             15 years old Female              10th grade   1.75  58.97
## 5219             14 years old   Male               9th grade   1.75  61.69
## 5220             16 years old   Male              11th grade   1.75  72.58
## 5221             16 years old   Male              11th grade   1.75  58.97
## 5222             17 years old Female              11th grade   1.75  53.98
## 5223             16 years old Female              11th grade   1.75  72.58
## 5224             15 years old   Male              10th grade   1.75  68.04
## 5225             15 years old   Male              10th grade   1.75  77.11
## 5226             15 years old Female              10th grade   1.75 138.35
## 5227             17 years old Female              12th grade   1.75  49.90
## 5228             14 years old Female               9th grade   1.75  54.43
## 5229             17 years old   Male              12th grade   1.75  99.79
## 5230             15 years old   Male              10th grade   1.75  69.40
## 5231             15 years old   Male              10th grade   1.75  58.97
## 5232             16 years old Female              10th grade   1.75  58.97
## 5233             14 years old Female               9th grade   1.75  63.50
## 5234             14 years old   Male               9th grade   1.75  76.66
## 5235             14 years old   Male               9th grade   1.75  66.23
## 5236             14 years old   Male               9th grade   1.75  59.42
## 5237             17 years old Female              12th grade   1.75  61.24
## 5238             16 years old   Male              11th grade   1.75  54.43
## 5239             16 years old   Male              11th grade   1.75  92.99
## 5240             16 years old   Male              11th grade   1.75  65.77
## 5241             16 years old   Male              11th grade   1.75  70.31
## 5242             15 years old   Male              10th grade   1.75  73.94
## 5243             15 years old   Male              10th grade   1.75  70.31
## 5244             17 years old   Male              12th grade   1.75  68.04
## 5245             16 years old   Male Ungraded or other grade   1.75  66.68
## 5246             16 years old   Male              10th grade   1.75  66.23
## 5247             14 years old   Male               9th grade   1.75  72.58
## 5248             14 years old   Male               9th grade   1.75  70.31
## 5249             14 years old   Male               9th grade   1.75  63.50
## 5250             15 years old   Male               9th grade   1.75  79.38
## 5251             16 years old   Male              11th grade   1.75  59.88
## 5252             15 years old Female              10th grade   1.75  64.41
## 5253             14 years old   Male               9th grade   1.75  56.70
## 5254             16 years old   Male              10th grade   1.75  57.15
## 5255             15 years old   Male              10th grade   1.75  58.97
## 5256             15 years old   Male              10th grade   1.75  58.97
## 5257             16 years old   Male              10th grade   1.75  65.77
## 5258             15 years old   Male              10th grade   1.75  64.41
## 5259             14 years old   Male               9th grade   1.75  90.27
## 5260             16 years old   Male              11th grade   1.75  82.10
## 5261             14 years old   Male               9th grade   1.75  88.45
## 5262             15 years old   Male              10th grade   1.75  61.24
## 5263    18 years old or older   Male              12th grade   1.75  64.41
## 5264             16 years old Female              10th grade   1.75  61.24
## 5265             15 years old   Male              10th grade   1.75  61.24
## 5266    18 years old or older Female              12th grade   1.75 104.33
## 5267             16 years old   Male              11th grade   1.75  81.65
## 5268             16 years old   Male              11th grade   1.75  71.22
## 5269    18 years old or older   Male              12th grade   1.75  80.74
## 5270             16 years old   Male              10th grade   1.75  56.25
## 5271             16 years old Female              11th grade   1.75  63.50
## 5272             15 years old   Male              10th grade   1.75  79.38
## 5273             15 years old   Male                    <NA>   1.75  64.86
## 5274             17 years old   Male              11th grade   1.75  57.15
## 5275             15 years old Female               9th grade   1.75  59.42
## 5276             15 years old Female               9th grade   1.75  57.15
## 5277             15 years old   Male              10th grade   1.75 100.25
## 5278    18 years old or older   Male              12th grade   1.75  95.26
## 5279             17 years old Female              11th grade   1.75  70.31
## 5280    18 years old or older   Male              12th grade   1.75  78.02
## 5281             15 years old   Male              10th grade   1.75  58.97
## 5282             15 years old   Male              10th grade   1.75 129.28
## 5283    18 years old or older   Male              12th grade   1.75  70.31
## 5284             17 years old   Male              11th grade   1.75  61.24
## 5285             17 years old   Male              11th grade   1.75  70.31
## 5286             16 years old   Male              11th grade   1.75 113.40
## 5287             16 years old Female              11th grade   1.75  53.52
## 5288             17 years old   Male              11th grade   1.75  80.74
## 5289             15 years old   Male              10th grade   1.75  65.77
## 5290             17 years old Female              11th grade   1.75  68.04
## 5291             15 years old   Male               9th grade   1.75  84.37
## 5292    18 years old or older   Male              12th grade   1.75  76.20
## 5293             16 years old   Male              10th grade   1.75  70.31
## 5294             15 years old Female              10th grade   1.75  72.58
## 5295             14 years old Female               9th grade   1.75  58.97
## 5296    18 years old or older   Male              12th grade   1.75  78.02
## 5297             14 years old   Male               9th grade   1.75  54.43
## 5298             16 years old   Male              11th grade   1.75  62.60
## 5299             15 years old   Male              10th grade   1.75  58.97
## 5300             16 years old   Male              11th grade   1.75  58.97
## 5301             17 years old   Male              11th grade   1.75  77.11
## 5302             16 years old   Male              10th grade   1.75  91.17
## 5303             17 years old   Male              11th grade   1.75  79.38
## 5304             15 years old   Male              10th grade   1.75  72.58
## 5305             16 years old   Male              11th grade   1.75  60.78
## 5306             17 years old   Male              11th grade   1.75 102.06
## 5307    18 years old or older Female              12th grade   1.75  63.50
## 5308             17 years old   Male              12th grade   1.75  74.84
## 5309             15 years old   Male              10th grade   1.75  77.11
## 5310             17 years old   Male              12th grade   1.75  99.79
## 5311             15 years old Female               9th grade   1.75  52.16
## 5312             17 years old   Male              12th grade   1.75  86.18
## 5313             14 years old   Male               9th grade   1.75  86.18
## 5314             17 years old   Male              12th grade   1.75  83.92
## 5315    18 years old or older Female              12th grade   1.75  61.24
## 5316             15 years old Female               9th grade   1.75  54.43
## 5317             15 years old   Male              10th grade   1.75  61.24
## 5318             16 years old Female              11th grade   1.75  77.11
## 5319             15 years old   Male              10th grade   1.75  61.24
## 5320             16 years old   Male              11th grade   1.75  83.92
## 5321             17 years old   Male              12th grade   1.75  58.97
## 5322             14 years old   Male               9th grade   1.75  71.67
## 5323             15 years old   Male               9th grade   1.75  63.50
## 5324             16 years old Female              10th grade   1.75  55.34
## 5325             15 years old Female              10th grade   1.75  56.70
## 5326             17 years old Female              12th grade   1.75  58.97
## 5327             17 years old   Male              11th grade   1.75  94.80
## 5328             16 years old   Male              11th grade   1.75  75.30
## 5329             17 years old Female              12th grade   1.75  86.18
## 5330             16 years old   Male              10th grade   1.75  63.50
## 5331             16 years old Female              10th grade   1.75  65.77
## 5332             17 years old   Male              12th grade   1.75  56.25
## 5333             15 years old   Male              10th grade   1.75  58.97
## 5334    18 years old or older   Male              12th grade   1.75  58.97
## 5335             14 years old   Male               9th grade   1.75  57.61
## 5336             16 years old   Male              11th grade   1.75  63.50
## 5337             16 years old   Male              11th grade   1.75  84.82
## 5338             16 years old   Male              10th grade   1.75  60.78
## 5339             15 years old   Male               9th grade   1.75  63.50
## 5340             16 years old   Male              10th grade   1.75 117.94
## 5341             17 years old   Male              11th grade   1.75  54.43
## 5342             14 years old   Male               9th grade   1.75  65.77
## 5343             14 years old   Male               9th grade   1.75  61.24
## 5344             15 years old Female              10th grade   1.75  63.50
## 5345             16 years old   Male               9th grade   1.75  56.70
## 5346             16 years old   Male              10th grade   1.75  58.97
## 5347    18 years old or older   Male              12th grade   1.75  63.50
## 5348    18 years old or older   Male              12th grade   1.75  92.99
## 5349             17 years old Female              11th grade   1.75  72.58
## 5350             16 years old Female              10th grade   1.75  58.97
## 5351             16 years old   Male              10th grade   1.75  99.79
## 5352             15 years old   Male              10th grade   1.75  63.50
## 5353             16 years old   Male              10th grade   1.75  85.73
## 5354             15 years old Female              10th grade   1.75  58.97
## 5355             15 years old   Male               9th grade   1.75  68.04
## 5356             14 years old Female               9th grade   1.75  72.58
## 5357             16 years old Female              10th grade   1.75  61.24
## 5358             17 years old   Male              11th grade   1.75 127.01
## 5359             17 years old   Male              11th grade   1.75  90.72
## 5360             16 years old   Male              10th grade   1.75 101.15
## 5361             15 years old Female              10th grade   1.75  63.50
## 5362             17 years old   Male              12th grade   1.75  56.70
## 5363             16 years old   Male              11th grade   1.75  76.20
## 5364             14 years old   Male               9th grade   1.75  58.97
## 5365             15 years old   Male               9th grade   1.75  70.31
## 5366             17 years old Female              11th grade   1.75  72.58
## 5367             16 years old   Male              10th grade   1.75  66.68
## 5368             17 years old   Male              12th grade   1.75  64.86
## 5369             16 years old   Male              10th grade   1.75  69.85
## 5370             16 years old   Male              10th grade   1.75  90.72
## 5371             17 years old   Male              12th grade   1.75 158.76
## 5372    18 years old or older   Male              12th grade   1.75  72.58
## 5373             16 years old Female              10th grade   1.75  59.88
## 5374             17 years old Female              12th grade   1.75 113.40
## 5375             17 years old   Male              12th grade   1.75  92.99
## 5376             17 years old Female              11th grade   1.75 109.77
## 5377             17 years old   Male              11th grade   1.75  68.04
## 5378             15 years old   Male              10th grade   1.75  83.01
## 5379             16 years old   Male              10th grade   1.75  64.41
## 5380             16 years old   Male              11th grade   1.75  65.77
## 5381             15 years old   Male               9th grade   1.75  95.26
## 5382             14 years old   Male               9th grade   1.75  74.39
## 5383             14 years old   Male               9th grade   1.75 122.47
## 5384             16 years old   Male              10th grade   1.75  66.23
## 5385             16 years old   Male              10th grade   1.75  59.42
## 5386             15 years old   Male               9th grade   1.75  58.97
## 5387             15 years old   Male              10th grade   1.75  96.62
## 5388             15 years old   Male              10th grade   1.75  90.72
## 5389             17 years old   Male              11th grade   1.75  73.03
## 5390             16 years old   Male              10th grade   1.75  83.46
## 5391             16 years old Female              10th grade   1.75  45.81
## 5392             17 years old   Male              12th grade   1.75  63.50
## 5393             14 years old   Male               9th grade   1.75  61.69
## 5394             16 years old Female              10th grade   1.75  45.81
## 5395             16 years old   Male              10th grade   1.75  74.84
## 5396             14 years old   Male               9th grade   1.75  87.09
## 5397             15 years old   Male              10th grade   1.75  72.58
## 5398             15 years old Female               9th grade   1.75  52.16
## 5399             16 years old Female              11th grade   1.75  65.77
## 5400             16 years old   Male              10th grade   1.75 106.60
## 5401             15 years old   Male              10th grade   1.75  86.18
## 5402             14 years old   Male               9th grade   1.75  65.77
## 5403             16 years old   Male              10th grade   1.75  52.16
## 5404             14 years old   Male               9th grade   1.75  53.52
## 5405             14 years old   Male               9th grade   1.75  68.49
## 5406             16 years old   Male              10th grade   1.75  91.63
## 5407             15 years old   Male               9th grade   1.75  50.35
## 5408             16 years old Female              12th grade   1.75  65.77
## 5409             16 years old   Male              10th grade   1.75  59.42
## 5410             15 years old   Male               9th grade   1.75  72.58
## 5411             16 years old   Male              11th grade   1.75  63.50
## 5412             14 years old   Male               9th grade   1.75  65.77
## 5413             15 years old Female               9th grade   1.75  68.04
## 5414             15 years old Female              10th grade   1.75  56.70
## 5415             16 years old   Male              10th grade   1.75  67.13
## 5416             17 years old   Male              11th grade   1.75  52.62
## 5417             17 years old   Male              11th grade   1.75 122.47
## 5418             15 years old Female               9th grade   1.75  68.04
## 5419             16 years old   Male              11th grade   1.75 102.06
## 5420    18 years old or older   Male              12th grade   1.75  70.76
## 5421             14 years old   Male               9th grade   1.75  80.74
## 5422             15 years old   Male               9th grade   1.75  90.72
## 5423             14 years old   Male               9th grade   1.75 108.86
## 5424             17 years old   Male              12th grade   1.75  59.42
## 5425             14 years old Female               9th grade   1.75  50.80
## 5426             16 years old   Male              10th grade   1.75  78.47
## 5427    18 years old or older   Male              12th grade   1.75 127.01
## 5428             15 years old   Male               9th grade   1.75  63.50
## 5429             14 years old   Male               9th grade   1.75  61.24
## 5430             15 years old   Male               9th grade   1.75  61.69
## 5431             15 years old   Male               9th grade   1.75  74.39
## 5432             14 years old Female               9th grade   1.75  54.43
## 5433             14 years old   Male               9th grade   1.75  63.50
## 5434             15 years old   Male               9th grade   1.75  63.50
## 5435             15 years old   Male               9th grade   1.75  63.50
## 5436             15 years old Female               9th grade   1.75  56.70
## 5437             15 years old   Male               9th grade   1.75  63.50
## 5438             15 years old   Male               9th grade   1.75  59.42
## 5439             15 years old   Male               9th grade   1.75  83.92
## 5440             14 years old   Male               9th grade   1.75  56.70
## 5441             15 years old   Male               9th grade   1.75  67.13
## 5442             15 years old   Male               9th grade   1.75  61.69
## 5443             15 years old   Male               9th grade   1.75  60.33
## 5444             14 years old   Male               9th grade   1.75  52.16
## 5445             15 years old   Male               9th grade   1.75  74.39
## 5446             15 years old   Male               9th grade   1.75  99.79
## 5447             15 years old   Male               9th grade   1.75  61.24
## 5448             15 years old Female               9th grade   1.75  53.98
## 5449             14 years old   Male               9th grade   1.75  72.58
## 5450             14 years old   Male               9th grade   1.75  81.65
## 5451             15 years old   Male               9th grade   1.75  61.69
## 5452             14 years old Female               9th grade   1.75  56.70
## 5453             15 years old   Male               9th grade   1.75  80.74
## 5454             15 years old   Male               9th grade   1.75  66.68
## 5455             15 years old   Male               9th grade   1.75  55.79
## 5456             14 years old   Male               9th grade   1.75  57.61
## 5457             15 years old   Male               9th grade   1.75 114.76
## 5458             15 years old Female               9th grade   1.75  51.26
## 5459             14 years old   Male               9th grade   1.75  79.38
## 5460             15 years old   Male               9th grade   1.75  77.11
## 5461    18 years old or older   Male              12th grade   1.73  95.26
## 5462             17 years old   Male              10th grade   1.73  70.31
## 5463             15 years old   Male              10th grade   1.73  61.24
## 5464             15 years old   Male               9th grade   1.73  61.69
## 5465             14 years old   Male               9th grade   1.73  62.60
## 5466             17 years old   Male              11th grade   1.73  79.38
## 5467             16 years old   Male              10th grade   1.73  60.33
## 5468             17 years old   Male              11th grade   1.73  84.37
## 5469             14 years old Female               9th grade   1.73  50.80
## 5470             16 years old   Male              11th grade   1.73  68.04
## 5471             15 years old   Male               9th grade   1.73  59.88
## 5472             14 years old   Male               9th grade   1.73  63.50
## 5473             15 years old   Male               9th grade   1.73  63.50
## 5474    18 years old or older   Male              12th grade   1.73  67.13
## 5475             14 years old   Male               9th grade   1.73  62.60
## 5476             17 years old   Male               9th grade   1.73  53.07
## 5477             15 years old   Male               9th grade   1.73  58.51
## 5478             15 years old Female              10th grade   1.73  68.04
## 5479             16 years old   Male              10th grade   1.73  83.92
## 5480             15 years old   Male               9th grade   1.73  56.70
## 5481             16 years old   Male              11th grade   1.73  72.58
## 5482             15 years old   Male               9th grade   1.73  63.50
## 5483             15 years old   Male              10th grade   1.73  72.58
## 5484             16 years old   Male              10th grade   1.73  58.06
## 5485             17 years old   Male              11th grade   1.73  65.77
## 5486             15 years old   Male              10th grade   1.73  50.80
## 5487    18 years old or older   Male              12th grade   1.73  72.58
## 5488    18 years old or older   Male              12th grade   1.73  89.36
## 5489             14 years old Female               9th grade   1.73  68.04
## 5490             14 years old   Male               9th grade   1.73  64.86
## 5491             17 years old Female              11th grade   1.73  56.70
## 5492             17 years old Female              12th grade   1.73  61.24
## 5493             17 years old Female              12th grade   1.73 104.33
## 5494             15 years old   Male              10th grade   1.73  72.58
## 5495             16 years old   Male              12th grade   1.73  52.16
## 5496             14 years old Female               9th grade   1.73  53.52
## 5497             17 years old   Male              12th grade   1.73  90.72
## 5498             16 years old   Male              10th grade   1.73  90.72
## 5499             17 years old   Male              12th grade   1.73  63.96
## 5500             17 years old   Male              12th grade   1.73  58.97
## 5501             16 years old Female              10th grade   1.73  93.90
## 5502             14 years old   Male               9th grade   1.73  54.43
## 5503             14 years old   Male               9th grade   1.73  65.77
## 5504             16 years old Female              11th grade   1.73  59.42
## 5505             16 years old Female              11th grade   1.73  53.07
## 5506             16 years old   Male              10th grade   1.73  73.03
## 5507             15 years old   Male               9th grade   1.73  61.24
## 5508             16 years old   Male              11th grade   1.73  70.31
## 5509             15 years old   Male              10th grade   1.73  61.69
## 5510    18 years old or older   Male              12th grade   1.73  92.99
## 5511             17 years old   Male              12th grade   1.73  77.11
## 5512             17 years old   Male              12th grade   1.73  62.60
## 5513             14 years old   Male               9th grade   1.73  65.77
## 5514    18 years old or older Female              12th grade   1.73  56.70
## 5515             15 years old   Male               9th grade   1.73  63.05
## 5516    18 years old or older   Male              12th grade   1.73  70.31
## 5517             17 years old   Male              12th grade   1.73  74.84
## 5518             15 years old Female               9th grade   1.73  90.27
## 5519             16 years old Female              11th grade   1.73  61.24
## 5520             16 years old   Male              11th grade   1.73  54.43
## 5521             17 years old   Male              12th grade   1.73  77.11
## 5522             15 years old   Male              10th grade   1.73  89.81
## 5523             16 years old   Male              11th grade   1.73 136.08
## 5524    18 years old or older   Male              12th grade   1.73  49.90
## 5525             16 years old   Male              11th grade   1.73  58.97
## 5526             16 years old   Male              11th grade   1.73  74.84
## 5527             17 years old   Male              12th grade   1.73  68.04
## 5528             17 years old   Male              12th grade   1.73 111.13
## 5529             17 years old Female              12th grade   1.73  63.50
## 5530             15 years old   Male               9th grade   1.73  70.31
## 5531             16 years old   Male              11th grade   1.73 103.87
## 5532             17 years old   Male              12th grade   1.73  72.58
## 5533             15 years old   Male               9th grade   1.73  79.38
## 5534             16 years old   Male              11th grade   1.73 113.40
## 5535             14 years old   Male               9th grade   1.73  95.26
## 5536             16 years old   Male              11th grade   1.73  62.14
## 5537             15 years old   Male               9th grade   1.73  75.75
## 5538             14 years old   Male               9th grade   1.73  88.45
## 5539             14 years old   Male               9th grade   1.73  61.24
## 5540             14 years old   Male               9th grade   1.73  55.79
## 5541             17 years old Female              12th grade   1.73  51.26
## 5542             15 years old   Male              10th grade   1.73 127.01
## 5543             15 years old Female               9th grade   1.73 106.60
## 5544             15 years old   Male              10th grade   1.73  63.50
## 5545             15 years old   Male              10th grade   1.73  66.23
## 5546             15 years old   Male              10th grade   1.73  97.07
## 5547             17 years old   Male              12th grade   1.73  63.50
## 5548             16 years old Female              12th grade   1.73  61.24
## 5549             17 years old   Male              11th grade   1.73  64.41
## 5550             16 years old   Male              10th grade   1.73  68.04
## 5551             17 years old Female              12th grade   1.73  52.16
## 5552             16 years old   Male              10th grade   1.73  68.04
## 5553             15 years old   Male               9th grade   1.73  61.24
## 5554             17 years old Female              12th grade   1.73  58.06
## 5555             16 years old Female              11th grade   1.73  49.90
## 5556             15 years old Female              10th grade   1.73  54.43
## 5557             15 years old   Male               9th grade   1.73  54.89
## 5558             15 years old   Male               9th grade   1.73  60.78
## 5559             14 years old Female               9th grade   1.73  77.11
## 5560             17 years old   Male              12th grade   1.73  72.58
## 5561             16 years old   Male              11th grade   1.73  64.86
## 5562             15 years old   Male              10th grade   1.73  61.24
## 5563    18 years old or older   Male              12th grade   1.73  63.50
## 5564             15 years old   Male              10th grade   1.73  67.59
## 5565             16 years old   Male              10th grade   1.73  72.58
## 5566             16 years old Female              11th grade   1.73  86.18
## 5567             17 years old Female              12th grade   1.73  83.92
## 5568             17 years old Female              12th grade   1.73  72.58
## 5569             17 years old   Male              12th grade   1.73  62.60
## 5570             16 years old Female              11th grade   1.73  58.51
## 5571             14 years old Female               9th grade   1.73  68.04
## 5572             15 years old   Male               9th grade   1.73  72.58
## 5573             15 years old Female               9th grade   1.73  49.90
## 5574             17 years old Female              12th grade   1.73  62.60
## 5575             17 years old Female              12th grade   1.73  70.31
## 5576             17 years old   Male              12th grade   1.73  74.84
## 5577             17 years old   Male              11th grade   1.73  61.24
## 5578             16 years old Female              10th grade   1.73  72.58
## 5579             16 years old   Male              10th grade   1.73  75.75
## 5580             15 years old   Male               9th grade   1.73  63.50
## 5581             14 years old   Male               9th grade   1.73  79.38
## 5582             15 years old   Male               9th grade   1.73  44.45
## 5583    18 years old or older   Male              12th grade   1.73  90.72
## 5584    18 years old or older   Male              12th grade   1.73  74.84
## 5585             17 years old Female              12th grade   1.73  86.18
## 5586             15 years old Female              10th grade   1.73  58.97
## 5587             16 years old Female              10th grade   1.73  58.97
## 5588             16 years old   Male              10th grade   1.73  72.58
## 5589             15 years old   Male              10th grade   1.73  56.70
## 5590             17 years old   Male              11th grade   1.73  70.31
## 5591    18 years old or older   Male              12th grade   1.73  74.84
## 5592             16 years old   Male              10th grade   1.73  61.24
## 5593    18 years old or older   Male              12th grade   1.73  56.70
## 5594             15 years old   Male              10th grade   1.73  74.84
## 5595             15 years old   Male              10th grade   1.73  54.89
## 5596             17 years old Female              12th grade   1.73  65.77
## 5597    18 years old or older   Male              12th grade   1.73  65.77
## 5598             17 years old   Male              11th grade   1.73  58.97
## 5599             15 years old Female              10th grade   1.73  63.50
## 5600             16 years old   Male              10th grade   1.73  65.77
## 5601    18 years old or older   Male              12th grade   1.73 113.40
## 5602             17 years old Female              12th grade   1.73 120.66
## 5603             14 years old Female               9th grade   1.73  58.06
## 5604             15 years old   Male               9th grade   1.73  91.17
## 5605             16 years old   Male              11th grade   1.73  65.77
## 5606             16 years old Female              11th grade   1.73  83.92
## 5607             14 years old   Male               9th grade   1.73  61.24
## 5608             15 years old Female              10th grade   1.73  58.97
## 5609             15 years old Female               9th grade   1.73  56.25
## 5610             17 years old   Male              12th grade   1.73  68.04
## 5611    18 years old or older   Male              12th grade   1.73  64.41
## 5612             17 years old   Male              10th grade   1.73  65.77
## 5613    18 years old or older Female              12th grade   1.73  97.07
## 5614             17 years old   Male              11th grade   1.73  72.58
## 5615    18 years old or older   Male              12th grade   1.73  83.92
## 5616    18 years old or older   Male              12th grade   1.73  74.84
## 5617             16 years old   Male              11th grade   1.73  81.65
## 5618             17 years old   Male              12th grade   1.73 104.33
## 5619             15 years old Female               9th grade   1.73  65.77
## 5620             15 years old   Male                    <NA>   1.73  68.95
## 5621             14 years old   Male               9th grade   1.73  62.14
## 5622             16 years old   Male              10th grade   1.73  61.24
## 5623             15 years old   Male               9th grade   1.73  65.77
## 5624             15 years old   Male              10th grade   1.73  72.58
## 5625             17 years old   Male              12th grade   1.73  61.69
## 5626             16 years old   Male               9th grade   1.73  62.60
## 5627             17 years old   Male              11th grade   1.73  63.96
## 5628             15 years old   Male               9th grade   1.73  68.04
## 5629             15 years old Female               9th grade   1.73  53.52
## 5630    18 years old or older   Male              12th grade   1.73  59.88
## 5631             17 years old   Male              12th grade   1.73  83.92
## 5632    18 years old or older   Male              12th grade   1.73  63.50
## 5633             15 years old   Male               9th grade   1.73  68.95
## 5634             16 years old   Male              10th grade   1.73  70.76
## 5635    18 years old or older   Male              12th grade   1.73  78.47
## 5636             16 years old   Male              10th grade   1.73  49.44
## 5637             15 years old Female              10th grade   1.73  68.04
## 5638             17 years old   Male              11th grade   1.73 106.60
## 5639             15 years old   Male              10th grade   1.73  68.04
## 5640             16 years old   Male              10th grade   1.73  57.61
## 5641             16 years old   Male              11th grade   1.73  79.38
## 5642             15 years old   Male               9th grade   1.73  88.00
## 5643             16 years old Female               9th grade   1.73  77.11
## 5644             17 years old   Male              12th grade   1.73  65.77
## 5645             17 years old Female              12th grade   1.73  65.77
## 5646             17 years old   Male              11th grade   1.73  95.26
## 5647    18 years old or older   Male              12th grade   1.73  95.26
## 5648             16 years old   Male              10th grade   1.73  78.02
## 5649    18 years old or older   Male              12th grade   1.73  58.97
## 5650             16 years old   Male              10th grade   1.73  83.01
## 5651             14 years old   Male               9th grade   1.73  65.77
## 5652             17 years old   Male              11th grade   1.73  53.07
## 5653    18 years old or older   Male              12th grade   1.73  80.29
## 5654             14 years old   Male               9th grade   1.73  58.51
## 5655    18 years old or older   Male              12th grade   1.73  47.63
## 5656             16 years old   Male              10th grade   1.73  76.20
## 5657             15 years old   Male              10th grade   1.73  61.24
## 5658             15 years old   Male              10th grade   1.73  83.92
## 5659             17 years old Female              12th grade   1.73  99.79
## 5660             15 years old Female              10th grade   1.73  56.70
## 5661    18 years old or older   Male              11th grade   1.73  79.38
## 5662             16 years old Female              11th grade   1.73  54.89
## 5663             17 years old Female              12th grade   1.73 102.06
## 5664             16 years old Female              10th grade   1.73  58.97
## 5665             16 years old   Male              10th grade   1.73  48.54
## 5666             17 years old Female              12th grade   1.73  56.70
## 5667             16 years old Female              10th grade   1.73  65.77
## 5668             16 years old   Male              11th grade   1.73  70.31
## 5669             16 years old   Male              11th grade   1.73  80.74
## 5670    18 years old or older   Male              12th grade   1.73  62.60
## 5671    18 years old or older Female              12th grade   1.73  56.70
## 5672    18 years old or older   Male              12th grade   1.73  78.93
## 5673             16 years old Female              11th grade   1.73  67.13
## 5674    18 years old or older   Male              12th grade   1.73  86.18
## 5675             14 years old Female               9th grade   1.73  49.90
## 5676             16 years old Female              10th grade   1.73  74.84
## 5677    18 years old or older   Male              12th grade   1.73  67.13
## 5678             17 years old   Male              11th grade   1.73  79.38
## 5679             14 years old   Male               9th grade   1.73  61.24
## 5680             14 years old   Male               9th grade   1.73 107.96
## 5681             14 years old   Male               9th grade   1.73  97.07
## 5682             14 years old   Male               9th grade   1.73  58.97
## 5683             14 years old   Male               9th grade   1.73  63.50
## 5684             15 years old   Male               9th grade   1.73  63.50
## 5685             17 years old Female              11th grade   1.73  58.97
## 5686             16 years old Female              10th grade   1.73  74.84
## 5687             15 years old   Male              10th grade   1.73  77.11
## 5688             17 years old   Male              11th grade   1.73  63.50
## 5689             15 years old   Male              10th grade   1.73  79.38
## 5690             15 years old   Male              10th grade   1.73  62.14
## 5691             17 years old   Male              11th grade   1.73  63.50
## 5692    18 years old or older   Male              12th grade   1.73  79.38
## 5693    18 years old or older Female              12th grade   1.73  68.04
## 5694             15 years old   Male              10th grade   1.73  72.58
## 5695             15 years old   Male               9th grade   1.73  63.50
## 5696             16 years old Female               9th grade   1.73  68.04
## 5697    18 years old or older Female              12th grade   1.73 126.10
## 5698             15 years old Female              10th grade   1.73  81.65
## 5699             17 years old Female              11th grade   1.73  58.97
## 5700             14 years old   Male               9th grade   1.73  80.29
## 5701    18 years old or older   Male              12th grade   1.73  74.84
## 5702    18 years old or older   Male              12th grade   1.73  90.72
## 5703             17 years old   Male              11th grade   1.73  71.67
## 5704             15 years old Female               9th grade   1.73  64.41
## 5705             15 years old   Male               9th grade   1.73  54.43
## 5706             14 years old   Male               9th grade   1.73  68.04
## 5707    18 years old or older   Male              12th grade   1.73  61.24
## 5708             17 years old   Male              12th grade   1.73  81.65
## 5709             16 years old Female              10th grade   1.73  77.11
## 5710             15 years old   Male               9th grade   1.73  77.11
## 5711             17 years old Female              12th grade   1.73  70.31
## 5712             17 years old Female              12th grade   1.73  74.84
## 5713             15 years old   Male               9th grade   1.73  61.69
## 5714             16 years old   Male              10th grade   1.73  77.11
## 5715             15 years old   Male              10th grade   1.73  74.39
## 5716             15 years old Female              10th grade   1.73  58.97
## 5717             16 years old   Male              10th grade   1.73  72.58
## 5718             17 years old Female              10th grade   1.73  86.18
## 5719             16 years old   Male               9th grade   1.73  58.97
## 5720             15 years old   Male               9th grade   1.73  51.26
## 5721             16 years old   Male              11th grade   1.73  65.77
## 5722             15 years old   Male              10th grade   1.73  54.43
## 5723             16 years old   Male              10th grade   1.73  68.04
## 5724             15 years old   Male              10th grade   1.73  73.94
## 5725             15 years old   Male              11th grade   1.73  88.45
## 5726             15 years old   Male              10th grade   1.73  95.26
## 5727             17 years old   Male              12th grade   1.73  70.31
## 5728             17 years old   Male              12th grade   1.73  73.48
## 5729             14 years old   Male               9th grade   1.73  58.06
## 5730             16 years old Female              11th grade   1.73  82.56
## 5731             15 years old   Male               9th grade   1.73  49.90
## 5732             15 years old Female              10th grade   1.73  65.77
## 5733             16 years old Female              11th grade   1.73  58.97
## 5734             17 years old   Male              11th grade   1.73  65.77
## 5735             15 years old   Male               9th grade   1.73  52.16
## 5736             17 years old   Male              11th grade   1.73  68.04
## 5737             17 years old   Male              12th grade   1.73  65.77
## 5738             14 years old   Male              10th grade   1.73  54.43
## 5739             17 years old   Male              11th grade   1.73  74.84
## 5740             13 years old Female               9th grade   1.73  45.81
## 5741    18 years old or older   Male              12th grade   1.73  68.04
## 5742             15 years old   Male               9th grade   1.73  81.65
## 5743             15 years old   Male              10th grade   1.73  65.77
## 5744             15 years old   Male               9th grade   1.73  68.04
## 5745             16 years old   Male              10th grade   1.73 102.06
## 5746             15 years old Female              10th grade   1.73 111.13
## 5747             16 years old Female              10th grade   1.73  53.52
## 5748             14 years old   Male               9th grade   1.73  66.23
## 5749             17 years old   Male              12th grade   1.73  73.94
## 5750             15 years old   Male               9th grade   1.73  61.24
## 5751             17 years old Female              12th grade   1.73  59.88
## 5752             17 years old   Male              11th grade   1.73  54.43
## 5753             17 years old   Male              11th grade   1.73  61.69
## 5754    18 years old or older   Male              11th grade   1.73  71.67
## 5755             15 years old   Male              10th grade   1.73  63.50
## 5756             17 years old Female              12th grade   1.73  68.04
## 5757    18 years old or older Female              12th grade   1.73  77.11
## 5758             14 years old   Male               9th grade   1.73  63.50
## 5759    18 years old or older   Male              12th grade   1.73  74.84
## 5760             15 years old Female              10th grade   1.73  49.44
## 5761             17 years old   Male              11th grade   1.73  72.58
## 5762    18 years old or older Female              12th grade   1.73  90.72
## 5763             16 years old   Male              10th grade   1.73  54.43
## 5764             17 years old Female              12th grade   1.73  63.50
## 5765             14 years old   Male               9th grade   1.73  83.92
## 5766             16 years old   Male              11th grade   1.73  63.50
## 5767             15 years old   Male               9th grade   1.73  48.99
## 5768             16 years old   Male              11th grade   1.73  77.11
## 5769    18 years old or older Female              12th grade   1.73  61.24
## 5770             15 years old   Male               9th grade   1.73  85.73
## 5771    18 years old or older   Male              12th grade   1.73  63.50
## 5772    18 years old or older   Male              12th grade   1.73  56.70
## 5773             17 years old   Male              11th grade   1.73  61.24
## 5774             17 years old Female              11th grade   1.73  59.88
## 5775             17 years old   Male              12th grade   1.73  74.84
## 5776             16 years old   Male              10th grade   1.73  61.24
## 5777             16 years old   Male              10th grade   1.73  90.72
## 5778    18 years old or older Female              12th grade   1.73  97.52
## 5779             15 years old   Male               9th grade   1.73  88.00
## 5780             14 years old Female               9th grade   1.73  67.59
## 5781             17 years old Female              11th grade   1.73  58.97
## 5782             15 years old   Male              10th grade   1.73  72.58
## 5783             14 years old   Male               9th grade   1.73  51.71
## 5784             16 years old Female              11th grade   1.73  54.43
## 5785             17 years old   Male              12th grade   1.73  65.77
## 5786             16 years old   Male              10th grade   1.73  63.50
## 5787             16 years old   Male              10th grade   1.73  83.01
## 5788             16 years old   Male              10th grade   1.73  82.56
## 5789             17 years old   Male              12th grade   1.73  61.69
## 5790             15 years old   Male              10th grade   1.73  68.04
## 5791             16 years old   Male              10th grade   1.73  72.58
## 5792             15 years old   Male              10th grade   1.73  73.03
## 5793    18 years old or older Female              12th grade   1.73  81.65
## 5794             16 years old Female              11th grade   1.73  92.99
## 5795    18 years old or older Female              12th grade   1.73 102.06
## 5796             17 years old   Male              11th grade   1.73  70.31
## 5797    18 years old or older   Male              12th grade   1.73 121.11
## 5798             16 years old   Male              11th grade   1.73  54.43
## 5799             15 years old Female              10th grade   1.73  63.50
## 5800             15 years old   Male              10th grade   1.73  77.11
## 5801             16 years old Female              11th grade   1.73  72.58
## 5802             16 years old Female              11th grade   1.73  61.24
## 5803             15 years old   Male              10th grade   1.73  61.24
## 5804             15 years old   Male               9th grade   1.73  79.38
## 5805             14 years old   Male               9th grade   1.73  54.43
## 5806             14 years old   Male               9th grade   1.73  77.11
## 5807             16 years old   Male               9th grade   1.73  61.69
## 5808             17 years old Female              12th grade   1.73  61.24
## 5809             15 years old Female              10th grade   1.73  54.43
## 5810             15 years old   Male              10th grade   1.73  58.97
## 5811             14 years old   Male               9th grade   1.73  74.84
## 5812             14 years old   Male               9th grade   1.73  59.88
## 5813             14 years old   Male               9th grade   1.73  85.73
## 5814    18 years old or older   Male              12th grade   1.73  97.52
## 5815             16 years old Female              11th grade   1.73 102.06
## 5816             17 years old   Male              12th grade   1.73  63.50
## 5817    18 years old or older Female              12th grade   1.73  55.79
## 5818    18 years old or older   Male              12th grade   1.73  61.69
## 5819             17 years old Female              11th grade   1.73  59.88
## 5820             17 years old   Male              11th grade   1.73  64.41
## 5821             17 years old   Male              12th grade   1.73  93.44
## 5822             17 years old   Male              11th grade   1.73  74.84
## 5823             16 years old   Male              11th grade   1.73  76.20
## 5824             14 years old   Male               9th grade   1.73  72.58
## 5825             17 years old   Male              11th grade   1.73  57.15
## 5826             15 years old   Male               9th grade   1.73  86.18
## 5827             14 years old   Male               9th grade   1.73  65.77
## 5828             17 years old Female              12th grade   1.73  90.72
## 5829             16 years old Female              10th grade   1.73  58.97
## 5830             16 years old Female              10th grade   1.73  88.91
## 5831             17 years old Female              12th grade   1.73  83.92
## 5832             16 years old   Male                    <NA>   1.73  56.25
## 5833             15 years old   Male              10th grade   1.73  61.24
## 5834             16 years old   Male              10th grade   1.73  77.11
## 5835             17 years old   Male              11th grade   1.73  88.91
## 5836             16 years old   Male              10th grade   1.73  88.91
## 5837    18 years old or older   Male              12th grade   1.73  55.34
## 5838             15 years old   Male              10th grade   1.73  61.24
## 5839             15 years old   Male              10th grade   1.73  63.50
## 5840             14 years old Female               9th grade   1.73  58.97
## 5841             17 years old Female              11th grade   1.73  86.18
## 5842             17 years old Female              11th grade   1.73  86.18
## 5843    18 years old or older Female              12th grade   1.73  61.24
## 5844    18 years old or older   Male              12th grade   1.73  87.09
## 5845             15 years old   Male               9th grade   1.73  83.01
## 5846             14 years old   Male               9th grade   1.73  55.79
## 5847             17 years old   Male              12th grade   1.73  97.52
## 5848             15 years old   Male               9th grade   1.73  58.97
## 5849             16 years old   Male              11th grade   1.73  86.18
## 5850             17 years old   Male              11th grade   1.73  70.31
## 5851             15 years old   Male               9th grade   1.73  62.14
## 5852             16 years old   Male              10th grade   1.73  53.52
## 5853             15 years old   Male              10th grade   1.73  65.77
## 5854             16 years old   Male              10th grade   1.73  87.54
## 5855             15 years old   Male              10th grade   1.73  58.97
## 5856             17 years old   Male              11th grade   1.73  58.51
## 5857             17 years old Female              11th grade   1.73  70.31
## 5858             16 years old   Male              11th grade   1.73  68.04
## 5859             15 years old   Male               9th grade   1.73  63.50
## 5860             15 years old   Male              10th grade   1.73 117.94
## 5861    18 years old or older Female              12th grade   1.73  54.43
## 5862             17 years old   Male              12th grade   1.73  82.56
## 5863             17 years old Female              11th grade   1.73  54.43
## 5864             17 years old   Male              11th grade   1.73 102.06
## 5865             16 years old Female              10th grade   1.73  84.37
## 5866             15 years old   Male               9th grade   1.73  90.72
## 5867             14 years old   Male               9th grade   1.73  70.76
## 5868             15 years old   Male               9th grade   1.73  63.50
## 5869             14 years old Female               9th grade   1.73  61.69
## 5870             16 years old   Male              11th grade   1.73  62.60
## 5871             16 years old   Male              10th grade   1.73  52.16
## 5872             17 years old   Male              11th grade   1.73  49.90
## 5873             16 years old   Male              10th grade   1.73  57.15
## 5874             14 years old   Male               9th grade   1.73  56.70
## 5875             17 years old Female              11th grade   1.73  45.36
## 5876             16 years old   Male              10th grade   1.73  78.47
## 5877    18 years old or older   Male              12th grade   1.73  76.20
## 5878             16 years old   Male              11th grade   1.73  97.07
## 5879    18 years old or older   Male              12th grade   1.73  83.46
## 5880             16 years old   Male               9th grade   1.73  63.50
## 5881             16 years old   Male              10th grade   1.73 122.47
## 5882             17 years old   Male              11th grade   1.73  90.72
## 5883             16 years old   Male              10th grade   1.73  66.68
## 5884             15 years old   Male               9th grade   1.73  54.43
## 5885    18 years old or older   Male              12th grade   1.73  63.50
## 5886             17 years old Female              12th grade   1.73  54.43
## 5887             16 years old   Male              10th grade   1.73  58.97
## 5888             17 years old   Male              11th grade   1.73  95.26
## 5889             16 years old   Male              10th grade   1.73  58.97
## 5890             17 years old   Male              11th grade   1.73  63.50
## 5891             16 years old   Male              11th grade   1.73  56.70
## 5892             16 years old   Male              10th grade   1.73  48.08
## 5893    18 years old or older Female              12th grade   1.73  72.12
## 5894             15 years old Female               9th grade   1.73  71.22
## 5895             17 years old   Male              12th grade   1.73  77.11
## 5896    18 years old or older   Male              11th grade   1.73  48.08
## 5897             15 years old Female              10th grade   1.73  58.97
## 5898             15 years old   Male              10th grade   1.73  62.60
## 5899             17 years old   Male              12th grade   1.73  92.99
## 5900             17 years old   Male              12th grade   1.73  81.65
## 5901             16 years old   Male              10th grade   1.73  63.96
## 5902             16 years old   Male              11th grade   1.73  63.50
## 5903             16 years old   Male              10th grade   1.73  86.18
## 5904             16 years old   Male              10th grade   1.73  61.24
## 5905             15 years old   Male              10th grade   1.73  90.72
## 5906    18 years old or older   Male              12th grade   1.73  72.58
## 5907             15 years old Female              10th grade   1.73  86.18
## 5908             17 years old Female              11th grade   1.73  58.97
## 5909             14 years old   Male               9th grade   1.73  45.36
## 5910             15 years old   Male               9th grade   1.73  97.52
## 5911             17 years old   Male              10th grade   1.73  79.38
## 5912             15 years old   Male               9th grade   1.73  86.18
## 5913             16 years old   Male              10th grade   1.73  90.72
## 5914             15 years old   Male              10th grade   1.73  68.04
## 5915             16 years old   Male              10th grade   1.73  68.04
## 5916             15 years old   Male              10th grade   1.73  58.97
## 5917             15 years old   Male              10th grade   1.73  57.15
## 5918             17 years old Female              12th grade   1.73  63.50
## 5919    18 years old or older   Male              11th grade   1.73 116.12
## 5920             15 years old   Male              10th grade   1.73  81.65
## 5921             17 years old   Male              11th grade   1.73  68.95
## 5922             15 years old   Male               9th grade   1.73  83.92
## 5923    18 years old or older   Male              12th grade   1.73  58.97
## 5924             16 years old   Male              11th grade   1.73  54.43
## 5925             17 years old   Male              12th grade   1.73  58.97
## 5926             17 years old   Male              12th grade   1.73  97.52
## 5927             17 years old   Male              12th grade   1.73  71.22
## 5928             15 years old Female               9th grade   1.73  58.97
## 5929             16 years old   Male              10th grade   1.73  61.24
## 5930    18 years old or older   Male              12th grade   1.73 104.78
## 5931             15 years old   Male               9th grade   1.73  83.92
## 5932             17 years old   Male              11th grade   1.73  95.26
## 5933             17 years old   Male              11th grade   1.73  56.25
## 5934             15 years old   Male              10th grade   1.73  74.84
## 5935    18 years old or older   Male              12th grade   1.73  95.26
## 5936             17 years old   Male              11th grade   1.73 113.40
## 5937    18 years old or older   Male              12th grade   1.73  65.77
## 5938    18 years old or older Female              12th grade   1.73 117.94
## 5939             15 years old   Male               9th grade   1.73  95.26
## 5940             15 years old   Male               9th grade   1.73 106.60
## 5941             17 years old   Male              12th grade   1.73 127.01
## 5942             14 years old   Male               9th grade   1.73 104.33
## 5943             17 years old   Male              11th grade   1.73  99.34
## 5944             17 years old Female              12th grade   1.73  68.04
## 5945             16 years old   Male               9th grade   1.73  93.90
## 5946             16 years old   Male              10th grade   1.73  74.39
## 5947             16 years old Female              11th grade   1.73  51.71
## 5948             15 years old   Male               9th grade   1.73  99.79
## 5949             17 years old Female              12th grade   1.73  81.65
## 5950    18 years old or older   Male              12th grade   1.73  63.50
## 5951             15 years old   Male              10th grade   1.73  83.92
## 5952    18 years old or older   Male              12th grade   1.73  81.65
## 5953             17 years old   Male              12th grade   1.73 122.47
## 5954             14 years old   Male               9th grade   1.73  40.82
## 5955             16 years old   Male              11th grade   1.73  95.26
## 5956             14 years old   Male               9th grade   1.73  83.01
## 5957             16 years old Female              11th grade   1.73  74.84
## 5958             15 years old   Male               9th grade   1.73  57.61
## 5959             15 years old   Male              10th grade   1.73  82.56
## 5960             16 years old Female              11th grade   1.73  90.72
## 5961             16 years old Female              10th grade   1.73  65.32
## 5962             14 years old Female               9th grade   1.73  70.76
## 5963             16 years old Female              11th grade   1.73  85.73
## 5964             16 years old   Male              11th grade   1.73  60.33
## 5965    18 years old or older   Male              12th grade   1.73  74.84
## 5966             16 years old Female              11th grade   1.73  70.31
## 5967             16 years old   Male              11th grade   1.73  74.84
## 5968             16 years old   Male              11th grade   1.73  49.44
## 5969             17 years old   Male              11th grade   1.73  95.26
## 5970             15 years old Female              10th grade   1.73  53.98
## 5971             17 years old   Male              11th grade   1.73  63.50
## 5972             16 years old Female              10th grade   1.73  74.84
## 5973             16 years old Female              10th grade   1.73  74.84
## 5974    18 years old or older   Male              12th grade   1.73  63.50
## 5975             15 years old Female              10th grade   1.73  63.50
## 5976             16 years old   Male              10th grade   1.73 108.86
## 5977             16 years old Female              10th grade   1.73 111.13
## 5978             14 years old   Male               9th grade   1.73  54.43
## 5979             16 years old Female              10th grade   1.73  80.29
## 5980             17 years old Female              11th grade   1.73  57.61
## 5981             15 years old   Male               9th grade   1.73  56.70
## 5982             16 years old Female              11th grade   1.73  56.70
## 5983             15 years old Female              10th grade   1.73  59.42
## 5984             14 years old Female               9th grade   1.73  58.51
## 5985             16 years old   Male              11th grade   1.73  70.31
## 5986             16 years old   Male              10th grade   1.73  46.72
## 5987             14 years old   Male               9th grade   1.73  58.06
## 5988             15 years old   Male               9th grade   1.73  72.58
## 5989             16 years old   Male              11th grade   1.73  87.09
## 5990             14 years old Female               9th grade   1.73 106.60
## 5991             17 years old   Male              11th grade   1.73  64.86
## 5992    18 years old or older   Male              12th grade   1.73  56.70
## 5993             17 years old   Male              11th grade   1.73  74.39
## 5994             15 years old   Male               9th grade   1.73  61.24
## 5995             17 years old Female              11th grade   1.73  68.04
## 5996             17 years old   Male              12th grade   1.73  65.77
## 5997             14 years old   Male               9th grade   1.73  90.72
## 5998    18 years old or older   Male              12th grade   1.73  72.58
## 5999             17 years old   Male              12th grade   1.73  64.41
## 6000             17 years old   Male              11th grade   1.73  54.43
## 6001             15 years old Female               9th grade   1.73  56.70
## 6002             14 years old   Male               9th grade   1.73  52.62
## 6003             17 years old   Male              12th grade   1.73  81.65
## 6004             15 years old   Male               9th grade   1.73  79.38
## 6005             16 years old   Male              10th grade   1.73  74.84
## 6006             17 years old Female              10th grade   1.73  92.99
## 6007             16 years old   Male              11th grade   1.73  81.65
## 6008             15 years old   Male               9th grade   1.73  64.41
## 6009             15 years old   Male               9th grade   1.73 119.75
## 6010             16 years old   Male               9th grade   1.73  81.65
## 6011             15 years old Female               9th grade   1.73  58.97
## 6012             14 years old   Male               9th grade   1.73  68.04
## 6013             17 years old Female              10th grade   1.73  94.35
## 6014             16 years old   Male              11th grade   1.73  61.24
## 6015    18 years old or older   Male              12th grade   1.73  65.77
## 6016    18 years old or older   Male              12th grade   1.73  63.50
## 6017             15 years old Female               9th grade   1.73  68.04
## 6018             14 years old   Male               9th grade   1.73  98.43
## 6019             16 years old   Male              10th grade   1.73  68.04
## 6020             14 years old   Male               9th grade   1.73  72.58
## 6021             16 years old Female              10th grade   1.73  63.50
## 6022             17 years old   Male              11th grade   1.73  60.78
## 6023             15 years old   Male               9th grade   1.73  96.62
## 6024             16 years old   Male              10th grade   1.73  94.35
## 6025             16 years old   Male              11th grade   1.73  54.43
## 6026             16 years old Female              10th grade   1.73 102.06
## 6027             17 years old Female              11th grade   1.73  48.99
## 6028             15 years old Female               9th grade   1.73 114.31
## 6029             15 years old Female               9th grade   1.73  95.26
## 6030             14 years old   Male               9th grade   1.73  52.62
## 6031             16 years old   Male              11th grade   1.73  78.02
## 6032             15 years old   Male               9th grade   1.73  65.77
## 6033             17 years old   Male              10th grade   1.73  79.38
## 6034             15 years old   Male               9th grade   1.73  61.24
## 6035             15 years old   Male               9th grade   1.73  77.11
## 6036    18 years old or older   Male              12th grade   1.73  61.24
## 6037             15 years old   Male               9th grade   1.73  53.52
## 6038             15 years old   Male              10th grade   1.73  68.04
## 6039             16 years old   Male               9th grade   1.73  83.92
## 6040    18 years old or older   Male              12th grade   1.73  90.72
## 6041             16 years old   Male              11th grade   1.73  65.77
## 6042             16 years old   Male              11th grade   1.73  79.38
## 6043             17 years old Female              12th grade   1.73  62.60
## 6044             16 years old   Male              10th grade   1.73  63.05
## 6045             17 years old   Male              11th grade   1.73  61.24
## 6046             16 years old   Male              10th grade   1.73  63.50
## 6047             16 years old   Male              11th grade   1.73  83.92
## 6048             15 years old   Male               9th grade   1.73  47.63
## 6049             16 years old Female              11th grade   1.73  54.43
## 6050             17 years old   Male              11th grade   1.73  71.67
## 6051             16 years old   Male              11th grade   1.73  81.65
## 6052             17 years old   Male              12th grade   1.73  74.84
## 6053             15 years old Female               9th grade   1.73  73.48
## 6054             17 years old   Male              12th grade   1.73  79.38
## 6055             17 years old   Male              11th grade   1.73  81.65
## 6056    18 years old or older Female              11th grade   1.73  97.52
## 6057             17 years old Female              12th grade   1.73  74.84
## 6058             17 years old Female              11th grade   1.73  55.79
## 6059             17 years old   Male              11th grade   1.73  63.50
## 6060             17 years old Female              12th grade   1.73  99.79
## 6061             17 years old   Male              11th grade   1.73 117.94
## 6062             16 years old   Male              10th grade   1.73  68.95
## 6063             14 years old Female               9th grade   1.73 127.01
## 6064             14 years old   Male               9th grade   1.73  72.58
## 6065    18 years old or older   Male              12th grade   1.73  72.58
## 6066             16 years old   Male               9th grade   1.73  59.42
## 6067    18 years old or older Female              12th grade   1.73  61.24
## 6068             17 years old Female              12th grade   1.73  90.72
## 6069             16 years old   Male              11th grade   1.73  58.97
## 6070             16 years old   Male              11th grade   1.73  61.69
## 6071             15 years old Female               9th grade   1.73 106.14
## 6072             17 years old   Male              11th grade   1.73  86.18
## 6073             16 years old   Male              10th grade   1.73  60.33
## 6074             16 years old   Male              10th grade   1.73  58.97
## 6075             16 years old Female              10th grade   1.73  67.59
## 6076             15 years old   Male               9th grade   1.73  70.76
## 6077             17 years old Female              10th grade   1.73  51.26
## 6078    18 years old or older   Male              12th grade   1.73  86.18
## 6079             16 years old   Male               9th grade   1.73  72.58
## 6080             16 years old Female              11th grade   1.73  52.16
## 6081    18 years old or older   Male              12th grade   1.73  73.03
## 6082             15 years old   Male               9th grade   1.73 106.60
## 6083             16 years old Female              10th grade   1.73  92.99
## 6084             14 years old Female               9th grade   1.73  52.62
## 6085             15 years old   Male               9th grade   1.73  80.74
## 6086             16 years old Female              11th grade   1.73 108.86
## 6087             15 years old   Male               9th grade   1.73  74.84
## 6088             16 years old Female               9th grade   1.73 161.48
## 6089             16 years old   Male              10th grade   1.73  59.88
## 6090    18 years old or older Female              12th grade   1.73  92.99
## 6091             17 years old Female              12th grade   1.73  81.65
## 6092             17 years old Female              11th grade   1.73  83.92
## 6093             16 years old   Male              10th grade   1.73  65.77
## 6094    18 years old or older Female              12th grade   1.73 123.83
## 6095             16 years old Female              10th grade   1.73  77.11
## 6096             17 years old   Male              12th grade   1.73  84.82
## 6097             17 years old   Male              11th grade   1.73  55.79
## 6098             16 years old   Male              10th grade   1.73  95.26
## 6099             17 years old Female              11th grade   1.73 113.40
## 6100             16 years old   Male              10th grade   1.73  81.65
## 6101    18 years old or older   Male              12th grade   1.73  99.79
## 6102             17 years old   Male              11th grade   1.73  82.56
## 6103             15 years old Female               9th grade   1.73  72.58
## 6104             17 years old Female              12th grade   1.73 122.47
## 6105             17 years old Female              12th grade   1.73  63.50
## 6106             15 years old   Male               9th grade   1.73  65.77
## 6107             15 years old   Male               9th grade   1.73  58.97
## 6108             15 years old   Male              10th grade   1.73  56.70
## 6109             17 years old   Male              11th grade   1.73 102.06
## 6110             16 years old   Male              11th grade   1.73  63.50
## 6111             16 years old Female              10th grade   1.73  49.90
## 6112             16 years old   Male              10th grade   1.73  63.50
## 6113    18 years old or older   Male              12th grade   1.73  56.70
## 6114             17 years old Female              11th grade   1.73 112.95
## 6115             16 years old Female              10th grade   1.73  61.24
## 6116             14 years old Female               9th grade   1.73  63.50
## 6117    18 years old or older   Male              11th grade   1.73  88.91
## 6118             16 years old Female              11th grade   1.73  55.34
## 6119             16 years old Female              10th grade   1.73  68.04
## 6120    18 years old or older Female              12th grade   1.73 130.64
## 6121             17 years old   Male              12th grade   1.73  74.84
## 6122    18 years old or older   Male              12th grade   1.73 120.20
## 6123             16 years old Female              11th grade   1.73  61.24
## 6124             15 years old Female              10th grade   1.73  54.89
## 6125             17 years old   Male              11th grade   1.73  76.20
## 6126             15 years old Female              10th grade   1.73  58.97
## 6127             17 years old   Male              12th grade   1.73  90.72
## 6128    18 years old or older Female              12th grade   1.73  63.50
## 6129             17 years old Female              12th grade   1.73  86.18
## 6130             14 years old   Male               9th grade   1.73  79.38
## 6131             15 years old   Male               9th grade   1.73  67.13
## 6132             16 years old   Male              11th grade   1.73  74.84
## 6133             17 years old Female              12th grade   1.73 113.40
## 6134             15 years old   Male              10th grade   1.73  83.92
## 6135             17 years old   Male              12th grade   1.73  83.92
## 6136             16 years old   Male              10th grade   1.73  83.92
## 6137    18 years old or older   Male              12th grade   1.73  90.72
## 6138             17 years old   Male              12th grade   1.73  79.83
## 6139    18 years old or older   Male              11th grade   1.73  83.92
## 6140             17 years old   Male              12th grade   1.73  55.34
## 6141    18 years old or older   Male              12th grade   1.73  81.65
## 6142             17 years old Female              12th grade   1.73  58.97
## 6143             16 years old Female              11th grade   1.73  58.97
## 6144             16 years old Female              11th grade   1.73  52.62
## 6145             17 years old   Male              12th grade   1.73  77.11
## 6146             16 years old   Male              10th grade   1.73  45.36
## 6147             17 years old Female              12th grade   1.73  98.88
## 6148             16 years old   Male               9th grade   1.73  72.58
## 6149    18 years old or older Female              12th grade   1.73  81.65
## 6150    18 years old or older   Male              12th grade   1.73  63.50
## 6151             15 years old   Male               9th grade   1.73  99.79
## 6152             17 years old   Male              12th grade   1.73  72.12
## 6153             16 years old   Male              11th grade   1.73  60.33
## 6154             17 years old   Male              12th grade   1.73  53.07
## 6155             15 years old   Male              10th grade   1.73  76.20
## 6156             15 years old   Male               9th grade   1.73  52.16
## 6157             15 years old   Male               9th grade   1.73  96.16
## 6158             15 years old Female              10th grade   1.73  70.76
## 6159             14 years old   Male               9th grade   1.73  55.34
## 6160             17 years old   Male              12th grade   1.73  63.50
## 6161             16 years old   Male              11th grade   1.73  63.50
## 6162             17 years old   Male              11th grade   1.73  84.82
## 6163             17 years old Female              12th grade   1.73  47.63
## 6164             17 years old   Male              11th grade   1.73  61.24
## 6165             16 years old   Male              11th grade   1.73  68.04
## 6166             17 years old   Male              11th grade   1.73  92.99
## 6167             16 years old   Male               9th grade   1.73 112.04
## 6168             15 years old Female              10th grade   1.73  45.36
## 6169             17 years old   Male              12th grade   1.73  63.50
## 6170             16 years old   Male              11th grade   1.73  99.79
## 6171             17 years old   Male              11th grade   1.73  65.77
## 6172             17 years old   Male              11th grade   1.73  74.84
## 6173             15 years old   Male               9th grade   1.73  58.97
## 6174             16 years old   Male              10th grade   1.73  49.90
## 6175             15 years old   Male               9th grade   1.73  58.97
## 6176             17 years old   Male              11th grade   1.73  68.04
## 6177             16 years old   Male              10th grade   1.73  68.04
## 6178    18 years old or older   Male              12th grade   1.73 111.13
## 6179    18 years old or older   Male              12th grade   1.73  81.65
## 6180             15 years old   Male               9th grade   1.73  84.37
## 6181             15 years old   Male               9th grade   1.73  56.70
## 6182             16 years old   Male              10th grade   1.73 113.40
## 6183             17 years old   Male              12th grade   1.73  63.50
## 6184             16 years old Female              10th grade   1.73  90.72
## 6185    18 years old or older Female              12th grade   1.73  74.84
## 6186             17 years old Female              10th grade   1.73  90.72
## 6187             16 years old   Male              11th grade   1.73  49.90
## 6188             16 years old   Male              10th grade   1.73  68.04
## 6189             17 years old Female              12th grade   1.73  77.11
## 6190             16 years old   Male              10th grade   1.73  67.13
## 6191             17 years old   Male              11th grade   1.73  61.24
## 6192             14 years old   Male               9th grade   1.73  68.04
## 6193             15 years old Female               9th grade   1.73  45.36
## 6194             17 years old   Male              11th grade   1.73 158.76
## 6195             17 years old Female              12th grade   1.73  97.52
## 6196    18 years old or older   Male              12th grade   1.73  81.65
## 6197    18 years old or older   Male              12th grade   1.73  88.45
## 6198             17 years old   Male              12th grade   1.73  62.60
## 6199             16 years old   Male              11th grade   1.73  68.04
## 6200             16 years old   Male              10th grade   1.73  56.70
## 6201             15 years old Female              10th grade   1.73  81.65
## 6202             15 years old Female              10th grade   1.73  56.70
## 6203             15 years old Female              10th grade   1.73  62.60
## 6204             16 years old Female              10th grade   1.73  71.67
## 6205             16 years old   Male              10th grade   1.73  63.50
## 6206             16 years old   Male              10th grade   1.73  56.70
## 6207             17 years old   Male              11th grade   1.73  54.43
## 6208             16 years old   Male              10th grade   1.73  81.65
## 6209             16 years old   Male              11th grade   1.73  70.31
## 6210             17 years old   Male              12th grade   1.73  88.45
## 6211             15 years old   Male               9th grade   1.73  57.15
## 6212             16 years old   Male              10th grade   1.73  65.77
## 6213             16 years old   Male              11th grade   1.73  61.24
## 6214             16 years old   Male              10th grade   1.73 106.60
## 6215             16 years old   Male              11th grade   1.73  67.13
## 6216             15 years old Female               9th grade   1.73  59.42
## 6217             14 years old   Male               9th grade   1.73  83.01
## 6218             15 years old   Male               9th grade   1.73  79.38
## 6219             16 years old   Male              10th grade   1.73  71.67
## 6220    18 years old or older   Male              12th grade   1.73  63.50
## 6221             16 years old   Male              10th grade   1.73  52.62
## 6222             17 years old   Male              12th grade   1.73  72.58
## 6223             16 years old   Male              10th grade   1.73  65.77
## 6224             16 years old Female              11th grade   1.73  61.24
## 6225    18 years old or older Female              12th grade   1.73 108.86
## 6226             17 years old Female              11th grade   1.73  82.56
## 6227             14 years old   Male               9th grade   1.73  67.13
## 6228             15 years old   Male               9th grade   1.73  65.77
## 6229             15 years old   Male               9th grade   1.73  83.92
## 6230             14 years old   Male               9th grade   1.73  61.24
## 6231             17 years old   Male              11th grade   1.73  74.84
## 6232    18 years old or older Female              12th grade   1.73  89.81
## 6233             17 years old   Male              12th grade   1.73  58.97
## 6234             17 years old   Male              11th grade   1.73  70.31
## 6235             16 years old Female              11th grade   1.73  63.50
## 6236             17 years old   Male              11th grade   1.73  71.67
## 6237             17 years old   Male              10th grade   1.73  68.04
## 6238             16 years old   Male              10th grade   1.73  70.31
## 6239             17 years old   Male              11th grade   1.73  58.97
## 6240             15 years old   Male               9th grade   1.73  71.67
## 6241             15 years old Female               9th grade   1.73  61.24
## 6242             15 years old   Male               9th grade   1.73  54.89
## 6243             15 years old   Male               9th grade   1.73  58.97
## 6244    18 years old or older   Male              12th grade   1.73  90.72
## 6245             16 years old   Male              11th grade   1.73  91.17
## 6246             16 years old   Male              10th grade   1.73  78.47
## 6247             15 years old   Male              10th grade   1.73 104.33
## 6248             15 years old Female               9th grade   1.73  58.51
## 6249             15 years old   Male               9th grade   1.73  61.69
## 6250             14 years old Female               9th grade   1.73  68.04
## 6251             16 years old Female              10th grade   1.73  63.50
## 6252             17 years old   Male              11th grade   1.73  67.59
## 6253             17 years old Female              11th grade   1.73  88.45
## 6254             17 years old   Male              11th grade   1.73 108.86
## 6255    18 years old or older Female              12th grade   1.73  63.50
## 6256             17 years old Female              12th grade   1.73  61.24
## 6257             17 years old Female              12th grade   1.73  52.16
## 6258             17 years old Female              12th grade   1.73  86.18
## 6259             17 years old   Male              12th grade   1.73  61.24
## 6260             17 years old   Male              11th grade   1.73  61.24
## 6261             14 years old   Male               9th grade   1.73 117.48
## 6262             14 years old   Male               9th grade   1.73  63.50
## 6263             15 years old   Male              10th grade   1.73  83.01
## 6264             16 years old   Male              10th grade   1.73  68.04
## 6265             15 years old   Male              10th grade   1.73  77.11
## 6266             16 years old   Male              11th grade   1.73  54.43
## 6267    18 years old or older Female              12th grade   1.73  71.22
## 6268             17 years old   Male              12th grade   1.73  67.59
## 6269             14 years old   Male               9th grade   1.73  74.84
## 6270             17 years old Female              11th grade   1.73  99.34
## 6271             14 years old   Male               9th grade   1.73  65.77
## 6272             14 years old   Male               9th grade   1.73  59.88
## 6273             14 years old   Male               9th grade   1.73  69.85
## 6274             14 years old   Male                    <NA>   1.73  64.86
## 6275             14 years old   Male               9th grade   1.73  48.08
## 6276             15 years old Female               9th grade   1.73  88.45
## 6277             14 years old   Male               9th grade   1.73  51.26
## 6278             14 years old Female               9th grade   1.73  97.52
## 6279             14 years old   Male               9th grade   1.73  54.43
## 6280             14 years old   Male               9th grade   1.73  66.23
## 6281             16 years old   Male              10th grade   1.73  86.18
## 6282             16 years old   Male              10th grade   1.73 108.41
## 6283             16 years old   Male              10th grade   1.73  58.06
## 6284             16 years old   Male              10th grade   1.73  72.58
## 6285             16 years old   Male              10th grade   1.73  44.00
## 6286             15 years old   Male              10th grade   1.73  67.59
## 6287             16 years old   Male              10th grade   1.73  83.92
## 6288             17 years old Female              12th grade   1.73 113.40
## 6289             17 years old   Male              11th grade   1.73  99.79
## 6290    18 years old or older   Male              12th grade   1.73 102.06
## 6291             15 years old   Male Ungraded or other grade   1.73  48.54
## 6292             17 years old   Male              10th grade   1.73 127.01
## 6293             16 years old   Male              10th grade   1.73  61.24
## 6294             15 years old   Male              10th grade   1.73  91.17
## 6295             15 years old   Male              10th grade   1.73  66.68
## 6296    18 years old or older Female              11th grade   1.73  73.94
## 6297             17 years old   Male              12th grade   1.73  68.49
## 6298             17 years old   Male              12th grade   1.73  69.40
## 6299             17 years old   Male              11th grade   1.73 129.28
## 6300             15 years old Female               9th grade   1.73  51.26
## 6301             15 years old Female               9th grade   1.73  70.31
## 6302             16 years old   Male              10th grade   1.73  56.70
## 6303             16 years old   Male                    <NA>   1.73  58.97
## 6304             16 years old   Male              10th grade   1.73  50.80
## 6305             17 years old   Male              11th grade   1.73  68.04
## 6306             17 years old   Male              11th grade   1.73  52.16
## 6307             17 years old Female              11th grade   1.73  68.04
## 6308             17 years old   Male                    <NA>   1.73  54.43
## 6309             17 years old Female              12th grade   1.73  81.65
## 6310    18 years old or older   Male              12th grade   1.73  72.58
## 6311             17 years old Female              12th grade   1.73  68.04
## 6312    18 years old or older Female              12th grade   1.73  56.25
## 6313             15 years old   Male               9th grade   1.73  58.97
## 6314             14 years old Female               9th grade   1.73  63.50
## 6315             15 years old Female               9th grade   1.73  66.23
## 6316             15 years old   Male               9th grade   1.73  49.90
## 6317             15 years old   Male               9th grade   1.73  74.84
## 6318             15 years old Female               9th grade   1.73  53.52
## 6319             15 years old Female              10th grade   1.73  61.24
## 6320             15 years old Female              10th grade   1.73  81.65
## 6321             15 years old   Male              10th grade   1.73  63.50
## 6322    18 years old or older   Male              11th grade   1.73  56.70
## 6323             17 years old Female              11th grade   1.73  53.07
## 6324             16 years old   Male              11th grade   1.73  72.58
## 6325             16 years old Female              11th grade   1.73  63.50
## 6326             17 years old Female              11th grade   1.73 131.54
## 6327             16 years old   Male              11th grade   1.73  68.04
## 6328             17 years old   Male              12th grade   1.73  97.52
## 6329             17 years old Female              12th grade   1.73  68.04
## 6330             14 years old   Male               9th grade   1.73  74.84
## 6331             14 years old   Male               9th grade   1.73  56.70
## 6332             15 years old Female                    <NA>   1.73  61.24
## 6333             15 years old   Male               9th grade   1.73  58.97
## 6334             14 years old Female               9th grade   1.73  81.65
## 6335             15 years old Female              10th grade   1.73  61.24
## 6336             15 years old   Male              10th grade   1.73  74.84
## 6337             15 years old   Male              10th grade   1.73  90.72
## 6338             15 years old   Male              10th grade   1.73  72.58
## 6339             15 years old Female              10th grade   1.73  59.88
## 6340             16 years old   Male              10th grade   1.73  57.61
## 6341             17 years old Female              11th grade   1.73  72.58
## 6342             17 years old Female              11th grade   1.73  58.97
## 6343             16 years old Female              11th grade   1.73  63.50
## 6344    18 years old or older   Male              12th grade   1.73  63.96
## 6345    18 years old or older   Male              12th grade   1.73  63.50
## 6346             17 years old Female              12th grade   1.73  63.50
## 6347    18 years old or older   Male              11th grade   1.73 111.13
## 6348             14 years old   Male               9th grade   1.73  70.76
## 6349             14 years old   Male               9th grade   1.73  63.50
## 6350             14 years old   Male               9th grade   1.73  54.43
## 6351             14 years old Female               9th grade   1.73  65.77
## 6352             14 years old   Male               9th grade   1.73  63.05
## 6353             15 years old   Male                    <NA>   1.73  70.31
## 6354             15 years old   Male              10th grade   1.73  59.88
## 6355             16 years old   Male              10th grade   1.73  62.14
## 6356             16 years old   Male              11th grade   1.73  73.48
## 6357             17 years old   Male              11th grade   1.73  56.25
## 6358             16 years old Female              11th grade   1.73  62.60
## 6359             17 years old   Male              11th grade   1.73  89.81
## 6360    18 years old or older Female              12th grade   1.73  89.36
## 6361             17 years old   Male                    <NA>   1.73  92.99
## 6362    18 years old or older   Male              12th grade   1.73  56.25
## 6363    18 years old or older   Male              12th grade   1.73  74.84
## 6364    18 years old or older   Male              12th grade   1.73 112.49
## 6365             15 years old   Male               9th grade   1.73  68.49
## 6366             14 years old   Male               9th grade   1.73  58.97
## 6367             15 years old   Male               9th grade   1.73  61.24
## 6368             15 years old   Male               9th grade   1.73  99.79
## 6369             16 years old Female              11th grade   1.73  61.24
## 6370             15 years old Female               9th grade   1.73  81.65
## 6371             14 years old Female               9th grade   1.73  47.63
## 6372             17 years old   Male              11th grade   1.73  95.26
## 6373             16 years old   Male              11th grade   1.73 156.49
## 6374             17 years old   Male              12th grade   1.73  97.98
## 6375             17 years old   Male              12th grade   1.73  79.38
## 6376             17 years old Female              11th grade   1.73  65.77
## 6377             16 years old Female              11th grade   1.73  90.72
## 6378             15 years old   Male               9th grade   1.73  80.29
## 6379             17 years old   Male              12th grade   1.73  99.79
## 6380             16 years old   Male              10th grade   1.73  68.04
## 6381             17 years old   Male              11th grade   1.73 107.05
## 6382             16 years old   Male              10th grade   1.73  80.29
## 6383    18 years old or older   Male              12th grade   1.73  56.25
## 6384             14 years old   Male               9th grade   1.73  50.80
## 6385             16 years old   Male              11th grade   1.73  56.70
## 6386             16 years old   Male              10th grade   1.73  67.13
## 6387             15 years old   Male              10th grade   1.73 104.33
## 6388             16 years old   Male              11th grade   1.73  62.14
## 6389             17 years old Female              11th grade   1.73  56.70
## 6390             16 years old Female              10th grade   1.73  63.50
## 6391             15 years old   Male              10th grade   1.73  58.97
## 6392             17 years old   Male              12th grade   1.73  74.84
## 6393    18 years old or older   Male              12th grade   1.73  65.77
## 6394             17 years old   Male              12th grade   1.73  62.60
## 6395             17 years old   Male              12th grade   1.73 101.15
## 6396             16 years old   Male              11th grade   1.73  58.97
## 6397             16 years old Female              11th grade   1.73  52.16
## 6398             16 years old Female              11th grade   1.73  72.58
## 6399             16 years old Female              11th grade   1.73  61.69
## 6400             16 years old   Male              11th grade   1.73  50.80
## 6401             17 years old   Male              12th grade   1.73  70.31
## 6402             15 years old   Male              10th grade   1.73  97.52
## 6403             15 years old   Male              10th grade   1.73  62.14
## 6404             15 years old   Male              10th grade   1.73  62.60
## 6405             16 years old Female              11th grade   1.73  61.24
## 6406             15 years old   Male              10th grade   1.73  58.97
## 6407             16 years old Female              11th grade   1.73  90.27
## 6408             16 years old   Male              11th grade   1.73 109.77
## 6409             15 years old Female               9th grade   1.73  58.06
## 6410             17 years old   Male              12th grade   1.73  68.04
## 6411             14 years old   Male               9th grade   1.73  60.33
## 6412             15 years old Female               9th grade   1.73 101.61
## 6413             14 years old   Male               9th grade   1.73  54.43
## 6414             15 years old Female              10th grade   1.73  63.50
## 6415             16 years old   Male              11th grade   1.73  57.61
## 6416             17 years old   Male              12th grade   1.73 112.49
## 6417             14 years old Female               9th grade   1.73  68.04
## 6418             16 years old   Male              11th grade   1.73  81.65
## 6419             17 years old   Male              12th grade   1.73  68.04
## 6420             15 years old Female              10th grade   1.73 112.95
## 6421             15 years old   Male              10th grade   1.73  74.84
## 6422             16 years old Female              10th grade   1.73  54.43
## 6423             14 years old   Male               9th grade   1.73  54.43
## 6424             14 years old Female               9th grade   1.73  54.43
## 6425             14 years old Female               9th grade   1.73  56.70
## 6426             14 years old   Male               9th grade   1.73  70.76
## 6427             16 years old Female              11th grade   1.73  61.24
## 6428             16 years old   Male              11th grade   1.73  77.57
## 6429             15 years old   Male              10th grade   1.73  79.83
## 6430             17 years old   Male              12th grade   1.73  63.50
## 6431             15 years old   Male Ungraded or other grade   1.73  61.24
## 6432             15 years old   Male              10th grade   1.73  68.04
## 6433             15 years old Female              10th grade   1.73  56.70
## 6434             17 years old   Male              12th grade   1.73  56.70
## 6435             14 years old   Male               9th grade   1.73  61.24
## 6436             16 years old Female              11th grade   1.73  61.24
## 6437             15 years old   Male              10th grade   1.73  70.76
## 6438             15 years old   Male              10th grade   1.73  72.58
## 6439             15 years old Female              10th grade   1.73  49.90
## 6440             17 years old   Male              11th grade   1.73  77.11
## 6441             17 years old   Male              12th grade   1.73  67.13
## 6442             16 years old   Male              12th grade   1.73  62.60
## 6443             16 years old   Male              11th grade   1.73  58.97
## 6444             16 years old   Male              11th grade   1.73  61.24
## 6445             17 years old   Male              12th grade   1.73 108.86
## 6446             17 years old   Male              12th grade   1.73  58.97
## 6447             17 years old   Male              12th grade   1.73  65.77
## 6448             16 years old   Male              11th grade   1.73  54.43
## 6449             14 years old Female               9th grade   1.73  57.61
## 6450             15 years old   Male              10th grade   1.73  57.61
## 6451             16 years old   Male              11th grade   1.73  49.90
## 6452             16 years old Female              10th grade   1.73  68.04
## 6453             15 years old Female              10th grade   1.73  66.23
## 6454             17 years old Female              11th grade   1.73  61.24
## 6455             16 years old Female              11th grade   1.73  75.30
## 6456             15 years old   Male              10th grade   1.73  89.81
## 6457             15 years old Female              10th grade   1.73  62.14
## 6458             14 years old Female               9th grade   1.73  47.63
## 6459             15 years old Female              10th grade   1.73  90.72
## 6460             14 years old   Male               9th grade   1.73  81.65
## 6461             14 years old   Male               9th grade   1.73  50.35
## 6462             16 years old Female              11th grade   1.73  58.97
## 6463             16 years old   Male              11th grade   1.73  92.99
## 6464             15 years old   Male              10th grade   1.73  63.50
## 6465             14 years old   Male               9th grade   1.73  79.38
## 6466             15 years old   Male              10th grade   1.73  58.06
## 6467             14 years old Female               9th grade   1.73  54.43
## 6468             15 years old Female              10th grade   1.73  54.43
## 6469             16 years old Female              11th grade   1.73  81.65
## 6470    18 years old or older   Male              12th grade   1.73  62.14
## 6471             17 years old   Male              12th grade   1.73 131.54
## 6472             14 years old   Male               9th grade   1.73  74.84
## 6473             14 years old   Male               9th grade   1.73  54.43
## 6474             14 years old   Male               9th grade   1.73  55.34
## 6475             15 years old   Male              10th grade   1.73  65.77
## 6476             16 years old   Male              10th grade   1.73  72.58
## 6477             16 years old Female              11th grade   1.73  54.43
## 6478             15 years old   Male              10th grade   1.73  99.79
## 6479             15 years old Female              10th grade   1.73 104.33
## 6480             14 years old   Male               9th grade   1.73  61.69
## 6481             15 years old   Male              10th grade   1.73  64.41
## 6482             15 years old   Male              10th grade   1.73  58.97
## 6483             16 years old Female              10th grade   1.73  62.14
## 6484             17 years old   Male              12th grade   1.73  49.90
## 6485             17 years old Female              12th grade   1.73  58.97
## 6486             17 years old Female              12th grade   1.73  68.04
## 6487             16 years old Female              11th grade   1.73  86.18
## 6488             16 years old   Male              11th grade   1.73  62.60
## 6489             16 years old   Male              10th grade   1.73  86.18
## 6490             14 years old   Male              10th grade   1.73  63.05
## 6491             15 years old Female              10th grade   1.73 108.86
## 6492             14 years old   Male               9th grade   1.73  58.97
## 6493             15 years old   Male               9th grade   1.73  43.55
## 6494             15 years old Female              10th grade   1.73  64.41
## 6495             15 years old   Male              10th grade   1.73  47.63
## 6496             15 years old Female              10th grade   1.73  56.25
## 6497             15 years old   Male              10th grade   1.73  62.60
## 6498             15 years old   Male              10th grade   1.73  60.33
## 6499             16 years old   Male              11th grade   1.73  52.16
## 6500             17 years old   Male              12th grade   1.73  63.50
## 6501             16 years old   Male              11th grade   1.73  70.31
## 6502             15 years old   Male              10th grade   1.73  62.60
## 6503             15 years old   Male              10th grade   1.73  72.58
## 6504             14 years old   Male               9th grade   1.73  72.58
## 6505             15 years old Female              10th grade   1.73  65.77
## 6506             14 years old Female               9th grade   1.73  53.52
## 6507             16 years old   Male              11th grade   1.73  58.97
## 6508             16 years old Female              11th grade   1.73  58.97
## 6509             15 years old   Male              10th grade   1.73  66.68
## 6510             15 years old   Male              10th grade   1.73  63.05
## 6511             16 years old   Male              11th grade   1.73  65.77
## 6512             15 years old   Male              10th grade   1.73  64.41
## 6513             14 years old   Male               9th grade   1.73  53.52
## 6514             14 years old Female               9th grade   1.73  54.43
## 6515             15 years old Female              10th grade   1.73  47.63
## 6516             17 years old   Male              12th grade   1.73  52.16
## 6517             16 years old   Male              11th grade   1.73  86.18
## 6518             14 years old   Male               9th grade   1.73  58.97
## 6519             17 years old   Male              12th grade   1.73  56.70
## 6520             14 years old   Male               9th grade   1.73  54.89
## 6521             16 years old   Male              11th grade   1.73  58.97
## 6522             16 years old   Male              11th grade   1.73  83.46
## 6523             16 years old   Male              11th grade   1.73  50.80
## 6524             16 years old   Male              11th grade   1.73  56.70
## 6525             16 years old   Male              11th grade   1.73  68.04
## 6526             16 years old Female              11th grade   1.73  81.65
## 6527             14 years old   Male               9th grade   1.73  90.72
## 6528             14 years old Female               9th grade   1.73 125.65
## 6529             14 years old   Male               9th grade   1.73  64.41
## 6530             14 years old   Male               9th grade   1.73  57.61
## 6531             17 years old   Male              11th grade   1.73  49.90
## 6532             15 years old   Male              10th grade   1.73  58.97
## 6533             17 years old   Male              12th grade   1.73  83.92
## 6534    18 years old or older   Male              11th grade   1.73  54.43
## 6535             16 years old   Male              10th grade   1.73  63.50
## 6536             15 years old   Male              10th grade   1.73  90.72
## 6537             16 years old   Male              11th grade   1.73  97.52
## 6538             15 years old Female              10th grade   1.73  70.76
## 6539             16 years old   Male              11th grade   1.73  58.97
## 6540             16 years old   Male              11th grade   1.73  64.86
## 6541             14 years old   Male               9th grade   1.73  81.65
## 6542             15 years old   Male               9th grade   1.73  81.19
## 6543             14 years old   Male               9th grade   1.73  65.77
## 6544             16 years old   Male              11th grade   1.73  70.31
## 6545    18 years old or older   Male              12th grade   1.73  73.94
## 6546    18 years old or older   Male              12th grade   1.73 102.06
## 6547             14 years old   Male               9th grade   1.73  79.38
## 6548             14 years old   Male               9th grade   1.73  47.17
## 6549             15 years old Female              10th grade   1.73  92.99
## 6550    18 years old or older Female              12th grade   1.73  72.58
## 6551             16 years old Female              11th grade   1.73  63.50
## 6552             17 years old Female              11th grade   1.73  53.52
## 6553             16 years old   Male              11th grade   1.73  63.50
## 6554             17 years old   Male              11th grade   1.73  82.56
## 6555             17 years old Female              11th grade   1.73  70.31
## 6556             15 years old   Male              10th grade   1.73  79.38
## 6557             17 years old   Male              11th grade   1.73  58.97
## 6558             16 years old   Male              10th grade   1.73  61.69
## 6559             15 years old   Male              10th grade   1.73  70.76
## 6560             17 years old   Male              11th grade   1.73  70.31
## 6561             14 years old Female               9th grade   1.73  53.52
## 6562             15 years old   Male               9th grade   1.73  59.88
## 6563             14 years old Female               9th grade   1.73  78.02
## 6564    18 years old or older   Male              12th grade   1.73  88.45
## 6565    18 years old or older   Male              12th grade   1.73  63.50
## 6566             15 years old Female              10th grade   1.73  54.43
## 6567             16 years old Female              10th grade   1.73  64.86
## 6568             15 years old Female              10th grade   1.73  54.43
## 6569             17 years old Female              11th grade   1.73  63.50
## 6570             17 years old Female              11th grade   1.73  63.50
## 6571             17 years old Female              11th grade   1.73  63.50
## 6572             17 years old   Male              11th grade   1.73  61.24
## 6573             14 years old   Male               9th grade   1.73  95.26
## 6574             14 years old Female               9th grade   1.73  84.37
## 6575    18 years old or older   Male              12th grade   1.73  65.77
## 6576             15 years old   Male               9th grade   1.73  58.51
## 6577             15 years old   Male              10th grade   1.73  74.84
## 6578             16 years old Female              10th grade   1.73  60.78
## 6579             16 years old Female              11th grade   1.73 103.42
## 6580             16 years old   Male              11th grade   1.73  57.61
## 6581             17 years old Female              12th grade   1.73  61.24
## 6582    18 years old or older Female              12th grade   1.73  77.11
## 6583             16 years old Female              11th grade   1.73  54.43
## 6584             16 years old Female              11th grade   1.73  61.24
## 6585             16 years old   Male              11th grade   1.73  65.77
## 6586             17 years old Female              11th grade   1.73  72.58
## 6587             15 years old Female               9th grade   1.73  45.36
## 6588             14 years old Female               9th grade   1.73  56.70
## 6589             16 years old Female              11th grade   1.73  64.86
## 6590             17 years old Female              11th grade   1.73 104.33
## 6591             16 years old   Male              10th grade   1.73  56.70
## 6592             16 years old Female              10th grade   1.73  61.24
## 6593             15 years old   Male               9th grade   1.73  49.90
## 6594             15 years old Female               9th grade   1.73  56.70
## 6595             14 years old   Male               9th grade   1.73  68.95
## 6596             16 years old   Male              10th grade   1.73  61.24
## 6597             16 years old Female              11th grade   1.73  61.69
## 6598             16 years old Female              10th grade   1.73  72.58
## 6599             16 years old Female              10th grade   1.73  63.50
## 6600             15 years old   Male              11th grade   1.73 156.95
## 6601             17 years old Female              12th grade   1.73  63.50
## 6602             17 years old   Male              12th grade   1.73  64.41
## 6603             15 years old   Male              10th grade   1.73  68.04
## 6604             15 years old Female              10th grade   1.73  61.24
## 6605             17 years old   Male              12th grade   1.73 127.01
## 6606             16 years old   Male              10th grade   1.73  52.16
## 6607    18 years old or older Female              12th grade   1.73  63.50
## 6608             17 years old Female              12th grade   1.73  70.31
## 6609             15 years old Female              10th grade   1.73  56.70
## 6610    18 years old or older Female              12th grade   1.73  61.24
## 6611             17 years old   Male              12th grade   1.73  67.59
## 6612             15 years old   Male              10th grade   1.73  72.58
## 6613             15 years old   Male               9th grade   1.73  72.58
## 6614             15 years old   Male               9th grade   1.73  54.43
## 6615             15 years old Female              10th grade   1.73  48.99
## 6616             16 years old Female              10th grade   1.73  58.97
## 6617             17 years old   Male              11th grade   1.73  61.24
## 6618             16 years old Female              10th grade   1.73  61.24
## 6619             16 years old   Male              11th grade   1.73 101.61
## 6620             16 years old   Male              11th grade   1.73  55.34
## 6621    18 years old or older   Male              12th grade   1.73  72.58
## 6622             16 years old   Male              10th grade   1.73  66.68
## 6623             15 years old Female              10th grade   1.73  65.77
## 6624             14 years old Female               9th grade   1.73  70.31
## 6625             14 years old Female               9th grade   1.73  83.92
## 6626             17 years old   Male              11th grade   1.73  61.69
## 6627             16 years old Female              10th grade   1.73 136.08
## 6628             16 years old   Male              11th grade   1.73  49.90
## 6629             14 years old   Male               9th grade   1.73  55.79
## 6630             14 years old   Male               9th grade   1.73  53.98
## 6631             17 years old   Male              11th grade   1.73  61.24
## 6632             15 years old   Male              10th grade   1.73  63.50
## 6633             17 years old Female              11th grade   1.73  56.70
## 6634             15 years old Female              10th grade   1.73  53.52
## 6635             16 years old   Male              11th grade   1.73  87.54
## 6636             15 years old   Male               9th grade   1.73  56.70
## 6637             16 years old   Male              11th grade   1.73  65.77
## 6638             17 years old   Male              12th grade   1.73  81.65
## 6639             16 years old   Male              10th grade   1.73  87.54
## 6640             15 years old   Male               9th grade   1.73  92.99
## 6641             17 years old   Male              11th grade   1.73  68.04
## 6642             14 years old   Male               9th grade   1.73  58.97
## 6643    18 years old or older Female              12th grade   1.73  53.52
## 6644             17 years old   Male              11th grade   1.73  52.62
## 6645             16 years old   Male              11th grade   1.73  83.92
## 6646             15 years old   Male              10th grade   1.73  62.60
## 6647             14 years old   Male               9th grade   1.73  55.34
## 6648             17 years old Female              11th grade   1.73  83.92
## 6649             17 years old Female              11th grade   1.73  56.70
## 6650             16 years old   Male              10th grade   1.73  54.43
## 6651             17 years old Female              11th grade   1.73  66.23
## 6652             16 years old   Male              11th grade   1.73  64.86
## 6653             17 years old Female              11th grade   1.73  81.65
## 6654             15 years old   Male              10th grade   1.73  62.60
## 6655             15 years old   Male              10th grade   1.73  60.78
## 6656             15 years old   Male               9th grade   1.73  58.51
## 6657             15 years old   Male               9th grade   1.73  61.24
## 6658             15 years old   Male               9th grade   1.73  68.04
## 6659             15 years old Female               9th grade   1.73  81.65
## 6660             17 years old   Male              11th grade   1.73  79.38
## 6661             17 years old   Male              11th grade   1.73  72.58
## 6662    18 years old or older   Male              12th grade   1.73  94.80
## 6663             14 years old   Male               9th grade   1.73  68.04
## 6664             16 years old   Male              10th grade   1.73  61.24
## 6665             16 years old   Male              11th grade   1.73  58.97
## 6666             16 years old   Male              10th grade   1.73  69.85
## 6667             14 years old   Male               9th grade   1.73  87.54
## 6668             14 years old Female               9th grade   1.73  56.70
## 6669             15 years old   Male               9th grade   1.73 142.88
## 6670             15 years old Female               9th grade   1.73  65.77
## 6671             15 years old   Male               9th grade   1.73  56.70
## 6672             15 years old   Male               9th grade   1.73  90.72
## 6673             15 years old Female               9th grade   1.73  61.24
## 6674             14 years old Female               9th grade   1.73  54.43
## 6675             15 years old   Male               9th grade   1.73  63.50
## 6676             14 years old Female               9th grade   1.73  72.58
## 6677             16 years old   Male              10th grade   1.73  58.97
## 6678             16 years old   Male              10th grade   1.73  70.31
## 6679             17 years old Female              11th grade   1.73  63.50
## 6680             15 years old   Male              10th grade   1.73  70.31
## 6681             15 years old   Male              10th grade   1.73  58.51
## 6682             14 years old Female               9th grade   1.73  55.34
## 6683             16 years old Female              10th grade   1.73  72.58
## 6684             15 years old   Male              10th grade   1.73  68.95
## 6685             15 years old   Male               9th grade   1.73  63.05
## 6686             14 years old Female               9th grade   1.73 129.28
## 6687             16 years old   Male              11th grade   1.73 136.08
## 6688             15 years old   Male               9th grade   1.73  58.97
## 6689             16 years old   Male              11th grade   1.73  69.40
## 6690             14 years old   Male               9th grade   1.73  94.35
## 6691    18 years old or older   Male              12th grade   1.73  58.97
## 6692             17 years old Female              12th grade   1.73  99.79
## 6693             16 years old   Male              11th grade   1.73  68.04
## 6694             16 years old   Male              11th grade   1.73  68.04
## 6695             15 years old   Male              10th grade   1.73  83.92
## 6696             15 years old   Male              10th grade   1.73  53.98
## 6697             16 years old Female              10th grade   1.73  67.13
## 6698             17 years old   Male              11th grade   1.73  69.85
## 6699    18 years old or older   Male              12th grade   1.73  63.50
## 6700             15 years old   Male              10th grade   1.73  54.43
## 6701             16 years old Female              10th grade   1.73  63.50
## 6702             15 years old   Male               9th grade   1.73  83.92
## 6703             14 years old   Male               9th grade   1.73  47.63
## 6704             16 years old Female              11th grade   1.73  55.79
## 6705             17 years old   Male              11th grade   1.73  63.50
## 6706             15 years old   Male               9th grade   1.73  63.50
## 6707    18 years old or older Female              12th grade   1.73  97.52
## 6708             15 years old   Male               9th grade   1.73  62.60
## 6709             15 years old Female               9th grade   1.73  72.58
## 6710             15 years old Female              10th grade   1.73  56.70
## 6711             15 years old   Male              10th grade   1.73  49.90
## 6712             16 years old   Male               9th grade   1.73  54.43
## 6713    18 years old or older   Male              12th grade   1.73  90.72
## 6714             14 years old   Male               9th grade   1.73  57.61
## 6715             17 years old   Male              11th grade   1.73 102.06
## 6716             14 years old Female               9th grade   1.73  79.83
## 6717             16 years old Female              10th grade   1.73  70.31
## 6718             16 years old Female              10th grade   1.73  58.97
## 6719             15 years old Female              10th grade   1.73  65.77
## 6720             16 years old Female              10th grade   1.73  70.31
## 6721             16 years old   Male              11th grade   1.73  49.90
## 6722             17 years old   Male              11th grade   1.73  74.84
## 6723             16 years old   Male              10th grade   1.73  90.72
## 6724             15 years old   Male               9th grade   1.73  67.13
## 6725             14 years old   Male               9th grade   1.73  54.43
## 6726             15 years old Female               9th grade   1.73  56.70
## 6727             15 years old   Male               9th grade   1.73  49.90
## 6728             15 years old Female               9th grade   1.73  68.04
## 6729             15 years old   Male               9th grade   1.73  56.70
## 6730             15 years old   Male               9th grade   1.73  54.43
## 6731             15 years old   Male               9th grade   1.73  56.70
## 6732             14 years old   Male               9th grade   1.73  70.31
## 6733             14 years old Female               9th grade   1.73  52.16
## 6734             14 years old Female               9th grade   1.73  68.04
## 6735             15 years old   Male               9th grade   1.73  56.70
## 6736             15 years old Female               9th grade   1.73  61.24
## 6737             15 years old Female               9th grade   1.73  65.77
## 6738             14 years old   Male               9th grade   1.73  66.68
## 6739             14 years old   Male               9th grade   1.73  72.58
## 6740             15 years old Female               9th grade   1.73  62.60
## 6741             15 years old   Male               9th grade   1.73  72.58
## 6742             15 years old   Male               9th grade   1.73  74.39
## 6743             15 years old   Male               9th grade   1.73  95.26
## 6744             15 years old   Male               9th grade   1.73  56.70
## 6745             14 years old   Male               9th grade   1.73  92.53
## 6746             16 years old   Male               9th grade   1.73  68.04
## 6747             15 years old   Male               9th grade   1.73  81.65
## 6748             15 years old   Male               9th grade   1.73  58.06
## 6749             15 years old   Male               9th grade   1.73  53.52
## 6750             15 years old Female               9th grade   1.73  68.04
## 6751             16 years old   Male               9th grade   1.73  61.24
## 6752             16 years old   Male              10th grade   1.70  63.50
## 6753             17 years old   Male              10th grade   1.70  79.38
## 6754             17 years old Female              11th grade   1.70  54.43
## 6755             16 years old Female               9th grade   1.70  83.92
## 6756             17 years old Female              11th grade   1.70 131.54
## 6757             17 years old Female              10th grade   1.70 127.01
## 6758             15 years old Female              10th grade   1.70  79.83
## 6759             17 years old   Male              11th grade   1.70  88.45
## 6760             16 years old   Male              11th grade   1.70  68.49
## 6761             15 years old Female               9th grade   1.70  56.70
## 6762             15 years old   Male               9th grade   1.70  54.43
## 6763    18 years old or older   Male              11th grade   1.70 114.31
## 6764             15 years old Female               9th grade   1.70  54.43
## 6765             16 years old Female              11th grade   1.70  58.97
## 6766             14 years old   Male               9th grade   1.70  63.05
## 6767    18 years old or older   Male              12th grade   1.70  65.77
## 6768             14 years old Female               9th grade   1.70 124.74
## 6769             17 years old Female              10th grade   1.70  81.65
## 6770             15 years old   Male               9th grade   1.70  54.43
## 6771             17 years old   Male              11th grade   1.70  54.43
## 6772             15 years old   Male              10th grade   1.70  60.78
## 6773             16 years old   Male              10th grade   1.70  57.61
## 6774             15 years old   Male              10th grade   1.70  51.26
## 6775             17 years old   Male              11th grade   1.70  54.43
## 6776             16 years old   Male              10th grade   1.70  61.24
## 6777    18 years old or older Female              12th grade   1.70  97.98
## 6778             17 years old Female              12th grade   1.70  63.50
## 6779             15 years old   Male               9th grade   1.70  57.61
## 6780             14 years old   Male               9th grade   1.70  52.16
## 6781             15 years old   Male               9th grade   1.70  61.24
## 6782             16 years old   Male              10th grade   1.70  86.18
## 6783             17 years old Female              12th grade   1.70  71.22
## 6784             16 years old   Male               9th grade   1.70  63.50
## 6785    18 years old or older Female              12th grade   1.70  58.97
## 6786             17 years old Female              11th grade   1.70  72.58
## 6787             16 years old   Male              11th grade   1.70  54.89
## 6788             14 years old   Male              10th grade   1.70  50.80
## 6789             16 years old Female              11th grade   1.70  63.50
## 6790             15 years old   Male               9th grade   1.70 104.33
## 6791             16 years old Female              11th grade   1.70  81.65
## 6792             16 years old Female              11th grade   1.70  51.71
## 6793             16 years old Female              11th grade   1.70  63.50
## 6794             16 years old   Male              11th grade   1.70  58.97
## 6795             16 years old Female              11th grade   1.70  63.50
## 6796             15 years old Female              10th grade   1.70  81.65
## 6797             15 years old   Male              10th grade   1.70 104.33
## 6798             17 years old Female              12th grade   1.70  63.50
## 6799             16 years old   Male              11th grade   1.70  53.52
## 6800             14 years old Female               9th grade   1.70  52.16
## 6801             17 years old   Male              12th grade   1.70  65.32
## 6802             15 years old Female              10th grade   1.70  52.16
## 6803             15 years old Female               9th grade   1.70  58.97
## 6804             16 years old Female              10th grade   1.70  52.16
## 6805             14 years old   Male               9th grade   1.70  79.38
## 6806             17 years old Female              12th grade   1.70 108.86
## 6807             14 years old   Male               9th grade   1.70  68.04
## 6808             14 years old   Male               9th grade   1.70  56.70
## 6809             15 years old Female              10th grade   1.70  68.04
## 6810             14 years old   Male               9th grade   1.70  63.50
## 6811             15 years old Female               9th grade   1.70  54.43
## 6812             14 years old Female               9th grade   1.70  68.04
## 6813             16 years old   Male              11th grade   1.70  65.77
## 6814    18 years old or older   Male              12th grade   1.70  62.60
## 6815             16 years old Female              11th grade   1.70  90.72
## 6816             16 years old   Male              11th grade   1.70  84.82
## 6817             14 years old Female               9th grade   1.70  65.77
## 6818             15 years old   Male              10th grade   1.70  71.67
## 6819             17 years old   Male              12th grade   1.70  54.43
## 6820             14 years old   Male               9th grade   1.70  72.58
## 6821             17 years old   Male              12th grade   1.70  65.77
## 6822             16 years old   Male              10th grade   1.70  54.43
## 6823             17 years old Female              12th grade   1.70  61.24
## 6824             15 years old   Male               9th grade   1.70  72.58
## 6825             17 years old Female              12th grade   1.70  52.16
## 6826             14 years old   Male               9th grade   1.70  66.23
## 6827             17 years old   Male              12th grade   1.70  54.43
## 6828             15 years old   Male               9th grade   1.70  52.16
## 6829             14 years old   Male               9th grade   1.70  66.23
## 6830             14 years old   Male               9th grade   1.70  94.35
## 6831             17 years old   Male              11th grade   1.70  72.58
## 6832             15 years old   Male              10th grade   1.70  70.31
## 6833             17 years old Female              12th grade   1.70  67.59
## 6834             17 years old   Male              12th grade   1.70  62.60
## 6835             17 years old Female              12th grade   1.70  56.70
## 6836             15 years old Female               9th grade   1.70  45.81
## 6837             14 years old   Male               9th grade   1.70  58.97
## 6838             16 years old   Male              10th grade   1.70  61.24
## 6839             17 years old   Male              11th grade   1.70  52.16
## 6840             16 years old   Male              10th grade   1.70  79.38
## 6841             15 years old   Male               9th grade   1.70  79.38
## 6842             15 years old Female              10th grade   1.70  63.50
## 6843             16 years old Female              11th grade   1.70  47.63
## 6844             16 years old Female              11th grade   1.70  58.51
## 6845             15 years old   Male              10th grade   1.70  61.24
## 6846             16 years old Female              10th grade   1.70  45.36
## 6847             16 years old   Male              11th grade   1.70  68.04
## 6848             14 years old   Male               9th grade   1.70  59.88
## 6849             16 years old   Male              11th grade   1.70  61.24
## 6850             17 years old Female              11th grade   1.70  63.50
## 6851             15 years old   Male               9th grade   1.70  59.88
## 6852             17 years old   Male              11th grade   1.70  74.84
## 6853    18 years old or older   Male              12th grade   1.70  69.40
## 6854             16 years old   Male              10th grade   1.70  52.16
## 6855             16 years old   Male              11th grade   1.70  70.31
## 6856    18 years old or older   Male              12th grade   1.70  73.94
## 6857             17 years old   Male              12th grade   1.70  63.50
## 6858    18 years old or older   Male              12th grade   1.70  54.43
## 6859    18 years old or older   Male              12th grade   1.70  79.38
## 6860             17 years old   Male              12th grade   1.70  63.50
## 6861             15 years old Female               9th grade   1.70  44.45
## 6862             15 years old   Male               9th grade   1.70  60.33
## 6863             16 years old   Male              10th grade   1.70  70.31
## 6864             15 years old   Male              10th grade   1.70  55.34
## 6865             16 years old   Male              10th grade   1.70  49.90
## 6866             15 years old Female              10th grade   1.70  56.25
## 6867             16 years old   Male              10th grade   1.70  81.65
## 6868             16 years old Female              11th grade   1.70  85.28
## 6869             16 years old Female              11th grade   1.70  52.16
## 6870             17 years old Female              10th grade   1.70  63.96
## 6871             16 years old   Male              11th grade   1.70  56.25
## 6872             16 years old   Male              10th grade   1.70  83.01
## 6873             16 years old   Male              10th grade   1.70  88.45
## 6874             17 years old   Male              12th grade   1.70  58.06
## 6875    18 years old or older   Male              12th grade   1.70  86.18
## 6876    18 years old or older Female              12th grade   1.70  90.72
## 6877             17 years old Female              12th grade   1.70  58.06
## 6878             16 years old   Male               9th grade   1.70  68.04
## 6879             15 years old   Male               9th grade   1.70  56.70
## 6880             17 years old Female              12th grade   1.70  83.92
## 6881             15 years old   Male               9th grade   1.70  63.50
## 6882             15 years old   Male              10th grade   1.70  72.58
## 6883             16 years old   Male              10th grade   1.70  63.50
## 6884             15 years old   Male               9th grade   1.70  54.43
## 6885             14 years old   Male               9th grade   1.70  46.27
## 6886             16 years old   Male              11th grade   1.70  64.41
## 6887             17 years old   Male              12th grade   1.70  82.56
## 6888             15 years old Female               9th grade   1.70  86.18
## 6889             16 years old   Male              11th grade   1.70  81.65
## 6890             17 years old Female              11th grade   1.70  88.45
## 6891             15 years old Female               9th grade   1.70  60.78
## 6892             16 years old Female              10th grade   1.70  54.43
## 6893             15 years old   Male              10th grade   1.70  55.79
## 6894             17 years old   Male              12th grade   1.70  61.24
## 6895             16 years old Female              10th grade   1.70  56.70
## 6896             17 years old   Male              12th grade   1.70  70.31
## 6897             17 years old Female              12th grade   1.70  90.72
## 6898    18 years old or older Female              12th grade   1.70  57.61
## 6899             15 years old Female              10th grade   1.70  45.36
## 6900             15 years old Female               9th grade   1.70  81.65
## 6901             14 years old Female               9th grade   1.70  58.97
## 6902             15 years old Female               9th grade   1.70  53.52
## 6903             15 years old Female               9th grade   1.70  57.61
## 6904             15 years old   Male               9th grade   1.70  54.43
## 6905             14 years old   Male               9th grade   1.70  67.13
## 6906             15 years old   Male              10th grade   1.70  58.97
## 6907             16 years old   Male              10th grade   1.70  56.70
## 6908             17 years old Female              12th grade   1.70  68.04
## 6909             17 years old   Male              12th grade   1.70  58.97
## 6910             17 years old   Male              12th grade   1.70  56.70
## 6911             14 years old   Male               9th grade   1.70  68.04
## 6912             17 years old   Male              11th grade   1.70  54.43
## 6913    18 years old or older   Male              11th grade   1.70  76.20
## 6914             16 years old   Male              11th grade   1.70  78.47
## 6915             16 years old   Male              11th grade   1.70  58.97
## 6916             16 years old Female              10th grade   1.70  55.34
## 6917             15 years old   Male              10th grade   1.70  63.50
## 6918             17 years old   Male              11th grade   1.70  77.57
## 6919             17 years old   Male              12th grade   1.70  68.04
## 6920    18 years old or older   Male              12th grade   1.70  54.43
## 6921             15 years old Female              10th grade   1.70  58.97
## 6922             16 years old   Male              11th grade   1.70  78.47
## 6923             17 years old Female              12th grade   1.70  86.18
## 6924    18 years old or older   Male              11th grade   1.70  95.26
## 6925    18 years old or older Female              12th grade   1.70  58.97
## 6926             14 years old   Male               9th grade   1.70  65.32
## 6927             17 years old Female              12th grade   1.70  50.80
## 6928             14 years old   Male               9th grade   1.70  61.24
## 6929             15 years old   Male              10th grade   1.70  92.99
## 6930             17 years old   Male              12th grade   1.70  68.04
## 6931             17 years old   Male              12th grade   1.70  68.04
## 6932             17 years old   Male              11th grade   1.70  52.16
## 6933             17 years old Female              11th grade   1.70  54.43
## 6934             17 years old   Male              11th grade   1.70  63.50
## 6935             14 years old   Male               9th grade   1.70  68.04
## 6936             17 years old Female              11th grade   1.70  72.58
## 6937    18 years old or older   Male              12th grade   1.70  63.50
## 6938             15 years old Female               9th grade   1.70  54.43
## 6939    18 years old or older   Male              12th grade   1.70  72.58
## 6940             14 years old Female               9th grade   1.70  77.57
## 6941             17 years old   Male              12th grade   1.70  65.32
## 6942             15 years old   Male              10th grade   1.70  59.88
## 6943             17 years old Female              12th grade   1.70 117.03
## 6944    18 years old or older Female              12th grade   1.70  98.43
## 6945             16 years old   Male              10th grade   1.70  63.50
## 6946             17 years old   Male              11th grade   1.70  77.11
## 6947             17 years old Female              11th grade   1.70  52.16
## 6948             17 years old Female              11th grade   1.70  53.98
## 6949             15 years old   Male              10th grade   1.70  72.58
## 6950             17 years old   Male              11th grade   1.70  63.05
## 6951             15 years old Female              10th grade   1.70  59.88
## 6952             16 years old   Male               9th grade   1.70  92.99
## 6953             15 years old Female              10th grade   1.70  68.04
## 6954             17 years old   Male              11th grade   1.70 108.86
## 6955    18 years old or older Female              12th grade   1.70  74.84
## 6956    18 years old or older Female              12th grade   1.70  65.77
## 6957             16 years old Female              11th grade   1.70  68.04
## 6958             15 years old Female               9th grade   1.70  54.43
## 6959             15 years old Female              10th grade   1.70  64.86
## 6960             14 years old Female               9th grade   1.70  52.16
## 6961             15 years old   Male               9th grade   1.70  58.97
## 6962             15 years old   Male              10th grade   1.70  54.43
## 6963             15 years old   Male               9th grade   1.70  59.88
## 6964             16 years old Female              10th grade   1.70  52.16
## 6965             16 years old   Male              10th grade   1.70  56.70
## 6966             15 years old Female              10th grade   1.70  79.83
## 6967             17 years old Female              11th grade   1.70  81.65
## 6968             15 years old   Male               9th grade   1.70  45.36
## 6969             15 years old Female               9th grade   1.70  63.50
## 6970             15 years old   Male               9th grade   1.70  74.84
## 6971    18 years old or older   Male              12th grade   1.70  73.48
## 6972             15 years old   Male               9th grade   1.70  61.24
## 6973             15 years old   Male               9th grade   1.70  88.45
## 6974             15 years old Female               9th grade   1.70  72.58
## 6975    18 years old or older   Male              12th grade   1.70  63.50
## 6976             17 years old Female              12th grade   1.70  47.63
## 6977    18 years old or older Female              12th grade   1.70  68.04
## 6978             17 years old   Male              11th grade   1.70  64.86
## 6979             16 years old Female              10th grade   1.70  52.62
## 6980    18 years old or older Female              12th grade   1.70  61.24
## 6981    18 years old or older   Male              12th grade   1.70  90.72
## 6982             16 years old   Male              11th grade   1.70  69.85
## 6983             15 years old   Male               9th grade   1.70  64.41
## 6984    18 years old or older   Male              12th grade   1.70  50.80
## 6985             16 years old Female              11th grade   1.70  53.52
## 6986             17 years old   Male              11th grade   1.70  56.70
## 6987    18 years old or older   Male              12th grade   1.70  69.40
## 6988             14 years old   Male               9th grade   1.70  73.48
## 6989             16 years old   Male              10th grade   1.70  60.78
## 6990             17 years old   Male              11th grade   1.70  78.47
## 6991             15 years old   Male              10th grade   1.70  74.84
## 6992             15 years old Female              10th grade   1.70  68.04
## 6993             15 years old Female              10th grade   1.70  54.43
## 6994             16 years old Female              10th grade   1.70  56.70
## 6995             15 years old Female              10th grade   1.70  54.43
## 6996             16 years old Female              10th grade   1.70  65.77
## 6997             17 years old   Male              11th grade   1.70  68.04
## 6998             17 years old   Male              11th grade   1.70  73.94
## 6999             17 years old Female              11th grade   1.70  97.07
## 7000             14 years old   Male               9th grade   1.70  52.16
## 7001             16 years old   Male              10th grade   1.70  61.24
## 7002             16 years old   Male              10th grade   1.70  74.84
## 7003             16 years old Female              10th grade   1.70  62.14
## 7004             14 years old Female               9th grade   1.70  86.18
## 7005             14 years old   Male               9th grade   1.70  56.70
## 7006             17 years old   Male              11th grade   1.70  54.43
## 7007             15 years old Female              10th grade   1.70  95.26
## 7008    18 years old or older Female              12th grade   1.70  61.24
## 7009             15 years old   Male              10th grade   1.70  92.99
## 7010             16 years old   Male              11th grade   1.70  61.24
## 7011             17 years old   Male              11th grade   1.70  81.65
## 7012             15 years old Female               9th grade   1.70  58.97
## 7013             17 years old   Male              11th grade   1.70  65.77
## 7014             16 years old   Male              10th grade   1.70  59.42
## 7015             17 years old   Male              11th grade   1.70  68.04
## 7016             17 years old Female              12th grade   1.70  72.58
## 7017             14 years old Female               9th grade   1.70  49.44
## 7018             17 years old   Male              11th grade   1.70  88.45
## 7019             15 years old Female              10th grade   1.70  58.97
## 7020             17 years old   Male              11th grade   1.70  63.50
## 7021             15 years old   Male              10th grade   1.70  61.24
## 7022             15 years old   Male              10th grade   1.70  88.45
## 7023             16 years old   Male              11th grade   1.70  81.65
## 7024             17 years old Female              11th grade   1.70  58.97
## 7025             16 years old Female              10th grade   1.70  83.92
## 7026             15 years old   Male               9th grade   1.70  84.82
## 7027             16 years old   Male              10th grade   1.70  99.79
## 7028    18 years old or older   Male              12th grade   1.70  65.77
## 7029             17 years old   Male              12th grade   1.70  72.58
## 7030    18 years old or older   Male              12th grade   1.70  58.97
## 7031             17 years old Female              12th grade   1.70  52.16
## 7032             16 years old   Male              10th grade   1.70  86.18
## 7033             16 years old   Male              11th grade   1.70  41.73
## 7034             16 years old   Male              10th grade   1.70  82.56
## 7035             15 years old Female               9th grade   1.70  44.91
## 7036             15 years old   Male               9th grade   1.70  57.15
## 7037             14 years old Female               9th grade   1.70  52.16
## 7038             15 years old   Male              10th grade   1.70  52.16
## 7039             17 years old   Male              12th grade   1.70  61.24
## 7040             15 years old   Male              10th grade   1.70  63.50
## 7041    18 years old or older Female              12th grade   1.70  54.89
## 7042             16 years old   Male              10th grade   1.70  58.97
## 7043    18 years old or older Female              12th grade   1.70  79.38
## 7044             15 years old   Male               9th grade   1.70  61.24
## 7045    18 years old or older Female              12th grade   1.70  81.65
## 7046             15 years old Female              10th grade   1.70  54.43
## 7047             17 years old Female              11th grade   1.70  68.04
## 7048             17 years old Female              12th grade   1.70  65.77
## 7049             17 years old Female              11th grade   1.70  70.31
## 7050             17 years old Female              12th grade   1.70  58.06
## 7051             15 years old   Male               9th grade   1.70  55.34
## 7052             15 years old Female              10th grade   1.70  54.89
## 7053             15 years old   Male               9th grade   1.70  51.71
## 7054             16 years old   Male              10th grade   1.70  68.95
## 7055             15 years old Female              10th grade   1.70  78.47
## 7056             16 years old   Male              11th grade   1.70  69.40
## 7057             17 years old Female              12th grade   1.70  70.31
## 7058             16 years old   Male              10th grade   1.70  58.06
## 7059             16 years old   Male              10th grade   1.70  95.26
## 7060             15 years old   Male               9th grade   1.70  58.97
## 7061             14 years old Female                    <NA>   1.70  48.99
## 7062             16 years old Female              11th grade   1.70  74.84
## 7063             17 years old Female              12th grade   1.70  58.06
## 7064             16 years old   Male               9th grade   1.70  94.35
## 7065             17 years old Female              12th grade   1.70  58.97
## 7066             15 years old Female              10th grade   1.70 106.60
## 7067             17 years old Female              12th grade   1.70  63.50
## 7068             17 years old Female              12th grade   1.70  68.04
## 7069    18 years old or older Female              12th grade   1.70  82.56
## 7070             16 years old   Male              11th grade   1.70  68.04
## 7071    18 years old or older Female              12th grade   1.70  91.17
## 7072             15 years old   Male              10th grade   1.70  65.77
## 7073             15 years old   Male              10th grade   1.70  56.70
## 7074             17 years old   Male              12th grade   1.70  65.77
## 7075             17 years old Female              11th grade   1.70  61.24
## 7076             17 years old Female              11th grade   1.70  61.24
## 7077             15 years old   Male               9th grade   1.70  58.97
## 7078             14 years old   Male               9th grade   1.70  58.97
## 7079             15 years old Female               9th grade   1.70  68.04
## 7080             16 years old   Male              10th grade   1.70  58.97
## 7081             15 years old Female              10th grade   1.70  56.70
## 7082             17 years old   Male              11th grade   1.70  56.70
## 7083             14 years old   Male               9th grade   1.70  59.42
## 7084             16 years old   Male              10th grade   1.70  71.22
## 7085             14 years old Female               9th grade   1.70 108.86
## 7086             15 years old Female               9th grade   1.70  73.94
## 7087             17 years old Female              12th grade   1.70  61.24
## 7088             14 years old Female               9th grade   1.70  51.26
## 7089             15 years old   Male               9th grade   1.70  61.24
## 7090             14 years old Female               9th grade   1.70 113.40
## 7091             17 years old   Male              12th grade   1.70  72.58
## 7092             16 years old Female              10th grade   1.70  61.24
## 7093             16 years old Female              10th grade   1.70  76.66
## 7094             16 years old   Male              10th grade   1.70  54.89
## 7095             15 years old Female              10th grade   1.70  45.81
## 7096             17 years old   Male              11th grade   1.70  82.56
## 7097             15 years old   Male              10th grade   1.70  58.06
## 7098    18 years old or older Female              12th grade   1.70  58.97
## 7099             15 years old Female              10th grade   1.70  70.31
## 7100             14 years old   Male               9th grade   1.70  63.50
## 7101             17 years old Female              11th grade   1.70  62.60
## 7102             15 years old Female              10th grade   1.70  99.79
## 7103             16 years old   Male              10th grade   1.70  58.97
## 7104    18 years old or older Female              11th grade   1.70  59.88
## 7105    18 years old or older Female              12th grade   1.70  54.43
## 7106             17 years old Female              10th grade   1.70  68.95
## 7107             17 years old Female              10th grade   1.70  81.65
## 7108             14 years old   Male               9th grade   1.70  69.85
## 7109             16 years old   Male              10th grade   1.70  78.47
## 7110             17 years old   Male              11th grade   1.70  49.90
## 7111             14 years old Female               9th grade   1.70  53.98
## 7112    18 years old or older Female              12th grade   1.70  80.74
## 7113             17 years old Female              12th grade   1.70  58.97
## 7114             17 years old   Male              11th grade   1.70  63.96
## 7115             17 years old   Male              11th grade   1.70  74.84
## 7116             16 years old   Male              11th grade   1.70  69.40
## 7117             15 years old   Male              10th grade   1.70  72.58
## 7118             16 years old Female              10th grade   1.70  72.58
## 7119             16 years old Female              10th grade   1.70  77.11
## 7120             15 years old Female              10th grade   1.70  58.97
## 7121             16 years old Female              10th grade   1.70  55.34
## 7122             15 years old Female              10th grade   1.70  58.97
## 7123             15 years old   Male              10th grade   1.70  58.06
## 7124             14 years old   Male               9th grade   1.70  54.43
## 7125    18 years old or older   Male              12th grade   1.70  48.99
## 7126             14 years old   Male               9th grade   1.70  65.77
## 7127    18 years old or older   Male              12th grade   1.70  68.04
## 7128    18 years old or older   Male              12th grade   1.70  58.97
## 7129             17 years old Female              11th grade   1.70  90.72
## 7130             14 years old   Male               9th grade   1.70  50.80
## 7131             14 years old Female               9th grade   1.70  58.97
## 7132             14 years old Female               9th grade   1.70  68.04
## 7133             15 years old   Male               9th grade   1.70  97.98
## 7134             16 years old Female              10th grade   1.70  63.50
## 7135             17 years old   Male              11th grade   1.70  68.95
## 7136             17 years old Female              12th grade   1.70  52.16
## 7137             17 years old   Male              11th grade   1.70  74.84
## 7138    18 years old or older Female              12th grade   1.70  61.24
## 7139             17 years old Female              11th grade   1.70  63.96
## 7140    18 years old or older   Male              12th grade   1.70  63.50
## 7141             15 years old   Male               9th grade   1.70  54.43
## 7142             15 years old Female               9th grade   1.70  61.24
## 7143             15 years old   Male               9th grade   1.70  49.90
## 7144             15 years old   Male               9th grade   1.70  61.24
## 7145             15 years old   Male               9th grade   1.70  58.97
## 7146             16 years old   Male              11th grade   1.70  68.04
## 7147             15 years old Female               9th grade   1.70  61.24
## 7148             17 years old Female              11th grade   1.70  56.70
## 7149             14 years old Female               9th grade   1.70  58.97
## 7150             15 years old Female               9th grade   1.70  75.75
## 7151             14 years old Female               9th grade   1.70 116.12
## 7152             16 years old   Male              10th grade   1.70  68.04
## 7153             16 years old   Male              10th grade   1.70  65.77
## 7154             16 years old Female              10th grade   1.70  65.77
## 7155             16 years old   Male              10th grade   1.70 117.94
## 7156             15 years old   Male              10th grade   1.70  68.04
## 7157             17 years old Female              12th grade   1.70  45.36
## 7158             15 years old   Male              10th grade   1.70  58.97
## 7159             15 years old Female              10th grade   1.70  56.70
## 7160             14 years old   Male               9th grade   1.70  65.77
## 7161             15 years old Female               9th grade   1.70  64.41
## 7162             14 years old   Male               9th grade   1.70  79.38
## 7163             14 years old Female               9th grade   1.70  81.65
## 7164    18 years old or older Female              12th grade   1.70  61.24
## 7165             15 years old Female               9th grade   1.70  56.70
## 7166    18 years old or older Female              12th grade   1.70  76.20
## 7167    18 years old or older Female              12th grade   1.70  69.40
## 7168    18 years old or older   Male              11th grade   1.70  52.16
## 7169    18 years old or older Female              12th grade   1.70  56.70
## 7170             17 years old   Male              11th grade   1.70  74.39
## 7171             17 years old   Male                    <NA>   1.70  68.04
## 7172             16 years old   Male              11th grade   1.70  90.72
## 7173             15 years old   Male              10th grade   1.70  79.38
## 7174             16 years old Female              10th grade   1.70  52.16
## 7175             14 years old Female               9th grade   1.70  54.43
## 7176    18 years old or older   Male              12th grade   1.70  81.65
## 7177             17 years old   Male              11th grade   1.70  54.43
## 7178             15 years old Female               9th grade   1.70  61.24
## 7179             15 years old   Male              10th grade   1.70  60.78
## 7180             15 years old Female              10th grade   1.70  56.70
## 7181             16 years old   Male              11th grade   1.70  68.04
## 7182             17 years old   Male              12th grade   1.70  56.70
## 7183    18 years old or older   Male              12th grade   1.70  52.16
## 7184             16 years old Female              10th grade   1.70  89.81
## 7185             17 years old   Male              11th grade   1.70  61.24
## 7186             17 years old Female              11th grade   1.70  65.77
## 7187             15 years old Female               9th grade   1.70  56.70
## 7188             14 years old   Male               9th grade   1.70  50.35
## 7189             14 years old Female               9th grade   1.70  50.80
## 7190             14 years old Female               9th grade   1.70  81.65
## 7191             17 years old Female              12th grade   1.70  71.67
## 7192             17 years old Female              11th grade   1.70  80.74
## 7193             17 years old Female              11th grade   1.70  61.24
## 7194    18 years old or older   Male              12th grade   1.70  56.70
## 7195             15 years old Female               9th grade   1.70  54.43
## 7196             17 years old   Male              11th grade   1.70  90.72
## 7197             15 years old Female               9th grade   1.70  59.42
## 7198             16 years old   Male              10th grade   1.70  52.16
## 7199             15 years old   Male               9th grade   1.70  72.58
## 7200             15 years old   Male               9th grade   1.70  64.41
## 7201             17 years old Female              11th grade   1.70  64.86
## 7202             16 years old Female              10th grade   1.70  58.97
## 7203    18 years old or older   Male              12th grade   1.70  54.43
## 7204             15 years old Female              10th grade   1.70  56.70
## 7205             17 years old Female              11th grade   1.70 117.94
## 7206             17 years old   Male              11th grade   1.70  65.77
## 7207             15 years old Female               9th grade   1.70  54.43
## 7208             16 years old   Male              11th grade   1.70  91.63
## 7209             15 years old   Male               9th grade   1.70  67.13
## 7210             15 years old   Male               9th grade   1.70  77.11
## 7211             16 years old Female              11th grade   1.70  72.58
## 7212             15 years old   Male               9th grade   1.70  72.58
## 7213             15 years old Female              10th grade   1.70  74.84
## 7214             17 years old   Male              11th grade   1.70  63.50
## 7215             16 years old Female              10th grade   1.70  58.97
## 7216             16 years old Female              11th grade   1.70  86.18
## 7217             15 years old   Male               9th grade   1.70 101.61
## 7218             16 years old   Male              10th grade   1.70  71.22
## 7219             16 years old   Male              11th grade   1.70  63.50
## 7220             15 years old   Male              10th grade   1.70  81.65
## 7221             17 years old   Male              11th grade   1.70  86.18
## 7222             15 years old   Male               9th grade   1.70  55.79
## 7223             14 years old Female               9th grade   1.70  72.58
## 7224             16 years old   Male              10th grade   1.70  74.39
## 7225             16 years old   Male              11th grade   1.70  56.70
## 7226             15 years old   Male               9th grade   1.70  93.44
## 7227             17 years old   Male              11th grade   1.70  77.11
## 7228             15 years old   Male              10th grade   1.70  58.97
## 7229             16 years old   Male              10th grade   1.70  56.70
## 7230             14 years old Female              10th grade   1.70  68.04
## 7231             17 years old Female              11th grade   1.70  58.06
## 7232             16 years old Female              11th grade   1.70  61.24
## 7233             16 years old   Male              10th grade   1.70  73.48
## 7234             16 years old   Male              10th grade   1.70  58.97
## 7235    18 years old or older Female              12th grade   1.70  61.24
## 7236             14 years old Female               9th grade   1.70  55.79
## 7237             17 years old Female              12th grade   1.70  86.18
## 7238             15 years old Female              10th grade   1.70  92.99
## 7239             16 years old   Male              11th grade   1.70  70.31
## 7240             17 years old   Male              12th grade   1.70  58.97
## 7241             14 years old Female               9th grade   1.70  74.84
## 7242    18 years old or older Female              12th grade   1.70  70.31
## 7243             16 years old   Male                    <NA>   1.70  74.84
## 7244             15 years old   Male               9th grade   1.70  62.60
## 7245             14 years old Female               9th grade   1.70  79.38
## 7246             16 years old   Male              11th grade   1.70  56.70
## 7247             14 years old   Male               9th grade   1.70  74.84
## 7248             16 years old   Male              10th grade   1.70  72.58
## 7249             15 years old   Male               9th grade   1.70  55.34
## 7250             15 years old   Male              10th grade   1.70  72.58
## 7251             16 years old   Male              11th grade   1.70  82.10
## 7252             16 years old   Male              11th grade   1.70  95.26
## 7253             15 years old   Male              10th grade   1.70  63.96
## 7254             16 years old   Male              11th grade   1.70  63.50
## 7255             14 years old Female               9th grade   1.70  63.50
## 7256             17 years old Female              12th grade   1.70  72.58
## 7257             17 years old Female              12th grade   1.70  58.97
## 7258             14 years old   Male               9th grade   1.70  58.97
## 7259             16 years old   Male              11th grade   1.70  79.38
## 7260             16 years old Female              11th grade   1.70  81.65
## 7261             15 years old   Male              10th grade   1.70  49.90
## 7262             16 years old   Male              11th grade   1.70  63.50
## 7263             16 years old   Male              11th grade   1.70  49.90
## 7264             16 years old   Male              11th grade   1.70  96.16
## 7265             15 years old   Male              10th grade   1.70  52.62
## 7266             15 years old   Male              10th grade   1.70  63.50
## 7267             15 years old   Male              10th grade   1.70  61.24
## 7268             16 years old Female              10th grade   1.70  61.24
## 7269             16 years old   Male              10th grade   1.70  59.88
## 7270             16 years old Female              10th grade   1.70  70.31
## 7271             16 years old   Male              10th grade   1.70  81.65
## 7272             15 years old   Male              10th grade   1.70  68.04
## 7273             16 years old   Male              10th grade   1.70  68.04
## 7274             16 years old   Male              10th grade   1.70  70.31
## 7275             16 years old   Male              11th grade   1.70  61.24
## 7276             16 years old Female              10th grade   1.70  69.40
## 7277             15 years old   Male              10th grade   1.70  52.16
## 7278             15 years old Female              10th grade   1.70  74.39
## 7279             15 years old   Male              10th grade   1.70  58.97
## 7280             16 years old   Male              10th grade   1.70  58.97
## 7281             14 years old Female              10th grade   1.70  87.09
## 7282             15 years old Female               9th grade   1.70  51.26
## 7283             17 years old   Male              11th grade   1.70  58.97
## 7284             17 years old Female              11th grade   1.70  57.61
## 7285             17 years old   Male              12th grade   1.70  49.90
## 7286             15 years old Female               9th grade   1.70  59.88
## 7287             15 years old   Male               9th grade   1.70  54.43
## 7288             16 years old Female              10th grade   1.70  70.31
## 7289             14 years old   Male               9th grade   1.70  50.35
## 7290             16 years old   Male              10th grade   1.70  56.70
## 7291             15 years old   Male              10th grade   1.70  49.90
## 7292    18 years old or older   Male              12th grade   1.70  56.70
## 7293             16 years old Female              10th grade   1.70  63.50
## 7294             16 years old Female              10th grade   1.70  54.43
## 7295             16 years old   Male              10th grade   1.70  67.59
## 7296             14 years old   Male               9th grade   1.70  58.97
## 7297             16 years old   Male              11th grade   1.70  58.97
## 7298    18 years old or older   Male              12th grade   1.70  70.31
## 7299             15 years old   Male               9th grade   1.70  58.97
## 7300             15 years old   Male               9th grade   1.70  54.89
## 7301             15 years old Female               9th grade   1.70  54.43
## 7302             16 years old   Male              11th grade   1.70  61.24
## 7303             14 years old   Male               9th grade   1.70  76.66
## 7304             17 years old   Male              11th grade   1.70  95.26
## 7305             15 years old   Male               9th grade   1.70  63.50
## 7306    18 years old or older   Male              12th grade   1.70  70.31
## 7307             16 years old   Male              11th grade   1.70  95.26
## 7308             17 years old   Male              12th grade   1.70  54.43
## 7309    18 years old or older   Male              11th grade   1.70  68.04
## 7310             15 years old Female              10th grade   1.70  65.77
## 7311             15 years old   Male               9th grade   1.70  97.52
## 7312             17 years old   Male              11th grade   1.70  65.77
## 7313             14 years old   Male               9th grade   1.70  57.15
## 7314             16 years old   Male              10th grade   1.70  64.41
## 7315             17 years old   Male              12th grade   1.70  90.72
## 7316    18 years old or older   Male              12th grade   1.70  58.06
## 7317             17 years old   Male              12th grade   1.70  61.24
## 7318             17 years old   Male              12th grade   1.70 108.41
## 7319             15 years old Female               9th grade   1.70  62.60
## 7320    18 years old or older Female              12th grade   1.70  81.65
## 7321             17 years old   Male              12th grade   1.70  61.24
## 7322             17 years old   Male              11th grade   1.70 113.40
## 7323             15 years old Female              10th grade   1.70  54.43
## 7324    18 years old or older   Male              12th grade   1.70  71.22
## 7325             16 years old   Male               9th grade   1.70 102.06
## 7326             15 years old Female              10th grade   1.70  74.84
## 7327    18 years old or older   Male              11th grade   1.70  68.04
## 7328             15 years old   Male               9th grade   1.70  55.79
## 7329             16 years old   Male              10th grade   1.70  56.70
## 7330             16 years old Female              11th grade   1.70  81.65
## 7331             17 years old   Male              11th grade   1.70  58.97
## 7332             17 years old Female              11th grade   1.70  79.38
## 7333             17 years old Female              12th grade   1.70  70.31
## 7334             16 years old   Male              11th grade   1.70  61.24
## 7335             16 years old Female              11th grade   1.70  52.16
## 7336    18 years old or older Female              12th grade   1.70  68.04
## 7337             17 years old   Male              12th grade   1.70 122.47
## 7338             16 years old   Male              10th grade   1.70  54.43
## 7339             17 years old Female              11th grade   1.70  58.51
## 7340             16 years old   Male              11th grade   1.70  58.97
## 7341             16 years old   Male              11th grade   1.70  69.85
## 7342             16 years old Female              11th grade   1.70  97.98
## 7343             16 years old Female              11th grade   1.70  61.24
## 7344    18 years old or older   Male              12th grade   1.70  52.16
## 7345             14 years old Female               9th grade   1.70  80.29
## 7346             16 years old Female              10th grade   1.70  78.93
## 7347             16 years old Female              10th grade   1.70  61.24
## 7348             16 years old   Male              11th grade   1.70  63.96
## 7349             16 years old Female               9th grade   1.70  60.33
## 7350             17 years old Female              11th grade   1.70  58.97
## 7351    18 years old or older Female              12th grade   1.70  52.16
## 7352    18 years old or older   Male              12th grade   1.70  62.14
## 7353             17 years old   Male              12th grade   1.70  64.86
## 7354             15 years old   Male               9th grade   1.70  65.77
## 7355             16 years old Female              11th grade   1.70  58.97
## 7356             17 years old   Male              11th grade   1.70  58.97
## 7357             16 years old   Male              10th grade   1.70  95.71
## 7358             17 years old   Male              10th grade   1.70  92.99
## 7359             15 years old Female               9th grade   1.70  81.65
## 7360             17 years old Female              11th grade   1.70  74.84
## 7361             15 years old   Male               9th grade   1.70  49.90
## 7362             16 years old   Male              11th grade   1.70  56.70
## 7363             15 years old Female              10th grade   1.70  61.69
## 7364             17 years old Female              12th grade   1.70 131.09
## 7365             17 years old   Male              12th grade   1.70  52.16
## 7366             17 years old Female              11th grade   1.70  81.65
## 7367             17 years old   Male              12th grade   1.70 116.58
## 7368             16 years old   Male               9th grade   1.70  52.16
## 7369             17 years old   Male              12th grade   1.70  66.68
## 7370             14 years old   Male               9th grade   1.70  69.85
## 7371             17 years old   Male              12th grade   1.70  80.29
## 7372             15 years old   Male              10th grade   1.70  45.36
## 7373             14 years old   Male               9th grade   1.70  46.72
## 7374             15 years old Female               9th grade   1.70  54.43
## 7375             16 years old Female              10th grade   1.70  53.52
## 7376             17 years old   Male              11th grade   1.70  74.84
## 7377    18 years old or older   Male              12th grade   1.70  68.04
## 7378             15 years old   Male               9th grade   1.70  70.31
## 7379             15 years old   Male               9th grade   1.70  68.04
## 7380    18 years old or older Female              12th grade   1.70  56.70
## 7381    18 years old or older   Male              12th grade   1.70  99.79
## 7382             15 years old Female               9th grade   1.70  69.85
## 7383             14 years old   Male               9th grade   1.70  89.81
## 7384             16 years old   Male              11th grade   1.70  79.38
## 7385             14 years old Female               9th grade   1.70  74.84
## 7386             14 years old   Male               9th grade   1.70  81.19
## 7387             15 years old Female              10th grade   1.70  61.24
## 7388             16 years old   Male              11th grade   1.70  68.95
## 7389             17 years old   Male              11th grade   1.70  54.43
## 7390    18 years old or older   Male              12th grade   1.70  68.04
## 7391             14 years old Female               9th grade   1.70  65.77
## 7392             15 years old Female               9th grade   1.70  77.11
## 7393    18 years old or older   Male              12th grade   1.70  72.58
## 7394             16 years old   Male              11th grade   1.70  70.31
## 7395             17 years old   Male              11th grade   1.70  52.62
## 7396             17 years old Female              11th grade   1.70  81.65
## 7397    18 years old or older Female              12th grade   1.70  56.70
## 7398             16 years old Female              10th grade   1.70  47.63
## 7399    18 years old or older   Male              12th grade   1.70  81.65
## 7400             17 years old Female              11th grade   1.70  72.58
## 7401    18 years old or older Female              12th grade   1.70  65.77
## 7402    18 years old or older   Male              12th grade   1.70  77.11
## 7403             16 years old Female              10th grade   1.70  59.42
## 7404             17 years old Female              12th grade   1.70  47.63
## 7405             17 years old   Male              10th grade   1.70  90.72
## 7406    18 years old or older Female              12th grade   1.70 104.33
## 7407             15 years old Female               9th grade   1.70  68.04
## 7408             15 years old Female              10th grade   1.70  56.70
## 7409             15 years old Female               9th grade   1.70  63.05
## 7410             17 years old   Male              11th grade   1.70  73.94
## 7411             17 years old   Male              11th grade   1.70  70.31
## 7412             15 years old   Male              10th grade   1.70  58.97
## 7413             17 years old   Male              10th grade   1.70  74.84
## 7414             15 years old   Male               9th grade   1.70  72.58
## 7415    18 years old or older Female              12th grade   1.70  72.58
## 7416             15 years old   Male               9th grade   1.70  74.84
## 7417             17 years old   Male              11th grade   1.70  56.70
## 7418             16 years old Female              11th grade   1.70  70.31
## 7419             16 years old   Male              10th grade   1.70  89.81
## 7420             17 years old   Male              11th grade   1.70  64.41
## 7421             15 years old   Male              10th grade   1.70  82.10
## 7422    18 years old or older Female              12th grade   1.70  63.50
## 7423    18 years old or older   Male              12th grade   1.70  76.66
## 7424             17 years old Female              12th grade   1.70 104.33
## 7425             15 years old   Male               9th grade   1.70  52.16
## 7426             17 years old Female              12th grade   1.70  95.26
## 7427             15 years old   Male               9th grade   1.70  48.54
## 7428             17 years old   Male              11th grade   1.70  68.04
## 7429    18 years old or older Female              12th grade   1.70  68.04
## 7430             15 years old Female              10th grade   1.70  72.58
## 7431             17 years old Female              12th grade   1.70  52.16
## 7432             15 years old   Male              10th grade   1.70  96.62
## 7433             16 years old Female              11th grade   1.70  63.50
## 7434             17 years old Female              11th grade   1.70 113.40
## 7435             16 years old Female              11th grade   1.70 117.94
## 7436             16 years old Female              10th grade   1.70  55.34
## 7437             16 years old   Male              10th grade   1.70  61.24
## 7438             16 years old   Male              10th grade   1.70  83.01
## 7439             17 years old Female              12th grade   1.70  99.79
## 7440             16 years old   Male              10th grade   1.70  56.70
## 7441             16 years old   Male              10th grade   1.70  63.50
## 7442             17 years old Female              11th grade   1.70  81.65
## 7443             17 years old   Male              11th grade   1.70  69.85
## 7444             17 years old   Male              11th grade   1.70  65.32
## 7445             15 years old Female               9th grade   1.70  68.04
## 7446             14 years old   Male               9th grade   1.70  91.63
## 7447    18 years old or older   Male              12th grade   1.70  74.84
## 7448    18 years old or older Female              12th grade   1.70  72.58
## 7449             17 years old   Male              10th grade   1.70  86.18
## 7450             17 years old Female              11th grade   1.70  67.13
## 7451    18 years old or older   Male              12th grade   1.70  67.13
## 7452             16 years old Female              10th grade   1.70  60.78
## 7453             17 years old Female              11th grade   1.70 117.03
## 7454             14 years old Female               9th grade   1.70  52.16
## 7455             16 years old   Male              10th grade   1.70  68.04
## 7456             16 years old Female              10th grade   1.70  59.42
## 7457             15 years old Female              10th grade   1.70  77.11
## 7458             16 years old Female              11th grade   1.70  58.97
## 7459             15 years old   Male               9th grade   1.70  74.84
## 7460             15 years old   Male              10th grade   1.70  72.58
## 7461             16 years old   Male              11th grade   1.70  62.60
## 7462             15 years old   Male              10th grade   1.70  56.70
## 7463             15 years old   Male              10th grade   1.70  53.52
## 7464             15 years old Female              10th grade   1.70  55.79
## 7465             17 years old Female              11th grade   1.70  75.75
## 7466             14 years old Female               9th grade   1.70  68.04
## 7467             15 years old Female               9th grade   1.70  63.50
## 7468             15 years old   Male               9th grade   1.70  45.36
## 7469             17 years old   Male              10th grade   1.70  90.72
## 7470             15 years old   Male               9th grade   1.70  58.97
## 7471             15 years old Female               9th grade   1.70  63.50
## 7472             17 years old   Male              11th grade   1.70  69.85
## 7473             16 years old Female              11th grade   1.70  65.77
## 7474             14 years old Female               9th grade   1.70  69.40
## 7475    18 years old or older Female              12th grade   1.70  67.13
## 7476             16 years old   Male              10th grade   1.70  56.70
## 7477             15 years old   Male              10th grade   1.70  61.24
## 7478             15 years old   Male               9th grade   1.70  86.18
## 7479             17 years old   Male              11th grade   1.70  81.65
## 7480    18 years old or older   Male              12th grade   1.70  68.04
## 7481             17 years old   Male              11th grade   1.70  66.68
## 7482             16 years old Female               9th grade   1.70  59.88
## 7483             16 years old Female              10th grade   1.70  81.65
## 7484    18 years old or older   Male              11th grade   1.70  58.06
## 7485             14 years old   Male               9th grade   1.70  71.22
## 7486             17 years old   Male              11th grade   1.70  68.04
## 7487             15 years old   Male               9th grade   1.70  74.84
## 7488    18 years old or older   Male              12th grade   1.70  58.97
## 7489             16 years old   Male              10th grade   1.70  79.38
## 7490             17 years old   Male              12th grade   1.70  65.77
## 7491             16 years old   Male              11th grade   1.70  70.31
## 7492             15 years old   Male              10th grade   1.70  74.84
## 7493             14 years old Female               9th grade   1.70  81.65
## 7494             15 years old Female              10th grade   1.70  54.43
## 7495             15 years old   Male               9th grade   1.70  79.38
## 7496             15 years old Female               9th grade   1.70  65.77
## 7497             14 years old Female               9th grade   1.70 103.87
## 7498             14 years old Female               9th grade   1.70  51.26
## 7499             15 years old Female               9th grade   1.70  79.38
## 7500             17 years old Female              10th grade   1.70  74.84
## 7501             14 years old Female               9th grade   1.70  63.50
## 7502             14 years old Female               9th grade   1.70  58.97
## 7503    18 years old or older   Male              12th grade   1.70  78.02
## 7504    18 years old or older Female              12th grade   1.70  68.04
## 7505             16 years old   Male               9th grade   1.70  58.97
## 7506             15 years old Female               9th grade   1.70  70.31
## 7507             14 years old Female               9th grade   1.70  90.72
## 7508             16 years old   Male              10th grade   1.70 106.60
## 7509             15 years old Female               9th grade   1.70  52.16
## 7510             16 years old   Male              10th grade   1.70  85.73
## 7511    18 years old or older   Male              12th grade   1.70  69.40
## 7512             15 years old   Male              10th grade   1.70  54.89
## 7513             15 years old   Male               9th grade   1.70  49.90
## 7514             16 years old   Male              10th grade   1.70 113.40
## 7515             16 years old Female              11th grade   1.70  74.84
## 7516             17 years old   Male              12th grade   1.70 104.33
## 7517             15 years old   Male              10th grade   1.70  53.07
## 7518             15 years old Female               9th grade   1.70  52.16
## 7519    18 years old or older   Male              12th grade   1.70  68.95
## 7520             14 years old Female               9th grade   1.70  58.97
## 7521    18 years old or older   Male              12th grade   1.70  65.77
## 7522             16 years old   Male              10th grade   1.70  56.70
## 7523             17 years old Female              12th grade   1.70  58.97
## 7524             17 years old Female              11th grade   1.70  58.97
## 7525             14 years old Female               9th grade   1.70  81.65
## 7526             17 years old Female              11th grade   1.70  81.65
## 7527             16 years old Female              11th grade   1.70  68.04
## 7528             16 years old Female              11th grade   1.70  69.40
## 7529             15 years old Female              10th grade   1.70  59.88
## 7530             17 years old   Male              12th grade   1.70  63.50
## 7531             15 years old   Male              10th grade   1.70  86.18
## 7532             15 years old Female              10th grade   1.70  58.97
## 7533             14 years old   Male               9th grade   1.70  58.97
## 7534             14 years old   Male               9th grade   1.70  54.43
## 7535             15 years old Female               9th grade   1.70  52.16
## 7536             17 years old Female              12th grade   1.70  54.89
## 7537             17 years old   Male              11th grade   1.70  72.58
## 7538             17 years old   Male              11th grade   1.70  54.43
## 7539             15 years old   Male               9th grade   1.70  97.52
## 7540             17 years old   Male              12th grade   1.70  68.49
## 7541             17 years old Female              12th grade   1.70  61.24
## 7542    18 years old or older   Male              12th grade   1.70  61.69
## 7543             16 years old   Male              11th grade   1.70  63.96
## 7544             17 years old   Male              12th grade   1.70  82.56
## 7545             17 years old   Male              11th grade   1.70  61.69
## 7546             15 years old Female               9th grade   1.70  72.58
## 7547             17 years old Female              11th grade   1.70 106.60
## 7548             15 years old   Male              10th grade   1.70  70.31
## 7549             17 years old Female              11th grade   1.70  63.96
## 7550             17 years old   Male              11th grade   1.70  83.92
## 7551             15 years old   Male               9th grade   1.70 108.86
## 7552    18 years old or older Female              12th grade   1.70  63.50
## 7553             17 years old Female              12th grade   1.70  71.22
## 7554    18 years old or older Female              12th grade   1.70  63.50
## 7555             15 years old   Male              10th grade   1.70  63.50
## 7556             17 years old Female              12th grade   1.70  64.41
## 7557             14 years old   Male               9th grade   1.70  56.70
## 7558             17 years old Female                    <NA>   1.70  77.11
## 7559             17 years old Female              12th grade   1.70  61.24
## 7560             16 years old   Male Ungraded or other grade   1.70  67.13
## 7561             16 years old Female               9th grade   1.70  86.18
## 7562             14 years old   Male               9th grade   1.70  68.04
## 7563             16 years old   Male              10th grade   1.70  61.24
## 7564             15 years old   Male               9th grade   1.70  86.18
## 7565             14 years old Female               9th grade   1.70  63.50
## 7566             15 years old   Male               9th grade   1.70  90.72
## 7567    18 years old or older   Male              12th grade   1.70  77.11
## 7568             16 years old   Male              11th grade   1.70  65.77
## 7569             15 years old   Male              10th grade   1.70  58.97
## 7570             17 years old   Male              11th grade   1.70  54.43
## 7571             15 years old   Male               9th grade   1.70  63.50
## 7572             15 years old   Male               9th grade   1.70  95.26
## 7573             14 years old   Male               9th grade   1.70  57.15
## 7574             16 years old Female              11th grade   1.70  72.58
## 7575             17 years old Female              11th grade   1.70  88.45
## 7576             16 years old   Male              10th grade   1.70  88.45
## 7577             14 years old   Male               9th grade   1.70  72.58
## 7578             14 years old Female               9th grade   1.70  54.43
## 7579             15 years old Female              10th grade   1.70  52.62
## 7580             15 years old Female              10th grade   1.70  66.23
## 7581             14 years old Female               9th grade   1.70  54.43
## 7582             15 years old   Male               9th grade   1.70  70.31
## 7583             16 years old   Male              10th grade   1.70 145.15
## 7584             17 years old Female              11th grade   1.70  95.26
## 7585             17 years old   Male              11th grade   1.70  63.50
## 7586             16 years old Female              11th grade   1.70  77.11
## 7587             17 years old   Male              12th grade   1.70  65.77
## 7588             17 years old   Male              11th grade   1.70  69.40
## 7589             17 years old Female              11th grade   1.70  99.79
## 7590             15 years old   Male              10th grade   1.70  52.16
## 7591             14 years old   Male               9th grade   1.70  54.43
## 7592             16 years old Female              10th grade   1.70  61.69
## 7593             14 years old Female               9th grade   1.70  81.65
## 7594             15 years old   Male               9th grade   1.70 102.06
## 7595             16 years old   Male              11th grade   1.70  73.94
## 7596             16 years old Female              11th grade   1.70  59.88
## 7597             17 years old   Male              12th grade   1.70  64.41
## 7598    18 years old or older   Male              12th grade   1.70  72.58
## 7599    18 years old or older   Male              12th grade   1.70  56.70
## 7600             15 years old Female               9th grade   1.70  56.70
## 7601             15 years old   Male               9th grade   1.70  55.34
## 7602             15 years old   Male               9th grade   1.70  61.24
## 7603             15 years old   Male               9th grade   1.70  62.60
## 7604             16 years old   Male              10th grade   1.70  62.14
## 7605             15 years old Female              10th grade   1.70  69.85
## 7606             15 years old   Male              10th grade   1.70  54.43
## 7607             15 years old Female               9th grade   1.70  54.43
## 7608             14 years old   Male               9th grade   1.70  79.83
## 7609             14 years old   Male               9th grade   1.70  86.18
## 7610             14 years old   Male               9th grade   1.70  55.34
## 7611             16 years old   Male              10th grade   1.70  71.67
## 7612             15 years old   Male              10th grade   1.70  54.89
## 7613             16 years old Female              11th grade   1.70  65.77
## 7614             17 years old   Male              11th grade   1.70  81.19
## 7615             15 years old   Male               9th grade   1.70  97.07
## 7616             15 years old Female              10th grade   1.70  59.88
## 7617             15 years old   Male              10th grade   1.70  58.97
## 7618             15 years old Female               9th grade   1.70  72.58
## 7619             17 years old Female              11th grade   1.70  50.80
## 7620             16 years old   Male              11th grade   1.70  63.50
## 7621             16 years old   Male              10th grade   1.70  79.38
## 7622             17 years old   Male              11th grade   1.70  74.84
## 7623             17 years old   Male              11th grade   1.70  78.93
## 7624             16 years old Female               9th grade   1.70  56.70
## 7625             17 years old   Male              11th grade   1.70  81.65
## 7626    18 years old or older   Male              12th grade   1.70  69.40
## 7627             15 years old   Male               9th grade   1.70  95.26
## 7628             15 years old Female              10th grade   1.70  61.24
## 7629             17 years old   Male              12th grade   1.70  90.72
## 7630             17 years old   Male              10th grade   1.70  72.58
## 7631             14 years old   Male               9th grade   1.70  48.99
## 7632             14 years old Female               9th grade   1.70  63.50
## 7633             15 years old   Male               9th grade   1.70  54.43
## 7634             14 years old Female               9th grade   1.70  58.06
## 7635             15 years old   Male               9th grade   1.70  63.50
## 7636             15 years old Female               9th grade   1.70  58.97
## 7637             15 years old   Male              10th grade   1.70  56.70
## 7638             15 years old Female              10th grade   1.70  56.70
## 7639             15 years old Female              10th grade   1.70  68.04
## 7640             16 years old Female              10th grade   1.70  49.90
## 7641             16 years old   Male              10th grade   1.70  74.84
## 7642             17 years old Female              11th grade   1.70  61.24
## 7643             16 years old Female              11th grade   1.70  52.16
## 7644             16 years old   Male              11th grade   1.70  61.24
## 7645             17 years old   Male              11th grade   1.70  46.27
## 7646             16 years old Female              11th grade   1.70  68.04
## 7647             17 years old   Male              11th grade   1.70  68.04
## 7648             17 years old   Male              12th grade   1.70  61.24
## 7649    18 years old or older Female              12th grade   1.70  61.24
## 7650             16 years old Female              12th grade   1.70  58.06
## 7651             17 years old Female              12th grade   1.70  63.50
## 7652    18 years old or older   Male              12th grade   1.70  72.58
## 7653             14 years old Female               9th grade   1.70  54.43
## 7654             15 years old Female               9th grade   1.70  52.16
## 7655             14 years old Female               9th grade   1.70  56.70
## 7656             14 years old Female               9th grade   1.70  86.18
## 7657             14 years old Female               9th grade   1.70  65.77
## 7658             14 years old Female               9th grade   1.70  60.78
## 7659             15 years old   Male               9th grade   1.70  83.46
## 7660             14 years old   Male               9th grade   1.70  61.24
## 7661             15 years old   Male               9th grade   1.70  58.97
## 7662             15 years old Female              10th grade   1.70  61.24
## 7663             16 years old Female              10th grade   1.70  58.97
## 7664             16 years old Female              10th grade   1.70  54.43
## 7665             16 years old   Male              10th grade   1.70  71.22
## 7666             16 years old Female              11th grade   1.70  79.38
## 7667             16 years old Female              11th grade   1.70  55.34
## 7668             17 years old   Male              12th grade   1.70  74.84
## 7669             17 years old Female              12th grade   1.70  81.65
## 7670    18 years old or older Female              12th grade   1.70  63.50
## 7671             17 years old Female              12th grade   1.70  58.97
## 7672             17 years old   Male                    <NA>   1.70  61.24
## 7673    18 years old or older Female              12th grade   1.70  65.77
## 7674             14 years old   Male               9th grade   1.70  65.77
## 7675             14 years old   Male               9th grade   1.70  65.77
## 7676             14 years old Female               9th grade   1.70  72.58
## 7677             14 years old   Male               9th grade   1.70  58.97
## 7678             15 years old Female               9th grade   1.70  52.16
## 7679             14 years old   Male               9th grade   1.70  48.99
## 7680             15 years old Female               9th grade   1.70  65.77
## 7681             15 years old Female               9th grade   1.70  58.97
## 7682             15 years old Female                    <NA>   1.70  54.43
## 7683             15 years old   Male              10th grade   1.70  86.18
## 7684             15 years old   Male              10th grade   1.70  68.04
## 7685             15 years old Female              10th grade   1.70 124.29
## 7686             16 years old Female              10th grade   1.70  54.43
## 7687             17 years old Female              11th grade   1.70  56.70
## 7688             17 years old Female              11th grade   1.70  95.71
## 7689             16 years old Female              11th grade   1.70  74.84
## 7690             17 years old Female                    <NA>   1.70  81.65
## 7691             17 years old Female              12th grade   1.70  62.60
## 7692    18 years old or older Female              12th grade   1.70  65.77
## 7693    18 years old or older   Male              12th grade   1.70 164.66
## 7694             15 years old   Male               9th grade   1.70  65.77
## 7695             15 years old   Male              10th grade   1.70 104.78
## 7696             15 years old   Male               9th grade   1.70  58.97
## 7697             15 years old   Male               9th grade   1.70  52.62
## 7698             14 years old   Male               9th grade   1.70 152.41
## 7699             14 years old Female                    <NA>   1.70  54.43
## 7700             15 years old Female               9th grade   1.70  53.07
## 7701             14 years old Female               9th grade   1.70  56.70
## 7702             16 years old   Male              10th grade   1.70  77.11
## 7703             16 years old   Male              10th grade   1.70  56.70
## 7704             15 years old Female              10th grade   1.70  68.04
## 7705             16 years old Female              10th grade   1.70  89.81
## 7706             15 years old   Male              10th grade   1.70 117.03
## 7707             15 years old Female              10th grade   1.70  56.70
## 7708             15 years old Female              10th grade   1.70  81.65
## 7709             17 years old Female              11th grade   1.70 119.30
## 7710             16 years old Female              11th grade   1.70  72.58
## 7711             17 years old   Male              11th grade   1.70  95.26
## 7712             16 years old Female              11th grade   1.70 124.74
## 7713             17 years old Female              11th grade   1.70  79.38
## 7714    18 years old or older Female              12th grade   1.70  49.90
## 7715             17 years old Female              12th grade   1.70  81.65
## 7716             17 years old Female              12th grade   1.70  49.90
## 7717             17 years old   Male              12th grade   1.70  58.97
## 7718    18 years old or older   Male              12th grade   1.70  62.14
## 7719    18 years old or older Female                    <NA>   1.70  61.24
## 7720             16 years old   Male              10th grade   1.70  68.04
## 7721             15 years old Female              10th grade   1.70  80.74
## 7722             16 years old Female              10th grade   1.70  47.63
## 7723             17 years old Female              11th grade   1.70  87.54
## 7724             16 years old Female              11th grade   1.70  64.41
## 7725             17 years old Female              11th grade   1.70  61.24
## 7726    18 years old or older   Male              12th grade   1.70  90.72
## 7727             15 years old   Male               9th grade   1.70  68.95
## 7728             15 years old Female              10th grade   1.70  63.50
## 7729             16 years old   Male              11th grade   1.70  54.43
## 7730             16 years old   Male              11th grade   1.70  58.97
## 7731    18 years old or older Female              12th grade   1.70  68.49
## 7732             17 years old   Male              12th grade   1.70  54.43
## 7733             17 years old Female              12th grade   1.70 108.86
## 7734             14 years old Female               9th grade   1.70 127.01
## 7735             14 years old   Male               9th grade   1.70  56.70
## 7736             14 years old Female               9th grade   1.70  90.72
## 7737             16 years old Female              11th grade   1.70  80.74
## 7738             17 years old   Male              11th grade   1.70  72.58
## 7739             16 years old   Male              11th grade   1.70  77.11
## 7740             15 years old   Male              10th grade   1.70  56.70
## 7741             16 years old   Male              10th grade   1.70  88.45
## 7742             15 years old   Male              10th grade   1.70  54.43
## 7743             16 years old   Male              11th grade   1.70  65.77
## 7744             15 years old Female              10th grade   1.70  56.70
## 7745             16 years old Female              10th grade   1.70  65.77
## 7746             16 years old Female              11th grade   1.70  56.70
## 7747             16 years old Female              11th grade   1.70  61.24
## 7748             17 years old   Male              11th grade   1.70  65.77
## 7749             15 years old Female              10th grade   1.70  54.43
## 7750             15 years old Female               9th grade   1.70  54.43
## 7751             16 years old   Male              11th grade   1.70  66.68
## 7752             17 years old Female              12th grade   1.70  52.16
## 7753             16 years old   Male              11th grade   1.70  83.92
## 7754             17 years old Female              12th grade   1.70  61.69
## 7755    18 years old or older Female              12th grade   1.70  44.45
## 7756             17 years old   Male              12th grade   1.70  61.24
## 7757             15 years old   Male              10th grade   1.70  54.43
## 7758             15 years old   Male              10th grade   1.70  68.04
## 7759             15 years old Female              10th grade   1.70  50.80
## 7760             15 years old Female              10th grade   1.70  90.72
## 7761             16 years old Female              11th grade   1.70  83.92
## 7762             15 years old Female              10th grade   1.70  54.43
## 7763             16 years old   Male              11th grade   1.70  61.69
## 7764             16 years old Female              11th grade   1.70  70.31
## 7765             16 years old Female              11th grade   1.70  49.90
## 7766    18 years old or older   Male              12th grade   1.70  62.60
## 7767             14 years old Female               9th grade   1.70  72.58
## 7768             15 years old Female               9th grade   1.70  64.41
## 7769             14 years old Female               9th grade   1.70  63.50
## 7770             14 years old   Male               9th grade   1.70  52.16
## 7771             16 years old   Male              11th grade   1.70 117.94
## 7772             15 years old   Male              10th grade   1.70  49.90
## 7773             15 years old Female               9th grade   1.70 108.86
## 7774             14 years old   Male               9th grade   1.70  63.50
## 7775             16 years old   Male              11th grade   1.70  63.50
## 7776             16 years old Female              11th grade   1.70  68.04
## 7777             16 years old   Male              11th grade   1.70  65.32
## 7778             14 years old   Male               9th grade   1.70  57.61
## 7779             14 years old Female               9th grade   1.70  47.63
## 7780             16 years old Female              10th grade   1.70  54.43
## 7781             16 years old   Male              11th grade   1.70  92.08
## 7782             16 years old Female              11th grade   1.70  68.04
## 7783             16 years old Female              11th grade   1.70  72.58
## 7784             15 years old   Male              10th grade   1.70  70.31
## 7785             14 years old Female              10th grade   1.70  63.50
## 7786             15 years old Female               9th grade   1.70  52.16
## 7787             17 years old Female              12th grade   1.70  53.07
## 7788             16 years old   Male              11th grade   1.70  63.50
## 7789             17 years old   Male              12th grade   1.70  67.59
## 7790             17 years old   Male              12th grade   1.70  63.50
## 7791             16 years old   Male              11th grade   1.70  88.45
## 7792             16 years old Female              11th grade   1.70  48.54
## 7793             15 years old Female              10th grade   1.70  49.90
## 7794             15 years old   Male               9th grade   1.70  80.74
## 7795             15 years old   Male              10th grade   1.70  54.43
## 7796             17 years old   Male              11th grade   1.70  74.84
## 7797             16 years old   Male              10th grade   1.70  78.93
## 7798             14 years old Female               9th grade   1.70  64.86
## 7799             15 years old   Male              10th grade   1.70  54.43
## 7800             16 years old   Male              11th grade   1.70  98.88
## 7801             15 years old   Male              10th grade   1.70  52.16
## 7802             15 years old Female               9th grade   1.70  54.43
## 7803             15 years old Female              10th grade   1.70  54.43
## 7804             15 years old Female              10th grade   1.70  64.41
## 7805             16 years old Female              10th grade   1.70  53.98
## 7806             15 years old Female              10th grade   1.70  61.24
## 7807             17 years old Female              11th grade   1.70  62.60
## 7808             16 years old Female              11th grade   1.70  78.47
## 7809             15 years old Female              10th grade   1.70  61.24
## 7810             17 years old Female              12th grade   1.70  89.36
## 7811             14 years old   Male               9th grade   1.70  72.58
## 7812             17 years old Female              12th grade   1.70  70.31
## 7813    18 years old or older Female              12th grade   1.70  77.11
## 7814             14 years old   Male               9th grade   1.70  56.70
## 7815             14 years old   Male               9th grade   1.70  54.43
## 7816             16 years old   Male              11th grade   1.70  62.14
## 7817             15 years old Female               9th grade   1.70  57.61
## 7818             17 years old   Male              12th grade   1.70  46.27
## 7819             17 years old   Male              11th grade   1.70  58.97
## 7820    18 years old or older   Male Ungraded or other grade   1.70  61.24
## 7821             17 years old   Male              11th grade   1.70  61.24
## 7822    18 years old or older   Male              12th grade   1.70  79.38
## 7823             15 years old Female              10th grade   1.70  77.11
## 7824             15 years old Female              10th grade   1.70  61.24
## 7825             14 years old   Male               9th grade   1.70  70.31
## 7826             15 years old Female               9th grade   1.70  63.50
## 7827             14 years old Female               9th grade   1.70  72.58
## 7828             15 years old   Male              10th grade   1.70  59.42
## 7829             15 years old   Male              10th grade   1.70  56.70
## 7830             14 years old Female               9th grade   1.70  57.61
## 7831             14 years old Female               9th grade   1.70  52.16
## 7832             14 years old   Male               9th grade   1.70  68.95
## 7833             17 years old Female              12th grade   1.70  77.11
## 7834             17 years old   Male              11th grade   1.70  74.39
## 7835             15 years old   Male              10th grade   1.70  59.42
## 7836             16 years old Female              10th grade   1.70  71.67
## 7837             15 years old Female              10th grade   1.70  72.58
## 7838             15 years old   Male              10th grade   1.70  70.31
## 7839             15 years old Female              10th grade   1.70  54.43
## 7840             17 years old   Male              12th grade   1.70  58.97
## 7841             16 years old Female              11th grade   1.70  61.69
## 7842             14 years old   Male               9th grade   1.70  40.82
## 7843             14 years old   Male               9th grade   1.70  72.58
## 7844             15 years old Female              10th grade   1.70  63.50
## 7845             15 years old Female              10th grade   1.70  58.97
## 7846             15 years old Female              10th grade   1.70  86.18
## 7847             15 years old   Male              10th grade   1.70  56.70
## 7848             14 years old Female               9th grade   1.70 131.54
## 7849             14 years old   Male               9th grade   1.70  68.49
## 7850             15 years old   Male               9th grade   1.70  68.04
## 7851             17 years old Female              11th grade   1.70  68.04
## 7852             16 years old Female              11th grade   1.70  65.77
## 7853             16 years old   Male              11th grade   1.70  85.73
## 7854             16 years old Female              11th grade   1.70  63.50
## 7855             17 years old Female              12th grade   1.70  59.88
## 7856             17 years old Female              12th grade   1.70  75.30
## 7857             17 years old Female              12th grade   1.70  81.65
## 7858             16 years old   Male              11th grade   1.70  95.26
## 7859             16 years old   Male              11th grade   1.70  58.97
## 7860             15 years old Female              10th grade   1.70  55.79
## 7861             16 years old Female              11th grade   1.70  58.97
## 7862             16 years old   Male              11th grade   1.70  64.86
## 7863             16 years old Female              11th grade   1.70  55.79
## 7864             15 years old   Male              10th grade   1.70  57.15
## 7865             15 years old Female              10th grade   1.70  56.70
## 7866             15 years old Female              10th grade   1.70  68.04
## 7867             14 years old   Male               9th grade   1.70  58.97
## 7868             17 years old   Male              12th grade   1.70  75.75
## 7869             15 years old   Male              10th grade   1.70  72.58
## 7870             16 years old Female              11th grade   1.70  49.90
## 7871             15 years old   Male              10th grade   1.70  54.43
## 7872             14 years old   Male               9th grade   1.70  51.71
## 7873             14 years old   Male               9th grade   1.70  65.77
## 7874             14 years old Female               9th grade   1.70  74.39
## 7875             17 years old Female              12th grade   1.70  64.86
## 7876             16 years old Female              11th grade   1.70  58.97
## 7877             16 years old   Male              11th grade   1.70  77.11
## 7878             16 years old Female              11th grade   1.70  58.97
## 7879             17 years old Female              12th grade   1.70  82.10
## 7880             15 years old   Male              10th grade   1.70  65.77
## 7881             14 years old   Male               9th grade   1.70  49.90
## 7882             15 years old Female               9th grade   1.70  50.80
## 7883             15 years old   Male               9th grade   1.70  49.90
## 7884             14 years old   Male               9th grade   1.70  78.93
## 7885             15 years old Female               9th grade   1.70  70.31
## 7886             15 years old Female              10th grade   1.70  58.97
## 7887             15 years old   Male               9th grade   1.70  52.16
## 7888             14 years old Female               9th grade   1.70  47.63
## 7889             14 years old   Male               9th grade   1.70  49.44
## 7890             16 years old Female              11th grade   1.70  56.70
## 7891             16 years old Female              10th grade   1.70  58.51
## 7892             16 years old Female              11th grade   1.70  55.79
## 7893             16 years old Female              11th grade   1.70  63.50
## 7894             15 years old   Male              10th grade   1.70  56.70
## 7895             16 years old   Male              10th grade   1.70  54.43
## 7896             14 years old Female               9th grade   1.70  95.26
## 7897             17 years old Female              12th grade   1.70  88.91
## 7898             16 years old   Male              11th grade   1.70  86.18
## 7899             16 years old   Male              11th grade   1.70  58.06
## 7900             15 years old   Male              10th grade   1.70  68.95
## 7901             16 years old   Male              10th grade   1.70  67.13
## 7902             16 years old Female              10th grade   1.70 104.33
## 7903             15 years old   Male               9th grade   1.70  61.24
## 7904             17 years old   Male               9th grade   1.70  74.84
## 7905    18 years old or older   Male              12th grade   1.70  58.97
## 7906             15 years old   Male               9th grade   1.70  52.62
## 7907             17 years old Female              11th grade   1.70  56.70
## 7908             16 years old Female              11th grade   1.70  52.16
## 7909             17 years old   Male              11th grade   1.70  65.77
## 7910             16 years old Female              11th grade   1.70  82.56
## 7911             17 years old Female              11th grade   1.70  58.97
## 7912             16 years old   Male              11th grade   1.70  68.04
## 7913    18 years old or older Female              12th grade   1.70  68.04
## 7914             15 years old Female              10th grade   1.70  86.18
## 7915             15 years old   Male              10th grade   1.70  63.50
## 7916             15 years old   Male               9th grade   1.70  66.23
## 7917             15 years old   Male               9th grade   1.70  49.90
## 7918             16 years old Female              10th grade   1.70  58.97
## 7919             16 years old   Male                    <NA>   1.70  63.50
## 7920             17 years old Female              11th grade   1.70  56.70
## 7921             14 years old   Male               9th grade   1.70  58.97
## 7922             15 years old Female               9th grade   1.70  73.48
## 7923             16 years old   Male              11th grade   1.70  50.35
## 7924    18 years old or older Female              12th grade   1.70  58.97
## 7925             14 years old Female               9th grade   1.70  50.80
## 7926             15 years old   Male               9th grade   1.70  62.14
## 7927             17 years old   Male              12th grade   1.70  49.90
## 7928    18 years old or older Female              12th grade   1.70  50.80
## 7929             15 years old   Male              10th grade   1.70  56.70
## 7930             17 years old   Male              12th grade   1.70  73.48
## 7931             16 years old Female              10th grade   1.70  61.24
## 7932             16 years old   Male              10th grade   1.70  65.77
## 7933             14 years old   Male               9th grade   1.70  68.95
## 7934             17 years old Female              12th grade   1.70  56.70
## 7935             14 years old   Male               9th grade   1.70  50.35
## 7936             16 years old   Male              10th grade   1.70  70.31
## 7937    18 years old or older   Male              12th grade   1.70  61.24
## 7938             17 years old Female              12th grade   1.70  63.50
## 7939    18 years old or older   Male              12th grade   1.70  99.79
## 7940             16 years old Female              11th grade   1.70  74.84
## 7941             16 years old Female              11th grade   1.70  49.90
## 7942             17 years old Female              11th grade   1.70  68.04
## 7943             16 years old Female              11th grade   1.70  72.58
## 7944             16 years old Female              10th grade   1.70  54.43
## 7945             14 years old   Male               9th grade   1.70  52.62
## 7946             15 years old Female               9th grade   1.70  58.97
## 7947    18 years old or older Female              12th grade   1.70  68.04
## 7948             17 years old Female              12th grade   1.70  70.31
## 7949             14 years old   Male               9th grade   1.70  50.35
## 7950             15 years old Female               9th grade   1.70  62.60
## 7951             16 years old Female              10th grade   1.70  58.97
## 7952             16 years old   Male              10th grade   1.70  61.24
## 7953    18 years old or older Female              12th grade   1.70  46.72
## 7954             17 years old   Male              12th grade   1.70  52.16
## 7955             17 years old Female              12th grade   1.70  60.78
## 7956             17 years old   Male              12th grade   1.70  53.52
## 7957             15 years old   Male              10th grade   1.70  95.26
## 7958             17 years old   Male              12th grade   1.70  58.97
## 7959    18 years old or older   Male              12th grade   1.70  86.64
## 7960             16 years old Female              10th grade   1.70  58.97
## 7961             16 years old Female              11th grade   1.70  64.86
## 7962             17 years old   Male              11th grade   1.70  65.77
## 7963             17 years old   Male              11th grade   1.70  62.60
## 7964             17 years old Female              11th grade   1.70  54.43
## 7965             16 years old   Male              11th grade   1.70  58.97
## 7966    18 years old or older Female              12th grade   1.70  61.24
## 7967             15 years old   Male              10th grade   1.70 104.33
## 7968             16 years old Female              11th grade   1.70  61.24
## 7969             17 years old   Male              12th grade   1.70  81.65
## 7970             15 years old   Male              10th grade   1.70  54.43
## 7971             15 years old   Male               9th grade   1.70  70.31
## 7972             16 years old Female              11th grade   1.70  56.70
## 7973             15 years old   Male              10th grade   1.70  65.77
## 7974             15 years old   Male              10th grade   1.70  63.50
## 7975             16 years old Female              11th grade   1.70  62.60
## 7976             14 years old   Male               9th grade   1.70  65.77
## 7977             16 years old   Male              10th grade   1.70  63.50
## 7978             17 years old   Male              12th grade   1.70  69.40
## 7979             16 years old   Male              10th grade   1.70  90.72
## 7980             17 years old Female              12th grade   1.70  64.41
## 7981             17 years old   Male              11th grade   1.70  52.16
## 7982             15 years old   Male               9th grade   1.70  55.34
## 7983             16 years old Female              10th grade   1.70 121.56
## 7984             15 years old   Male               9th grade   1.70  53.98
## 7985             17 years old Female              12th grade   1.70  65.77
## 7986             16 years old   Male              11th grade   1.70 122.47
## 7987             16 years old Female              10th grade   1.70  54.43
## 7988             17 years old Female              12th grade   1.70  62.60
## 7989             16 years old   Male              11th grade   1.70  79.38
## 7990             15 years old   Male               9th grade   1.70  70.76
## 7991             15 years old   Male               9th grade   1.70  66.68
## 7992             15 years old   Male               9th grade   1.70  92.99
## 7993             16 years old Female              11th grade   1.70  56.70
## 7994             15 years old   Male               9th grade   1.70  66.23
## 7995             14 years old   Male               9th grade   1.70  67.13
## 7996             17 years old   Male              11th grade   1.70  70.31
## 7997             14 years old   Male               9th grade   1.70  54.43
## 7998             16 years old Female              11th grade   1.70  79.38
## 7999             16 years old   Male              11th grade   1.70  63.50
## 8000             15 years old Female               9th grade   1.70  65.77
## 8001             17 years old Female              12th grade   1.70  59.88
## 8002             15 years old   Male              10th grade   1.70  65.77
## 8003             15 years old Female              10th grade   1.70  62.60
## 8004             17 years old   Male              11th grade   1.70  68.04
## 8005             15 years old Female               9th grade   1.70  99.79
## 8006             15 years old Female               9th grade   1.70  63.50
## 8007             16 years old   Male              10th grade   1.70  63.50
## 8008             17 years old Female              12th grade   1.70  99.79
## 8009    18 years old or older Female              12th grade   1.70  81.65
## 8010             16 years old   Male              10th grade   1.70  54.89
## 8011             14 years old Female               9th grade   1.70  56.70
## 8012             17 years old   Male              11th grade   1.70  62.60
## 8013             14 years old   Male               9th grade   1.70  54.43
## 8014             16 years old   Male              11th grade   1.70  58.97
## 8015             14 years old   Male               9th grade   1.70  81.65
## 8016             16 years old   Male              10th grade   1.70  68.04
## 8017             15 years old   Male               9th grade   1.70  54.43
## 8018             14 years old Female               9th grade   1.70  63.50
## 8019             15 years old Female              10th grade   1.70  88.91
## 8020             14 years old Female               9th grade   1.70  56.70
## 8021             16 years old Female              11th grade   1.70  81.65
## 8022             17 years old Female              11th grade   1.70  62.14
## 8023             15 years old Female              10th grade   1.70  45.36
## 8024             16 years old   Male              11th grade   1.70  56.70
## 8025             17 years old Female              11th grade   1.70  71.22
## 8026             17 years old Female              12th grade   1.70  58.97
## 8027    18 years old or older Female              12th grade   1.70  63.50
## 8028    18 years old or older Female              12th grade   1.70  51.71
## 8029             15 years old   Male              10th grade   1.70  63.50
## 8030    18 years old or older   Male              12th grade   1.70  72.58
## 8031             16 years old   Male              11th grade   1.70  52.16
## 8032             15 years old   Male               9th grade   1.70  63.50
## 8033             15 years old   Male               9th grade   1.70  77.11
## 8034             16 years old   Male              10th grade   1.70  63.50
## 8035             14 years old   Male               9th grade   1.70  56.70
## 8036             16 years old Female              10th grade   1.70  52.16
## 8037             14 years old   Male               9th grade   1.70  64.86
## 8038             14 years old Female               9th grade   1.70  58.97
## 8039    18 years old or older Female              12th grade   1.70  74.84
## 8040    18 years old or older   Male              12th grade   1.70  93.44
## 8041             15 years old Female              10th grade   1.70  74.84
## 8042             14 years old Female               9th grade   1.70  81.65
## 8043             15 years old   Male              10th grade   1.70  57.61
## 8044             14 years old Female               9th grade   1.70  61.69
## 8045             16 years old   Male              11th grade   1.70 108.86
## 8046             14 years old Female               9th grade   1.70  81.65
## 8047             16 years old   Male              11th grade   1.70  67.13
## 8048             14 years old   Male               9th grade   1.70  56.70
## 8049             17 years old Female              11th grade   1.70  56.70
## 8050             15 years old   Male               9th grade   1.70  54.43
## 8051             15 years old Female               9th grade   1.70  57.15
## 8052             15 years old   Male               9th grade   1.70  74.84
## 8053             15 years old   Male              10th grade   1.70  71.67
## 8054             15 years old   Male               9th grade   1.70  81.65
## 8055             15 years old   Male              10th grade   1.70  99.79
## 8056             15 years old   Male               9th grade   1.70  54.43
## 8057             15 years old   Male               9th grade   1.70 117.94
## 8058             17 years old Female              12th grade   1.70  74.84
## 8059             17 years old   Male              11th grade   1.70  68.04
## 8060             14 years old   Male               9th grade   1.70  59.88
## 8061             15 years old   Male              10th grade   1.70  67.13
## 8062             17 years old Female              11th grade   1.70  57.15
## 8063             15 years old   Male               9th grade   1.70  80.29
## 8064             16 years old Female              11th grade   1.70  50.80
## 8065             16 years old   Male              11th grade   1.70  72.58
## 8066             15 years old Female               9th grade   1.70  57.15
## 8067             14 years old   Male               9th grade   1.70  62.60
## 8068             15 years old Female               9th grade   1.70  63.50
## 8069             14 years old   Male               9th grade   1.70  50.35
## 8070             17 years old   Male              12th grade   1.70  51.71
## 8071    18 years old or older Female              12th grade   1.70  68.04
## 8072    18 years old or older Female              12th grade   1.70  63.50
## 8073    18 years old or older Female              12th grade   1.70  46.72
## 8074             14 years old Female               9th grade   1.70  61.24
## 8075    18 years old or older   Male              11th grade   1.70  56.70
## 8076             17 years old   Male              11th grade   1.70  86.18
## 8077    18 years old or older Female              12th grade   1.70  77.11
## 8078             16 years old Female              10th grade   1.70 102.06
## 8079             14 years old   Male               9th grade   1.70  63.50
## 8080             16 years old   Male              11th grade   1.70  62.60
## 8081             15 years old Female               9th grade   1.70  63.50
## 8082             17 years old Female              11th grade   1.70  52.16
## 8083    18 years old or older   Male              11th grade   1.70  80.74
## 8084             17 years old Female              11th grade   1.70  77.11
## 8085             16 years old Female              10th grade   1.70  58.06
## 8086             16 years old   Male              10th grade   1.70  64.41
## 8087             15 years old   Male               9th grade   1.70  68.95
## 8088             14 years old Female               9th grade   1.70  55.34
## 8089             14 years old Female               9th grade   1.70  72.58
## 8090             15 years old   Male              10th grade   1.70  49.90
## 8091             15 years old   Male              10th grade   1.70  72.58
## 8092             16 years old Female              10th grade   1.70  63.50
## 8093             14 years old   Male               9th grade   1.70  58.97
## 8094             15 years old Female               9th grade   1.70  52.16
## 8095             14 years old Female               9th grade   1.70  74.39
## 8096             15 years old Female               9th grade   1.70  58.97
## 8097             15 years old Female               9th grade   1.70  75.75
## 8098             15 years old   Male               9th grade   1.70  55.79
## 8099             14 years old   Male               9th grade   1.70  90.72
## 8100             14 years old Female               9th grade   1.70  52.16
## 8101             14 years old Female               9th grade   1.70  68.04
## 8102             15 years old   Male               9th grade   1.70  74.84
## 8103             14 years old Female               9th grade   1.70  58.97
## 8104             14 years old Female               9th grade   1.70  81.65
## 8105             15 years old Female               9th grade   1.70  81.65
## 8106             15 years old Female               9th grade   1.70  57.61
## 8107             15 years old   Male               9th grade   1.70  47.63
## 8108             14 years old   Male               9th grade   1.70 105.24
## 8109             14 years old Female               9th grade   1.70  63.96
## 8110             15 years old Female               9th grade   1.70  88.45
## 8111             15 years old   Male               9th grade   1.70  88.45
## 8112             15 years old Female               9th grade   1.70  68.04
## 8113             15 years old Female               9th grade   1.70  61.24
## 8114             14 years old Female               9th grade   1.70  70.31
## 8115             15 years old   Male               9th grade   1.70  55.34
## 8116             16 years old   Male              11th grade   1.68  74.84
## 8117             15 years old   Male               9th grade   1.68  65.77
## 8118             14 years old Female               9th grade   1.68  97.52
## 8119             17 years old Female              11th grade   1.68  68.04
## 8120             15 years old Female              10th grade   1.68 113.40
## 8121    18 years old or older   Male              12th grade   1.68  71.67
## 8122             15 years old Female              10th grade   1.68  62.14
## 8123             15 years old Female               9th grade   1.68  54.89
## 8124             15 years old Female              10th grade   1.68  66.23
## 8125    18 years old or older Female              11th grade   1.68  97.98
## 8126             15 years old Female               9th grade   1.68  53.52
## 8127             17 years old Female              11th grade   1.68  58.97
## 8128             16 years old   Male              10th grade   1.68  64.41
## 8129             16 years old   Male              10th grade   1.68  97.52
## 8130             15 years old Female               9th grade   1.68  58.97
## 8131             14 years old Female               9th grade   1.68  85.28
## 8132             15 years old   Male               9th grade   1.68  56.70
## 8133             15 years old Female              10th grade   1.68  54.43
## 8134             16 years old   Male              10th grade   1.68  61.24
## 8135             17 years old   Male              10th grade   1.68  81.65
## 8136             15 years old Female               9th grade   1.68  58.97
## 8137             15 years old   Male               9th grade   1.68  61.24
## 8138    18 years old or older Female              12th grade   1.68  81.19
## 8139             17 years old   Male              10th grade   1.68  49.90
## 8140             16 years old   Male              10th grade   1.68  79.38
## 8141             17 years old   Male              10th grade   1.68  67.13
## 8142    18 years old or older Female              12th grade   1.68  82.56
## 8143             16 years old Female              10th grade   1.68  56.70
## 8144    18 years old or older   Male              12th grade   1.68  49.90
## 8145             16 years old Female              10th grade   1.68  57.61
## 8146             17 years old   Male              12th grade   1.68  61.24
## 8147    18 years old or older Female              12th grade   1.68  68.04
## 8148             14 years old   Male               9th grade   1.68  66.23
## 8149             15 years old   Male              10th grade   1.68  54.43
## 8150             15 years old   Male              10th grade   1.68  58.97
## 8151             14 years old Female               9th grade   1.68  49.44
## 8152    18 years old or older   Male              12th grade   1.68  61.24
## 8153             14 years old   Male               9th grade   1.68  62.60
## 8154             15 years old   Male              10th grade   1.68  68.04
## 8155             16 years old   Male              10th grade   1.68  63.50
## 8156             17 years old Female              11th grade   1.68  99.79
## 8157             14 years old   Male               9th grade   1.68  63.50
## 8158             17 years old Female              12th grade   1.68  68.04
## 8159             17 years old Female              11th grade   1.68  63.50
## 8160             15 years old Female               9th grade   1.68  44.45
## 8161             17 years old Female              11th grade   1.68  77.11
## 8162             15 years old   Male               9th grade   1.68  61.24
## 8163             17 years old Female              11th grade   1.68  65.77
## 8164             14 years old   Male               9th grade   1.68  58.06
## 8165             16 years old   Male              11th grade   1.68  66.68
## 8166             14 years old   Male               9th grade   1.68  52.16
## 8167             14 years old Female               9th grade   1.68  58.97
## 8168             16 years old Female              11th grade   1.68  49.44
## 8169             16 years old   Male              10th grade   1.68  56.70
## 8170             16 years old Female              10th grade   1.68  54.43
## 8171             15 years old   Male               9th grade   1.68  58.97
## 8172             16 years old Female              11th grade   1.68  70.31
## 8173             17 years old Female              11th grade   1.68  57.61
## 8174             15 years old   Male              10th grade   1.68  99.79
## 8175             16 years old Female              11th grade   1.68  65.32
## 8176             17 years old Female              12th grade   1.68  61.24
## 8177             17 years old Female              11th grade   1.68  92.99
## 8178             17 years old Female              12th grade   1.68  70.31
## 8179             14 years old Female               9th grade   1.68  49.90
## 8180             16 years old   Male              10th grade   1.68  68.04
## 8181             16 years old   Male              11th grade   1.68  60.78
## 8182             17 years old   Male              12th grade   1.68  60.78
## 8183             15 years old   Male              10th grade   1.68  54.43
## 8184             16 years old   Male              10th grade   1.68 141.52
## 8185             16 years old   Male              11th grade   1.68  77.57
## 8186             17 years old   Male              12th grade   1.68  83.01
## 8187    18 years old or older   Male              12th grade   1.68  90.72
## 8188             15 years old   Male               9th grade   1.68  58.97
## 8189             17 years old   Male              11th grade   1.68  54.43
## 8190             14 years old   Male               9th grade   1.68  98.88
## 8191             16 years old Female              11th grade   1.68  90.72
## 8192             16 years old   Male              11th grade   1.68  52.16
## 8193             15 years old   Male              10th grade   1.68  58.97
## 8194             17 years old   Male              12th grade   1.68  54.43
## 8195             16 years old   Male              11th grade   1.68 108.86
## 8196             16 years old Female              11th grade   1.68  61.24
## 8197             15 years old Female               9th grade   1.68  67.59
## 8198    18 years old or older Female              12th grade   1.68  72.58
## 8199             15 years old   Male              10th grade   1.68  45.36
## 8200             13 years old   Male               9th grade   1.68  79.38
## 8201             15 years old   Male               9th grade   1.68  52.16
## 8202             17 years old Female              12th grade   1.68  63.50
## 8203             17 years old Female              12th grade   1.68  49.90
## 8204             16 years old Female              10th grade   1.68  47.63
## 8205             17 years old   Male              12th grade   1.68  79.38
## 8206             14 years old   Male               9th grade   1.68  63.50
## 8207             16 years old Female              10th grade   1.68  72.58
## 8208             15 years old   Male              10th grade   1.68  58.97
## 8209    18 years old or older Female              12th grade   1.68  54.43
## 8210             15 years old Female              10th grade   1.68  58.06
## 8211             17 years old Female              11th grade   1.68  61.24
## 8212             15 years old   Male              11th grade   1.68  64.41
## 8213             14 years old Female               9th grade   1.68  54.43
## 8214             17 years old Female              12th grade   1.68  49.90
## 8215             14 years old   Male               9th grade   1.68  56.70
## 8216             14 years old Female               9th grade   1.68  65.77
## 8217             15 years old   Male               9th grade   1.68  57.15
## 8218             15 years old   Male               9th grade   1.68  54.43
## 8219             16 years old   Male              11th grade   1.68  58.97
## 8220             16 years old Female              11th grade   1.68  57.61
## 8221    18 years old or older Female              12th grade   1.68  72.58
## 8222             16 years old   Male              10th grade   1.68  74.84
## 8223             16 years old Female              11th grade   1.68  54.43
## 8224             16 years old   Male              10th grade   1.68  58.06
## 8225             16 years old Female              11th grade   1.68  52.16
## 8226             16 years old   Male              11th grade   1.68  61.24
## 8227             16 years old   Male              11th grade   1.68  81.65
## 8228             16 years old   Male               9th grade   1.68 122.47
## 8229             17 years old Female              12th grade   1.68  57.15
## 8230             16 years old   Male              11th grade   1.68  57.15
## 8231             15 years old Female               9th grade   1.68  56.70
## 8232             14 years old Female               9th grade   1.68  72.58
## 8233             15 years old Female               9th grade   1.68  68.04
## 8234             17 years old Female              11th grade   1.68  60.33
## 8235    18 years old or older   Male              12th grade   1.68  61.24
## 8236             17 years old Female              12th grade   1.68  58.97
## 8237    18 years old or older Female              12th grade   1.68  58.97
## 8238             16 years old Female              11th grade   1.68  63.50
## 8239             15 years old Female              10th grade   1.68  49.90
## 8240             16 years old   Male              10th grade   1.68  54.43
## 8241             15 years old   Male              10th grade   1.68  70.76
## 8242             17 years old   Male              11th grade   1.68  77.11
## 8243             16 years old   Male              10th grade   1.68  68.04
## 8244             17 years old Female              11th grade   1.68  86.18
## 8245             16 years old Female              11th grade   1.68  63.50
## 8246             16 years old Female              11th grade   1.68  51.71
## 8247             17 years old   Male              11th grade   1.68  62.14
## 8248             16 years old   Male              11th grade   1.68  81.65
## 8249             17 years old   Male              11th grade   1.68  77.11
## 8250             15 years old   Male               9th grade   1.68  81.65
## 8251             15 years old   Male               9th grade   1.68  77.11
## 8252             17 years old Female              12th grade   1.68  86.18
## 8253             15 years old Female               9th grade   1.68  53.52
## 8254    18 years old or older Female              12th grade   1.68  72.58
## 8255             14 years old Female               9th grade   1.68  52.16
## 8256             16 years old Female              10th grade   1.68  73.48
## 8257    18 years old or older Female              12th grade   1.68  77.11
## 8258             15 years old Female               9th grade   1.68  70.76
## 8259             15 years old   Male               9th grade   1.68  58.97
## 8260             17 years old   Male              11th grade   1.68  68.04
## 8261             17 years old Female              11th grade   1.68  61.24
## 8262             15 years old Female               9th grade   1.68  63.50
## 8263             15 years old   Male              10th grade   1.68  54.43
## 8264    18 years old or older Female              12th grade   1.68  58.97
## 8265             17 years old Female              11th grade   1.68  65.77
## 8266             14 years old Female               9th grade   1.68  61.24
## 8267             17 years old   Male              12th grade   1.68  45.36
## 8268             15 years old Female              10th grade   1.68  58.97
## 8269             15 years old Female              10th grade   1.68  79.38
## 8270    18 years old or older Female              12th grade   1.68  60.78
## 8271    18 years old or older Female              12th grade   1.68  81.19
## 8272             16 years old Female              10th grade   1.68  48.08
## 8273             14 years old Female               9th grade   1.68  61.24
## 8274             16 years old   Male              10th grade   1.68  61.24
## 8275             15 years old   Male              10th grade   1.68  68.95
## 8276             16 years old Female              10th grade   1.68  68.04
## 8277             17 years old Female              12th grade   1.68  54.43
## 8278             17 years old Female              12th grade   1.68  81.65
## 8279             16 years old Female              12th grade   1.68  56.70
## 8280    18 years old or older   Male              12th grade   1.68  76.20
## 8281             17 years old Female              12th grade   1.68  81.65
## 8282             17 years old   Male              11th grade   1.68  54.43
## 8283             17 years old Female              11th grade   1.68  64.41
## 8284             16 years old Female              11th grade   1.68  49.90
## 8285             16 years old Female              11th grade   1.68  72.58
## 8286             14 years old   Male               9th grade   1.68  57.61
## 8287             16 years old Female              11th grade   1.68 104.33
## 8288             17 years old Female              12th grade   1.68  61.24
## 8289             16 years old   Male              11th grade   1.68  72.58
## 8290    18 years old or older Female              12th grade   1.68  56.70
## 8291             17 years old   Male              12th grade   1.68  68.04
## 8292             17 years old Female              12th grade   1.68  51.71
## 8293    18 years old or older Female              12th grade   1.68  54.43
## 8294             14 years old   Male               9th grade   1.68  80.74
## 8295             16 years old Female              10th grade   1.68  54.43
## 8296             15 years old Female              10th grade   1.68  68.49
## 8297             15 years old   Male              10th grade   1.68  58.06
## 8298             15 years old   Male              10th grade   1.68  63.50
## 8299             17 years old   Male              11th grade   1.68  63.50
## 8300             16 years old   Male              11th grade   1.68  88.45
## 8301             15 years old Female               9th grade   1.68  50.35
## 8302             17 years old   Male              12th grade   1.68  68.04
## 8303             15 years old   Male              10th grade   1.68  81.65
## 8304             17 years old Female              10th grade   1.68  71.67
## 8305             16 years old Female              10th grade   1.68  72.58
## 8306             14 years old Female               9th grade   1.68 158.76
## 8307             17 years old Female              12th grade   1.68  72.12
## 8308             17 years old Female              12th grade   1.68  52.16
## 8309             17 years old   Male              11th grade   1.68  90.72
## 8310             16 years old Female              11th grade   1.68  68.04
## 8311             16 years old Female              10th grade   1.68  84.37
## 8312             16 years old Female              10th grade   1.68 143.34
## 8313    18 years old or older Female              12th grade   1.68  68.04
## 8314             15 years old Female              10th grade   1.68  90.72
## 8315    18 years old or older Female              12th grade   1.68  65.77
## 8316             15 years old   Male               9th grade   1.68  52.16
## 8317             15 years old   Male              10th grade   1.68  45.36
## 8318             17 years old   Male              12th grade   1.68  88.45
## 8319             16 years old Female              10th grade   1.68  77.11
## 8320             15 years old   Male               9th grade   1.68  68.04
## 8321    18 years old or older Female              12th grade   1.68  68.04
## 8322             14 years old   Male               9th grade   1.68  47.63
## 8323             16 years old Female              10th grade   1.68  55.79
## 8324    18 years old or older Female              12th grade   1.68  54.43
## 8325             15 years old Female              10th grade   1.68  56.70
## 8326             16 years old   Male               9th grade   1.68  68.04
## 8327             17 years old Female              11th grade   1.68  90.72
## 8328             15 years old   Male               9th grade   1.68  53.98
## 8329             14 years old Female               9th grade   1.68  49.90
## 8330             14 years old Female               9th grade   1.68  63.50
## 8331             15 years old   Male               9th grade   1.68  54.43
## 8332             16 years old   Male              10th grade   1.68  63.50
## 8333    18 years old or older   Male              12th grade   1.68  49.90
## 8334             14 years old   Male               9th grade   1.68  49.90
## 8335             15 years old   Male              10th grade   1.68  56.70
## 8336             17 years old Female              12th grade   1.68  68.95
## 8337             17 years old   Male              11th grade   1.68  54.43
## 8338    18 years old or older   Male              12th grade   1.68  61.24
## 8339             14 years old   Male               9th grade   1.68  52.16
## 8340             15 years old Female               9th grade   1.68  52.62
## 8341             16 years old Female              11th grade   1.68  49.90
## 8342             17 years old Female              11th grade   1.68  58.97
## 8343             16 years old   Male              10th grade   1.68 100.70
## 8344             14 years old Female               9th grade   1.68  68.04
## 8345             15 years old Female              10th grade   1.68  68.04
## 8346             15 years old Female              10th grade   1.68  74.84
## 8347             15 years old Female               9th grade   1.68  58.51
## 8348             14 years old Female               9th grade   1.68  49.90
## 8349             17 years old Female              12th grade   1.68  92.53
## 8350             14 years old Female               9th grade   1.68  60.33
## 8351             17 years old Female              12th grade   1.68  58.06
## 8352             15 years old Female               9th grade   1.68  65.77
## 8353             15 years old   Male               9th grade   1.68  58.97
## 8354             15 years old   Male               9th grade   1.68  68.95
## 8355             15 years old   Male               9th grade   1.68  62.14
## 8356             17 years old   Male              11th grade   1.68  68.04
## 8357    18 years old or older   Male              12th grade   1.68  77.11
## 8358    18 years old or older   Male              12th grade   1.68  61.24
## 8359             16 years old   Male              11th grade   1.68  49.90
## 8360             16 years old Female              10th grade   1.68 104.33
## 8361             17 years old Female              12th grade   1.68  53.07
## 8362    18 years old or older Female              12th grade   1.68  58.97
## 8363             16 years old   Male              10th grade   1.68  78.02
## 8364             17 years old Female              12th grade   1.68 113.40
## 8365             17 years old Female              12th grade   1.68  61.24
## 8366             15 years old Female               9th grade   1.68  58.97
## 8367    18 years old or older Female              12th grade   1.68  52.16
## 8368             15 years old Female               9th grade   1.68  68.04
## 8369             14 years old   Male               9th grade   1.68  61.24
## 8370             15 years old   Male               9th grade   1.68  61.24
## 8371             15 years old   Male               9th grade   1.68  52.16
## 8372             14 years old Female               9th grade   1.68  56.70
## 8373             15 years old   Male               9th grade   1.68  51.26
## 8374             15 years old Female               9th grade   1.68  54.43
## 8375             16 years old   Male              11th grade   1.68  99.79
## 8376             15 years old Female              10th grade   1.68  56.70
## 8377             17 years old Female              11th grade   1.68  47.63
## 8378             15 years old Female              10th grade   1.68  63.50
## 8379    18 years old or older Female              12th grade   1.68  56.70
## 8380             17 years old Female              11th grade   1.68  52.16
## 8381             17 years old Female              12th grade   1.68  58.97
## 8382    18 years old or older Female              12th grade   1.68  57.61
## 8383             17 years old Female              11th grade   1.68  72.58
## 8384    18 years old or older   Male              12th grade   1.68  72.58
## 8385             17 years old Female              11th grade   1.68  72.58
## 8386             15 years old   Male               9th grade   1.68  72.58
## 8387             17 years old Female              11th grade   1.68  72.58
## 8388             15 years old Female               9th grade   1.68  58.97
## 8389             15 years old   Male               9th grade   1.68  54.43
## 8390             14 years old Female               9th grade   1.68  81.65
## 8391             17 years old Female              12th grade   1.68  88.45
## 8392             14 years old Female               9th grade   1.68  45.81
## 8393             15 years old   Male              10th grade   1.68  68.49
## 8394             14 years old   Male               9th grade   1.68  54.43
## 8395             17 years old   Male              12th grade   1.68  63.50
## 8396             15 years old Female              10th grade   1.68  56.70
## 8397    18 years old or older Female              12th grade   1.68  64.41
## 8398             15 years old Female              10th grade   1.68  65.77
## 8399             16 years old   Male              10th grade   1.68  58.97
## 8400             17 years old Female              12th grade   1.68  74.84
## 8401             16 years old   Male              10th grade   1.68  62.60
## 8402             17 years old Female              11th grade   1.68  57.15
## 8403             14 years old Female               9th grade   1.68  72.58
## 8404             14 years old Female               9th grade   1.68  90.72
## 8405             15 years old   Male               9th grade   1.68  64.41
## 8406             16 years old   Male              10th grade   1.68  92.53
## 8407             17 years old   Male              11th grade   1.68  61.24
## 8408             17 years old   Male              11th grade   1.68  65.77
## 8409             16 years old   Male              10th grade   1.68  56.70
## 8410             16 years old   Male              10th grade   1.68  49.90
## 8411             15 years old   Male               9th grade   1.68  58.97
## 8412             14 years old   Male               9th grade   1.68  75.75
## 8413             15 years old   Male              10th grade   1.68  61.24
## 8414             15 years old   Male               9th grade   1.68  60.33
## 8415             16 years old Female              10th grade   1.68  56.70
## 8416             15 years old   Male              10th grade   1.68  58.97
## 8417             14 years old   Male               9th grade   1.68  47.63
## 8418             16 years old Female              10th grade   1.68  58.97
## 8419             17 years old   Male              12th grade   1.68  63.50
## 8420             16 years old   Male              11th grade   1.68  58.97
## 8421             17 years old   Male              12th grade   1.68  65.77
## 8422             14 years old Female               9th grade   1.68  49.90
## 8423             14 years old   Male               9th grade   1.68  48.99
## 8424             15 years old Female               9th grade   1.68  47.17
## 8425             15 years old Female              10th grade   1.68 100.25
## 8426             16 years old Female              10th grade   1.68  49.90
## 8427             15 years old Female              10th grade   1.68  68.04
## 8428             15 years old Female               9th grade   1.68  70.31
## 8429             15 years old Female              10th grade   1.68  56.70
## 8430             14 years old Female               9th grade   1.68  54.43
## 8431             15 years old Female              10th grade   1.68  92.99
## 8432             17 years old Female              12th grade   1.68  61.24
## 8433             17 years old Female              12th grade   1.68  61.24
## 8434             15 years old Female               9th grade   1.68  63.50
## 8435             16 years old Female              10th grade   1.68  56.70
## 8436             16 years old Female              10th grade   1.68  54.43
## 8437             17 years old   Male              11th grade   1.68  40.82
## 8438             16 years old Female              11th grade   1.68  58.97
## 8439             15 years old   Male               9th grade   1.68  63.50
## 8440             17 years old Female              12th grade   1.68  86.18
## 8441             15 years old Female               9th grade   1.68  79.38
## 8442             15 years old   Male               9th grade   1.68  46.72
## 8443             16 years old Female              10th grade   1.68  53.52
## 8444             15 years old Female              10th grade   1.68  68.04
## 8445             16 years old   Male              11th grade   1.68  51.26
## 8446             14 years old   Male               9th grade   1.68  72.58
## 8447             16 years old   Male              10th grade   1.68  56.70
## 8448             15 years old Female               9th grade   1.68  56.70
## 8449             17 years old   Male              12th grade   1.68  61.24
## 8450             14 years old Female               9th grade   1.68  45.36
## 8451    18 years old or older Female              12th grade   1.68  86.18
## 8452             15 years old Female               9th grade   1.68  63.50
## 8453             17 years old Female              11th grade   1.68  54.43
## 8454             16 years old   Male              10th grade   1.68  56.70
## 8455             15 years old   Male               9th grade   1.68  47.63
## 8456             16 years old Female              10th grade   1.68  59.88
## 8457             15 years old   Male               9th grade   1.68  68.04
## 8458             16 years old Female              10th grade   1.68  64.41
## 8459             15 years old   Male              10th grade   1.68  57.61
## 8460             16 years old   Male              10th grade   1.68  62.60
## 8461             15 years old Female               9th grade   1.68  90.72
## 8462             16 years old Female               9th grade   1.68  77.11
## 8463             15 years old Female               9th grade   1.68  54.89
## 8464             15 years old   Male               9th grade   1.68  55.79
## 8465             17 years old Female              11th grade   1.68  64.86
## 8466             16 years old Female              10th grade   1.68 121.11
## 8467             17 years old   Male              10th grade   1.68  65.77
## 8468             17 years old Female              11th grade   1.68  68.04
## 8469             17 years old   Male              11th grade   1.68 106.60
## 8470             16 years old Female              10th grade   1.68  68.04
## 8471             16 years old Female              10th grade   1.68  63.50
## 8472    18 years old or older Female              12th grade   1.68  94.35
## 8473             16 years old Female              10th grade   1.68  61.24
## 8474             15 years old   Male              10th grade   1.68  55.34
## 8475             16 years old   Male              11th grade   1.68  68.95
## 8476             17 years old   Male              11th grade   1.68  58.97
## 8477             15 years old Female               9th grade   1.68  56.70
## 8478             16 years old Female              11th grade   1.68  63.50
## 8479             17 years old   Male              11th grade   1.68  79.38
## 8480             17 years old Female              11th grade   1.68  54.43
## 8481             16 years old Female              11th grade   1.68  58.97
## 8482    18 years old or older   Male              12th grade   1.68  61.24
## 8483             17 years old Female              11th grade   1.68  61.24
## 8484             17 years old Female              12th grade   1.68  63.50
## 8485             17 years old Female              12th grade   1.68  58.06
## 8486             16 years old Female              10th grade   1.68  74.84
## 8487             14 years old Female               9th grade   1.68  68.04
## 8488             17 years old Female              12th grade   1.68  68.04
## 8489             17 years old Female              11th grade   1.68 115.67
## 8490             17 years old   Male              11th grade   1.68  64.41
## 8491    18 years old or older Female              12th grade   1.68  82.56
## 8492    18 years old or older Female              12th grade   1.68  71.67
## 8493             17 years old Female              12th grade   1.68 102.06
## 8494             16 years old   Male              11th grade   1.68  50.80
## 8495             17 years old Female              11th grade   1.68  73.48
## 8496             16 years old   Male              11th grade   1.68  71.67
## 8497             15 years old   Male              10th grade   1.68  70.31
## 8498             16 years old   Male              10th grade   1.68  54.43
## 8499             15 years old   Male              10th grade   1.68  65.32
## 8500             15 years old Female              10th grade   1.68  81.65
## 8501             16 years old Female              11th grade   1.68  58.97
## 8502             16 years old   Male              10th grade   1.68  90.72
## 8503             15 years old Female              10th grade   1.68  52.16
## 8504             15 years old Female              10th grade   1.68  54.43
## 8505             16 years old Female              11th grade   1.68  81.65
## 8506             16 years old Female              10th grade   1.68  58.97
## 8507    18 years old or older   Male              12th grade   1.68  60.78
## 8508             17 years old Female              12th grade   1.68  59.88
## 8509    18 years old or older Female              12th grade   1.68  72.58
## 8510             15 years old   Male               9th grade   1.68  56.70
## 8511             14 years old Female               9th grade   1.68  48.99
## 8512             16 years old   Male              10th grade   1.68  49.90
## 8513             16 years old   Male              10th grade   1.68  67.59
## 8514             15 years old   Male               9th grade   1.68  52.16
## 8515             17 years old Female              12th grade   1.68  81.65
## 8516             17 years old Female              11th grade   1.68  57.15
## 8517             17 years old Female              11th grade   1.68  83.92
## 8518             17 years old Female              12th grade   1.68 102.06
## 8519    18 years old or older Female              12th grade   1.68  57.15
## 8520    18 years old or older Female              12th grade   1.68  56.70
## 8521             16 years old   Male              11th grade   1.68  83.92
## 8522             15 years old   Male              10th grade   1.68  65.32
## 8523             15 years old Female              10th grade   1.68  82.56
## 8524             17 years old Female              12th grade   1.68  63.50
## 8525             16 years old   Male              10th grade   1.68  61.24
## 8526             17 years old Female              12th grade   1.68  64.86
## 8527             17 years old Female              11th grade   1.68  72.58
## 8528             14 years old Female               9th grade   1.68  63.50
## 8529             15 years old Female               9th grade   1.68  88.91
## 8530             15 years old   Male               9th grade   1.68  56.70
## 8531             15 years old   Male               9th grade   1.68  58.97
## 8532             17 years old Female              11th grade   1.68  54.43
## 8533             15 years old Female               9th grade   1.68  68.04
## 8534             15 years old   Male               9th grade   1.68  48.99
## 8535             15 years old Female               9th grade   1.68  61.24
## 8536             15 years old Female               9th grade   1.68  56.70
## 8537             16 years old Female              10th grade   1.68  56.70
## 8538             17 years old Female              12th grade   1.68  61.24
## 8539             16 years old   Male              10th grade   1.68  54.89
## 8540             17 years old Female              12th grade   1.68 108.86
## 8541             15 years old Female              10th grade   1.68  68.04
## 8542             17 years old   Male              11th grade   1.68  53.52
## 8543             14 years old   Male               9th grade   1.68  63.50
## 8544             16 years old Female              10th grade   1.68  51.71
## 8545             14 years old   Male               9th grade   1.68  67.13
## 8546             15 years old   Male               9th grade   1.68  52.16
## 8547    18 years old or older Female              11th grade   1.68  56.70
## 8548             16 years old   Male              11th grade   1.68  53.52
## 8549             14 years old Female               9th grade   1.68  53.52
## 8550             14 years old   Male               9th grade   1.68  64.86
## 8551             16 years old   Male              10th grade   1.68 131.54
## 8552             17 years old Female              11th grade   1.68 122.02
## 8553             17 years old   Male              12th grade   1.68  58.06
## 8554             15 years old   Male               9th grade   1.68  72.58
## 8555             15 years old Female               9th grade   1.68  63.50
## 8556             16 years old Female              10th grade   1.68  52.16
## 8557    18 years old or older Female              12th grade   1.68  70.31
## 8558             16 years old Female              10th grade   1.68  62.14
## 8559             16 years old   Male              10th grade   1.68  62.60
## 8560             14 years old   Male               9th grade   1.68  54.43
## 8561             15 years old Female               9th grade   1.68  61.24
## 8562             17 years old Female              11th grade   1.68  61.24
## 8563             14 years old Female               9th grade   1.68  49.90
## 8564             16 years old   Male              10th grade   1.68  56.70
## 8565    18 years old or older   Male              12th grade   1.68  58.97
## 8566    18 years old or older Female              12th grade   1.68  65.77
## 8567             14 years old Female               9th grade   1.68 140.62
## 8568             15 years old   Male               9th grade   1.68  86.18
## 8569             16 years old Female              11th grade   1.68  61.24
## 8570             16 years old   Male              10th grade   1.68  58.97
## 8571             15 years old Female              10th grade   1.68  84.82
## 8572             15 years old Female               9th grade   1.68  74.84
## 8573             15 years old   Male               9th grade   1.68  53.52
## 8574             17 years old   Male              12th grade   1.68  72.58
## 8575             17 years old Female              12th grade   1.68  54.89
## 8576    18 years old or older Female              12th grade   1.68  81.65
## 8577    18 years old or older Female              12th grade   1.68  61.24
## 8578             15 years old Female              10th grade   1.68  59.88
## 8579             16 years old Female              10th grade   1.68  58.97
## 8580             16 years old Female              11th grade   1.68  61.24
## 8581             16 years old Female              11th grade   1.68 100.70
## 8582    18 years old or older Female              12th grade   1.68  81.65
## 8583    18 years old or older Female              12th grade   1.68  77.11
## 8584             14 years old Female               9th grade   1.68  54.43
## 8585             17 years old   Male              10th grade   1.68  95.26
## 8586             15 years old   Male               9th grade   1.68  65.77
## 8587             14 years old   Male               9th grade   1.68  53.07
## 8588             16 years old Female              10th grade   1.68  63.50
## 8589             17 years old Female              11th grade   1.68  58.06
## 8590             16 years old Female              11th grade   1.68  97.52
## 8591             17 years old   Male              12th grade   1.68  63.50
## 8592             17 years old   Male              12th grade   1.68  76.20
## 8593    18 years old or older Female              12th grade   1.68 102.51
## 8594             15 years old   Male               9th grade   1.68  69.40
## 8595             16 years old Female              10th grade   1.68  54.43
## 8596             14 years old Female               9th grade   1.68  54.43
## 8597             15 years old Female               9th grade   1.68  79.83
## 8598             15 years old   Male               9th grade   1.68  49.44
## 8599             15 years old Female               9th grade   1.68  49.90
## 8600             16 years old Female              11th grade   1.68  62.60
## 8601             14 years old Female               9th grade   1.68  71.67
## 8602             15 years old Female               9th grade   1.68  76.66
## 8603             16 years old Female              10th grade   1.68  68.04
## 8604             17 years old   Male              10th grade   1.68  72.58
## 8605             17 years old   Male              12th grade   1.68  82.56
## 8606    18 years old or older   Male              12th grade   1.68  86.18
## 8607    18 years old or older   Male              12th grade   1.68  54.43
## 8608    18 years old or older Female              12th grade   1.68  63.50
## 8609             14 years old Female               9th grade   1.68  68.04
## 8610             16 years old   Male              10th grade   1.68  63.50
## 8611    18 years old or older   Male              12th grade   1.68  68.04
## 8612             15 years old   Male               9th grade   1.68  50.80
## 8613    18 years old or older   Male              12th grade   1.68  52.16
## 8614             16 years old Female              11th grade   1.68  77.11
## 8615    18 years old or older   Male              12th grade   1.68  58.97
## 8616    18 years old or older Female              12th grade   1.68  61.24
## 8617             17 years old Female              12th grade   1.68  68.04
## 8618             15 years old Female               9th grade   1.68  58.97
## 8619             15 years old   Male              10th grade   1.68  50.80
## 8620             16 years old   Male              11th grade   1.68  51.26
## 8621             17 years old   Male              11th grade   1.68  61.24
## 8622             17 years old Female              12th grade   1.68  53.52
## 8623             16 years old Female              11th grade   1.68  57.61
## 8624             16 years old   Male              11th grade   1.68  61.24
## 8625             15 years old   Male               9th grade   1.68  77.11
## 8626             16 years old Female              11th grade   1.68  63.50
## 8627             17 years old Female              11th grade   1.68  69.85
## 8628             16 years old Female              11th grade   1.68  58.97
## 8629             15 years old   Male               9th grade   1.68  95.26
## 8630             17 years old   Male              11th grade   1.68  81.65
## 8631             14 years old   Male               9th grade   1.68  54.89
## 8632             15 years old   Male              10th grade   1.68  63.96
## 8633    18 years old or older Female              12th grade   1.68  51.71
## 8634             14 years old   Male               9th grade   1.68  72.58
## 8635             15 years old Female              10th grade   1.68  73.94
## 8636             14 years old Female               9th grade   1.68  55.79
## 8637             16 years old Female              10th grade   1.68  63.50
## 8638             14 years old Female               9th grade   1.68  86.18
## 8639             15 years old Female               9th grade   1.68  57.15
## 8640             15 years old Female              10th grade   1.68  49.90
## 8641             14 years old Female               9th grade   1.68  62.60
## 8642             16 years old   Male              11th grade   1.68  74.84
## 8643             15 years old   Male               9th grade   1.68  54.43
## 8644             15 years old   Male              10th grade   1.68  68.04
## 8645             14 years old Female               9th grade   1.68  71.67
## 8646             17 years old   Male              11th grade   1.68 112.95
## 8647             17 years old   Male              11th grade   1.68  67.13
## 8648             16 years old   Male              11th grade   1.68  58.97
## 8649             16 years old   Male              11th grade   1.68  53.98
## 8650             16 years old Female              11th grade   1.68  79.38
## 8651             15 years old Female              10th grade   1.68  54.43
## 8652             17 years old Female              11th grade   1.68  65.77
## 8653             15 years old Female              10th grade   1.68  65.77
## 8654             15 years old Female              10th grade   1.68  54.43
## 8655    18 years old or older Female              12th grade   1.68  74.39
## 8656             16 years old Female              11th grade   1.68 138.35
## 8657             17 years old Female              11th grade   1.68  61.24
## 8658             16 years old   Male              11th grade   1.68  43.09
## 8659             17 years old   Male              11th grade   1.68  81.65
## 8660             16 years old   Male              10th grade   1.68  62.60
## 8661             16 years old Female              10th grade   1.68  54.43
## 8662             15 years old   Male              10th grade   1.68  64.86
## 8663    18 years old or older Female              12th grade   1.68  64.41
## 8664             15 years old   Male              10th grade   1.68  63.05
## 8665             15 years old Female              10th grade   1.68  59.88
## 8666             15 years old   Male              10th grade   1.68  47.63
## 8667             16 years old   Male              10th grade   1.68  58.97
## 8668             16 years old   Male              10th grade   1.68  75.75
## 8669             16 years old   Male              10th grade   1.68  63.50
## 8670             15 years old Female              10th grade   1.68  54.43
## 8671             16 years old Female              10th grade   1.68  61.24
## 8672             15 years old   Male               9th grade   1.68  58.97
## 8673             17 years old Female              11th grade   1.68  62.60
## 8674             16 years old Female              10th grade   1.68  66.23
## 8675             17 years old   Male              11th grade   1.68  79.38
## 8676             15 years old Female               9th grade   1.68  52.62
## 8677             14 years old   Male               9th grade   1.68  56.70
## 8678             15 years old Female              10th grade   1.68  67.13
## 8679             14 years old Female               9th grade   1.68  86.18
## 8680             15 years old Female              10th grade   1.68  55.34
## 8681             14 years old   Male               9th grade   1.68  54.43
## 8682             17 years old Female              12th grade   1.68  55.34
## 8683             17 years old   Male              12th grade   1.68  73.94
## 8684             15 years old Female               9th grade   1.68  54.43
## 8685    18 years old or older   Male              12th grade   1.68  56.25
## 8686             15 years old   Male               9th grade   1.68  54.43
## 8687             14 years old   Male               9th grade   1.68  48.54
## 8688             15 years old Female              10th grade   1.68  58.97
## 8689             14 years old   Male               9th grade   1.68  68.04
## 8690             15 years old Female               9th grade   1.68  58.97
## 8691             15 years old Female              10th grade   1.68  53.52
## 8692             14 years old   Male               9th grade   1.68  63.50
## 8693             14 years old Female               9th grade   1.68  61.24
## 8694             15 years old Female              10th grade   1.68  68.04
## 8695    18 years old or older   Male              12th grade   1.68 136.08
## 8696             14 years old   Male               9th grade   1.68  99.79
## 8697             14 years old   Male               9th grade   1.68  48.99
## 8698             16 years old Female              10th grade   1.68  52.16
## 8699             15 years old Female               9th grade   1.68  53.07
## 8700             16 years old Female              11th grade   1.68  54.43
## 8701             15 years old Female               9th grade   1.68  54.43
## 8702             14 years old   Male               9th grade   1.68  60.33
## 8703             17 years old Female              11th grade   1.68 112.49
## 8704             15 years old Female              10th grade   1.68  65.77
## 8705             15 years old   Male               9th grade   1.68  49.90
## 8706             15 years old Female              10th grade   1.68 111.13
## 8707             16 years old Female              10th grade   1.68  65.77
## 8708             17 years old Female              11th grade   1.68  54.43
## 8709             16 years old Female              10th grade   1.68  77.11
## 8710             16 years old   Male              10th grade   1.68  81.65
## 8711             16 years old   Male              11th grade   1.68  77.11
## 8712             17 years old Female              11th grade   1.68  72.58
## 8713             17 years old Female              11th grade   1.68  58.97
## 8714    18 years old or older   Male              12th grade   1.68  54.89
## 8715             15 years old   Male               9th grade   1.68  81.65
## 8716             16 years old Female              11th grade   1.68  52.62
## 8717             16 years old Female              11th grade   1.68  54.43
## 8718             17 years old Female              11th grade   1.68  83.92
## 8719    18 years old or older Female              12th grade   1.68  81.65
## 8720             16 years old Female              10th grade   1.68  72.58
## 8721             15 years old Female               9th grade   1.68  72.58
## 8722             16 years old   Male              10th grade   1.68  72.58
## 8723             16 years old   Male              10th grade   1.68  76.66
## 8724             15 years old Female               9th grade   1.68  57.61
## 8725             16 years old Female              10th grade   1.68  68.04
## 8726             16 years old Female               9th grade   1.68  65.32
## 8727             17 years old Female              11th grade   1.68  56.70
## 8728             15 years old Female               9th grade   1.68  56.70
## 8729             17 years old Female              11th grade   1.68  58.97
## 8730             15 years old Female               9th grade   1.68  68.04
## 8731             16 years old   Male              10th grade   1.68  56.25
## 8732             15 years old   Male               9th grade   1.68  77.11
## 8733             16 years old Female              11th grade   1.68  81.65
## 8734             14 years old Female               9th grade   1.68  53.98
## 8735             16 years old Female              11th grade   1.68  62.60
## 8736             14 years old Female               9th grade   1.68  56.70
## 8737             17 years old   Male              11th grade   1.68  73.03
## 8738             14 years old Female               9th grade   1.68  52.16
## 8739             16 years old   Male              10th grade   1.68  63.50
## 8740             16 years old   Male              11th grade   1.68  47.63
## 8741             15 years old   Male              10th grade   1.68  53.98
## 8742             17 years old   Male              11th grade   1.68  57.61
## 8743             17 years old Female              12th grade   1.68  79.38
## 8744             16 years old Female              10th grade   1.68  45.36
## 8745             16 years old Female              10th grade   1.68  64.41
## 8746             14 years old   Male               9th grade   1.68  49.90
## 8747             15 years old   Male               9th grade   1.68  67.13
## 8748             16 years old Female              10th grade   1.68  51.26
## 8749             14 years old   Male               9th grade   1.68  76.20
## 8750             15 years old Female               9th grade   1.68  63.50
## 8751             15 years old   Male               9th grade   1.68  91.17
## 8752             17 years old Female              12th grade   1.68  86.18
## 8753             16 years old   Male              10th grade   1.68  61.69
## 8754             15 years old Female              10th grade   1.68  84.82
## 8755             17 years old Female              11th grade   1.68  55.79
## 8756             16 years old Female               9th grade   1.68  76.66
## 8757             16 years old Female              10th grade   1.68  54.43
## 8758             15 years old   Male               9th grade   1.68 133.36
## 8759             15 years old Female               9th grade   1.68  69.40
## 8760             16 years old Female              11th grade   1.68  74.39
## 8761             14 years old   Male               9th grade   1.68  68.04
## 8762             14 years old   Male               9th grade   1.68  61.69
## 8763             15 years old   Male               9th grade   1.68  58.97
## 8764             15 years old   Male               9th grade   1.68  65.77
## 8765             14 years old Female               9th grade   1.68  49.90
## 8766    18 years old or older Female              12th grade   1.68 113.40
## 8767    18 years old or older   Male              12th grade   1.68  65.77
## 8768             15 years old Female               9th grade   1.68  51.26
## 8769             17 years old   Male              11th grade   1.68 111.13
## 8770             15 years old   Male              10th grade   1.68  66.68
## 8771             17 years old   Male              11th grade   1.68  58.97
## 8772    18 years old or older   Male              12th grade   1.68  72.58
## 8773    18 years old or older   Male              11th grade   1.68  68.04
## 8774             17 years old Female              11th grade   1.68  54.43
## 8775             16 years old Female              10th grade   1.68  63.05
## 8776             16 years old   Male              10th grade   1.68  55.34
## 8777    18 years old or older   Male              11th grade   1.68  68.04
## 8778    18 years old or older   Male              12th grade   1.68  54.43
## 8779             15 years old Female               9th grade   1.68  54.43
## 8780             16 years old Female              11th grade   1.68  92.08
## 8781             14 years old Female               9th grade   1.68  58.97
## 8782             14 years old Female               9th grade   1.68  38.56
## 8783             17 years old Female              11th grade   1.68  93.90
## 8784    18 years old or older Female              12th grade   1.68  72.58
## 8785    18 years old or older Female              12th grade   1.68  69.85
## 8786             17 years old   Male              11th grade   1.68  72.58
## 8787    18 years old or older Female              12th grade   1.68 108.86
## 8788             16 years old Female              11th grade   1.68  85.28
## 8789             16 years old Female              10th grade   1.68  61.24
## 8790             17 years old Female              11th grade   1.68  56.70
## 8791    18 years old or older Female              12th grade   1.68  91.63
## 8792             15 years old Female               9th grade   1.68  50.80
## 8793    18 years old or older Female              11th grade   1.68  49.90
## 8794             15 years old Female              10th grade   1.68  49.90
## 8795             16 years old   Male              10th grade   1.68  58.97
## 8796             16 years old Female              11th grade   1.68  58.97
## 8797             16 years old   Male               9th grade   1.68  50.35
## 8798             16 years old Female              11th grade   1.68  54.43
## 8799    18 years old or older Female              11th grade   1.68  99.79
## 8800             15 years old Female               9th grade   1.68  85.28
## 8801             14 years old Female               9th grade   1.68  53.98
## 8802             15 years old Female               9th grade   1.68  56.70
## 8803             14 years old   Male               9th grade   1.68  56.25
## 8804             16 years old   Male              11th grade   1.68  52.16
## 8805             17 years old Female              12th grade   1.68  68.04
## 8806             16 years old Female              11th grade   1.68  45.36
## 8807             17 years old Female              12th grade   1.68  52.16
## 8808             17 years old Female              11th grade   1.68  72.58
## 8809    18 years old or older   Male              12th grade   1.68 133.81
## 8810             16 years old   Male              10th grade   1.68  68.04
## 8811             17 years old   Male              11th grade   1.68  56.70
## 8812             16 years old   Male              10th grade   1.68  58.51
## 8813             16 years old Female              10th grade   1.68  68.95
## 8814             17 years old Female              12th grade   1.68  62.14
## 8815             17 years old   Male              11th grade   1.68  81.65
## 8816             17 years old Female              11th grade   1.68  56.25
## 8817             16 years old   Male               9th grade   1.68  70.31
## 8818             15 years old Female               9th grade   1.68  49.90
## 8819             16 years old Female              11th grade   1.68  58.97
## 8820    18 years old or older Female              12th grade   1.68  61.69
## 8821             16 years old   Male              10th grade   1.68  54.43
## 8822             17 years old Female              11th grade   1.68  97.52
## 8823    18 years old or older Female              12th grade   1.68  61.24
## 8824             16 years old Female              11th grade   1.68  66.23
## 8825             17 years old Female              12th grade   1.68  69.40
## 8826             15 years old Female              10th grade   1.68  74.84
## 8827             17 years old Female              11th grade   1.68  58.97
## 8828             16 years old   Male              10th grade   1.68  49.90
## 8829             15 years old   Male               9th grade   1.68  58.06
## 8830             17 years old   Male              12th grade   1.68  72.58
## 8831             17 years old   Male              11th grade   1.68 103.42
## 8832    18 years old or older   Male              12th grade   1.68  63.50
## 8833             15 years old Female              10th grade   1.68  81.19
## 8834             15 years old Female               9th grade   1.68  90.72
## 8835             15 years old Female               9th grade   1.68  65.32
## 8836             15 years old Female               9th grade   1.68  44.45
## 8837             15 years old   Male               9th grade   1.68  56.70
## 8838             15 years old   Male              10th grade   1.68  52.16
## 8839             17 years old   Male              12th grade   1.68  94.80
## 8840             17 years old Female              11th grade   1.68  50.80
## 8841             17 years old   Male              11th grade   1.68  60.78
## 8842             17 years old   Male              11th grade   1.68  86.18
## 8843             16 years old Female              11th grade   1.68  65.77
## 8844             17 years old Female              12th grade   1.68  56.70
## 8845             16 years old Female              11th grade   1.68  68.04
## 8846             15 years old   Male               9th grade   1.68  55.79
## 8847             17 years old   Male              11th grade   1.68  73.94
## 8848             15 years old   Male               9th grade   1.68  52.16
## 8849             17 years old Female              12th grade   1.68  54.43
## 8850             17 years old Female              12th grade   1.68  63.50
## 8851             15 years old   Male               9th grade   1.68  75.75
## 8852             15 years old   Male               9th grade   1.68  94.35
## 8853             16 years old   Male              11th grade   1.68  90.72
## 8854             17 years old Female              12th grade   1.68  63.50
## 8855             14 years old   Male               9th grade   1.68  90.72
## 8856             15 years old   Male              10th grade   1.68  64.41
## 8857             17 years old Female              12th grade   1.68  63.05
## 8858             15 years old   Male              10th grade   1.68  64.86
## 8859             17 years old Female              12th grade   1.68  77.11
## 8860             16 years old Female              10th grade   1.68  71.67
## 8861             16 years old   Male              11th grade   1.68  59.42
## 8862             14 years old Female               9th grade   1.68  63.50
## 8863             15 years old   Male               9th grade   1.68  64.41
## 8864             17 years old   Male              12th grade   1.68 108.86
## 8865             16 years old Female              11th grade   1.68  58.51
## 8866             15 years old Female               9th grade   1.68  80.29
## 8867             15 years old   Male               9th grade   1.68  52.16
## 8868             17 years old   Male              12th grade   1.68  72.58
## 8869             16 years old   Male              10th grade   1.68  61.24
## 8870             15 years old Female               9th grade   1.68  48.54
## 8871             15 years old Female               9th grade   1.68  76.20
## 8872             15 years old Female               9th grade   1.68  61.24
## 8873             16 years old Female              10th grade   1.68  60.33
## 8874             16 years old Female              10th grade   1.68  52.16
## 8875             16 years old Female              10th grade   1.68  86.18
## 8876             15 years old Female               9th grade   1.68  58.97
## 8877    18 years old or older Female              12th grade   1.68  65.77
## 8878    18 years old or older Female              12th grade   1.68  53.98
## 8879    18 years old or older Female              12th grade   1.68  49.90
## 8880             15 years old   Male              10th grade   1.68  56.70
## 8881             16 years old Female              11th grade   1.68  58.97
## 8882    18 years old or older Female              12th grade   1.68  58.97
## 8883             16 years old   Male              10th grade   1.68  63.50
## 8884    18 years old or older   Male              12th grade   1.68  61.24
## 8885             17 years old Female              12th grade   1.68  56.70
## 8886    18 years old or older   Male              12th grade   1.68 129.28
## 8887             17 years old Female              11th grade   1.68  79.38
## 8888             17 years old Female              12th grade   1.68  65.77
## 8889             17 years old Female              12th grade   1.68  63.50
## 8890             15 years old   Male               9th grade   1.68  68.04
## 8891             14 years old Female               9th grade   1.68  52.16
## 8892             16 years old Female              10th grade   1.68  63.50
## 8893             15 years old Female              10th grade   1.68  49.90
## 8894    18 years old or older Female              12th grade   1.68  53.52
## 8895             16 years old Female              11th grade   1.68  54.43
## 8896             17 years old Female              11th grade   1.68  58.97
## 8897             15 years old   Male               9th grade   1.68  72.58
## 8898             14 years old   Male               9th grade   1.68  56.70
## 8899             16 years old Female              10th grade   1.68  63.50
## 8900             17 years old Female              11th grade   1.68  60.33
## 8901             15 years old Female              10th grade   1.68  65.77
## 8902    18 years old or older   Male              12th grade   1.68  81.65
## 8903             14 years old   Male               9th grade   1.68  86.18
## 8904             15 years old Female              10th grade   1.68  65.77
## 8905             14 years old   Male               9th grade   1.68  88.91
## 8906    18 years old or older Female              12th grade   1.68  68.04
## 8907    18 years old or older   Male              12th grade   1.68  62.60
## 8908             16 years old Female              10th grade   1.68  54.43
## 8909             16 years old Female              10th grade   1.68  65.77
## 8910             14 years old   Male               9th grade   1.68  88.00
## 8911             15 years old   Male              10th grade   1.68  56.70
## 8912             15 years old Female               9th grade   1.68  65.77
## 8913             15 years old Female              10th grade   1.68  54.43
## 8914             14 years old   Male               9th grade   1.68  64.41
## 8915             15 years old   Male              10th grade   1.68  86.18
## 8916             14 years old   Male               9th grade   1.68  55.34
## 8917    18 years old or older Female              12th grade   1.68  92.08
## 8918    18 years old or older   Male              12th grade   1.68  52.16
## 8919    18 years old or older Female              12th grade   1.68  58.97
## 8920             14 years old Female               9th grade   1.68  67.13
## 8921             14 years old Female               9th grade   1.68  52.16
## 8922             17 years old Female              12th grade   1.68  68.04
## 8923             17 years old Female              12th grade   1.68  56.70
## 8924             16 years old Female              10th grade   1.68  65.77
## 8925             15 years old Female               9th grade   1.68  63.50
## 8926             17 years old   Male              11th grade   1.68  63.50
## 8927             15 years old   Male              10th grade   1.68  63.50
## 8928             16 years old Female              10th grade   1.68  63.50
## 8929             15 years old   Male               9th grade   1.68  58.97
## 8930             16 years old Female              10th grade   1.68  59.88
## 8931             14 years old   Male               9th grade   1.68  72.58
## 8932             15 years old Female               9th grade   1.68  55.79
## 8933             17 years old   Male              12th grade   1.68  54.43
## 8934             17 years old Female              12th grade   1.68  63.50
## 8935    18 years old or older Female              12th grade   1.68  54.43
## 8936             16 years old Female              11th grade   1.68  90.72
## 8937             15 years old Female              10th grade   1.68  48.54
## 8938             16 years old Female              10th grade   1.68  57.15
## 8939             15 years old Female              10th grade   1.68  81.65
## 8940             16 years old   Male               9th grade   1.68  49.90
## 8941             14 years old   Male               9th grade   1.68  52.16
## 8942             16 years old Female              10th grade   1.68  90.72
## 8943             16 years old Female              10th grade   1.68  71.67
## 8944             17 years old Female              11th grade   1.68  78.47
## 8945             14 years old Female                    <NA>   1.68  52.16
## 8946             16 years old Female               9th grade   1.68  68.04
## 8947             16 years old Female              10th grade   1.68 102.06
## 8948             14 years old   Male               9th grade   1.68  54.43
## 8949             16 years old Female              10th grade   1.68  58.97
## 8950             16 years old Female              10th grade   1.68  56.70
## 8951             15 years old Female              10th grade   1.68  54.43
## 8952             17 years old Female              12th grade   1.68 136.08
## 8953    18 years old or older Female              12th grade   1.68  63.50
## 8954             17 years old   Male              11th grade   1.68  65.77
## 8955             16 years old Female              10th grade   1.68  81.65
## 8956             15 years old Female              10th grade   1.68  51.26
## 8957             16 years old Female              10th grade   1.68  53.52
## 8958             16 years old Female              10th grade   1.68  65.77
## 8959             17 years old   Male              11th grade   1.68  98.43
## 8960             15 years old   Male              10th grade   1.68  58.51
## 8961             17 years old   Male              11th grade   1.68  72.12
## 8962             16 years old   Male              10th grade   1.68  54.43
## 8963             17 years old   Male              12th grade   1.68  81.65
## 8964             15 years old Female               9th grade   1.68  49.90
## 8965             16 years old   Male              10th grade   1.68  56.70
## 8966             15 years old Female               9th grade   1.68  61.24
## 8967             14 years old Female               9th grade   1.68  54.43
## 8968             14 years old   Male               9th grade   1.68  63.50
## 8969             15 years old   Male               9th grade   1.68  68.04
## 8970             14 years old   Male               9th grade   1.68  72.58
## 8971             15 years old   Male               9th grade   1.68  68.04
## 8972             14 years old   Male               9th grade   1.68  68.04
## 8973             15 years old Female              10th grade   1.68  56.70
## 8974             16 years old   Male              10th grade   1.68  65.77
## 8975             15 years old Female               9th grade   1.68  67.59
## 8976             15 years old Female               9th grade   1.68  56.70
## 8977             15 years old   Male              10th grade   1.68  54.43
## 8978             15 years old   Male              10th grade   1.68  75.75
## 8979             17 years old   Male              11th grade   1.68  58.97
## 8980             16 years old   Male              10th grade   1.68  52.62
## 8981             15 years old   Male               9th grade   1.68  70.31
## 8982             15 years old   Male               9th grade   1.68  66.68
## 8983             15 years old Female               9th grade   1.68  58.97
## 8984             17 years old Female              11th grade   1.68  79.38
## 8985             14 years old   Male               9th grade   1.68 113.40
## 8986             16 years old   Male              11th grade   1.68  56.25
## 8987             16 years old Female              11th grade   1.68  72.58
## 8988             17 years old Female              11th grade   1.68  54.43
## 8989    18 years old or older   Male              12th grade   1.68  54.43
## 8990             16 years old   Male              11th grade   1.68  63.50
## 8991             14 years old   Male               9th grade   1.68  89.36
## 8992             16 years old   Male              11th grade   1.68  54.43
## 8993             17 years old Female              11th grade   1.68 104.33
## 8994             15 years old   Male              10th grade   1.68  79.38
## 8995             16 years old   Male              10th grade   1.68  63.50
## 8996             16 years old Female              11th grade   1.68 104.33
## 8997             17 years old   Male              10th grade   1.68  99.79
## 8998             14 years old   Male               9th grade   1.68  81.65
## 8999             15 years old Female               9th grade   1.68  47.63
## 9000             15 years old Female               9th grade   1.68  55.34
## 9001             16 years old Female              10th grade   1.68  45.36
## 9002             15 years old Female              10th grade   1.68  54.43
## 9003             15 years old Female              10th grade   1.68  54.43
## 9004             16 years old Female              10th grade   1.68  47.63
## 9005             16 years old Female              11th grade   1.68  56.70
## 9006             17 years old Female              11th grade   1.68  70.31
## 9007             17 years old Female              11th grade   1.68  63.50
## 9008             16 years old Female              11th grade   1.68  64.86
## 9009             16 years old Female              11th grade   1.68  46.27
## 9010             17 years old Female              11th grade   1.68  56.70
## 9011             17 years old Female              11th grade   1.68  52.16
## 9012             16 years old Female              11th grade   1.68  64.86
## 9013             17 years old Female              12th grade   1.68  52.16
## 9014             17 years old Female              12th grade   1.68  61.24
## 9015             15 years old Female               9th grade   1.68  57.15
## 9016             14 years old   Male               9th grade   1.68  72.58
## 9017             15 years old Female               9th grade   1.68  45.36
## 9018             15 years old Female               9th grade   1.68  68.04
## 9019             15 years old Female               9th grade   1.68  65.77
## 9020             14 years old   Male               9th grade   1.68  68.04
## 9021             15 years old   Male               9th grade   1.68  97.52
## 9022             14 years old Female               9th grade   1.68  52.62
## 9023             14 years old Female               9th grade   1.68  83.92
## 9024             15 years old Female              10th grade   1.68  55.34
## 9025             16 years old   Male              10th grade   1.68  72.58
## 9026             16 years old Female              10th grade   1.68  54.43
## 9027             16 years old   Male              11th grade   1.68  65.77
## 9028             16 years old Female              11th grade   1.68  56.70
## 9029             16 years old   Male              11th grade   1.68  58.97
## 9030             17 years old   Male              11th grade   1.68  52.16
## 9031             17 years old Female              11th grade   1.68  45.36
## 9032             16 years old Female              11th grade   1.68  58.97
## 9033             17 years old Female              12th grade   1.68  63.50
## 9034    18 years old or older Female              12th grade   1.68  49.90
## 9035    18 years old or older Female              12th grade   1.68  68.04
## 9036             17 years old   Male              12th grade   1.68  56.70
## 9037             17 years old Female              12th grade   1.68  50.80
## 9038             15 years old   Male               9th grade   1.68  54.43
## 9039             14 years old Female               9th grade   1.68  52.16
## 9040             14 years old Female               9th grade   1.68  55.34
## 9041             14 years old   Male               9th grade   1.68  65.77
## 9042             15 years old   Male               9th grade   1.68 113.40
## 9043             15 years old   Male               9th grade   1.68  56.70
## 9044             14 years old   Male               9th grade   1.68  69.40
## 9045             15 years old   Male               9th grade   1.68 127.01
## 9046             15 years old Female               9th grade   1.68  63.50
## 9047             16 years old Female                    <NA>   1.68  70.31
## 9048             16 years old   Male              10th grade   1.68  79.38
## 9049             16 years old Female              11th grade   1.68  63.96
## 9050             17 years old Female              11th grade   1.68  63.50
## 9051             16 years old Female              11th grade   1.68  65.77
## 9052             17 years old Female                    <NA>   1.68  56.70
## 9053             17 years old Female              12th grade   1.68  70.31
## 9054    18 years old or older   Male              12th grade   1.68  56.25
## 9055    18 years old or older   Male              12th grade   1.68  90.72
## 9056             15 years old   Male              10th grade   1.68  58.97
## 9057             15 years old   Male               9th grade   1.68 107.05
## 9058             15 years old   Male               9th grade   1.68  53.52
## 9059             14 years old Female               9th grade   1.68  54.43
## 9060             15 years old   Male               9th grade   1.68  63.50
## 9061             14 years old Female               9th grade   1.68  49.90
## 9062             14 years old Female                    <NA>   1.68 113.40
## 9063             15 years old   Male              10th grade   1.68  40.37
## 9064             15 years old Female              10th grade   1.68  70.31
## 9065             15 years old   Male              10th grade   1.68  56.25
## 9066             15 years old Female              10th grade   1.68  72.58
## 9067             15 years old Female                    <NA>   1.68  61.24
## 9068             15 years old   Male              10th grade   1.68  49.90
## 9069             16 years old   Male              10th grade   1.68  54.43
## 9070             17 years old Female              11th grade   1.68  81.65
## 9071             16 years old Female              11th grade   1.68  68.04
## 9072             16 years old Female              11th grade   1.68  61.24
## 9073             17 years old Female              11th grade   1.68  73.03
## 9074    18 years old or older   Male              12th grade   1.68  56.70
## 9075    18 years old or older   Male                    <NA>   1.68  69.85
## 9076    18 years old or older Female              12th grade   1.68  87.54
## 9077    18 years old or older   Male              12th grade   1.68  99.79
## 9078             15 years old Female               9th grade   1.68  86.18
## 9079             14 years old Female               9th grade   1.68  63.50
## 9080             16 years old   Male              10th grade   1.68  54.43
## 9081             16 years old   Male              10th grade   1.68  77.11
## 9082             15 years old   Male              10th grade   1.68  99.79
## 9083    18 years old or older   Male              12th grade   1.68  58.97
## 9084             15 years old   Male               9th grade   1.68  95.26
## 9085             16 years old Female              10th grade   1.68  80.74
## 9086             17 years old Female              11th grade   1.68  68.04
## 9087             17 years old   Male              11th grade   1.68  52.16
## 9088             16 years old Female              11th grade   1.68  52.16
## 9089             15 years old   Male               9th grade   1.68  41.28
## 9090             16 years old Female              11th grade   1.68  88.45
## 9091             16 years old   Male              11th grade   1.68  54.43
## 9092    18 years old or older   Male              12th grade   1.68  65.77
## 9093             14 years old   Male               9th grade   1.68  58.97
## 9094             15 years old Female               9th grade   1.68  54.43
## 9095             16 years old Female              11th grade   1.68  58.97
## 9096             16 years old Female              11th grade   1.68  58.97
## 9097             16 years old   Male              11th grade   1.68  53.52
## 9098             16 years old Female              11th grade   1.68 115.67
## 9099             16 years old Female              11th grade   1.68  49.90
## 9100             15 years old Female              10th grade   1.68  70.76
## 9101             17 years old Female              10th grade   1.68  77.11
## 9102             15 years old Female              10th grade   1.68  99.79
## 9103             16 years old Female              11th grade   1.68  63.50
## 9104             17 years old Female              11th grade   1.68  70.31
## 9105             16 years old Female              11th grade   1.68  46.72
## 9106             16 years old Female              11th grade   1.68  56.70
## 9107             16 years old   Male              10th grade   1.68  56.70
## 9108             15 years old   Male              10th grade   1.68  63.50
## 9109             15 years old Female              10th grade   1.68  52.16
## 9110             16 years old   Male              11th grade   1.68  58.06
## 9111             16 years old Female              11th grade   1.68 104.33
## 9112             17 years old Female              12th grade   1.68  63.50
## 9113             16 years old Female              11th grade   1.68  53.52
## 9114             15 years old Female              10th grade   1.68  50.80
## 9115             17 years old Female              12th grade   1.68  58.97
## 9116             17 years old   Male              11th grade   1.68  62.60
## 9117             16 years old   Male              11th grade   1.68  53.07
## 9118             15 years old   Male              10th grade   1.68  76.20
## 9119             15 years old   Male              10th grade   1.68  85.73
## 9120             16 years old   Male              10th grade   1.68  61.69
## 9121             16 years old Female              10th grade   1.68  49.90
## 9122             16 years old Female              10th grade   1.68  59.88
## 9123             17 years old Female              12th grade   1.68  68.04
## 9124             17 years old Female              12th grade   1.68  69.40
## 9125             14 years old Female               9th grade   1.68  69.85
## 9126             16 years old   Male              10th grade   1.68  57.61
## 9127             16 years old   Male              10th grade   1.68  56.70
## 9128             15 years old Female              10th grade   1.68  68.49
## 9129             17 years old   Male              11th grade   1.68  77.11
## 9130             15 years old Female              10th grade   1.68  60.78
## 9131             15 years old   Male              10th grade   1.68  79.38
## 9132             15 years old Female              10th grade   1.68  56.70
## 9133             15 years old   Male               9th grade   1.68  47.63
## 9134             15 years old Female              10th grade   1.68  56.70
## 9135             14 years old Female               9th grade   1.68  57.15
## 9136             15 years old   Male              10th grade   1.68  54.43
## 9137             14 years old   Male               9th grade   1.68  56.70
## 9138             14 years old Female               9th grade   1.68  49.90
## 9139             14 years old   Male               9th grade   1.68 101.15
## 9140             14 years old Female               9th grade   1.68  70.31
## 9141             16 years old Female              11th grade   1.68  58.97
## 9142             17 years old Female              11th grade   1.68  55.79
## 9143             15 years old Female              10th grade   1.68  68.04
## 9144             16 years old   Male              10th grade   1.68  45.36
## 9145             15 years old Female              10th grade   1.68  49.44
## 9146             15 years old   Male              10th grade   1.68  74.84
## 9147             14 years old   Male               9th grade   1.68  44.00
## 9148             17 years old   Male              11th grade   1.68  72.58
## 9149             17 years old Female              12th grade   1.68  54.43
## 9150             15 years old Female              10th grade   1.68  53.07
## 9151             15 years old Female              10th grade   1.68  61.69
## 9152             16 years old   Male              11th grade   1.68  64.41
## 9153             15 years old Female              10th grade   1.68  58.97
## 9154             17 years old   Male              12th grade   1.68  70.31
## 9155             17 years old Female              12th grade   1.68  72.58
## 9156             17 years old Female              12th grade   1.68  68.04
## 9157             14 years old Female               9th grade   1.68  49.90
## 9158             16 years old Female              10th grade   1.68  56.70
## 9159             16 years old Female              10th grade   1.68  58.51
## 9160             15 years old Female               9th grade   1.68  58.51
## 9161             14 years old Female               9th grade   1.68  67.59
## 9162             16 years old Female              11th grade   1.68  81.65
## 9163             17 years old Female              11th grade   1.68  71.22
## 9164             15 years old Female              10th grade   1.68  56.70
## 9165             17 years old   Male              11th grade   1.68  68.04
## 9166             16 years old Female              11th grade   1.68  63.50
## 9167             15 years old Female              10th grade   1.68  58.97
## 9168             15 years old   Male              10th grade   1.68  56.70
## 9169             14 years old   Male               9th grade   1.68  49.90
## 9170             15 years old Female              10th grade   1.68  52.16
## 9171             14 years old Female               9th grade   1.68  52.62
## 9172             14 years old   Male               9th grade   1.68  52.16
## 9173             15 years old Female              10th grade   1.68  61.24
## 9174             14 years old   Male               9th grade   1.68  54.43
## 9175             16 years old   Male              11th grade   1.68  53.98
## 9176             14 years old Female               9th grade   1.68  68.04
## 9177             14 years old Female               9th grade   1.68  97.52
## 9178             14 years old Female               9th grade   1.68  65.77
## 9179             14 years old Female               9th grade   1.68  50.35
## 9180             16 years old Female              11th grade   1.68  55.79
## 9181             15 years old   Male              10th grade   1.68  54.43
## 9182             15 years old Female              10th grade   1.68  58.97
## 9183             17 years old Female              12th grade   1.68  54.43
## 9184             15 years old   Male              10th grade   1.68  79.38
## 9185             15 years old Female              10th grade   1.68  58.06
## 9186             16 years old Female              11th grade   1.68  54.43
## 9187             15 years old   Male              10th grade   1.68  56.70
## 9188             14 years old Female               9th grade   1.68  69.40
## 9189             14 years old Female               9th grade   1.68  54.43
## 9190             14 years old Female               9th grade   1.68  90.72
## 9191             15 years old   Male              10th grade   1.68  54.43
## 9192             15 years old Female              10th grade   1.68  68.04
## 9193    18 years old or older Female              12th grade   1.68  74.84
## 9194             17 years old Female              12th grade   1.68  61.24
## 9195             14 years old   Male               9th grade   1.68  75.75
## 9196             14 years old Female               9th grade   1.68  54.43
## 9197             17 years old Female              11th grade   1.68  45.36
## 9198             17 years old   Male              12th grade   1.68  56.70
## 9199             14 years old   Male               9th grade   1.68  67.13
## 9200             15 years old   Male              10th grade   1.68  68.49
## 9201             15 years old Female              10th grade   1.68  62.14
## 9202             15 years old Female              10th grade   1.68  69.85
## 9203             14 years old Female               9th grade   1.68  47.17
## 9204             16 years old   Male              10th grade   1.68  63.50
## 9205             15 years old   Male              10th grade   1.68  72.58
## 9206             15 years old Female              10th grade   1.68  61.24
## 9207             14 years old   Male               9th grade   1.68  65.77
## 9208             14 years old   Male               9th grade   1.68  56.70
## 9209             16 years old   Male              11th grade   1.68 113.40
## 9210             17 years old Female              12th grade   1.68  99.79
## 9211             15 years old   Male              10th grade   1.68  52.16
## 9212             17 years old   Male              12th grade   1.68  58.97
## 9213             16 years old   Male              11th grade   1.68  86.18
## 9214             16 years old   Male              11th grade   1.68  56.70
## 9215             15 years old Female              11th grade   1.68 108.86
## 9216             16 years old Female              11th grade   1.68  56.70
## 9217             15 years old Female              10th grade   1.68  57.61
## 9218             15 years old Female              10th grade   1.68  61.24
## 9219             15 years old Female              10th grade   1.68  58.97
## 9220             17 years old   Male              12th grade   1.68  49.90
## 9221             16 years old   Male              11th grade   1.68  68.04
## 9222             17 years old Female              11th grade   1.68  54.43
## 9223             17 years old Female              12th grade   1.68 119.75
## 9224             16 years old   Male              11th grade   1.68  74.84
## 9225             14 years old Female               9th grade   1.68  48.54
## 9226             14 years old Female               9th grade   1.68  58.97
## 9227             15 years old Female              10th grade   1.68  51.71
## 9228             14 years old   Male               9th grade   1.68  77.11
## 9229             14 years old   Male               9th grade   1.68  47.63
## 9230             14 years old   Male               9th grade   1.68  58.97
## 9231             14 years old   Male               9th grade   1.68  61.24
## 9232             17 years old   Male              12th grade   1.68  65.77
## 9233             16 years old Female              11th grade   1.68  54.43
## 9234             16 years old Female              11th grade   1.68  56.70
## 9235             15 years old   Male              10th grade   1.68  49.90
## 9236             15 years old Female              10th grade   1.68  46.72
## 9237             14 years old   Male               9th grade   1.68  48.99
## 9238             15 years old   Male               9th grade   1.68  72.58
## 9239             16 years old   Male              10th grade   1.68  58.51
## 9240             14 years old   Male               9th grade   1.68  57.61
## 9241             15 years old Female              10th grade   1.68  53.98
## 9242             15 years old   Male              10th grade   1.68  83.46
## 9243             16 years old   Male              11th grade   1.68  57.15
## 9244             17 years old   Male              12th grade   1.68  52.16
## 9245             16 years old Female              11th grade   1.68  56.70
## 9246             16 years old   Male              11th grade   1.68  60.33
## 9247             16 years old Female              11th grade   1.68  64.86
## 9248             14 years old   Male               9th grade   1.68  86.18
## 9249             14 years old   Male               9th grade   1.68  70.76
## 9250             15 years old   Male              10th grade   1.68  56.25
## 9251             15 years old Female              10th grade   1.68  68.95
## 9252             15 years old Female              10th grade   1.68  54.43
## 9253             15 years old   Male               9th grade   1.68  63.96
## 9254             14 years old   Male               9th grade   1.68  77.57
## 9255             15 years old   Male              10th grade   1.68  81.65
## 9256             16 years old Female              10th grade   1.68  77.11
## 9257             15 years old   Male              10th grade   1.68  72.58
## 9258             15 years old   Male              10th grade   1.68  76.20
## 9259             14 years old   Male               9th grade   1.68  48.54
## 9260             17 years old   Male              11th grade   1.68  58.97
## 9261             14 years old Female               9th grade   1.68  72.12
## 9262             17 years old Female              11th grade   1.68  61.24
## 9263             14 years old Female               9th grade   1.68  73.48
## 9264             14 years old Female               9th grade   1.68  73.48
## 9265             16 years old Female              11th grade   1.68  69.40
## 9266             17 years old   Male              12th grade   1.68  72.58
## 9267             17 years old Female              12th grade   1.68  99.79
## 9268             16 years old   Male              11th grade   1.68  63.05
## 9269    18 years old or older   Male              12th grade   1.68  56.70
## 9270             14 years old Female               9th grade   1.68  52.16
## 9271             15 years old Female               9th grade   1.68  70.31
## 9272             15 years old Female               9th grade   1.68  54.43
## 9273             15 years old Female               9th grade   1.68  62.60
## 9274             15 years old Female               9th grade   1.68  70.31
## 9275             16 years old Female              10th grade   1.68  63.50
## 9276    18 years old or older Female              12th grade   1.68  58.97
## 9277    18 years old or older   Male              12th grade   1.68  74.84
## 9278             17 years old   Male              12th grade   1.68  63.50
## 9279             16 years old Female              11th grade   1.68  61.24
## 9280             17 years old Female              11th grade   1.68  72.58
## 9281             16 years old   Male              11th grade   1.68  83.01
## 9282             16 years old Female              11th grade   1.68  54.43
## 9283             15 years old Female              10th grade   1.68  54.43
## 9284             15 years old Female              10th grade   1.68  52.62
## 9285             16 years old   Male              10th grade   1.68  58.97
## 9286             14 years old   Male               9th grade   1.68  61.24
## 9287             15 years old   Male               9th grade   1.68  44.45
## 9288             16 years old Female              10th grade   1.68  63.50
## 9289             15 years old Female               9th grade   1.68  58.06
## 9290             17 years old Female              11th grade   1.68  52.62
## 9291             17 years old Female              12th grade   1.68  54.43
## 9292             17 years old Female              12th grade   1.68  58.97
## 9293             17 years old Female              11th grade   1.68  63.50
## 9294             17 years old Female              11th grade   1.68  56.70
## 9295             16 years old   Male              11th grade   1.68  62.60
## 9296             16 years old   Male              10th grade   1.68  54.43
## 9297             16 years old Female              10th grade   1.68  49.90
## 9298             14 years old Female               9th grade   1.68  54.43
## 9299             15 years old Female               9th grade   1.68  56.70
## 9300             17 years old Female              12th grade   1.68  52.16
## 9301             14 years old Female               9th grade   1.68  54.43
## 9302             14 years old Female               9th grade   1.68  63.96
## 9303             15 years old Female               9th grade   1.68  63.50
## 9304             15 years old Female              10th grade   1.68  56.70
## 9305    18 years old or older Female              12th grade   1.68  54.43
## 9306             16 years old Female              11th grade   1.68  49.90
## 9307             16 years old Female              11th grade   1.68  81.65
## 9308             16 years old   Male              11th grade   1.68  54.43
## 9309             16 years old Female              11th grade   1.68  60.78
## 9310             16 years old Female              10th grade   1.68  56.25
## 9311             15 years old Female               9th grade   1.68  48.99
## 9312             14 years old   Male               9th grade   1.68  54.43
## 9313             14 years old Female               9th grade   1.68  58.97
## 9314             15 years old   Male               9th grade   1.68  71.67
## 9315             15 years old   Male              10th grade   1.68  92.08
## 9316             15 years old Female              10th grade   1.68  78.02
## 9317             14 years old   Male               9th grade   1.68  53.52
## 9318             15 years old   Male              10th grade   1.68  77.11
## 9319             15 years old Female              10th grade   1.68  79.38
## 9320             15 years old Female              10th grade   1.68 100.25
## 9321             17 years old Female              12th grade   1.68  99.34
## 9322             15 years old   Male              10th grade   1.68  83.92
## 9323             17 years old Female              11th grade   1.68  63.50
## 9324             17 years old Female              11th grade   1.68  68.04
## 9325             15 years old Female               9th grade   1.68  59.88
## 9326             17 years old   Male              11th grade   1.68  56.70
## 9327             16 years old   Male              11th grade   1.68 105.69
## 9328             15 years old   Male               9th grade   1.68  57.61
## 9329             15 years old   Male               9th grade   1.68  88.45
## 9330             16 years old Female              11th grade   1.68  66.68
## 9331             17 years old   Male              12th grade   1.68  61.24
## 9332             17 years old Female              12th grade   1.68  56.70
## 9333             17 years old Female              12th grade   1.68  58.97
## 9334             14 years old   Male               9th grade   1.68  77.11
## 9335             15 years old Female              10th grade   1.68  63.05
## 9336             16 years old   Male              11th grade   1.68  81.65
## 9337             15 years old   Male              10th grade   1.68  68.04
## 9338             15 years old   Male              10th grade   1.68  44.45
## 9339             15 years old Female              10th grade   1.68  77.11
## 9340             16 years old   Male              10th grade   1.68  63.50
## 9341             17 years old Female              11th grade   1.68  54.43
## 9342             15 years old Female              10th grade   1.68  72.58
## 9343    18 years old or older Female              12th grade   1.68  77.11
## 9344             16 years old Female              10th grade   1.68  58.97
## 9345             17 years old   Male              11th grade   1.68  49.90
## 9346             16 years old Female              11th grade   1.68  61.24
## 9347             15 years old Female              10th grade   1.68  65.77
## 9348    18 years old or older Female              12th grade   1.68 117.94
## 9349             14 years old   Male               9th grade   1.68  65.77
## 9350             16 years old Female              10th grade   1.68  59.42
## 9351    18 years old or older Female              12th grade   1.68  65.77
## 9352             15 years old Female               9th grade   1.68  54.43
## 9353             15 years old   Male               9th grade   1.68  75.75
## 9354             15 years old   Male               9th grade   1.68  59.88
## 9355             16 years old   Male              10th grade   1.68  56.70
## 9356             15 years old   Male              10th grade   1.68  58.97
## 9357             16 years old Female              10th grade   1.68  68.04
## 9358             17 years old   Male              11th grade   1.68  54.43
## 9359             14 years old   Male               9th grade   1.68  52.62
## 9360             17 years old Female              11th grade   1.68  83.92
## 9361             17 years old   Male              11th grade   1.68  85.73
## 9362             15 years old   Male              10th grade   1.68  75.75
## 9363             15 years old   Male               9th grade   1.68  56.70
## 9364             15 years old Female              10th grade   1.68  56.70
## 9365             15 years old Female              10th grade   1.68  88.45
## 9366             15 years old Female               9th grade   1.68  45.36
## 9367             17 years old   Male              11th grade   1.68  55.79
## 9368             14 years old Female               9th grade   1.68  54.43
## 9369             16 years old   Male              11th grade   1.68  74.84
## 9370             15 years old Female               9th grade   1.68  62.60
## 9371             15 years old   Male              10th grade   1.68  52.16
## 9372             15 years old Female              10th grade   1.68  61.24
## 9373             16 years old Female              10th grade   1.68  61.24
## 9374             15 years old   Male              10th grade   1.68  59.42
## 9375             16 years old   Male              11th grade   1.68  68.04
## 9376             15 years old Female               9th grade   1.68  68.04
## 9377             15 years old   Male               9th grade   1.68  65.77
## 9378    18 years old or older Female              12th grade   1.68  63.50
## 9379             14 years old Female               9th grade   1.68  52.16
## 9380             17 years old   Male              11th grade   1.68  75.30
## 9381             15 years old   Male               9th grade   1.68  53.52
## 9382             14 years old   Male               9th grade   1.68 104.33
## 9383             17 years old Female              12th grade   1.68  67.13
## 9384    18 years old or older Female              12th grade   1.68  54.43
## 9385             17 years old Female              12th grade   1.68  55.34
## 9386             16 years old   Male              10th grade   1.68  40.82
## 9387             17 years old   Male              11th grade   1.68  57.15
## 9388             15 years old Female              10th grade   1.68  84.82
## 9389             15 years old Female               9th grade   1.68  54.43
## 9390             15 years old Female              10th grade   1.68  63.50
## 9391             15 years old Female               9th grade   1.68  63.50
## 9392             16 years old Female              11th grade   1.68  81.65
## 9393             16 years old   Male              11th grade   1.68  68.04
## 9394             15 years old   Male              10th grade   1.68  67.59
## 9395             15 years old   Male               9th grade   1.68  52.16
## 9396             15 years old   Male              10th grade   1.68  56.70
## 9397             17 years old Female              11th grade   1.68  83.01
## 9398             17 years old Female              11th grade   1.68  65.77
## 9399             15 years old Female              10th grade   1.68  58.97
## 9400    18 years old or older Female              12th grade   1.68  99.79
## 9401             15 years old Female               9th grade   1.68  72.58
## 9402             15 years old   Male              10th grade   1.68  54.43
## 9403             15 years old   Male              10th grade   1.68  62.60
## 9404             15 years old   Male               9th grade   1.68  64.41
## 9405             14 years old Female               9th grade   1.68  52.16
## 9406             15 years old Female               9th grade   1.68  54.43
## 9407             17 years old   Male              11th grade   1.68  54.89
## 9408             17 years old Female              11th grade   1.68  61.24
## 9409             15 years old   Male              10th grade   1.68  49.90
## 9410             17 years old   Male              11th grade   1.68  61.69
## 9411             15 years old   Male               9th grade   1.68  61.24
## 9412             17 years old   Male              12th grade   1.68  81.65
## 9413             14 years old   Male               9th grade   1.68  57.61
## 9414             15 years old   Male               9th grade   1.68  54.43
## 9415             17 years old   Male              11th grade   1.68 113.40
## 9416             17 years old Female              11th grade   1.68  56.70
## 9417             16 years old Female              10th grade   1.68  45.36
## 9418             15 years old Female              10th grade   1.68  83.92
## 9419             17 years old Female              10th grade   1.68  81.65
## 9420             14 years old   Male               9th grade   1.68  48.08
## 9421             15 years old Female              10th grade   1.68  68.04
## 9422             15 years old   Male              10th grade   1.68  65.32
## 9423             16 years old Female              11th grade   1.68  56.70
## 9424             14 years old   Male               9th grade   1.68  59.88
## 9425             16 years old Female              11th grade   1.68  54.43
## 9426             17 years old Female              11th grade   1.68 113.40
## 9427    18 years old or older Female              12th grade   1.68  56.70
## 9428             17 years old Female              11th grade   1.68  99.79
## 9429             17 years old Female              11th grade   1.68  52.16
## 9430             16 years old Female              11th grade   1.68  56.70
## 9431             16 years old Female              10th grade   1.68  65.32
## 9432             16 years old Female              10th grade   1.68  56.25
## 9433             15 years old Female               9th grade   1.68  58.97
## 9434             16 years old Female              11th grade   1.68  59.42
## 9435             16 years old Female              10th grade   1.68  92.99
## 9436             16 years old Female              10th grade   1.68  54.43
## 9437             16 years old Female              10th grade   1.68  55.79
## 9438             15 years old Female               9th grade   1.68  53.07
## 9439             17 years old Female              11th grade   1.68  59.88
## 9440             15 years old Female              10th grade   1.68  68.04
## 9441             15 years old   Male              10th grade   1.68  61.24
## 9442             14 years old Female               9th grade   1.68  63.50
## 9443             16 years old Female              10th grade   1.68  85.73
## 9444             15 years old   Male               9th grade   1.68  74.84
## 9445             15 years old Female              10th grade   1.68  85.73
## 9446             14 years old Female               9th grade   1.68  56.70
## 9447             15 years old Female               9th grade   1.68  70.31
## 9448             16 years old Female              10th grade   1.68  86.18
## 9449             17 years old Female              11th grade   1.68  77.11
## 9450             15 years old   Male              10th grade   1.68  58.97
## 9451             16 years old Female              10th grade   1.68  45.36
## 9452             15 years old Female              10th grade   1.68  58.97
## 9453             17 years old Female              10th grade   1.68  61.24
## 9454             16 years old   Male               9th grade   1.68  45.36
## 9455             14 years old   Male               9th grade   1.68  61.24
## 9456             14 years old   Male               9th grade   1.68  49.90
## 9457             15 years old Female              10th grade   1.68  52.16
## 9458             15 years old Female               9th grade   1.68  56.70
## 9459             15 years old   Male               9th grade   1.68  58.97
## 9460             15 years old Female               9th grade   1.68  61.24
## 9461             15 years old Female               9th grade   1.68  49.90
## 9462             15 years old   Male              10th grade   1.68  86.18
## 9463             14 years old   Male               9th grade   1.68  47.17
## 9464    18 years old or older   Male              12th grade   1.68  81.65
## 9465             17 years old   Male              10th grade   1.68  65.77
## 9466    18 years old or older   Male              12th grade   1.68  54.43
## 9467             16 years old   Male              10th grade   1.68  58.97
## 9468             16 years old   Male              10th grade   1.68  65.77
## 9469             15 years old Female               9th grade   1.68  56.70
## 9470             15 years old   Male               9th grade   1.68  79.38
## 9471             14 years old   Male               9th grade   1.68  61.24
## 9472             14 years old Female               9th grade   1.68  87.09
## 9473             14 years old   Male               9th grade   1.68  90.72
## 9474             15 years old   Male               9th grade   1.68  50.80
## 9475             15 years old Female               9th grade   1.68  62.60
## 9476             15 years old Female               9th grade   1.68  54.43
## 9477             15 years old Female               9th grade   1.68  64.86
## 9478             15 years old Female               9th grade   1.68  65.77
## 9479             15 years old   Male               9th grade   1.68  40.82
## 9480             15 years old Female               9th grade   1.68  58.06
## 9481             14 years old Female               9th grade   1.68  52.16
## 9482             15 years old Female               9th grade   1.68  81.19
## 9483             15 years old Female               9th grade   1.68  79.38
## 9484             14 years old   Male               9th grade   1.68  47.63
## 9485             14 years old   Male               9th grade   1.68  95.26
## 9486             14 years old   Male               9th grade   1.68  44.45
## 9487             14 years old Female               9th grade   1.68  65.77
## 9488             15 years old   Male               9th grade   1.68  68.04
## 9489             15 years old Female               9th grade   1.68  52.16
## 9490             14 years old Female               9th grade   1.68  86.18
## 9491             14 years old   Male               9th grade   1.68  49.90
## 9492             15 years old Female               9th grade   1.68  61.69
## 9493             15 years old Female               9th grade   1.68  61.24
## 9494             15 years old Female               9th grade   1.68  65.77
## 9495             15 years old Female               9th grade   1.68  95.26
## 9496             15 years old Female               9th grade   1.68 102.06
## 9497             15 years old Female               9th grade   1.68 108.86
## 9498             15 years old Female               9th grade   1.68  88.45
## 9499             15 years old Female               9th grade   1.68  58.97
## 9500             14 years old Female               9th grade   1.68  70.31
## 9501             14 years old   Male               9th grade   1.68  58.97
## 9502             14 years old Female               9th grade   1.65  81.65
## 9503             15 years old   Male               9th grade   1.65  61.24
## 9504             16 years old Female              11th grade   1.65  49.90
## 9505             16 years old Female              10th grade   1.65  68.04
## 9506             17 years old Female              11th grade   1.65  62.60
## 9507             16 years old Female               9th grade   1.65  70.76
## 9508             17 years old Female              11th grade   1.65  56.70
## 9509             17 years old Female              11th grade   1.65  99.79
## 9510             17 years old Female              11th grade   1.65  61.24
## 9511             17 years old Female              12th grade   1.65 113.40
## 9512             17 years old Female              10th grade   1.65  83.92
## 9513    18 years old or older Female              11th grade   1.65  79.38
## 9514             17 years old Female              11th grade   1.65  56.70
## 9515             16 years old   Male              10th grade   1.65  54.43
## 9516             17 years old Female              11th grade   1.65  56.70
## 9517             15 years old Female               9th grade   1.65  72.58
## 9518             15 years old Female               9th grade   1.65  88.91
## 9519             17 years old Female              11th grade   1.65  54.43
## 9520             14 years old Female               9th grade   1.65  82.56
## 9521    18 years old or older Female              11th grade   1.65 117.94
## 9522             15 years old Female               9th grade   1.65  98.88
## 9523             17 years old   Male              11th grade   1.65  59.42
## 9524             15 years old   Male               9th grade   1.65  61.24
## 9525             16 years old Female              10th grade   1.65  61.24
## 9526             15 years old   Male               9th grade   1.65  49.90
## 9527             15 years old Female               9th grade   1.65  53.98
## 9528             15 years old Female              10th grade   1.65  56.70
## 9529             15 years old Female              10th grade   1.65  61.24
## 9530             17 years old Female              12th grade   1.65  54.43
## 9531             15 years old   Male               9th grade   1.65  53.98
## 9532             15 years old   Male               9th grade   1.65  82.10
## 9533             15 years old Female               9th grade   1.65  68.04
## 9534             17 years old Female              11th grade   1.65  88.91
## 9535             17 years old Female              12th grade   1.65  49.90
## 9536             16 years old Female              10th grade   1.65  61.24
## 9537             15 years old Female              10th grade   1.65  52.62
## 9538             16 years old Female               9th grade   1.65  56.70
## 9539             16 years old Female              10th grade   1.65  56.25
## 9540             15 years old Female              10th grade   1.65  52.62
## 9541             16 years old Female              11th grade   1.65  64.86
## 9542             15 years old   Male               9th grade   1.65  58.97
## 9543             14 years old Female               9th grade   1.65  56.25
## 9544             17 years old Female              12th grade   1.65 104.33
## 9545             15 years old Female               9th grade   1.65  52.16
## 9546             16 years old Female              10th grade   1.65  68.04
## 9547             14 years old   Male               9th grade   1.65  45.36
## 9548             14 years old Female               9th grade   1.65  68.04
## 9549             17 years old Female              12th grade   1.65  64.41
## 9550             17 years old Female              11th grade   1.65 102.97
## 9551             17 years old Female              12th grade   1.65  48.54
## 9552    18 years old or older Female              12th grade   1.65  56.70
## 9553             14 years old Female               9th grade   1.65  63.50
## 9554             16 years old Female              11th grade   1.65  74.84
## 9555             15 years old Female              10th grade   1.65  81.65
## 9556             16 years old Female              11th grade   1.65  43.09
## 9557             15 years old   Male              10th grade   1.65  58.97
## 9558             16 years old Female              11th grade   1.65  65.77
## 9559             16 years old Female              11th grade   1.65  72.58
## 9560             15 years old Female              10th grade   1.65  58.97
## 9561             17 years old   Male              12th grade   1.65  72.58
## 9562    18 years old or older Female              12th grade   1.65  68.04
## 9563             17 years old Female              12th grade   1.65  58.97
## 9564             14 years old Female               9th grade   1.65  57.15
## 9565             16 years old Female              11th grade   1.65  63.50
## 9566             15 years old   Male               9th grade   1.65  74.84
## 9567             15 years old   Male               9th grade   1.65  60.78
## 9568             16 years old Female              11th grade   1.65  56.70
## 9569    18 years old or older   Male              12th grade   1.65  76.20
## 9570    18 years old or older Female              12th grade   1.65  58.97
## 9571             17 years old   Male              12th grade   1.65  68.04
## 9572    18 years old or older Female              12th grade   1.65  81.65
## 9573             15 years old   Male              10th grade   1.65  55.79
## 9574             14 years old   Male               9th grade   1.65  58.97
## 9575             15 years old   Male               9th grade   1.65  57.15
## 9576             15 years old Female              10th grade   1.65 113.40
## 9577    18 years old or older   Male              12th grade   1.65  81.65
## 9578             17 years old Female              12th grade   1.65  83.92
## 9579             16 years old Female              11th grade   1.65  71.22
## 9580             16 years old   Male              11th grade   1.65  49.90
## 9581             15 years old Female               9th grade   1.65  54.43
## 9582             14 years old   Male               9th grade   1.65  65.77
## 9583             15 years old Female              10th grade   1.65  58.97
## 9584             17 years old Female              12th grade   1.65  58.97
## 9585             17 years old   Male              12th grade   1.65  81.65
## 9586             14 years old Female               9th grade   1.65  49.90
## 9587             16 years old   Male              10th grade   1.65  58.97
## 9588             14 years old Female               9th grade   1.65  72.58
## 9589             16 years old Female              11th grade   1.65  78.02
## 9590             17 years old Female              11th grade   1.65 102.06
## 9591    18 years old or older Female              12th grade   1.65  52.16
## 9592             15 years old Female               9th grade   1.65  58.97
## 9593             16 years old   Male              10th grade   1.65  49.90
## 9594             16 years old Female              11th grade   1.65  63.50
## 9595             16 years old Female              11th grade   1.65  52.16
## 9596             17 years old   Male              12th grade   1.65  63.50
## 9597             16 years old   Male              10th grade   1.65  49.90
## 9598             14 years old Female               9th grade   1.65  54.43
## 9599             16 years old Female              11th grade   1.65  45.36
## 9600    18 years old or older Female              12th grade   1.65  53.07
## 9601             17 years old Female              12th grade   1.65  51.26
## 9602             17 years old   Male              12th grade   1.65  52.16
## 9603             14 years old   Male               9th grade   1.65  94.35
## 9604             16 years old Female              11th grade   1.65  58.06
## 9605             17 years old Female              12th grade   1.65  63.50
## 9606             17 years old   Male              11th grade   1.65  77.11
## 9607             16 years old Female              10th grade   1.65  68.04
## 9608             16 years old   Male              10th grade   1.65  65.77
## 9609             17 years old Female              11th grade   1.65  44.00
## 9610             14 years old   Male               9th grade   1.65  45.36
## 9611             15 years old Female               9th grade   1.65  54.89
## 9612             15 years old Female              10th grade   1.65  63.50
## 9613             16 years old Female              10th grade   1.65  70.31
## 9614    18 years old or older Female              12th grade   1.65  99.79
## 9615             17 years old Female              11th grade   1.65  54.43
## 9616             17 years old Female              11th grade   1.65  54.43
## 9617             15 years old Female               9th grade   1.65  49.90
## 9618             16 years old   Male              11th grade   1.65  57.15
## 9619             15 years old   Male               9th grade   1.65  68.04
## 9620             15 years old Female              10th grade   1.65  53.07
## 9621             16 years old   Male              10th grade   1.65  56.70
## 9622             15 years old Female              10th grade   1.65  63.05
## 9623             15 years old Female              10th grade   1.65  56.70
## 9624             16 years old   Male              10th grade   1.65  58.06
## 9625             17 years old Female              11th grade   1.65  43.09
## 9626             15 years old   Male               9th grade   1.65  56.25
## 9627             17 years old Female              12th grade   1.65  63.50
## 9628    18 years old or older   Male              12th grade   1.65  58.97
## 9629             15 years old   Male               9th grade   1.65  72.58
## 9630             15 years old Female              10th grade   1.65  63.50
## 9631             15 years old Female              10th grade   1.65  83.92
## 9632             15 years old Female              10th grade   1.65  61.69
## 9633             15 years old Female              10th grade   1.65  79.38
## 9634             16 years old Female              10th grade   1.65  68.04
## 9635             16 years old Female              11th grade   1.65  53.52
## 9636             15 years old Female              10th grade   1.65  54.43
## 9637             15 years old Female              10th grade   1.65  99.79
## 9638             15 years old   Male               9th grade   1.65  50.80
## 9639             14 years old   Male               9th grade   1.65  78.93
## 9640    18 years old or older Female              12th grade   1.65  63.50
## 9641    18 years old or older Female              12th grade   1.65  58.97
## 9642    18 years old or older Female              12th grade   1.65  70.31
## 9643             16 years old Female              11th grade   1.65  54.43
## 9644             14 years old   Male               9th grade   1.65  54.43
## 9645             15 years old Female              10th grade   1.65  54.43
## 9646             15 years old Female              10th grade   1.65  50.80
## 9647             15 years old Female               9th grade   1.65  74.84
## 9648             14 years old   Male               9th grade   1.65  56.70
## 9649    18 years old or older   Male              12th grade   1.65  83.92
## 9650             17 years old Female              12th grade   1.65  49.90
## 9651             16 years old Female              10th grade   1.65  55.79
## 9652             15 years old   Male               9th grade   1.65  74.84
## 9653             16 years old Female              10th grade   1.65  48.54
## 9654             15 years old Female              10th grade   1.65  65.77
## 9655             15 years old Female               9th grade   1.65  83.92
## 9656             17 years old   Male              11th grade   1.65  81.65
## 9657             15 years old Female               9th grade   1.65  59.88
## 9658             15 years old   Male               9th grade   1.65  54.43
## 9659             16 years old   Male              10th grade   1.65  48.54
## 9660             17 years old Female              12th grade   1.65  45.36
## 9661             17 years old Female              11th grade   1.65  58.97
## 9662    18 years old or older   Male              10th grade   1.65  68.04
## 9663             17 years old Female              11th grade   1.65  58.97
## 9664             15 years old Female              10th grade   1.65  54.43
## 9665    18 years old or older   Male              12th grade   1.65  70.31
## 9666    18 years old or older Female              12th grade   1.65  58.97
## 9667             16 years old Female              10th grade   1.65  62.14
## 9668             17 years old   Male              11th grade   1.65  54.43
## 9669             14 years old Female               9th grade   1.65  58.97
## 9670             17 years old   Male              12th grade   1.65  86.64
## 9671             16 years old Female              10th grade   1.65  74.84
## 9672             14 years old   Male               9th grade   1.65  56.70
## 9673             16 years old Female              10th grade   1.65  54.43
## 9674    18 years old or older Female              12th grade   1.65  65.77
## 9675             15 years old Female               9th grade   1.65  58.97
## 9676             15 years old Female               9th grade   1.65  61.24
## 9677             16 years old   Male              10th grade   1.65  56.70
## 9678             16 years old Female              11th grade   1.65 104.33
## 9679             16 years old Female              10th grade   1.65  74.84
## 9680             16 years old   Male               9th grade   1.65  56.70
## 9681             17 years old Female              11th grade   1.65  91.17
## 9682             15 years old Female              10th grade   1.65  38.56
## 9683             14 years old   Male               9th grade   1.65  49.90
## 9684             16 years old   Male               9th grade   1.65 104.33
## 9685             14 years old Female               9th grade   1.65  68.04
## 9686    18 years old or older Female              11th grade   1.65  74.84
## 9687             15 years old Female               9th grade   1.65  48.99
## 9688             17 years old   Male              11th grade   1.65  58.97
## 9689             17 years old Female              12th grade   1.65  71.67
## 9690             14 years old   Male               9th grade   1.65  68.04
## 9691             16 years old Female              11th grade   1.65  77.11
## 9692             15 years old   Male               9th grade   1.65  61.24
## 9693             17 years old Female              11th grade   1.65  55.79
## 9694             15 years old   Male              10th grade   1.65  99.79
## 9695             17 years old Female              12th grade   1.65 108.86
## 9696             17 years old Female              11th grade   1.65  74.84
## 9697    18 years old or older Female              12th grade   1.65  59.88
## 9698             15 years old Female               9th grade   1.65  58.97
## 9699             14 years old   Male               9th grade   1.65  56.70
## 9700    18 years old or older   Male              12th grade   1.65  79.83
## 9701             14 years old Female               9th grade   1.65  48.08
## 9702             15 years old Female              10th grade   1.65  60.78
## 9703    18 years old or older Female              12th grade   1.65  58.97
## 9704             14 years old Female               9th grade   1.65  56.70
## 9705             16 years old Female              10th grade   1.65  63.96
## 9706             15 years old Female               9th grade   1.65  58.97
## 9707             16 years old Female              11th grade   1.65  66.23
## 9708             15 years old Female              10th grade   1.65  54.43
## 9709             14 years old Female               9th grade   1.65  52.16
## 9710             15 years old Female              10th grade   1.65  53.52
## 9711             15 years old   Male              10th grade   1.65  56.70
## 9712             15 years old Female              10th grade   1.65  58.97
## 9713             16 years old Female              10th grade   1.65  54.43
## 9714             17 years old Female              11th grade   1.65  52.16
## 9715             16 years old Female              10th grade   1.65  49.90
## 9716             17 years old Female              12th grade   1.65  66.23
## 9717             15 years old Female              10th grade   1.65  97.52
## 9718             16 years old   Male               9th grade   1.65  66.23
## 9719    18 years old or older   Male              12th grade   1.65  61.24
## 9720             16 years old Female              11th grade   1.65  70.31
## 9721             16 years old   Male              11th grade   1.65  70.31
## 9722             14 years old Female               9th grade   1.65  99.79
## 9723             17 years old Female              12th grade   1.65  99.79
## 9724    18 years old or older Female              12th grade   1.65  56.70
## 9725             16 years old   Male              10th grade   1.65  56.70
## 9726             15 years old Female              10th grade   1.65  63.50
## 9727             15 years old Female              10th grade   1.65  69.85
## 9728             17 years old Female              11th grade   1.65  52.16
## 9729             15 years old Female              10th grade   1.65  53.07
## 9730             15 years old Female              10th grade   1.65  74.84
## 9731             15 years old Female              10th grade   1.65  58.97
## 9732             16 years old Female              11th grade   1.65  74.84
## 9733             16 years old Female              10th grade   1.65  61.24
## 9734    18 years old or older Female              12th grade   1.65  58.51
## 9735             14 years old Female               9th grade   1.65  81.65
## 9736             15 years old   Male              10th grade   1.65  58.97
## 9737             16 years old Female              11th grade   1.65  45.36
## 9738             16 years old Female              11th grade   1.65  68.04
## 9739             16 years old Female              10th grade   1.65  86.18
## 9740             15 years old Female              10th grade   1.65  52.62
## 9741             15 years old Female               9th grade   1.65  61.69
## 9742    18 years old or older Female              12th grade   1.65  54.43
## 9743             15 years old   Male               9th grade   1.65  61.24
## 9744             16 years old Female              11th grade   1.65  56.25
## 9745    18 years old or older Female              12th grade   1.65 136.08
## 9746    18 years old or older Female              12th grade   1.65  68.49
## 9747             17 years old Female              12th grade   1.65  56.70
## 9748             17 years old   Male              12th grade   1.65  39.46
## 9749             17 years old Female              12th grade   1.65  71.67
## 9750             14 years old   Male               9th grade   1.65  49.90
## 9751             15 years old Female               9th grade   1.65  61.24
## 9752             14 years old Female               9th grade   1.65  58.51
## 9753             16 years old Female              10th grade   1.65  49.90
## 9754             15 years old   Male              10th grade   1.65  54.43
## 9755             16 years old   Male              10th grade   1.65  55.34
## 9756             17 years old Female              11th grade   1.65 102.06
## 9757             16 years old   Male              11th grade   1.65  86.18
## 9758             14 years old   Male               9th grade   1.65 106.60
## 9759             16 years old Female              10th grade   1.65  86.18
## 9760             14 years old Female               9th grade   1.65  52.16
## 9761             17 years old Female              12th grade   1.65  81.65
## 9762             14 years old Female               9th grade   1.65  56.70
## 9763             17 years old Female              11th grade   1.65  58.97
## 9764             15 years old   Male              10th grade   1.65  61.24
## 9765             17 years old   Male              10th grade   1.65  43.55
## 9766             15 years old   Male               9th grade   1.65  60.33
## 9767             15 years old Female              10th grade   1.65  58.97
## 9768             15 years old Female              10th grade   1.65  63.05
## 9769             15 years old   Male               9th grade   1.65  49.90
## 9770             16 years old   Male              10th grade   1.65  54.43
## 9771             15 years old   Male               9th grade   1.65  83.01
## 9772             15 years old Female              10th grade   1.65  42.18
## 9773             17 years old Female              11th grade   1.65  72.58
## 9774             17 years old Female              11th grade   1.65  65.77
## 9775             15 years old Female               9th grade   1.65  49.90
## 9776             16 years old Female              10th grade   1.65  67.13
## 9777             14 years old   Male               9th grade   1.65  58.06
## 9778             15 years old Female              10th grade   1.65  56.25
## 9779             16 years old   Male              11th grade   1.65  58.97
## 9780             17 years old   Male              12th grade   1.65  63.50
## 9781             17 years old   Male              10th grade   1.65  63.50
## 9782             15 years old   Male               9th grade   1.65  77.11
## 9783             17 years old Female              12th grade   1.65  49.90
## 9784             17 years old Female              11th grade   1.65  54.43
## 9785             17 years old   Male              10th grade   1.65  58.97
## 9786             16 years old   Male              10th grade   1.65  54.43
## 9787             16 years old   Male              10th grade   1.65  72.58
## 9788             15 years old Female              10th grade   1.65  65.77
## 9789             16 years old Female              11th grade   1.65  56.70
## 9790             15 years old   Male               9th grade   1.65  50.80
## 9791             16 years old Female              11th grade   1.65  49.90
## 9792             17 years old   Male              11th grade   1.65  56.70
## 9793             15 years old Female              10th grade   1.65  54.43
## 9794    18 years old or older Female              12th grade   1.65  61.24
## 9795             15 years old Female              10th grade   1.65  68.04
## 9796             16 years old Female              10th grade   1.65  63.50
## 9797    18 years old or older Female              12th grade   1.65  65.77
## 9798             15 years old Female               9th grade   1.65  68.04
## 9799             15 years old Female               9th grade   1.65  52.62
## 9800             16 years old Female              10th grade   1.65 104.33
## 9801             16 years old Female              10th grade   1.65  81.65
## 9802             15 years old Female              10th grade   1.65  58.97
## 9803             17 years old Female              11th grade   1.65 102.06
## 9804             17 years old Female              11th grade   1.65  76.20
## 9805             16 years old Female              10th grade   1.65  77.11
## 9806             15 years old Female              10th grade   1.65  56.70
## 9807             17 years old Female              12th grade   1.65  68.04
## 9808             15 years old Female               9th grade   1.65  64.41
## 9809             16 years old Female              10th grade   1.65  63.50
## 9810             17 years old Female              11th grade   1.65  86.18
## 9811             17 years old Female              11th grade   1.65  68.04
## 9812             15 years old Female              10th grade   1.65  63.05
## 9813             15 years old Female               9th grade   1.65  54.89
## 9814             15 years old Female              10th grade   1.65  61.24
## 9815             16 years old Female              11th grade   1.65  72.58
## 9816             16 years old Female              11th grade   1.65  68.04
## 9817    18 years old or older Female              12th grade   1.65  70.31
## 9818             15 years old Female              10th grade   1.65  83.92
## 9819             16 years old   Male              10th grade   1.65  68.04
## 9820             15 years old Female               9th grade   1.65  67.13
## 9821             17 years old Female              11th grade   1.65  53.98
## 9822             16 years old Female               9th grade   1.65 130.18
## 9823             14 years old   Male               9th grade   1.65  56.70
## 9824             17 years old   Male              11th grade   1.65  63.50
## 9825             16 years old Female              10th grade   1.65  61.24
## 9826             15 years old   Male              10th grade   1.65  49.90
## 9827             16 years old Female              10th grade   1.65  65.77
## 9828             16 years old Female              11th grade   1.65  58.97
## 9829             16 years old Female              10th grade   1.65 108.86
## 9830             16 years old Female              10th grade   1.65  68.04
## 9831             17 years old Female              11th grade   1.65  58.97
## 9832    18 years old or older   Male              12th grade   1.65  54.43
## 9833             14 years old Female               9th grade   1.65  45.36
## 9834             15 years old   Male               9th grade   1.65  72.58
## 9835    18 years old or older Female              12th grade   1.65  97.98
## 9836             15 years old   Male               9th grade   1.65  49.90
## 9837             14 years old Female               9th grade   1.65  57.61
## 9838             16 years old   Male              10th grade   1.65  58.97
## 9839             16 years old   Male              10th grade   1.65  61.69
## 9840             15 years old Female               9th grade   1.65  57.15
## 9841             15 years old Female              10th grade   1.65  81.65
## 9842             15 years old Female              10th grade   1.65  78.02
## 9843             17 years old   Male              11th grade   1.65  48.08
## 9844             17 years old Female              11th grade   1.65  57.15
## 9845    18 years old or older Female              12th grade   1.65  86.18
## 9846             17 years old Female              12th grade   1.65  68.95
## 9847             17 years old Female              11th grade   1.65  60.33
## 9848             14 years old Female               9th grade   1.65  89.81
## 9849             17 years old Female              12th grade   1.65  61.24
## 9850             16 years old   Male              10th grade   1.65  74.84
## 9851             17 years old Female              12th grade   1.65  97.52
## 9852             15 years old Female              10th grade   1.65  61.24
## 9853             17 years old Female              12th grade   1.65  61.24
## 9854             16 years old   Male              10th grade   1.65  72.58
## 9855             17 years old   Male              10th grade   1.65 127.46
## 9856             15 years old Female               9th grade   1.65  56.70
## 9857             16 years old Female              10th grade   1.65  65.77
## 9858             17 years old Female              11th grade   1.65  99.79
## 9859             17 years old   Male              12th grade   1.65  53.52
## 9860             15 years old   Male               9th grade   1.65  45.81
## 9861             15 years old   Male               9th grade   1.65  54.43
## 9862             15 years old Female               9th grade   1.65  54.43
## 9863             17 years old Female              12th grade   1.65  65.77
## 9864             14 years old   Male               9th grade   1.65  47.17
## 9865             17 years old Female              11th grade   1.65  54.43
## 9866             17 years old Female              12th grade   1.65  68.04
## 9867    18 years old or older Female              12th grade   1.65  40.82
## 9868             15 years old Female               9th grade   1.65  58.97
## 9869             17 years old Female              11th grade   1.65  58.97
## 9870             16 years old Female              10th grade   1.65  49.90
## 9871             16 years old Female              11th grade   1.65  49.90
## 9872             15 years old Female               9th grade   1.65  61.69
## 9873             17 years old Female              12th grade   1.65  56.70
## 9874             16 years old Female              11th grade   1.65  65.77
## 9875             15 years old Female              10th grade   1.65  52.16
## 9876             16 years old   Male              10th grade   1.65  72.58
## 9877             17 years old Female              12th grade   1.65  63.50
## 9878             14 years old   Male               9th grade   1.65  50.80
## 9879             15 years old Female               9th grade   1.65  52.16
## 9880             14 years old Female               9th grade   1.65  63.50
## 9881             16 years old Female              11th grade   1.65  48.54
## 9882             17 years old Female              11th grade   1.65  74.84
## 9883    18 years old or older Female              12th grade   1.65  54.43
## 9884             17 years old Female              12th grade   1.65  86.18
## 9885             17 years old Female              11th grade   1.65  71.67
## 9886    18 years old or older Female              12th grade   1.65  81.65
## 9887             16 years old   Male              10th grade   1.65  49.90
## 9888             15 years old   Male               9th grade   1.65  49.90
## 9889             17 years old Female              11th grade   1.65  56.25
## 9890             17 years old   Male              11th grade   1.65  88.45
## 9891             15 years old Female               9th grade   1.65  68.04
## 9892             16 years old Female              10th grade   1.65  47.63
## 9893             16 years old   Male              11th grade   1.65  49.90
## 9894             15 years old Female               9th grade   1.65  59.88
## 9895             17 years old Female              11th grade   1.65  65.77
## 9896             16 years old   Male              10th grade   1.65  67.13
## 9897             16 years old Female              10th grade   1.65  63.50
## 9898             14 years old   Male               9th grade   1.65  83.92
## 9899    18 years old or older   Male              12th grade   1.65  62.60
## 9900             16 years old Female              10th grade   1.65  81.65
## 9901             17 years old   Male              11th grade   1.65  81.19
## 9902             16 years old Female              10th grade   1.65  58.97
## 9903             15 years old Female               9th grade   1.65  58.97
## 9904             15 years old Female               9th grade   1.65  59.88
## 9905             15 years old Female               9th grade   1.65  81.65
## 9906             14 years old Female               9th grade   1.65  58.97
## 9907             14 years old Female               9th grade   1.65  68.04
## 9908             17 years old Female              12th grade   1.65  73.94
## 9909    18 years old or older   Male              12th grade   1.65  63.50
## 9910             15 years old Female               9th grade   1.65  81.65
## 9911             16 years old Female              10th grade   1.65  63.50
## 9912    18 years old or older Female              12th grade   1.65  58.97
## 9913             16 years old Female              10th grade   1.65  54.43
## 9914    18 years old or older Female Ungraded or other grade   1.65  77.11
## 9915             16 years old Female              10th grade   1.65  56.25
## 9916             15 years old Female               9th grade   1.65  52.16
## 9917             15 years old Female              10th grade   1.65  65.32
## 9918             15 years old Female               9th grade   1.65  64.86
## 9919             15 years old Female              10th grade   1.65  47.17
## 9920    18 years old or older Female              12th grade   1.65  60.33
## 9921             15 years old Female               9th grade   1.65  56.70
## 9922             16 years old   Male              10th grade   1.65  58.97
## 9923             15 years old   Male               9th grade   1.65  49.90
## 9924             15 years old Female              10th grade   1.65  62.60
## 9925    18 years old or older Female              12th grade   1.65  61.24
## 9926             16 years old   Male              10th grade   1.65  61.24
## 9927             16 years old   Male              10th grade   1.65  80.74
## 9928    18 years old or older Female              12th grade   1.65  61.24
## 9929             17 years old Female              11th grade   1.65  74.84
## 9930             15 years old   Male               9th grade   1.65  82.10
## 9931             15 years old Female               9th grade   1.65  53.98
## 9932    18 years old or older Female              12th grade   1.65 113.40
## 9933             17 years old Female              11th grade   1.65  94.80
## 9934             17 years old   Male              10th grade   1.65 121.11
## 9935    18 years old or older Female              12th grade   1.65  72.58
## 9936             17 years old Female              12th grade   1.65  79.38
## 9937    18 years old or older Female              12th grade   1.65  61.24
## 9938             17 years old   Male              10th grade   1.65  59.88
## 9939             16 years old Female              10th grade   1.65  54.43
## 9940    18 years old or older Female              11th grade   1.65  70.31
## 9941             16 years old Female              10th grade   1.65  50.80
## 9942             16 years old Female              11th grade   1.65  81.65
## 9943             15 years old   Male               9th grade   1.65  88.45
## 9944             15 years old Female               9th grade   1.65  53.52
## 9945             14 years old Female               9th grade   1.65  53.52
## 9946             17 years old Female              12th grade   1.65  65.77
## 9947             16 years old Female              11th grade   1.65  69.40
## 9948             16 years old   Male              11th grade   1.65  56.70
## 9949             17 years old Female              10th grade   1.65  57.15
## 9950             16 years old   Male              10th grade   1.65  56.25
## 9951             17 years old Female              12th grade   1.65  99.79
## 9952             16 years old   Male              11th grade   1.65  59.88
## 9953             15 years old   Male              10th grade   1.65  90.72
## 9954             16 years old   Male              10th grade   1.65  95.26
## 9955    18 years old or older Female              12th grade   1.65  77.11
## 9956    18 years old or older Female              12th grade   1.65  83.92
## 9957             16 years old Female              11th grade   1.65  60.33
## 9958             16 years old Female              11th grade   1.65  52.16
## 9959             17 years old Female              12th grade   1.65  58.97
## 9960             15 years old   Male              10th grade   1.65  49.44
## 9961             14 years old Female               9th grade   1.65  51.71
## 9962             15 years old   Male               9th grade   1.65  49.90
## 9963             14 years old   Male               9th grade   1.65  61.69
## 9964             16 years old Female              10th grade   1.65  58.97
## 9965             15 years old Female               9th grade   1.65  83.01
## 9966             14 years old Female               9th grade   1.65  81.65
## 9967    18 years old or older   Male              12th grade   1.65  58.97
## 9968             15 years old   Male               9th grade   1.65  65.77
## 9969             15 years old Female              10th grade   1.65  99.34
## 9970             16 years old   Male              11th grade   1.65  63.05
## 9971             16 years old Female              11th grade   1.65  54.43
## 9972             16 years old Female              11th grade   1.65  53.52
## 9973             16 years old   Male              11th grade   1.65  90.72
## 9974             16 years old Female              11th grade   1.65  50.35
## 9975             17 years old   Male              12th grade   1.65  52.16
## 9976             15 years old   Male              10th grade   1.65  58.97
## 9977             17 years old Female              12th grade   1.65  58.06
## 9978             17 years old Female              11th grade   1.65  62.60
## 9979             15 years old Female              10th grade   1.65  61.24
## 9980             15 years old Female              10th grade   1.65  65.77
## 9981             17 years old Female              11th grade   1.65  65.77
## 9982             16 years old Female              11th grade   1.65  58.06
## 9983             15 years old Female              10th grade   1.65  57.61
## 9984             15 years old Female              10th grade   1.65  61.24
## 9985             15 years old   Male              10th grade   1.65  61.24
## 9986             15 years old Female              10th grade   1.65  57.15
## 9987             15 years old Female              10th grade   1.65  52.16
## 9988             16 years old   Male              10th grade   1.65  63.50
## 9989             16 years old Female              10th grade   1.65  63.50
## 9990             16 years old Female              10th grade   1.65  72.58
## 9991             16 years old Female              10th grade   1.65  65.77
## 9992             16 years old   Male              10th grade   1.65  66.23
## 9993             16 years old   Male              10th grade   1.65  68.04
## 9994             14 years old Female               9th grade   1.65  62.14
## 9995             16 years old Female              10th grade   1.65  58.06
## 9996             14 years old Female               9th grade   1.65  50.80
## 9997             14 years old Female               9th grade   1.65  51.26
## 9998             16 years old Female              11th grade   1.65  65.77
## 9999             14 years old Female               9th grade   1.65  58.06
## 10000            17 years old Female              11th grade   1.65  68.04
## 10001            15 years old   Male               9th grade   1.65  70.31
## 10002            16 years old Female              10th grade   1.65 111.13
## 10003            17 years old   Male              11th grade   1.65  59.88
## 10004            14 years old Female               9th grade   1.65  56.25
## 10005            16 years old Female              11th grade   1.65  74.39
## 10006            16 years old Female              11th grade   1.65  54.43
## 10007            16 years old Female              11th grade   1.65  71.67
## 10008            15 years old Female               9th grade   1.65  53.52
## 10009            16 years old Female              11th grade   1.65  62.14
## 10010            17 years old   Male              12th grade   1.65  54.43
## 10011            15 years old Female              10th grade   1.65  58.97
## 10012            14 years old Female               9th grade   1.65  54.43
## 10013            14 years old   Male               9th grade   1.65  45.36
## 10014            14 years old Female               9th grade   1.65  54.43
## 10015            16 years old Female              10th grade   1.65  50.80
## 10016            15 years old   Male               9th grade   1.65  68.04
## 10017            15 years old   Male              10th grade   1.65  61.24
## 10018            14 years old Female               9th grade   1.65  54.43
## 10019            16 years old   Male              10th grade   1.65  58.97
## 10020            15 years old   Male               9th grade   1.65  58.51
## 10021            15 years old   Male               9th grade   1.65 108.86
## 10022            15 years old Female               9th grade   1.65  44.91
## 10023            15 years old Female               9th grade   1.65  45.36
## 10024            15 years old   Male               9th grade   1.65  86.18
## 10025            17 years old   Male              11th grade   1.65  61.24
## 10026            16 years old Female               9th grade   1.65  52.16
## 10027            16 years old   Male              10th grade   1.65  54.43
## 10028            16 years old   Male              10th grade   1.65  58.97
## 10029            15 years old   Male               9th grade   1.65  84.37
## 10030            15 years old   Male               9th grade   1.65  53.52
## 10031   18 years old or older Female              12th grade   1.65  53.52
## 10032            15 years old   Male               9th grade   1.65 108.86
## 10033            15 years old Female               9th grade   1.65  50.80
## 10034            14 years old Female               9th grade   1.65  99.79
## 10035            16 years old Female              10th grade   1.65  63.50
## 10036            14 years old Female               9th grade   1.65  63.05
## 10037            16 years old Female              10th grade   1.65  68.04
## 10038            16 years old Female              11th grade   1.65  74.84
## 10039            15 years old Female              10th grade   1.65  62.14
## 10040            17 years old Female              11th grade   1.65  73.94
## 10041            17 years old Female              12th grade   1.65  79.38
## 10042            17 years old   Male              11th grade   1.65  55.34
## 10043   18 years old or older   Male              12th grade   1.65  90.72
## 10044            14 years old   Male               9th grade   1.65  52.62
## 10045            15 years old   Male               9th grade   1.65  69.40
## 10046            17 years old Female              11th grade   1.65  58.06
## 10047            15 years old   Male              10th grade   1.65  67.59
## 10048            15 years old Female               9th grade   1.65  74.84
## 10049   18 years old or older   Male              12th grade   1.65  96.62
## 10050            17 years old   Male              12th grade   1.65  54.43
## 10051            16 years old Female              10th grade   1.65  54.43
## 10052            16 years old Female              10th grade   1.65  54.43
## 10053            15 years old Female               9th grade   1.65  48.99
## 10054            16 years old Female              11th grade   1.65  54.89
## 10055            15 years old Female              10th grade   1.65  56.25
## 10056            16 years old Female              11th grade   1.65  65.77
## 10057            16 years old Female              11th grade   1.65  46.72
## 10058            16 years old Female              10th grade   1.65  45.36
## 10059   18 years old or older Female              12th grade   1.65  57.61
## 10060            16 years old Female              11th grade   1.65  73.48
## 10061            14 years old Female               9th grade   1.65  70.31
## 10062            16 years old Female              10th grade   1.65  53.52
## 10063            17 years old Female              11th grade   1.65  81.65
## 10064            15 years old Female               9th grade   1.65  48.08
## 10065            16 years old Female              10th grade   1.65  63.50
## 10066   18 years old or older   Male              12th grade   1.65  65.32
## 10067   18 years old or older Female              12th grade   1.65  45.36
## 10068            15 years old   Male              10th grade   1.65  54.43
## 10069            15 years old Female               9th grade   1.65  62.60
## 10070            16 years old   Male              10th grade   1.65  55.79
## 10071            17 years old   Male              11th grade   1.65  79.38
## 10072            14 years old   Male               9th grade   1.65  54.43
## 10073            15 years old Female              10th grade   1.65  54.43
## 10074            15 years old Female               9th grade   1.65  68.04
## 10075   18 years old or older Female              12th grade   1.65  68.04
## 10076            17 years old Female              12th grade   1.65  50.35
## 10077            17 years old Female              11th grade   1.65  54.43
## 10078            16 years old Female              11th grade   1.65  86.18
## 10079            17 years old   Male              11th grade   1.65  61.24
## 10080            14 years old   Male               9th grade   1.65  50.80
## 10081            15 years old Female               9th grade   1.65  95.26
## 10082            17 years old   Male              11th grade   1.65  86.18
## 10083   18 years old or older Female              12th grade   1.65  54.43
## 10084            16 years old Female              11th grade   1.65  61.24
## 10085   18 years old or older Female              12th grade   1.65 108.41
## 10086            15 years old Female              10th grade   1.65  63.50
## 10087            16 years old Female              11th grade   1.65  95.26
## 10088            15 years old   Male               9th grade   1.65  52.16
## 10089            17 years old Female              11th grade   1.65  52.62
## 10090            16 years old Female              11th grade   1.65  63.96
## 10091   18 years old or older Female              12th grade   1.65  68.04
## 10092            17 years old Female              10th grade   1.65  47.63
## 10093            16 years old Female              10th grade   1.65  65.77
## 10094            16 years old Female              10th grade   1.65  81.65
## 10095            15 years old Female               9th grade   1.65  63.50
## 10096            16 years old Female              10th grade   1.65  61.24
## 10097            17 years old Female              11th grade   1.65  58.97
## 10098   18 years old or older Female              12th grade   1.65  98.88
## 10099            16 years old Female              10th grade   1.65  53.52
## 10100            16 years old Female              10th grade   1.65  86.18
## 10101            17 years old Female              11th grade   1.65  56.70
## 10102            14 years old   Male               9th grade   1.65  54.89
## 10103            14 years old Female               9th grade   1.65  53.52
## 10104   18 years old or older Female              12th grade   1.65  63.50
## 10105            17 years old Female              12th grade   1.65  62.60
## 10106            14 years old Female               9th grade   1.65  48.08
## 10107   18 years old or older Female              12th grade   1.65  56.70
## 10108            14 years old Female               9th grade   1.65  83.92
## 10109            16 years old   Male              11th grade   1.65  55.79
## 10110            17 years old Female              11th grade   1.65  79.38
## 10111   18 years old or older Female              12th grade   1.65  56.70
## 10112   18 years old or older Female              12th grade   1.65  79.38
## 10113            17 years old Female              11th grade   1.65  54.43
## 10114            15 years old Female              10th grade   1.65  54.43
## 10115   18 years old or older Female              12th grade   1.65  98.88
## 10116            16 years old Female              10th grade   1.65  93.44
## 10117            15 years old Female              10th grade   1.65  86.18
## 10118            14 years old Female               9th grade   1.65  57.15
## 10119            14 years old Female               9th grade   1.65  80.74
## 10120            15 years old   Male              10th grade   1.65  47.63
## 10121            15 years old   Male              10th grade   1.65  72.58
## 10122            15 years old Female               9th grade   1.65  53.52
## 10123            14 years old Female               9th grade   1.65  38.56
## 10124            17 years old Female              11th grade   1.65  61.24
## 10125            15 years old Female               9th grade   1.65  86.18
## 10126            15 years old Female               9th grade   1.65  65.77
## 10127            15 years old   Male               9th grade   1.65  53.98
## 10128            15 years old Female               9th grade   1.65  50.35
## 10129            16 years old Female              10th grade   1.65  83.92
## 10130            17 years old Female              11th grade   1.65  74.84
## 10131            16 years old Female              10th grade   1.65  61.24
## 10132            16 years old Female              11th grade   1.65  52.16
## 10133   18 years old or older Female              12th grade   1.65  58.97
## 10134            17 years old   Male              10th grade   1.65  66.23
## 10135            14 years old Female               9th grade   1.65  81.65
## 10136            17 years old Female              11th grade   1.65  63.50
## 10137            15 years old   Male               9th grade   1.65 104.33
## 10138            15 years old   Male               9th grade   1.65  49.90
## 10139            14 years old Female               9th grade   1.65  95.26
## 10140            16 years old Female              10th grade   1.65  65.77
## 10141   18 years old or older Female              12th grade   1.65  61.24
## 10142            17 years old Female              10th grade   1.65  45.36
## 10143            16 years old   Male               9th grade   1.65  63.50
## 10144   18 years old or older   Male              12th grade   1.65  89.36
## 10145            15 years old Female               9th grade   1.65  57.15
## 10146            14 years old Female               9th grade   1.65  79.38
## 10147   18 years old or older Female              12th grade   1.65  52.16
## 10148            16 years old   Male              11th grade   1.65  40.82
## 10149            16 years old Female              11th grade   1.65  77.11
## 10150            16 years old Female              10th grade   1.65  58.97
## 10151            17 years old   Male              11th grade   1.65 106.60
## 10152            17 years old Female              10th grade   1.65  67.13
## 10153            17 years old Female              11th grade   1.65  70.31
## 10154            17 years old Female              11th grade   1.65  76.66
## 10155            17 years old Female              12th grade   1.65  61.24
## 10156            16 years old Female              11th grade   1.65 109.77
## 10157   18 years old or older Female              12th grade   1.65  65.77
## 10158            17 years old Female              11th grade   1.65  49.90
## 10159   18 years old or older   Male              12th grade   1.65  68.04
## 10160            17 years old Female              11th grade   1.65  65.77
## 10161            16 years old Female              10th grade   1.65  58.97
## 10162            15 years old Female              10th grade   1.65  44.91
## 10163            17 years old Female              10th grade   1.65  63.50
## 10164            16 years old   Male              10th grade   1.65  68.04
## 10165            15 years old Female              10th grade   1.65  68.04
## 10166            15 years old Female               9th grade   1.65  52.16
## 10167            17 years old Female              11th grade   1.65  52.16
## 10168            15 years old   Male               9th grade   1.65  61.24
## 10169            15 years old Female               9th grade   1.65  70.76
## 10170            16 years old Female              10th grade   1.65  47.63
## 10171            15 years old   Male               9th grade   1.65  61.24
## 10172            17 years old Female              11th grade   1.65  81.65
## 10173   18 years old or older Female              12th grade   1.65  54.43
## 10174            17 years old Female              12th grade   1.65 127.01
## 10175   18 years old or older Female              11th grade   1.65  54.43
## 10176            17 years old Female              10th grade   1.65  76.20
## 10177   18 years old or older   Male              11th grade   1.65  61.24
## 10178            16 years old Female              10th grade   1.65  81.65
## 10179            14 years old   Male               9th grade   1.65  40.82
## 10180            15 years old   Male               9th grade   1.65  68.04
## 10181            15 years old Female               9th grade   1.65  60.78
## 10182            16 years old Female              10th grade   1.65  63.50
## 10183            14 years old Female               9th grade   1.65  62.60
## 10184            14 years old Female               9th grade   1.65  54.43
## 10185            14 years old Female               9th grade   1.65  56.70
## 10186   18 years old or older Female              12th grade   1.65  81.65
## 10187            15 years old Female              10th grade   1.65  54.89
## 10188   18 years old or older Female              12th grade   1.65  83.92
## 10189   18 years old or older Female              12th grade   1.65  88.00
## 10190            16 years old Female              10th grade   1.65  81.65
## 10191            14 years old   Male               9th grade   1.65  61.24
## 10192   18 years old or older Female              12th grade   1.65 104.33
## 10193            14 years old   Male               9th grade   1.65  90.72
## 10194            15 years old   Male              10th grade   1.65  88.45
## 10195            15 years old   Male               9th grade   1.65  70.31
## 10196            15 years old Female               9th grade   1.65  86.18
## 10197            15 years old Female              10th grade   1.65  55.34
## 10198            15 years old Female               9th grade   1.65  95.26
## 10199            16 years old Female              11th grade   1.65  63.50
## 10200            15 years old   Male              10th grade   1.65  58.97
## 10201            15 years old Female               9th grade   1.65  51.26
## 10202            14 years old   Male               9th grade   1.65  52.16
## 10203            14 years old Female               9th grade   1.65  63.50
## 10204            15 years old Female              10th grade   1.65 106.60
## 10205            16 years old Female              10th grade   1.65  61.69
## 10206            17 years old Female              12th grade   1.65  83.92
## 10207            17 years old Female              11th grade   1.65  56.70
## 10208            14 years old Female               9th grade   1.65  74.84
## 10209            16 years old Female              10th grade   1.65 101.61
## 10210            16 years old Female              10th grade   1.65  61.69
## 10211            14 years old Female               9th grade   1.65  63.50
## 10212            16 years old   Male               9th grade   1.65  52.16
## 10213            15 years old   Male               9th grade   1.65  72.58
## 10214            14 years old Female               9th grade   1.65  52.16
## 10215            15 years old   Male               9th grade   1.65  46.72
## 10216            17 years old Female              11th grade   1.65  66.23
## 10217            17 years old Female              11th grade   1.65  81.65
## 10218            16 years old Female              10th grade   1.65  53.52
## 10219            16 years old Female               9th grade   1.65  61.24
## 10220   18 years old or older Female              12th grade   1.65  58.06
## 10221            16 years old Female              10th grade   1.65  72.58
## 10222            17 years old Female              12th grade   1.65  63.50
## 10223            17 years old   Male              12th grade   1.65  61.24
## 10224            16 years old   Male              10th grade   1.65  61.24
## 10225            17 years old Female              12th grade   1.65  56.70
## 10226            17 years old   Male              12th grade   1.65  92.99
## 10227            17 years old Female              11th grade   1.65  81.65
## 10228            15 years old Female              10th grade   1.65  58.97
## 10229            16 years old Female              11th grade   1.65  49.90
## 10230            16 years old Female              10th grade   1.65  68.04
## 10231            17 years old   Male              11th grade   1.65  55.79
## 10232            17 years old Female              11th grade   1.65  61.24
## 10233            15 years old Female              10th grade   1.65  68.04
## 10234            16 years old Female              11th grade   1.65  52.16
## 10235            16 years old Female              11th grade   1.65  77.11
## 10236            14 years old   Male               9th grade   1.65  71.22
## 10237            17 years old Female              12th grade   1.65  99.79
## 10238            15 years old Female               9th grade   1.65  58.06
## 10239            15 years old   Male               9th grade   1.65  53.52
## 10240            14 years old   Male               9th grade   1.65  81.65
## 10241   18 years old or older Female              12th grade   1.65  61.24
## 10242            17 years old Female              12th grade   1.65  67.13
## 10243            14 years old Female               9th grade   1.65  79.38
## 10244            16 years old   Male              10th grade   1.65  66.68
## 10245            14 years old Female               9th grade   1.65  52.16
## 10246            17 years old Female              11th grade   1.65  55.79
## 10247            16 years old Female              10th grade   1.65  70.31
## 10248            14 years old Female               9th grade   1.65  57.15
## 10249            15 years old   Male              10th grade   1.65  58.51
## 10250            14 years old Female               9th grade   1.65  47.63
## 10251            14 years old   Male               9th grade   1.65  53.07
## 10252            15 years old   Male               9th grade   1.65  45.36
## 10253            16 years old   Male              10th grade   1.65  70.76
## 10254            17 years old Female              11th grade   1.65  72.58
## 10255            15 years old   Male               9th grade   1.65  54.43
## 10256            15 years old   Male               9th grade   1.65  61.24
## 10257            15 years old   Male               9th grade   1.65  61.24
## 10258            17 years old Female              11th grade   1.65  74.84
## 10259            17 years old Female              11th grade   1.65  80.74
## 10260            15 years old Female              10th grade   1.65  77.11
## 10261            16 years old Female              10th grade   1.65  56.70
## 10262            16 years old Female              10th grade   1.65 104.33
## 10263            15 years old Female               9th grade   1.65  61.24
## 10264            16 years old Female              11th grade   1.65  56.70
## 10265            17 years old Female              12th grade   1.65  70.31
## 10266            16 years old Female              10th grade   1.65  68.04
## 10267            15 years old   Male              10th grade   1.65  65.77
## 10268            14 years old Female               9th grade   1.65  54.43
## 10269            14 years old   Male               9th grade   1.65  63.50
## 10270            17 years old   Male              11th grade   1.65  58.97
## 10271            15 years old   Male               9th grade   1.65  49.90
## 10272            15 years old Female              10th grade   1.65  65.32
## 10273            16 years old Female              10th grade   1.65  56.70
## 10274            16 years old Female              10th grade   1.65  58.97
## 10275            17 years old   Male              11th grade   1.65  50.80
## 10276   18 years old or older Female              12th grade   1.65  74.84
## 10277            17 years old   Male              12th grade   1.65  63.05
## 10278   18 years old or older Female              12th grade   1.65  59.88
## 10279            17 years old Female              11th grade   1.65  58.97
## 10280   18 years old or older Female              12th grade   1.65  90.72
## 10281            16 years old Female              11th grade   1.65  53.52
## 10282            16 years old Female              10th grade   1.65  49.90
## 10283            15 years old Female              10th grade   1.65  53.07
## 10284            17 years old   Male              11th grade   1.65  59.88
## 10285            15 years old Female               9th grade   1.65  52.16
## 10286            14 years old Female               9th grade   1.65  70.31
## 10287            14 years old Female               9th grade   1.65  51.26
## 10288            15 years old Female               9th grade   1.65  49.90
## 10289            15 years old Female              10th grade   1.65  54.43
## 10290            15 years old   Male               9th grade   1.65  54.43
## 10291            16 years old   Male              10th grade   1.65  49.90
## 10292            14 years old   Male               9th grade   1.65  49.90
## 10293            15 years old Female              10th grade   1.65  65.77
## 10294            15 years old Female              10th grade   1.65  84.82
## 10295            17 years old   Male              11th grade   1.65  54.43
## 10296   18 years old or older Female              12th grade   1.65  58.97
## 10297            16 years old Female              11th grade   1.65  61.69
## 10298            15 years old Female              10th grade   1.65  88.45
## 10299            16 years old Female              10th grade   1.65  49.90
## 10300            15 years old   Male              10th grade   1.65  52.62
## 10301            15 years old   Male              10th grade   1.65  86.18
## 10302            16 years old Female              10th grade   1.65  54.43
## 10303            15 years old Female               9th grade   1.65  63.50
## 10304            14 years old   Male               9th grade   1.65  56.70
## 10305            15 years old Female              10th grade   1.65  80.74
## 10306            16 years old Female              10th grade   1.65  68.04
## 10307            16 years old Female              11th grade   1.65  65.77
## 10308            15 years old Female              10th grade   1.65  58.06
## 10309   18 years old or older   Male              12th grade   1.65  63.50
## 10310            16 years old   Male              11th grade   1.65  58.97
## 10311            15 years old Female               9th grade   1.65  49.90
## 10312            15 years old   Male               9th grade   1.65  54.43
## 10313            15 years old Female              10th grade   1.65  51.26
## 10314            14 years old Female               9th grade   1.65  44.45
## 10315            14 years old Female               9th grade   1.65  49.44
## 10316            14 years old Female               9th grade   1.65  47.63
## 10317            15 years old   Male               9th grade   1.65  54.43
## 10318            15 years old   Male               9th grade   1.65  41.73
## 10319            15 years old Female               9th grade   1.65  65.32
## 10320            15 years old Female               9th grade   1.65  53.07
## 10321            14 years old   Male               9th grade   1.65  53.98
## 10322            14 years old   Male               9th grade   1.65  81.65
## 10323            14 years old Female               9th grade   1.65  40.82
## 10324            15 years old Female               9th grade   1.65  58.97
## 10325            15 years old   Male              10th grade   1.65  56.70
## 10326            16 years old Female              10th grade   1.65  54.43
## 10327            15 years old Female              10th grade   1.65  56.70
## 10328            17 years old Female              11th grade   1.65  63.50
## 10329            16 years old   Male              11th grade   1.65  62.14
## 10330            16 years old Female              11th grade   1.65 104.33
## 10331            14 years old Female               9th grade   1.65  57.15
## 10332            16 years old   Male              10th grade   1.65  78.02
## 10333            15 years old Female              10th grade   1.65  60.78
## 10334            16 years old Female              10th grade   1.65  54.43
## 10335            17 years old Female              11th grade   1.65  58.06
## 10336            16 years old Female              12th grade   1.65  58.97
## 10337            17 years old Female              11th grade   1.65  64.86
## 10338            16 years old   Male              11th grade   1.65  67.59
## 10339            14 years old Female               9th grade   1.65  69.85
## 10340            15 years old   Male               9th grade   1.65  77.11
## 10341            17 years old Female              11th grade   1.65  83.92
## 10342            16 years old   Male              11th grade   1.65  76.66
## 10343 12 years old or younger   Male               9th grade   1.65  78.02
## 10344            16 years old   Male              11th grade   1.65  65.77
## 10345            17 years old   Male               9th grade   1.65  81.19
## 10346            16 years old   Male              10th grade   1.65  59.88
## 10347   18 years old or older Female              12th grade   1.65  61.24
## 10348            16 years old   Male              10th grade   1.65  63.50
## 10349   18 years old or older Female              12th grade   1.65  70.76
## 10350            16 years old   Male              10th grade   1.65 113.40
## 10351            15 years old   Male              10th grade   1.65  49.90
## 10352            14 years old Female               9th grade   1.65  52.62
## 10353            14 years old Female               9th grade   1.65  56.70
## 10354            15 years old Female               9th grade   1.65  49.90
## 10355            14 years old Female               9th grade   1.65  44.00
## 10356            14 years old   Male               9th grade   1.65  43.09
## 10357            14 years old Female               9th grade   1.65  50.35
## 10358            14 years old   Male               9th grade   1.65  49.90
## 10359            14 years old Female               9th grade   1.65  54.43
## 10360            16 years old Female              10th grade   1.65  70.31
## 10361            17 years old   Male              11th grade   1.65  54.89
## 10362            16 years old   Male              11th grade   1.65  74.84
## 10363            16 years old Female              11th grade   1.65  53.98
## 10364            16 years old Female              11th grade   1.65  58.97
## 10365            16 years old Female              11th grade   1.65  52.16
## 10366   18 years old or older Female              12th grade   1.65  56.70
## 10367            17 years old Female              12th grade   1.65  56.70
## 10368   18 years old or older Female              12th grade   1.65  63.50
## 10369            17 years old Female              12th grade   1.65  58.97
## 10370            14 years old   Male               9th grade   1.65  77.11
## 10371            14 years old Female               9th grade   1.65  68.95
## 10372            14 years old   Male               9th grade   1.65  49.90
## 10373            15 years old Female               9th grade   1.65  52.16
## 10374            14 years old Female               9th grade   1.65  56.70
## 10375            14 years old   Male               9th grade   1.65  48.54
## 10376            16 years old Female                    <NA>   1.65  54.43
## 10377            15 years old Female              10th grade   1.65  49.90
## 10378            16 years old Female              10th grade   1.65  68.04
## 10379            16 years old Female              10th grade   1.65  56.70
## 10380            17 years old   Male              11th grade   1.65  61.24
## 10381            16 years old Female              11th grade   1.65  72.58
## 10382            17 years old Female              11th grade   1.65  56.70
## 10383            16 years old Female              11th grade   1.65  56.70
## 10384            17 years old Female              12th grade   1.65  58.97
## 10385            15 years old   Male               9th grade   1.65  68.04
## 10386            15 years old   Male               9th grade   1.65  48.54
## 10387            15 years old Female               9th grade   1.65  49.90
## 10388            14 years old   Male               9th grade   1.65  52.16
## 10389            14 years old   Male               9th grade   1.65  55.34
## 10390            14 years old Female               9th grade   1.65  47.63
## 10391            15 years old   Male               9th grade   1.65  40.82
## 10392            15 years old Female              10th grade   1.65  52.62
## 10393            16 years old Female              10th grade   1.65  61.24
## 10394            15 years old Female              10th grade   1.65  68.04
## 10395            16 years old   Male              10th grade   1.65  70.76
## 10396            16 years old Female              10th grade   1.65  71.67
## 10397            15 years old   Male              10th grade   1.65  49.90
## 10398            17 years old Female              11th grade   1.65  65.77
## 10399            16 years old   Male              11th grade   1.65  54.43
## 10400            17 years old Female              11th grade   1.65  61.24
## 10401            17 years old Female              11th grade   1.65  52.16
## 10402            17 years old Female              11th grade   1.65  63.50
## 10403   18 years old or older Female              12th grade   1.65  63.50
## 10404            17 years old Female              12th grade   1.65  65.77
## 10405            17 years old Female              12th grade   1.65  72.58
## 10406            17 years old   Male              12th grade   1.65  99.79
## 10407            16 years old Female              10th grade   1.65  74.84
## 10408            17 years old Female              11th grade   1.65  51.71
## 10409            14 years old Female               9th grade   1.65  65.77
## 10410            15 years old Female                    <NA>   1.65  72.58
## 10411            14 years old   Male               9th grade   1.65  66.68
## 10412            14 years old Female               9th grade   1.65  65.77
## 10413            14 years old Female               9th grade   1.65  79.38
## 10414            15 years old   Male               9th grade   1.65  68.04
## 10415            15 years old Female               9th grade   1.65  70.31
## 10416            14 years old Female                    <NA>   1.65  54.43
## 10417            15 years old   Male               9th grade   1.65  95.26
## 10418            14 years old   Male               9th grade   1.65  69.85
## 10419            15 years old Female              10th grade   1.65  69.40
## 10420            15 years old Female              10th grade   1.65  51.71
## 10421            16 years old Female              11th grade   1.65  77.11
## 10422            17 years old   Male              11th grade   1.65  56.25
## 10423            17 years old   Male              11th grade   1.65  54.89
## 10424            17 years old Female              11th grade   1.65  58.97
## 10425            17 years old Female              11th grade   1.65  90.72
## 10426            17 years old   Male              11th grade   1.65  52.16
## 10427            17 years old Female              12th grade   1.65 122.47
## 10428            17 years old Female              12th grade   1.65  58.97
## 10429            16 years old   Male                    <NA>   1.65  56.25
## 10430            15 years old Female               9th grade   1.65  58.51
## 10431            17 years old Female              11th grade   1.65  79.38
## 10432            16 years old Female              11th grade   1.65  77.11
## 10433            17 years old Female              12th grade   1.65  90.72
## 10434   18 years old or older Female              12th grade   1.65  52.16
## 10435            16 years old Female              11th grade   1.65  54.43
## 10436            17 years old Female              11th grade   1.65  52.16
## 10437            14 years old Female               9th grade   1.65  83.01
## 10438            17 years old Female              11th grade   1.65  81.65
## 10439            16 years old   Male              10th grade   1.65  94.35
## 10440            17 years old Female              12th grade   1.65  68.04
## 10441            16 years old Female              11th grade   1.65  54.43
## 10442            15 years old Female              10th grade   1.65  98.88
## 10443            15 years old Female              10th grade   1.65  53.07
## 10444            16 years old Female              10th grade   1.65  77.11
## 10445            16 years old   Male              11th grade   1.65  61.24
## 10446            15 years old Female              10th grade   1.65  60.78
## 10447            16 years old Female              10th grade   1.65  56.70
## 10448            16 years old Female              10th grade   1.65  52.16
## 10449            16 years old   Male              11th grade   1.65  56.70
## 10450            17 years old Female              11th grade   1.65  89.81
## 10451            16 years old Female              11th grade   1.65  54.43
## 10452            17 years old   Male              11th grade   1.65  56.70
## 10453            16 years old Female              11th grade   1.65  54.43
## 10454            16 years old Female              11th grade   1.65  76.20
## 10455            15 years old Female              10th grade   1.65  81.65
## 10456            15 years old   Male              10th grade   1.65  49.44
## 10457            16 years old   Male              11th grade   1.65  52.16
## 10458            15 years old Female              10th grade   1.65  65.77
## 10459            16 years old Female              11th grade   1.65  44.45
## 10460            14 years old Female               9th grade   1.65  72.58
## 10461            14 years old   Male               9th grade   1.65  74.84
## 10462            14 years old Female               9th grade   1.65  47.63
## 10463            16 years old Female              11th grade   1.65  72.58
## 10464            17 years old Female              12th grade   1.65  50.80
## 10465            17 years old Female              12th grade   1.65  99.79
## 10466            15 years old Female              10th grade   1.65  65.77
## 10467            15 years old Female              10th grade   1.65  68.04
## 10468            14 years old Female               9th grade   1.65  56.70
## 10469            16 years old Female              11th grade   1.65  74.84
## 10470            16 years old Female              11th grade   1.65  58.06
## 10471            16 years old Female              11th grade   1.65  68.04
## 10472            15 years old Female              10th grade   1.65  81.65
## 10473   18 years old or older   Male              12th grade   1.65  45.36
## 10474            17 years old Female              12th grade   1.65  42.18
## 10475            14 years old   Male               9th grade   1.65  54.43
## 10476            14 years old Female               9th grade   1.65  56.70
## 10477            14 years old Female               9th grade   1.65  48.08
## 10478            17 years old Female              11th grade   1.65  51.71
## 10479            16 years old Female              11th grade   1.65  74.84
## 10480            16 years old Female              11th grade   1.65  68.04
## 10481            17 years old Female              12th grade   1.65  92.99
## 10482            15 years old   Male              10th grade   1.65  49.90
## 10483            14 years old Female               9th grade   1.65  58.97
## 10484            14 years old Female               9th grade   1.65  72.58
## 10485            16 years old Female              11th grade   1.65  72.58
## 10486            15 years old   Male              10th grade   1.65  47.63
## 10487            15 years old   Male              10th grade   1.65  54.43
## 10488            15 years old Female              10th grade   1.65  58.97
## 10489            15 years old Female              10th grade   1.65  61.24
## 10490            17 years old Female              11th grade   1.65  63.50
## 10491            16 years old   Male              11th grade   1.65  56.70
## 10492            16 years old Female              11th grade   1.65 127.01
## 10493            16 years old Female              11th grade   1.65  77.11
## 10494            14 years old   Male               9th grade   1.65  58.97
## 10495            14 years old Female               9th grade   1.65  63.50
## 10496            15 years old Female              10th grade   1.65  61.24
## 10497            15 years old Female              10th grade   1.65  70.31
## 10498            15 years old   Male              10th grade   1.65  54.43
## 10499            17 years old Female              12th grade   1.65  60.33
## 10500            15 years old Female              10th grade   1.65  48.99
## 10501            16 years old   Male              11th grade   1.65  45.36
## 10502            15 years old Female              10th grade   1.65  49.44
## 10503            15 years old Female              10th grade   1.65  63.50
## 10504            15 years old   Male               9th grade   1.65  52.16
## 10505            14 years old Female               9th grade   1.65  56.70
## 10506            14 years old   Male               9th grade   1.65  47.63
## 10507            16 years old Female              11th grade   1.65  68.04
## 10508            15 years old Female              10th grade   1.65  53.52
## 10509            15 years old Female              10th grade   1.65  58.97
## 10510            15 years old   Male              10th grade   1.65  45.36
## 10511            15 years old Female              10th grade   1.65  90.72
## 10512            16 years old Female              11th grade   1.65  56.70
## 10513            15 years old   Male               9th grade   1.65  50.35
## 10514            14 years old Female               9th grade   1.65  65.77
## 10515            16 years old Female              11th grade   1.65  74.84
## 10516            17 years old Female              12th grade   1.65  68.04
## 10517            14 years old Female               9th grade   1.65  52.16
## 10518            14 years old Female               9th grade   1.65  52.16
## 10519            15 years old   Male               9th grade   1.65  49.90
## 10520            16 years old Female              11th grade   1.65  72.58
## 10521            17 years old   Male              12th grade   1.65  58.97
## 10522            14 years old   Male               9th grade   1.65  81.65
## 10523            15 years old Female               9th grade   1.65  58.97
## 10524            16 years old Female              10th grade   1.65  58.97
## 10525            16 years old Female              11th grade   1.65  70.31
## 10526            15 years old Female              10th grade   1.65  68.04
## 10527            16 years old Female              10th grade   1.65  61.24
## 10528            15 years old   Male              10th grade   1.65  58.06
## 10529            15 years old Female              10th grade   1.65  50.80
## 10530            15 years old Female              10th grade   1.65  55.79
## 10531            14 years old Female               9th grade   1.65  48.08
## 10532            14 years old   Male               9th grade   1.65  53.98
## 10533            15 years old   Male              10th grade   1.65  54.43
## 10534            16 years old Female              11th grade   1.65  99.79
## 10535            17 years old Female              12th grade   1.65  63.50
## 10536            17 years old Female              12th grade   1.65  58.97
## 10537            16 years old Female              11th grade   1.65  58.97
## 10538            17 years old   Male              12th grade   1.65  79.38
## 10539            15 years old Female              10th grade   1.65  58.97
## 10540            15 years old Female              10th grade   1.65  63.50
## 10541            15 years old Female              10th grade   1.65  70.31
## 10542            15 years old Female              10th grade   1.65  52.16
## 10543            16 years old Female              11th grade   1.65  56.70
## 10544            16 years old   Male              11th grade   1.65  61.24
## 10545            16 years old Female              11th grade   1.65  58.97
## 10546            17 years old Female              12th grade   1.65  68.04
## 10547            16 years old Female              11th grade   1.65  65.77
## 10548            17 years old Female              12th grade   1.65  49.90
## 10549            17 years old Female              12th grade   1.65  74.84
## 10550            15 years old Female              10th grade   1.65  61.24
## 10551            14 years old   Male               9th grade   1.65  52.16
## 10552            15 years old Female              10th grade   1.65  53.52
## 10553            14 years old Female               9th grade   1.65  54.43
## 10554            14 years old   Male               9th grade   1.65  49.90
## 10555            17 years old   Male              12th grade   1.65  61.24
## 10556            17 years old Female              11th grade   1.65  58.97
## 10557            14 years old   Male               9th grade   1.65  52.62
## 10558            14 years old   Male               9th grade   1.65  45.36
## 10559            15 years old   Male               9th grade   1.65  74.39
## 10560            16 years old Female              10th grade   1.65  58.97
## 10561            16 years old Female              11th grade   1.65  50.80
## 10562            14 years old   Male               9th grade   1.65  63.50
## 10563            16 years old Female              10th grade   1.65  58.97
## 10564            17 years old Female              12th grade   1.65  56.70
## 10565            16 years old Female              11th grade   1.65  65.32
## 10566            16 years old Female              11th grade   1.65  54.43
## 10567            16 years old   Male              11th grade   1.65  64.41
## 10568            16 years old   Male              10th grade   1.65  74.84
## 10569            16 years old   Male              10th grade   1.65  58.06
## 10570            16 years old Female              10th grade   1.65  72.58
## 10571            15 years old   Male              10th grade   1.65  50.35
## 10572            15 years old   Male              10th grade   1.65  58.97
## 10573            15 years old Female              10th grade   1.65  86.18
## 10574            16 years old Female              10th grade   1.65  96.16
## 10575            16 years old Female              10th grade   1.65 102.51
## 10576            15 years old Female              10th grade   1.65  90.72
## 10577            16 years old Female              11th grade   1.65  86.18
## 10578            16 years old Female              12th grade   1.65  59.88
## 10579   18 years old or older Female              12th grade   1.65  56.70
## 10580            16 years old Female              10th grade   1.65  74.39
## 10581            16 years old Female              10th grade   1.65  60.78
## 10582            14 years old   Male               9th grade   1.65  53.52
## 10583            15 years old Female               9th grade   1.65  65.77
## 10584            15 years old   Male               9th grade   1.65  50.80
## 10585            14 years old Female               9th grade   1.65  59.88
## 10586            17 years old Female              11th grade   1.65  92.53
## 10587            16 years old Female              11th grade   1.65  56.70
## 10588            16 years old Female              11th grade   1.65  63.50
## 10589            16 years old Female              10th grade   1.65  54.43
## 10590            15 years old   Male               9th grade   1.65  55.79
## 10591            17 years old   Male              11th grade   1.65  57.61
## 10592            16 years old Female              10th grade   1.65  52.16
## 10593            15 years old Female              10th grade   1.65  58.51
## 10594            16 years old   Male              10th grade   1.65  53.07
## 10595            17 years old Female              11th grade   1.65  74.84
## 10596            15 years old Female              10th grade   1.65  53.07
## 10597            16 years old Female              10th grade   1.65  49.90
## 10598            17 years old Female              11th grade   1.65  53.52
## 10599            17 years old Female              11th grade   1.65  77.11
## 10600   18 years old or older Female              12th grade   1.65  58.97
## 10601            15 years old Female               9th grade   1.65 106.60
## 10602   18 years old or older   Male              12th grade   1.65  56.70
## 10603            15 years old Female              10th grade   1.65  61.24
## 10604            15 years old Female              10th grade   1.65  63.50
## 10605            14 years old   Male               9th grade   1.65  61.24
## 10606   18 years old or older Female              12th grade   1.65  58.97
## 10607   18 years old or older Female              12th grade   1.65  56.70
## 10608            14 years old Female               9th grade   1.65  56.70
## 10609            15 years old Female               9th grade   1.65  61.24
## 10610            15 years old Female               9th grade   1.65  79.38
## 10611   18 years old or older Female              12th grade   1.65  49.90
## 10612            17 years old Female              11th grade   1.65  58.97
## 10613            17 years old Female              11th grade   1.65  70.31
## 10614            16 years old Female              11th grade   1.65  70.76
## 10615            16 years old Female              11th grade   1.65  49.90
## 10616            17 years old Female              11th grade   1.65  57.15
## 10617            16 years old   Male              11th grade   1.65  58.97
## 10618            16 years old Female              11th grade   1.65  63.50
## 10619            16 years old   Male              10th grade   1.65  48.99
## 10620            16 years old Female              10th grade   1.65  61.69
## 10621            16 years old   Male              10th grade   1.65  77.11
## 10622            14 years old Female               9th grade   1.65  54.43
## 10623            15 years old Female               9th grade   1.65  61.24
## 10624   18 years old or older Female              12th grade   1.65  90.72
## 10625            15 years old Female              10th grade   1.65  74.84
## 10626            17 years old Female              11th grade   1.65  47.63
## 10627            15 years old Female               9th grade   1.65  50.80
## 10628            16 years old Female              10th grade   1.65  69.85
## 10629            15 years old Female              10th grade   1.65  61.24
## 10630            16 years old Female              10th grade   1.65  57.61
## 10631            17 years old Female              11th grade   1.65  48.99
## 10632            17 years old Female              12th grade   1.65  77.11
## 10633            17 years old   Male              12th grade   1.65  49.90
## 10634            15 years old Female              10th grade   1.65  64.41
## 10635   18 years old or older   Male              12th grade   1.65  58.97
## 10636            17 years old Female              12th grade   1.65  63.50
## 10637            16 years old Female              11th grade   1.65  70.31
## 10638            15 years old Female              10th grade   1.65  56.25
## 10639            16 years old Female              11th grade   1.65  54.43
## 10640            15 years old Female              10th grade   1.65  68.04
## 10641            17 years old Female              12th grade   1.65  56.70
## 10642            16 years old Female              10th grade   1.65  90.72
## 10643            17 years old   Male              11th grade   1.65  89.81
## 10644   18 years old or older Female              12th grade   1.65  61.24
## 10645            16 years old Female              10th grade   1.65  68.04
## 10646   18 years old or older Female              12th grade   1.65  54.43
## 10647   18 years old or older Female              12th grade   1.65  61.24
## 10648            17 years old   Male              12th grade   1.65  54.43
## 10649   18 years old or older Female              12th grade   1.65  58.06
## 10650            17 years old Female              11th grade   1.65  72.58
## 10651            16 years old   Male              11th grade   1.65  79.38
## 10652            16 years old   Male              11th grade   1.65  81.65
## 10653            17 years old   Male              11th grade   1.65  78.02
## 10654            14 years old   Male               9th grade   1.65  54.43
## 10655            17 years old   Male              12th grade   1.65 117.94
## 10656            17 years old Female              12th grade   1.65  49.90
## 10657            16 years old Female              11th grade   1.65  72.58
## 10658   18 years old or older Female              12th grade   1.65  70.31
## 10659            16 years old   Male              10th grade   1.65  70.31
## 10660            15 years old Female               9th grade   1.65  49.90
## 10661            14 years old   Male               9th grade   1.65  49.90
## 10662            17 years old   Male              11th grade   1.65  91.63
## 10663            17 years old Female              12th grade   1.65  60.78
## 10664   18 years old or older Female              12th grade   1.65  56.70
## 10665   18 years old or older Female              12th grade   1.65  54.43
## 10666            15 years old Female              10th grade   1.65  48.08
## 10667            16 years old Female              10th grade   1.65  61.24
## 10668            16 years old Female              10th grade   1.65  88.00
## 10669            15 years old Female               9th grade   1.65  67.13
## 10670            16 years old Female              11th grade   1.65  55.34
## 10671            16 years old Female              10th grade   1.65  56.70
## 10672            16 years old   Male              10th grade   1.65  81.65
## 10673   18 years old or older Female              12th grade   1.65  54.43
## 10674            17 years old   Male              12th grade   1.65  90.72
## 10675            17 years old Female              11th grade   1.65  52.16
## 10676            17 years old Female              12th grade   1.65  58.06
## 10677            17 years old Female              11th grade   1.65  99.79
## 10678            16 years old Female              11th grade   1.65  63.50
## 10679            14 years old Female               9th grade   1.65  97.52
## 10680            17 years old Female              12th grade   1.65  50.80
## 10681            16 years old   Male              10th grade   1.65  67.59
## 10682            15 years old Female               9th grade   1.65  54.43
## 10683            14 years old   Male               9th grade   1.65  52.16
## 10684            17 years old Female              11th grade   1.65  58.97
## 10685            14 years old Female               9th grade   1.65  61.24
## 10686            15 years old   Male              10th grade   1.65  66.68
## 10687            15 years old Female              10th grade   1.65  63.96
## 10688            14 years old   Male               9th grade   1.65  86.18
## 10689            16 years old Female              10th grade   1.65  72.58
## 10690            15 years old Female              10th grade   1.65  56.70
## 10691   18 years old or older Female              12th grade   1.65  47.63
## 10692            17 years old Female              12th grade   1.65  49.90
## 10693            16 years old Female              11th grade   1.65  57.61
## 10694            16 years old Female              11th grade   1.65  61.24
## 10695            14 years old Female               9th grade   1.65  54.43
## 10696            16 years old Female              10th grade   1.65  53.98
## 10697            15 years old Female               9th grade   1.65  58.97
## 10698            15 years old   Male               9th grade   1.65  54.43
## 10699            14 years old   Male               9th grade   1.65  51.26
## 10700            16 years old Female              11th grade   1.65  69.40
## 10701            15 years old Female               9th grade   1.65  88.91
## 10702            16 years old Female              11th grade   1.65  77.11
## 10703            15 years old Female              10th grade   1.65  63.50
## 10704            16 years old Female              10th grade   1.65  62.14
## 10705            17 years old Female              11th grade   1.65  63.50
## 10706            14 years old   Male               9th grade   1.65  68.04
## 10707            14 years old Female               9th grade   1.65  50.35
## 10708            14 years old Female               9th grade   1.65  68.04
## 10709            17 years old Female              11th grade   1.65  54.43
## 10710            14 years old   Male               9th grade   1.65  56.70
## 10711            15 years old Female              10th grade   1.65  50.35
## 10712            14 years old   Male               9th grade   1.65  58.06
## 10713            15 years old Female              10th grade   1.65  54.43
## 10714            15 years old   Male               9th grade   1.65  70.31
## 10715            16 years old Female              11th grade   1.65  97.07
## 10716            15 years old   Male              10th grade   1.65  40.82
## 10717            16 years old Female              11th grade   1.65  81.65
## 10718            17 years old   Male              11th grade   1.65  54.43
## 10719            15 years old Female              10th grade   1.65  48.99
## 10720            17 years old Female              11th grade   1.65  51.26
## 10721            14 years old Female               9th grade   1.65  63.05
## 10722            14 years old   Male               9th grade   1.65  61.24
## 10723            15 years old   Male               9th grade   1.65  40.82
## 10724            14 years old   Male               9th grade   1.65  52.16
## 10725            15 years old   Male              10th grade   1.65  61.24
## 10726   18 years old or older Female              12th grade   1.65  53.52
## 10727            15 years old Female               9th grade   1.65  48.54
## 10728            15 years old   Male               9th grade   1.65  57.61
## 10729   18 years old or older   Male              12th grade   1.65  79.38
## 10730            15 years old Female               9th grade   1.65  57.61
## 10731            15 years old Female               9th grade   1.65  54.43
## 10732            15 years old   Male               9th grade   1.65  72.58
## 10733            15 years old Female               9th grade   1.65  72.58
## 10734            17 years old Female              11th grade   1.65  49.44
## 10735            17 years old   Male              11th grade   1.65  70.31
## 10736            15 years old Female               9th grade   1.65  48.08
## 10737            17 years old Female              11th grade   1.65  65.77
## 10738            15 years old   Male               9th grade   1.65  59.42
## 10739            14 years old Female               9th grade   1.65  61.69
## 10740            14 years old   Male               9th grade   1.65  58.06
## 10741            15 years old   Male              10th grade   1.65  51.71
## 10742            17 years old   Male              12th grade   1.65  62.14
## 10743   18 years old or older Female              12th grade   1.65  68.04
## 10744   18 years old or older Female              12th grade   1.65  65.77
## 10745            16 years old Female              10th grade   1.65  56.70
## 10746            14 years old   Male               9th grade   1.65  61.24
## 10747            15 years old Female               9th grade   1.65  77.11
## 10748            16 years old Female              10th grade   1.65  49.90
## 10749            16 years old Female              11th grade   1.65  52.16
## 10750            15 years old Female              10th grade   1.65  68.04
## 10751            15 years old Female               9th grade   1.65  54.43
## 10752            16 years old Female              11th grade   1.65  51.26
## 10753            14 years old Female               9th grade   1.65  54.43
## 10754            15 years old Female               9th grade   1.65  47.17
## 10755            15 years old Female               9th grade   1.65  58.97
## 10756            17 years old Female              11th grade   1.65  52.16
## 10757            16 years old Female              10th grade   1.65  95.26
## 10758            15 years old Female               9th grade   1.65  48.54
## 10759            15 years old Female               9th grade   1.65  58.97
## 10760   18 years old or older Female              12th grade   1.65  54.43
## 10761            17 years old   Male              11th grade   1.65  59.88
## 10762            15 years old Female               9th grade   1.65  58.97
## 10763            16 years old   Male              11th grade   1.65  60.78
## 10764            17 years old Female              11th grade   1.65  55.79
## 10765            17 years old Female              11th grade   1.65  56.70
## 10766            16 years old Female              10th grade   1.65  68.04
## 10767            17 years old Female              11th grade   1.65  65.77
## 10768            15 years old   Male              10th grade   1.65  65.77
## 10769            15 years old Female              10th grade   1.65  58.97
## 10770            15 years old   Male              10th grade   1.65  44.45
## 10771            16 years old Female              10th grade   1.65  58.97
## 10772            15 years old   Male               9th grade   1.65  55.79
## 10773            15 years old Female               9th grade   1.65  52.16
## 10774            17 years old Female              11th grade   1.65  96.16
## 10775            16 years old Female              11th grade   1.65  57.61
## 10776            16 years old Female              10th grade   1.65  84.82
## 10777            15 years old Female              10th grade   1.65  72.58
## 10778            17 years old Female              11th grade   1.65  77.11
## 10779            14 years old Female               9th grade   1.65  57.15
## 10780            16 years old Female              10th grade   1.65  73.94
## 10781            17 years old   Male              11th grade   1.65  68.04
## 10782            16 years old   Male              10th grade   1.65  66.23
## 10783            15 years old Female               9th grade   1.65  49.90
## 10784            15 years old   Male               9th grade   1.65  61.69
## 10785            14 years old Female               9th grade   1.65  56.70
## 10786            15 years old   Male               9th grade   1.65  77.11
## 10787            14 years old   Male               9th grade   1.65  56.70
## 10788            14 years old Female               9th grade   1.65  54.43
## 10789            15 years old   Male               9th grade   1.65  68.95
## 10790            15 years old   Male               9th grade   1.65  51.26
## 10791            14 years old   Male               9th grade   1.65  56.70
## 10792            15 years old   Male               9th grade   1.65  52.62
## 10793            15 years old Female               9th grade   1.65  47.63
## 10794            15 years old Female               9th grade   1.65  65.77
## 10795            15 years old   Male               9th grade   1.65  47.63
## 10796            15 years old Female               9th grade   1.65  68.04
## 10797            14 years old   Male               9th grade   1.65  49.90
## 10798            15 years old   Male               9th grade   1.65  54.43
## 10799            15 years old   Male               9th grade   1.65  47.63
## 10800            15 years old Female               9th grade   1.65  47.17
## 10801            15 years old Female               9th grade   1.65  49.90
## 10802            15 years old   Male               9th grade   1.65  45.36
## 10803            14 years old Female               9th grade   1.65  73.94
## 10804            17 years old Female              11th grade   1.63  53.07
## 10805   18 years old or older Female              11th grade   1.63 136.08
## 10806            17 years old Female              11th grade   1.63  59.88
## 10807            17 years old Female              12th grade   1.63  53.07
## 10808            17 years old Female              11th grade   1.63  57.15
## 10809            14 years old   Male               9th grade   1.63  56.70
## 10810            15 years old Female               9th grade   1.63  53.52
## 10811            14 years old Female               9th grade   1.63  54.43
## 10812            16 years old Female              10th grade   1.63  74.84
## 10813            16 years old Female              10th grade   1.63  72.58
## 10814            16 years old Female              11th grade   1.63  58.97
## 10815            15 years old Female               9th grade   1.63  62.60
## 10816            15 years old Female              10th grade   1.63  68.04
## 10817            16 years old Female              10th grade   1.63  47.17
## 10818            16 years old Female              10th grade   1.63  77.11
## 10819            17 years old Female              11th grade   1.63  86.18
## 10820            15 years old Female               9th grade   1.63  58.97
## 10821            17 years old Female              11th grade   1.63 107.05
## 10822            15 years old Female               9th grade   1.63  52.16
## 10823            16 years old Female              10th grade   1.63  49.90
## 10824   18 years old or older Female              12th grade   1.63  58.97
## 10825            14 years old Female               9th grade   1.63  61.24
## 10826            15 years old Female              10th grade   1.63  72.58
## 10827            15 years old Female               9th grade   1.63  54.89
## 10828            17 years old   Male              10th grade   1.63  66.68
## 10829   18 years old or older Female              12th grade   1.63  49.90
## 10830            17 years old Female              12th grade   1.63  63.05
## 10831            14 years old Female               9th grade   1.63  67.59
## 10832            14 years old Female               9th grade   1.63  52.16
## 10833            16 years old Female               9th grade   1.63  58.97
## 10834            15 years old Female              10th grade   1.63  52.16
## 10835            15 years old Female               9th grade   1.63  45.36
## 10836            16 years old Female              10th grade   1.63  56.70
## 10837            15 years old Female              10th grade   1.63  48.54
## 10838            15 years old   Male              10th grade   1.63  58.06
## 10839            16 years old Female              10th grade   1.63  58.97
## 10840            14 years old   Male               9th grade   1.63  52.16
## 10841            15 years old Female              10th grade   1.63  77.11
## 10842            17 years old Female              11th grade   1.63  61.24
## 10843            14 years old Female               9th grade   1.63  81.65
## 10844            15 years old Female              10th grade   1.63  96.62
## 10845            16 years old Female              10th grade   1.63  81.65
## 10846            15 years old Female              10th grade   1.63  53.52
## 10847            15 years old Female              10th grade   1.63  65.77
## 10848            17 years old Female              12th grade   1.63  58.97
## 10849   18 years old or older Female              12th grade   1.63  52.16
## 10850            17 years old Female              11th grade   1.63  95.26
## 10851            15 years old Female               9th grade   1.63  63.50
## 10852            14 years old Female               9th grade   1.63  70.31
## 10853            15 years old   Male              10th grade   1.63  58.97
## 10854            15 years old Female              10th grade   1.63  50.35
## 10855            15 years old Female               9th grade   1.63  52.16
## 10856            16 years old Female              11th grade   1.63  49.90
## 10857            16 years old Female              11th grade   1.63  49.90
## 10858            15 years old Female              10th grade   1.63  52.16
## 10859            15 years old Female               9th grade   1.63  68.95
## 10860            15 years old Female               9th grade   1.63  47.63
## 10861            16 years old Female              11th grade   1.63  65.77
## 10862            15 years old Female              10th grade   1.63  68.04
## 10863            16 years old Female              11th grade   1.63  63.50
## 10864            15 years old Female               9th grade   1.63  52.16
## 10865            15 years old   Male              10th grade   1.63  52.16
## 10866            15 years old Female              10th grade   1.63  81.65
## 10867            15 years old Female               9th grade   1.63  61.24
## 10868            16 years old Female              11th grade   1.63  56.70
## 10869            17 years old Female              12th grade   1.63  63.50
## 10870   18 years old or older Female              12th grade   1.63 102.06
## 10871            17 years old Female              12th grade   1.63  70.76
## 10872   18 years old or older Female              12th grade   1.63  63.50
## 10873            17 years old Female              12th grade   1.63  74.84
## 10874            17 years old Female              12th grade   1.63  63.50
## 10875            17 years old Female              12th grade   1.63  57.61
## 10876            17 years old Female              12th grade   1.63  63.50
## 10877            15 years old Female               9th grade   1.63  64.86
## 10878            15 years old Female              10th grade   1.63  90.72
## 10879            15 years old Female              10th grade   1.63  69.40
## 10880            16 years old Female              10th grade   1.63  61.24
## 10881            16 years old Female              11th grade   1.63  58.51
## 10882   18 years old or older   Male              12th grade   1.63  49.90
## 10883            15 years old Female              10th grade   1.63  62.60
## 10884            15 years old Female              10th grade   1.63  54.89
## 10885            16 years old   Male              11th grade   1.63  65.32
## 10886            15 years old Female               9th grade   1.63  44.45
## 10887            17 years old Female              12th grade   1.63  56.70
## 10888            17 years old Female              12th grade   1.63  54.43
## 10889            16 years old Female              11th grade   1.63  54.43
## 10890            15 years old   Male              10th grade   1.63  81.65
## 10891            16 years old Female              11th grade   1.63  66.68
## 10892            15 years old   Male              10th grade   1.63  52.16
## 10893            15 years old Female               9th grade   1.63  52.16
## 10894            15 years old   Male              10th grade   1.63  45.81
## 10895            14 years old   Male               9th grade   1.63  43.09
## 10896            14 years old Female               9th grade   1.63  52.16
## 10897            17 years old Female              12th grade   1.63  90.72
## 10898            17 years old Female              12th grade   1.63  62.60
## 10899   18 years old or older Female              12th grade   1.63  53.52
## 10900            16 years old Female              10th grade   1.63  58.97
## 10901            15 years old   Male               9th grade   1.63  61.24
## 10902            14 years old   Male               9th grade   1.63  58.97
## 10903            17 years old   Male              11th grade   1.63  45.36
## 10904            17 years old Female              12th grade   1.63  53.52
## 10905            15 years old   Male               9th grade   1.63  63.50
## 10906            15 years old Female              10th grade   1.63  49.90
## 10907            16 years old   Male              10th grade   1.63  51.26
## 10908            17 years old Female              11th grade   1.63  52.16
## 10909            15 years old   Male               9th grade   1.63  54.43
## 10910            14 years old Female               9th grade   1.63  48.54
## 10911            17 years old Female              12th grade   1.63  49.44
## 10912            17 years old Female              12th grade   1.63  63.50
## 10913            17 years old Female              12th grade   1.63  52.16
## 10914            17 years old Female              12th grade   1.63  49.90
## 10915            17 years old   Male              10th grade   1.63  54.43
## 10916            15 years old Female               9th grade   1.63  49.90
## 10917            15 years old Female               9th grade   1.63  68.04
## 10918            14 years old Female               9th grade   1.63  57.15
## 10919            14 years old Female               9th grade   1.63  90.72
## 10920            16 years old Female              10th grade   1.63  56.70
## 10921            16 years old Female              10th grade   1.63  53.07
## 10922            15 years old Female              10th grade   1.63  53.07
## 10923            15 years old Female              10th grade   1.63  45.36
## 10924            16 years old Female              11th grade   1.63  54.43
## 10925            15 years old Female              10th grade   1.63  52.16
## 10926            14 years old   Male               9th grade   1.63  59.42
## 10927            14 years old Female               9th grade   1.63  58.97
## 10928            14 years old   Male               9th grade   1.63  54.43
## 10929            15 years old   Male               9th grade   1.63  58.97
## 10930            15 years old Female              10th grade   1.63  47.63
## 10931            15 years old Female              10th grade   1.63  34.93
## 10932            16 years old Female              10th grade   1.63  54.43
## 10933            16 years old   Male              10th grade   1.63  72.58
## 10934            14 years old Female               9th grade   1.63  52.16
## 10935            15 years old Female              10th grade   1.63  54.43
## 10936            16 years old Female              10th grade   1.63  49.90
## 10937            14 years old Female               9th grade   1.63  67.59
## 10938            17 years old   Male              11th grade   1.63  65.77
## 10939            16 years old Female              10th grade   1.63  68.04
## 10940            15 years old Female              10th grade   1.63  43.09
## 10941            17 years old Female              11th grade   1.63  58.97
## 10942            14 years old   Male               9th grade   1.63  72.58
## 10943            15 years old Female              10th grade   1.63  65.77
## 10944            17 years old Female              12th grade   1.63  61.24
## 10945            17 years old Female              11th grade   1.63  72.58
## 10946            17 years old   Male              11th grade   1.63  56.70
## 10947   18 years old or older Female              12th grade   1.63  81.65
## 10948            15 years old Female               9th grade   1.63  54.43
## 10949   18 years old or older Female              12th grade   1.63 124.29
## 10950            15 years old Female              10th grade   1.63  53.52
## 10951            17 years old Female              12th grade   1.63  53.07
## 10952            17 years old Female              12th grade   1.63  52.16
## 10953            16 years old   Male              10th grade   1.63  54.43
## 10954            16 years old Female              10th grade   1.63  77.11
## 10955            15 years old Female               9th grade   1.63  61.24
## 10956            16 years old   Male              10th grade   1.63  54.43
## 10957            17 years old Female              11th grade   1.63  58.97
## 10958            14 years old Female               9th grade   1.63  61.69
## 10959            15 years old Female               9th grade   1.63  55.34
## 10960            16 years old Female              10th grade   1.63  54.43
## 10961            17 years old Female              11th grade   1.63  58.06
## 10962            17 years old Female              11th grade   1.63  52.16
## 10963            14 years old Female               9th grade   1.63  49.90
## 10964            15 years old Female               9th grade   1.63  71.67
## 10965            16 years old Female              10th grade   1.63  54.43
## 10966            15 years old Female              10th grade   1.63  44.45
## 10967            15 years old Female              10th grade   1.63  58.51
## 10968            14 years old Female               9th grade   1.63  61.69
## 10969            15 years old Female               9th grade   1.63  56.70
## 10970            17 years old Female              11th grade   1.63  62.60
## 10971            16 years old Female              11th grade   1.63  65.77
## 10972            17 years old Female              12th grade   1.63  72.58
## 10973            15 years old Female               9th grade   1.63  58.97
## 10974            14 years old Female               9th grade   1.63  99.79
## 10975            15 years old Female              10th grade   1.63  54.43
## 10976            14 years old   Male               9th grade   1.63  49.90
## 10977   18 years old or older Female              12th grade   1.63  68.04
## 10978            16 years old   Male              11th grade   1.63  49.90
## 10979            14 years old Female               9th grade   1.63  43.09
## 10980            17 years old Female              12th grade   1.63  55.34
## 10981   18 years old or older Female              12th grade   1.63  58.97
## 10982            17 years old Female              11th grade   1.63  63.50
## 10983   18 years old or older Female              12th grade   1.63  93.90
## 10984            17 years old Female              11th grade   1.63  49.90
## 10985   18 years old or older Female              12th grade   1.63  77.11
## 10986            17 years old Female              12th grade   1.63  72.58
## 10987            17 years old Female              12th grade   1.63  52.16
## 10988            16 years old Female              10th grade   1.63  48.08
## 10989            17 years old Female              12th grade   1.63  65.77
## 10990            17 years old Female              12th grade   1.63  59.88
## 10991            14 years old Female               9th grade   1.63  68.04
## 10992   18 years old or older Female              12th grade   1.63  58.06
## 10993            14 years old Female               9th grade   1.63  48.08
## 10994            14 years old   Male               9th grade   1.63  81.19
## 10995            15 years old Female              10th grade   1.63  58.97
## 10996            16 years old Female              11th grade   1.63  63.50
## 10997            14 years old Female               9th grade   1.63  82.56
## 10998            14 years old Female               9th grade   1.63  82.56
## 10999            16 years old   Male              10th grade   1.63  61.69
## 11000            16 years old Female              10th grade   1.63  58.97
## 11001            15 years old Female               9th grade   1.63  52.16
## 11002            16 years old Female              11th grade   1.63  51.71
## 11003            16 years old Female              11th grade   1.63  73.94
## 11004            14 years old   Male               9th grade   1.63 101.15
## 11005            16 years old   Male              10th grade   1.63  54.43
## 11006   18 years old or older Female              12th grade   1.63  58.97
## 11007            14 years old Female               9th grade   1.63  65.77
## 11008            17 years old Female              12th grade   1.63  58.97
## 11009            17 years old Female              12th grade   1.63  59.42
## 11010            17 years old Female              12th grade   1.63  72.58
## 11011            17 years old Female              12th grade   1.63  77.11
## 11012            17 years old Female              12th grade   1.63  56.70
## 11013   18 years old or older Female              12th grade   1.63  54.43
## 11014            14 years old   Male               9th grade   1.63  48.54
## 11015            15 years old Female               9th grade   1.63  51.71
## 11016            16 years old Female              10th grade   1.63  62.60
## 11017            16 years old Female              11th grade   1.63  48.99
## 11018            17 years old Female              11th grade   1.63  44.91
## 11019            16 years old Female              10th grade   1.63 104.33
## 11020            16 years old Female              11th grade   1.63 117.94
## 11021            15 years old Female               9th grade   1.63  60.33
## 11022            16 years old Female              11th grade   1.63  56.70
## 11023   18 years old or older Female              12th grade   1.63  61.24
## 11024            17 years old Female              11th grade   1.63  83.92
## 11025            17 years old Female              10th grade   1.63  72.58
## 11026            16 years old Female              10th grade   1.63  90.72
## 11027            17 years old Female              11th grade   1.63  67.59
## 11028            15 years old Female               9th grade   1.63  48.99
## 11029            17 years old Female              11th grade   1.63  74.84
## 11030            17 years old Female              12th grade   1.63  52.16
## 11031   18 years old or older Female              12th grade   1.63  78.93
## 11032            16 years old Female              10th grade   1.63  58.97
## 11033            17 years old Female              12th grade   1.63  53.07
## 11034            14 years old Female               9th grade   1.63  68.04
## 11035            16 years old Female              10th grade   1.63  83.01
## 11036   18 years old or older Female              12th grade   1.63  58.97
## 11037            16 years old Female              10th grade   1.63  56.70
## 11038            14 years old Female               9th grade   1.63  58.97
## 11039            15 years old   Male               9th grade   1.63  45.81
## 11040            15 years old Female               9th grade   1.63  54.43
## 11041            14 years old Female               9th grade   1.63  59.88
## 11042            15 years old Female              10th grade   1.63  61.24
## 11043            15 years old Female               9th grade   1.63  43.55
## 11044            14 years old Female               9th grade   1.63  48.08
## 11045            15 years old Female              10th grade   1.63  50.80
## 11046            15 years old   Male               9th grade   1.63  43.09
## 11047            15 years old Female              10th grade   1.63  58.97
## 11048            14 years old   Male               9th grade   1.63  65.77
## 11049            15 years old Female               9th grade   1.63  52.16
## 11050   18 years old or older Female              12th grade   1.63  56.70
## 11051            16 years old Female              11th grade   1.63  65.77
## 11052   18 years old or older Female              12th grade   1.63  60.33
## 11053            16 years old Female              11th grade   1.63  56.70
## 11054            16 years old Female              10th grade   1.63  90.72
## 11055   18 years old or older Female              12th grade   1.63  90.72
## 11056            16 years old   Male              10th grade   1.63  65.77
## 11057            17 years old Female              11th grade   1.63  49.90
## 11058   18 years old or older Female              12th grade   1.63  68.04
## 11059            16 years old Female              11th grade   1.63  49.44
## 11060            15 years old Female               9th grade   1.63  68.04
## 11061            16 years old Female              10th grade   1.63  54.43
## 11062            15 years old Female              10th grade   1.63  70.31
## 11063            15 years old Female              10th grade   1.63  54.43
## 11064   18 years old or older Female              12th grade   1.63  77.11
## 11065   18 years old or older   Male              12th grade   1.63  63.96
## 11066            14 years old Female               9th grade   1.63  56.70
## 11067            14 years old   Male               9th grade   1.63  44.45
## 11068            14 years old Female               9th grade   1.63  45.36
## 11069            15 years old   Male               9th grade   1.63  56.70
## 11070            14 years old Female               9th grade   1.63  51.71
## 11071            14 years old Female               9th grade   1.63  54.43
## 11072            16 years old   Male              11th grade   1.63  52.16
## 11073            17 years old Female              12th grade   1.63  54.43
## 11074            17 years old Female              11th grade   1.63  52.16
## 11075   18 years old or older Female              12th grade   1.63  61.24
## 11076            16 years old Female              10th grade   1.63  58.97
## 11077            16 years old Female              10th grade   1.63  56.70
## 11078            17 years old Female              11th grade   1.63  54.43
## 11079            17 years old Female              12th grade   1.63  52.16
## 11080            14 years old   Male               9th grade   1.63  64.41
## 11081            17 years old Female              12th grade   1.63  53.52
## 11082            17 years old Female              11th grade   1.63  54.43
## 11083            16 years old Female              11th grade   1.63  66.23
## 11084   18 years old or older   Male              12th grade   1.63  52.16
## 11085   18 years old or older Female              12th grade   1.63  90.72
## 11086            15 years old Female              10th grade   1.63  72.58
## 11087   18 years old or older Female              12th grade   1.63  52.16
## 11088            17 years old Female              11th grade   1.63  58.97
## 11089            15 years old Female              10th grade   1.63  52.16
## 11090   18 years old or older Female              12th grade   1.63  49.90
## 11091   18 years old or older Female              12th grade   1.63  77.11
## 11092            17 years old Female              12th grade   1.63  56.70
## 11093            17 years old Female              11th grade   1.63  58.97
## 11094            15 years old Female              10th grade   1.63  52.16
## 11095            16 years old Female              10th grade   1.63  65.77
## 11096            16 years old   Male               9th grade   1.63  54.43
## 11097            14 years old   Male               9th grade   1.63  58.97
## 11098   18 years old or older Female              12th grade   1.63  53.98
## 11099   18 years old or older   Male              12th grade   1.63  68.04
## 11100            16 years old Female              10th grade   1.63  81.65
## 11101   18 years old or older Female              12th grade   1.63  64.86
## 11102            15 years old   Male              10th grade   1.63 106.60
## 11103            16 years old Female              10th grade   1.63  54.43
## 11104            14 years old Female               9th grade   1.63  77.11
## 11105            17 years old Female              11th grade   1.63  56.70
## 11106            15 years old Female              12th grade   1.63  50.80
## 11107            17 years old Female              12th grade   1.63  75.75
## 11108            17 years old Female              11th grade   1.63  51.71
## 11109            17 years old Female              12th grade   1.63  75.75
## 11110            14 years old Female               9th grade   1.63  58.97
## 11111            17 years old Female              12th grade   1.63  52.16
## 11112            15 years old Female              10th grade   1.63  56.25
## 11113            15 years old Female               9th grade   1.63  44.91
## 11114            15 years old Female               9th grade   1.63  46.27
## 11115            14 years old Female               9th grade   1.63  77.57
## 11116            15 years old   Male               9th grade   1.63  61.69
## 11117            14 years old Female               9th grade   1.63  56.70
## 11118            15 years old Female               9th grade   1.63  79.38
## 11119            15 years old Female              10th grade   1.63  63.50
## 11120            17 years old Female              12th grade   1.63  83.92
## 11121   18 years old or older Female              12th grade   1.63  71.67
## 11122            17 years old Female              12th grade   1.63  61.24
## 11123            15 years old Female               9th grade   1.63  55.79
## 11124            16 years old Female              11th grade   1.63  61.24
## 11125            15 years old   Male               9th grade   1.63  54.89
## 11126            15 years old Female               9th grade   1.63  43.09
## 11127            16 years old Female              10th grade   1.63  54.43
## 11128   18 years old or older Female              12th grade   1.63  63.50
## 11129   18 years old or older   Male              11th grade   1.63  99.79
## 11130            14 years old Female               9th grade   1.63  95.26
## 11131            14 years old Female               9th grade   1.63  45.36
## 11132            15 years old Female              10th grade   1.63  57.15
## 11133            16 years old Female              11th grade   1.63  68.04
## 11134            16 years old   Male               9th grade   1.63  51.26
## 11135            15 years old Female              10th grade   1.63  98.43
## 11136   18 years old or older Female              12th grade   1.63  58.06
## 11137            17 years old Female              11th grade   1.63  46.72
## 11138            16 years old Female              10th grade   1.63  52.16
## 11139            17 years old Female              12th grade   1.63  56.70
## 11140            14 years old Female               9th grade   1.63  60.78
## 11141   18 years old or older Female              12th grade   1.63  61.24
## 11142            17 years old Female              12th grade   1.63  62.60
## 11143            14 years old Female               9th grade   1.63  58.06
## 11144   18 years old or older Female              12th grade   1.63  58.51
## 11145            14 years old Female               9th grade   1.63  56.70
## 11146            16 years old Female              11th grade   1.63  86.18
## 11147            17 years old   Male              11th grade   1.63  49.90
## 11148            15 years old   Male              10th grade   1.63  53.98
## 11149            16 years old Female              11th grade   1.63  53.98
## 11150            15 years old Female               9th grade   1.63  44.00
## 11151            16 years old Female              10th grade   1.63  47.63
## 11152            14 years old Female               9th grade   1.63  61.24
## 11153            16 years old Female              10th grade   1.63  93.44
## 11154            15 years old Female               9th grade   1.63  54.43
## 11155   18 years old or older Female              12th grade   1.63  63.50
## 11156            15 years old Female              10th grade   1.63  49.90
## 11157            14 years old Female               9th grade   1.63  56.70
## 11158            16 years old Female              10th grade   1.63  46.27
## 11159            15 years old Female               9th grade   1.63  56.70
## 11160            17 years old Female              11th grade   1.63  57.61
## 11161            16 years old Female              10th grade   1.63  49.90
## 11162            15 years old Female              10th grade   1.63  63.50
## 11163            16 years old Female              11th grade   1.63  54.43
## 11164            16 years old Female              11th grade   1.63  87.54
## 11165   18 years old or older Female              12th grade   1.63  63.50
## 11166            17 years old Female              11th grade   1.63  49.90
## 11167            17 years old Female              12th grade   1.63  56.70
## 11168            17 years old Female              12th grade   1.63  52.16
## 11169            15 years old Female               9th grade   1.63  99.79
## 11170            15 years old Female               9th grade   1.63  89.81
## 11171            15 years old   Male               9th grade   1.63  52.16
## 11172            16 years old Female              10th grade   1.63 104.33
## 11173            14 years old   Male               9th grade   1.63  56.70
## 11174            16 years old Female              10th grade   1.63  49.90
## 11175   18 years old or older Female              12th grade   1.63  81.65
## 11176   18 years old or older   Male              12th grade   1.63 103.42
## 11177   18 years old or older   Male              12th grade   1.63  98.43
## 11178   18 years old or older Female              12th grade   1.63  98.88
## 11179   18 years old or older Female              12th grade   1.63  43.09
## 11180            16 years old Female              11th grade   1.63  61.24
## 11181            16 years old Female              11th grade   1.63  68.04
## 11182            16 years old Female              11th grade   1.63  90.72
## 11183            16 years old   Male              10th grade   1.63  49.90
## 11184            15 years old Female              10th grade   1.63  45.36
## 11185            17 years old Female              11th grade   1.63  52.16
## 11186            14 years old Female               9th grade   1.63  49.90
## 11187            15 years old Female               9th grade   1.63  56.70
## 11188            14 years old   Male               9th grade   1.63  63.50
## 11189            17 years old Female              11th grade   1.63  52.16
## 11190            14 years old Female               9th grade   1.63  51.26
## 11191            16 years old Female              11th grade   1.63  63.50
## 11192            15 years old Female              10th grade   1.63  63.50
## 11193            15 years old Female              10th grade   1.63  47.63
## 11194            14 years old Female               9th grade   1.63  50.80
## 11195            15 years old Female               9th grade   1.63  68.04
## 11196            15 years old Female               9th grade   1.63  58.97
## 11197            15 years old Female              10th grade   1.63  68.04
## 11198            15 years old Female              10th grade   1.63  49.90
## 11199            17 years old Female              11th grade   1.63  56.70
## 11200            17 years old Female              12th grade   1.63  63.50
## 11201            16 years old Female              11th grade   1.63  56.25
## 11202            17 years old Female              12th grade   1.63  52.16
## 11203            16 years old   Male              11th grade   1.63  90.72
## 11204            15 years old   Male               9th grade   1.63 122.47
## 11205            14 years old   Male               9th grade   1.63  45.36
## 11206            15 years old Female               9th grade   1.63  51.71
## 11207            14 years old Female               9th grade   1.63  57.61
## 11208            14 years old Female               9th grade   1.63  66.23
## 11209   18 years old or older Female              12th grade   1.63 104.33
## 11210            15 years old   Male              10th grade   1.63  53.52
## 11211            17 years old Female              12th grade   1.63  55.34
## 11212            16 years old Female              10th grade   1.63  67.59
## 11213            17 years old Female              11th grade   1.63  68.04
## 11214            15 years old Female               9th grade   1.63  59.88
## 11215            16 years old   Male              10th grade   1.63  56.70
## 11216            17 years old Female              12th grade   1.63  65.32
## 11217            17 years old Female              11th grade   1.63  62.14
## 11218            15 years old Female               9th grade   1.63  53.07
## 11219            15 years old Female               9th grade   1.63  86.18
## 11220            17 years old Female              11th grade   1.63  65.77
## 11221            14 years old Female               9th grade   1.63  50.80
## 11222            16 years old Female              10th grade   1.63  54.43
## 11223            16 years old Female              10th grade   1.63  47.63
## 11224            17 years old Female              11th grade   1.63  44.00
## 11225   18 years old or older Female              12th grade   1.63  54.43
## 11226   18 years old or older Female              12th grade   1.63  72.58
## 11227   18 years old or older Female              12th grade   1.63  67.13
## 11228   18 years old or older Female              12th grade   1.63  58.06
## 11229            17 years old Female              12th grade   1.63  51.71
## 11230            14 years old   Male               9th grade   1.63  53.07
## 11231            17 years old   Male              11th grade   1.63  52.16
## 11232            17 years old Female              12th grade   1.63  48.08
## 11233            17 years old Female              12th grade   1.63  86.18
## 11234            16 years old Female              11th grade   1.63  49.44
## 11235            16 years old   Male              11th grade   1.63  81.65
## 11236            16 years old Female              11th grade   1.63  60.78
## 11237   18 years old or older Female              12th grade   1.63  81.65
## 11238            16 years old Female              11th grade   1.63  58.97
## 11239            15 years old Female               9th grade   1.63  50.35
## 11240            16 years old Female               9th grade   1.63  89.81
## 11241            17 years old Female              11th grade   1.63  76.20
## 11242            16 years old   Male              10th grade   1.63 108.86
## 11243            15 years old Female              10th grade   1.63  70.31
## 11244            17 years old Female              10th grade   1.63  68.04
## 11245            15 years old Female               9th grade   1.63  72.58
## 11246            15 years old Female              10th grade   1.63  59.88
## 11247            15 years old Female               9th grade   1.63  52.16
## 11248            14 years old Female               9th grade   1.63  72.58
## 11249            15 years old Female               9th grade   1.63  53.98
## 11250            17 years old Female              11th grade   1.63  47.63
## 11251            17 years old Female              12th grade   1.63 104.33
## 11252            16 years old Female              11th grade   1.63  65.77
## 11253            16 years old Female              10th grade   1.63  58.97
## 11254            14 years old Female               9th grade   1.63  53.98
## 11255            14 years old Female               9th grade   1.63  68.04
## 11256            15 years old   Male               9th grade   1.63  40.82
## 11257            16 years old Female              10th grade   1.63  54.43
## 11258            17 years old Female              11th grade   1.63  80.74
## 11259            16 years old Female              10th grade   1.63  62.14
## 11260            16 years old Female              10th grade   1.63  54.89
## 11261            15 years old Female              10th grade   1.63  58.97
## 11262            16 years old Female              11th grade   1.63  54.43
## 11263            15 years old Female              10th grade   1.63  99.79
## 11264            15 years old Female               9th grade   1.63  47.63
## 11265            17 years old Female              12th grade   1.63 104.33
## 11266            17 years old Female              12th grade   1.63  67.59
## 11267            17 years old Female              11th grade   1.63  53.52
## 11268            17 years old Female              10th grade   1.63  83.92
## 11269            16 years old Female               9th grade   1.63  81.65
## 11270            17 years old Female              12th grade   1.63  68.04
## 11271            16 years old Female              11th grade   1.63  85.73
## 11272            15 years old Female              10th grade   1.63  63.50
## 11273   18 years old or older Female              12th grade   1.63  77.11
## 11274            14 years old Female               9th grade   1.63  62.60
## 11275   18 years old or older Female              12th grade   1.63  54.43
## 11276            16 years old Female              11th grade   1.63  54.43
## 11277            16 years old Female              11th grade   1.63  61.24
## 11278            16 years old Female              11th grade   1.63  57.61
## 11279            17 years old Female              11th grade   1.63 104.33
## 11280            17 years old Female              12th grade   1.63  79.38
## 11281            17 years old Female              11th grade   1.63  44.45
## 11282   18 years old or older Female              12th grade   1.63  58.97
## 11283            15 years old Female               9th grade   1.63  95.26
## 11284            16 years old Female              10th grade   1.63  49.90
## 11285            16 years old Female              10th grade   1.63  55.79
## 11286            15 years old Female               9th grade   1.63  49.90
## 11287            16 years old Female              11th grade   1.63  58.97
## 11288   18 years old or older Female              12th grade   1.63  56.70
## 11289            17 years old Female              12th grade   1.63  59.88
## 11290            17 years old Female              12th grade   1.63  68.04
## 11291            17 years old Female              12th grade   1.63  54.43
## 11292            16 years old Female              11th grade   1.63  68.04
## 11293            17 years old Female              11th grade   1.63  54.43
## 11294            17 years old Female              11th grade   1.63  51.71
## 11295            16 years old Female              10th grade   1.63  63.50
## 11296            16 years old Female              10th grade   1.63  60.33
## 11297            15 years old Female              10th grade   1.63  51.26
## 11298            15 years old   Male              10th grade   1.63  80.74
## 11299            15 years old Female               9th grade   1.63  76.66
## 11300            17 years old Female              11th grade   1.63  63.50
## 11301            16 years old Female              10th grade   1.63  48.99
## 11302            14 years old Female               9th grade   1.63  52.16
## 11303   18 years old or older Female              12th grade   1.63  93.90
## 11304   18 years old or older Female              11th grade   1.63  52.62
## 11305            15 years old Female               9th grade   1.63  66.68
## 11306            15 years old Female              10th grade   1.63  72.58
## 11307   18 years old or older Female              12th grade   1.63  92.99
## 11308            16 years old Female              11th grade   1.63  57.15
## 11309            16 years old Female               9th grade   1.63  49.90
## 11310            17 years old Female              12th grade   1.63  95.26
## 11311   18 years old or older   Male              12th grade   1.63  66.68
## 11312            16 years old Female               9th grade   1.63  77.11
## 11313            17 years old Female              11th grade   1.63  72.58
## 11314            16 years old Female              10th grade   1.63  86.18
## 11315   18 years old or older Female              12th grade   1.63  71.67
## 11316            15 years old   Male               9th grade   1.63  52.16
## 11317            17 years old Female              12th grade   1.63  49.90
## 11318            16 years old Female              11th grade   1.63  45.36
## 11319            17 years old Female              12th grade   1.63  95.26
## 11320            17 years old   Male              12th grade   1.63  70.31
## 11321            14 years old Female               9th grade   1.63  43.09
## 11322            16 years old   Male              11th grade   1.63  64.41
## 11323            17 years old Female              11th grade   1.63  60.78
## 11324            16 years old   Male              10th grade   1.63  57.15
## 11325            16 years old Female               9th grade   1.63  45.36
## 11326   18 years old or older Female               9th grade   1.63  66.68
## 11327   18 years old or older Female              12th grade   1.63  49.90
## 11328            14 years old   Male               9th grade   1.63  53.52
## 11329            17 years old Female              12th grade   1.63  72.58
## 11330            14 years old Female               9th grade   1.63  49.90
## 11331            16 years old Female              11th grade   1.63  59.88
## 11332            17 years old   Male              12th grade   1.63  53.52
## 11333            14 years old Female               9th grade   1.63  53.07
## 11334            14 years old Female               9th grade   1.63  86.18
## 11335            14 years old Female               9th grade   1.63  53.98
## 11336            17 years old Female              11th grade   1.63  57.61
## 11337            16 years old Female              11th grade   1.63  54.43
## 11338            14 years old Female               9th grade   1.63  54.43
## 11339            17 years old   Male              12th grade   1.63  63.50
## 11340            14 years old Female               9th grade   1.63  58.97
## 11341            15 years old Female              10th grade   1.63  81.65
## 11342            17 years old   Male              12th grade   1.63  48.99
## 11343            16 years old Female              11th grade   1.63  58.97
## 11344            16 years old Female              11th grade   1.63  65.77
## 11345            17 years old Female              12th grade   1.63  48.08
## 11346            16 years old Female              11th grade   1.63  48.99
## 11347            17 years old Female              11th grade   1.63  68.04
## 11348            15 years old Female              10th grade   1.63  64.41
## 11349            15 years old Female              10th grade   1.63  46.72
## 11350            15 years old   Male              10th grade   1.63  56.70
## 11351            17 years old Female              10th grade   1.63  56.70
## 11352            16 years old   Male              10th grade   1.63  54.43
## 11353            16 years old Female              10th grade   1.63  51.71
## 11354            16 years old Female              10th grade   1.63  61.24
## 11355            15 years old Female              10th grade   1.63  63.50
## 11356            15 years old Female              10th grade   1.63  44.45
## 11357            15 years old   Male              10th grade   1.63  66.23
## 11358            15 years old   Male              10th grade   1.63  68.95
## 11359            16 years old Female              10th grade   1.63  57.15
## 11360            16 years old Female              11th grade   1.63  68.04
## 11361            15 years old Female              10th grade   1.63  65.77
## 11362   18 years old or older Female              12th grade   1.63  61.24
## 11363            16 years old Female              10th grade   1.63  56.70
## 11364            16 years old Female              11th grade   1.63  59.42
## 11365            16 years old Female              10th grade   1.63  60.78
## 11366            16 years old Female              11th grade   1.63  58.06
## 11367            17 years old Female              11th grade   1.63  58.06
## 11368            16 years old Female              10th grade   1.63  81.65
## 11369            14 years old Female               9th grade   1.63  60.33
## 11370            14 years old Female               9th grade   1.63  58.06
## 11371            14 years old   Male               9th grade   1.63  58.97
## 11372            15 years old Female              10th grade   1.63  48.99
## 11373            15 years old Female               9th grade   1.63  74.39
## 11374   18 years old or older   Male              12th grade   1.63  49.90
## 11375            15 years old   Male              10th grade   1.63  51.71
## 11376            17 years old Female              12th grade   1.63  47.63
## 11377            14 years old Female               9th grade   1.63  52.16
## 11378            15 years old Female              10th grade   1.63  81.65
## 11379            17 years old Female              11th grade   1.63  58.97
## 11380            17 years old Female              11th grade   1.63  75.30
## 11381   18 years old or older Female              12th grade   1.63  67.59
## 11382            15 years old Female               9th grade   1.63  58.06
## 11383            15 years old Female              10th grade   1.63  69.40
## 11384   18 years old or older Female              12th grade   1.63  79.38
## 11385            17 years old Female              12th grade   1.63  53.07
## 11386            16 years old Female              10th grade   1.63  63.50
## 11387   18 years old or older Female              12th grade   1.63  89.81
## 11388            15 years old Female               9th grade   1.63  61.69
## 11389            16 years old Female              10th grade   1.63  65.77
## 11390            17 years old Female              12th grade   1.63  53.52
## 11391            15 years old   Male               9th grade   1.63  99.79
## 11392            17 years old Female              12th grade   1.63 127.01
## 11393            17 years old Female              11th grade   1.63 104.33
## 11394            16 years old Female              10th grade   1.63  79.38
## 11395            16 years old Female              11th grade   1.63  56.70
## 11396            17 years old Female              11th grade   1.63  74.84
## 11397            17 years old Female              12th grade   1.63  79.38
## 11398            17 years old Female              12th grade   1.63  61.24
## 11399            15 years old Female              10th grade   1.63  49.90
## 11400   18 years old or older Female              12th grade   1.63  49.90
## 11401            17 years old Female              12th grade   1.63  61.69
## 11402            17 years old Female              12th grade   1.63  54.43
## 11403            14 years old   Male               9th grade   1.63  58.06
## 11404            17 years old Female              12th grade   1.63  52.16
## 11405            15 years old   Male               9th grade   1.63  54.43
## 11406            16 years old Female              10th grade   1.63  64.86
## 11407            17 years old Female              11th grade   1.63  49.90
## 11408            15 years old Female               9th grade   1.63  50.35
## 11409            17 years old Female              11th grade   1.63  81.65
## 11410            17 years old   Male              12th grade   1.63  61.24
## 11411            16 years old Female              10th grade   1.63  52.62
## 11412            17 years old Female              11th grade   1.63  77.11
## 11413            14 years old Female               9th grade   1.63  54.43
## 11414            16 years old Female              10th grade   1.63  51.71
## 11415            15 years old Female               9th grade   1.63  48.54
## 11416            15 years old Female               9th grade   1.63  54.43
## 11417            16 years old   Male              10th grade   1.63  77.11
## 11418            16 years old   Male              10th grade   1.63  66.23
## 11419            16 years old Female              11th grade   1.63  96.62
## 11420            17 years old Female              12th grade   1.63  58.97
## 11421            16 years old Female              11th grade   1.63  68.04
## 11422            16 years old Female              11th grade   1.63  74.84
## 11423            16 years old Female              10th grade   1.63  64.86
## 11424            14 years old Female               9th grade   1.63  64.86
## 11425            16 years old   Male              11th grade   1.63  63.50
## 11426            14 years old Female               9th grade   1.63  49.44
## 11427            15 years old Female               9th grade   1.63  58.51
## 11428            14 years old   Male               9th grade   1.63  49.90
## 11429            17 years old Female              10th grade   1.63  62.60
## 11430   18 years old or older Female              12th grade   1.63  67.59
## 11431            17 years old Female              12th grade   1.63  91.17
## 11432   18 years old or older Female              12th grade   1.63  52.16
## 11433   18 years old or older Female              12th grade   1.63  51.26
## 11434   18 years old or older Female              12th grade   1.63  52.16
## 11435            15 years old   Male               9th grade   1.63  56.70
## 11436            17 years old Female              11th grade   1.63  63.50
## 11437            17 years old Female              12th grade   1.63  54.43
## 11438            17 years old Female              12th grade   1.63  81.65
## 11439            14 years old Female               9th grade   1.63  99.79
## 11440            15 years old Female               9th grade   1.63  52.16
## 11441            15 years old Female              10th grade   1.63  95.26
## 11442            16 years old Female              10th grade   1.63  72.58
## 11443            16 years old Female               9th grade   1.63 104.33
## 11444            16 years old Female              11th grade   1.63  36.29
## 11445            15 years old Female               9th grade   1.63  52.16
## 11446            15 years old Female               9th grade   1.63  58.97
## 11447            15 years old Female               9th grade   1.63  84.37
## 11448            14 years old Female               9th grade   1.63  69.85
## 11449            14 years old Female               9th grade   1.63  60.78
## 11450   18 years old or older   Male              12th grade   1.63  65.77
## 11451            17 years old Female              12th grade   1.63  53.52
## 11452   18 years old or older Female              12th grade   1.63  90.72
## 11453            15 years old Female              10th grade   1.63  45.36
## 11454   18 years old or older Female              12th grade   1.63  52.16
## 11455            17 years old Female              12th grade   1.63  69.40
## 11456            17 years old Female              12th grade   1.63  62.60
## 11457            17 years old Female              11th grade   1.63  62.60
## 11458            17 years old Female              11th grade   1.63  45.36
## 11459            17 years old Female              11th grade   1.63  53.52
## 11460            15 years old Female              10th grade   1.63  51.71
## 11461            17 years old Female              12th grade   1.63  52.16
## 11462            17 years old Female              11th grade   1.63  74.39
## 11463            17 years old Female              12th grade   1.63  49.90
## 11464   18 years old or older Female              12th grade   1.63  63.50
## 11465            14 years old Female               9th grade   1.63  56.25
## 11466            15 years old Female              10th grade   1.63  49.90
## 11467            17 years old Female              11th grade   1.63  90.72
## 11468   18 years old or older Female              12th grade   1.63  48.08
## 11469            15 years old Female               9th grade   1.63  47.17
## 11470            17 years old   Male              12th grade   1.63  86.18
## 11471            15 years old Female               9th grade   1.63  88.00
## 11472            15 years old Female               9th grade   1.63  43.09
## 11473            15 years old Female               9th grade   1.63  89.81
## 11474            16 years old Female              11th grade   1.63  63.05
## 11475   18 years old or older Female              12th grade   1.63  61.24
## 11476            16 years old   Male              10th grade   1.63  45.81
## 11477            17 years old Female              11th grade   1.63  81.65
## 11478            15 years old Female               9th grade   1.63  51.26
## 11479   18 years old or older Female              12th grade   1.63  54.43
## 11480   18 years old or older Female              12th grade   1.63  68.04
## 11481            15 years old Female               9th grade   1.63  45.36
## 11482            15 years old   Male               9th grade   1.63  63.50
## 11483            14 years old Female               9th grade   1.63  54.43
## 11484            15 years old Female               9th grade   1.63  72.58
## 11485            17 years old Female              11th grade   1.63  83.92
## 11486            16 years old Female              10th grade   1.63  69.40
## 11487            17 years old Female              12th grade   1.63  67.13
## 11488            16 years old Female              11th grade   1.63  65.77
## 11489   18 years old or older   Male              12th grade   1.63  92.99
## 11490            17 years old Female              10th grade   1.63  86.18
## 11491            17 years old Female              11th grade   1.63  54.43
## 11492            17 years old Female              12th grade   1.63  97.52
## 11493   18 years old or older Female              12th grade   1.63  65.77
## 11494            16 years old Female              10th grade   1.63  49.90
## 11495            15 years old Female               9th grade   1.63  48.99
## 11496            16 years old   Male              10th grade   1.63  47.63
## 11497            16 years old Female              10th grade   1.63  55.34
## 11498            16 years old Female              10th grade   1.63  49.90
## 11499            16 years old Female              10th grade   1.63  78.47
## 11500            16 years old Female              10th grade   1.63  47.63
## 11501            17 years old   Male              11th grade   1.63  56.70
## 11502            16 years old Female              11th grade   1.63  60.78
## 11503            14 years old Female               9th grade   1.63  56.70
## 11504            15 years old Female               9th grade   1.63  56.70
## 11505            17 years old Female              11th grade   1.63  99.79
## 11506            15 years old Female               9th grade   1.63  51.71
## 11507            15 years old Female               9th grade   1.63  54.43
## 11508   18 years old or older Female              12th grade   1.63 115.67
## 11509            15 years old   Male               9th grade   1.63  72.58
## 11510            15 years old Female               9th grade   1.63  54.43
## 11511            15 years old Female               9th grade   1.63  58.97
## 11512            16 years old Female              10th grade   1.63  65.32
## 11513            17 years old Female              11th grade   1.63  54.43
## 11514            15 years old Female              10th grade   1.63  49.90
## 11515   18 years old or older Female              12th grade   1.63  68.04
## 11516   18 years old or older Female              12th grade   1.63  54.89
## 11517            15 years old Female               9th grade   1.63  95.26
## 11518            15 years old Female              10th grade   1.63  65.77
## 11519            15 years old Female              10th grade   1.63  54.43
## 11520            15 years old Female              10th grade   1.63  59.88
## 11521            17 years old Female              12th grade   1.63  65.77
## 11522   18 years old or older Female              12th grade   1.63  92.99
## 11523            17 years old Female              12th grade   1.63  65.77
## 11524            16 years old Female              10th grade   1.63  45.36
## 11525            16 years old Female              11th grade   1.63  70.31
## 11526            16 years old Female               9th grade   1.63  44.45
## 11527            15 years old   Male               9th grade   1.63  43.09
## 11528            14 years old Female               9th grade   1.63  63.50
## 11529            17 years old Female              11th grade   1.63  68.04
## 11530            17 years old   Male              11th grade   1.63  78.02
## 11531            15 years old Female               9th grade   1.63  62.60
## 11532            16 years old Female              10th grade   1.63  65.77
## 11533            16 years old Female               9th grade   1.63  78.47
## 11534            16 years old Female              11th grade   1.63  50.80
## 11535   18 years old or older Female              11th grade   1.63  68.04
## 11536            15 years old Female              10th grade   1.63  68.04
## 11537   18 years old or older Female              12th grade   1.63  97.52
## 11538   18 years old or older Female              12th grade   1.63 108.86
## 11539            14 years old Female               9th grade   1.63  54.43
## 11540   18 years old or older Female              12th grade   1.63  54.43
## 11541            16 years old Female              11th grade   1.63  54.43
## 11542   18 years old or older Female              12th grade   1.63  49.90
## 11543            14 years old   Male               9th grade   1.63  58.97
## 11544            15 years old Female              10th grade   1.63  56.70
## 11545            15 years old   Male              10th grade   1.63  47.63
## 11546            15 years old   Male               9th grade   1.63  53.07
## 11547   18 years old or older Female              12th grade   1.63  58.97
## 11548            17 years old Female              12th grade   1.63  58.97
## 11549            16 years old Female               9th grade   1.63  83.46
## 11550            17 years old Female              11th grade   1.63  68.04
## 11551            15 years old Female               9th grade   1.63  61.24
## 11552            15 years old Female               9th grade   1.63  68.04
## 11553            16 years old Female              10th grade   1.63  52.62
## 11554            17 years old Female              11th grade   1.63  80.74
## 11555            15 years old   Male               9th grade   1.63  52.16
## 11556            15 years old   Male               9th grade   1.63  92.08
## 11557            15 years old Female               9th grade   1.63  78.47
## 11558            17 years old   Male              11th grade   1.63  78.02
## 11559            17 years old Female              11th grade   1.63  63.50
## 11560            16 years old Female              11th grade   1.63  65.77
## 11561            16 years old Female              11th grade   1.63  47.63
## 11562            14 years old Female               9th grade   1.63  74.84
## 11563            15 years old Female               9th grade   1.63  70.31
## 11564            15 years old Female              10th grade   1.63  83.92
## 11565            15 years old   Male               9th grade   1.63  95.26
## 11566            17 years old   Male              11th grade   1.63  58.97
## 11567   18 years old or older   Male              12th grade   1.63  56.70
## 11568   18 years old or older Female              12th grade   1.63  49.90
## 11569   18 years old or older Female              12th grade   1.63  63.50
## 11570   18 years old or older Female              12th grade   1.63 122.47
## 11571            17 years old Female              11th grade   1.63  69.85
## 11572            16 years old   Male              10th grade   1.63  57.15
## 11573            17 years old Female              11th grade   1.63 136.08
## 11574            17 years old Female              11th grade   1.63  52.16
## 11575            15 years old Female               9th grade   1.63  54.43
## 11576            15 years old   Male               9th grade   1.63  45.36
## 11577            17 years old Female              11th grade   1.63  88.45
## 11578            16 years old Female              10th grade   1.63  57.15
## 11579            14 years old Female               9th grade   1.63  67.13
## 11580            16 years old Female              11th grade   1.63  55.34
## 11581            17 years old   Male              12th grade   1.63  63.50
## 11582            15 years old Female              10th grade   1.63  54.43
## 11583            15 years old Female              10th grade   1.63  51.71
## 11584            16 years old   Male              10th grade   1.63  45.36
## 11585            17 years old Female              11th grade   1.63  63.50
## 11586            15 years old Female               9th grade   1.63  45.36
## 11587            15 years old   Male               9th grade   1.63  58.97
## 11588            17 years old   Male              11th grade   1.63  52.16
## 11589            17 years old   Male              12th grade   1.63  76.20
## 11590            16 years old Female              11th grade   1.63  52.16
## 11591            17 years old Female              11th grade   1.63  52.16
## 11592            17 years old Female              11th grade   1.63  61.24
## 11593            16 years old Female              11th grade   1.63  68.04
## 11594            17 years old Female              12th grade   1.63 104.33
## 11595   18 years old or older Female              12th grade   1.63  47.63
## 11596            14 years old Female               9th grade   1.63  59.88
## 11597   18 years old or older Female              12th grade   1.63  53.98
## 11598            16 years old Female              11th grade   1.63  61.24
## 11599            16 years old Female              10th grade   1.63  63.50
## 11600            17 years old Female              11th grade   1.63  80.74
## 11601            15 years old   Male              10th grade   1.63  72.58
## 11602            17 years old   Male              11th grade   1.63  43.55
## 11603            15 years old Female               9th grade   1.63  88.00
## 11604            17 years old Female              11th grade   1.63  87.54
## 11605            15 years old Female              10th grade   1.63  54.43
## 11606            16 years old Female              10th grade   1.63  58.06
## 11607            15 years old   Male               9th grade   1.63  58.97
## 11608            16 years old Female              11th grade   1.63  52.16
## 11609            17 years old Female              11th grade   1.63  65.77
## 11610            15 years old Female               9th grade   1.63  59.88
## 11611            15 years old Female              10th grade   1.63  58.51
## 11612            16 years old   Male              11th grade   1.63  49.90
## 11613            15 years old   Male               9th grade   1.63  63.50
## 11614            14 years old Female               9th grade   1.63  80.74
## 11615            15 years old Female               9th grade   1.63  46.27
## 11616            15 years old Female               9th grade   1.63  51.26
## 11617            14 years old Female               9th grade   1.63  56.70
## 11618            14 years old   Male               9th grade   1.63  83.01
## 11619            16 years old Female              10th grade   1.63  73.03
## 11620            16 years old Female              10th grade   1.63  77.11
## 11621            15 years old Female              10th grade   1.63  63.50
## 11622   18 years old or older Female              12th grade   1.63  97.52
## 11623            16 years old Female              10th grade   1.63  68.04
## 11624   18 years old or older Female              12th grade   1.63  58.97
## 11625            14 years old Female               9th grade   1.63  54.89
## 11626            15 years old Female              10th grade   1.63  58.06
## 11627            16 years old Female              10th grade   1.63  56.70
## 11628            16 years old Female              10th grade   1.63  65.77
## 11629            17 years old Female              12th grade   1.63  52.16
## 11630            14 years old   Male               9th grade   1.63  50.35
## 11631            15 years old Female              10th grade   1.63  70.31
## 11632            17 years old   Male              11th grade   1.63  54.43
## 11633            16 years old Female              10th grade   1.63  47.63
## 11634            14 years old   Male               9th grade   1.63  52.16
## 11635            17 years old Female              11th grade   1.63  70.31
## 11636            17 years old Female              12th grade   1.63  54.43
## 11637            15 years old Female              10th grade   1.63  54.43
## 11638            17 years old Female              12th grade   1.63  84.37
## 11639            15 years old Female               9th grade   1.63  71.67
## 11640            17 years old Female              11th grade   1.63  68.04
## 11641            16 years old Female              10th grade   1.63  52.16
## 11642            15 years old Female              10th grade   1.63  63.50
## 11643            17 years old Female              11th grade   1.63  54.89
## 11644            16 years old Female              10th grade   1.63  68.95
## 11645            14 years old Female               9th grade   1.63  65.77
## 11646            16 years old Female              10th grade   1.63  63.50
## 11647            17 years old Female              11th grade   1.63  65.77
## 11648            16 years old   Male              11th grade   1.63  68.04
## 11649            17 years old Female              12th grade   1.63  63.50
## 11650   18 years old or older Female              12th grade   1.63  52.16
## 11651   18 years old or older Female              12th grade   1.63  70.31
## 11652            16 years old Female              11th grade   1.63  63.50
## 11653            15 years old   Male              10th grade   1.63  52.16
## 11654            16 years old Female              10th grade   1.63  55.34
## 11655            17 years old Female              11th grade   1.63  55.34
## 11656            14 years old   Male               9th grade   1.63  45.81
## 11657            15 years old Female               9th grade   1.63  88.45
## 11658            15 years old Female              10th grade   1.63 125.19
## 11659            14 years old   Male               9th grade   1.63  53.52
## 11660            16 years old Female              10th grade   1.63  45.36
## 11661   18 years old or older Female              12th grade   1.63  54.43
## 11662            15 years old   Male               9th grade   1.63  53.52
## 11663            15 years old   Male               9th grade   1.63  40.82
## 11664            14 years old   Male               9th grade   1.63  50.80
## 11665            16 years old   Male              11th grade   1.63  46.72
## 11666            15 years old   Male               9th grade   1.63  51.71
## 11667            15 years old Female               9th grade   1.63  54.43
## 11668            14 years old Female               9th grade   1.63  45.36
## 11669            15 years old Female               9th grade   1.63  54.43
## 11670            15 years old Female               9th grade   1.63  51.71
## 11671            14 years old Female               9th grade   1.63  47.17
## 11672            16 years old Female              10th grade   1.63  70.31
## 11673            14 years old   Male               9th grade   1.63  58.97
## 11674            16 years old Female              11th grade   1.63  73.48
## 11675            16 years old Female              11th grade   1.63  54.43
## 11676            17 years old Female              11th grade   1.63  55.79
## 11677            15 years old Female               9th grade   1.63  51.26
## 11678            15 years old   Male               9th grade   1.63  42.18
## 11679            15 years old   Male              10th grade   1.63  49.90
## 11680            15 years old Female              10th grade   1.63  49.90
## 11681            17 years old Female              11th grade   1.63  47.63
## 11682            17 years old Female              11th grade   1.63  49.90
## 11683            17 years old Female              11th grade   1.63  81.65
## 11684            17 years old Female              12th grade   1.63  54.43
## 11685            17 years old Female              11th grade   1.63  63.50
## 11686            16 years old Female              10th grade   1.63  54.43
## 11687            16 years old   Male              10th grade   1.63  64.86
## 11688            15 years old Female              10th grade   1.63  56.70
## 11689            14 years old Female               9th grade   1.63  87.09
## 11690            14 years old Female               9th grade   1.63  50.80
## 11691   18 years old or older Female              11th grade   1.63  74.84
## 11692            16 years old Female              11th grade   1.63 101.61
## 11693            15 years old Female              10th grade   1.63  89.36
## 11694            15 years old Female               9th grade   1.63  45.81
## 11695            15 years old   Male               9th grade   1.63  49.90
## 11696            14 years old Female               9th grade   1.63  52.16
## 11697            15 years old   Male               9th grade   1.63  48.99
## 11698            15 years old Female               9th grade   1.63  61.69
## 11699            15 years old Female               9th grade   1.63  58.97
## 11700            14 years old Female               9th grade   1.63  49.90
## 11701            15 years old Female               9th grade   1.63  53.52
## 11702            15 years old Female              10th grade   1.63  52.16
## 11703            15 years old Female              10th grade   1.63  49.90
## 11704            15 years old Female              10th grade   1.63  72.58
## 11705            15 years old Female              10th grade   1.63  47.63
## 11706            17 years old Female              10th grade   1.63  50.35
## 11707            17 years old Female              11th grade   1.63  50.80
## 11708            17 years old Female              11th grade   1.63  61.24
## 11709            16 years old Female              11th grade   1.63  45.36
## 11710            17 years old   Male              11th grade   1.63  52.16
## 11711            17 years old Female              12th grade   1.63  61.24
## 11712            17 years old Female              12th grade   1.63  58.97
## 11713            15 years old Female               9th grade   1.63  54.43
## 11714            15 years old Female               9th grade   1.63  52.16
## 11715            14 years old Female               9th grade   1.63  54.43
## 11716            15 years old Female               9th grade   1.63  47.63
## 11717            14 years old Female               9th grade   1.63  52.16
## 11718            17 years old Female              11th grade   1.63  97.52
## 11719            15 years old Female              10th grade   1.63  72.58
## 11720            15 years old   Male              10th grade   1.63  61.69
## 11721            15 years old Female              10th grade   1.63  56.70
## 11722            16 years old Female              11th grade   1.63  47.63
## 11723            16 years old Female                    <NA>   1.63  49.90
## 11724   18 years old or older   Male              11th grade   1.63  99.79
## 11725            17 years old Female              12th grade   1.63  58.97
## 11726            17 years old Female              12th grade   1.63  68.04
## 11727            17 years old Female              12th grade   1.63  70.76
## 11728            15 years old Female               9th grade   1.63  52.16
## 11729            14 years old Female               9th grade   1.63  52.62
## 11730            14 years old Female               9th grade   1.63  52.62
## 11731            14 years old Female               9th grade   1.63  47.63
## 11732            15 years old Female               9th grade   1.63  89.81
## 11733            14 years old   Male               9th grade   1.63  45.36
## 11734            14 years old Female               9th grade   1.63  54.43
## 11735            14 years old   Male               9th grade   1.63  68.04
## 11736            16 years old Female              10th grade   1.63  61.24
## 11737            15 years old   Male              10th grade   1.63  56.70
## 11738            16 years old Female              10th grade   1.63  49.90
## 11739            16 years old   Male              10th grade   1.63  63.50
## 11740            17 years old Female              11th grade   1.63  52.16
## 11741            16 years old Female              11th grade   1.63  70.76
## 11742            16 years old Female              11th grade   1.63  63.50
## 11743   18 years old or older   Male              12th grade   1.63  90.72
## 11744            16 years old   Male              10th grade   1.63 136.08
## 11745   18 years old or older Female              12th grade   1.63  81.65
## 11746            16 years old Female              10th grade   1.63  63.50
## 11747            14 years old Female               9th grade   1.63  49.44
## 11748            14 years old Female               9th grade   1.63  67.13
## 11749            15 years old Female               9th grade   1.63  58.97
## 11750            14 years old   Male               9th grade   1.63  49.90
## 11751            15 years old Female               9th grade   1.63  47.63
## 11752            14 years old Female               9th grade   1.63  88.45
## 11753            15 years old Female              10th grade   1.63  56.70
## 11754            15 years old Female              10th grade   1.63  73.94
## 11755            16 years old Female                    <NA>   1.63  68.04
## 11756            17 years old Female              11th grade   1.63  56.70
## 11757            16 years old Female              11th grade   1.63  56.25
## 11758            17 years old   Male              11th grade   1.63  54.43
## 11759   18 years old or older Female              12th grade   1.63  52.62
## 11760            16 years old Female               9th grade   1.63  79.83
## 11761            13 years old Female               9th grade   1.63  58.97
## 11762            14 years old Female               9th grade   1.63  48.54
## 11763            14 years old Female               9th grade   1.63  63.50
## 11764            14 years old Female               9th grade   1.63  74.84
## 11765            16 years old   Male              10th grade   1.63  97.98
## 11766            16 years old Female              11th grade   1.63  65.32
## 11767            16 years old Female              11th grade   1.63  64.41
## 11768   18 years old or older Female              12th grade   1.63  80.74
## 11769            17 years old Female              12th grade   1.63  72.58
## 11770            15 years old Female               9th grade   1.63  81.65
## 11771            14 years old   Male               9th grade   1.63  52.16
## 11772            15 years old Female               9th grade   1.63  63.50
## 11773            17 years old Female              11th grade   1.63  48.08
## 11774   18 years old or older Female              12th grade   1.63  54.43
## 11775            17 years old Female              12th grade   1.63  63.50
## 11776            16 years old   Male               9th grade   1.63  39.01
## 11777            16 years old Female              11th grade   1.63  41.73
## 11778            15 years old Female              10th grade   1.63  77.11
## 11779            15 years old Female               9th grade   1.63  67.59
## 11780            14 years old Female               9th grade   1.63  48.54
## 11781            17 years old   Male              11th grade   1.63  59.88
## 11782            17 years old Female              11th grade   1.63  77.11
## 11783            16 years old Female              11th grade   1.63  65.77
## 11784            15 years old Female              10th grade   1.63  58.97
## 11785            16 years old Female              10th grade   1.63  44.00
## 11786            16 years old Female              11th grade   1.63  57.61
## 11787            17 years old Female              11th grade   1.63  56.25
## 11788            16 years old Female              11th grade   1.63  57.61
## 11789            17 years old Female              11th grade   1.63  65.77
## 11790            16 years old Female              11th grade   1.63  68.04
## 11791            16 years old Female              11th grade   1.63  45.36
## 11792            16 years old Female              10th grade   1.63  54.43
## 11793            15 years old Female              10th grade   1.63  54.89
## 11794            15 years old Female              10th grade   1.63  49.90
## 11795   18 years old or older Female              12th grade   1.63  52.16
## 11796            16 years old Female              10th grade   1.63  58.97
## 11797            17 years old Female              12th grade   1.63  63.50
## 11798            17 years old Female              12th grade   1.63  61.69
## 11799            16 years old Female              10th grade   1.63  65.77
## 11800            15 years old Female              10th grade   1.63  69.40
## 11801            16 years old Female              11th grade   1.63  52.16
## 11802            17 years old Female              11th grade   1.63  52.16
## 11803            16 years old Female              11th grade   1.63  53.52
## 11804            17 years old Female              12th grade   1.63  49.90
## 11805            15 years old Female              10th grade   1.63  58.06
## 11806            16 years old Female              10th grade   1.63  90.72
## 11807            15 years old Female              11th grade   1.63  90.72
## 11808            15 years old Female              10th grade   1.63  79.38
## 11809            17 years old   Male              11th grade   1.63  49.90
## 11810            14 years old Female               9th grade   1.63  70.76
## 11811            14 years old   Male               9th grade   1.63  65.32
## 11812            15 years old Female               9th grade   1.63  44.91
## 11813            14 years old Female               9th grade   1.63  56.70
## 11814            14 years old Female               9th grade   1.63  56.70
## 11815            15 years old   Male              10th grade   1.63  54.43
## 11816            17 years old Female              12th grade   1.63  58.97
## 11817            14 years old Female               9th grade   1.63  65.77
## 11818            17 years old   Male              12th grade   1.63  49.90
## 11819            17 years old Female              12th grade   1.63  52.62
## 11820            16 years old Female              10th grade   1.63  45.81
## 11821            15 years old Female              10th grade   1.63  63.50
## 11822            15 years old Female              10th grade   1.63  57.15
## 11823            15 years old Female              10th grade   1.63  74.84
## 11824            15 years old Female              10th grade   1.63  60.78
## 11825            16 years old Female              11th grade   1.63  58.97
## 11826            16 years old   Male              11th grade   1.63  49.90
## 11827            17 years old   Male              12th grade   1.63  58.97
## 11828            15 years old   Male              10th grade   1.63  43.09
## 11829            15 years old Female               9th grade   1.63  81.65
## 11830            14 years old   Male               9th grade   1.63  58.97
## 11831            16 years old Female              11th grade   1.63  54.43
## 11832            17 years old Female              11th grade   1.63  53.07
## 11833            14 years old Female               9th grade   1.63  63.50
## 11834            17 years old Female              11th grade   1.63  58.97
## 11835            16 years old   Male              11th grade   1.63  58.97
## 11836            17 years old Female              11th grade   1.63  44.45
## 11837   18 years old or older Female              12th grade   1.63  77.11
## 11838            14 years old Female               9th grade   1.63  54.43
## 11839            14 years old Female               9th grade   1.63  81.65
## 11840            14 years old Female               9th grade   1.63  54.43
## 11841            14 years old   Male               9th grade   1.63  56.70
## 11842            17 years old Female              12th grade   1.63  77.11
## 11843            15 years old   Male              10th grade   1.63  71.22
## 11844            15 years old   Male              10th grade   1.63  47.63
## 11845            15 years old Female              10th grade   1.63  55.79
## 11846            15 years old Female              10th grade   1.63  48.08
## 11847            17 years old Female              12th grade   1.63  67.13
## 11848            17 years old   Male              11th grade   1.63  54.43
## 11849            16 years old Female              11th grade   1.63  57.61
## 11850            15 years old Female               9th grade   1.63  50.80
## 11851            15 years old Female              10th grade   1.63  58.97
## 11852            16 years old Female              10th grade   1.63  43.55
## 11853            16 years old Female              10th grade   1.63  49.90
## 11854            15 years old Female              10th grade   1.63  61.69
## 11855            16 years old Female              11th grade   1.63  58.97
## 11856            16 years old Female              11th grade   1.63  58.97
## 11857            16 years old Female              11th grade   1.63  54.43
## 11858            16 years old Female              11th grade   1.63  62.60
## 11859            17 years old   Male              12th grade   1.63  46.72
## 11860   18 years old or older Female              12th grade   1.63  58.97
## 11861            17 years old Female              11th grade   1.63  52.62
## 11862            17 years old Female              12th grade   1.63  51.71
## 11863            15 years old Female              10th grade   1.63  53.07
## 11864            17 years old Female              12th grade   1.63  52.16
## 11865            16 years old Female              11th grade   1.63  58.97
## 11866            14 years old Female               9th grade   1.63  44.91
## 11867            16 years old Female              11th grade   1.63  49.90
## 11868            14 years old Female               9th grade   1.63  54.43
## 11869            15 years old   Male              10th grade   1.63  58.97
## 11870            16 years old Female              10th grade   1.63  57.61
## 11871            15 years old Female              10th grade   1.63  59.88
## 11872   18 years old or older Female              12th grade   1.63  79.38
## 11873            16 years old Female              11th grade   1.63  58.06
## 11874            15 years old Female              10th grade   1.63  72.58
## 11875            14 years old Female               9th grade   1.63  58.97
## 11876            14 years old Female               9th grade   1.63  55.79
## 11877            16 years old Female              11th grade   1.63  99.79
## 11878            15 years old Female              10th grade   1.63  55.79
## 11879            15 years old Female              10th grade   1.63  52.16
## 11880            15 years old Female              10th grade   1.63  67.13
## 11881            17 years old Female              12th grade   1.63  50.80
## 11882            15 years old Female              10th grade   1.63  58.97
## 11883            15 years old Female              10th grade   1.63  51.26
## 11884            14 years old Female               9th grade   1.63  49.90
## 11885            16 years old Female              11th grade   1.63  54.43
## 11886            16 years old Female              11th grade   1.63  77.11
## 11887            17 years old Female              12th grade   1.63  72.58
## 11888            15 years old Female              10th grade   1.63  54.43
## 11889            17 years old Female              12th grade   1.63  63.50
## 11890            15 years old Female               9th grade   1.63  55.34
## 11891            14 years old Female               9th grade   1.63  54.43
## 11892            16 years old Female              11th grade   1.63  52.16
## 11893            17 years old Female              12th grade   1.63  48.99
## 11894   18 years old or older Female              12th grade   1.63  45.36
## 11895            15 years old Female              10th grade   1.63  53.52
## 11896            16 years old Female              10th grade   1.63  52.16
## 11897            15 years old Female              10th grade   1.63  79.38
## 11898            16 years old Female              11th grade   1.63  56.70
## 11899            16 years old Female              11th grade   1.63  55.34
## 11900            16 years old Female              11th grade   1.63  54.43
## 11901            17 years old Female              12th grade   1.63  54.43
## 11902            15 years old Female              10th grade   1.63  95.26
## 11903            16 years old Female              10th grade   1.63  67.59
## 11904            17 years old Female              12th grade   1.63  73.48
## 11905            14 years old Female               9th grade   1.63  56.70
## 11906            15 years old Female              10th grade   1.63  71.67
## 11907            16 years old Female              10th grade   1.63  54.43
## 11908            14 years old   Male               9th grade   1.63  45.36
## 11909            14 years old Female               9th grade   1.63  52.62
## 11910            16 years old Female              11th grade   1.63  54.43
## 11911            17 years old Female              11th grade   1.63  58.97
## 11912            15 years old Female              10th grade   1.63  49.90
## 11913            16 years old   Male              10th grade   1.63  68.04
## 11914            14 years old Female              10th grade   1.63  44.45
## 11915            16 years old   Male              11th grade   1.63  49.90
## 11916   18 years old or older Female              12th grade   1.63  68.04
## 11917            14 years old Female               9th grade   1.63  86.18
## 11918            14 years old Female               9th grade   1.63  48.99
## 11919            14 years old Female               9th grade   1.63  61.24
## 11920            17 years old Female              11th grade   1.63  48.99
## 11921            15 years old   Male              10th grade   1.63  56.70
## 11922            17 years old Female              12th grade   1.63  53.07
## 11923            16 years old Female              11th grade   1.63  77.11
## 11924            16 years old Female              11th grade   1.63  47.63
## 11925            16 years old Female              11th grade   1.63  61.24
## 11926            15 years old Female              10th grade   1.63  52.16
## 11927            14 years old Female               9th grade   1.63  48.99
## 11928            15 years old Female              10th grade   1.63  47.63
## 11929            15 years old Female              10th grade   1.63  56.70
## 11930            15 years old Female              10th grade   1.63  61.24
## 11931            15 years old Female              10th grade   1.63  83.46
## 11932            14 years old Female               9th grade   1.63  41.73
## 11933            14 years old Female               9th grade   1.63  45.36
## 11934            16 years old   Male              10th grade   1.63  59.88
## 11935            15 years old Female              10th grade   1.63  82.56
## 11936            15 years old Female              10th grade   1.63  56.70
## 11937            16 years old Female              11th grade   1.63  63.96
## 11938            15 years old Female              10th grade   1.63  58.97
## 11939            15 years old   Male              10th grade   1.63  80.74
## 11940            16 years old   Male               9th grade   1.63  54.43
## 11941            14 years old Female               9th grade   1.63  46.27
## 11942            16 years old Female              10th grade   1.63  72.58
## 11943            16 years old Female              11th grade   1.63  58.97
## 11944            17 years old Female              11th grade   1.63  92.99
## 11945            17 years old   Male              11th grade   1.63  60.33
## 11946            17 years old Female              11th grade   1.63  52.16
## 11947            17 years old Female              11th grade   1.63  44.91
## 11948            17 years old   Male              11th grade   1.63 102.06
## 11949            16 years old   Male              10th grade   1.63  62.60
## 11950            15 years old Female              10th grade   1.63  49.90
## 11951            15 years old Female              10th grade   1.63  48.54
## 11952            14 years old   Male               9th grade   1.63  44.00
## 11953            14 years old Female               9th grade   1.63  52.16
## 11954            14 years old   Male               9th grade   1.63  56.70
## 11955            15 years old Female               9th grade   1.63  58.97
## 11956            15 years old Female               9th grade   1.63  60.78
## 11957            17 years old Female              11th grade   1.63  56.70
## 11958            15 years old Female              10th grade   1.63  52.16
## 11959            15 years old Female               9th grade   1.63  83.92
## 11960            15 years old Female               9th grade   1.63  69.40
## 11961            14 years old Female               9th grade   1.63  53.07
## 11962            14 years old   Male               9th grade   1.63  60.78
## 11963            15 years old Female               9th grade   1.63  52.62
## 11964            15 years old Female               9th grade   1.63  58.97
## 11965            15 years old Female               9th grade   1.63  60.78
## 11966            15 years old Female               9th grade   1.63  44.91
## 11967            17 years old Female              12th grade   1.63  56.70
## 11968   18 years old or older Female              12th grade   1.63  56.70
## 11969            16 years old Female              11th grade   1.63  70.31
## 11970            15 years old Female              10th grade   1.63  55.79
## 11971            15 years old Female              10th grade   1.63  58.97
## 11972            15 years old Female               9th grade   1.63  55.34
## 11973            15 years old Female               9th grade   1.63  81.65
## 11974   18 years old or older Female              12th grade   1.63  79.38
## 11975            16 years old Female              11th grade   1.63  56.70
## 11976            16 years old Female              10th grade   1.63  54.43
## 11977            15 years old Female              10th grade   1.63  52.16
## 11978            16 years old   Male              11th grade   1.63  48.99
## 11979            15 years old   Male               9th grade   1.63  54.43
## 11980            15 years old Female              10th grade   1.63  72.58
## 11981   18 years old or older Female              12th grade   1.63 113.40
## 11982   18 years old or older Female              12th grade   1.63  48.99
## 11983   18 years old or older Female              12th grade   1.63  68.04
## 11984   18 years old or older Female              12th grade   1.63  65.77
## 11985            15 years old Female              10th grade   1.63  71.67
## 11986            17 years old Female              11th grade   1.63  65.77
## 11987            16 years old Female              11th grade   1.63  74.84
## 11988            17 years old Female              12th grade   1.63  68.04
## 11989            17 years old Female              12th grade   1.63  86.18
## 11990            17 years old Female              12th grade   1.63  52.16
## 11991            16 years old Female              11th grade   1.63  47.63
## 11992            17 years old Female              12th grade   1.63  77.11
## 11993   18 years old or older Female              12th grade   1.63  56.70
## 11994            15 years old Female              10th grade   1.63  43.55
## 11995            16 years old   Male              11th grade   1.63  63.50
## 11996            16 years old Female              11th grade   1.63  54.43
## 11997            15 years old Female              10th grade   1.63  52.16
## 11998            17 years old Female              11th grade   1.63  61.24
## 11999            16 years old Female              11th grade   1.63  54.43
## 12000            16 years old   Male              11th grade   1.63  55.79
## 12001            16 years old Female              11th grade   1.63  61.24
## 12002            16 years old Female              11th grade   1.63  52.16
## 12003            14 years old Female               9th grade   1.63  81.65
## 12004            17 years old   Male              12th grade   1.63  55.34
## 12005   18 years old or older Female              12th grade   1.63  55.79
## 12006            16 years old Female              10th grade   1.63  58.97
## 12007            17 years old   Male              11th grade   1.63  56.70
## 12008            17 years old Female              11th grade   1.63  58.97
## 12009            17 years old Female              12th grade   1.63  77.11
## 12010            16 years old Female              11th grade   1.63  52.62
## 12011            15 years old Female               9th grade   1.63  52.16
## 12012            15 years old Female              10th grade   1.63  68.04
## 12013            17 years old Female              12th grade   1.63  58.97
## 12014            15 years old   Male              10th grade   1.63  54.43
## 12015            16 years old Female              10th grade   1.63  52.16
## 12016            14 years old   Male               9th grade   1.63  61.24
## 12017            17 years old   Male              11th grade   1.63  68.04
## 12018            16 years old Female              11th grade   1.63  62.60
## 12019            17 years old Female              12th grade   1.63  60.33
## 12020            16 years old Female              10th grade   1.63  56.25
## 12021            14 years old Female               9th grade   1.63  45.36
## 12022            14 years old   Male               9th grade   1.63  40.82
## 12023            15 years old   Male               9th grade   1.63  63.50
## 12024            14 years old   Male               9th grade   1.63  63.50
## 12025            17 years old   Male              12th grade   1.63  61.24
## 12026            15 years old   Male               9th grade   1.63  92.53
## 12027            15 years old   Male               9th grade   1.63  88.91
## 12028            16 years old Female              10th grade   1.63  61.69
## 12029            15 years old Female              10th grade   1.63  54.43
## 12030            17 years old Female              12th grade   1.63  77.11
## 12031            17 years old Female              12th grade   1.63  87.54
## 12032            15 years old Female              10th grade   1.63  61.24
## 12033   18 years old or older Female              12th grade   1.63  61.24
## 12034            17 years old Female              11th grade   1.63  49.90
## 12035            16 years old   Male              11th grade   1.63  58.97
## 12036            16 years old Female              11th grade   1.63  68.04
## 12037   18 years old or older Female              12th grade   1.63  63.50
## 12038            16 years old Female              10th grade   1.63  83.92
## 12039            16 years old Female              10th grade   1.63  63.50
## 12040            16 years old Female              11th grade   1.63  78.02
## 12041            15 years old Female              10th grade   1.63  54.43
## 12042            14 years old Female               9th grade   1.63  58.97
## 12043            14 years old Female               9th grade   1.63  52.16
## 12044            14 years old   Male               9th grade   1.63  48.54
## 12045            15 years old   Male              10th grade   1.63 113.40
## 12046            16 years old Female              10th grade   1.63  61.24
## 12047            17 years old Female              12th grade   1.63  98.43
## 12048            15 years old Female               9th grade   1.63  49.44
## 12049            16 years old   Male              11th grade   1.63  54.43
## 12050   18 years old or older   Male              12th grade   1.63  56.70
## 12051            16 years old Female              11th grade   1.63  93.44
## 12052            15 years old Female              10th grade   1.63  45.36
## 12053            15 years old Female              10th grade   1.63  56.70
## 12054            14 years old Female               9th grade   1.63  63.50
## 12055            14 years old Female               9th grade   1.63  68.04
## 12056            16 years old Female              10th grade   1.63 104.33
## 12057            17 years old Female              12th grade   1.63  62.14
## 12058            17 years old   Male              12th grade   1.63  61.24
## 12059            15 years old   Male              10th grade   1.63  53.52
## 12060            17 years old Female              11th grade   1.63  54.43
## 12061            14 years old Female               9th grade   1.63  58.97
## 12062            14 years old   Male               9th grade   1.63  52.16
## 12063            15 years old Female               9th grade   1.63  68.95
## 12064            15 years old   Male               9th grade   1.63  45.36
## 12065            16 years old Female              11th grade   1.63  68.04
## 12066            16 years old Female              11th grade   1.63  75.30
## 12067            15 years old Female              10th grade   1.63  54.43
## 12068            15 years old Female               9th grade   1.63  52.16
## 12069            16 years old Female              10th grade   1.63  79.38
## 12070            17 years old Female              11th grade   1.63  90.72
## 12071            14 years old   Male               9th grade   1.63  63.50
## 12072            15 years old   Male               9th grade   1.63  77.11
## 12073            17 years old Female              11th grade   1.63  99.79
## 12074            17 years old Female              12th grade   1.63  80.74
## 12075            14 years old Female               9th grade   1.63  51.71
## 12076   18 years old or older Female              12th grade   1.63  63.50
## 12077            16 years old   Male              10th grade   1.63  68.04
## 12078            15 years old Female               9th grade   1.63  58.97
## 12079            15 years old   Male               9th grade   1.63  45.36
## 12080            14 years old Female               9th grade   1.63  63.50
## 12081            16 years old Female              10th grade   1.63  54.43
## 12082            16 years old   Male              10th grade   1.63  58.97
## 12083            16 years old   Male              10th grade   1.63  50.80
## 12084            15 years old Female              10th grade   1.63  63.50
## 12085            16 years old Female              10th grade   1.63  50.80
## 12086            15 years old   Male               9th grade   1.63  57.61
## 12087            15 years old Female              10th grade   1.63  63.50
## 12088            16 years old Female              11th grade   1.63  56.70
## 12089            15 years old Female              10th grade   1.63  68.04
## 12090            15 years old Female               9th grade   1.63  70.76
## 12091            14 years old Female               9th grade   1.63  58.97
## 12092            14 years old   Male               9th grade   1.63  54.89
## 12093            16 years old   Male              10th grade   1.63  53.52
## 12094            16 years old   Male              10th grade   1.63  73.03
## 12095            14 years old   Male               9th grade   1.63  52.62
## 12096            14 years old Female               9th grade   1.63  63.50
## 12097            15 years old Female              10th grade   1.63  54.43
## 12098            17 years old Female              12th grade   1.63  58.97
## 12099            14 years old   Male               9th grade   1.63  63.50
## 12100            15 years old Female              10th grade   1.63  49.90
## 12101            17 years old Female              12th grade   1.63  58.97
## 12102            17 years old Female              12th grade   1.63  81.65
## 12103            16 years old Female              11th grade   1.63  58.97
## 12104            15 years old Female              10th grade   1.63  56.25
## 12105            16 years old Female              10th grade   1.63  54.43
## 12106            16 years old Female              10th grade   1.63  73.48
## 12107            16 years old   Male              10th grade   1.63  86.18
## 12108            15 years old Female               9th grade   1.63  49.90
## 12109            17 years old Female              11th grade   1.63  65.77
## 12110            14 years old Female               9th grade   1.63  91.17
## 12111            15 years old Female               9th grade   1.63  77.11
## 12112            15 years old Female               9th grade   1.63  63.50
## 12113            15 years old Female              10th grade   1.63  72.58
## 12114            14 years old   Male               9th grade   1.63  53.98
## 12115            15 years old   Male               9th grade   1.63  56.70
## 12116            15 years old Female               9th grade   1.63  81.65
## 12117            17 years old Female              11th grade   1.63  61.24
## 12118            15 years old Female              10th grade   1.63  57.15
## 12119            16 years old Female              10th grade   1.63  51.71
## 12120            15 years old Female               9th grade   1.63  54.43
## 12121            16 years old Female              11th grade   1.63  59.42
## 12122            15 years old Female              10th grade   1.63  53.52
## 12123            15 years old Female               9th grade   1.63  58.51
## 12124            16 years old Female              11th grade   1.63  68.04
## 12125            14 years old Female               9th grade   1.63  66.68
## 12126            14 years old Female               9th grade   1.63  59.88
## 12127            15 years old Female              10th grade   1.63  63.50
## 12128   18 years old or older   Male              12th grade   1.63  68.04
## 12129            15 years old Female              10th grade   1.63  54.43
## 12130            16 years old Female              11th grade   1.63  54.43
## 12131            16 years old Female              11th grade   1.63  51.71
## 12132   18 years old or older Female              12th grade   1.63  58.97
## 12133            15 years old Female              10th grade   1.63  53.98
## 12134            15 years old Female               9th grade   1.63  39.92
## 12135            15 years old   Male               9th grade   1.63  54.43
## 12136   18 years old or older Female              12th grade   1.63  70.31
## 12137            17 years old Female              11th grade   1.63  61.24
## 12138   18 years old or older Female              12th grade   1.63  56.25
## 12139            15 years old   Male               9th grade   1.63  54.43
## 12140   18 years old or older Female              12th grade   1.63  56.25
## 12141            16 years old Female              10th grade   1.63  53.52
## 12142            17 years old Female              11th grade   1.63  56.70
## 12143            16 years old Female              10th grade   1.63  49.90
## 12144            16 years old Female              11th grade   1.63  79.38
## 12145   18 years old or older Female              12th grade   1.63  56.25
## 12146            15 years old   Male               9th grade   1.63  79.83
## 12147            14 years old   Male               9th grade   1.63  49.90
## 12148            14 years old Female               9th grade   1.63  65.77
## 12149            14 years old Female               9th grade   1.63  61.24
## 12150            14 years old   Male               9th grade   1.63  65.77
## 12151            15 years old Female               9th grade   1.63  58.97
## 12152            15 years old Female               9th grade   1.63  56.70
## 12153            15 years old   Male               9th grade   1.63  58.97
## 12154            15 years old Female               9th grade   1.63  56.70
## 12155            15 years old Female               9th grade   1.63  61.24
## 12156            15 years old Female               9th grade   1.63  46.72
## 12157            15 years old   Male               9th grade   1.63  63.50
## 12158            15 years old Female               9th grade   1.63  45.36
## 12159            15 years old   Male               9th grade   1.63  49.44
## 12160            15 years old Female               9th grade   1.63  86.18
## 12161            15 years old Female               9th grade   1.63  54.43
## 12162            14 years old Female               9th grade   1.63  56.25
## 12163            15 years old   Male               9th grade   1.63  64.86
## 12164            14 years old Female               9th grade   1.63  51.71
## 12165            15 years old Female               9th grade   1.63  40.82
## 12166            15 years old Female               9th grade   1.63  54.89
## 12167            15 years old Female               9th grade   1.63  62.60
## 12168            15 years old   Male               9th grade   1.63  44.00
## 12169            14 years old Female               9th grade   1.63  54.43
## 12170            15 years old Female               9th grade   1.63  54.89
## 12171            15 years old Female               9th grade   1.63  52.16
## 12172            15 years old Female               9th grade   1.63  66.23
## 12173            14 years old Female               9th grade   1.63  51.26
## 12174            15 years old   Male               9th grade   1.63  45.81
## 12175            15 years old Female               9th grade   1.63 104.33
## 12176            15 years old Female               9th grade   1.63  62.14
## 12177            14 years old   Male               9th grade   1.63  67.13
## 12178            15 years old Female               9th grade   1.63  60.78
## 12179            15 years old Female               9th grade   1.63  49.90
## 12180            17 years old Female              12th grade   1.60  47.17
## 12181            16 years old Female              11th grade   1.60  70.31
## 12182            16 years old Female              11th grade   1.60  44.45
## 12183            15 years old   Male               9th grade   1.60  67.59
## 12184            15 years old Female              10th grade   1.60  53.07
## 12185            15 years old Female               9th grade   1.60  66.23
## 12186            17 years old Female              11th grade   1.60  48.54
## 12187            17 years old Female              11th grade   1.60  56.70
## 12188            15 years old Female               9th grade   1.60  70.76
## 12189            15 years old Female               9th grade   1.60 104.33
## 12190            17 years old Female              11th grade   1.60  68.95
## 12191            16 years old Female              10th grade   1.60  56.70
## 12192            15 years old Female              10th grade   1.60  70.76
## 12193            14 years old Female               9th grade   1.60  76.20
## 12194            15 years old Female              10th grade   1.60  50.80
## 12195   18 years old or older Female              12th grade   1.60  81.65
## 12196   18 years old or older Female              12th grade   1.60  70.31
## 12197   18 years old or older Female              12th grade   1.60  50.80
## 12198            17 years old Female              12th grade   1.60  97.98
## 12199            16 years old Female              10th grade   1.60  49.44
## 12200            17 years old Female              12th grade   1.60  62.60
## 12201            17 years old Female              12th grade   1.60  56.70
## 12202            17 years old Female              12th grade   1.60  68.04
## 12203            15 years old Female               9th grade   1.60  72.12
## 12204            16 years old Female              10th grade   1.60  49.90
## 12205            17 years old Female              11th grade   1.60  83.46
## 12206            14 years old Female               9th grade   1.60  56.70
## 12207            15 years old Female               9th grade   1.60  58.97
## 12208            17 years old Female              12th grade   1.60  86.18
## 12209            15 years old Female               9th grade   1.60  46.72
## 12210            14 years old Female               9th grade   1.60  47.63
## 12211            15 years old Female              10th grade   1.60  72.58
## 12212            16 years old Female              11th grade   1.60  67.13
## 12213            17 years old Female              12th grade   1.60  56.25
## 12214            17 years old Female              12th grade   1.60  83.92
## 12215            15 years old Female               9th grade   1.60  54.43
## 12216            15 years old Female               9th grade   1.60  57.15
## 12217   18 years old or older Female              12th grade   1.60  76.20
## 12218            14 years old Female               9th grade   1.60  42.64
## 12219            15 years old Female              10th grade   1.60  46.27
## 12220            14 years old Female               9th grade   1.60  71.22
## 12221            14 years old Female               9th grade   1.60  58.06
## 12222            16 years old Female              11th grade   1.60  72.58
## 12223            16 years old Female              11th grade   1.60  90.72
## 12224            16 years old Female              11th grade   1.60  79.83
## 12225            16 years old Female              11th grade   1.60  51.26
## 12226            15 years old Female              10th grade   1.60  84.37
## 12227            16 years old Female              11th grade   1.60  49.90
## 12228            16 years old Female              10th grade   1.60  51.71
## 12229            15 years old   Male              10th grade   1.60  55.34
## 12230   18 years old or older Female              12th grade   1.60  55.79
## 12231            17 years old Female              12th grade   1.60  58.97
## 12232            17 years old Female              12th grade   1.60  48.54
## 12233            17 years old   Male              12th grade   1.60  65.77
## 12234            17 years old Female              12th grade   1.60  58.97
## 12235            14 years old Female               9th grade   1.60  47.63
## 12236            17 years old   Male              12th grade   1.60  49.90
## 12237            16 years old Female              11th grade   1.60  70.31
## 12238            14 years old Female               9th grade   1.60  56.70
## 12239            16 years old Female              10th grade   1.60  68.04
## 12240            17 years old Female              11th grade   1.60  58.97
## 12241            16 years old Female              11th grade   1.60  55.79
## 12242            17 years old Female              12th grade   1.60  56.70
## 12243            14 years old   Male               9th grade   1.60  70.31
## 12244            16 years old Female              11th grade   1.60  56.70
## 12245            16 years old Female              11th grade   1.60  59.88
## 12246            16 years old Female              11th grade   1.60  68.04
## 12247            15 years old Female               9th grade   1.60  56.70
## 12248            14 years old   Male               9th grade   1.60  46.27
## 12249            16 years old Female              11th grade   1.60  56.25
## 12250            15 years old Female               9th grade   1.60  56.70
## 12251            15 years old Female              10th grade   1.60  51.26
## 12252            14 years old Female               9th grade   1.60  75.75
## 12253            15 years old   Male               9th grade   1.60  81.65
## 12254            15 years old Female              10th grade   1.60  49.44
## 12255            14 years old Female               9th grade   1.60  63.50
## 12256            17 years old Female              12th grade   1.60  49.90
## 12257            15 years old Female               9th grade   1.60  40.82
## 12258            14 years old Female               9th grade   1.60  48.99
## 12259            16 years old Female              11th grade   1.60  52.16
## 12260   18 years old or older Female              12th grade   1.60  49.90
## 12261            14 years old Female               9th grade   1.60  71.67
## 12262            14 years old   Male               9th grade   1.60  36.29
## 12263            14 years old Female               9th grade   1.60  58.97
## 12264            14 years old   Male               9th grade   1.60  75.30
## 12265            17 years old Female              12th grade   1.60  77.11
## 12266            17 years old Female              12th grade   1.60  55.79
## 12267            17 years old Female              11th grade   1.60  54.43
## 12268            15 years old Female              10th grade   1.60  49.90
## 12269            17 years old Female              12th grade   1.60  55.79
## 12270   18 years old or older Female              12th grade   1.60  56.70
## 12271            16 years old Female              10th grade   1.60  55.79
## 12272            16 years old Female              10th grade   1.60  68.04
## 12273   18 years old or older   Male              12th grade   1.60  63.50
## 12274            15 years old Female               9th grade   1.60  66.23
## 12275            17 years old Female              11th grade   1.60  53.52
## 12276            16 years old Female              10th grade   1.60  47.63
## 12277            16 years old Female              11th grade   1.60  52.62
## 12278            15 years old Female              10th grade   1.60  63.50
## 12279            16 years old Female              10th grade   1.60  57.15
## 12280            17 years old Female              11th grade   1.60  56.70
## 12281   18 years old or older Female              12th grade   1.60  58.51
## 12282            16 years old Female              11th grade   1.60  41.28
## 12283            17 years old Female              11th grade   1.60  56.70
## 12284            15 years old Female               9th grade   1.60  58.51
## 12285            15 years old Female               9th grade   1.60  51.26
## 12286            15 years old Female               9th grade   1.60  54.43
## 12287   18 years old or older Female              12th grade   1.60  63.50
## 12288            17 years old Female              12th grade   1.60  36.29
## 12289            16 years old Female              11th grade   1.60  44.00
## 12290            17 years old Female              12th grade   1.60  86.18
## 12291            17 years old Female              12th grade   1.60  61.24
## 12292            17 years old Female              12th grade   1.60  49.90
## 12293            16 years old   Male              10th grade   1.60  49.90
## 12294            17 years old Female              10th grade   1.60  72.12
## 12295            14 years old Female               9th grade   1.60  58.06
## 12296            15 years old Female               9th grade   1.60  53.98
## 12297            14 years old Female               9th grade   1.60  58.97
## 12298            17 years old Female              11th grade   1.60  65.77
## 12299            17 years old Female              11th grade   1.60  61.24
## 12300            15 years old Female              10th grade   1.60  52.16
## 12301            17 years old Female              11th grade   1.60  50.35
## 12302            16 years old Female              10th grade   1.60  57.15
## 12303            16 years old Female              11th grade   1.60  58.97
## 12304            15 years old Female              10th grade   1.60  93.90
## 12305            15 years old Female              10th grade   1.60  46.72
## 12306            15 years old Female              10th grade   1.60  68.04
## 12307            15 years old   Male               9th grade   1.60  54.43
## 12308            14 years old Female               9th grade   1.60  47.63
## 12309            14 years old Female               9th grade   1.60  49.44
## 12310            15 years old Female               9th grade   1.60  45.36
## 12311            15 years old Female               9th grade   1.60  52.16
## 12312            16 years old Female              10th grade   1.60  46.72
## 12313            14 years old   Male               9th grade   1.60  50.35
## 12314            15 years old Female              10th grade   1.60  79.38
## 12315            15 years old Female              10th grade   1.60  56.70
## 12316            14 years old Female               9th grade   1.60  52.16
## 12317            16 years old Female              11th grade   1.60  71.67
## 12318            15 years old Female              10th grade   1.60  49.90
## 12319            17 years old Female              11th grade   1.60  55.34
## 12320            16 years old Female              10th grade   1.60  68.04
## 12321            16 years old Female               9th grade   1.60  52.62
## 12322            16 years old Female              10th grade   1.60  46.72
## 12323            14 years old   Male               9th grade   1.60  75.75
## 12324            15 years old Female              10th grade   1.60  49.90
## 12325   18 years old or older   Male              12th grade   1.60  63.50
## 12326            16 years old Female              11th grade   1.60 104.33
## 12327   18 years old or older Female              12th grade   1.60  52.16
## 12328            17 years old Female              11th grade   1.60  74.84
## 12329            16 years old Female              10th grade   1.60  45.36
## 12330            14 years old Female               9th grade   1.60  45.36
## 12331            15 years old Female              10th grade   1.60  42.64
## 12332            15 years old   Male              10th grade   1.60  58.06
## 12333            17 years old Female              12th grade   1.60  71.67
## 12334            16 years old Female              11th grade   1.60  68.04
## 12335            15 years old Female              10th grade   1.60  60.33
## 12336            14 years old Female               9th grade   1.60  48.99
## 12337            15 years old Female              10th grade   1.60  46.72
## 12338            16 years old Female              10th grade   1.60  56.70
## 12339            16 years old Female              10th grade   1.60  52.16
## 12340            15 years old Female               9th grade   1.60  53.07
## 12341            14 years old Female               9th grade   1.60  40.82
## 12342            15 years old Female              10th grade   1.60  45.81
## 12343            15 years old Female              10th grade   1.60  83.92
## 12344            17 years old Female              12th grade   1.60  52.16
## 12345            15 years old Female              10th grade   1.60  53.52
## 12346            15 years old Female               9th grade   1.60  68.04
## 12347            16 years old Female               9th grade   1.60  58.97
## 12348            17 years old Female              12th grade   1.60  64.41
## 12349            15 years old   Male              10th grade   1.60  54.43
## 12350            16 years old Female              10th grade   1.60  31.75
## 12351            15 years old Female               9th grade   1.60  52.16
## 12352            16 years old Female              10th grade   1.60  65.77
## 12353            14 years old Female               9th grade   1.60  44.45
## 12354   18 years old or older Female              12th grade   1.60  68.95
## 12355            16 years old Female              11th grade   1.60  72.58
## 12356            17 years old   Male              11th grade   1.60  65.77
## 12357            16 years old   Male              10th grade   1.60  68.04
## 12358            17 years old Female              12th grade   1.60  86.18
## 12359            17 years old Female              12th grade   1.60  90.72
## 12360            14 years old Female               9th grade   1.60  57.15
## 12361            15 years old Female              10th grade   1.60  83.92
## 12362            16 years old Female              10th grade   1.60  73.94
## 12363            16 years old Female              10th grade   1.60  68.04
## 12364   18 years old or older   Male              12th grade   1.60  45.36
## 12365            17 years old Female              11th grade   1.60 104.33
## 12366            17 years old Female              12th grade   1.60  58.97
## 12367            16 years old Female              10th grade   1.60  47.17
## 12368            15 years old Female               9th grade   1.60  56.70
## 12369            17 years old Female              12th grade   1.60  58.97
## 12370   18 years old or older Female              12th grade   1.60  49.90
## 12371            15 years old Female               9th grade   1.60  77.11
## 12372            14 years old Female               9th grade   1.60  51.71
## 12373            17 years old Female              12th grade   1.60  76.66
## 12374            15 years old Female               9th grade   1.60  49.90
## 12375            16 years old Female              10th grade   1.60  79.38
## 12376            16 years old Female              10th grade   1.60  54.43
## 12377            16 years old Female              10th grade   1.60  57.61
## 12378            16 years old Female              10th grade   1.60  65.77
## 12379            14 years old Female               9th grade   1.60 117.94
## 12380   18 years old or older Female              12th grade   1.60  64.41
## 12381            17 years old Female              10th grade   1.60  49.90
## 12382            14 years old Female               9th grade   1.60  58.97
## 12383            17 years old Female              12th grade   1.60  69.85
## 12384            16 years old Female              11th grade   1.60  54.43
## 12385            15 years old Female              10th grade   1.60  53.07
## 12386            16 years old Female              11th grade   1.60  58.06
## 12387            16 years old Female              10th grade   1.60  45.36
## 12388            17 years old Female              11th grade   1.60  58.97
## 12389   18 years old or older Female              12th grade   1.60  47.63
## 12390            15 years old Female               9th grade   1.60  74.84
## 12391   18 years old or older Female              12th grade   1.60  47.17
## 12392            14 years old Female               9th grade   1.60  81.65
## 12393            14 years old Female               9th grade   1.60  52.16
## 12394            17 years old Female              12th grade   1.60  58.97
## 12395            15 years old Female               9th grade   1.60  43.09
## 12396            14 years old Female               9th grade   1.60  95.71
## 12397            15 years old Female               9th grade   1.60  43.55
## 12398            17 years old Female              11th grade   1.60  64.86
## 12399            17 years old Female              11th grade   1.60  56.70
## 12400            16 years old Female              11th grade   1.60  54.43
## 12401            16 years old Female              11th grade   1.60  75.75
## 12402            15 years old Female              10th grade   1.60  72.58
## 12403            17 years old Female              12th grade   1.60  65.77
## 12404   18 years old or older Female              12th grade   1.60  58.97
## 12405            14 years old Female               9th grade   1.60  68.04
## 12406            17 years old Female              12th grade   1.60  56.70
## 12407            15 years old Female              10th grade   1.60  58.97
## 12408            14 years old Female               9th grade   1.60  61.24
## 12409            15 years old Female              10th grade   1.60  80.29
## 12410            15 years old Female               9th grade   1.60  52.62
## 12411            16 years old Female              10th grade   1.60  55.34
## 12412            16 years old Female              11th grade   1.60  53.07
## 12413            15 years old Female              10th grade   1.60  58.97
## 12414            16 years old   Male              11th grade   1.60  62.60
## 12415            15 years old Female              10th grade   1.60  65.77
## 12416            17 years old Female              11th grade   1.60  58.97
## 12417            14 years old Female               9th grade   1.60  54.43
## 12418   18 years old or older Female              12th grade   1.60  63.96
## 12419            15 years old Female              10th grade   1.60  49.44
## 12420   18 years old or older Female              12th grade   1.60  74.84
## 12421   18 years old or older Female              12th grade   1.60  74.84
## 12422            14 years old Female               9th grade   1.60  36.29
## 12423            17 years old Female              12th grade   1.60  70.31
## 12424            16 years old   Male              10th grade   1.60  61.24
## 12425            14 years old Female               9th grade   1.60  47.17
## 12426            15 years old Female               9th grade   1.60  65.77
## 12427            17 years old Female              12th grade   1.60  56.25
## 12428            14 years old   Male               9th grade   1.60  49.90
## 12429            14 years old Female               9th grade   1.60  48.99
## 12430            15 years old Female              10th grade   1.60  63.50
## 12431   18 years old or older Female              12th grade   1.60  57.61
## 12432            16 years old Female              11th grade   1.60  81.65
## 12433            16 years old Female              10th grade   1.60  83.92
## 12434            15 years old Female              10th grade   1.60  63.50
## 12435            15 years old Female               9th grade   1.60  55.79
## 12436            14 years old   Male               9th grade   1.60  43.09
## 12437            15 years old Female               9th grade   1.60  59.88
## 12438            17 years old Female              12th grade   1.60  55.34
## 12439            15 years old Female              10th grade   1.60  81.65
## 12440            17 years old Female              11th grade   1.60  53.98
## 12441            15 years old Female              10th grade   1.60  71.22
## 12442            17 years old Female              12th grade   1.60  70.31
## 12443            15 years old Female              10th grade   1.60  49.90
## 12444            17 years old Female              12th grade   1.60  49.44
## 12445            16 years old Female              10th grade   1.60  48.99
## 12446            15 years old Female              10th grade   1.60  55.79
## 12447            15 years old Female               9th grade   1.60  54.43
## 12448            14 years old Female               9th grade   1.60  57.15
## 12449            17 years old Female              11th grade   1.60  61.24
## 12450            17 years old Female              12th grade   1.60  49.90
## 12451            14 years old Female               9th grade   1.60  53.52
## 12452   18 years old or older Female              12th grade   1.60  49.90
## 12453            14 years old Female               9th grade   1.60  48.99
## 12454   18 years old or older Female              12th grade   1.60  63.50
## 12455            17 years old Female              12th grade   1.60  58.51
## 12456            15 years old Female              10th grade   1.60  56.70
## 12457            15 years old Female               9th grade   1.60  55.79
## 12458            15 years old Female               9th grade   1.60  86.18
## 12459            15 years old   Male               9th grade   1.60  67.13
## 12460            16 years old Female              10th grade   1.60  89.81
## 12461            16 years old Female              10th grade   1.60  50.80
## 12462            15 years old Female              10th grade   1.60  63.50
## 12463            15 years old Female               9th grade   1.60  61.24
## 12464            17 years old Female              11th grade   1.60  57.15
## 12465            17 years old Female              10th grade   1.60  90.72
## 12466            17 years old Female              11th grade   1.60  58.97
## 12467            16 years old   Male              11th grade   1.60  58.51
## 12468            16 years old Female              11th grade   1.60  77.11
## 12469            17 years old Female              12th grade   1.60  57.61
## 12470            15 years old Female              10th grade   1.60  56.70
## 12471   18 years old or older Female              12th grade   1.60  49.90
## 12472   18 years old or older Female              12th grade   1.60  81.65
## 12473            15 years old Female               9th grade   1.60  86.18
## 12474            17 years old Female              12th grade   1.60  50.80
## 12475   18 years old or older Female              12th grade   1.60  72.58
## 12476            16 years old Female              10th grade   1.60  54.43
## 12477            16 years old Female              11th grade   1.60  77.57
## 12478            16 years old Female              11th grade   1.60  48.08
## 12479            14 years old Female               9th grade   1.60  68.04
## 12480            16 years old Female              10th grade   1.60  44.91
## 12481            16 years old Female              11th grade   1.60  72.58
## 12482            15 years old Female              10th grade   1.60  52.62
## 12483            15 years old Female               9th grade   1.60  47.63
## 12484            15 years old Female              10th grade   1.60  49.90
## 12485            17 years old Female              11th grade   1.60  63.50
## 12486            15 years old Female               9th grade   1.60  68.04
## 12487            15 years old Female               9th grade   1.60  59.88
## 12488   18 years old or older Female              12th grade   1.60  52.62
## 12489            17 years old Female              11th grade   1.60 117.94
## 12490            17 years old Female              11th grade   1.60  56.70
## 12491   18 years old or older Female              12th grade   1.60  86.18
## 12492            15 years old Female               9th grade   1.60  84.82
## 12493            14 years old Female               9th grade   1.60  44.45
## 12494   18 years old or older Female              12th grade   1.60  64.41
## 12495            17 years old Female              12th grade   1.60  49.90
## 12496            15 years old Female              10th grade   1.60  51.26
## 12497            16 years old Female              10th grade   1.60  43.09
## 12498            16 years old Female              11th grade   1.60  59.88
## 12499            15 years old Female              10th grade   1.60  50.35
## 12500            15 years old Female              10th grade   1.60  72.58
## 12501            15 years old Female              10th grade   1.60  51.71
## 12502            16 years old Female              10th grade   1.60  58.97
## 12503            17 years old Female              12th grade   1.60  53.07
## 12504            17 years old Female              11th grade   1.60  54.43
## 12505            15 years old Female              10th grade   1.60  49.90
## 12506            16 years old Female              10th grade   1.60  54.43
## 12507            16 years old Female              11th grade   1.60  52.16
## 12508            17 years old Female              12th grade   1.60  45.81
## 12509            17 years old Female              12th grade   1.60  71.22
## 12510            16 years old Female              11th grade   1.60  58.97
## 12511            15 years old Female               9th grade   1.60  48.54
## 12512            15 years old Female               9th grade   1.60  79.38
## 12513            16 years old Female              11th grade   1.60  43.55
## 12514            16 years old Female              11th grade   1.60  55.34
## 12515            17 years old Female              12th grade   1.60  56.70
## 12516            17 years old Female              12th grade   1.60  63.50
## 12517            14 years old Female               9th grade   1.60  86.18
## 12518            17 years old Female              11th grade   1.60  56.70
## 12519            16 years old Female              11th grade   1.60  61.24
## 12520   18 years old or older Female              12th grade   1.60 154.22
## 12521            17 years old Female              12th grade   1.60  68.04
## 12522            15 years old Female              10th grade   1.60  44.45
## 12523   18 years old or older Female              12th grade   1.60  54.43
## 12524            15 years old Female               9th grade   1.60  49.90
## 12525            15 years old Female               9th grade   1.60  58.97
## 12526            16 years old Female              10th grade   1.60  58.97
## 12527            16 years old Female              10th grade   1.60  53.07
## 12528            15 years old Female               9th grade   1.60  63.50
## 12529            15 years old Female               9th grade   1.60  54.43
## 12530            15 years old Female              10th grade   1.60  65.77
## 12531   18 years old or older Female              12th grade   1.60  68.04
## 12532            17 years old Female              12th grade   1.60  47.63
## 12533            15 years old Female               9th grade   1.60  67.13
## 12534            15 years old Female              10th grade   1.60  56.70
## 12535            17 years old Female              11th grade   1.60  56.70
## 12536            17 years old Female              10th grade   1.60  72.58
## 12537            15 years old   Male               9th grade   1.60  58.97
## 12538            16 years old Female              11th grade   1.60  48.54
## 12539            16 years old Female              11th grade   1.60  54.43
## 12540            17 years old Female              11th grade   1.60  63.05
## 12541            15 years old Female               9th grade   1.60  73.94
## 12542            17 years old   Male              12th grade   1.60  49.44
## 12543            14 years old Female               9th grade   1.60  63.96
## 12544            15 years old Female               9th grade   1.60  54.43
## 12545   18 years old or older Female              12th grade   1.60  57.15
## 12546            16 years old Female              11th grade   1.60  50.80
## 12547            16 years old Female              10th grade   1.60  56.70
## 12548            14 years old Female               9th grade   1.60  48.54
## 12549            17 years old Female              11th grade   1.60  49.90
## 12550            15 years old Female               9th grade   1.60  52.16
## 12551            15 years old   Male               9th grade   1.60  63.50
## 12552            15 years old Female               9th grade   1.60  88.45
## 12553            17 years old Female              11th grade   1.60  48.54
## 12554            16 years old Female              10th grade   1.60  48.54
## 12555            17 years old   Male              11th grade   1.60  45.36
## 12556            16 years old Female              11th grade   1.60  56.70
## 12557            16 years old Female              10th grade   1.60  64.86
## 12558   18 years old or older Female              12th grade   1.60  49.90
## 12559            14 years old Female               9th grade   1.60  48.54
## 12560            15 years old   Male               9th grade   1.60  50.35
## 12561            15 years old Female               9th grade   1.60  75.75
## 12562            15 years old Female               9th grade   1.60  56.70
## 12563            14 years old   Male               9th grade   1.60  49.90
## 12564   18 years old or older Female              12th grade   1.60  69.40
## 12565            15 years old Female              10th grade   1.60  53.07
## 12566            17 years old Female              11th grade   1.60  57.15
## 12567            16 years old   Male              10th grade   1.60  45.36
## 12568            14 years old   Male               9th grade   1.60  78.02
## 12569   18 years old or older Female              12th grade   1.60  74.84
## 12570   18 years old or older Female              12th grade   1.60  49.90
## 12571            17 years old Female              11th grade   1.60  99.79
## 12572            15 years old Female              10th grade   1.60  65.77
## 12573            15 years old Female               9th grade   1.60  53.07
## 12574            15 years old Female               9th grade   1.60  82.10
## 12575            17 years old Female              12th grade   1.60 109.77
## 12576            15 years old Female              10th grade   1.60  46.27
## 12577            14 years old Female               9th grade   1.60  77.11
## 12578            17 years old Female              11th grade   1.60  56.70
## 12579            16 years old Female              11th grade   1.60  63.50
## 12580            16 years old Female              10th grade   1.60  52.16
## 12581            17 years old Female              12th grade   1.60 138.80
## 12582            16 years old Female              10th grade   1.60  56.70
## 12583            16 years old Female              12th grade   1.60  67.59
## 12584            16 years old Female              10th grade   1.60  68.04
## 12585   18 years old or older Female              12th grade   1.60  81.65
## 12586            16 years old Female              10th grade   1.60  61.24
## 12587   18 years old or older Female              12th grade   1.60  83.92
## 12588   18 years old or older Female              12th grade   1.60  56.70
## 12589            17 years old Female              11th grade   1.60  46.27
## 12590            17 years old Female              12th grade   1.60  80.29
## 12591            17 years old Female              12th grade   1.60  61.24
## 12592            17 years old Female              12th grade   1.60  57.61
## 12593            17 years old   Male              10th grade   1.60  69.40
## 12594            16 years old Female              10th grade   1.60  54.89
## 12595            17 years old Female              12th grade   1.60  49.90
## 12596            14 years old Female               9th grade   1.60  60.33
## 12597            17 years old Female              12th grade   1.60  70.31
## 12598   18 years old or older Female              12th grade   1.60  59.88
## 12599   18 years old or older Female              12th grade   1.60  86.18
## 12600            15 years old Female              10th grade   1.60  50.80
## 12601            16 years old Female              10th grade   1.60  53.52
## 12602            17 years old Female              10th grade   1.60  39.01
## 12603   18 years old or older Female              12th grade   1.60  72.58
## 12604            16 years old Female              10th grade   1.60  71.22
## 12605            16 years old   Male              10th grade   1.60  54.43
## 12606   18 years old or older Female              11th grade   1.60  92.99
## 12607            17 years old Female              11th grade   1.60 113.40
## 12608            17 years old Female              11th grade   1.60  68.04
## 12609            16 years old Female              10th grade   1.60  45.36
## 12610            16 years old Female              10th grade   1.60  49.90
## 12611            15 years old   Male               9th grade   1.60  69.40
## 12612            15 years old Female               9th grade   1.60  46.27
## 12613            14 years old Female               9th grade   1.60  53.52
## 12614            14 years old Female               9th grade   1.60  54.43
## 12615            14 years old Female               9th grade   1.60  83.92
## 12616            17 years old Female              12th grade   1.60  63.50
## 12617   18 years old or older Female              12th grade   1.60  66.23
## 12618            15 years old Female              10th grade   1.60  61.24
## 12619            16 years old Female              11th grade   1.60  61.69
## 12620            16 years old Female              11th grade   1.60  53.07
## 12621            17 years old Female              12th grade   1.60  90.72
## 12622            14 years old   Male               9th grade   1.60  45.81
## 12623            17 years old Female              11th grade   1.60  50.35
## 12624            16 years old Female              11th grade   1.60  53.52
## 12625            16 years old Female              11th grade   1.60  79.83
## 12626            14 years old   Male               9th grade   1.60  58.51
## 12627            14 years old Female               9th grade   1.60  50.80
## 12628   18 years old or older   Male              12th grade   1.60  55.79
## 12629            17 years old Female              12th grade   1.60  46.27
## 12630   18 years old or older Female              12th grade   1.60  61.69
## 12631            17 years old Female              11th grade   1.60  49.90
## 12632            14 years old Female               9th grade   1.60  52.16
## 12633   18 years old or older Female              12th grade   1.60  81.65
## 12634            16 years old Female              10th grade   1.60  63.50
## 12635            14 years old   Male               9th grade   1.60  86.18
## 12636            14 years old Female               9th grade   1.60  49.90
## 12637            16 years old Female              11th grade   1.60  56.70
## 12638            14 years old   Male               9th grade   1.60  77.11
## 12639            17 years old Female              11th grade   1.60  68.04
## 12640            16 years old   Male              11th grade   1.60  41.73
## 12641            16 years old Female              11th grade   1.60 104.33
## 12642            17 years old Female              12th grade   1.60  60.78
## 12643            17 years old Female              11th grade   1.60  60.33
## 12644            16 years old Female              11th grade   1.60  56.70
## 12645            14 years old Female               9th grade   1.60  57.15
## 12646            15 years old Female               9th grade   1.60  60.78
## 12647            14 years old Female               9th grade   1.60  63.50
## 12648            15 years old Female              10th grade   1.60  54.43
## 12649            15 years old   Male              10th grade   1.60  57.15
## 12650            14 years old Female               9th grade   1.60  60.78
## 12651            16 years old Female              10th grade   1.60  52.16
## 12652            15 years old Female               9th grade   1.60  54.43
## 12653   18 years old or older Female              12th grade   1.60  49.90
## 12654            15 years old Female              10th grade   1.60  52.16
## 12655            17 years old Female              12th grade   1.60  70.76
## 12656            15 years old Female              10th grade   1.60  58.97
## 12657            16 years old Female              11th grade   1.60  54.43
## 12658            17 years old Female              12th grade   1.60  61.24
## 12659            15 years old Female              10th grade   1.60  44.45
## 12660            16 years old Female              11th grade   1.60  99.79
## 12661            16 years old Female              10th grade   1.60  72.58
## 12662            17 years old   Male              12th grade   1.60  54.43
## 12663            15 years old   Male              10th grade   1.60  68.04
## 12664            17 years old Female              10th grade   1.60  53.52
## 12665            16 years old Female              10th grade   1.60  56.70
## 12666            16 years old Female              10th grade   1.60  52.16
## 12667            15 years old   Male              10th grade   1.60  49.90
## 12668            16 years old Female              10th grade   1.60  47.17
## 12669            15 years old Female              10th grade   1.60  56.70
## 12670            16 years old Female              10th grade   1.60  45.36
## 12671            15 years old Female              10th grade   1.60  64.41
## 12672            16 years old   Male              10th grade   1.60  44.00
## 12673            15 years old   Male               9th grade   1.60  62.14
## 12674            16 years old Female              11th grade   1.60  49.90
## 12675            17 years old Female              12th grade   1.60  74.84
## 12676            16 years old Female              11th grade   1.60  40.82
## 12677            16 years old Female              11th grade   1.60  72.58
## 12678            17 years old Female              11th grade   1.60  61.24
## 12679   18 years old or older Female              12th grade   1.60  58.51
## 12680            16 years old Female              10th grade   1.60  63.50
## 12681            16 years old Female              10th grade   1.60  60.78
## 12682            14 years old Female               9th grade   1.60  58.51
## 12683            14 years old Female               9th grade   1.60  56.70
## 12684            16 years old Female              11th grade   1.60  57.15
## 12685            15 years old Female              10th grade   1.60  58.97
## 12686            13 years old Female               9th grade   1.60  64.86
## 12687            14 years old Female               9th grade   1.60  56.70
## 12688            15 years old Female               9th grade   1.60  58.97
## 12689            17 years old Female              11th grade   1.60  44.91
## 12690            15 years old Female               9th grade   1.60  53.98
## 12691            15 years old Female              10th grade   1.60  87.09
## 12692            15 years old Female               9th grade   1.60  56.70
## 12693            15 years old Female               9th grade   1.60  65.77
## 12694            14 years old   Male               9th grade   1.60  49.44
## 12695            16 years old   Male              10th grade   1.60  45.36
## 12696            15 years old Female               9th grade   1.60  45.36
## 12697            15 years old Female               9th grade   1.60  54.43
## 12698            17 years old Female              12th grade   1.60  58.97
## 12699            16 years old Female              10th grade   1.60  43.09
## 12700            15 years old Female               9th grade   1.60  52.16
## 12701            15 years old   Male               9th grade   1.60  43.55
## 12702            15 years old Female              10th grade   1.60  49.90
## 12703   18 years old or older   Male              11th grade   1.60  58.97
## 12704            15 years old Female               9th grade   1.60  58.97
## 12705   18 years old or older Female              12th grade   1.60  58.97
## 12706            14 years old Female               9th grade   1.60  47.63
## 12707            17 years old Female              11th grade   1.60  77.11
## 12708            15 years old   Male               9th grade   1.60  41.73
## 12709            17 years old Female              11th grade   1.60  60.78
## 12710            15 years old Female              10th grade   1.60  49.44
## 12711            17 years old Female              12th grade   1.60  54.43
## 12712            15 years old Female               9th grade   1.60  95.26
## 12713            16 years old   Male              11th grade   1.60  61.24
## 12714            16 years old Female              10th grade   1.60  52.16
## 12715            16 years old Female              10th grade   1.60  52.62
## 12716   18 years old or older Female              12th grade   1.60  61.24
## 12717            16 years old Female              10th grade   1.60  52.16
## 12718            17 years old   Male              11th grade   1.60  54.43
## 12719            17 years old Female              12th grade   1.60  63.50
## 12720            16 years old Female               9th grade   1.60  45.81
## 12721   18 years old or older Female              12th grade   1.60  55.79
## 12722            17 years old Female              12th grade   1.60  86.18
## 12723            17 years old   Male              11th grade   1.60  53.07
## 12724            16 years old Female              10th grade   1.60  51.71
## 12725            15 years old Female              10th grade   1.60  62.14
## 12726            14 years old Female               9th grade   1.60  44.45
## 12727            16 years old Female              11th grade   1.60  65.77
## 12728            15 years old Female               9th grade   1.60  44.45
## 12729            14 years old Female               9th grade   1.60  65.77
## 12730            15 years old   Male               9th grade   1.60  63.50
## 12731            14 years old Female               9th grade   1.60  63.50
## 12732            14 years old   Male               9th grade   1.60  52.16
## 12733            16 years old Female              11th grade   1.60  52.16
## 12734            15 years old Female               9th grade   1.60  79.38
## 12735            16 years old Female              10th grade   1.60  61.69
## 12736            17 years old Female              11th grade   1.60  56.25
## 12737            14 years old Female               9th grade   1.60 104.33
## 12738            16 years old Female              11th grade   1.60  86.18
## 12739            14 years old Female               9th grade   1.60  43.09
## 12740            15 years old Female               9th grade   1.60  54.89
## 12741   18 years old or older Female              11th grade   1.60  68.95
## 12742            16 years old Female              10th grade   1.60  56.70
## 12743   18 years old or older Female              12th grade   1.60  58.97
## 12744            16 years old Female              11th grade   1.60  58.51
## 12745            15 years old Female               9th grade   1.60  57.61
## 12746            16 years old Female              10th grade   1.60  63.50
## 12747            16 years old Female              10th grade   1.60  54.43
## 12748            16 years old   Male              10th grade   1.60  81.65
## 12749            17 years old Female              11th grade   1.60  71.67
## 12750            16 years old   Male              10th grade   1.60  72.58
## 12751            17 years old Female              11th grade   1.60  54.43
## 12752            16 years old Female               9th grade   1.60  45.36
## 12753            17 years old Female              10th grade   1.60  68.04
## 12754   18 years old or older Female              12th grade   1.60  45.36
## 12755            16 years old Female              10th grade   1.60  57.15
## 12756            16 years old Female               9th grade   1.60  58.97
## 12757            16 years old Female              10th grade   1.60  61.24
## 12758            14 years old Female               9th grade   1.60  73.94
## 12759            17 years old Female              11th grade   1.60  56.25
## 12760            15 years old Female               9th grade   1.60  52.16
## 12761   18 years old or older Female              12th grade   1.60  90.72
## 12762            15 years old   Male               9th grade   1.60  50.35
## 12763            16 years old Female              10th grade   1.60  65.77
## 12764            16 years old   Male              10th grade   1.60  56.70
## 12765            16 years old Female              11th grade   1.60  79.38
## 12766            16 years old Female              10th grade   1.60  52.16
## 12767            16 years old Female              11th grade   1.60  44.45
## 12768            17 years old Female              11th grade   1.60  94.35
## 12769            16 years old Female              10th grade   1.60  47.63
## 12770            15 years old   Male              10th grade   1.60 104.33
## 12771            17 years old Female              10th grade   1.60  97.52
## 12772            16 years old Female              10th grade   1.60  61.24
## 12773            14 years old Female               9th grade   1.60  45.36
## 12774            16 years old Female              11th grade   1.60  52.16
## 12775            15 years old Female              10th grade   1.60  54.43
## 12776            17 years old Female              11th grade   1.60  61.24
## 12777   18 years old or older Female              12th grade   1.60  58.06
## 12778            17 years old Female              11th grade   1.60 108.86
## 12779            16 years old Female              10th grade   1.60  78.02
## 12780            17 years old Female              12th grade   1.60  68.04
## 12781   18 years old or older Female              12th grade   1.60  52.16
## 12782            16 years old Female               9th grade   1.60  58.06
## 12783   18 years old or older Female              12th grade   1.60  56.70
## 12784            17 years old Female              11th grade   1.60  63.50
## 12785            17 years old Female              11th grade   1.60  56.70
## 12786            15 years old Female               9th grade   1.60  56.70
## 12787            16 years old Female               9th grade   1.60  40.82
## 12788            15 years old Female               9th grade   1.60  54.43
## 12789            17 years old Female              10th grade   1.60  76.20
## 12790   18 years old or older Female              12th grade   1.60  50.80
## 12791            15 years old Female              10th grade   1.60 113.40
## 12792            16 years old Female              11th grade   1.60  58.97
## 12793            17 years old Female              11th grade   1.60  56.70
## 12794            16 years old Female              10th grade   1.60  54.43
## 12795            17 years old Female              12th grade   1.60  49.90
## 12796            14 years old Female               9th grade   1.60  45.36
## 12797            15 years old Female               9th grade   1.60  54.43
## 12798            14 years old Female               9th grade   1.60  74.84
## 12799            16 years old Female              11th grade   1.60  47.63
## 12800            16 years old   Male              10th grade   1.60  54.43
## 12801            17 years old Female              11th grade   1.60  63.50
## 12802   18 years old or older Female              12th grade   1.60  48.08
## 12803            16 years old Female              10th grade   1.60  68.04
## 12804            16 years old Female              10th grade   1.60  53.52
## 12805            16 years old Female              11th grade   1.60  80.74
## 12806            15 years old Female              10th grade   1.60  49.90
## 12807            15 years old Female               9th grade   1.60  73.48
## 12808            16 years old Female              10th grade   1.60  44.00
## 12809            17 years old Female              10th grade   1.60  88.45
## 12810   18 years old or older Female              11th grade   1.60  90.72
## 12811            16 years old Female              10th grade   1.60  52.62
## 12812            16 years old   Male              10th grade   1.60 104.33
## 12813            15 years old Female              10th grade   1.60  49.90
## 12814   18 years old or older Female              12th grade   1.60  89.81
## 12815   18 years old or older Female              12th grade   1.60  48.99
## 12816            17 years old Female              11th grade   1.60  81.65
## 12817            16 years old Female              10th grade   1.60  51.71
## 12818            14 years old Female               9th grade   1.60  65.77
## 12819            15 years old Female               9th grade   1.60  63.50
## 12820   18 years old or older Female              12th grade   1.60  56.70
## 12821            16 years old Female              10th grade   1.60  47.63
## 12822   18 years old or older Female              12th grade   1.60  49.90
## 12823            14 years old Female               9th grade   1.60  44.00
## 12824            15 years old Female              10th grade   1.60  49.90
## 12825            17 years old   Male              12th grade   1.60  90.72
## 12826            15 years old Female               9th grade   1.60  49.90
## 12827            16 years old Female              10th grade   1.60  61.24
## 12828            16 years old Female              10th grade   1.60  57.61
## 12829            14 years old Female               9th grade   1.60  58.97
## 12830   18 years old or older Female              12th grade   1.60  49.90
## 12831            16 years old Female              11th grade   1.60  54.43
## 12832   18 years old or older Female              12th grade   1.60  52.16
## 12833            17 years old   Male              12th grade   1.60  54.43
## 12834            17 years old Female              10th grade   1.60  70.76
## 12835            15 years old Female              10th grade   1.60  68.04
## 12836            15 years old Female              10th grade   1.60  58.97
## 12837            16 years old Female              11th grade   1.60  52.16
## 12838            16 years old Female              10th grade   1.60  58.97
## 12839            14 years old Female               9th grade   1.60  56.70
## 12840            15 years old Female               9th grade   1.60  54.43
## 12841            15 years old   Male               9th grade   1.60  72.58
## 12842            15 years old Female              10th grade   1.60  68.95
## 12843   18 years old or older   Male              12th grade   1.60  63.50
## 12844            17 years old Female              11th grade   1.60  43.09
## 12845   18 years old or older Female              12th grade   1.60  53.98
## 12846            14 years old   Male               9th grade   1.60  68.04
## 12847            16 years old Female              11th grade   1.60  58.97
## 12848            14 years old Female               9th grade   1.60  53.98
## 12849            17 years old Female              12th grade   1.60  54.43
## 12850   18 years old or older Female              12th grade   1.60  49.90
## 12851            17 years old Female              11th grade   1.60  52.16
## 12852            15 years old   Male              10th grade   1.60  47.63
## 12853            17 years old Female              11th grade   1.60  63.96
## 12854            16 years old Female              11th grade   1.60  81.65
## 12855            16 years old Female              11th grade   1.60  87.09
## 12856            17 years old Female              10th grade   1.60 103.87
## 12857   18 years old or older Female              12th grade   1.60  81.65
## 12858            14 years old Female               9th grade   1.60  68.04
## 12859            16 years old   Male              10th grade   1.60  52.16
## 12860            17 years old Female              12th grade   1.60  81.65
## 12861            17 years old Female              12th grade   1.60  80.29
## 12862            17 years old Female              11th grade   1.60  86.18
## 12863            14 years old Female               9th grade   1.60  58.97
## 12864            17 years old Female              12th grade   1.60  68.95
## 12865            17 years old Female              11th grade   1.60  89.81
## 12866            15 years old Female               9th grade   1.60  42.64
## 12867            15 years old Female               9th grade   1.60  49.90
## 12868            15 years old   Male               9th grade   1.60  38.56
## 12869            14 years old Female               9th grade   1.60  61.24
## 12870            15 years old Female               9th grade   1.60  44.45
## 12871            16 years old Female              10th grade   1.60  63.50
## 12872            14 years old Female               9th grade   1.60  70.76
## 12873            17 years old Female              11th grade   1.60  86.18
## 12874            17 years old Female              11th grade   1.60  61.24
## 12875   18 years old or older Female              12th grade   1.60  55.79
## 12876   18 years old or older Female              11th grade   1.60  55.34
## 12877   18 years old or older Female              12th grade   1.60  68.04
## 12878            16 years old Female              10th grade   1.60  50.80
## 12879            15 years old Female              10th grade   1.60  48.54
## 12880            14 years old   Male               9th grade   1.60  47.63
## 12881            16 years old Female               9th grade   1.60  50.80
## 12882            16 years old Female              10th grade   1.60  56.70
## 12883   18 years old or older Female              12th grade   1.60  60.78
## 12884            15 years old Female               9th grade   1.60  58.97
## 12885            16 years old Female              10th grade   1.60  56.70
## 12886            15 years old   Male               9th grade   1.60  52.16
## 12887            17 years old Female              12th grade   1.60  59.88
## 12888            16 years old Female              11th grade   1.60  63.50
## 12889            15 years old   Male               9th grade   1.60  51.71
## 12890   18 years old or older   Male              12th grade   1.60  43.09
## 12891            16 years old Female              10th grade   1.60  72.58
## 12892            17 years old Female              11th grade   1.60  56.70
## 12893            15 years old Female               9th grade   1.60  52.62
## 12894            15 years old Female               9th grade   1.60  58.97
## 12895            17 years old Female              12th grade   1.60  72.58
## 12896   18 years old or older Female              12th grade   1.60  54.89
## 12897            15 years old Female              10th grade   1.60  52.62
## 12898            17 years old Female              12th grade   1.60  48.54
## 12899            15 years old Female               9th grade   1.60  49.90
## 12900            17 years old Female              11th grade   1.60  58.97
## 12901            14 years old Female               9th grade   1.60  47.63
## 12902            16 years old   Male              11th grade   1.60  58.97
## 12903            16 years old   Male              11th grade   1.60  74.84
## 12904            14 years old Female               9th grade   1.60  61.24
## 12905            16 years old Female              11th grade   1.60  54.43
## 12906            16 years old Female              10th grade   1.60  79.38
## 12907            16 years old Female              11th grade   1.60  49.90
## 12908            15 years old Female              10th grade   1.60  45.36
## 12909            16 years old Female              10th grade   1.60  57.15
## 12910            15 years old   Male               9th grade   1.60  52.62
## 12911            16 years old Female              11th grade   1.60  58.97
## 12912            14 years old   Male               9th grade   1.60  61.24
## 12913            15 years old Female              10th grade   1.60  52.16
## 12914            15 years old   Male               9th grade   1.60  47.63
## 12915   18 years old or older Female              12th grade   1.60  58.06
## 12916            17 years old Female              12th grade   1.60  50.80
## 12917   18 years old or older Female              12th grade   1.60  68.04
## 12918            17 years old Female              12th grade   1.60  63.50
## 12919            16 years old Female              11th grade   1.60  68.04
## 12920            15 years old Female               9th grade   1.60  76.20
## 12921            15 years old   Male               9th grade   1.60  52.16
## 12922            15 years old Female              10th grade   1.60  55.34
## 12923   18 years old or older Female              12th grade   1.60  58.97
## 12924            16 years old Female              10th grade   1.60  45.36
## 12925   18 years old or older Female              12th grade   1.60  77.11
## 12926            16 years old Female              10th grade   1.60  61.24
## 12927            17 years old   Male              11th grade   1.60  58.51
## 12928   18 years old or older Female              11th grade   1.60  72.58
## 12929            14 years old Female               9th grade   1.60  72.58
## 12930            15 years old Female               9th grade   1.60  39.01
## 12931            16 years old Female              10th grade   1.60  72.58
## 12932            15 years old Female              10th grade   1.60  61.24
## 12933            14 years old Female               9th grade   1.60  55.79
## 12934            16 years old Female              10th grade   1.60  55.79
## 12935            14 years old Female               9th grade   1.60  52.16
## 12936            16 years old Female              11th grade   1.60  49.90
## 12937            16 years old Female              10th grade   1.60  54.43
## 12938            17 years old Female              11th grade   1.60  52.16
## 12939   18 years old or older Female              11th grade   1.60  64.41
## 12940            16 years old Female              10th grade   1.60  43.09
## 12941            15 years old Female               9th grade   1.60  49.90
## 12942            17 years old Female              11th grade   1.60  54.43
## 12943            14 years old Female               9th grade   1.60  56.70
## 12944            15 years old Female                    <NA>   1.60  58.97
## 12945            15 years old Female               9th grade   1.60  52.16
## 12946   18 years old or older Female              12th grade   1.60  50.80
## 12947            15 years old Female              10th grade   1.60  53.98
## 12948            17 years old Female              11th grade   1.60  67.59
## 12949            16 years old Female              10th grade   1.60  53.52
## 12950            17 years old Female              11th grade   1.60  47.63
## 12951            14 years old Female               9th grade   1.60  48.08
## 12952            16 years old Female              10th grade   1.60  52.16
## 12953            15 years old Female              10th grade   1.60  53.52
## 12954            17 years old Female              12th grade   1.60  58.97
## 12955   18 years old or older Female              12th grade   1.60  54.43
## 12956            17 years old Female              12th grade   1.60  58.97
## 12957            17 years old Female              12th grade   1.60  72.58
## 12958            17 years old Female              12th grade   1.60  53.07
## 12959   18 years old or older Female              12th grade   1.60  56.70
## 12960   18 years old or older Female              12th grade   1.60  86.18
## 12961            15 years old Female              10th grade   1.60  63.50
## 12962            15 years old Female              10th grade   1.60  44.91
## 12963            15 years old Female              10th grade   1.60  52.16
## 12964            16 years old Female              10th grade   1.60  44.00
## 12965            15 years old Female              10th grade   1.60  54.43
## 12966            14 years old   Male               9th grade   1.60  54.43
## 12967            15 years old Female               9th grade   1.60  47.63
## 12968            16 years old Female              10th grade   1.60  49.44
## 12969            15 years old Female               9th grade   1.60  44.00
## 12970            16 years old Female              11th grade   1.60  77.11
## 12971            14 years old Female               9th grade   1.60  68.95
## 12972            14 years old Female               9th grade   1.60  75.75
## 12973            15 years old Female              10th grade   1.60  45.36
## 12974            16 years old   Male              11th grade   1.60  54.89
## 12975            15 years old Female               9th grade   1.60  49.90
## 12976            16 years old Female              10th grade   1.60  56.25
## 12977            14 years old   Male               9th grade   1.60  48.99
## 12978            14 years old Female               9th grade   1.60  47.63
## 12979            14 years old   Male               9th grade   1.60  58.97
## 12980            16 years old Female              10th grade   1.60  58.97
## 12981            15 years old Female              10th grade   1.60  61.24
## 12982            15 years old   Male              10th grade   1.60  99.79
## 12983            17 years old Female              11th grade   1.60  63.50
## 12984            16 years old Female              10th grade   1.60  46.72
## 12985            17 years old Female              11th grade   1.60  49.90
## 12986            17 years old Female              11th grade   1.60  52.16
## 12987            13 years old Female              11th grade   1.60  55.34
## 12988            17 years old Female              12th grade   1.60  68.04
## 12989            17 years old Female              11th grade   1.60 102.06
## 12990            15 years old Female               9th grade   1.60  59.88
## 12991            14 years old Female               9th grade   1.60  49.90
## 12992            15 years old Female               9th grade   1.60  58.97
## 12993            15 years old Female              10th grade   1.60  49.90
## 12994            16 years old Female              10th grade   1.60  56.70
## 12995            16 years old Female               9th grade   1.60  55.34
## 12996            15 years old Female               9th grade   1.60  56.70
## 12997            14 years old Female                    <NA>   1.60  54.43
## 12998            15 years old Female               9th grade   1.60  43.09
## 12999            14 years old Female               9th grade   1.60  42.64
## 13000            15 years old   Male               9th grade   1.60  72.58
## 13001            15 years old Female               9th grade   1.60  49.90
## 13002            15 years old Female              10th grade   1.60  63.50
## 13003            15 years old Female              10th grade   1.60  55.79
## 13004            16 years old Female              11th grade   1.60  47.63
## 13005            16 years old Female              11th grade   1.60  45.36
## 13006            16 years old Female              11th grade   1.60  53.98
## 13007            17 years old Female              11th grade   1.60  54.43
## 13008            17 years old Female              12th grade   1.60  61.24
## 13009            14 years old   Male               9th grade   1.60  48.99
## 13010            14 years old   Male               9th grade   1.60  79.83
## 13011            14 years old Female               9th grade   1.60  51.26
## 13012            15 years old Female               9th grade   1.60  44.00
## 13013            15 years old Female               9th grade   1.60  53.07
## 13014            15 years old Female               9th grade   1.60  52.62
## 13015            15 years old Female              10th grade   1.60  48.99
## 13016            15 years old Female              10th grade   1.60  45.36
## 13017            15 years old Female              10th grade   1.60  54.43
## 13018            16 years old Female              10th grade   1.60  54.43
## 13019            17 years old Female              11th grade   1.60  49.90
## 13020            16 years old Female              11th grade   1.60  47.63
## 13021            16 years old Female              11th grade   1.60  52.16
## 13022            17 years old Female              11th grade   1.60  54.43
## 13023            16 years old Female              11th grade   1.60  45.36
## 13024            17 years old Female              11th grade   1.60  61.24
## 13025            16 years old Female              11th grade   1.60  54.43
## 13026            17 years old Female              12th grade   1.60  61.24
## 13027            17 years old Female              12th grade   1.60  61.24
## 13028            17 years old Female              12th grade   1.60  88.91
## 13029   18 years old or older   Male              12th grade   1.60  61.24
## 13030            15 years old   Male               9th grade   1.60  45.36
## 13031            14 years old   Male               9th grade   1.60  72.58
## 13032            14 years old Female               9th grade   1.60  49.90
## 13033            15 years old Female               9th grade   1.60  90.72
## 13034            16 years old Female               9th grade   1.60  45.36
## 13035            15 years old Female               9th grade   1.60  39.46
## 13036            15 years old   Male               9th grade   1.60  63.50
## 13037            14 years old Female               9th grade   1.60  58.97
## 13038            14 years old Female               9th grade   1.60  73.94
## 13039            15 years old Female              10th grade   1.60  72.58
## 13040            15 years old Female              10th grade   1.60  49.90
## 13041            15 years old Female              10th grade   1.60  49.90
## 13042            17 years old Female              11th grade   1.60  61.24
## 13043            17 years old Female              11th grade   1.60  53.52
## 13044            17 years old Female              12th grade   1.60  99.79
## 13045            17 years old Female              12th grade   1.60  52.16
## 13046   18 years old or older Female              12th grade   1.60  52.16
## 13047   18 years old or older Female              12th grade   1.60  90.72
## 13048            15 years old   Male               9th grade   1.60  45.36
## 13049            15 years old Female               9th grade   1.60  72.58
## 13050            14 years old Female               9th grade   1.60  68.04
## 13051            15 years old Female              10th grade   1.60  47.63
## 13052            15 years old Female              10th grade   1.60  52.16
## 13053            16 years old Female              10th grade   1.60  48.99
## 13054            16 years old Female              11th grade   1.60  55.34
## 13055            16 years old Female              10th grade   1.60  58.97
## 13056            17 years old Female              11th grade   1.60  54.89
## 13057            17 years old Female              11th grade   1.60  58.97
## 13058   18 years old or older Female              11th grade   1.60  55.79
## 13059            16 years old Female              11th grade   1.60  53.07
## 13060            17 years old   Male              11th grade   1.60  63.50
## 13061            17 years old Female              11th grade   1.60  45.36
## 13062   18 years old or older Female              12th grade   1.60  54.43
## 13063            17 years old Female              12th grade   1.60  93.44
## 13064   18 years old or older Female              12th grade   1.60  58.97
## 13065            15 years old Female               9th grade   1.60  56.70
## 13066            15 years old Female               9th grade   1.60  47.63
## 13067            15 years old Female               9th grade   1.60  45.36
## 13068            15 years old   Male               9th grade   1.60  49.90
## 13069            15 years old Female              10th grade   1.60  53.07
## 13070            15 years old   Male              10th grade   1.60  50.80
## 13071            16 years old Female              10th grade   1.60  52.16
## 13072            17 years old Female              11th grade   1.60  70.31
## 13073            16 years old Female              11th grade   1.60  53.98
## 13074            17 years old Female              11th grade   1.60  56.25
## 13075            15 years old   Male               9th grade   1.60  57.15
## 13076            16 years old   Male              10th grade   1.60  58.97
## 13077            16 years old Female              10th grade   1.60  86.18
## 13078            16 years old Female              10th grade   1.60  46.72
## 13079            15 years old Female              10th grade   1.60  45.36
## 13080            16 years old Female              10th grade   1.60  83.92
## 13081            16 years old Female              10th grade   1.60  52.16
## 13082            16 years old Female              11th grade   1.60  66.23
## 13083            17 years old Female              12th grade   1.60  54.43
## 13084            17 years old Female              12th grade   1.60  49.90
## 13085            15 years old Female               9th grade   1.60  48.99
## 13086            14 years old Female               9th grade   1.60  74.39
## 13087            16 years old Female              11th grade   1.60  56.70
## 13088            16 years old Female              10th grade   1.60  68.04
## 13089            16 years old   Male              10th grade   1.60  55.79
## 13090            16 years old Female              10th grade   1.60  63.50
## 13091            15 years old Female              10th grade   1.60  48.08
## 13092            15 years old Female              10th grade   1.60  43.55
## 13093            15 years old Female              10th grade   1.60  44.45
## 13094            17 years old Female              12th grade   1.60  53.07
## 13095            16 years old Female              12th grade   1.60  77.11
## 13096            17 years old Female              12th grade   1.60  68.04
## 13097            14 years old   Male               9th grade   1.60  45.36
## 13098            17 years old   Male              12th grade   1.60  63.50
## 13099            17 years old Female              11th grade   1.60  52.16
## 13100            17 years old Female              12th grade   1.60  54.43
## 13101            17 years old Female              11th grade   1.60  44.45
## 13102            15 years old Female              10th grade   1.60  81.65
## 13103            15 years old Female              10th grade   1.60  72.58
## 13104            15 years old Female              10th grade   1.60  60.33
## 13105            15 years old Female              10th grade   1.60  44.00
## 13106            15 years old Female              10th grade   1.60  79.38
## 13107            16 years old Female              10th grade   1.60  54.43
## 13108            15 years old Female              10th grade   1.60  72.58
## 13109            15 years old Female              10th grade   1.60  63.50
## 13110            15 years old Female              10th grade   1.60  54.43
## 13111            16 years old Female              10th grade   1.60  49.90
## 13112            16 years old Female              10th grade   1.60  54.43
## 13113            15 years old Female              10th grade   1.60  79.38
## 13114            14 years old Female               9th grade   1.60  47.63
## 13115            15 years old Female              10th grade   1.60  56.70
## 13116            16 years old Female              11th grade   1.60  76.20
## 13117            17 years old Female              12th grade   1.60  49.90
## 13118            14 years old Female               9th grade   1.60  49.90
## 13119            17 years old   Male              12th grade   1.60  96.16
## 13120            14 years old Female               9th grade   1.60  68.04
## 13121   18 years old or older Female              12th grade   1.60  55.79
## 13122            14 years old   Male               9th grade   1.60  49.44
## 13123            14 years old Female               9th grade   1.60  53.52
## 13124            16 years old Female              11th grade   1.60  57.15
## 13125            15 years old Female              10th grade   1.60  54.43
## 13126            15 years old Female              10th grade   1.60  57.61
## 13127            15 years old Female              10th grade   1.60  47.63
## 13128            16 years old Female              10th grade   1.60  48.54
## 13129            15 years old Female               9th grade   1.60  58.97
## 13130            14 years old Female               9th grade   1.60  52.62
## 13131            14 years old Female               9th grade   1.60  49.90
## 13132            14 years old Female               9th grade   1.60  44.00
## 13133            14 years old Female               9th grade   1.60  63.50
## 13134            14 years old Female               9th grade   1.60  49.90
## 13135            14 years old Female               9th grade   1.60  48.99
## 13136            14 years old Female               9th grade   1.60  44.45
## 13137            15 years old Female              10th grade   1.60  52.16
## 13138            14 years old Female               9th grade   1.60  57.61
## 13139            16 years old Female              11th grade   1.60  59.88
## 13140            14 years old Female               9th grade   1.60  49.90
## 13141            14 years old Female               9th grade   1.60  71.22
## 13142            15 years old Female              10th grade   1.60  58.97
## 13143            17 years old Female              12th grade   1.60  56.70
## 13144            16 years old Female              11th grade   1.60  50.80
## 13145            17 years old Female              12th grade   1.60  52.16
## 13146            14 years old   Male               9th grade   1.60  63.50
## 13147            15 years old Female               9th grade   1.60  61.24
## 13148            14 years old Female               9th grade   1.60  81.19
## 13149            15 years old Female              10th grade   1.60  47.63
## 13150            16 years old Female              10th grade   1.60  53.52
## 13151            16 years old Female              11th grade   1.60  54.43
## 13152            15 years old Female              10th grade   1.60  52.16
## 13153            17 years old Female              12th grade   1.60  61.24
## 13154            16 years old Female              11th grade   1.60  49.90
## 13155            16 years old Female              11th grade   1.60  52.16
## 13156            15 years old Female              10th grade   1.60  41.73
## 13157            14 years old Female               9th grade   1.60  58.97
## 13158            14 years old Female               9th grade   1.60  49.90
## 13159            14 years old Female               9th grade   1.60  54.43
## 13160            17 years old Female              12th grade   1.60  70.31
## 13161            15 years old Female               9th grade   1.60  68.04
## 13162            15 years old   Male               9th grade   1.60  53.98
## 13163            16 years old Female              11th grade   1.60  72.58
## 13164            15 years old Female              10th grade   1.60  58.97
## 13165            15 years old Female              10th grade   1.60  65.77
## 13166            15 years old Female              10th grade   1.60  45.36
## 13167            14 years old Female               9th grade   1.60  50.80
## 13168            14 years old Female               9th grade   1.60  55.34
## 13169            14 years old Female               9th grade   1.60  52.62
## 13170            16 years old Female              11th grade   1.60  62.14
## 13171            15 years old Female              10th grade   1.60  56.70
## 13172            16 years old Female              11th grade   1.60  55.34
## 13173            16 years old Female              11th grade   1.60  52.16
## 13174            14 years old Female               9th grade   1.60  49.90
## 13175            15 years old Female              10th grade   1.60  72.58
## 13176            14 years old   Male               9th grade   1.60  49.90
## 13177            15 years old Female              10th grade   1.60  49.90
## 13178            15 years old Female              10th grade   1.60  50.80
## 13179            16 years old Female              11th grade   1.60  56.25
## 13180            17 years old Female              11th grade   1.60  56.70
## 13181            16 years old Female              11th grade   1.60  70.31
## 13182            14 years old Female               9th grade   1.60  92.99
## 13183            15 years old   Male              10th grade   1.60  50.35
## 13184            15 years old Female              10th grade   1.60  53.07
## 13185            15 years old Female              10th grade   1.60  48.99
## 13186            17 years old Female              12th grade   1.60  49.90
## 13187            17 years old Female              12th grade   1.60  58.97
## 13188            17 years old Female              11th grade   1.60  56.70
## 13189            15 years old Female              10th grade   1.60  47.63
## 13190            15 years old Female              10th grade   1.60  48.08
## 13191            15 years old Female              10th grade   1.60  56.70
## 13192            15 years old Female              10th grade   1.60  56.70
## 13193            16 years old Female              10th grade   1.60  60.78
## 13194            15 years old Female              10th grade   1.60  47.63
## 13195            17 years old Female              12th grade   1.60  56.25
## 13196            17 years old Female              12th grade   1.60  56.70
## 13197            15 years old Female              10th grade   1.60  65.77
## 13198            15 years old Female              10th grade   1.60  57.61
## 13199            16 years old Female              11th grade   1.60  72.12
## 13200            17 years old Female              11th grade   1.60  53.52
## 13201            15 years old Female              10th grade   1.60  56.70
## 13202            15 years old   Male              10th grade   1.60  52.16
## 13203            14 years old Female               9th grade   1.60  53.07
## 13204            17 years old Female              12th grade   1.60  53.52
## 13205            15 years old Female              10th grade   1.60  54.43
## 13206            17 years old Female              12th grade   1.60  58.97
## 13207            17 years old Female              12th grade   1.60  44.45
## 13208            15 years old Female              10th grade   1.60  64.41
## 13209            15 years old Female               9th grade   1.60  58.97
## 13210            14 years old Female               9th grade   1.60  43.09
## 13211            14 years old Female               9th grade   1.60  57.15
## 13212            17 years old Female              10th grade   1.60  63.50
## 13213            15 years old Female              10th grade   1.60  52.16
## 13214            14 years old Female               9th grade   1.60  47.17
## 13215            15 years old Female              10th grade   1.60  40.82
## 13216            14 years old Female               9th grade   1.60  38.56
## 13217            17 years old Female              12th grade   1.60  54.43
## 13218            14 years old Female               9th grade   1.60  52.16
## 13219            16 years old Female              11th grade   1.60  58.97
## 13220            16 years old Female              11th grade   1.60  56.70
## 13221            16 years old Female              11th grade   1.60  83.92
## 13222            14 years old Female               9th grade   1.60  49.90
## 13223            14 years old   Male               9th grade   1.60  40.82
## 13224            15 years old Female              10th grade   1.60  45.36
## 13225            15 years old Female              10th grade   1.60  54.43
## 13226            16 years old Female              10th grade   1.60  58.97
## 13227            14 years old Female               9th grade   1.60  68.04
## 13228            14 years old Female               9th grade   1.60  53.52
## 13229            15 years old Female              10th grade   1.60  72.58
## 13230            15 years old   Male              10th grade   1.60  68.04
## 13231            15 years old   Male              10th grade   1.60  52.16
## 13232            15 years old Female              10th grade   1.60  49.90
## 13233            15 years old   Male              10th grade   1.60  54.43
## 13234            17 years old Female              12th grade   1.60  64.86
## 13235            14 years old   Male               9th grade   1.60  49.90
## 13236            14 years old Female               9th grade   1.60  56.70
## 13237            16 years old Female              11th grade   1.60  60.78
## 13238            16 years old Female              10th grade   1.60  55.34
## 13239            16 years old   Male              10th grade   1.60  55.79
## 13240            17 years old Female              11th grade   1.60  54.43
## 13241            17 years old Female              11th grade   1.60  54.43
## 13242            17 years old Female              12th grade   1.60  56.70
## 13243            16 years old Female              11th grade   1.60  48.99
## 13244            15 years old Female              10th grade   1.60  58.97
## 13245            15 years old Female              10th grade   1.60  54.43
## 13246            15 years old Female              10th grade   1.60  45.36
## 13247            16 years old Female              11th grade   1.60  49.90
## 13248            16 years old Female              11th grade   1.60  45.36
## 13249            14 years old Female                    <NA>   1.60  74.84
## 13250            15 years old Female               9th grade   1.60  44.45
## 13251            15 years old Female              10th grade   1.60  53.52
## 13252            16 years old Female              10th grade   1.60  57.61
## 13253            16 years old Female              10th grade   1.60  54.43
## 13254            14 years old   Male               9th grade   1.60  45.36
## 13255            15 years old   Male               9th grade   1.60  46.27
## 13256   18 years old or older Female              12th grade   1.60  58.97
## 13257            15 years old Female               9th grade   1.60  54.43
## 13258            15 years old Female               9th grade   1.60  62.60
## 13259   18 years old or older Female              12th grade   1.60  58.97
## 13260            17 years old Female              12th grade   1.60  58.06
## 13261   18 years old or older Female              12th grade   1.60  58.97
## 13262            16 years old Female              10th grade   1.60  63.50
## 13263            16 years old Female              11th grade   1.60  50.80
## 13264            16 years old Female              10th grade   1.60  48.54
## 13265            14 years old Female               9th grade   1.60  77.11
## 13266            15 years old Female                    <NA>   1.60  47.63
## 13267            15 years old Female               9th grade   1.60  62.14
## 13268            14 years old   Male               9th grade   1.60  42.18
## 13269            15 years old Female               9th grade   1.60  48.08
## 13270            15 years old Female               9th grade   1.60  68.04
## 13271            14 years old   Male               9th grade   1.60  49.90
## 13272            16 years old Female              11th grade   1.60  47.63
## 13273            17 years old Female              11th grade   1.60  58.06
## 13274            17 years old Female              11th grade   1.60  54.43
## 13275            16 years old Female              11th grade   1.60  54.43
## 13276            15 years old Female               9th grade   1.60  55.34
## 13277   18 years old or older Female              12th grade   1.60  54.43
## 13278            16 years old Female              11th grade   1.60  52.16
## 13279            16 years old Female              10th grade   1.60  54.43
## 13280            14 years old Female               9th grade   1.60  47.17
## 13281            15 years old Female               9th grade   1.60  45.36
## 13282            17 years old Female              12th grade   1.60  54.43
## 13283   18 years old or older Female              12th grade   1.60  47.63
## 13284            14 years old Female               9th grade   1.60  49.90
## 13285            16 years old Female              10th grade   1.60  62.60
## 13286            17 years old Female              11th grade   1.60  56.70
## 13287            16 years old Female              10th grade   1.60  49.90
## 13288            16 years old Female              10th grade   1.60  62.14
## 13289            16 years old Female              10th grade   1.60  51.26
## 13290            16 years old Female              10th grade   1.60  57.15
## 13291            16 years old Female              11th grade   1.60  61.24
## 13292            17 years old Female              12th grade   1.60  53.07
## 13293            14 years old Female               9th grade   1.60  44.00
## 13294            17 years old Female              11th grade   1.60  56.25
## 13295            16 years old   Male              11th grade   1.60  59.88
## 13296            17 years old Female              12th grade   1.60  55.79
## 13297            16 years old Female              11th grade   1.60  68.04
## 13298            15 years old Female              10th grade   1.60  49.90
## 13299   18 years old or older Female              12th grade   1.60  58.06
## 13300            16 years old   Male              10th grade   1.60  44.91
## 13301            17 years old Female              11th grade   1.60  55.79
## 13302            16 years old Female              11th grade   1.60  47.63
## 13303            17 years old Female              12th grade   1.60  74.84
## 13304            15 years old Female              10th grade   1.60  49.90
## 13305            14 years old Female               9th grade   1.60  54.43
## 13306            14 years old Female               9th grade   1.60  44.91
## 13307            15 years old Female              10th grade   1.60  63.50
## 13308            16 years old Female              10th grade   1.60  52.16
## 13309            14 years old Female               9th grade   1.60  54.43
## 13310            14 years old Female               9th grade   1.60  51.26
## 13311            15 years old Female              10th grade   1.60  54.43
## 13312            14 years old   Male               9th grade   1.60  49.90
## 13313            14 years old   Male               9th grade   1.60  47.63
## 13314            14 years old Female               9th grade   1.60  49.90
## 13315            17 years old Female              11th grade   1.60  56.70
## 13316            16 years old   Male              11th grade   1.60  79.83
## 13317            16 years old Female              11th grade   1.60  58.51
## 13318            15 years old Female              10th grade   1.60  79.38
## 13319            15 years old   Male              10th grade   1.60  51.71
## 13320            16 years old Female              11th grade   1.60  49.90
## 13321            15 years old Female              10th grade   1.60  57.61
## 13322            15 years old Female              10th grade   1.60  56.70
## 13323            17 years old Female              12th grade   1.60  67.13
## 13324            17 years old Female              11th grade   1.60  58.97
## 13325            16 years old Female              11th grade   1.60  52.16
## 13326            14 years old   Male               9th grade   1.60  50.80
## 13327   18 years old or older Female              12th grade   1.60  77.11
## 13328            15 years old Female              10th grade   1.60  52.16
## 13329            16 years old Female              10th grade   1.60  86.18
## 13330            16 years old Female              10th grade   1.60  63.50
## 13331            16 years old Female              10th grade   1.60  68.04
## 13332            15 years old Female              10th grade   1.60  47.63
## 13333            17 years old Female              12th grade   1.60  64.86
## 13334            15 years old Female               9th grade   1.60  54.43
## 13335            16 years old Female              10th grade   1.60  64.41
## 13336            17 years old Female              11th grade   1.60  81.65
## 13337            17 years old Female              12th grade   1.60  97.98
## 13338            17 years old Female              11th grade   1.60  63.50
## 13339            17 years old   Male              11th grade   1.60  68.04
## 13340            16 years old Female              11th grade   1.60 129.28
## 13341            15 years old   Male               9th grade   1.60  64.86
## 13342            15 years old Female               9th grade   1.60  54.89
## 13343            15 years old   Male              10th grade   1.60  54.43
## 13344            14 years old   Male               9th grade   1.60  49.90
## 13345            17 years old Female              11th grade   1.60  54.43
## 13346            17 years old Female              11th grade   1.60  54.43
## 13347            14 years old Female               9th grade   1.60  42.18
## 13348            17 years old Female              12th grade   1.60  58.06
## 13349            17 years old Female              12th grade   1.60 104.33
## 13350            15 years old   Male               9th grade   1.60  54.89
## 13351            16 years old Female              10th grade   1.60  47.17
## 13352            17 years old   Male              12th grade   1.60  47.63
## 13353            16 years old Female              10th grade   1.60  50.80
## 13354            15 years old Female               9th grade   1.60  53.07
## 13355            16 years old   Male              10th grade   1.60  63.50
## 13356            16 years old Female              10th grade   1.60  53.52
## 13357            14 years old Female               9th grade   1.60  52.62
## 13358            15 years old   Male               9th grade   1.60  80.74
## 13359            17 years old   Male              11th grade   1.60  71.67
## 13360            14 years old Female               9th grade   1.60  50.80
## 13361   18 years old or older Female              12th grade   1.60  72.58
## 13362            15 years old Female               9th grade   1.60  74.84
## 13363            16 years old Female              11th grade   1.60  58.97
## 13364            16 years old Female              11th grade   1.60  56.25
## 13365            16 years old   Male              10th grade   1.60  51.26
## 13366            16 years old Female              11th grade   1.60  56.70
## 13367            16 years old Female              11th grade   1.60  52.16
## 13368            15 years old Female               9th grade   1.60  49.90
## 13369            17 years old   Male              11th grade   1.60  88.45
## 13370            16 years old Female              11th grade   1.60  73.94
## 13371            14 years old Female               9th grade   1.60  52.16
## 13372            17 years old   Male              11th grade   1.60  54.43
## 13373            15 years old Female              10th grade   1.60  41.73
## 13374            16 years old Female              10th grade   1.60  48.99
## 13375            14 years old Female               9th grade   1.60  52.16
## 13376            14 years old Female               9th grade   1.60  91.63
## 13377            15 years old Female               9th grade   1.60  63.50
## 13378            14 years old Female               9th grade   1.60  72.58
## 13379            15 years old   Male               9th grade   1.60  81.65
## 13380            14 years old Female               9th grade   1.60  43.55
## 13381            14 years old Female               9th grade   1.60  47.63
## 13382            16 years old Female              10th grade   1.60  86.18
## 13383            17 years old Female              12th grade   1.60  48.99
## 13384            17 years old   Male              11th grade   1.60  65.77
## 13385            15 years old   Male              10th grade   1.60  78.47
## 13386            17 years old Female              11th grade   1.60  69.85
## 13387            17 years old   Male              11th grade   1.60  77.11
## 13388            16 years old   Male              10th grade   1.60  90.72
## 13389            17 years old Female              12th grade   1.60  54.89
## 13390            17 years old Female              12th grade   1.60  55.79
## 13391            14 years old   Male               9th grade   1.60  45.36
## 13392            15 years old Female              10th grade   1.60  61.24
## 13393            15 years old Female               9th grade   1.60 104.33
## 13394            17 years old Female              12th grade   1.60  56.70
## 13395            15 years old Female              10th grade   1.60  58.97
## 13396   18 years old or older Female              12th grade   1.60  77.11
## 13397            16 years old Female              11th grade   1.60  47.63
## 13398            13 years old Female               9th grade   1.60  65.32
## 13399            15 years old Female               9th grade   1.60  54.43
## 13400            16 years old Female              10th grade   1.60  72.58
## 13401            17 years old Female              11th grade   1.60  46.72
## 13402            15 years old Female               9th grade   1.60  72.58
## 13403            17 years old Female              11th grade   1.60  45.36
## 13404            17 years old Female              11th grade   1.60  61.24
## 13405            15 years old Female               9th grade   1.60  60.33
## 13406            16 years old Female              10th grade   1.60  54.43
## 13407            15 years old Female              10th grade   1.60  48.54
## 13408            15 years old Female               9th grade   1.60  47.63
## 13409            15 years old Female               9th grade   1.60  54.43
## 13410            14 years old Female               9th grade   1.60  56.25
## 13411            15 years old Female              10th grade   1.60  49.90
## 13412            17 years old Female              12th grade   1.60  64.86
## 13413            16 years old Female              10th grade   1.60  49.90
## 13414            15 years old Female               9th grade   1.60  56.70
## 13415            15 years old Female              10th grade   1.60  54.43
## 13416            14 years old   Male               9th grade   1.60  49.90
## 13417   18 years old or older Female              12th grade   1.60  77.11
## 13418            14 years old   Male               9th grade   1.60  38.56
## 13419            16 years old Female              11th grade   1.60  90.72
## 13420            16 years old Female              10th grade   1.60  54.43
## 13421            16 years old Female              11th grade   1.60  61.24
## 13422            14 years old   Male               9th grade   1.60  86.18
## 13423            16 years old Female              11th grade   1.60  46.27
## 13424            17 years old Female              11th grade   1.60 109.77
## 13425            15 years old Female               9th grade   1.60  63.50
## 13426            16 years old Female              10th grade   1.60  50.80
## 13427            16 years old Female              11th grade   1.60  56.70
## 13428            15 years old Female              10th grade   1.60  54.43
## 13429            15 years old Female               9th grade   1.60  74.84
## 13430            16 years old Female              10th grade   1.60  48.54
## 13431            14 years old   Male               9th grade   1.60  58.97
## 13432            15 years old Female              10th grade   1.60  45.36
## 13433            15 years old Female               9th grade   1.60  87.09
## 13434            15 years old Female               9th grade   1.60  50.80
## 13435            14 years old Female               9th grade   1.60  53.07
## 13436            14 years old Female               9th grade   1.60  54.43
## 13437            15 years old Female               9th grade   1.60  63.50
## 13438            15 years old Female               9th grade   1.60  52.16
## 13439            15 years old Female               9th grade   1.60 116.12
## 13440            15 years old   Male               9th grade   1.60  51.26
## 13441            15 years old Female               9th grade   1.60  58.97
## 13442            14 years old Female               9th grade   1.60  52.16
## 13443            14 years old Female               9th grade   1.60  49.44
## 13444            15 years old Female               9th grade   1.60  56.70
## 13445            15 years old Female               9th grade   1.60  56.70
## 13446            14 years old Female               9th grade   1.60  47.63
## 13447            14 years old   Male               9th grade   1.60  50.80
## 13448            15 years old   Male               9th grade   1.60  61.24
## 13449            15 years old Female               9th grade   1.60  63.50
## 13450            15 years old Female               9th grade   1.60  56.70
## 13451            15 years old Female               9th grade   1.60  54.43
## 13452            14 years old Female              10th grade   1.60  44.45
## 13453            14 years old   Male               9th grade   1.60  62.14
## 13454            14 years old Female               9th grade   1.60  43.55
## 13455            14 years old Female               9th grade   1.60  79.38
## 13456            15 years old Female               9th grade   1.60  52.16
## 13457            14 years old Female               9th grade   1.60  54.43
## 13458            15 years old Female               9th grade   1.60  72.58
## 13459            14 years old Female               9th grade   1.60  54.43
## 13460            15 years old Female               9th grade   1.60  45.36
## 13461            15 years old Female               9th grade   1.57  72.12
## 13462            16 years old Female              11th grade   1.57  73.48
## 13463            17 years old Female              11th grade   1.57  54.89
## 13464            15 years old Female              10th grade   1.57  81.65
## 13465            17 years old Female              10th grade   1.57  63.50
## 13466            17 years old Female              10th grade   1.57  63.50
## 13467            16 years old Female              11th grade   1.57  71.22
## 13468            17 years old Female              11th grade   1.57  86.18
## 13469            15 years old Female              10th grade   1.57  60.78
## 13470            14 years old Female               9th grade   1.57  79.38
## 13471            16 years old Female              10th grade   1.57  88.45
## 13472            17 years old Female              11th grade   1.57  82.56
## 13473            16 years old Female              10th grade   1.57  54.89
## 13474            15 years old Female              10th grade   1.57  48.54
## 13475            16 years old   Male              10th grade   1.57  54.43
## 13476            15 years old Female               9th grade   1.57  68.04
## 13477   18 years old or older Female              12th grade   1.57  72.58
## 13478            17 years old Female              12th grade   1.57  63.50
## 13479            16 years old Female               9th grade   1.57 104.33
## 13480            14 years old Female               9th grade   1.57  46.27
## 13481            17 years old Female              12th grade   1.57  61.24
## 13482            16 years old Female              10th grade   1.57  74.84
## 13483            15 years old Female              10th grade   1.57  83.92
## 13484   18 years old or older Female              11th grade   1.57  69.40
## 13485            14 years old Female               9th grade   1.57  40.82
## 13486            17 years old Female              12th grade   1.57 113.40
## 13487            16 years old Female              10th grade   1.57  65.77
## 13488            16 years old Female              10th grade   1.57  61.24
## 13489            16 years old Female              10th grade   1.57  43.09
## 13490   18 years old or older Female              12th grade   1.57  58.51
## 13491            15 years old Female              10th grade   1.57  54.43
## 13492            15 years old Female              10th grade   1.57  61.24
## 13493            17 years old Female              11th grade   1.57  58.97
## 13494            17 years old Female              12th grade   1.57  47.63
## 13495            16 years old Female              11th grade   1.57  61.24
## 13496            15 years old Female               9th grade   1.57  68.95
## 13497            16 years old Female              11th grade   1.57  79.38
## 13498            14 years old Female               9th grade   1.57  52.16
## 13499            15 years old Female              10th grade   1.57  52.16
## 13500            16 years old Female              10th grade   1.57  55.79
## 13501            16 years old Female              11th grade   1.57  48.08
## 13502            16 years old Female              11th grade   1.57  47.63
## 13503            17 years old Female              12th grade   1.57  54.43
## 13504            16 years old Female              12th grade   1.57  49.44
## 13505            17 years old Female              12th grade   1.57  66.68
## 13506            16 years old Female              11th grade   1.57  56.70
## 13507            16 years old Female              11th grade   1.57  49.90
## 13508            17 years old Female              11th grade   1.57  48.54
## 13509            15 years old   Male               9th grade   1.57  49.90
## 13510            15 years old Female               9th grade   1.57  44.00
## 13511            16 years old Female              11th grade   1.57  63.50
## 13512            17 years old Female              12th grade   1.57  46.27
## 13513   18 years old or older Female              12th grade   1.57  54.43
## 13514            17 years old Female              12th grade   1.57  58.97
## 13515            17 years old Female              12th grade   1.57  45.36
## 13516            17 years old Female              11th grade   1.57  63.50
## 13517            14 years old Female               9th grade   1.57  77.11
## 13518            14 years old Female               9th grade   1.57  87.09
## 13519   18 years old or older Female              12th grade   1.57  48.99
## 13520            15 years old Female              10th grade   1.57  54.43
## 13521            15 years old Female              10th grade   1.57  52.16
## 13522   18 years old or older Female              12th grade   1.57  52.16
## 13523            17 years old Female              11th grade   1.57  56.70
## 13524            14 years old Female               9th grade   1.57  58.51
## 13525            16 years old Female              10th grade   1.57  58.97
## 13526            17 years old Female              12th grade   1.57  89.81
## 13527            17 years old Female              12th grade   1.57  49.90
## 13528            15 years old Female              10th grade   1.57  74.84
## 13529            16 years old Female              12th grade   1.57  52.62
## 13530            17 years old Female              12th grade   1.57  77.11
## 13531            15 years old Female               9th grade   1.57  40.37
## 13532            17 years old   Male              12th grade   1.57  51.71
## 13533            15 years old Female               9th grade   1.57  54.43
## 13534            17 years old Female              12th grade   1.57  47.63
## 13535            15 years old Female               9th grade   1.57  47.63
## 13536            14 years old Female               9th grade   1.57  52.16
## 13537            16 years old Female              11th grade   1.57  55.34
## 13538            16 years old Female              11th grade   1.57  46.27
## 13539            17 years old Female              12th grade   1.57  44.00
## 13540            17 years old Female              12th grade   1.57  64.41
## 13541            17 years old Female              12th grade   1.57  47.63
## 13542            16 years old Female              10th grade   1.57  54.43
## 13543   18 years old or older Female              12th grade   1.57  61.24
## 13544            15 years old Female               9th grade   1.57  58.51
## 13545            14 years old Female               9th grade   1.57  56.70
## 13546            16 years old Female              11th grade   1.57  61.24
## 13547            17 years old Female              12th grade   1.57  63.50
## 13548            14 years old Female               9th grade   1.57  58.97
## 13549            16 years old Female              10th grade   1.57  53.52
## 13550   18 years old or older Female              12th grade   1.57  54.43
## 13551            15 years old Female              10th grade   1.57  61.24
## 13552   18 years old or older Female              12th grade   1.57  49.44
## 13553            15 years old Female               9th grade   1.57  56.70
## 13554            16 years old Female              11th grade   1.57  61.24
## 13555            14 years old Female               9th grade   1.57  47.63
## 13556            15 years old Female               9th grade   1.57  55.79
## 13557   18 years old or older Female              12th grade   1.57  89.81
## 13558            17 years old Female              12th grade   1.57  58.97
## 13559            14 years old Female               9th grade   1.57  52.16
## 13560            14 years old Female               9th grade   1.57  58.97
## 13561            15 years old   Male              10th grade   1.57  44.45
## 13562            16 years old   Male              10th grade   1.57  47.63
## 13563            14 years old Female               9th grade   1.57  61.24
## 13564            16 years old Female              10th grade   1.57  71.22
## 13565            16 years old Female              10th grade   1.57  65.77
## 13566            16 years old Female              11th grade   1.57  54.43
## 13567            16 years old Female              10th grade   1.57  49.90
## 13568            17 years old Female              11th grade   1.57  46.72
## 13569            17 years old Female              11th grade   1.57 142.88
## 13570            15 years old Female               9th grade   1.57  61.24
## 13571            15 years old Female              10th grade   1.57  51.26
## 13572            16 years old Female              11th grade   1.57  47.63
## 13573            16 years old   Male              10th grade   1.57  61.69
## 13574            15 years old Female               9th grade   1.57  57.15
## 13575            15 years old Female              10th grade   1.57  57.15
## 13576            17 years old Female              12th grade   1.57  39.92
## 13577            17 years old Female              12th grade   1.57  62.60
## 13578            16 years old Female              10th grade   1.57  90.72
## 13579            17 years old Female              12th grade   1.57  57.15
## 13580            16 years old Female              10th grade   1.57  47.17
## 13581            15 years old Female              10th grade   1.57  53.07
## 13582            16 years old Female              10th grade   1.57  43.55
## 13583            16 years old   Male              10th grade   1.57  56.70
## 13584            16 years old Female              10th grade   1.57  54.43
## 13585            15 years old Female              10th grade   1.57  57.15
## 13586            15 years old Female               9th grade   1.57  52.16
## 13587            15 years old Female              10th grade   1.57  56.70
## 13588            16 years old Female              10th grade   1.57  61.24
## 13589            14 years old Female               9th grade   1.57  48.54
## 13590   18 years old or older Female              12th grade   1.57  50.80
## 13591            15 years old Female              10th grade   1.57  74.84
## 13592            14 years old Female               9th grade   1.57  55.34
## 13593            15 years old Female               9th grade   1.57  79.38
## 13594            16 years old Female              11th grade   1.57  56.70
## 13595            14 years old Female               9th grade   1.57  49.44
## 13596            15 years old Female              10th grade   1.57  56.70
## 13597            14 years old Female               9th grade   1.57  60.78
## 13598            14 years old Female               9th grade   1.57  46.27
## 13599            16 years old Female              11th grade   1.57  45.36
## 13600            16 years old Female              11th grade   1.57  56.70
## 13601            14 years old Female               9th grade   1.57  42.64
## 13602            15 years old Female               9th grade   1.57  46.27
## 13603            14 years old Female               9th grade   1.57  56.70
## 13604            14 years old Female               9th grade   1.57  61.24
## 13605            16 years old Female              11th grade   1.57  68.04
## 13606            14 years old Female               9th grade   1.57  53.52
## 13607            15 years old Female              10th grade   1.57  56.70
## 13608            15 years old Female               9th grade   1.57  43.09
## 13609            15 years old Female              10th grade   1.57  54.43
## 13610            15 years old Female              10th grade   1.57  74.84
## 13611            17 years old Female              12th grade   1.57  48.99
## 13612            15 years old Female              10th grade   1.57  33.57
## 13613            16 years old Female              11th grade   1.57  81.65
## 13614            15 years old Female               9th grade   1.57  51.26
## 13615            17 years old Female              10th grade   1.57  54.43
## 13616            16 years old Female              11th grade   1.57  78.02
## 13617            16 years old Female              11th grade   1.57  54.43
## 13618   18 years old or older Female              12th grade   1.57 129.28
## 13619            15 years old Female              10th grade   1.57  49.90
## 13620            16 years old Female              11th grade   1.57  56.70
## 13621            16 years old Female              11th grade   1.57  70.76
## 13622            14 years old   Male               9th grade   1.57  54.43
## 13623            14 years old Female               9th grade   1.57  54.89
## 13624            17 years old Female              12th grade   1.57  61.24
## 13625            17 years old Female              11th grade   1.57  90.72
## 13626            17 years old Female              12th grade   1.57  54.43
## 13627   18 years old or older Female              12th grade   1.57  53.52
## 13628            17 years old Female              11th grade   1.57  65.77
## 13629            16 years old Female              10th grade   1.57  52.16
## 13630            17 years old Female              12th grade   1.57  51.71
## 13631            17 years old   Male              12th grade   1.57  42.18
## 13632            16 years old Female              10th grade   1.57  86.18
## 13633            15 years old Female              10th grade   1.57  52.62
## 13634            15 years old Female               9th grade   1.57  90.27
## 13635            16 years old Female              11th grade   1.57  40.82
## 13636            15 years old Female               9th grade   1.57  68.04
## 13637            14 years old Female               9th grade   1.57  78.02
## 13638            16 years old Female              10th grade   1.57  49.90
## 13639            16 years old Female              11th grade   1.57  56.25
## 13640            16 years old Female              11th grade   1.57  54.43
## 13641            17 years old Female              12th grade   1.57 115.67
## 13642            16 years old   Male               9th grade   1.57  72.58
## 13643            17 years old Female              12th grade   1.57  63.50
## 13644            14 years old Female               9th grade   1.57  47.63
## 13645   18 years old or older Female              11th grade   1.57  48.99
## 13646            16 years old Female              11th grade   1.57  52.16
## 13647            14 years old Female               9th grade   1.57  44.00
## 13648            16 years old Female              11th grade   1.57  52.62
## 13649            16 years old Female              11th grade   1.57  70.31
## 13650            14 years old Female               9th grade   1.57  48.99
## 13651            15 years old Female               9th grade   1.57  68.04
## 13652            15 years old Female               9th grade   1.57  59.88
## 13653            15 years old   Male               9th grade   1.57  61.24
## 13654            17 years old Female              12th grade   1.57  47.63
## 13655            15 years old Female               9th grade   1.57  46.72
## 13656            14 years old Female               9th grade   1.57  68.95
## 13657            15 years old Female              10th grade   1.57  43.55
## 13658            15 years old Female               9th grade   1.57  48.99
## 13659            17 years old Female              12th grade   1.57  43.55
## 13660            14 years old Female               9th grade   1.57  54.43
## 13661            15 years old Female               9th grade   1.57  48.54
## 13662            15 years old Female               9th grade   1.57  52.16
## 13663            17 years old Female              12th grade   1.57  74.84
## 13664            16 years old Female              11th grade   1.57  54.43
## 13665            17 years old Female              11th grade   1.57  65.77
## 13666            16 years old Female              10th grade   1.57  50.35
## 13667            16 years old Female              10th grade   1.57  56.70
## 13668            17 years old Female              11th grade   1.57  72.58
## 13669            16 years old Female              10th grade   1.57  50.80
## 13670            17 years old Female              12th grade   1.57  81.65
## 13671   18 years old or older Female              12th grade   1.57  72.58
## 13672            16 years old Female               9th grade   1.57  99.79
## 13673            16 years old Female              10th grade   1.57  56.70
## 13674            14 years old Female               9th grade   1.57  80.74
## 13675            15 years old Female              10th grade   1.57  54.43
## 13676            15 years old Female              10th grade   1.57  47.63
## 13677            16 years old Female              10th grade   1.57  54.43
## 13678   18 years old or older Female              12th grade   1.57  79.38
## 13679            16 years old Female              10th grade   1.57  49.90
## 13680   18 years old or older Female              12th grade   1.57  48.99
## 13681            16 years old Female              11th grade   1.57  62.60
## 13682            15 years old Female               9th grade   1.57  62.14
## 13683            15 years old Female               9th grade   1.57  49.44
## 13684   18 years old or older Female              12th grade   1.57  51.71
## 13685            15 years old Female               9th grade   1.57  49.90
## 13686            17 years old Female              11th grade   1.57 129.73
## 13687            14 years old Female               9th grade   1.57  90.27
## 13688            15 years old Female              10th grade   1.57  53.98
## 13689            17 years old Female              11th grade   1.57  72.58
## 13690            15 years old Female              10th grade   1.57  81.65
## 13691            16 years old Female              11th grade   1.57  72.58
## 13692            14 years old   Male               9th grade   1.57  46.72
## 13693            16 years old Female              11th grade   1.57  52.16
## 13694            14 years old Female               9th grade   1.57  54.43
## 13695            14 years old Female               9th grade   1.57  44.45
## 13696            14 years old Female               9th grade   1.57  47.17
## 13697            15 years old Female               9th grade   1.57  51.26
## 13698            17 years old Female              11th grade   1.57  61.24
## 13699            16 years old Female              10th grade   1.57  44.45
## 13700            17 years old Female              11th grade   1.57  45.36
## 13701            14 years old Female               9th grade   1.57  49.44
## 13702            14 years old   Male               9th grade   1.57  63.50
## 13703            14 years old Female               9th grade   1.57  44.45
## 13704            16 years old Female              10th grade   1.57  72.58
## 13705            15 years old Female              10th grade   1.57  49.44
## 13706            15 years old Female               9th grade   1.57  49.90
## 13707   18 years old or older Female              12th grade   1.57  59.88
## 13708   18 years old or older Female              12th grade   1.57  58.97
## 13709            17 years old Female              12th grade   1.57  53.98
## 13710            16 years old Female              11th grade   1.57  48.54
## 13711            14 years old Female               9th grade   1.57  45.36
## 13712            14 years old Female               9th grade   1.57  48.99
## 13713   18 years old or older Female              12th grade   1.57  50.80
## 13714            16 years old Female              10th grade   1.57  86.18
## 13715            17 years old Female              11th grade   1.57  58.97
## 13716            15 years old Female               9th grade   1.57  38.56
## 13717            17 years old Female              12th grade   1.57  52.16
## 13718            17 years old Female              11th grade   1.57  48.08
## 13719            17 years old Female              10th grade   1.57  81.65
## 13720   18 years old or older Female              12th grade   1.57  47.63
## 13721            15 years old Female              10th grade   1.57  54.43
## 13722            16 years old Female              10th grade   1.57  79.38
## 13723            16 years old Female              11th grade   1.57  54.43
## 13724            16 years old Female              10th grade   1.57  59.88
## 13725   18 years old or older Female              12th grade   1.57  56.70
## 13726            16 years old Female              10th grade   1.57  47.63
## 13727            15 years old Female              10th grade   1.57  54.43
## 13728            15 years old Female               9th grade   1.57  63.50
## 13729            15 years old Female               9th grade   1.57  47.63
## 13730   18 years old or older Female              12th grade   1.57  52.16
## 13731            17 years old Female              10th grade   1.57  48.54
## 13732            15 years old Female              10th grade   1.57  52.16
## 13733            15 years old Female               9th grade   1.57  48.99
## 13734            15 years old   Male              10th grade   1.57  49.90
## 13735            15 years old Female              10th grade   1.57  44.00
## 13736            17 years old Female              11th grade   1.57  58.97
## 13737            17 years old Female              12th grade   1.57  57.61
## 13738            16 years old Female              10th grade   1.57  54.43
## 13739            15 years old Female              10th grade   1.57  49.44
## 13740            15 years old Female              10th grade   1.57  77.11
## 13741   18 years old or older Female              12th grade   1.57  56.70
## 13742            15 years old Female              10th grade   1.57  58.97
## 13743            14 years old Female               9th grade   1.57  45.81
## 13744            15 years old Female               9th grade   1.57  55.79
## 13745            16 years old Female              11th grade   1.57  55.79
## 13746            16 years old Female              10th grade   1.57  47.63
## 13747            16 years old Female              11th grade   1.57  45.36
## 13748            17 years old Female              12th grade   1.57  74.39
## 13749            16 years old Female              10th grade   1.57  81.65
## 13750            14 years old Female               9th grade   1.57  69.85
## 13751            16 years old Female               9th grade   1.57  95.26
## 13752            16 years old Female              10th grade   1.57  46.27
## 13753   18 years old or older Female              12th grade   1.57  47.63
## 13754   18 years old or older Female              11th grade   1.57  90.72
## 13755            15 years old Female              10th grade   1.57  58.97
## 13756            16 years old Female              10th grade   1.57  64.41
## 13757            17 years old Female              11th grade   1.57  61.24
## 13758            16 years old Female              10th grade   1.57  66.23
## 13759            16 years old Female              11th grade   1.57  54.43
## 13760            15 years old Female              10th grade   1.57  45.36
## 13761            14 years old Female               9th grade   1.57  51.26
## 13762            14 years old Female               9th grade   1.57  43.55
## 13763            16 years old Female              11th grade   1.57  63.50
## 13764            14 years old Female               9th grade   1.57  58.06
## 13765            14 years old Female               9th grade   1.57  58.97
## 13766            15 years old Female               9th grade   1.57  63.50
## 13767            17 years old Female              12th grade   1.57  44.45
## 13768            17 years old Female              11th grade   1.57  51.71
## 13769   18 years old or older Female              12th grade   1.57  65.77
## 13770            16 years old Female              11th grade   1.57  53.52
## 13771            16 years old Female              11th grade   1.57  58.97
## 13772            16 years old Female              10th grade   1.57  52.62
## 13773            15 years old Female              10th grade   1.57  57.15
## 13774            17 years old Female              12th grade   1.57 100.70
## 13775            17 years old Female              12th grade   1.57  52.16
## 13776            15 years old   Male               9th grade   1.57  81.65
## 13777            16 years old Female              11th grade   1.57  54.89
## 13778            16 years old Female              11th grade   1.57  48.08
## 13779            17 years old Female              11th grade   1.57  74.84
## 13780            15 years old Female              10th grade   1.57  49.90
## 13781   18 years old or older Female              12th grade   1.57  79.38
## 13782            15 years old Female              10th grade   1.57  52.16
## 13783            15 years old Female               9th grade   1.57  52.16
## 13784   18 years old or older Female              12th grade   1.57  57.15
## 13785            15 years old Female               9th grade   1.57  50.35
## 13786            16 years old   Male               9th grade   1.57  52.16
## 13787            14 years old Female               9th grade   1.57  77.11
## 13788            17 years old Female              12th grade   1.57  64.86
## 13789            14 years old Female               9th grade   1.57  61.24
## 13790   18 years old or older Female              12th grade   1.57  72.58
## 13791            14 years old Female               9th grade   1.57  65.77
## 13792            15 years old Female               9th grade   1.57  43.09
## 13793            15 years old Female               9th grade   1.57  52.16
## 13794            16 years old Female               9th grade   1.57  56.70
## 13795            17 years old Female              11th grade   1.57  67.59
## 13796            15 years old Female               9th grade   1.57  51.26
## 13797            16 years old Female              11th grade   1.57  59.42
## 13798            16 years old Female              10th grade   1.57  50.80
## 13799            17 years old Female              12th grade   1.57  74.84
## 13800            16 years old Female              11th grade   1.57  52.16
## 13801            15 years old Female              10th grade   1.57  63.50
## 13802            17 years old Female              12th grade   1.57  44.91
## 13803            17 years old Female              12th grade   1.57  58.97
## 13804            15 years old Female              10th grade   1.57  61.24
## 13805            17 years old Female              11th grade   1.57  54.43
## 13806            15 years old Female              10th grade   1.57  54.43
## 13807            16 years old Female              10th grade   1.57 113.40
## 13808            17 years old Female              11th grade   1.57  54.43
## 13809            17 years old Female              11th grade   1.57  51.71
## 13810            17 years old Female              11th grade   1.57  57.61
## 13811            16 years old Female              10th grade   1.57  79.38
## 13812            15 years old   Male               9th grade   1.57  68.04
## 13813            15 years old Female              10th grade   1.57  49.90
## 13814            17 years old Female              11th grade   1.57  72.58
## 13815            16 years old Female              10th grade   1.57  44.91
## 13816            16 years old Female              10th grade   1.57  54.43
## 13817            16 years old Female              11th grade   1.57  48.08
## 13818            15 years old Female              10th grade   1.57  61.24
## 13819            17 years old Female              11th grade   1.57  54.43
## 13820            15 years old Female              10th grade   1.57  52.16
## 13821   18 years old or older Female              12th grade   1.57  77.11
## 13822            15 years old Female               9th grade   1.57  75.75
## 13823            17 years old Female              11th grade   1.57  58.97
## 13824            16 years old Female              10th grade   1.57  63.50
## 13825            15 years old Female              10th grade   1.57  53.07
## 13826            15 years old Female               9th grade   1.57  54.43
## 13827            17 years old Female              12th grade   1.57  58.06
## 13828            17 years old Female              12th grade   1.57  57.61
## 13829            17 years old   Male              12th grade   1.57  49.90
## 13830            15 years old Female              10th grade   1.57  54.43
## 13831            16 years old Female              11th grade   1.57  59.42
## 13832            16 years old Female              10th grade   1.57  70.31
## 13833            16 years old Female              10th grade   1.57  58.97
## 13834            15 years old Female              10th grade   1.57  45.36
## 13835            16 years old Female              11th grade   1.57  49.90
## 13836            16 years old Female              10th grade   1.57  44.45
## 13837            14 years old Female               9th grade   1.57  58.97
## 13838            16 years old Female              10th grade   1.57  61.24
## 13839            16 years old Female              10th grade   1.57  63.50
## 13840            16 years old Female              10th grade   1.57  47.63
## 13841   18 years old or older Female              12th grade   1.57  65.77
## 13842            17 years old Female              11th grade   1.57  49.44
## 13843            17 years old Female              11th grade   1.57  52.16
## 13844   18 years old or older Female              12th grade   1.57  88.91
## 13845   18 years old or older Female              12th grade   1.57  70.76
## 13846            14 years old Female               9th grade   1.57  49.90
## 13847            14 years old Female               9th grade   1.57  52.16
## 13848            17 years old Female              11th grade   1.57  60.33
## 13849   18 years old or older Female              12th grade   1.57  54.43
## 13850            17 years old Female              12th grade   1.57  49.44
## 13851            15 years old Female               9th grade   1.57  45.36
## 13852            16 years old Female               9th grade   1.57  54.43
## 13853   18 years old or older Female              12th grade   1.57  62.14
## 13854            16 years old Female              10th grade   1.57  58.06
## 13855            16 years old Female              11th grade   1.57  60.33
## 13856   18 years old or older Female              12th grade   1.57  63.50
## 13857            16 years old Female              10th grade   1.57  72.58
## 13858            16 years old Female              11th grade   1.57  58.97
## 13859            17 years old Female              11th grade   1.57  81.65
## 13860            17 years old Female              12th grade   1.57  53.52
## 13861            17 years old Female              11th grade   1.57  58.97
## 13862            17 years old Female              11th grade   1.57  81.65
## 13863            16 years old Female              11th grade   1.57  64.41
## 13864   18 years old or older Female              12th grade   1.57  58.97
## 13865            16 years old Female              10th grade   1.57  52.62
## 13866            16 years old Female              11th grade   1.57  49.90
## 13867            16 years old Female              11th grade   1.57  56.70
## 13868            14 years old Female               9th grade   1.57  49.90
## 13869            14 years old Female               9th grade   1.57  50.80
## 13870   18 years old or older Female              11th grade   1.57  62.60
## 13871            16 years old Female              11th grade   1.57  72.58
## 13872            17 years old Female              12th grade   1.57  71.67
## 13873            15 years old Female              10th grade   1.57  54.43
## 13874            17 years old Female              11th grade   1.57  50.80
## 13875            17 years old Female              12th grade   1.57  68.95
## 13876            17 years old Female              11th grade   1.57  62.60
## 13877            14 years old   Male               9th grade   1.57  39.01
## 13878            16 years old Female              10th grade   1.57  52.16
## 13879            16 years old Female              11th grade   1.57  58.97
## 13880            15 years old Female              10th grade   1.57  89.36
## 13881            14 years old Female               9th grade   1.57  57.15
## 13882   18 years old or older Female              11th grade   1.57  74.39
## 13883            14 years old   Male               9th grade   1.57  48.99
## 13884            16 years old Female              11th grade   1.57  74.84
## 13885            17 years old Female              11th grade   1.57  54.43
## 13886            16 years old Female              11th grade   1.57  53.52
## 13887            14 years old Female               9th grade   1.57  42.64
## 13888            15 years old Female              10th grade   1.57  51.71
## 13889            17 years old Female              11th grade   1.57  63.50
## 13890            15 years old Female              10th grade   1.57  52.16
## 13891   18 years old or older Female              12th grade   1.57  48.08
## 13892            17 years old Female              12th grade   1.57  83.92
## 13893            15 years old Female              10th grade   1.57  54.43
## 13894            17 years old Female              12th grade   1.57  72.58
## 13895            16 years old Female              10th grade   1.57  61.24
## 13896            16 years old Female              10th grade   1.57  52.16
## 13897            15 years old Female              10th grade   1.57  53.52
## 13898            15 years old Female              10th grade   1.57  51.26
## 13899            15 years old Female              10th grade   1.57  48.08
## 13900            15 years old Female              10th grade   1.57  54.43
## 13901            16 years old Female              10th grade   1.57  52.16
## 13902            16 years old Female              10th grade   1.57  49.90
## 13903            16 years old Female              10th grade   1.57  57.61
## 13904            15 years old Female              10th grade   1.57  61.24
## 13905            15 years old Female              10th grade   1.57  68.04
## 13906            16 years old Female              10th grade   1.57  52.16
## 13907            17 years old Female              11th grade   1.57  54.89
## 13908            16 years old Female              11th grade   1.57  47.17
## 13909            16 years old Female              10th grade   1.57  46.72
## 13910            17 years old Female              11th grade   1.57  69.40
## 13911            15 years old Female              10th grade   1.57  43.09
## 13912            14 years old Female               9th grade   1.57  44.91
## 13913            17 years old   Male              12th grade   1.57  70.31
## 13914            16 years old Female              11th grade   1.57  47.17
## 13915            15 years old Female               9th grade   1.57  50.80
## 13916            16 years old Female              10th grade   1.57  49.90
## 13917            15 years old   Male               9th grade   1.57  62.60
## 13918            14 years old Female               9th grade   1.57  48.08
## 13919            15 years old Female               9th grade   1.57  45.36
## 13920            15 years old Female              10th grade   1.57  51.71
## 13921            15 years old Female              10th grade   1.57  44.91
## 13922            15 years old Female               9th grade   1.57  47.63
## 13923            15 years old Female               9th grade   1.57  47.63
## 13924   18 years old or older Female              12th grade   1.57  63.50
## 13925            16 years old Female              11th grade   1.57  67.13
## 13926            15 years old Female              10th grade   1.57  75.30
## 13927   18 years old or older Female              12th grade   1.57  53.07
## 13928            16 years old Female              10th grade   1.57  58.97
## 13929   18 years old or older Female              12th grade   1.57  48.08
## 13930            16 years old Female               9th grade   1.57  77.11
## 13931            15 years old Female               9th grade   1.57  43.09
## 13932   18 years old or older Female              12th grade   1.57  48.54
## 13933            15 years old Female               9th grade   1.57  53.98
## 13934            17 years old Female              12th grade   1.57  54.43
## 13935   18 years old or older Female              12th grade   1.57  51.26
## 13936   18 years old or older Female              12th grade   1.57  48.99
## 13937            16 years old Female               9th grade   1.57  46.72
## 13938            14 years old Female               9th grade   1.57  55.79
## 13939            15 years old Female               9th grade   1.57  50.35
## 13940            15 years old Female               9th grade   1.57  58.51
## 13941   18 years old or older Female              12th grade   1.57  47.63
## 13942   18 years old or older Female              12th grade   1.57  68.04
## 13943            15 years old Female               9th grade   1.57  54.43
## 13944            17 years old Female              11th grade   1.57  86.18
## 13945            16 years old Female              11th grade   1.57  61.24
## 13946            17 years old Female              11th grade   1.57  40.82
## 13947            17 years old Female              12th grade   1.57  51.71
## 13948            17 years old Female              12th grade   1.57  99.79
## 13949            17 years old   Male              11th grade   1.57  85.73
## 13950   18 years old or older Female              12th grade   1.57  58.06
## 13951   18 years old or older Female              12th grade   1.57  56.70
## 13952            16 years old Female              10th grade   1.57  49.44
## 13953            15 years old Female               9th grade   1.57  78.47
## 13954            16 years old Female              11th grade   1.57  48.08
## 13955            16 years old Female              10th grade   1.57  77.11
## 13956            17 years old Female              12th grade   1.57  58.97
## 13957            17 years old Female              11th grade   1.57  52.16
## 13958            15 years old Female              10th grade   1.57  46.72
## 13959   18 years old or older Female              11th grade   1.57  69.85
## 13960            16 years old Female              10th grade   1.57  45.81
## 13961            15 years old   Male               9th grade   1.57  48.99
## 13962            15 years old Female              10th grade   1.57  68.04
## 13963            16 years old Female              10th grade   1.57  56.70
## 13964            16 years old Female              11th grade   1.57  61.24
## 13965            16 years old Female              10th grade   1.57  64.41
## 13966            15 years old Female               9th grade   1.57  63.96
## 13967            15 years old Female              10th grade   1.57  31.30
## 13968            17 years old Female              11th grade   1.57  54.43
## 13969            17 years old Female              10th grade   1.57  59.88
## 13970            15 years old   Male              10th grade   1.57  49.90
## 13971            17 years old Female              11th grade   1.57  65.77
## 13972            17 years old Female              11th grade   1.57  44.91
## 13973            16 years old Female              11th grade   1.57  46.72
## 13974            14 years old Female               9th grade   1.57  49.90
## 13975   18 years old or older Female              12th grade   1.57  53.07
## 13976            16 years old Female              10th grade   1.57  57.61
## 13977            16 years old Female              10th grade   1.57  47.63
## 13978            17 years old Female              12th grade   1.57  61.24
## 13979            16 years old Female              10th grade   1.57 121.56
## 13980   18 years old or older Female              12th grade   1.57  61.24
## 13981            14 years old Female               9th grade   1.57  65.77
## 13982            17 years old Female              11th grade   1.57  56.70
## 13983            15 years old Female               9th grade   1.57  87.09
## 13984            16 years old Female              11th grade   1.57  72.58
## 13985            16 years old Female                    <NA>   1.57  49.90
## 13986            15 years old   Male              10th grade   1.57  52.16
## 13987            17 years old Female              11th grade   1.57  55.34
## 13988            17 years old Female              11th grade   1.57  72.12
## 13989            16 years old Female              10th grade   1.57  68.04
## 13990            17 years old Female              11th grade   1.57  81.65
## 13991            16 years old Female               9th grade   1.57  53.07
## 13992            14 years old Female               9th grade   1.57  47.63
## 13993            16 years old Female              10th grade   1.57  54.43
## 13994            14 years old Female               9th grade   1.57  44.45
## 13995            15 years old Female               9th grade   1.57  58.97
## 13996            15 years old Female              10th grade   1.57  44.00
## 13997            15 years old Female               9th grade   1.57  53.07
## 13998            17 years old Female              12th grade   1.57  61.24
## 13999            17 years old Female              11th grade   1.57  56.70
## 14000            17 years old Female              12th grade   1.57  56.70
## 14001            15 years old Female               9th grade   1.57  51.71
## 14002            16 years old   Male              10th grade   1.57  43.09
## 14003            17 years old Female              11th grade   1.57  40.82
## 14004            17 years old Female              11th grade   1.57  63.50
## 14005   18 years old or older Female              12th grade   1.57  56.70
## 14006   18 years old or older Female              12th grade   1.57  83.46
## 14007            17 years old Female              11th grade   1.57  68.04
## 14008            17 years old Female              11th grade   1.57  56.70
## 14009            17 years old Female              11th grade   1.57  44.45
## 14010            17 years old Female              12th grade   1.57  47.63
## 14011            17 years old Female              11th grade   1.57  61.24
## 14012            16 years old Female              10th grade   1.57  49.90
## 14013            17 years old Female              12th grade   1.57  45.81
## 14014            15 years old Female               9th grade   1.57  54.43
## 14015            15 years old Female               9th grade   1.57  50.35
## 14016            16 years old Female              10th grade   1.57  63.50
## 14017            16 years old Female              10th grade   1.57  52.16
## 14018            17 years old Female              11th grade   1.57  58.97
## 14019            16 years old Female              10th grade   1.57  56.70
## 14020            17 years old Female              11th grade   1.57  54.43
## 14021            17 years old Female              11th grade   1.57  61.24
## 14022            15 years old Female              10th grade   1.57  49.90
## 14023            17 years old Female              12th grade   1.57  74.84
## 14024            17 years old Female              11th grade   1.57  54.89
## 14025            15 years old Female               9th grade   1.57  48.08
## 14026            16 years old Female              10th grade   1.57  43.09
## 14027            16 years old Female              10th grade   1.57  47.63
## 14028            17 years old Female              10th grade   1.57  72.58
## 14029            17 years old Female              11th grade   1.57  57.61
## 14030   18 years old or older Female              12th grade   1.57  76.66
## 14031            15 years old Female               9th grade   1.57  60.78
## 14032            15 years old   Male               9th grade   1.57  40.82
## 14033            17 years old Female              11th grade   1.57  58.97
## 14034   18 years old or older Female              12th grade   1.57  58.06
## 14035            17 years old Female              11th grade   1.57  44.45
## 14036            16 years old Female              10th grade   1.57  58.51
## 14037            14 years old   Male               9th grade   1.57  36.29
## 14038            15 years old Female               9th grade   1.57  50.35
## 14039            14 years old Female               9th grade   1.57  46.27
## 14040            14 years old Female               9th grade   1.57  43.09
## 14041            17 years old Female              11th grade   1.57  54.43
## 14042            17 years old Female              11th grade   1.57  47.17
## 14043            16 years old   Male              10th grade   1.57  61.24
## 14044   18 years old or older Female              12th grade   1.57  72.58
## 14045            16 years old Female              10th grade   1.57  61.24
## 14046            15 years old Female               9th grade   1.57  61.24
## 14047            17 years old Female              12th grade   1.57  52.16
## 14048            17 years old Female              12th grade   1.57  53.98
## 14049            17 years old Female              12th grade   1.57  63.50
## 14050            17 years old Female              12th grade   1.57  52.16
## 14051            16 years old Female              11th grade   1.57  46.27
## 14052            15 years old Female               9th grade   1.57  70.31
## 14053            15 years old Female              10th grade   1.57  79.38
## 14054            16 years old Female              11th grade   1.57  63.50
## 14055            14 years old Female               9th grade   1.57  43.55
## 14056   18 years old or older Female              12th grade   1.57  52.16
## 14057   18 years old or older Female              12th grade   1.57  81.65
## 14058            15 years old Female              10th grade   1.57 127.01
## 14059            16 years old Female              11th grade   1.57 104.33
## 14060            17 years old Female              11th grade   1.57  54.43
## 14061            15 years old Female               9th grade   1.57  35.38
## 14062            15 years old Female              10th grade   1.57  74.84
## 14063            16 years old Female              10th grade   1.57  61.69
## 14064            16 years old Female              10th grade   1.57  77.11
## 14065            15 years old Female              10th grade   1.57  49.90
## 14066            16 years old   Male              10th grade   1.57  47.63
## 14067   18 years old or older Female              12th grade   1.57 113.40
## 14068            16 years old Female              10th grade   1.57  54.43
## 14069            17 years old Female              11th grade   1.57  60.78
## 14070            16 years old Female              10th grade   1.57  52.62
## 14071            15 years old Female               9th grade   1.57  53.52
## 14072            14 years old Female               9th grade   1.57  63.50
## 14073            17 years old Female              12th grade   1.57  68.04
## 14074            16 years old Female              11th grade   1.57  81.65
## 14075   18 years old or older Female              12th grade   1.57  50.80
## 14076   18 years old or older Female              12th grade   1.57  65.77
## 14077   18 years old or older Female              11th grade   1.57  61.24
## 14078            15 years old Female              10th grade   1.57  54.43
## 14079   18 years old or older Female              12th grade   1.57  63.50
## 14080            16 years old Female              10th grade   1.57  45.36
## 14081            14 years old Female               9th grade   1.57  55.34
## 14082            15 years old Female               9th grade   1.57  43.09
## 14083            14 years old   Male               9th grade   1.57  39.46
## 14084            15 years old Female              10th grade   1.57  49.44
## 14085            15 years old Female               9th grade   1.57  63.50
## 14086            14 years old Female               9th grade   1.57  45.36
## 14087            15 years old Female               9th grade   1.57  74.84
## 14088   18 years old or older Female              12th grade   1.57  58.97
## 14089            17 years old Female              12th grade   1.57  97.52
## 14090            15 years old Female              10th grade   1.57  49.90
## 14091            16 years old Female              10th grade   1.57  58.97
## 14092            16 years old Female              10th grade   1.57  48.99
## 14093            15 years old Female               9th grade   1.57  83.92
## 14094            14 years old Female               9th grade   1.57  52.16
## 14095            14 years old Female               9th grade   1.57  52.16
## 14096            16 years old Female              10th grade   1.57  54.43
## 14097            14 years old   Male               9th grade   1.57  36.29
## 14098            17 years old Female              12th grade   1.57  44.45
## 14099            15 years old Female               9th grade   1.57  58.97
## 14100   18 years old or older Female              12th grade   1.57  77.11
## 14101            16 years old Female              11th grade   1.57  76.20
## 14102            15 years old Female              10th grade   1.57  65.77
## 14103            14 years old Female               9th grade   1.57  54.43
## 14104            15 years old Female               9th grade   1.57  68.95
## 14105            16 years old Female              10th grade   1.57  95.26
## 14106            15 years old Female              10th grade   1.57  79.38
## 14107            16 years old Female              11th grade   1.57  61.24
## 14108            15 years old Female               9th grade   1.57  48.54
## 14109            16 years old Female              10th grade   1.57  54.89
## 14110            14 years old Female               9th grade   1.57  41.73
## 14111            14 years old Female               9th grade   1.57  54.89
## 14112            17 years old Female              11th grade   1.57  53.98
## 14113            17 years old Female              12th grade   1.57  70.31
## 14114            17 years old Female              11th grade   1.57  51.26
## 14115            14 years old Female               9th grade   1.57  54.43
## 14116   18 years old or older Female              12th grade   1.57  59.88
## 14117            16 years old Female              10th grade   1.57  49.44
## 14118            16 years old Female              10th grade   1.57  44.91
## 14119            16 years old Female              10th grade   1.57  52.16
## 14120            17 years old Female              12th grade   1.57  70.76
## 14121            15 years old Female              10th grade   1.57  47.63
## 14122            14 years old Female               9th grade   1.57  56.25
## 14123            15 years old Female              10th grade   1.57  38.56
## 14124            17 years old Female              10th grade   1.57  68.04
## 14125            15 years old Female              10th grade   1.57  86.18
## 14126            17 years old Female              11th grade   1.57  52.16
## 14127            16 years old Female              10th grade   1.57  49.90
## 14128            16 years old Female              11th grade   1.57  47.17
## 14129            17 years old Female              12th grade   1.57  49.90
## 14130            15 years old   Male               9th grade   1.57  43.55
## 14131            17 years old Female              11th grade   1.57  48.54
## 14132            16 years old Female              11th grade   1.57  40.82
## 14133            14 years old Female               9th grade   1.57  57.61
## 14134            14 years old Female               9th grade   1.57  58.97
## 14135            15 years old Female               9th grade   1.57  52.16
## 14136            15 years old Female              10th grade   1.57  44.45
## 14137            15 years old Female              10th grade   1.57  48.54
## 14138            14 years old Female               9th grade   1.57  72.58
## 14139            15 years old Female               9th grade   1.57  54.43
## 14140            15 years old Female              10th grade   1.57  71.22
## 14141            16 years old   Male              11th grade   1.57  54.43
## 14142            16 years old Female              10th grade   1.57  43.09
## 14143            16 years old Female              10th grade   1.57  47.17
## 14144            15 years old Female               9th grade   1.57  46.27
## 14145            14 years old Female               9th grade   1.57  53.07
## 14146            15 years old   Male               9th grade   1.57  52.16
## 14147            16 years old Female              11th grade   1.57  51.26
## 14148            16 years old Female              11th grade   1.57  44.45
## 14149            15 years old Female              10th grade   1.57  61.69
## 14150            16 years old Female              11th grade   1.57  50.80
## 14151            15 years old Female              10th grade   1.57  77.11
## 14152            15 years old Female               9th grade   1.57  45.36
## 14153            15 years old Female               9th grade   1.57  59.88
## 14154   18 years old or older Female              12th grade   1.57  89.81
## 14155            16 years old Female              10th grade   1.57  54.43
## 14156   18 years old or older Female              12th grade   1.57  63.50
## 14157            16 years old Female              10th grade   1.57  97.07
## 14158            17 years old Female              11th grade   1.57  81.65
## 14159            16 years old Female              10th grade   1.57  58.97
## 14160            16 years old Female              10th grade   1.57  54.43
## 14161            15 years old Female               9th grade   1.57  51.71
## 14162            15 years old Female               9th grade   1.57  78.93
## 14163            15 years old   Male               9th grade   1.57  54.43
## 14164            14 years old Female               9th grade   1.57  45.36
## 14165            15 years old Female              10th grade   1.57  49.44
## 14166            15 years old Female              10th grade   1.57  58.97
## 14167            16 years old Female              10th grade   1.57  49.90
## 14168            15 years old Female              10th grade   1.57  48.08
## 14169            16 years old Female              11th grade   1.57  65.77
## 14170            16 years old Female              11th grade   1.57  54.43
## 14171            14 years old Female               9th grade   1.57  49.90
## 14172            14 years old Female               9th grade   1.57  54.43
## 14173            15 years old Female              10th grade   1.57  52.16
## 14174            16 years old Female              10th grade   1.57  54.43
## 14175            16 years old Female              10th grade   1.57  54.43
## 14176            15 years old Female              10th grade   1.57  52.16
## 14177            16 years old Female              10th grade   1.57  49.90
## 14178            15 years old Female                    <NA>   1.57  52.16
## 14179            15 years old Female              10th grade   1.57  45.36
## 14180            16 years old Female              11th grade   1.57  44.91
## 14181            17 years old Female              12th grade   1.57  52.16
## 14182            17 years old Female              12th grade   1.57  49.44
## 14183            17 years old Female              12th grade   1.57  54.43
## 14184            14 years old Female               9th grade   1.57  58.97
## 14185            14 years old Female               9th grade   1.57  51.71
## 14186            15 years old Female                    <NA>   1.57  51.26
## 14187            15 years old Female               9th grade   1.57  45.36
## 14188            14 years old Female               9th grade   1.57  49.90
## 14189            16 years old Female              10th grade   1.57  57.61
## 14190            15 years old Female              10th grade   1.57  49.90
## 14191            16 years old Female              11th grade   1.57  61.24
## 14192            16 years old Female              11th grade   1.57  53.98
## 14193            16 years old Female              11th grade   1.57  72.58
## 14194            17 years old Female              11th grade   1.57  54.43
## 14195   18 years old or older Female              12th grade   1.57  58.97
## 14196            17 years old Female              12th grade   1.57  77.11
## 14197            17 years old Female              12th grade   1.57  62.60
## 14198            16 years old Female              11th grade   1.57  61.69
## 14199            16 years old Female              11th grade   1.57  65.77
## 14200            16 years old Female              11th grade   1.57  44.45
## 14201            15 years old Female                    <NA>   1.57  54.43
## 14202            14 years old Female               9th grade   1.57  49.90
## 14203            14 years old   Male               9th grade   1.57  44.91
## 14204            16 years old Female              10th grade   1.57  53.52
## 14205            16 years old Female              10th grade   1.57  63.50
## 14206            15 years old Female              10th grade   1.57  61.24
## 14207            15 years old Female              10th grade   1.57  54.43
## 14208            15 years old Female              10th grade   1.57  77.11
## 14209            16 years old Female              11th grade   1.57  62.14
## 14210            17 years old Female              11th grade   1.57 113.40
## 14211            16 years old Female              11th grade   1.57  81.65
## 14212            16 years old Female              11th grade   1.57 113.40
## 14213            16 years old Female              11th grade   1.57  52.16
## 14214   18 years old or older Female              12th grade   1.57  43.09
## 14215            17 years old Female              12th grade   1.57  58.06
## 14216   18 years old or older Female              12th grade   1.57  63.50
## 14217            17 years old Female              12th grade   1.57  58.97
## 14218            14 years old Female               9th grade   1.57  52.16
## 14219            15 years old   Male               9th grade   1.57  82.56
## 14220            16 years old Female              10th grade   1.57  52.16
## 14221            15 years old Female              10th grade   1.57  54.43
## 14222            15 years old Female              10th grade   1.57  68.04
## 14223            14 years old Female              10th grade   1.57  53.07
## 14224            17 years old Female              10th grade   1.57  56.25
## 14225   18 years old or older Female              11th grade   1.57  51.26
## 14226            17 years old Female              12th grade   1.57  58.97
## 14227            17 years old Female              12th grade   1.57  44.45
## 14228            14 years old Female               9th grade   1.57  49.90
## 14229            15 years old Female               9th grade   1.57  65.77
## 14230            15 years old Female              10th grade   1.57  61.69
## 14231            16 years old Female              11th grade   1.57  52.16
## 14232   18 years old or older Female              12th grade   1.57  49.90
## 14233            17 years old Female              12th grade   1.57  68.04
## 14234            17 years old Female Ungraded or other grade   1.57  43.09
## 14235            15 years old Female              10th grade   1.57  52.16
## 14236            15 years old Female               9th grade   1.57  48.99
## 14237            16 years old Female              11th grade   1.57  56.70
## 14238            17 years old Female              11th grade   1.57  47.63
## 14239            16 years old Female              11th grade   1.57  52.16
## 14240            16 years old Female              10th grade   1.57  65.77
## 14241            16 years old Female              11th grade   1.57  63.50
## 14242            16 years old Female              11th grade   1.57  53.52
## 14243            16 years old Female              10th grade   1.57  46.27
## 14244            16 years old Female              11th grade   1.57  52.16
## 14245            16 years old Female              11th grade   1.57  43.09
## 14246            17 years old Female              11th grade   1.57  47.63
## 14247            15 years old   Male              10th grade   1.57  65.77
## 14248            15 years old Female              10th grade   1.57  56.70
## 14249            16 years old Female              10th grade   1.57  45.36
## 14250            15 years old Female              10th grade   1.57  47.63
## 14251            16 years old Female              10th grade   1.57  48.54
## 14252            16 years old Female              11th grade   1.57  48.99
## 14253            14 years old   Male               9th grade   1.57  39.46
## 14254            14 years old Female               9th grade   1.57  55.34
## 14255            14 years old Female               9th grade   1.57  48.08
## 14256            14 years old Female               9th grade   1.57  48.08
## 14257   18 years old or older Female              12th grade   1.57  60.78
## 14258            15 years old Female              10th grade   1.57  55.34
## 14259            14 years old   Male               9th grade   1.57  49.90
## 14260            15 years old Female               9th grade   1.57  38.56
## 14261            16 years old Female              11th grade   1.57  49.90
## 14262            16 years old Female              11th grade   1.57  68.95
## 14263            17 years old Female              11th grade   1.57  81.65
## 14264            17 years old Female              12th grade   1.57  58.97
## 14265            17 years old Female              12th grade   1.57  56.70
## 14266            15 years old Female              10th grade   1.57  39.92
## 14267            14 years old Female               9th grade   1.57  43.09
## 14268            16 years old Female              11th grade   1.57  53.07
## 14269            17 years old Female              12th grade   1.57  52.16
## 14270            14 years old Female               9th grade   1.57  54.43
## 14271            15 years old Female              10th grade   1.57  79.38
## 14272            14 years old Female               9th grade   1.57  61.69
## 14273            16 years old Female              11th grade   1.57  54.43
## 14274            16 years old Female              11th grade   1.57  63.05
## 14275            17 years old Female              12th grade   1.57  59.88
## 14276            16 years old Female              11th grade   1.57  58.97
## 14277            16 years old   Male              11th grade   1.57  56.70
## 14278            15 years old Female              10th grade   1.57  42.64
## 14279            15 years old Female              10th grade   1.57  49.90
## 14280            16 years old Female              10th grade   1.57  59.42
## 14281            15 years old   Male              10th grade   1.57  52.16
## 14282            15 years old Female              10th grade   1.57  58.97
## 14283            15 years old Female              10th grade   1.57  47.63
## 14284            14 years old Female               9th grade   1.57  50.80
## 14285            17 years old Female              12th grade   1.57  65.77
##               Sexual_identity Neg_mental_health
## 1     Heterosexual (straight)            Rarely
## 2     Heterosexual (straight)            Always
## 3     Heterosexual (straight)            Always
## 4     Heterosexual (straight)             Never
## 5     Heterosexual (straight)         Sometimes
## 6              Some other way              <NA>
## 7     Heterosexual (straight)              <NA>
## 8     Heterosexual (straight)            Rarely
## 9     Heterosexual (straight)  Most of the time
## 10    Heterosexual (straight)             Never
## 11    Heterosexual (straight)             Never
## 12    Heterosexual (straight)  Most of the time
## 13    Heterosexual (straight)             Never
## 14    Heterosexual (straight)            Always
## 15             Gay or lesbian  Most of the time
## 16    Heterosexual (straight)  Most of the time
## 17    Heterosexual (straight)            Always
## 18    Heterosexual (straight)              <NA>
## 19    Heterosexual (straight)              <NA>
## 20    Heterosexual (straight)              <NA>
## 21             Some other way              <NA>
## 22    Heterosexual (straight)         Sometimes
## 23             Gay or lesbian            Rarely
## 24    Heterosexual (straight)             Never
## 25    Heterosexual (straight)            Rarely
## 26    Heterosexual (straight)  Most of the time
## 27    Heterosexual (straight)             Never
## 28    Heterosexual (straight)  Most of the time
## 29    Heterosexual (straight)             Never
## 30    Heterosexual (straight)            Rarely
## 31    Heterosexual (straight)         Sometimes
## 32    Heterosexual (straight)            Rarely
## 33    Heterosexual (straight)            Rarely
## 34    Heterosexual (straight)  Most of the time
## 35    Heterosexual (straight)            Rarely
## 36    Heterosexual (straight)            Always
## 37    Heterosexual (straight)            Rarely
## 38    Heterosexual (straight)            Always
## 39    Heterosexual (straight)             Never
## 40    Heterosexual (straight)         Sometimes
## 41                   Bisexual         Sometimes
## 42                   Bisexual             Never
## 43    Heterosexual (straight)             Never
## 44    Heterosexual (straight)            Always
## 45    Heterosexual (straight)  Most of the time
## 46    Heterosexual (straight)         Sometimes
## 47    Heterosexual (straight)            Rarely
## 48    Heterosexual (straight)            Always
## 49    Heterosexual (straight)             Never
## 50    Heterosexual (straight)            Rarely
## 51    Heterosexual (straight)         Sometimes
## 52    Heterosexual (straight)         Sometimes
## 53    Heterosexual (straight)  Most of the time
## 54    Heterosexual (straight)         Sometimes
## 55    Heterosexual (straight)            Rarely
## 56    Heterosexual (straight)            Rarely
## 57    Heterosexual (straight)             Never
## 58    Heterosexual (straight)         Sometimes
## 59    Heterosexual (straight)         Sometimes
## 60    Heterosexual (straight)  Most of the time
## 61    Heterosexual (straight)             Never
## 62    Heterosexual (straight)  Most of the time
## 63    Heterosexual (straight)             Never
## 64    Heterosexual (straight)         Sometimes
## 65    Heterosexual (straight)             Never
## 66    Heterosexual (straight)             Never
## 67    Heterosexual (straight)            Always
## 68    Heterosexual (straight)            Rarely
## 69    Heterosexual (straight)         Sometimes
## 70    Heterosexual (straight)             Never
## 71    Heterosexual (straight)            Rarely
## 72    Heterosexual (straight)            Rarely
## 73    Heterosexual (straight)            Rarely
## 74    Heterosexual (straight)         Sometimes
## 75    Heterosexual (straight)            Rarely
## 76    Heterosexual (straight)            Rarely
## 77    Heterosexual (straight)             Never
## 78                   Bisexual            Always
## 79    Heterosexual (straight)            Rarely
## 80                   Bisexual            Rarely
## 81    Heterosexual (straight)         Sometimes
## 82    Heterosexual (straight)            Rarely
## 83             Gay or lesbian            Always
## 84                   Bisexual              <NA>
## 85    Heterosexual (straight)              <NA>
## 86    Heterosexual (straight)              <NA>
## 87    Heterosexual (straight)              <NA>
## 88    Heterosexual (straight)              <NA>
## 89    Heterosexual (straight)         Sometimes
## 90    Heterosexual (straight)             Never
## 91    Heterosexual (straight)             Never
## 92    Heterosexual (straight)             Never
## 93    Heterosexual (straight)             Never
## 94    Heterosexual (straight)            Rarely
## 95    Heterosexual (straight)             Never
## 96    Heterosexual (straight)             Never
## 97             Some other way         Sometimes
## 98    Heterosexual (straight)             Never
## 99    Heterosexual (straight)             Never
## 100   Heterosexual (straight)            Rarely
## 101                  Bisexual         Sometimes
## 102   Heterosexual (straight)         Sometimes
## 103   Heterosexual (straight)         Sometimes
## 104                  Bisexual         Sometimes
## 105   Heterosexual (straight)         Sometimes
## 106   Heterosexual (straight)            Rarely
## 107   Heterosexual (straight)         Sometimes
## 108   Heterosexual (straight)            Rarely
## 109   Heterosexual (straight)            Rarely
## 110   Heterosexual (straight)         Sometimes
## 111   Heterosexual (straight)             Never
## 112   Heterosexual (straight)             Never
## 113   Heterosexual (straight)             Never
## 114   Heterosexual (straight)            Rarely
## 115   Heterosexual (straight)  Most of the time
## 116   Heterosexual (straight)         Sometimes
## 117   Heterosexual (straight)            Rarely
## 118   Heterosexual (straight)         Sometimes
## 119   Heterosexual (straight)  Most of the time
## 120   Heterosexual (straight)         Sometimes
## 121   Heterosexual (straight)            Rarely
## 122   Heterosexual (straight)            Rarely
## 123   Heterosexual (straight)         Sometimes
## 124   Heterosexual (straight)            Always
## 125   Heterosexual (straight)         Sometimes
## 126            Gay or lesbian  Most of the time
## 127   Heterosexual (straight)  Most of the time
## 128   Heterosexual (straight)         Sometimes
## 129   Heterosexual (straight)             Never
## 130   Heterosexual (straight)            Rarely
## 131   Heterosexual (straight)            Rarely
## 132   Heterosexual (straight)  Most of the time
## 133                  Not sure  Most of the time
## 134   Heterosexual (straight)  Most of the time
## 135   Heterosexual (straight)            Rarely
## 136   Heterosexual (straight)            Rarely
## 137   Heterosexual (straight)             Never
## 138   Heterosexual (straight)         Sometimes
## 139            Gay or lesbian         Sometimes
## 140   Heterosexual (straight)  Most of the time
## 141                  Bisexual         Sometimes
## 142                  Bisexual         Sometimes
## 143                  Not sure         Sometimes
## 144   Heterosexual (straight)             Never
## 145   Heterosexual (straight)            Rarely
## 146   Heterosexual (straight)            Rarely
## 147            Some other way         Sometimes
## 148   Heterosexual (straight)             Never
## 149   Heterosexual (straight)         Sometimes
## 150   Heterosexual (straight)            Rarely
## 151   Heterosexual (straight)  Most of the time
## 152   Heterosexual (straight)         Sometimes
## 153   Heterosexual (straight)         Sometimes
## 154   Heterosexual (straight)             Never
## 155            Some other way            Rarely
## 156   Heterosexual (straight)            Rarely
## 157   Heterosexual (straight)  Most of the time
## 158                  Bisexual            Rarely
## 159   Heterosexual (straight)              <NA>
## 160   Heterosexual (straight)             Never
## 161   Heterosexual (straight)         Sometimes
## 162   Heterosexual (straight)             Never
## 163   Heterosexual (straight)  Most of the time
## 164   Heterosexual (straight)             Never
## 165   Heterosexual (straight)             Never
## 166   Heterosexual (straight)             Never
## 167   Heterosexual (straight)         Sometimes
## 168   Heterosexual (straight)             Never
## 169   Heterosexual (straight)            Rarely
## 170                  Bisexual              <NA>
## 171   Heterosexual (straight)              <NA>
## 172   Heterosexual (straight)              <NA>
## 173   Heterosexual (straight)              <NA>
## 174   Heterosexual (straight)              <NA>
## 175                  Bisexual              <NA>
## 176   Heterosexual (straight)              <NA>
## 177   Heterosexual (straight)              <NA>
## 178   Heterosexual (straight)              <NA>
## 179   Heterosexual (straight)              <NA>
## 180   Heterosexual (straight)              <NA>
## 181   Heterosexual (straight)         Sometimes
## 182   Heterosexual (straight)            Rarely
## 183   Heterosexual (straight)            Rarely
## 184   Heterosexual (straight)            Always
## 185   Heterosexual (straight)  Most of the time
## 186   Heterosexual (straight)             Never
## 187   Heterosexual (straight)            Rarely
## 188   Heterosexual (straight)            Rarely
## 189   Heterosexual (straight)             Never
## 190   Heterosexual (straight)            Rarely
## 191   Heterosexual (straight)         Sometimes
## 192   Heterosexual (straight)         Sometimes
## 193   Heterosexual (straight)         Sometimes
## 194   Heterosexual (straight)  Most of the time
## 195   Heterosexual (straight)             Never
## 196   Heterosexual (straight)             Never
## 197   Heterosexual (straight)  Most of the time
## 198   Heterosexual (straight)            Rarely
## 199   Heterosexual (straight)             Never
## 200   Heterosexual (straight)  Most of the time
## 201   Heterosexual (straight)         Sometimes
## 202   Heterosexual (straight)             Never
## 203   Heterosexual (straight)  Most of the time
## 204   Heterosexual (straight)             Never
## 205   Heterosexual (straight)         Sometimes
## 206   Heterosexual (straight)            Rarely
## 207   Heterosexual (straight)  Most of the time
## 208   Heterosexual (straight)             Never
## 209   Heterosexual (straight)            Rarely
## 210   Heterosexual (straight)         Sometimes
## 211   Heterosexual (straight)            Always
## 212            Gay or lesbian            Always
## 213   Heterosexual (straight)              <NA>
## 214   Heterosexual (straight)         Sometimes
## 215   Heterosexual (straight)         Sometimes
## 216   Heterosexual (straight)         Sometimes
## 217   Heterosexual (straight)            Rarely
## 218   Heterosexual (straight)             Never
## 219   Heterosexual (straight)            Rarely
## 220   Heterosexual (straight)            Rarely
## 221   Heterosexual (straight)         Sometimes
## 222   Heterosexual (straight)         Sometimes
## 223   Heterosexual (straight)  Most of the time
## 224   Heterosexual (straight)            Rarely
## 225                  Not sure         Sometimes
## 226   Heterosexual (straight)         Sometimes
## 227   Heterosexual (straight)            Rarely
## 228   Heterosexual (straight)            Rarely
## 229   Heterosexual (straight)            Rarely
## 230   Heterosexual (straight)         Sometimes
## 231   Heterosexual (straight)            Rarely
## 232   Heterosexual (straight)            Rarely
## 233                  Bisexual         Sometimes
## 234   Heterosexual (straight)  Most of the time
## 235   Heterosexual (straight)  Most of the time
## 236   Heterosexual (straight)  Most of the time
## 237   Heterosexual (straight)            Rarely
## 238   Heterosexual (straight)         Sometimes
## 239   Heterosexual (straight)             Never
## 240   Heterosexual (straight)         Sometimes
## 241   Heterosexual (straight)  Most of the time
## 242   Heterosexual (straight)            Rarely
## 243   Heterosexual (straight)            Rarely
## 244            Gay or lesbian         Sometimes
## 245   Heterosexual (straight)             Never
## 246   Heterosexual (straight)            Rarely
## 247   Heterosexual (straight)            Rarely
## 248   Heterosexual (straight)         Sometimes
## 249                  Bisexual            Rarely
## 250   Heterosexual (straight)  Most of the time
## 251   Heterosexual (straight)            Rarely
## 252   Heterosexual (straight)             Never
## 253   Heterosexual (straight)  Most of the time
## 254   Heterosexual (straight)            Rarely
## 255   Heterosexual (straight)         Sometimes
## 256   Heterosexual (straight)  Most of the time
## 257   Heterosexual (straight)         Sometimes
## 258   Heterosexual (straight)             Never
## 259   Heterosexual (straight)         Sometimes
## 260   Heterosexual (straight)            Rarely
## 261   Heterosexual (straight)             Never
## 262   Heterosexual (straight)             Never
## 263   Heterosexual (straight)            Rarely
## 264   Heterosexual (straight)             Never
## 265   Heterosexual (straight)  Most of the time
## 266   Heterosexual (straight)            Rarely
## 267   Heterosexual (straight)         Sometimes
## 268   Heterosexual (straight)            Always
## 269   Heterosexual (straight)         Sometimes
## 270   Heterosexual (straight)            Rarely
## 271   Heterosexual (straight)  Most of the time
## 272   Heterosexual (straight)            Rarely
## 273   Heterosexual (straight)             Never
## 274   Heterosexual (straight)            Rarely
## 275   Heterosexual (straight)             Never
## 276   Heterosexual (straight)  Most of the time
## 277   Heterosexual (straight)            Rarely
## 278   Heterosexual (straight)            Rarely
## 279            Some other way         Sometimes
## 280   Heterosexual (straight)             Never
## 281   Heterosexual (straight)            Rarely
## 282   Heterosexual (straight)            Rarely
## 283   Heterosexual (straight)            Rarely
## 284   Heterosexual (straight)            Rarely
## 285   Heterosexual (straight)             Never
## 286   Heterosexual (straight)             Never
## 287   Heterosexual (straight)         Sometimes
## 288   Heterosexual (straight)  Most of the time
## 289   Heterosexual (straight)             Never
## 290   Heterosexual (straight)         Sometimes
## 291            Gay or lesbian         Sometimes
## 292   Heterosexual (straight)            Rarely
## 293   Heterosexual (straight)            Rarely
## 294   Heterosexual (straight)            Rarely
## 295   Heterosexual (straight)  Most of the time
## 296   Heterosexual (straight)  Most of the time
## 297   Heterosexual (straight)             Never
## 298   Heterosexual (straight)         Sometimes
## 299   Heterosexual (straight)            Rarely
## 300   Heterosexual (straight)            Rarely
## 301   Heterosexual (straight)             Never
## 302   Heterosexual (straight)             Never
## 303   Heterosexual (straight)         Sometimes
## 304   Heterosexual (straight)         Sometimes
## 305                  Bisexual         Sometimes
## 306   Heterosexual (straight)             Never
## 307   Heterosexual (straight)  Most of the time
## 308   Heterosexual (straight)             Never
## 309   Heterosexual (straight)              <NA>
## 310   Heterosexual (straight)            Rarely
## 311                  Bisexual  Most of the time
## 312   Heterosexual (straight)            Rarely
## 313   Heterosexual (straight)         Sometimes
## 314   Heterosexual (straight)  Most of the time
## 315   Heterosexual (straight)            Rarely
## 316   Heterosexual (straight)  Most of the time
## 317   Heterosexual (straight)             Never
## 318   Heterosexual (straight)            Rarely
## 319   Heterosexual (straight)  Most of the time
## 320   Heterosexual (straight)         Sometimes
## 321   Heterosexual (straight)            Rarely
## 322   Heterosexual (straight)            Rarely
## 323   Heterosexual (straight)  Most of the time
## 324   Heterosexual (straight)            Rarely
## 325   Heterosexual (straight)            Rarely
## 326   Heterosexual (straight)         Sometimes
## 327   Heterosexual (straight)            Rarely
## 328   Heterosexual (straight)            Rarely
## 329   Heterosexual (straight)             Never
## 330   Heterosexual (straight)             Never
## 331   Heterosexual (straight)         Sometimes
## 332                  Not sure         Sometimes
## 333   Heterosexual (straight)             Never
## 334   Heterosexual (straight)             Never
## 335   Heterosexual (straight)            Rarely
## 336   Heterosexual (straight)            Rarely
## 337   Heterosexual (straight)            Rarely
## 338   Heterosexual (straight)         Sometimes
## 339   Heterosexual (straight)  Most of the time
## 340   Heterosexual (straight)             Never
## 341   Heterosexual (straight)            Rarely
## 342   Heterosexual (straight)            Rarely
## 343   Heterosexual (straight)  Most of the time
## 344   Heterosexual (straight)            Rarely
## 345                  Bisexual  Most of the time
## 346            Gay or lesbian         Sometimes
## 347   Heterosexual (straight)  Most of the time
## 348   Heterosexual (straight)            Always
## 349   Heterosexual (straight)  Most of the time
## 350   Heterosexual (straight)         Sometimes
## 351   Heterosexual (straight)            Rarely
## 352            Gay or lesbian  Most of the time
## 353   Heterosexual (straight)  Most of the time
## 354   Heterosexual (straight)            Rarely
## 355   Heterosexual (straight)            Rarely
## 356   Heterosexual (straight)         Sometimes
## 357   Heterosexual (straight)            Rarely
## 358   Heterosexual (straight)            Rarely
## 359   Heterosexual (straight)            Rarely
## 360   Heterosexual (straight)            Always
## 361            Gay or lesbian         Sometimes
## 362   Heterosexual (straight)            Rarely
## 363   Heterosexual (straight)            Rarely
## 364   Heterosexual (straight)         Sometimes
## 365   Heterosexual (straight)            Rarely
## 366   Heterosexual (straight)            Rarely
## 367                  Bisexual  Most of the time
## 368   Heterosexual (straight)             Never
## 369   Heterosexual (straight)            Rarely
## 370   Heterosexual (straight)            Rarely
## 371   Heterosexual (straight)              <NA>
## 372   Heterosexual (straight)            Rarely
## 373   Heterosexual (straight)             Never
## 374   Heterosexual (straight)              <NA>
## 375   Heterosexual (straight)  Most of the time
## 376   Heterosexual (straight)         Sometimes
## 377   Heterosexual (straight)            Rarely
## 378   Heterosexual (straight)         Sometimes
## 379   Heterosexual (straight)             Never
## 380   Heterosexual (straight)            Rarely
## 381   Heterosexual (straight)         Sometimes
## 382   Heterosexual (straight)             Never
## 383   Heterosexual (straight)         Sometimes
## 384   Heterosexual (straight)             Never
## 385   Heterosexual (straight)  Most of the time
## 386   Heterosexual (straight)              <NA>
## 387   Heterosexual (straight)              <NA>
## 388   Heterosexual (straight)              <NA>
## 389   Heterosexual (straight)              <NA>
## 390   Heterosexual (straight)              <NA>
## 391   Heterosexual (straight)              <NA>
## 392   Heterosexual (straight)              <NA>
## 393   Heterosexual (straight)              <NA>
## 394   Heterosexual (straight)              <NA>
## 395   Heterosexual (straight)              <NA>
## 396   Heterosexual (straight)              <NA>
## 397   Heterosexual (straight)              <NA>
## 398            Some other way              <NA>
## 399   Heterosexual (straight)              <NA>
## 400   Heterosexual (straight)              <NA>
## 401   Heterosexual (straight)             Never
## 402   Heterosexual (straight)             Never
## 403   Heterosexual (straight)  Most of the time
## 404   Heterosexual (straight)            Rarely
## 405   Heterosexual (straight)         Sometimes
## 406   Heterosexual (straight)            Rarely
## 407   Heterosexual (straight)             Never
## 408   Heterosexual (straight)            Rarely
## 409   Heterosexual (straight)            Rarely
## 410   Heterosexual (straight)         Sometimes
## 411   Heterosexual (straight)         Sometimes
## 412   Heterosexual (straight)         Sometimes
## 413   Heterosexual (straight)            Rarely
## 414   Heterosexual (straight)             Never
## 415   Heterosexual (straight)            Rarely
## 416   Heterosexual (straight)             Never
## 417            Some other way  Most of the time
## 418   Heterosexual (straight)            Rarely
## 419   Heterosexual (straight)            Always
## 420   Heterosexual (straight)            Rarely
## 421   Heterosexual (straight)            Rarely
## 422   Heterosexual (straight)             Never
## 423                  Bisexual         Sometimes
## 424   Heterosexual (straight)  Most of the time
## 425   Heterosexual (straight)             Never
## 426                  Bisexual  Most of the time
## 427   Heterosexual (straight)            Rarely
## 428   Heterosexual (straight)  Most of the time
## 429   Heterosexual (straight)            Rarely
## 430   Heterosexual (straight)         Sometimes
## 431   Heterosexual (straight)         Sometimes
## 432   Heterosexual (straight)         Sometimes
## 433            Some other way  Most of the time
## 434   Heterosexual (straight)            Rarely
## 435   Heterosexual (straight)            Rarely
## 436   Heterosexual (straight)            Always
## 437   Heterosexual (straight)         Sometimes
## 438   Heterosexual (straight)         Sometimes
## 439   Heterosexual (straight)            Rarely
## 440   Heterosexual (straight)         Sometimes
## 441   Heterosexual (straight)            Rarely
## 442   Heterosexual (straight)         Sometimes
## 443   Heterosexual (straight)            Rarely
## 444   Heterosexual (straight)             Never
## 445   Heterosexual (straight)            Rarely
## 446   Heterosexual (straight)            Rarely
## 447   Heterosexual (straight)         Sometimes
## 448            Gay or lesbian             Never
## 449   Heterosexual (straight)            Rarely
## 450                  Bisexual             Never
## 451                  Not sure         Sometimes
## 452   Heterosexual (straight)         Sometimes
## 453   Heterosexual (straight)            Rarely
## 454   Heterosexual (straight)             Never
## 455   Heterosexual (straight)         Sometimes
## 456   Heterosexual (straight)             Never
## 457            Gay or lesbian            Rarely
## 458   Heterosexual (straight)             Never
## 459   Heterosexual (straight)             Never
## 460   Heterosexual (straight)             Never
## 461   Heterosexual (straight)             Never
## 462   Heterosexual (straight)             Never
## 463   Heterosexual (straight)            Rarely
## 464   Heterosexual (straight)         Sometimes
## 465   Heterosexual (straight)         Sometimes
## 466   Heterosexual (straight)         Sometimes
## 467   Heterosexual (straight)         Sometimes
## 468   Heterosexual (straight)            Always
## 469   Heterosexual (straight)         Sometimes
## 470                  Bisexual         Sometimes
## 471   Heterosexual (straight)            Rarely
## 472                  Not sure            Rarely
## 473   Heterosexual (straight)  Most of the time
## 474   Heterosexual (straight)             Never
## 475   Heterosexual (straight)            Rarely
## 476   Heterosexual (straight)             Never
## 477   Heterosexual (straight)            Rarely
## 478   Heterosexual (straight)            Rarely
## 479   Heterosexual (straight)             Never
## 480   Heterosexual (straight)            Rarely
## 481   Heterosexual (straight)         Sometimes
## 482            Some other way            Rarely
## 483   Heterosexual (straight)            Rarely
## 484   Heterosexual (straight)             Never
## 485   Heterosexual (straight)         Sometimes
## 486   Heterosexual (straight)         Sometimes
## 487   Heterosexual (straight)         Sometimes
## 488   Heterosexual (straight)             Never
## 489   Heterosexual (straight)  Most of the time
## 490   Heterosexual (straight)             Never
## 491   Heterosexual (straight)  Most of the time
## 492   Heterosexual (straight)         Sometimes
## 493   Heterosexual (straight)             Never
## 494   Heterosexual (straight)             Never
## 495   Heterosexual (straight)             Never
## 496                  Not sure  Most of the time
## 497   Heterosexual (straight)            Rarely
## 498   Heterosexual (straight)             Never
## 499   Heterosexual (straight)             Never
## 500   Heterosexual (straight)         Sometimes
## 501   Heterosexual (straight)             Never
## 502   Heterosexual (straight)             Never
## 503   Heterosexual (straight)             Never
## 504   Heterosexual (straight)            Rarely
## 505   Heterosexual (straight)             Never
## 506   Heterosexual (straight)  Most of the time
## 507   Heterosexual (straight)  Most of the time
## 508   Heterosexual (straight)             Never
## 509   Heterosexual (straight)            Rarely
## 510   Heterosexual (straight)            Rarely
## 511   Heterosexual (straight)         Sometimes
## 512   Heterosexual (straight)         Sometimes
## 513   Heterosexual (straight)             Never
## 514   Heterosexual (straight)            Rarely
## 515   Heterosexual (straight)            Always
## 516   Heterosexual (straight)             Never
## 517   Heterosexual (straight)             Never
## 518   Heterosexual (straight)            Rarely
## 519   Heterosexual (straight)             Never
## 520   Heterosexual (straight)            Rarely
## 521   Heterosexual (straight)             Never
## 522   Heterosexual (straight)              <NA>
## 523   Heterosexual (straight)         Sometimes
## 524   Heterosexual (straight)         Sometimes
## 525   Heterosexual (straight)             Never
## 526   Heterosexual (straight)             Never
## 527   Heterosexual (straight)            Rarely
## 528   Heterosexual (straight)             Never
## 529   Heterosexual (straight)             Never
## 530                  Not sure            Always
## 531   Heterosexual (straight)  Most of the time
## 532   Heterosexual (straight)         Sometimes
## 533   Heterosexual (straight)             Never
## 534   Heterosexual (straight)              <NA>
## 535   Heterosexual (straight)            Rarely
## 536   Heterosexual (straight)            Rarely
## 537   Heterosexual (straight)         Sometimes
## 538   Heterosexual (straight)         Sometimes
## 539   Heterosexual (straight)             Never
## 540   Heterosexual (straight)            Rarely
## 541   Heterosexual (straight)              <NA>
## 542   Heterosexual (straight)              <NA>
## 543   Heterosexual (straight)            Rarely
## 544   Heterosexual (straight)  Most of the time
## 545   Heterosexual (straight)             Never
## 546   Heterosexual (straight)            Always
## 547   Heterosexual (straight)             Never
## 548   Heterosexual (straight)             Never
## 549   Heterosexual (straight)  Most of the time
## 550   Heterosexual (straight)            Always
## 551   Heterosexual (straight)  Most of the time
## 552                  Bisexual  Most of the time
## 553                  Bisexual  Most of the time
## 554   Heterosexual (straight)         Sometimes
## 555                  Bisexual         Sometimes
## 556   Heterosexual (straight)         Sometimes
## 557   Heterosexual (straight)             Never
## 558                  Bisexual         Sometimes
## 559   Heterosexual (straight)            Rarely
## 560   Heterosexual (straight)             Never
## 561   Heterosexual (straight)            Rarely
## 562   Heterosexual (straight)             Never
## 563   Heterosexual (straight)            Rarely
## 564   Heterosexual (straight)         Sometimes
## 565            Gay or lesbian  Most of the time
## 566   Heterosexual (straight)  Most of the time
## 567   Heterosexual (straight)            Rarely
## 568   Heterosexual (straight)         Sometimes
## 569   Heterosexual (straight)         Sometimes
## 570   Heterosexual (straight)         Sometimes
## 571   Heterosexual (straight)            Rarely
## 572   Heterosexual (straight)            Rarely
## 573   Heterosexual (straight)  Most of the time
## 574   Heterosexual (straight)         Sometimes
## 575   Heterosexual (straight)         Sometimes
## 576            Gay or lesbian  Most of the time
## 577   Heterosexual (straight)            Rarely
## 578   Heterosexual (straight)  Most of the time
## 579   Heterosexual (straight)         Sometimes
## 580   Heterosexual (straight)            Rarely
## 581   Heterosexual (straight)             Never
## 582   Heterosexual (straight)            Always
## 583   Heterosexual (straight)         Sometimes
## 584   Heterosexual (straight)            Rarely
## 585   Heterosexual (straight)         Sometimes
## 586                  Bisexual            Rarely
## 587   Heterosexual (straight)            Rarely
## 588   Heterosexual (straight)             Never
## 589   Heterosexual (straight)             Never
## 590   Heterosexual (straight)             Never
## 591   Heterosexual (straight)             Never
## 592   Heterosexual (straight)         Sometimes
## 593   Heterosexual (straight)         Sometimes
## 594   Heterosexual (straight)            Rarely
## 595                  Not sure            Rarely
## 596   Heterosexual (straight)            Rarely
## 597   Heterosexual (straight)         Sometimes
## 598                  Bisexual  Most of the time
## 599   Heterosexual (straight)             Never
## 600   Heterosexual (straight)         Sometimes
## 601   Heterosexual (straight)             Never
## 602   Heterosexual (straight)            Always
## 603   Heterosexual (straight)            Rarely
## 604   Heterosexual (straight)            Rarely
## 605   Heterosexual (straight)         Sometimes
## 606   Heterosexual (straight)            Rarely
## 607   Heterosexual (straight)             Never
## 608   Heterosexual (straight)         Sometimes
## 609   Heterosexual (straight)         Sometimes
## 610   Heterosexual (straight)            Rarely
## 611   Heterosexual (straight)         Sometimes
## 612   Heterosexual (straight)             Never
## 613   Heterosexual (straight)            Rarely
## 614                  Bisexual         Sometimes
## 615   Heterosexual (straight)            Rarely
## 616   Heterosexual (straight)  Most of the time
## 617   Heterosexual (straight)            Rarely
## 618   Heterosexual (straight)            Always
## 619   Heterosexual (straight)             Never
## 620            Some other way         Sometimes
## 621   Heterosexual (straight)            Rarely
## 622   Heterosexual (straight)            Rarely
## 623   Heterosexual (straight)  Most of the time
## 624   Heterosexual (straight)         Sometimes
## 625   Heterosexual (straight)            Always
## 626   Heterosexual (straight)             Never
## 627   Heterosexual (straight)             Never
## 628                  Not sure            Always
## 629   Heterosexual (straight)         Sometimes
## 630   Heterosexual (straight)         Sometimes
## 631   Heterosexual (straight)         Sometimes
## 632   Heterosexual (straight)            Rarely
## 633   Heterosexual (straight)             Never
## 634   Heterosexual (straight)            Rarely
## 635   Heterosexual (straight)         Sometimes
## 636   Heterosexual (straight)  Most of the time
## 637                  Not sure            Rarely
## 638   Heterosexual (straight)            Rarely
## 639                  Not sure  Most of the time
## 640   Heterosexual (straight)              <NA>
## 641   Heterosexual (straight)             Never
## 642   Heterosexual (straight)         Sometimes
## 643   Heterosexual (straight)  Most of the time
## 644   Heterosexual (straight)             Never
## 645   Heterosexual (straight)            Rarely
## 646   Heterosexual (straight)         Sometimes
## 647   Heterosexual (straight)            Rarely
## 648   Heterosexual (straight)  Most of the time
## 649   Heterosexual (straight)         Sometimes
## 650   Heterosexual (straight)             Never
## 651                  Bisexual            Always
## 652   Heterosexual (straight)  Most of the time
## 653   Heterosexual (straight)             Never
## 654   Heterosexual (straight)             Never
## 655                  Bisexual         Sometimes
## 656   Heterosexual (straight)             Never
## 657   Heterosexual (straight)             Never
## 658   Heterosexual (straight)            Always
## 659   Heterosexual (straight)         Sometimes
## 660   Heterosexual (straight)         Sometimes
## 661   Heterosexual (straight)             Never
## 662   Heterosexual (straight)             Never
## 663   Heterosexual (straight)         Sometimes
## 664   Heterosexual (straight)             Never
## 665   Heterosexual (straight)  Most of the time
## 666   Heterosexual (straight)  Most of the time
## 667   Heterosexual (straight)            Rarely
## 668   Heterosexual (straight)         Sometimes
## 669   Heterosexual (straight)  Most of the time
## 670   Heterosexual (straight)         Sometimes
## 671   Heterosexual (straight)  Most of the time
## 672   Heterosexual (straight)              <NA>
## 673   Heterosexual (straight)            Always
## 674   Heterosexual (straight)         Sometimes
## 675   Heterosexual (straight)         Sometimes
## 676            Gay or lesbian             Never
## 677   Heterosexual (straight)             Never
## 678   Heterosexual (straight)             Never
## 679   Heterosexual (straight)             Never
## 680   Heterosexual (straight)  Most of the time
## 681            Gay or lesbian         Sometimes
## 682   Heterosexual (straight)             Never
## 683   Heterosexual (straight)             Never
## 684   Heterosexual (straight)             Never
## 685   Heterosexual (straight)            Rarely
## 686   Heterosexual (straight)             Never
## 687   Heterosexual (straight)         Sometimes
## 688   Heterosexual (straight)  Most of the time
## 689   Heterosexual (straight)             Never
## 690   Heterosexual (straight)  Most of the time
## 691   Heterosexual (straight)         Sometimes
## 692                  Bisexual            Rarely
## 693   Heterosexual (straight)             Never
## 694   Heterosexual (straight)             Never
## 695   Heterosexual (straight)            Rarely
## 696   Heterosexual (straight)         Sometimes
## 697   Heterosexual (straight)              <NA>
## 698   Heterosexual (straight)             Never
## 699                  Not sure         Sometimes
## 700   Heterosexual (straight)         Sometimes
## 701   Heterosexual (straight)            Rarely
## 702   Heterosexual (straight)  Most of the time
## 703   Heterosexual (straight)              <NA>
## 704   Heterosexual (straight)         Sometimes
## 705   Heterosexual (straight)            Rarely
## 706   Heterosexual (straight)            Rarely
## 707            Some other way  Most of the time
## 708   Heterosexual (straight)            Rarely
## 709   Heterosexual (straight)         Sometimes
## 710   Heterosexual (straight)              <NA>
## 711   Heterosexual (straight)  Most of the time
## 712   Heterosexual (straight)            Rarely
## 713   Heterosexual (straight)  Most of the time
## 714   Heterosexual (straight)             Never
## 715   Heterosexual (straight)              <NA>
## 716   Heterosexual (straight)         Sometimes
## 717            Some other way         Sometimes
## 718   Heterosexual (straight)  Most of the time
## 719   Heterosexual (straight)              <NA>
## 720   Heterosexual (straight)         Sometimes
## 721   Heterosexual (straight)             Never
## 722   Heterosexual (straight)         Sometimes
## 723   Heterosexual (straight)            Rarely
## 724   Heterosexual (straight)             Never
## 725   Heterosexual (straight)            Rarely
## 726   Heterosexual (straight)         Sometimes
## 727   Heterosexual (straight)             Never
## 728   Heterosexual (straight)            Rarely
## 729   Heterosexual (straight)             Never
## 730   Heterosexual (straight)             Never
## 731   Heterosexual (straight)             Never
## 732   Heterosexual (straight)         Sometimes
## 733   Heterosexual (straight)             Never
## 734   Heterosexual (straight)            Rarely
## 735   Heterosexual (straight)            Rarely
## 736   Heterosexual (straight)         Sometimes
## 737   Heterosexual (straight)             Never
## 738   Heterosexual (straight)         Sometimes
## 739   Heterosexual (straight)            Rarely
## 740   Heterosexual (straight)  Most of the time
## 741   Heterosexual (straight)         Sometimes
## 742                  Bisexual         Sometimes
## 743   Heterosexual (straight)            Rarely
## 744   Heterosexual (straight)              <NA>
## 745   Heterosexual (straight)              <NA>
## 746   Heterosexual (straight)              <NA>
## 747   Heterosexual (straight)              <NA>
## 748   Heterosexual (straight)              <NA>
## 749   Heterosexual (straight)              <NA>
## 750   Heterosexual (straight)              <NA>
## 751   Heterosexual (straight)              <NA>
## 752   Heterosexual (straight)              <NA>
## 753   Heterosexual (straight)              <NA>
## 754   Heterosexual (straight)              <NA>
## 755   Heterosexual (straight)              <NA>
## 756   Heterosexual (straight)              <NA>
## 757   Heterosexual (straight)              <NA>
## 758   Heterosexual (straight)              <NA>
## 759   Heterosexual (straight)              <NA>
## 760   Heterosexual (straight)              <NA>
## 761   Heterosexual (straight)              <NA>
## 762                  Not sure              <NA>
## 763   Heterosexual (straight)              <NA>
## 764   Heterosexual (straight)              <NA>
## 765                  Bisexual              <NA>
## 766   Heterosexual (straight)              <NA>
## 767   Heterosexual (straight)              <NA>
## 768   Heterosexual (straight)              <NA>
## 769   Heterosexual (straight)              <NA>
## 770   Heterosexual (straight)              <NA>
## 771   Heterosexual (straight)              <NA>
## 772   Heterosexual (straight)              <NA>
## 773   Heterosexual (straight)              <NA>
## 774   Heterosexual (straight)              <NA>
## 775   Heterosexual (straight)              <NA>
## 776   Heterosexual (straight)              <NA>
## 777   Heterosexual (straight)              <NA>
## 778   Heterosexual (straight)              <NA>
## 779            Gay or lesbian              <NA>
## 780   Heterosexual (straight)              <NA>
## 781   Heterosexual (straight)              <NA>
## 782                  Not sure              <NA>
## 783   Heterosexual (straight)              <NA>
## 784   Heterosexual (straight)              <NA>
## 785   Heterosexual (straight)              <NA>
## 786   Heterosexual (straight)         Sometimes
## 787   Heterosexual (straight)  Most of the time
## 788   Heterosexual (straight)             Never
## 789   Heterosexual (straight)            Rarely
## 790   Heterosexual (straight)         Sometimes
## 791   Heterosexual (straight)             Never
## 792   Heterosexual (straight)             Never
## 793   Heterosexual (straight)            Rarely
## 794   Heterosexual (straight)  Most of the time
## 795   Heterosexual (straight)         Sometimes
## 796   Heterosexual (straight)  Most of the time
## 797            Some other way         Sometimes
## 798   Heterosexual (straight)            Rarely
## 799   Heterosexual (straight)             Never
## 800   Heterosexual (straight)             Never
## 801   Heterosexual (straight)             Never
## 802   Heterosexual (straight)  Most of the time
## 803   Heterosexual (straight)             Never
## 804   Heterosexual (straight)            Rarely
## 805   Heterosexual (straight)             Never
## 806   Heterosexual (straight)             Never
## 807   Heterosexual (straight)            Rarely
## 808   Heterosexual (straight)             Never
## 809   Heterosexual (straight)             Never
## 810   Heterosexual (straight)              <NA>
## 811   Heterosexual (straight)             Never
## 812                  Not sure            Rarely
## 813   Heterosexual (straight)            Rarely
## 814   Heterosexual (straight)         Sometimes
## 815   Heterosexual (straight)            Rarely
## 816   Heterosexual (straight)         Sometimes
## 817   Heterosexual (straight)            Rarely
## 818   Heterosexual (straight)            Rarely
## 819   Heterosexual (straight)         Sometimes
## 820   Heterosexual (straight)         Sometimes
## 821   Heterosexual (straight)             Never
## 822   Heterosexual (straight)         Sometimes
## 823   Heterosexual (straight)              <NA>
## 824   Heterosexual (straight)            Rarely
## 825   Heterosexual (straight)  Most of the time
## 826   Heterosexual (straight)             Never
## 827   Heterosexual (straight)         Sometimes
## 828   Heterosexual (straight)  Most of the time
## 829   Heterosexual (straight)         Sometimes
## 830   Heterosexual (straight)  Most of the time
## 831                  Bisexual  Most of the time
## 832            Some other way         Sometimes
## 833   Heterosexual (straight)  Most of the time
## 834   Heterosexual (straight)            Always
## 835   Heterosexual (straight)         Sometimes
## 836   Heterosexual (straight)            Rarely
## 837                  Not sure             Never
## 838                  Bisexual         Sometimes
## 839                  Bisexual  Most of the time
## 840   Heterosexual (straight)         Sometimes
## 841   Heterosexual (straight)             Never
## 842   Heterosexual (straight)         Sometimes
## 843   Heterosexual (straight)             Never
## 844                  Bisexual            Rarely
## 845   Heterosexual (straight)            Rarely
## 846   Heterosexual (straight)            Rarely
## 847   Heterosexual (straight)            Rarely
## 848   Heterosexual (straight)         Sometimes
## 849   Heterosexual (straight)            Rarely
## 850   Heterosexual (straight)             Never
## 851   Heterosexual (straight)         Sometimes
## 852   Heterosexual (straight)         Sometimes
## 853            Some other way  Most of the time
## 854                  Not sure            Always
## 855            Some other way            Always
## 856   Heterosexual (straight)         Sometimes
## 857   Heterosexual (straight)              <NA>
## 858   Heterosexual (straight)             Never
## 859   Heterosexual (straight)              <NA>
## 860   Heterosexual (straight)            Rarely
## 861   Heterosexual (straight)            Rarely
## 862   Heterosexual (straight)            Rarely
## 863   Heterosexual (straight)         Sometimes
## 864   Heterosexual (straight)             Never
## 865   Heterosexual (straight)            Rarely
## 866   Heterosexual (straight)             Never
## 867   Heterosexual (straight)            Rarely
## 868   Heterosexual (straight)         Sometimes
## 869   Heterosexual (straight)            Rarely
## 870   Heterosexual (straight)            Rarely
## 871   Heterosexual (straight)             Never
## 872   Heterosexual (straight)            Rarely
## 873   Heterosexual (straight)  Most of the time
## 874   Heterosexual (straight)         Sometimes
## 875   Heterosexual (straight)  Most of the time
## 876   Heterosexual (straight)  Most of the time
## 877                  Bisexual            Rarely
## 878   Heterosexual (straight)            Rarely
## 879   Heterosexual (straight)         Sometimes
## 880   Heterosexual (straight)         Sometimes
## 881   Heterosexual (straight)            Rarely
## 882   Heterosexual (straight)            Rarely
## 883   Heterosexual (straight)            Rarely
## 884   Heterosexual (straight)             Never
## 885   Heterosexual (straight)         Sometimes
## 886   Heterosexual (straight)            Rarely
## 887   Heterosexual (straight)  Most of the time
## 888   Heterosexual (straight)            Rarely
## 889   Heterosexual (straight)  Most of the time
## 890   Heterosexual (straight)         Sometimes
## 891   Heterosexual (straight)            Rarely
## 892   Heterosexual (straight)         Sometimes
## 893   Heterosexual (straight)            Always
## 894   Heterosexual (straight)            Rarely
## 895   Heterosexual (straight)            Rarely
## 896   Heterosexual (straight)            Rarely
## 897   Heterosexual (straight)             Never
## 898   Heterosexual (straight)         Sometimes
## 899   Heterosexual (straight)            Rarely
## 900                  Not sure         Sometimes
## 901            Some other way            Rarely
## 902   Heterosexual (straight)            Always
## 903   Heterosexual (straight)             Never
## 904   Heterosexual (straight)         Sometimes
## 905   Heterosexual (straight)         Sometimes
## 906   Heterosexual (straight)         Sometimes
## 907   Heterosexual (straight)             Never
## 908                  Bisexual  Most of the time
## 909   Heterosexual (straight)             Never
## 910   Heterosexual (straight)         Sometimes
## 911   Heterosexual (straight)            Rarely
## 912   Heterosexual (straight)         Sometimes
## 913   Heterosexual (straight)            Rarely
## 914   Heterosexual (straight)         Sometimes
## 915   Heterosexual (straight)  Most of the time
## 916   Heterosexual (straight)             Never
## 917   Heterosexual (straight)         Sometimes
## 918   Heterosexual (straight)             Never
## 919   Heterosexual (straight)            Always
## 920   Heterosexual (straight)            Rarely
## 921   Heterosexual (straight)         Sometimes
## 922   Heterosexual (straight)            Always
## 923   Heterosexual (straight)            Rarely
## 924   Heterosexual (straight)         Sometimes
## 925   Heterosexual (straight)            Rarely
## 926   Heterosexual (straight)             Never
## 927   Heterosexual (straight)            Rarely
## 928   Heterosexual (straight)         Sometimes
## 929   Heterosexual (straight)         Sometimes
## 930   Heterosexual (straight)             Never
## 931   Heterosexual (straight)         Sometimes
## 932   Heterosexual (straight)             Never
## 933   Heterosexual (straight)  Most of the time
## 934   Heterosexual (straight)         Sometimes
## 935   Heterosexual (straight)             Never
## 936   Heterosexual (straight)             Never
## 937   Heterosexual (straight)         Sometimes
## 938   Heterosexual (straight)             Never
## 939   Heterosexual (straight)            Rarely
## 940   Heterosexual (straight)            Rarely
## 941   Heterosexual (straight)         Sometimes
## 942   Heterosexual (straight)             Never
## 943   Heterosexual (straight)            Rarely
## 944   Heterosexual (straight)         Sometimes
## 945   Heterosexual (straight)            Rarely
## 946   Heterosexual (straight)            Rarely
## 947   Heterosexual (straight)            Rarely
## 948   Heterosexual (straight)            Rarely
## 949   Heterosexual (straight)         Sometimes
## 950   Heterosexual (straight)            Rarely
## 951   Heterosexual (straight)             Never
## 952   Heterosexual (straight)             Never
## 953   Heterosexual (straight)         Sometimes
## 954            Gay or lesbian         Sometimes
## 955   Heterosexual (straight)  Most of the time
## 956   Heterosexual (straight)             Never
## 957   Heterosexual (straight)            Rarely
## 958   Heterosexual (straight)         Sometimes
## 959   Heterosexual (straight)         Sometimes
## 960   Heterosexual (straight)            Rarely
## 961   Heterosexual (straight)            Rarely
## 962   Heterosexual (straight)              <NA>
## 963   Heterosexual (straight)         Sometimes
## 964   Heterosexual (straight)         Sometimes
## 965   Heterosexual (straight)            Rarely
## 966   Heterosexual (straight)            Rarely
## 967   Heterosexual (straight)            Rarely
## 968   Heterosexual (straight)         Sometimes
## 969   Heterosexual (straight)             Never
## 970   Heterosexual (straight)            Rarely
## 971   Heterosexual (straight)            Rarely
## 972   Heterosexual (straight)              <NA>
## 973   Heterosexual (straight)            Rarely
## 974            Some other way            Always
## 975   Heterosexual (straight)             Never
## 976                  Bisexual         Sometimes
## 977   Heterosexual (straight)         Sometimes
## 978   Heterosexual (straight)            Rarely
## 979   Heterosexual (straight)            Rarely
## 980                  Bisexual            Always
## 981   Heterosexual (straight)            Rarely
## 982   Heterosexual (straight)         Sometimes
## 983   Heterosexual (straight)             Never
## 984   Heterosexual (straight)            Rarely
## 985   Heterosexual (straight)         Sometimes
## 986            Gay or lesbian            Rarely
## 987   Heterosexual (straight)            Rarely
## 988   Heterosexual (straight)             Never
## 989   Heterosexual (straight)             Never
## 990   Heterosexual (straight)            Rarely
## 991   Heterosexual (straight)             Never
## 992   Heterosexual (straight)            Rarely
## 993   Heterosexual (straight)             Never
## 994   Heterosexual (straight)         Sometimes
## 995   Heterosexual (straight)         Sometimes
## 996   Heterosexual (straight)            Always
## 997   Heterosexual (straight)             Never
## 998   Heterosexual (straight)         Sometimes
## 999   Heterosexual (straight)            Always
## 1000  Heterosexual (straight)         Sometimes
## 1001  Heterosexual (straight)         Sometimes
## 1002  Heterosexual (straight)         Sometimes
## 1003  Heterosexual (straight)  Most of the time
## 1004                 Bisexual             Never
## 1005  Heterosexual (straight)            Rarely
## 1006  Heterosexual (straight)         Sometimes
## 1007  Heterosexual (straight)         Sometimes
## 1008  Heterosexual (straight)  Most of the time
## 1009  Heterosexual (straight)  Most of the time
## 1010  Heterosexual (straight)              <NA>
## 1011  Heterosexual (straight)  Most of the time
## 1012  Heterosexual (straight)         Sometimes
## 1013  Heterosexual (straight)  Most of the time
## 1014  Heterosexual (straight)         Sometimes
## 1015  Heterosexual (straight)             Never
## 1016  Heterosexual (straight)  Most of the time
## 1017  Heterosexual (straight)            Rarely
## 1018  Heterosexual (straight)         Sometimes
## 1019  Heterosexual (straight)             Never
## 1020  Heterosexual (straight)            Rarely
## 1021  Heterosexual (straight)             Never
## 1022  Heterosexual (straight)            Rarely
## 1023  Heterosexual (straight)         Sometimes
## 1024  Heterosexual (straight)             Never
## 1025                 Bisexual         Sometimes
## 1026           Gay or lesbian            Always
## 1027  Heterosexual (straight)         Sometimes
## 1028  Heterosexual (straight)            Rarely
## 1029  Heterosexual (straight)         Sometimes
## 1030  Heterosexual (straight)         Sometimes
## 1031  Heterosexual (straight)         Sometimes
## 1032  Heterosexual (straight)         Sometimes
## 1033  Heterosexual (straight)            Rarely
## 1034  Heterosexual (straight)         Sometimes
## 1035                 Bisexual  Most of the time
## 1036  Heterosexual (straight)            Rarely
## 1037  Heterosexual (straight)             Never
## 1038  Heterosexual (straight)              <NA>
## 1039  Heterosexual (straight)         Sometimes
## 1040                 Bisexual         Sometimes
## 1041  Heterosexual (straight)         Sometimes
## 1042  Heterosexual (straight)         Sometimes
## 1043                 Bisexual  Most of the time
## 1044  Heterosexual (straight)            Rarely
## 1045  Heterosexual (straight)         Sometimes
## 1046  Heterosexual (straight)            Always
## 1047  Heterosexual (straight)            Always
## 1048                 Bisexual            Always
## 1049  Heterosexual (straight)              <NA>
## 1050  Heterosexual (straight)             Never
## 1051  Heterosexual (straight)  Most of the time
## 1052  Heterosexual (straight)         Sometimes
## 1053  Heterosexual (straight)              <NA>
## 1054  Heterosexual (straight)  Most of the time
## 1055  Heterosexual (straight)            Rarely
## 1056  Heterosexual (straight)            Always
## 1057  Heterosexual (straight)  Most of the time
## 1058  Heterosexual (straight)            Rarely
## 1059  Heterosexual (straight)             Never
## 1060                 Bisexual         Sometimes
## 1061  Heterosexual (straight)         Sometimes
## 1062  Heterosexual (straight)             Never
## 1063  Heterosexual (straight)            Rarely
## 1064  Heterosexual (straight)  Most of the time
## 1065  Heterosexual (straight)  Most of the time
## 1066                 Bisexual         Sometimes
## 1067  Heterosexual (straight)             Never
## 1068  Heterosexual (straight)             Never
## 1069  Heterosexual (straight)  Most of the time
## 1070  Heterosexual (straight)            Rarely
## 1071  Heterosexual (straight)            Rarely
## 1072  Heterosexual (straight)            Rarely
## 1073  Heterosexual (straight)            Rarely
## 1074  Heterosexual (straight)            Rarely
## 1075  Heterosexual (straight)            Rarely
## 1076                 Bisexual  Most of the time
## 1077  Heterosexual (straight)            Rarely
## 1078  Heterosexual (straight)             Never
## 1079  Heterosexual (straight)            Rarely
## 1080  Heterosexual (straight)         Sometimes
## 1081  Heterosexual (straight)  Most of the time
## 1082  Heterosexual (straight)            Rarely
## 1083  Heterosexual (straight)             Never
## 1084  Heterosexual (straight)            Rarely
## 1085  Heterosexual (straight)            Rarely
## 1086  Heterosexual (straight)              <NA>
## 1087  Heterosexual (straight)             Never
## 1088  Heterosexual (straight)            Rarely
## 1089                 Bisexual            Always
## 1090  Heterosexual (straight)         Sometimes
## 1091  Heterosexual (straight)  Most of the time
## 1092  Heterosexual (straight)         Sometimes
## 1093  Heterosexual (straight)         Sometimes
## 1094  Heterosexual (straight)            Always
## 1095  Heterosexual (straight)             Never
## 1096  Heterosexual (straight)  Most of the time
## 1097  Heterosexual (straight)            Rarely
## 1098  Heterosexual (straight)            Rarely
## 1099  Heterosexual (straight)         Sometimes
## 1100  Heterosexual (straight)            Rarely
## 1101  Heterosexual (straight)         Sometimes
## 1102  Heterosexual (straight)            Rarely
## 1103  Heterosexual (straight)             Never
## 1104  Heterosexual (straight)         Sometimes
## 1105  Heterosexual (straight)             Never
## 1106  Heterosexual (straight)             Never
## 1107  Heterosexual (straight)            Rarely
## 1108  Heterosexual (straight)             Never
## 1109  Heterosexual (straight)         Sometimes
## 1110  Heterosexual (straight)             Never
## 1111                 Not sure         Sometimes
## 1112  Heterosexual (straight)             Never
## 1113           Gay or lesbian            Rarely
## 1114  Heterosexual (straight)         Sometimes
## 1115  Heterosexual (straight)            Rarely
## 1116  Heterosexual (straight)            Always
## 1117  Heterosexual (straight)            Always
## 1118  Heterosexual (straight)         Sometimes
## 1119  Heterosexual (straight)             Never
## 1120                 Bisexual            Always
## 1121  Heterosexual (straight)            Rarely
## 1122  Heterosexual (straight)             Never
## 1123  Heterosexual (straight)            Rarely
## 1124  Heterosexual (straight)             Never
## 1125  Heterosexual (straight)             Never
## 1126           Some other way         Sometimes
## 1127  Heterosexual (straight)         Sometimes
## 1128  Heterosexual (straight)            Rarely
## 1129  Heterosexual (straight)             Never
## 1130  Heterosexual (straight)            Rarely
## 1131  Heterosexual (straight)  Most of the time
## 1132  Heterosexual (straight)         Sometimes
## 1133  Heterosexual (straight)  Most of the time
## 1134                 Bisexual  Most of the time
## 1135  Heterosexual (straight)         Sometimes
## 1136  Heterosexual (straight)  Most of the time
## 1137  Heterosexual (straight)            Rarely
## 1138  Heterosexual (straight)  Most of the time
## 1139  Heterosexual (straight)             Never
## 1140  Heterosexual (straight)            Rarely
## 1141  Heterosexual (straight)            Rarely
## 1142  Heterosexual (straight)         Sometimes
## 1143  Heterosexual (straight)             Never
## 1144  Heterosexual (straight)  Most of the time
## 1145  Heterosexual (straight)            Always
## 1146  Heterosexual (straight)            Rarely
## 1147  Heterosexual (straight)         Sometimes
## 1148  Heterosexual (straight)             Never
## 1149  Heterosexual (straight)         Sometimes
## 1150  Heterosexual (straight)         Sometimes
## 1151  Heterosexual (straight)            Rarely
## 1152  Heterosexual (straight)         Sometimes
## 1153  Heterosexual (straight)         Sometimes
## 1154  Heterosexual (straight)            Rarely
## 1155  Heterosexual (straight)             Never
## 1156  Heterosexual (straight)         Sometimes
## 1157  Heterosexual (straight)            Rarely
## 1158  Heterosexual (straight)         Sometimes
## 1159  Heterosexual (straight)         Sometimes
## 1160  Heterosexual (straight)            Rarely
## 1161  Heterosexual (straight)         Sometimes
## 1162  Heterosexual (straight)         Sometimes
## 1163                 Bisexual         Sometimes
## 1164  Heterosexual (straight)         Sometimes
## 1165  Heterosexual (straight)            Rarely
## 1166  Heterosexual (straight)         Sometimes
## 1167  Heterosexual (straight)            Rarely
## 1168           Some other way            Rarely
## 1169  Heterosexual (straight)  Most of the time
## 1170  Heterosexual (straight)  Most of the time
## 1171           Gay or lesbian            Rarely
## 1172  Heterosexual (straight)             Never
## 1173  Heterosexual (straight)            Rarely
## 1174  Heterosexual (straight)         Sometimes
## 1175  Heterosexual (straight)         Sometimes
## 1176  Heterosexual (straight)         Sometimes
## 1177  Heterosexual (straight)            Rarely
## 1178  Heterosexual (straight)  Most of the time
## 1179  Heterosexual (straight)         Sometimes
## 1180  Heterosexual (straight)         Sometimes
## 1181  Heterosexual (straight)         Sometimes
## 1182  Heterosexual (straight)  Most of the time
## 1183  Heterosexual (straight)             Never
## 1184           Some other way         Sometimes
## 1185  Heterosexual (straight)            Rarely
## 1186  Heterosexual (straight)            Always
## 1187  Heterosexual (straight)         Sometimes
## 1188  Heterosexual (straight)             Never
## 1189  Heterosexual (straight)            Rarely
## 1190  Heterosexual (straight)         Sometimes
## 1191  Heterosexual (straight)         Sometimes
## 1192  Heterosexual (straight)             Never
## 1193  Heterosexual (straight)  Most of the time
## 1194  Heterosexual (straight)         Sometimes
## 1195  Heterosexual (straight)         Sometimes
## 1196           Gay or lesbian             Never
## 1197  Heterosexual (straight)             Never
## 1198  Heterosexual (straight)         Sometimes
## 1199  Heterosexual (straight)         Sometimes
## 1200           Gay or lesbian         Sometimes
## 1201  Heterosexual (straight)            Rarely
## 1202  Heterosexual (straight)  Most of the time
## 1203  Heterosexual (straight)            Rarely
## 1204  Heterosexual (straight)         Sometimes
## 1205  Heterosexual (straight)  Most of the time
## 1206  Heterosexual (straight)            Rarely
## 1207  Heterosexual (straight)         Sometimes
## 1208  Heterosexual (straight)            Rarely
## 1209  Heterosexual (straight)         Sometimes
## 1210  Heterosexual (straight)              <NA>
## 1211  Heterosexual (straight)              <NA>
## 1212  Heterosexual (straight)              <NA>
## 1213  Heterosexual (straight)              <NA>
## 1214  Heterosexual (straight)              <NA>
## 1215  Heterosexual (straight)              <NA>
## 1216  Heterosexual (straight)              <NA>
## 1217  Heterosexual (straight)              <NA>
## 1218  Heterosexual (straight)              <NA>
## 1219  Heterosexual (straight)              <NA>
## 1220  Heterosexual (straight)              <NA>
## 1221  Heterosexual (straight)              <NA>
## 1222  Heterosexual (straight)              <NA>
## 1223  Heterosexual (straight)              <NA>
## 1224  Heterosexual (straight)              <NA>
## 1225  Heterosexual (straight)              <NA>
## 1226  Heterosexual (straight)              <NA>
## 1227  Heterosexual (straight)              <NA>
## 1228  Heterosexual (straight)              <NA>
## 1229                 Not sure              <NA>
## 1230  Heterosexual (straight)              <NA>
## 1231           Gay or lesbian              <NA>
## 1232  Heterosexual (straight)              <NA>
## 1233  Heterosexual (straight)              <NA>
## 1234  Heterosexual (straight)              <NA>
## 1235  Heterosexual (straight)              <NA>
## 1236  Heterosexual (straight)              <NA>
## 1237  Heterosexual (straight)              <NA>
## 1238  Heterosexual (straight)              <NA>
## 1239  Heterosexual (straight)              <NA>
## 1240           Gay or lesbian              <NA>
## 1241  Heterosexual (straight)              <NA>
## 1242  Heterosexual (straight)              <NA>
## 1243  Heterosexual (straight)              <NA>
## 1244  Heterosexual (straight)              <NA>
## 1245  Heterosexual (straight)              <NA>
## 1246  Heterosexual (straight)              <NA>
## 1247  Heterosexual (straight)              <NA>
## 1248  Heterosexual (straight)              <NA>
## 1249  Heterosexual (straight)              <NA>
## 1250  Heterosexual (straight)              <NA>
## 1251  Heterosexual (straight)              <NA>
## 1252  Heterosexual (straight)              <NA>
## 1253  Heterosexual (straight)              <NA>
## 1254  Heterosexual (straight)              <NA>
## 1255  Heterosexual (straight)              <NA>
## 1256  Heterosexual (straight)              <NA>
## 1257                 Bisexual              <NA>
## 1258  Heterosexual (straight)              <NA>
## 1259  Heterosexual (straight)              <NA>
## 1260  Heterosexual (straight)              <NA>
## 1261  Heterosexual (straight)              <NA>
## 1262  Heterosexual (straight)              <NA>
## 1263  Heterosexual (straight)              <NA>
## 1264  Heterosexual (straight)              <NA>
## 1265  Heterosexual (straight)              <NA>
## 1266  Heterosexual (straight)              <NA>
## 1267  Heterosexual (straight)              <NA>
## 1268                 Not sure              <NA>
## 1269  Heterosexual (straight)              <NA>
## 1270  Heterosexual (straight)              <NA>
## 1271  Heterosexual (straight)              <NA>
## 1272  Heterosexual (straight)              <NA>
## 1273  Heterosexual (straight)              <NA>
## 1274  Heterosexual (straight)              <NA>
## 1275  Heterosexual (straight)              <NA>
## 1276  Heterosexual (straight)              <NA>
## 1277  Heterosexual (straight)         Sometimes
## 1278  Heterosexual (straight)         Sometimes
## 1279  Heterosexual (straight)            Rarely
## 1280  Heterosexual (straight)            Rarely
## 1281                 Not sure            Rarely
## 1282  Heterosexual (straight)  Most of the time
## 1283  Heterosexual (straight)            Rarely
## 1284                 Bisexual  Most of the time
## 1285  Heterosexual (straight)         Sometimes
## 1286  Heterosexual (straight)             Never
## 1287  Heterosexual (straight)            Rarely
## 1288  Heterosexual (straight)             Never
## 1289  Heterosexual (straight)            Rarely
## 1290  Heterosexual (straight)            Rarely
## 1291  Heterosexual (straight)         Sometimes
## 1292  Heterosexual (straight)             Never
## 1293  Heterosexual (straight)            Rarely
## 1294  Heterosexual (straight)            Rarely
## 1295  Heterosexual (straight)         Sometimes
## 1296  Heterosexual (straight)  Most of the time
## 1297  Heterosexual (straight)            Rarely
## 1298  Heterosexual (straight)         Sometimes
## 1299  Heterosexual (straight)            Rarely
## 1300  Heterosexual (straight)         Sometimes
## 1301  Heterosexual (straight)             Never
## 1302  Heterosexual (straight)             Never
## 1303  Heterosexual (straight)            Rarely
## 1304                 Bisexual  Most of the time
## 1305  Heterosexual (straight)  Most of the time
## 1306  Heterosexual (straight)             Never
## 1307  Heterosexual (straight)  Most of the time
## 1308  Heterosexual (straight)             Never
## 1309  Heterosexual (straight)         Sometimes
## 1310  Heterosexual (straight)            Rarely
## 1311  Heterosexual (straight)             Never
## 1312  Heterosexual (straight)         Sometimes
## 1313  Heterosexual (straight)             Never
## 1314  Heterosexual (straight)         Sometimes
## 1315  Heterosexual (straight)            Rarely
## 1316  Heterosexual (straight)  Most of the time
## 1317  Heterosexual (straight)             Never
## 1318  Heterosexual (straight)  Most of the time
## 1319  Heterosexual (straight)            Rarely
## 1320  Heterosexual (straight)         Sometimes
## 1321  Heterosexual (straight)            Rarely
## 1322                 Bisexual  Most of the time
## 1323  Heterosexual (straight)             Never
## 1324  Heterosexual (straight)         Sometimes
## 1325  Heterosexual (straight)             Never
## 1326  Heterosexual (straight)             Never
## 1327  Heterosexual (straight)         Sometimes
## 1328  Heterosexual (straight)             Never
## 1329  Heterosexual (straight)         Sometimes
## 1330  Heterosexual (straight)            Rarely
## 1331  Heterosexual (straight)            Rarely
## 1332  Heterosexual (straight)            Always
## 1333  Heterosexual (straight)            Rarely
## 1334  Heterosexual (straight)  Most of the time
## 1335  Heterosexual (straight)            Rarely
## 1336  Heterosexual (straight)            Rarely
## 1337  Heterosexual (straight)             Never
## 1338  Heterosexual (straight)            Rarely
## 1339  Heterosexual (straight)             Never
## 1340  Heterosexual (straight)         Sometimes
## 1341  Heterosexual (straight)            Rarely
## 1342  Heterosexual (straight)         Sometimes
## 1343  Heterosexual (straight)            Rarely
## 1344  Heterosexual (straight)              <NA>
## 1345  Heterosexual (straight)         Sometimes
## 1346  Heterosexual (straight)             Never
## 1347           Some other way         Sometimes
## 1348  Heterosexual (straight)         Sometimes
## 1349  Heterosexual (straight)             Never
## 1350  Heterosexual (straight)            Always
## 1351  Heterosexual (straight)         Sometimes
## 1352  Heterosexual (straight)         Sometimes
## 1353  Heterosexual (straight)            Rarely
## 1354  Heterosexual (straight)  Most of the time
## 1355                 Bisexual  Most of the time
## 1356                 Bisexual            Rarely
## 1357  Heterosexual (straight)         Sometimes
## 1358  Heterosexual (straight)            Rarely
## 1359  Heterosexual (straight)            Rarely
## 1360                 Bisexual         Sometimes
## 1361  Heterosexual (straight)  Most of the time
## 1362  Heterosexual (straight)         Sometimes
## 1363  Heterosexual (straight)         Sometimes
## 1364  Heterosexual (straight)             Never
## 1365  Heterosexual (straight)             Never
## 1366  Heterosexual (straight)            Rarely
## 1367  Heterosexual (straight)         Sometimes
## 1368  Heterosexual (straight)         Sometimes
## 1369  Heterosexual (straight)         Sometimes
## 1370  Heterosexual (straight)         Sometimes
## 1371  Heterosexual (straight)            Rarely
## 1372  Heterosexual (straight)            Rarely
## 1373  Heterosexual (straight)            Rarely
## 1374  Heterosexual (straight)            Always
## 1375  Heterosexual (straight)            Rarely
## 1376  Heterosexual (straight)            Rarely
## 1377  Heterosexual (straight)             Never
## 1378  Heterosexual (straight)            Rarely
## 1379  Heterosexual (straight)            Rarely
## 1380  Heterosexual (straight)            Rarely
## 1381  Heterosexual (straight)            Always
## 1382  Heterosexual (straight)             Never
## 1383  Heterosexual (straight)         Sometimes
## 1384  Heterosexual (straight)         Sometimes
## 1385  Heterosexual (straight)            Rarely
## 1386  Heterosexual (straight)         Sometimes
## 1387  Heterosexual (straight)            Rarely
## 1388  Heterosexual (straight)         Sometimes
## 1389  Heterosexual (straight)             Never
## 1390  Heterosexual (straight)            Rarely
## 1391  Heterosexual (straight)            Rarely
## 1392  Heterosexual (straight)            Rarely
## 1393  Heterosexual (straight)             Never
## 1394           Gay or lesbian             Never
## 1395  Heterosexual (straight)            Rarely
## 1396  Heterosexual (straight)  Most of the time
## 1397  Heterosexual (straight)            Rarely
## 1398  Heterosexual (straight)            Rarely
## 1399  Heterosexual (straight)            Rarely
## 1400  Heterosexual (straight)            Rarely
## 1401                 Bisexual         Sometimes
## 1402  Heterosexual (straight)            Rarely
## 1403  Heterosexual (straight)            Always
## 1404  Heterosexual (straight)             Never
## 1405                 Bisexual            Rarely
## 1406  Heterosexual (straight)            Always
## 1407  Heterosexual (straight)             Never
## 1408  Heterosexual (straight)         Sometimes
## 1409           Some other way  Most of the time
## 1410  Heterosexual (straight)         Sometimes
## 1411  Heterosexual (straight)         Sometimes
## 1412                 Bisexual  Most of the time
## 1413  Heterosexual (straight)            Rarely
## 1414  Heterosexual (straight)            Rarely
## 1415  Heterosexual (straight)             Never
## 1416  Heterosexual (straight)             Never
## 1417  Heterosexual (straight)             Never
## 1418  Heterosexual (straight)  Most of the time
## 1419  Heterosexual (straight)             Never
## 1420  Heterosexual (straight)            Rarely
## 1421                 Bisexual  Most of the time
## 1422  Heterosexual (straight)            Rarely
## 1423  Heterosexual (straight)             Never
## 1424  Heterosexual (straight)             Never
## 1425  Heterosexual (straight)         Sometimes
## 1426  Heterosexual (straight)            Rarely
## 1427           Some other way            Always
## 1428  Heterosexual (straight)         Sometimes
## 1429  Heterosexual (straight)         Sometimes
## 1430                 Bisexual            Always
## 1431  Heterosexual (straight)            Rarely
## 1432  Heterosexual (straight)            Rarely
## 1433  Heterosexual (straight)             Never
## 1434  Heterosexual (straight)            Rarely
## 1435  Heterosexual (straight)             Never
## 1436           Some other way  Most of the time
## 1437  Heterosexual (straight)             Never
## 1438  Heterosexual (straight)             Never
## 1439  Heterosexual (straight)             Never
## 1440  Heterosexual (straight)            Rarely
## 1441  Heterosexual (straight)         Sometimes
## 1442  Heterosexual (straight)  Most of the time
## 1443  Heterosexual (straight)             Never
## 1444  Heterosexual (straight)         Sometimes
## 1445  Heterosexual (straight)            Rarely
## 1446  Heterosexual (straight)         Sometimes
## 1447  Heterosexual (straight)         Sometimes
## 1448  Heterosexual (straight)         Sometimes
## 1449  Heterosexual (straight)         Sometimes
## 1450  Heterosexual (straight)  Most of the time
## 1451  Heterosexual (straight)            Rarely
## 1452  Heterosexual (straight)         Sometimes
## 1453  Heterosexual (straight)              <NA>
## 1454  Heterosexual (straight)             Never
## 1455  Heterosexual (straight)             Never
## 1456  Heterosexual (straight)             Never
## 1457  Heterosexual (straight)            Always
## 1458           Some other way            Always
## 1459  Heterosexual (straight)  Most of the time
## 1460  Heterosexual (straight)            Rarely
## 1461  Heterosexual (straight)             Never
## 1462  Heterosexual (straight)              <NA>
## 1463  Heterosexual (straight)  Most of the time
## 1464  Heterosexual (straight)             Never
## 1465  Heterosexual (straight)         Sometimes
## 1466  Heterosexual (straight)            Rarely
## 1467  Heterosexual (straight)            Rarely
## 1468  Heterosexual (straight)         Sometimes
## 1469  Heterosexual (straight)            Rarely
## 1470           Some other way         Sometimes
## 1471  Heterosexual (straight)         Sometimes
## 1472  Heterosexual (straight)  Most of the time
## 1473                 Bisexual         Sometimes
## 1474  Heterosexual (straight)             Never
## 1475  Heterosexual (straight)            Rarely
## 1476  Heterosexual (straight)  Most of the time
## 1477  Heterosexual (straight)            Rarely
## 1478  Heterosexual (straight)         Sometimes
## 1479  Heterosexual (straight)         Sometimes
## 1480  Heterosexual (straight)             Never
## 1481  Heterosexual (straight)             Never
## 1482  Heterosexual (straight)            Rarely
## 1483  Heterosexual (straight)         Sometimes
## 1484  Heterosexual (straight)         Sometimes
## 1485  Heterosexual (straight)         Sometimes
## 1486  Heterosexual (straight)  Most of the time
## 1487  Heterosexual (straight)         Sometimes
## 1488  Heterosexual (straight)            Rarely
## 1489  Heterosexual (straight)            Always
## 1490  Heterosexual (straight)         Sometimes
## 1491  Heterosexual (straight)              <NA>
## 1492  Heterosexual (straight)             Never
## 1493  Heterosexual (straight)            Rarely
## 1494  Heterosexual (straight)            Rarely
## 1495  Heterosexual (straight)  Most of the time
## 1496  Heterosexual (straight)         Sometimes
## 1497  Heterosexual (straight)            Rarely
## 1498  Heterosexual (straight)  Most of the time
## 1499  Heterosexual (straight)            Always
## 1500  Heterosexual (straight)             Never
## 1501  Heterosexual (straight)         Sometimes
## 1502  Heterosexual (straight)             Never
## 1503  Heterosexual (straight)             Never
## 1504  Heterosexual (straight)            Rarely
## 1505  Heterosexual (straight)            Rarely
## 1506  Heterosexual (straight)             Never
## 1507  Heterosexual (straight)             Never
## 1508  Heterosexual (straight)         Sometimes
## 1509  Heterosexual (straight)             Never
## 1510  Heterosexual (straight)            Rarely
## 1511  Heterosexual (straight)             Never
## 1512  Heterosexual (straight)            Rarely
## 1513  Heterosexual (straight)         Sometimes
## 1514  Heterosexual (straight)             Never
## 1515  Heterosexual (straight)         Sometimes
## 1516  Heterosexual (straight)             Never
## 1517  Heterosexual (straight)         Sometimes
## 1518  Heterosexual (straight)            Rarely
## 1519  Heterosexual (straight)            Rarely
## 1520  Heterosexual (straight)         Sometimes
## 1521  Heterosexual (straight)            Rarely
## 1522  Heterosexual (straight)         Sometimes
## 1523  Heterosexual (straight)             Never
## 1524  Heterosexual (straight)  Most of the time
## 1525  Heterosexual (straight)         Sometimes
## 1526  Heterosexual (straight)            Rarely
## 1527  Heterosexual (straight)             Never
## 1528  Heterosexual (straight)  Most of the time
## 1529  Heterosexual (straight)            Rarely
## 1530  Heterosexual (straight)             Never
## 1531  Heterosexual (straight)  Most of the time
## 1532  Heterosexual (straight)            Rarely
## 1533  Heterosexual (straight)            Rarely
## 1534  Heterosexual (straight)         Sometimes
## 1535  Heterosexual (straight)            Rarely
## 1536  Heterosexual (straight)            Rarely
## 1537  Heterosexual (straight)         Sometimes
## 1538  Heterosexual (straight)            Rarely
## 1539  Heterosexual (straight)             Never
## 1540  Heterosexual (straight)         Sometimes
## 1541  Heterosexual (straight)            Rarely
## 1542  Heterosexual (straight)         Sometimes
## 1543  Heterosexual (straight)         Sometimes
## 1544  Heterosexual (straight)            Rarely
## 1545  Heterosexual (straight)            Always
## 1546  Heterosexual (straight)             Never
## 1547                 Bisexual  Most of the time
## 1548  Heterosexual (straight)            Rarely
## 1549  Heterosexual (straight)            Rarely
## 1550  Heterosexual (straight)  Most of the time
## 1551  Heterosexual (straight)             Never
## 1552  Heterosexual (straight)            Rarely
## 1553  Heterosexual (straight)  Most of the time
## 1554  Heterosexual (straight)  Most of the time
## 1555  Heterosexual (straight)         Sometimes
## 1556  Heterosexual (straight)         Sometimes
## 1557  Heterosexual (straight)            Rarely
## 1558  Heterosexual (straight)            Rarely
## 1559  Heterosexual (straight)            Rarely
## 1560  Heterosexual (straight)             Never
## 1561  Heterosexual (straight)             Never
## 1562  Heterosexual (straight)            Rarely
## 1563  Heterosexual (straight)         Sometimes
## 1564  Heterosexual (straight)         Sometimes
## 1565  Heterosexual (straight)         Sometimes
## 1566  Heterosexual (straight)            Always
## 1567  Heterosexual (straight)            Rarely
## 1568  Heterosexual (straight)         Sometimes
## 1569  Heterosexual (straight)         Sometimes
## 1570  Heterosexual (straight)            Rarely
## 1571  Heterosexual (straight)             Never
## 1572  Heterosexual (straight)         Sometimes
## 1573  Heterosexual (straight)  Most of the time
## 1574  Heterosexual (straight)             Never
## 1575  Heterosexual (straight)            Rarely
## 1576  Heterosexual (straight)         Sometimes
## 1577  Heterosexual (straight)            Always
## 1578  Heterosexual (straight)  Most of the time
## 1579  Heterosexual (straight)         Sometimes
## 1580                 Not sure  Most of the time
## 1581  Heterosexual (straight)         Sometimes
## 1582  Heterosexual (straight)            Rarely
## 1583  Heterosexual (straight)            Always
## 1584  Heterosexual (straight)         Sometimes
## 1585  Heterosexual (straight)         Sometimes
## 1586  Heterosexual (straight)         Sometimes
## 1587  Heterosexual (straight)         Sometimes
## 1588  Heterosexual (straight)         Sometimes
## 1589  Heterosexual (straight)         Sometimes
## 1590  Heterosexual (straight)             Never
## 1591  Heterosexual (straight)         Sometimes
## 1592  Heterosexual (straight)  Most of the time
## 1593  Heterosexual (straight)             Never
## 1594  Heterosexual (straight)         Sometimes
## 1595  Heterosexual (straight)         Sometimes
## 1596  Heterosexual (straight)             Never
## 1597  Heterosexual (straight)            Rarely
## 1598  Heterosexual (straight)            Rarely
## 1599  Heterosexual (straight)            Rarely
## 1600  Heterosexual (straight)         Sometimes
## 1601  Heterosexual (straight)            Rarely
## 1602  Heterosexual (straight)             Never
## 1603  Heterosexual (straight)  Most of the time
## 1604  Heterosexual (straight)  Most of the time
## 1605  Heterosexual (straight)            Rarely
## 1606  Heterosexual (straight)         Sometimes
## 1607  Heterosexual (straight)            Always
## 1608  Heterosexual (straight)            Rarely
## 1609  Heterosexual (straight)             Never
## 1610  Heterosexual (straight)            Rarely
## 1611                 Bisexual              <NA>
## 1612  Heterosexual (straight)            Always
## 1613  Heterosexual (straight)             Never
## 1614  Heterosexual (straight)         Sometimes
## 1615  Heterosexual (straight)  Most of the time
## 1616           Some other way  Most of the time
## 1617  Heterosexual (straight)             Never
## 1618  Heterosexual (straight)            Rarely
## 1619  Heterosexual (straight)            Rarely
## 1620  Heterosexual (straight)            Rarely
## 1621  Heterosexual (straight)            Rarely
## 1622  Heterosexual (straight)         Sometimes
## 1623  Heterosexual (straight)            Rarely
## 1624  Heterosexual (straight)         Sometimes
## 1625  Heterosexual (straight)            Rarely
## 1626  Heterosexual (straight)             Never
## 1627  Heterosexual (straight)             Never
## 1628  Heterosexual (straight)            Rarely
## 1629  Heterosexual (straight)             Never
## 1630  Heterosexual (straight)             Never
## 1631  Heterosexual (straight)             Never
## 1632  Heterosexual (straight)            Always
## 1633                 Bisexual         Sometimes
## 1634                 Not sure            Rarely
## 1635  Heterosexual (straight)         Sometimes
## 1636  Heterosexual (straight)              <NA>
## 1637  Heterosexual (straight)         Sometimes
## 1638  Heterosexual (straight)             Never
## 1639  Heterosexual (straight)             Never
## 1640  Heterosexual (straight)            Rarely
## 1641  Heterosexual (straight)         Sometimes
## 1642  Heterosexual (straight)             Never
## 1643  Heterosexual (straight)              <NA>
## 1644  Heterosexual (straight)  Most of the time
## 1645  Heterosexual (straight)         Sometimes
## 1646  Heterosexual (straight)         Sometimes
## 1647  Heterosexual (straight)             Never
## 1648  Heterosexual (straight)            Rarely
## 1649  Heterosexual (straight)             Never
## 1650  Heterosexual (straight)  Most of the time
## 1651  Heterosexual (straight)         Sometimes
## 1652  Heterosexual (straight)         Sometimes
## 1653  Heterosexual (straight)            Rarely
## 1654  Heterosexual (straight)            Rarely
## 1655  Heterosexual (straight)             Never
## 1656           Some other way         Sometimes
## 1657                 Not sure         Sometimes
## 1658  Heterosexual (straight)             Never
## 1659  Heterosexual (straight)            Rarely
## 1660  Heterosexual (straight)            Always
## 1661                 Not sure         Sometimes
## 1662  Heterosexual (straight)            Rarely
## 1663  Heterosexual (straight)         Sometimes
## 1664  Heterosexual (straight)            Rarely
## 1665  Heterosexual (straight)  Most of the time
## 1666  Heterosexual (straight)            Rarely
## 1667                 Not sure            Rarely
## 1668  Heterosexual (straight)         Sometimes
## 1669  Heterosexual (straight)         Sometimes
## 1670  Heterosexual (straight)         Sometimes
## 1671  Heterosexual (straight)             Never
## 1672  Heterosexual (straight)         Sometimes
## 1673  Heterosexual (straight)             Never
## 1674  Heterosexual (straight)         Sometimes
## 1675  Heterosexual (straight)             Never
## 1676  Heterosexual (straight)         Sometimes
## 1677  Heterosexual (straight)              <NA>
## 1678  Heterosexual (straight)            Rarely
## 1679  Heterosexual (straight)         Sometimes
## 1680                 Bisexual            Always
## 1681  Heterosexual (straight)         Sometimes
## 1682  Heterosexual (straight)         Sometimes
## 1683  Heterosexual (straight)         Sometimes
## 1684           Gay or lesbian         Sometimes
## 1685  Heterosexual (straight)  Most of the time
## 1686  Heterosexual (straight)            Always
## 1687  Heterosexual (straight)             Never
## 1688                 Bisexual  Most of the time
## 1689  Heterosexual (straight)  Most of the time
## 1690  Heterosexual (straight)            Rarely
## 1691  Heterosexual (straight)             Never
## 1692           Gay or lesbian            Always
## 1693  Heterosexual (straight)             Never
## 1694  Heterosexual (straight)            Rarely
## 1695  Heterosexual (straight)            Rarely
## 1696  Heterosexual (straight)            Rarely
## 1697  Heterosexual (straight)  Most of the time
## 1698  Heterosexual (straight)  Most of the time
## 1699  Heterosexual (straight)         Sometimes
## 1700  Heterosexual (straight)  Most of the time
## 1701  Heterosexual (straight)         Sometimes
## 1702  Heterosexual (straight)             Never
## 1703  Heterosexual (straight)  Most of the time
## 1704  Heterosexual (straight)             Never
## 1705  Heterosexual (straight)            Rarely
## 1706  Heterosexual (straight)  Most of the time
## 1707  Heterosexual (straight)            Rarely
## 1708  Heterosexual (straight)            Rarely
## 1709  Heterosexual (straight)         Sometimes
## 1710  Heterosexual (straight)         Sometimes
## 1711  Heterosexual (straight)            Rarely
## 1712  Heterosexual (straight)             Never
## 1713  Heterosexual (straight)         Sometimes
## 1714  Heterosexual (straight)         Sometimes
## 1715  Heterosexual (straight)            Rarely
## 1716  Heterosexual (straight)  Most of the time
## 1717  Heterosexual (straight)            Rarely
## 1718  Heterosexual (straight)            Rarely
## 1719  Heterosexual (straight)             Never
## 1720  Heterosexual (straight)             Never
## 1721           Some other way             Never
## 1722  Heterosexual (straight)  Most of the time
## 1723  Heterosexual (straight)             Never
## 1724  Heterosexual (straight)            Rarely
## 1725  Heterosexual (straight)            Rarely
## 1726  Heterosexual (straight)  Most of the time
## 1727  Heterosexual (straight)             Never
## 1728  Heterosexual (straight)  Most of the time
## 1729  Heterosexual (straight)         Sometimes
## 1730                 Not sure            Always
## 1731  Heterosexual (straight)  Most of the time
## 1732  Heterosexual (straight)         Sometimes
## 1733  Heterosexual (straight)  Most of the time
## 1734  Heterosexual (straight)            Rarely
## 1735  Heterosexual (straight)         Sometimes
## 1736  Heterosexual (straight)            Rarely
## 1737  Heterosexual (straight)  Most of the time
## 1738  Heterosexual (straight)            Rarely
## 1739  Heterosexual (straight)            Rarely
## 1740                 Not sure              <NA>
## 1741  Heterosexual (straight)             Never
## 1742  Heterosexual (straight)            Rarely
## 1743  Heterosexual (straight)  Most of the time
## 1744  Heterosexual (straight)         Sometimes
## 1745  Heterosexual (straight)         Sometimes
## 1746  Heterosexual (straight)             Never
## 1747  Heterosexual (straight)             Never
## 1748  Heterosexual (straight)  Most of the time
## 1749  Heterosexual (straight)             Never
## 1750  Heterosexual (straight)  Most of the time
## 1751  Heterosexual (straight)             Never
## 1752  Heterosexual (straight)            Rarely
## 1753  Heterosexual (straight)             Never
## 1754  Heterosexual (straight)            Rarely
## 1755  Heterosexual (straight)         Sometimes
## 1756                 Bisexual         Sometimes
## 1757  Heterosexual (straight)            Rarely
## 1758  Heterosexual (straight)            Rarely
## 1759                 Not sure            Rarely
## 1760  Heterosexual (straight)         Sometimes
## 1761  Heterosexual (straight)  Most of the time
## 1762                 Bisexual         Sometimes
## 1763  Heterosexual (straight)         Sometimes
## 1764           Some other way            Always
## 1765  Heterosexual (straight)             Never
## 1766  Heterosexual (straight)            Rarely
## 1767  Heterosexual (straight)         Sometimes
## 1768  Heterosexual (straight)            Rarely
## 1769  Heterosexual (straight)            Always
## 1770  Heterosexual (straight)         Sometimes
## 1771  Heterosexual (straight)            Rarely
## 1772           Gay or lesbian            Rarely
## 1773  Heterosexual (straight)             Never
## 1774  Heterosexual (straight)            Rarely
## 1775  Heterosexual (straight)            Always
## 1776  Heterosexual (straight)             Never
## 1777  Heterosexual (straight)            Rarely
## 1778  Heterosexual (straight)            Rarely
## 1779  Heterosexual (straight)            Rarely
## 1780  Heterosexual (straight)         Sometimes
## 1781  Heterosexual (straight)         Sometimes
## 1782  Heterosexual (straight)  Most of the time
## 1783  Heterosexual (straight)            Rarely
## 1784  Heterosexual (straight)             Never
## 1785  Heterosexual (straight)            Rarely
## 1786  Heterosexual (straight)         Sometimes
## 1787  Heterosexual (straight)            Rarely
## 1788  Heterosexual (straight)            Rarely
## 1789  Heterosexual (straight)            Rarely
## 1790  Heterosexual (straight)         Sometimes
## 1791  Heterosexual (straight)  Most of the time
## 1792  Heterosexual (straight)         Sometimes
## 1793  Heterosexual (straight)         Sometimes
## 1794  Heterosexual (straight)         Sometimes
## 1795  Heterosexual (straight)         Sometimes
## 1796  Heterosexual (straight)            Rarely
## 1797  Heterosexual (straight)            Rarely
## 1798  Heterosexual (straight)            Rarely
## 1799  Heterosexual (straight)            Rarely
## 1800  Heterosexual (straight)            Rarely
## 1801  Heterosexual (straight)         Sometimes
## 1802  Heterosexual (straight)  Most of the time
## 1803                 Bisexual         Sometimes
## 1804  Heterosexual (straight)             Never
## 1805  Heterosexual (straight)            Rarely
## 1806  Heterosexual (straight)             Never
## 1807  Heterosexual (straight)             Never
## 1808  Heterosexual (straight)             Never
## 1809  Heterosexual (straight)             Never
## 1810  Heterosexual (straight)  Most of the time
## 1811  Heterosexual (straight)             Never
## 1812  Heterosexual (straight)  Most of the time
## 1813  Heterosexual (straight)            Rarely
## 1814           Gay or lesbian  Most of the time
## 1815  Heterosexual (straight)             Never
## 1816  Heterosexual (straight)         Sometimes
## 1817  Heterosexual (straight)         Sometimes
## 1818                 Bisexual         Sometimes
## 1819                 Bisexual         Sometimes
## 1820  Heterosexual (straight)            Rarely
## 1821  Heterosexual (straight)         Sometimes
## 1822  Heterosexual (straight)         Sometimes
## 1823  Heterosexual (straight)         Sometimes
## 1824  Heterosexual (straight)              <NA>
## 1825  Heterosexual (straight)         Sometimes
## 1826  Heterosexual (straight)             Never
## 1827                 Bisexual  Most of the time
## 1828  Heterosexual (straight)            Rarely
## 1829  Heterosexual (straight)         Sometimes
## 1830                 Bisexual  Most of the time
## 1831  Heterosexual (straight)         Sometimes
## 1832  Heterosexual (straight)             Never
## 1833  Heterosexual (straight)             Never
## 1834  Heterosexual (straight)             Never
## 1835  Heterosexual (straight)             Never
## 1836  Heterosexual (straight)         Sometimes
## 1837           Gay or lesbian  Most of the time
## 1838                 Not sure         Sometimes
## 1839  Heterosexual (straight)         Sometimes
## 1840  Heterosexual (straight)         Sometimes
## 1841                 Bisexual  Most of the time
## 1842  Heterosexual (straight)            Rarely
## 1843  Heterosexual (straight)             Never
## 1844  Heterosexual (straight)         Sometimes
## 1845  Heterosexual (straight)         Sometimes
## 1846  Heterosexual (straight)            Rarely
## 1847  Heterosexual (straight)            Rarely
## 1848           Some other way             Never
## 1849  Heterosexual (straight)             Never
## 1850  Heterosexual (straight)            Rarely
## 1851  Heterosexual (straight)            Rarely
## 1852  Heterosexual (straight)            Rarely
## 1853  Heterosexual (straight)         Sometimes
## 1854  Heterosexual (straight)         Sometimes
## 1855  Heterosexual (straight)            Rarely
## 1856  Heterosexual (straight)             Never
## 1857  Heterosexual (straight)             Never
## 1858                 Bisexual         Sometimes
## 1859                 Bisexual            Always
## 1860  Heterosexual (straight)            Rarely
## 1861  Heterosexual (straight)  Most of the time
## 1862  Heterosexual (straight)         Sometimes
## 1863  Heterosexual (straight)             Never
## 1864  Heterosexual (straight)             Never
## 1865  Heterosexual (straight)         Sometimes
## 1866  Heterosexual (straight)              <NA>
## 1867  Heterosexual (straight)            Always
## 1868  Heterosexual (straight)            Rarely
## 1869  Heterosexual (straight)         Sometimes
## 1870  Heterosexual (straight)         Sometimes
## 1871  Heterosexual (straight)            Rarely
## 1872  Heterosexual (straight)             Never
## 1873  Heterosexual (straight)             Never
## 1874           Some other way         Sometimes
## 1875  Heterosexual (straight)            Rarely
## 1876  Heterosexual (straight)            Rarely
## 1877  Heterosexual (straight)             Never
## 1878                 Bisexual  Most of the time
## 1879  Heterosexual (straight)             Never
## 1880  Heterosexual (straight)  Most of the time
## 1881  Heterosexual (straight)             Never
## 1882  Heterosexual (straight)  Most of the time
## 1883  Heterosexual (straight)  Most of the time
## 1884  Heterosexual (straight)         Sometimes
## 1885  Heterosexual (straight)         Sometimes
## 1886  Heterosexual (straight)  Most of the time
## 1887  Heterosexual (straight)             Never
## 1888  Heterosexual (straight)            Rarely
## 1889  Heterosexual (straight)            Always
## 1890  Heterosexual (straight)         Sometimes
## 1891  Heterosexual (straight)             Never
## 1892  Heterosexual (straight)         Sometimes
## 1893  Heterosexual (straight)            Rarely
## 1894  Heterosexual (straight)             Never
## 1895  Heterosexual (straight)             Never
## 1896  Heterosexual (straight)            Rarely
## 1897                 Bisexual            Rarely
## 1898  Heterosexual (straight)            Rarely
## 1899  Heterosexual (straight)             Never
## 1900  Heterosexual (straight)  Most of the time
## 1901  Heterosexual (straight)            Rarely
## 1902  Heterosexual (straight)  Most of the time
## 1903           Some other way             Never
## 1904  Heterosexual (straight)            Rarely
## 1905  Heterosexual (straight)            Always
## 1906  Heterosexual (straight)            Rarely
## 1907  Heterosexual (straight)             Never
## 1908  Heterosexual (straight)         Sometimes
## 1909  Heterosexual (straight)  Most of the time
## 1910  Heterosexual (straight)            Rarely
## 1911  Heterosexual (straight)  Most of the time
## 1912  Heterosexual (straight)  Most of the time
## 1913  Heterosexual (straight)             Never
## 1914  Heterosexual (straight)            Always
## 1915  Heterosexual (straight)  Most of the time
## 1916  Heterosexual (straight)  Most of the time
## 1917  Heterosexual (straight)         Sometimes
## 1918                 Bisexual            Always
## 1919  Heterosexual (straight)            Always
## 1920  Heterosexual (straight)         Sometimes
## 1921  Heterosexual (straight)            Rarely
## 1922  Heterosexual (straight)             Never
## 1923  Heterosexual (straight)         Sometimes
## 1924           Gay or lesbian            Always
## 1925  Heterosexual (straight)             Never
## 1926  Heterosexual (straight)         Sometimes
## 1927  Heterosexual (straight)              <NA>
## 1928  Heterosexual (straight)            Rarely
## 1929  Heterosexual (straight)             Never
## 1930  Heterosexual (straight)             Never
## 1931  Heterosexual (straight)            Rarely
## 1932  Heterosexual (straight)             Never
## 1933  Heterosexual (straight)         Sometimes
## 1934                 Bisexual         Sometimes
## 1935  Heterosexual (straight)            Rarely
## 1936  Heterosexual (straight)             Never
## 1937  Heterosexual (straight)            Rarely
## 1938           Gay or lesbian            Always
## 1939  Heterosexual (straight)  Most of the time
## 1940  Heterosexual (straight)            Always
## 1941  Heterosexual (straight)         Sometimes
## 1942  Heterosexual (straight)  Most of the time
## 1943  Heterosexual (straight)             Never
## 1944  Heterosexual (straight)            Always
## 1945  Heterosexual (straight)             Never
## 1946  Heterosexual (straight)            Rarely
## 1947  Heterosexual (straight)            Rarely
## 1948  Heterosexual (straight)         Sometimes
## 1949  Heterosexual (straight)            Always
## 1950  Heterosexual (straight)            Rarely
## 1951  Heterosexual (straight)              <NA>
## 1952           Some other way            Always
## 1953  Heterosexual (straight)             Never
## 1954  Heterosexual (straight)             Never
## 1955  Heterosexual (straight)            Rarely
## 1956  Heterosexual (straight)             Never
## 1957  Heterosexual (straight)         Sometimes
## 1958  Heterosexual (straight)         Sometimes
## 1959  Heterosexual (straight)         Sometimes
## 1960  Heterosexual (straight)         Sometimes
## 1961                 Not sure         Sometimes
## 1962  Heterosexual (straight)         Sometimes
## 1963  Heterosexual (straight)         Sometimes
## 1964  Heterosexual (straight)         Sometimes
## 1965  Heterosexual (straight)            Rarely
## 1966  Heterosexual (straight)            Rarely
## 1967                 Bisexual            Always
## 1968  Heterosexual (straight)            Rarely
## 1969  Heterosexual (straight)             Never
## 1970  Heterosexual (straight)         Sometimes
## 1971  Heterosexual (straight)         Sometimes
## 1972  Heterosexual (straight)         Sometimes
## 1973  Heterosexual (straight)              <NA>
## 1974  Heterosexual (straight)              <NA>
## 1975  Heterosexual (straight)  Most of the time
## 1976  Heterosexual (straight)             Never
## 1977  Heterosexual (straight)            Rarely
## 1978  Heterosexual (straight)              <NA>
## 1979  Heterosexual (straight)            Always
## 1980  Heterosexual (straight)         Sometimes
## 1981  Heterosexual (straight)            Rarely
## 1982  Heterosexual (straight)  Most of the time
## 1983  Heterosexual (straight)            Rarely
## 1984  Heterosexual (straight)         Sometimes
## 1985  Heterosexual (straight)         Sometimes
## 1986  Heterosexual (straight)            Rarely
## 1987  Heterosexual (straight)            Rarely
## 1988  Heterosexual (straight)            Always
## 1989  Heterosexual (straight)            Rarely
## 1990  Heterosexual (straight)            Rarely
## 1991           Some other way            Always
## 1992  Heterosexual (straight)         Sometimes
## 1993  Heterosexual (straight)             Never
## 1994  Heterosexual (straight)  Most of the time
## 1995  Heterosexual (straight)             Never
## 1996  Heterosexual (straight)             Never
## 1997  Heterosexual (straight)             Never
## 1998  Heterosexual (straight)             Never
## 1999  Heterosexual (straight)            Always
## 2000  Heterosexual (straight)         Sometimes
## 2001  Heterosexual (straight)            Rarely
## 2002                 Not sure  Most of the time
## 2003  Heterosexual (straight)  Most of the time
## 2004  Heterosexual (straight)  Most of the time
## 2005                 Bisexual  Most of the time
## 2006  Heterosexual (straight)         Sometimes
## 2007  Heterosexual (straight)         Sometimes
## 2008  Heterosexual (straight)         Sometimes
## 2009  Heterosexual (straight)         Sometimes
## 2010  Heterosexual (straight)             Never
## 2011  Heterosexual (straight)         Sometimes
## 2012  Heterosexual (straight)            Rarely
## 2013  Heterosexual (straight)             Never
## 2014  Heterosexual (straight)         Sometimes
## 2015  Heterosexual (straight)            Rarely
## 2016  Heterosexual (straight)  Most of the time
## 2017  Heterosexual (straight)             Never
## 2018  Heterosexual (straight)             Never
## 2019  Heterosexual (straight)         Sometimes
## 2020  Heterosexual (straight)  Most of the time
## 2021  Heterosexual (straight)            Rarely
## 2022  Heterosexual (straight)            Always
## 2023  Heterosexual (straight)            Rarely
## 2024  Heterosexual (straight)              <NA>
## 2025  Heterosexual (straight)             Never
## 2026  Heterosexual (straight)            Rarely
## 2027  Heterosexual (straight)            Rarely
## 2028  Heterosexual (straight)             Never
## 2029  Heterosexual (straight)            Always
## 2030  Heterosexual (straight)         Sometimes
## 2031  Heterosexual (straight)            Rarely
## 2032  Heterosexual (straight)             Never
## 2033  Heterosexual (straight)             Never
## 2034                 Bisexual             Never
## 2035  Heterosexual (straight)         Sometimes
## 2036  Heterosexual (straight)  Most of the time
## 2037  Heterosexual (straight)             Never
## 2038  Heterosexual (straight)         Sometimes
## 2039  Heterosexual (straight)             Never
## 2040  Heterosexual (straight)            Rarely
## 2041  Heterosexual (straight)              <NA>
## 2042                 Bisexual  Most of the time
## 2043  Heterosexual (straight)            Always
## 2044  Heterosexual (straight)            Rarely
## 2045  Heterosexual (straight)         Sometimes
## 2046  Heterosexual (straight)            Rarely
## 2047  Heterosexual (straight)  Most of the time
## 2048           Gay or lesbian            Rarely
## 2049  Heterosexual (straight)             Never
## 2050  Heterosexual (straight)             Never
## 2051  Heterosexual (straight)  Most of the time
## 2052  Heterosexual (straight)  Most of the time
## 2053  Heterosexual (straight)         Sometimes
## 2054  Heterosexual (straight)            Rarely
## 2055  Heterosexual (straight)             Never
## 2056                 Bisexual            Always
## 2057           Some other way         Sometimes
## 2058  Heterosexual (straight)             Never
## 2059  Heterosexual (straight)         Sometimes
## 2060  Heterosexual (straight)            Rarely
## 2061  Heterosexual (straight)            Rarely
## 2062  Heterosexual (straight)            Rarely
## 2063  Heterosexual (straight)  Most of the time
## 2064  Heterosexual (straight)            Rarely
## 2065  Heterosexual (straight)             Never
## 2066  Heterosexual (straight)             Never
## 2067  Heterosexual (straight)  Most of the time
## 2068  Heterosexual (straight)         Sometimes
## 2069  Heterosexual (straight)  Most of the time
## 2070  Heterosexual (straight)             Never
## 2071  Heterosexual (straight)         Sometimes
## 2072  Heterosexual (straight)             Never
## 2073  Heterosexual (straight)             Never
## 2074  Heterosexual (straight)            Rarely
## 2075  Heterosexual (straight)            Always
## 2076           Gay or lesbian             Never
## 2077  Heterosexual (straight)             Never
## 2078  Heterosexual (straight)         Sometimes
## 2079  Heterosexual (straight)         Sometimes
## 2080  Heterosexual (straight)            Rarely
## 2081  Heterosexual (straight)         Sometimes
## 2082  Heterosexual (straight)         Sometimes
## 2083  Heterosexual (straight)            Always
## 2084  Heterosexual (straight)            Rarely
## 2085  Heterosexual (straight)            Rarely
## 2086  Heterosexual (straight)         Sometimes
## 2087           Gay or lesbian            Rarely
## 2088  Heterosexual (straight)             Never
## 2089  Heterosexual (straight)  Most of the time
## 2090  Heterosexual (straight)  Most of the time
## 2091  Heterosexual (straight)         Sometimes
## 2092  Heterosexual (straight)            Rarely
## 2093  Heterosexual (straight)         Sometimes
## 2094                 Bisexual         Sometimes
## 2095  Heterosexual (straight)         Sometimes
## 2096                 Not sure            Always
## 2097  Heterosexual (straight)            Rarely
## 2098  Heterosexual (straight)            Always
## 2099  Heterosexual (straight)             Never
## 2100  Heterosexual (straight)            Always
## 2101  Heterosexual (straight)              <NA>
## 2102  Heterosexual (straight)              <NA>
## 2103                 Bisexual              <NA>
## 2104  Heterosexual (straight)              <NA>
## 2105  Heterosexual (straight)              <NA>
## 2106  Heterosexual (straight)              <NA>
## 2107  Heterosexual (straight)              <NA>
## 2108  Heterosexual (straight)              <NA>
## 2109  Heterosexual (straight)              <NA>
## 2110  Heterosexual (straight)              <NA>
## 2111  Heterosexual (straight)              <NA>
## 2112  Heterosexual (straight)              <NA>
## 2113  Heterosexual (straight)              <NA>
## 2114  Heterosexual (straight)              <NA>
## 2115  Heterosexual (straight)              <NA>
## 2116  Heterosexual (straight)              <NA>
## 2117  Heterosexual (straight)              <NA>
## 2118  Heterosexual (straight)              <NA>
## 2119  Heterosexual (straight)              <NA>
## 2120  Heterosexual (straight)              <NA>
## 2121  Heterosexual (straight)              <NA>
## 2122  Heterosexual (straight)              <NA>
## 2123  Heterosexual (straight)              <NA>
## 2124  Heterosexual (straight)              <NA>
## 2125  Heterosexual (straight)              <NA>
## 2126  Heterosexual (straight)              <NA>
## 2127  Heterosexual (straight)              <NA>
## 2128                 Not sure              <NA>
## 2129  Heterosexual (straight)              <NA>
## 2130  Heterosexual (straight)              <NA>
## 2131  Heterosexual (straight)              <NA>
## 2132  Heterosexual (straight)              <NA>
## 2133  Heterosexual (straight)              <NA>
## 2134  Heterosexual (straight)              <NA>
## 2135  Heterosexual (straight)              <NA>
## 2136  Heterosexual (straight)              <NA>
## 2137  Heterosexual (straight)              <NA>
## 2138  Heterosexual (straight)              <NA>
## 2139  Heterosexual (straight)              <NA>
## 2140  Heterosexual (straight)              <NA>
## 2141  Heterosexual (straight)              <NA>
## 2142  Heterosexual (straight)              <NA>
## 2143  Heterosexual (straight)              <NA>
## 2144  Heterosexual (straight)              <NA>
## 2145  Heterosexual (straight)              <NA>
## 2146  Heterosexual (straight)              <NA>
## 2147  Heterosexual (straight)              <NA>
## 2148  Heterosexual (straight)              <NA>
## 2149  Heterosexual (straight)              <NA>
## 2150  Heterosexual (straight)              <NA>
## 2151  Heterosexual (straight)              <NA>
## 2152  Heterosexual (straight)              <NA>
## 2153  Heterosexual (straight)              <NA>
## 2154                 Bisexual              <NA>
## 2155  Heterosexual (straight)              <NA>
## 2156  Heterosexual (straight)              <NA>
## 2157  Heterosexual (straight)              <NA>
## 2158  Heterosexual (straight)              <NA>
## 2159  Heterosexual (straight)              <NA>
## 2160  Heterosexual (straight)              <NA>
## 2161  Heterosexual (straight)              <NA>
## 2162  Heterosexual (straight)              <NA>
## 2163  Heterosexual (straight)              <NA>
## 2164  Heterosexual (straight)              <NA>
## 2165  Heterosexual (straight)              <NA>
## 2166  Heterosexual (straight)              <NA>
## 2167  Heterosexual (straight)              <NA>
## 2168                 Bisexual              <NA>
## 2169  Heterosexual (straight)              <NA>
## 2170  Heterosexual (straight)              <NA>
## 2171  Heterosexual (straight)              <NA>
## 2172  Heterosexual (straight)              <NA>
## 2173  Heterosexual (straight)              <NA>
## 2174  Heterosexual (straight)              <NA>
## 2175  Heterosexual (straight)              <NA>
## 2176  Heterosexual (straight)              <NA>
## 2177  Heterosexual (straight)              <NA>
## 2178                 Bisexual              <NA>
## 2179  Heterosexual (straight)              <NA>
## 2180  Heterosexual (straight)              <NA>
## 2181  Heterosexual (straight)              <NA>
## 2182  Heterosexual (straight)              <NA>
## 2183  Heterosexual (straight)              <NA>
## 2184  Heterosexual (straight)              <NA>
## 2185  Heterosexual (straight)              <NA>
## 2186  Heterosexual (straight)              <NA>
## 2187  Heterosexual (straight)              <NA>
## 2188  Heterosexual (straight)              <NA>
## 2189  Heterosexual (straight)              <NA>
## 2190  Heterosexual (straight)              <NA>
## 2191                 Not sure              <NA>
## 2192  Heterosexual (straight)              <NA>
## 2193  Heterosexual (straight)              <NA>
## 2194  Heterosexual (straight)              <NA>
## 2195  Heterosexual (straight)              <NA>
## 2196  Heterosexual (straight)              <NA>
## 2197  Heterosexual (straight)              <NA>
## 2198  Heterosexual (straight)              <NA>
## 2199  Heterosexual (straight)              <NA>
## 2200  Heterosexual (straight)              <NA>
## 2201  Heterosexual (straight)              <NA>
## 2202  Heterosexual (straight)              <NA>
## 2203  Heterosexual (straight)              <NA>
## 2204  Heterosexual (straight)              <NA>
## 2205  Heterosexual (straight)              <NA>
## 2206  Heterosexual (straight)              <NA>
## 2207  Heterosexual (straight)             Never
## 2208  Heterosexual (straight)            Rarely
## 2209  Heterosexual (straight)            Rarely
## 2210  Heterosexual (straight)            Rarely
## 2211  Heterosexual (straight)         Sometimes
## 2212  Heterosexual (straight)            Rarely
## 2213  Heterosexual (straight)              <NA>
## 2214  Heterosexual (straight)            Rarely
## 2215  Heterosexual (straight)             Never
## 2216  Heterosexual (straight)         Sometimes
## 2217  Heterosexual (straight)         Sometimes
## 2218  Heterosexual (straight)             Never
## 2219  Heterosexual (straight)         Sometimes
## 2220  Heterosexual (straight)         Sometimes
## 2221  Heterosexual (straight)         Sometimes
## 2222  Heterosexual (straight)              <NA>
## 2223  Heterosexual (straight)              <NA>
## 2224  Heterosexual (straight)  Most of the time
## 2225  Heterosexual (straight)             Never
## 2226  Heterosexual (straight)         Sometimes
## 2227  Heterosexual (straight)            Rarely
## 2228  Heterosexual (straight)         Sometimes
## 2229  Heterosexual (straight)             Never
## 2230  Heterosexual (straight)            Always
## 2231  Heterosexual (straight)  Most of the time
## 2232  Heterosexual (straight)             Never
## 2233  Heterosexual (straight)             Never
## 2234  Heterosexual (straight)             Never
## 2235  Heterosexual (straight)            Rarely
## 2236  Heterosexual (straight)         Sometimes
## 2237  Heterosexual (straight)            Always
## 2238  Heterosexual (straight)             Never
## 2239  Heterosexual (straight)         Sometimes
## 2240  Heterosexual (straight)             Never
## 2241  Heterosexual (straight)            Rarely
## 2242  Heterosexual (straight)  Most of the time
## 2243  Heterosexual (straight)            Rarely
## 2244  Heterosexual (straight)            Always
## 2245                 Not sure  Most of the time
## 2246  Heterosexual (straight)            Rarely
## 2247  Heterosexual (straight)            Rarely
## 2248  Heterosexual (straight)         Sometimes
## 2249  Heterosexual (straight)            Always
## 2250  Heterosexual (straight)         Sometimes
## 2251  Heterosexual (straight)         Sometimes
## 2252  Heterosexual (straight)         Sometimes
## 2253  Heterosexual (straight)  Most of the time
## 2254  Heterosexual (straight)            Rarely
## 2255  Heterosexual (straight)            Rarely
## 2256  Heterosexual (straight)         Sometimes
## 2257  Heterosexual (straight)            Rarely
## 2258  Heterosexual (straight)         Sometimes
## 2259  Heterosexual (straight)             Never
## 2260  Heterosexual (straight)         Sometimes
## 2261  Heterosexual (straight)             Never
## 2262  Heterosexual (straight)            Rarely
## 2263  Heterosexual (straight)             Never
## 2264  Heterosexual (straight)             Never
## 2265  Heterosexual (straight)            Rarely
## 2266  Heterosexual (straight)         Sometimes
## 2267  Heterosexual (straight)         Sometimes
## 2268  Heterosexual (straight)            Always
## 2269  Heterosexual (straight)         Sometimes
## 2270                 Bisexual         Sometimes
## 2271  Heterosexual (straight)             Never
## 2272  Heterosexual (straight)         Sometimes
## 2273  Heterosexual (straight)            Rarely
## 2274                 Not sure             Never
## 2275  Heterosexual (straight)             Never
## 2276  Heterosexual (straight)  Most of the time
## 2277                 Bisexual         Sometimes
## 2278                 Bisexual         Sometimes
## 2279  Heterosexual (straight)            Always
## 2280  Heterosexual (straight)         Sometimes
## 2281           Gay or lesbian  Most of the time
## 2282  Heterosexual (straight)             Never
## 2283  Heterosexual (straight)              <NA>
## 2284  Heterosexual (straight)             Never
## 2285  Heterosexual (straight)             Never
## 2286  Heterosexual (straight)         Sometimes
## 2287  Heterosexual (straight)  Most of the time
## 2288  Heterosexual (straight)             Never
## 2289  Heterosexual (straight)         Sometimes
## 2290  Heterosexual (straight)            Rarely
## 2291  Heterosexual (straight)         Sometimes
## 2292  Heterosexual (straight)         Sometimes
## 2293  Heterosexual (straight)             Never
## 2294  Heterosexual (straight)            Rarely
## 2295  Heterosexual (straight)            Rarely
## 2296  Heterosexual (straight)            Rarely
## 2297  Heterosexual (straight)  Most of the time
## 2298  Heterosexual (straight)            Rarely
## 2299  Heterosexual (straight)         Sometimes
## 2300  Heterosexual (straight)             Never
## 2301  Heterosexual (straight)             Never
## 2302  Heterosexual (straight)         Sometimes
## 2303  Heterosexual (straight)         Sometimes
## 2304           Gay or lesbian         Sometimes
## 2305  Heterosexual (straight)             Never
## 2306  Heterosexual (straight)             Never
## 2307  Heterosexual (straight)             Never
## 2308  Heterosexual (straight)              <NA>
## 2309  Heterosexual (straight)  Most of the time
## 2310  Heterosexual (straight)  Most of the time
## 2311  Heterosexual (straight)         Sometimes
## 2312  Heterosexual (straight)  Most of the time
## 2313  Heterosexual (straight)             Never
## 2314  Heterosexual (straight)  Most of the time
## 2315  Heterosexual (straight)             Never
## 2316  Heterosexual (straight)            Rarely
## 2317                 Not sure            Rarely
## 2318  Heterosexual (straight)            Rarely
## 2319  Heterosexual (straight)            Rarely
## 2320  Heterosexual (straight)            Rarely
## 2321  Heterosexual (straight)             Never
## 2322                 Not sure  Most of the time
## 2323                 Bisexual  Most of the time
## 2324  Heterosexual (straight)         Sometimes
## 2325  Heterosexual (straight)         Sometimes
## 2326  Heterosexual (straight)            Always
## 2327  Heterosexual (straight)              <NA>
## 2328  Heterosexual (straight)            Rarely
## 2329                 Bisexual         Sometimes
## 2330           Gay or lesbian         Sometimes
## 2331  Heterosexual (straight)         Sometimes
## 2332  Heterosexual (straight)            Rarely
## 2333  Heterosexual (straight)         Sometimes
## 2334  Heterosexual (straight)  Most of the time
## 2335  Heterosexual (straight)            Rarely
## 2336  Heterosexual (straight)             Never
## 2337  Heterosexual (straight)              <NA>
## 2338  Heterosexual (straight)             Never
## 2339  Heterosexual (straight)            Rarely
## 2340  Heterosexual (straight)             Never
## 2341  Heterosexual (straight)            Rarely
## 2342  Heterosexual (straight)  Most of the time
## 2343  Heterosexual (straight)         Sometimes
## 2344  Heterosexual (straight)         Sometimes
## 2345  Heterosexual (straight)             Never
## 2346           Some other way  Most of the time
## 2347                 Not sure            Always
## 2348  Heterosexual (straight)             Never
## 2349                 Not sure            Always
## 2350  Heterosexual (straight)             Never
## 2351  Heterosexual (straight)         Sometimes
## 2352           Some other way  Most of the time
## 2353  Heterosexual (straight)  Most of the time
## 2354           Gay or lesbian         Sometimes
## 2355  Heterosexual (straight)             Never
## 2356  Heterosexual (straight)            Rarely
## 2357  Heterosexual (straight)            Rarely
## 2358  Heterosexual (straight)         Sometimes
## 2359  Heterosexual (straight)         Sometimes
## 2360  Heterosexual (straight)            Always
## 2361  Heterosexual (straight)            Always
## 2362  Heterosexual (straight)             Never
## 2363  Heterosexual (straight)             Never
## 2364  Heterosexual (straight)             Never
## 2365  Heterosexual (straight)             Never
## 2366  Heterosexual (straight)            Rarely
## 2367  Heterosexual (straight)             Never
## 2368  Heterosexual (straight)         Sometimes
## 2369  Heterosexual (straight)            Rarely
## 2370  Heterosexual (straight)            Rarely
## 2371                 Bisexual            Rarely
## 2372  Heterosexual (straight)         Sometimes
## 2373  Heterosexual (straight)             Never
## 2374  Heterosexual (straight)         Sometimes
## 2375  Heterosexual (straight)  Most of the time
## 2376  Heterosexual (straight)         Sometimes
## 2377  Heterosexual (straight)             Never
## 2378           Some other way              <NA>
## 2379  Heterosexual (straight)             Never
## 2380  Heterosexual (straight)            Always
## 2381  Heterosexual (straight)            Rarely
## 2382  Heterosexual (straight)            Rarely
## 2383  Heterosexual (straight)             Never
## 2384  Heterosexual (straight)             Never
## 2385  Heterosexual (straight)             Never
## 2386  Heterosexual (straight)         Sometimes
## 2387                 Bisexual  Most of the time
## 2388  Heterosexual (straight)            Rarely
## 2389  Heterosexual (straight)         Sometimes
## 2390  Heterosexual (straight)              <NA>
## 2391  Heterosexual (straight)            Rarely
## 2392  Heterosexual (straight)            Rarely
## 2393  Heterosexual (straight)             Never
## 2394  Heterosexual (straight)         Sometimes
## 2395  Heterosexual (straight)             Never
## 2396  Heterosexual (straight)         Sometimes
## 2397           Some other way            Rarely
## 2398  Heterosexual (straight)            Rarely
## 2399  Heterosexual (straight)             Never
## 2400           Some other way            Rarely
## 2401  Heterosexual (straight)            Always
## 2402  Heterosexual (straight)            Always
## 2403  Heterosexual (straight)             Never
## 2404  Heterosexual (straight)         Sometimes
## 2405  Heterosexual (straight)            Rarely
## 2406  Heterosexual (straight)  Most of the time
## 2407  Heterosexual (straight)             Never
## 2408  Heterosexual (straight)             Never
## 2409  Heterosexual (straight)             Never
## 2410  Heterosexual (straight)         Sometimes
## 2411  Heterosexual (straight)  Most of the time
## 2412  Heterosexual (straight)            Rarely
## 2413  Heterosexual (straight)  Most of the time
## 2414  Heterosexual (straight)            Rarely
## 2415           Some other way            Rarely
## 2416  Heterosexual (straight)             Never
## 2417  Heterosexual (straight)            Rarely
## 2418  Heterosexual (straight)  Most of the time
## 2419  Heterosexual (straight)         Sometimes
## 2420  Heterosexual (straight)             Never
## 2421  Heterosexual (straight)  Most of the time
## 2422  Heterosexual (straight)            Rarely
## 2423                 Bisexual  Most of the time
## 2424  Heterosexual (straight)         Sometimes
## 2425                 Bisexual         Sometimes
## 2426  Heterosexual (straight)             Never
## 2427  Heterosexual (straight)         Sometimes
## 2428  Heterosexual (straight)  Most of the time
## 2429  Heterosexual (straight)         Sometimes
## 2430  Heterosexual (straight)         Sometimes
## 2431  Heterosexual (straight)  Most of the time
## 2432                 Bisexual         Sometimes
## 2433  Heterosexual (straight)         Sometimes
## 2434  Heterosexual (straight)         Sometimes
## 2435           Gay or lesbian  Most of the time
## 2436  Heterosexual (straight)            Always
## 2437  Heterosexual (straight)         Sometimes
## 2438  Heterosexual (straight)         Sometimes
## 2439  Heterosexual (straight)             Never
## 2440  Heterosexual (straight)            Always
## 2441  Heterosexual (straight)             Never
## 2442  Heterosexual (straight)            Rarely
## 2443  Heterosexual (straight)  Most of the time
## 2444                 Bisexual         Sometimes
## 2445  Heterosexual (straight)  Most of the time
## 2446  Heterosexual (straight)  Most of the time
## 2447  Heterosexual (straight)            Rarely
## 2448  Heterosexual (straight)             Never
## 2449  Heterosexual (straight)            Rarely
## 2450  Heterosexual (straight)  Most of the time
## 2451  Heterosexual (straight)             Never
## 2452           Some other way  Most of the time
## 2453           Some other way            Always
## 2454  Heterosexual (straight)         Sometimes
## 2455  Heterosexual (straight)            Rarely
## 2456                 Not sure  Most of the time
## 2457  Heterosexual (straight)             Never
## 2458  Heterosexual (straight)             Never
## 2459  Heterosexual (straight)             Never
## 2460  Heterosexual (straight)             Never
## 2461  Heterosexual (straight)             Never
## 2462  Heterosexual (straight)             Never
## 2463  Heterosexual (straight)         Sometimes
## 2464  Heterosexual (straight)         Sometimes
## 2465  Heterosexual (straight)             Never
## 2466  Heterosexual (straight)         Sometimes
## 2467  Heterosexual (straight)             Never
## 2468  Heterosexual (straight)  Most of the time
## 2469  Heterosexual (straight)            Rarely
## 2470  Heterosexual (straight)  Most of the time
## 2471  Heterosexual (straight)            Rarely
## 2472  Heterosexual (straight)         Sometimes
## 2473  Heterosexual (straight)         Sometimes
## 2474  Heterosexual (straight)             Never
## 2475  Heterosexual (straight)         Sometimes
## 2476  Heterosexual (straight)         Sometimes
## 2477  Heterosexual (straight)         Sometimes
## 2478  Heterosexual (straight)             Never
## 2479                 Not sure  Most of the time
## 2480  Heterosexual (straight)            Rarely
## 2481           Gay or lesbian         Sometimes
## 2482           Gay or lesbian         Sometimes
## 2483                 Not sure         Sometimes
## 2484  Heterosexual (straight)         Sometimes
## 2485           Gay or lesbian         Sometimes
## 2486  Heterosexual (straight)         Sometimes
## 2487  Heterosexual (straight)  Most of the time
## 2488  Heterosexual (straight)            Always
## 2489  Heterosexual (straight)            Rarely
## 2490  Heterosexual (straight)            Rarely
## 2491                 Bisexual         Sometimes
## 2492  Heterosexual (straight)             Never
## 2493  Heterosexual (straight)            Rarely
## 2494  Heterosexual (straight)            Rarely
## 2495  Heterosexual (straight)              <NA>
## 2496  Heterosexual (straight)              <NA>
## 2497                 Bisexual            Always
## 2498  Heterosexual (straight)         Sometimes
## 2499  Heterosexual (straight)             Never
## 2500  Heterosexual (straight)         Sometimes
## 2501  Heterosexual (straight)            Rarely
## 2502  Heterosexual (straight)            Rarely
## 2503  Heterosexual (straight)            Rarely
## 2504  Heterosexual (straight)            Rarely
## 2505  Heterosexual (straight)            Always
## 2506  Heterosexual (straight)            Always
## 2507                 Not sure         Sometimes
## 2508                 Bisexual            Rarely
## 2509  Heterosexual (straight)             Never
## 2510  Heterosexual (straight)             Never
## 2511  Heterosexual (straight)         Sometimes
## 2512  Heterosexual (straight)         Sometimes
## 2513  Heterosexual (straight)         Sometimes
## 2514  Heterosexual (straight)            Rarely
## 2515  Heterosexual (straight)            Rarely
## 2516  Heterosexual (straight)  Most of the time
## 2517  Heterosexual (straight)  Most of the time
## 2518  Heterosexual (straight)            Rarely
## 2519  Heterosexual (straight)             Never
## 2520  Heterosexual (straight)            Rarely
## 2521  Heterosexual (straight)             Never
## 2522  Heterosexual (straight)         Sometimes
## 2523  Heterosexual (straight)         Sometimes
## 2524  Heterosexual (straight)         Sometimes
## 2525  Heterosexual (straight)            Always
## 2526  Heterosexual (straight)         Sometimes
## 2527  Heterosexual (straight)         Sometimes
## 2528  Heterosexual (straight)             Never
## 2529  Heterosexual (straight)              <NA>
## 2530  Heterosexual (straight)            Rarely
## 2531  Heterosexual (straight)             Never
## 2532  Heterosexual (straight)         Sometimes
## 2533  Heterosexual (straight)         Sometimes
## 2534  Heterosexual (straight)            Rarely
## 2535  Heterosexual (straight)  Most of the time
## 2536  Heterosexual (straight)         Sometimes
## 2537  Heterosexual (straight)         Sometimes
## 2538  Heterosexual (straight)             Never
## 2539  Heterosexual (straight)         Sometimes
## 2540  Heterosexual (straight)             Never
## 2541  Heterosexual (straight)         Sometimes
## 2542  Heterosexual (straight)            Rarely
## 2543  Heterosexual (straight)            Rarely
## 2544                 Bisexual  Most of the time
## 2545  Heterosexual (straight)            Rarely
## 2546                 Bisexual  Most of the time
## 2547  Heterosexual (straight)            Rarely
## 2548  Heterosexual (straight)            Rarely
## 2549  Heterosexual (straight)              <NA>
## 2550                 Bisexual            Rarely
## 2551  Heterosexual (straight)             Never
## 2552  Heterosexual (straight)         Sometimes
## 2553  Heterosexual (straight)            Rarely
## 2554  Heterosexual (straight)             Never
## 2555  Heterosexual (straight)         Sometimes
## 2556  Heterosexual (straight)         Sometimes
## 2557                 Bisexual         Sometimes
## 2558  Heterosexual (straight)             Never
## 2559  Heterosexual (straight)         Sometimes
## 2560  Heterosexual (straight)             Never
## 2561  Heterosexual (straight)             Never
## 2562  Heterosexual (straight)         Sometimes
## 2563  Heterosexual (straight)         Sometimes
## 2564           Gay or lesbian              <NA>
## 2565  Heterosexual (straight)  Most of the time
## 2566  Heterosexual (straight)             Never
## 2567  Heterosexual (straight)            Always
## 2568                 Bisexual         Sometimes
## 2569  Heterosexual (straight)             Never
## 2570  Heterosexual (straight)             Never
## 2571           Gay or lesbian  Most of the time
## 2572  Heterosexual (straight)         Sometimes
## 2573  Heterosexual (straight)            Rarely
## 2574  Heterosexual (straight)  Most of the time
## 2575  Heterosexual (straight)            Rarely
## 2576  Heterosexual (straight)            Rarely
## 2577                 Bisexual         Sometimes
## 2578  Heterosexual (straight)         Sometimes
## 2579  Heterosexual (straight)             Never
## 2580           Gay or lesbian         Sometimes
## 2581  Heterosexual (straight)  Most of the time
## 2582  Heterosexual (straight)            Rarely
## 2583  Heterosexual (straight)            Rarely
## 2584  Heterosexual (straight)            Rarely
## 2585  Heterosexual (straight)  Most of the time
## 2586  Heterosexual (straight)            Rarely
## 2587  Heterosexual (straight)            Rarely
## 2588  Heterosexual (straight)            Rarely
## 2589  Heterosexual (straight)         Sometimes
## 2590  Heterosexual (straight)             Never
## 2591  Heterosexual (straight)         Sometimes
## 2592  Heterosexual (straight)             Never
## 2593  Heterosexual (straight)             Never
## 2594  Heterosexual (straight)  Most of the time
## 2595  Heterosexual (straight)             Never
## 2596  Heterosexual (straight)            Rarely
## 2597  Heterosexual (straight)  Most of the time
## 2598  Heterosexual (straight)            Rarely
## 2599           Gay or lesbian            Always
## 2600  Heterosexual (straight)             Never
## 2601  Heterosexual (straight)            Rarely
## 2602  Heterosexual (straight)         Sometimes
## 2603  Heterosexual (straight)            Rarely
## 2604  Heterosexual (straight)         Sometimes
## 2605  Heterosexual (straight)             Never
## 2606  Heterosexual (straight)              <NA>
## 2607  Heterosexual (straight)  Most of the time
## 2608  Heterosexual (straight)            Rarely
## 2609                 Bisexual         Sometimes
## 2610  Heterosexual (straight)             Never
## 2611  Heterosexual (straight)            Rarely
## 2612                 Not sure  Most of the time
## 2613  Heterosexual (straight)             Never
## 2614  Heterosexual (straight)            Rarely
## 2615  Heterosexual (straight)             Never
## 2616                 Bisexual         Sometimes
## 2617  Heterosexual (straight)            Rarely
## 2618  Heterosexual (straight)             Never
## 2619  Heterosexual (straight)  Most of the time
## 2620                 Not sure            Rarely
## 2621  Heterosexual (straight)         Sometimes
## 2622  Heterosexual (straight)         Sometimes
## 2623  Heterosexual (straight)             Never
## 2624  Heterosexual (straight)              <NA>
## 2625  Heterosexual (straight)            Rarely
## 2626  Heterosexual (straight)  Most of the time
## 2627  Heterosexual (straight)         Sometimes
## 2628  Heterosexual (straight)         Sometimes
## 2629  Heterosexual (straight)         Sometimes
## 2630  Heterosexual (straight)         Sometimes
## 2631                 Bisexual         Sometimes
## 2632  Heterosexual (straight)            Always
## 2633  Heterosexual (straight)            Rarely
## 2634  Heterosexual (straight)            Always
## 2635  Heterosexual (straight)            Rarely
## 2636  Heterosexual (straight)            Rarely
## 2637  Heterosexual (straight)            Rarely
## 2638                 Bisexual            Always
## 2639  Heterosexual (straight)             Never
## 2640  Heterosexual (straight)             Never
## 2641  Heterosexual (straight)            Always
## 2642                 Bisexual            Always
## 2643                 Bisexual         Sometimes
## 2644  Heterosexual (straight)            Always
## 2645  Heterosexual (straight)            Always
## 2646  Heterosexual (straight)             Never
## 2647  Heterosexual (straight)            Rarely
## 2648  Heterosexual (straight)         Sometimes
## 2649  Heterosexual (straight)  Most of the time
## 2650  Heterosexual (straight)            Rarely
## 2651  Heterosexual (straight)             Never
## 2652  Heterosexual (straight)            Rarely
## 2653  Heterosexual (straight)  Most of the time
## 2654           Gay or lesbian            Always
## 2655  Heterosexual (straight)         Sometimes
## 2656  Heterosexual (straight)            Rarely
## 2657                 Bisexual         Sometimes
## 2658  Heterosexual (straight)             Never
## 2659  Heterosexual (straight)             Never
## 2660  Heterosexual (straight)  Most of the time
## 2661  Heterosexual (straight)             Never
## 2662  Heterosexual (straight)            Rarely
## 2663           Some other way            Always
## 2664  Heterosexual (straight)         Sometimes
## 2665  Heterosexual (straight)             Never
## 2666  Heterosexual (straight)            Always
## 2667  Heterosexual (straight)         Sometimes
## 2668  Heterosexual (straight)            Rarely
## 2669  Heterosexual (straight)         Sometimes
## 2670  Heterosexual (straight)         Sometimes
## 2671  Heterosexual (straight)            Always
## 2672  Heterosexual (straight)  Most of the time
## 2673  Heterosexual (straight)            Rarely
## 2674  Heterosexual (straight)  Most of the time
## 2675  Heterosexual (straight)            Rarely
## 2676  Heterosexual (straight)         Sometimes
## 2677  Heterosexual (straight)             Never
## 2678  Heterosexual (straight)  Most of the time
## 2679  Heterosexual (straight)  Most of the time
## 2680  Heterosexual (straight)         Sometimes
## 2681  Heterosexual (straight)  Most of the time
## 2682  Heterosexual (straight)            Rarely
## 2683  Heterosexual (straight)            Rarely
## 2684  Heterosexual (straight)  Most of the time
## 2685                 Not sure  Most of the time
## 2686  Heterosexual (straight)            Rarely
## 2687  Heterosexual (straight)            Rarely
## 2688  Heterosexual (straight)            Rarely
## 2689  Heterosexual (straight)            Rarely
## 2690  Heterosexual (straight)  Most of the time
## 2691           Some other way         Sometimes
## 2692  Heterosexual (straight)             Never
## 2693  Heterosexual (straight)         Sometimes
## 2694  Heterosexual (straight)            Always
## 2695                 Bisexual             Never
## 2696  Heterosexual (straight)             Never
## 2697  Heterosexual (straight)         Sometimes
## 2698  Heterosexual (straight)             Never
## 2699  Heterosexual (straight)            Rarely
## 2700  Heterosexual (straight)         Sometimes
## 2701  Heterosexual (straight)  Most of the time
## 2702  Heterosexual (straight)  Most of the time
## 2703  Heterosexual (straight)             Never
## 2704  Heterosexual (straight)         Sometimes
## 2705  Heterosexual (straight)            Rarely
## 2706  Heterosexual (straight)             Never
## 2707  Heterosexual (straight)            Rarely
## 2708  Heterosexual (straight)             Never
## 2709  Heterosexual (straight)             Never
## 2710  Heterosexual (straight)         Sometimes
## 2711  Heterosexual (straight)            Rarely
## 2712  Heterosexual (straight)            Rarely
## 2713  Heterosexual (straight)  Most of the time
## 2714  Heterosexual (straight)            Rarely
## 2715  Heterosexual (straight)         Sometimes
## 2716  Heterosexual (straight)  Most of the time
## 2717  Heterosexual (straight)            Always
## 2718  Heterosexual (straight)         Sometimes
## 2719  Heterosexual (straight)             Never
## 2720  Heterosexual (straight)             Never
## 2721  Heterosexual (straight)             Never
## 2722  Heterosexual (straight)         Sometimes
## 2723  Heterosexual (straight)             Never
## 2724  Heterosexual (straight)            Rarely
## 2725  Heterosexual (straight)             Never
## 2726  Heterosexual (straight)         Sometimes
## 2727  Heterosexual (straight)            Rarely
## 2728  Heterosexual (straight)             Never
## 2729  Heterosexual (straight)             Never
## 2730  Heterosexual (straight)         Sometimes
## 2731  Heterosexual (straight)  Most of the time
## 2732  Heterosexual (straight)  Most of the time
## 2733  Heterosexual (straight)            Rarely
## 2734  Heterosexual (straight)            Rarely
## 2735  Heterosexual (straight)         Sometimes
## 2736  Heterosexual (straight)            Always
## 2737  Heterosexual (straight)            Rarely
## 2738  Heterosexual (straight)         Sometimes
## 2739  Heterosexual (straight)            Always
## 2740  Heterosexual (straight)  Most of the time
## 2741                 Bisexual            Rarely
## 2742  Heterosexual (straight)            Rarely
## 2743           Some other way  Most of the time
## 2744  Heterosexual (straight)         Sometimes
## 2745  Heterosexual (straight)         Sometimes
## 2746  Heterosexual (straight)            Always
## 2747  Heterosexual (straight)             Never
## 2748  Heterosexual (straight)            Rarely
## 2749  Heterosexual (straight)            Rarely
## 2750                 Bisexual  Most of the time
## 2751  Heterosexual (straight)         Sometimes
## 2752  Heterosexual (straight)             Never
## 2753  Heterosexual (straight)         Sometimes
## 2754  Heterosexual (straight)             Never
## 2755  Heterosexual (straight)         Sometimes
## 2756                 Bisexual  Most of the time
## 2757  Heterosexual (straight)  Most of the time
## 2758  Heterosexual (straight)              <NA>
## 2759  Heterosexual (straight)             Never
## 2760  Heterosexual (straight)  Most of the time
## 2761  Heterosexual (straight)             Never
## 2762  Heterosexual (straight)             Never
## 2763  Heterosexual (straight)              <NA>
## 2764  Heterosexual (straight)             Never
## 2765  Heterosexual (straight)         Sometimes
## 2766  Heterosexual (straight)             Never
## 2767  Heterosexual (straight)              <NA>
## 2768  Heterosexual (straight)         Sometimes
## 2769  Heterosexual (straight)            Rarely
## 2770  Heterosexual (straight)  Most of the time
## 2771  Heterosexual (straight)            Rarely
## 2772  Heterosexual (straight)  Most of the time
## 2773  Heterosexual (straight)         Sometimes
## 2774  Heterosexual (straight)         Sometimes
## 2775  Heterosexual (straight)            Rarely
## 2776  Heterosexual (straight)             Never
## 2777  Heterosexual (straight)         Sometimes
## 2778  Heterosexual (straight)            Rarely
## 2779  Heterosexual (straight)            Rarely
## 2780  Heterosexual (straight)            Rarely
## 2781  Heterosexual (straight)            Rarely
## 2782  Heterosexual (straight)         Sometimes
## 2783  Heterosexual (straight)             Never
## 2784  Heterosexual (straight)             Never
## 2785  Heterosexual (straight)            Rarely
## 2786  Heterosexual (straight)             Never
## 2787  Heterosexual (straight)  Most of the time
## 2788  Heterosexual (straight)             Never
## 2789  Heterosexual (straight)             Never
## 2790  Heterosexual (straight)            Rarely
## 2791  Heterosexual (straight)         Sometimes
## 2792  Heterosexual (straight)            Rarely
## 2793  Heterosexual (straight)  Most of the time
## 2794  Heterosexual (straight)            Rarely
## 2795  Heterosexual (straight)             Never
## 2796  Heterosexual (straight)            Rarely
## 2797  Heterosexual (straight)             Never
## 2798  Heterosexual (straight)         Sometimes
## 2799  Heterosexual (straight)  Most of the time
## 2800  Heterosexual (straight)         Sometimes
## 2801  Heterosexual (straight)             Never
## 2802  Heterosexual (straight)  Most of the time
## 2803  Heterosexual (straight)  Most of the time
## 2804  Heterosexual (straight)         Sometimes
## 2805  Heterosexual (straight)         Sometimes
## 2806  Heterosexual (straight)             Never
## 2807  Heterosexual (straight)  Most of the time
## 2808                 Bisexual         Sometimes
## 2809  Heterosexual (straight)         Sometimes
## 2810  Heterosexual (straight)         Sometimes
## 2811  Heterosexual (straight)             Never
## 2812  Heterosexual (straight)            Rarely
## 2813  Heterosexual (straight)            Rarely
## 2814           Gay or lesbian            Always
## 2815  Heterosexual (straight)             Never
## 2816  Heterosexual (straight)  Most of the time
## 2817  Heterosexual (straight)             Never
## 2818  Heterosexual (straight)         Sometimes
## 2819  Heterosexual (straight)         Sometimes
## 2820  Heterosexual (straight)            Rarely
## 2821  Heterosexual (straight)  Most of the time
## 2822  Heterosexual (straight)             Never
## 2823  Heterosexual (straight)         Sometimes
## 2824  Heterosexual (straight)            Rarely
## 2825  Heterosexual (straight)            Rarely
## 2826  Heterosexual (straight)         Sometimes
## 2827  Heterosexual (straight)            Rarely
## 2828  Heterosexual (straight)              <NA>
## 2829  Heterosexual (straight)             Never
## 2830  Heterosexual (straight)  Most of the time
## 2831  Heterosexual (straight)             Never
## 2832  Heterosexual (straight)            Always
## 2833  Heterosexual (straight)            Rarely
## 2834  Heterosexual (straight)             Never
## 2835  Heterosexual (straight)            Rarely
## 2836  Heterosexual (straight)         Sometimes
## 2837  Heterosexual (straight)            Rarely
## 2838  Heterosexual (straight)  Most of the time
## 2839  Heterosexual (straight)            Rarely
## 2840           Gay or lesbian            Rarely
## 2841  Heterosexual (straight)         Sometimes
## 2842  Heterosexual (straight)         Sometimes
## 2843  Heterosexual (straight)             Never
## 2844  Heterosexual (straight)            Rarely
## 2845  Heterosexual (straight)            Rarely
## 2846  Heterosexual (straight)             Never
## 2847  Heterosexual (straight)             Never
## 2848  Heterosexual (straight)              <NA>
## 2849  Heterosexual (straight)            Rarely
## 2850  Heterosexual (straight)  Most of the time
## 2851  Heterosexual (straight)         Sometimes
## 2852  Heterosexual (straight)             Never
## 2853  Heterosexual (straight)         Sometimes
## 2854  Heterosexual (straight)             Never
## 2855  Heterosexual (straight)             Never
## 2856  Heterosexual (straight)         Sometimes
## 2857  Heterosexual (straight)            Rarely
## 2858  Heterosexual (straight)            Rarely
## 2859  Heterosexual (straight)             Never
## 2860  Heterosexual (straight)         Sometimes
## 2861  Heterosexual (straight)            Rarely
## 2862  Heterosexual (straight)  Most of the time
## 2863                 Bisexual         Sometimes
## 2864  Heterosexual (straight)            Always
## 2865  Heterosexual (straight)            Rarely
## 2866           Gay or lesbian            Always
## 2867  Heterosexual (straight)             Never
## 2868  Heterosexual (straight)            Rarely
## 2869  Heterosexual (straight)         Sometimes
## 2870  Heterosexual (straight)         Sometimes
## 2871  Heterosexual (straight)             Never
## 2872  Heterosexual (straight)         Sometimes
## 2873  Heterosexual (straight)             Never
## 2874  Heterosexual (straight)              <NA>
## 2875  Heterosexual (straight)            Rarely
## 2876  Heterosexual (straight)  Most of the time
## 2877  Heterosexual (straight)            Rarely
## 2878  Heterosexual (straight)  Most of the time
## 2879  Heterosexual (straight)             Never
## 2880  Heterosexual (straight)            Always
## 2881  Heterosexual (straight)             Never
## 2882  Heterosexual (straight)         Sometimes
## 2883  Heterosexual (straight)             Never
## 2884  Heterosexual (straight)             Never
## 2885  Heterosexual (straight)  Most of the time
## 2886                 Bisexual  Most of the time
## 2887  Heterosexual (straight)  Most of the time
## 2888  Heterosexual (straight)            Rarely
## 2889  Heterosexual (straight)         Sometimes
## 2890  Heterosexual (straight)         Sometimes
## 2891  Heterosexual (straight)             Never
## 2892  Heterosexual (straight)             Never
## 2893  Heterosexual (straight)            Always
## 2894                 Bisexual         Sometimes
## 2895  Heterosexual (straight)             Never
## 2896  Heterosexual (straight)            Rarely
## 2897  Heterosexual (straight)              <NA>
## 2898  Heterosexual (straight)             Never
## 2899  Heterosexual (straight)              <NA>
## 2900  Heterosexual (straight)             Never
## 2901  Heterosexual (straight)            Rarely
## 2902  Heterosexual (straight)            Rarely
## 2903  Heterosexual (straight)             Never
## 2904  Heterosexual (straight)             Never
## 2905  Heterosexual (straight)         Sometimes
## 2906  Heterosexual (straight)  Most of the time
## 2907  Heterosexual (straight)  Most of the time
## 2908  Heterosexual (straight)             Never
## 2909           Gay or lesbian  Most of the time
## 2910  Heterosexual (straight)            Always
## 2911  Heterosexual (straight)            Rarely
## 2912  Heterosexual (straight)            Always
## 2913                 Bisexual  Most of the time
## 2914  Heterosexual (straight)             Never
## 2915                 Bisexual  Most of the time
## 2916           Some other way         Sometimes
## 2917  Heterosexual (straight)             Never
## 2918  Heterosexual (straight)             Never
## 2919  Heterosexual (straight)         Sometimes
## 2920  Heterosexual (straight)            Rarely
## 2921  Heterosexual (straight)         Sometimes
## 2922  Heterosexual (straight)         Sometimes
## 2923  Heterosexual (straight)            Rarely
## 2924  Heterosexual (straight)         Sometimes
## 2925  Heterosexual (straight)  Most of the time
## 2926  Heterosexual (straight)            Rarely
## 2927  Heterosexual (straight)             Never
## 2928  Heterosexual (straight)             Never
## 2929  Heterosexual (straight)              <NA>
## 2930  Heterosexual (straight)  Most of the time
## 2931  Heterosexual (straight)             Never
## 2932  Heterosexual (straight)             Never
## 2933  Heterosexual (straight)            Rarely
## 2934  Heterosexual (straight)            Rarely
## 2935                 Bisexual            Always
## 2936  Heterosexual (straight)  Most of the time
## 2937  Heterosexual (straight)            Rarely
## 2938  Heterosexual (straight)             Never
## 2939  Heterosexual (straight)            Rarely
## 2940  Heterosexual (straight)         Sometimes
## 2941  Heterosexual (straight)            Rarely
## 2942  Heterosexual (straight)             Never
## 2943  Heterosexual (straight)             Never
## 2944  Heterosexual (straight)             Never
## 2945  Heterosexual (straight)  Most of the time
## 2946  Heterosexual (straight)             Never
## 2947  Heterosexual (straight)  Most of the time
## 2948  Heterosexual (straight)            Rarely
## 2949  Heterosexual (straight)         Sometimes
## 2950           Gay or lesbian            Rarely
## 2951           Gay or lesbian            Rarely
## 2952  Heterosexual (straight)            Rarely
## 2953  Heterosexual (straight)         Sometimes
## 2954  Heterosexual (straight)            Rarely
## 2955  Heterosexual (straight)  Most of the time
## 2956  Heterosexual (straight)            Rarely
## 2957  Heterosexual (straight)            Rarely
## 2958  Heterosexual (straight)            Rarely
## 2959  Heterosexual (straight)         Sometimes
## 2960  Heterosexual (straight)            Always
## 2961  Heterosexual (straight)             Never
## 2962  Heterosexual (straight)             Never
## 2963  Heterosexual (straight)  Most of the time
## 2964  Heterosexual (straight)         Sometimes
## 2965  Heterosexual (straight)         Sometimes
## 2966  Heterosexual (straight)             Never
## 2967  Heterosexual (straight)         Sometimes
## 2968  Heterosexual (straight)         Sometimes
## 2969  Heterosexual (straight)              <NA>
## 2970                 Bisexual         Sometimes
## 2971  Heterosexual (straight)            Rarely
## 2972  Heterosexual (straight)            Rarely
## 2973  Heterosexual (straight)             Never
## 2974  Heterosexual (straight)  Most of the time
## 2975  Heterosexual (straight)         Sometimes
## 2976  Heterosexual (straight)             Never
## 2977                 Bisexual            Rarely
## 2978  Heterosexual (straight)         Sometimes
## 2979  Heterosexual (straight)            Rarely
## 2980           Gay or lesbian              <NA>
## 2981  Heterosexual (straight)            Rarely
## 2982  Heterosexual (straight)            Rarely
## 2983           Some other way         Sometimes
## 2984  Heterosexual (straight)             Never
## 2985  Heterosexual (straight)            Rarely
## 2986  Heterosexual (straight)  Most of the time
## 2987  Heterosexual (straight)             Never
## 2988  Heterosexual (straight)            Rarely
## 2989  Heterosexual (straight)            Rarely
## 2990  Heterosexual (straight)         Sometimes
## 2991  Heterosexual (straight)            Rarely
## 2992  Heterosexual (straight)  Most of the time
## 2993  Heterosexual (straight)  Most of the time
## 2994  Heterosexual (straight)            Rarely
## 2995  Heterosexual (straight)            Rarely
## 2996  Heterosexual (straight)            Rarely
## 2997  Heterosexual (straight)            Always
## 2998                 Bisexual         Sometimes
## 2999  Heterosexual (straight)             Never
## 3000  Heterosexual (straight)            Always
## 3001                 Bisexual            Rarely
## 3002  Heterosexual (straight)         Sometimes
## 3003  Heterosexual (straight)            Rarely
## 3004  Heterosexual (straight)              <NA>
## 3005  Heterosexual (straight)             Never
## 3006  Heterosexual (straight)            Rarely
## 3007  Heterosexual (straight)             Never
## 3008  Heterosexual (straight)             Never
## 3009  Heterosexual (straight)             Never
## 3010                 Bisexual            Always
## 3011           Some other way         Sometimes
## 3012  Heterosexual (straight)         Sometimes
## 3013  Heterosexual (straight)         Sometimes
## 3014  Heterosexual (straight)             Never
## 3015  Heterosexual (straight)            Always
## 3016  Heterosexual (straight)         Sometimes
## 3017  Heterosexual (straight)             Never
## 3018  Heterosexual (straight)  Most of the time
## 3019  Heterosexual (straight)            Rarely
## 3020  Heterosexual (straight)            Rarely
## 3021  Heterosexual (straight)            Rarely
## 3022  Heterosexual (straight)             Never
## 3023  Heterosexual (straight)            Rarely
## 3024  Heterosexual (straight)             Never
## 3025  Heterosexual (straight)         Sometimes
## 3026  Heterosexual (straight)             Never
## 3027  Heterosexual (straight)             Never
## 3028  Heterosexual (straight)             Never
## 3029  Heterosexual (straight)             Never
## 3030  Heterosexual (straight)             Never
## 3031  Heterosexual (straight)             Never
## 3032  Heterosexual (straight)             Never
## 3033  Heterosexual (straight)         Sometimes
## 3034  Heterosexual (straight)  Most of the time
## 3035  Heterosexual (straight)         Sometimes
## 3036  Heterosexual (straight)  Most of the time
## 3037           Gay or lesbian         Sometimes
## 3038           Gay or lesbian         Sometimes
## 3039  Heterosexual (straight)             Never
## 3040  Heterosexual (straight)             Never
## 3041  Heterosexual (straight)             Never
## 3042                 Bisexual            Always
## 3043           Gay or lesbian  Most of the time
## 3044                 Bisexual  Most of the time
## 3045  Heterosexual (straight)         Sometimes
## 3046  Heterosexual (straight)            Rarely
## 3047  Heterosexual (straight)  Most of the time
## 3048  Heterosexual (straight)         Sometimes
## 3049  Heterosexual (straight)            Rarely
## 3050                 Not sure         Sometimes
## 3051                 Not sure             Never
## 3052  Heterosexual (straight)         Sometimes
## 3053  Heterosexual (straight)         Sometimes
## 3054  Heterosexual (straight)            Rarely
## 3055  Heterosexual (straight)             Never
## 3056  Heterosexual (straight)             Never
## 3057  Heterosexual (straight)              <NA>
## 3058  Heterosexual (straight)              <NA>
## 3059  Heterosexual (straight)              <NA>
## 3060  Heterosexual (straight)              <NA>
## 3061  Heterosexual (straight)              <NA>
## 3062                 Bisexual              <NA>
## 3063  Heterosexual (straight)              <NA>
## 3064  Heterosexual (straight)              <NA>
## 3065  Heterosexual (straight)              <NA>
## 3066                 Not sure              <NA>
## 3067  Heterosexual (straight)              <NA>
## 3068  Heterosexual (straight)              <NA>
## 3069                 Bisexual              <NA>
## 3070  Heterosexual (straight)              <NA>
## 3071  Heterosexual (straight)              <NA>
## 3072  Heterosexual (straight)              <NA>
## 3073  Heterosexual (straight)              <NA>
## 3074  Heterosexual (straight)              <NA>
## 3075  Heterosexual (straight)              <NA>
## 3076  Heterosexual (straight)              <NA>
## 3077           Some other way              <NA>
## 3078  Heterosexual (straight)              <NA>
## 3079  Heterosexual (straight)              <NA>
## 3080  Heterosexual (straight)              <NA>
## 3081  Heterosexual (straight)              <NA>
## 3082  Heterosexual (straight)              <NA>
## 3083  Heterosexual (straight)              <NA>
## 3084  Heterosexual (straight)              <NA>
## 3085  Heterosexual (straight)              <NA>
## 3086  Heterosexual (straight)              <NA>
## 3087  Heterosexual (straight)              <NA>
## 3088  Heterosexual (straight)              <NA>
## 3089  Heterosexual (straight)              <NA>
## 3090  Heterosexual (straight)              <NA>
## 3091  Heterosexual (straight)              <NA>
## 3092  Heterosexual (straight)              <NA>
## 3093                 Bisexual              <NA>
## 3094  Heterosexual (straight)              <NA>
## 3095  Heterosexual (straight)              <NA>
## 3096  Heterosexual (straight)              <NA>
## 3097  Heterosexual (straight)              <NA>
## 3098  Heterosexual (straight)              <NA>
## 3099                 Not sure              <NA>
## 3100  Heterosexual (straight)              <NA>
## 3101  Heterosexual (straight)              <NA>
## 3102  Heterosexual (straight)              <NA>
## 3103  Heterosexual (straight)              <NA>
## 3104  Heterosexual (straight)              <NA>
## 3105  Heterosexual (straight)              <NA>
## 3106  Heterosexual (straight)              <NA>
## 3107  Heterosexual (straight)              <NA>
## 3108  Heterosexual (straight)              <NA>
## 3109  Heterosexual (straight)              <NA>
## 3110  Heterosexual (straight)              <NA>
## 3111  Heterosexual (straight)              <NA>
## 3112  Heterosexual (straight)              <NA>
## 3113  Heterosexual (straight)              <NA>
## 3114  Heterosexual (straight)              <NA>
## 3115  Heterosexual (straight)              <NA>
## 3116  Heterosexual (straight)              <NA>
## 3117  Heterosexual (straight)              <NA>
## 3118  Heterosexual (straight)              <NA>
## 3119           Gay or lesbian              <NA>
## 3120  Heterosexual (straight)              <NA>
## 3121  Heterosexual (straight)              <NA>
## 3122  Heterosexual (straight)              <NA>
## 3123  Heterosexual (straight)              <NA>
## 3124  Heterosexual (straight)              <NA>
## 3125  Heterosexual (straight)              <NA>
## 3126  Heterosexual (straight)              <NA>
## 3127  Heterosexual (straight)              <NA>
## 3128  Heterosexual (straight)              <NA>
## 3129           Gay or lesbian              <NA>
## 3130                 Bisexual              <NA>
## 3131  Heterosexual (straight)              <NA>
## 3132  Heterosexual (straight)              <NA>
## 3133  Heterosexual (straight)              <NA>
## 3134  Heterosexual (straight)              <NA>
## 3135                 Not sure              <NA>
## 3136           Gay or lesbian              <NA>
## 3137  Heterosexual (straight)              <NA>
## 3138  Heterosexual (straight)              <NA>
## 3139  Heterosexual (straight)              <NA>
## 3140  Heterosexual (straight)              <NA>
## 3141  Heterosexual (straight)              <NA>
## 3142           Gay or lesbian              <NA>
## 3143  Heterosexual (straight)              <NA>
## 3144  Heterosexual (straight)              <NA>
## 3145  Heterosexual (straight)              <NA>
## 3146  Heterosexual (straight)              <NA>
## 3147  Heterosexual (straight)              <NA>
## 3148  Heterosexual (straight)              <NA>
## 3149  Heterosexual (straight)              <NA>
## 3150  Heterosexual (straight)              <NA>
## 3151                 Bisexual              <NA>
## 3152  Heterosexual (straight)              <NA>
## 3153                 Bisexual              <NA>
## 3154  Heterosexual (straight)              <NA>
## 3155  Heterosexual (straight)              <NA>
## 3156  Heterosexual (straight)              <NA>
## 3157  Heterosexual (straight)              <NA>
## 3158  Heterosexual (straight)              <NA>
## 3159  Heterosexual (straight)              <NA>
## 3160  Heterosexual (straight)              <NA>
## 3161  Heterosexual (straight)         Sometimes
## 3162  Heterosexual (straight)             Never
## 3163  Heterosexual (straight)             Never
## 3164  Heterosexual (straight)  Most of the time
## 3165  Heterosexual (straight)  Most of the time
## 3166  Heterosexual (straight)             Never
## 3167  Heterosexual (straight)         Sometimes
## 3168  Heterosexual (straight)            Rarely
## 3169  Heterosexual (straight)             Never
## 3170  Heterosexual (straight)             Never
## 3171  Heterosexual (straight)         Sometimes
## 3172  Heterosexual (straight)  Most of the time
## 3173  Heterosexual (straight)            Rarely
## 3174           Gay or lesbian         Sometimes
## 3175  Heterosexual (straight)         Sometimes
## 3176  Heterosexual (straight)             Never
## 3177  Heterosexual (straight)              <NA>
## 3178  Heterosexual (straight)              <NA>
## 3179  Heterosexual (straight)         Sometimes
## 3180  Heterosexual (straight)            Rarely
## 3181  Heterosexual (straight)             Never
## 3182  Heterosexual (straight)            Rarely
## 3183  Heterosexual (straight)            Rarely
## 3184  Heterosexual (straight)            Rarely
## 3185  Heterosexual (straight)             Never
## 3186                 Bisexual            Rarely
## 3187  Heterosexual (straight)         Sometimes
## 3188  Heterosexual (straight)         Sometimes
## 3189  Heterosexual (straight)            Rarely
## 3190  Heterosexual (straight)             Never
## 3191  Heterosexual (straight)             Never
## 3192  Heterosexual (straight)         Sometimes
## 3193  Heterosexual (straight)         Sometimes
## 3194                 Bisexual         Sometimes
## 3195  Heterosexual (straight)              <NA>
## 3196  Heterosexual (straight)         Sometimes
## 3197  Heterosexual (straight)              <NA>
## 3198  Heterosexual (straight)         Sometimes
## 3199  Heterosexual (straight)         Sometimes
## 3200  Heterosexual (straight)             Never
## 3201  Heterosexual (straight)  Most of the time
## 3202  Heterosexual (straight)             Never
## 3203  Heterosexual (straight)            Rarely
## 3204  Heterosexual (straight)            Rarely
## 3205  Heterosexual (straight)         Sometimes
## 3206  Heterosexual (straight)         Sometimes
## 3207  Heterosexual (straight)  Most of the time
## 3208  Heterosexual (straight)            Rarely
## 3209  Heterosexual (straight)             Never
## 3210  Heterosexual (straight)         Sometimes
## 3211  Heterosexual (straight)            Rarely
## 3212  Heterosexual (straight)            Rarely
## 3213  Heterosexual (straight)         Sometimes
## 3214                 Not sure  Most of the time
## 3215  Heterosexual (straight)            Rarely
## 3216           Gay or lesbian  Most of the time
## 3217  Heterosexual (straight)            Rarely
## 3218  Heterosexual (straight)  Most of the time
## 3219                 Bisexual  Most of the time
## 3220  Heterosexual (straight)             Never
## 3221  Heterosexual (straight)         Sometimes
## 3222           Gay or lesbian             Never
## 3223                 Bisexual            Always
## 3224  Heterosexual (straight)            Rarely
## 3225  Heterosexual (straight)            Rarely
## 3226  Heterosexual (straight)         Sometimes
## 3227  Heterosexual (straight)            Rarely
## 3228  Heterosexual (straight)            Rarely
## 3229  Heterosexual (straight)         Sometimes
## 3230  Heterosexual (straight)         Sometimes
## 3231  Heterosexual (straight)  Most of the time
## 3232  Heterosexual (straight)            Rarely
## 3233  Heterosexual (straight)            Always
## 3234  Heterosexual (straight)         Sometimes
## 3235  Heterosexual (straight)            Rarely
## 3236  Heterosexual (straight)         Sometimes
## 3237  Heterosexual (straight)  Most of the time
## 3238                 Bisexual  Most of the time
## 3239  Heterosexual (straight)         Sometimes
## 3240  Heterosexual (straight)            Rarely
## 3241  Heterosexual (straight)            Rarely
## 3242  Heterosexual (straight)             Never
## 3243           Gay or lesbian         Sometimes
## 3244  Heterosexual (straight)            Rarely
## 3245  Heterosexual (straight)         Sometimes
## 3246  Heterosexual (straight)            Always
## 3247  Heterosexual (straight)            Rarely
## 3248  Heterosexual (straight)             Never
## 3249  Heterosexual (straight)         Sometimes
## 3250  Heterosexual (straight)         Sometimes
## 3251  Heterosexual (straight)            Rarely
## 3252  Heterosexual (straight)         Sometimes
## 3253  Heterosexual (straight)            Rarely
## 3254                 Not sure            Rarely
## 3255  Heterosexual (straight)         Sometimes
## 3256  Heterosexual (straight)             Never
## 3257  Heterosexual (straight)  Most of the time
## 3258  Heterosexual (straight)         Sometimes
## 3259  Heterosexual (straight)            Rarely
## 3260  Heterosexual (straight)            Rarely
## 3261  Heterosexual (straight)         Sometimes
## 3262  Heterosexual (straight)            Rarely
## 3263  Heterosexual (straight)            Rarely
## 3264                 Bisexual         Sometimes
## 3265                 Bisexual            Always
## 3266                 Not sure         Sometimes
## 3267  Heterosexual (straight)            Rarely
## 3268  Heterosexual (straight)            Rarely
## 3269  Heterosexual (straight)             Never
## 3270  Heterosexual (straight)            Rarely
## 3271  Heterosexual (straight)  Most of the time
## 3272  Heterosexual (straight)             Never
## 3273  Heterosexual (straight)  Most of the time
## 3274  Heterosexual (straight)            Rarely
## 3275  Heterosexual (straight)            Always
## 3276  Heterosexual (straight)  Most of the time
## 3277                 Bisexual         Sometimes
## 3278                 Not sure         Sometimes
## 3279  Heterosexual (straight)            Rarely
## 3280  Heterosexual (straight)  Most of the time
## 3281                 Bisexual            Rarely
## 3282  Heterosexual (straight)             Never
## 3283  Heterosexual (straight)             Never
## 3284  Heterosexual (straight)            Rarely
## 3285           Gay or lesbian  Most of the time
## 3286  Heterosexual (straight)            Rarely
## 3287  Heterosexual (straight)         Sometimes
## 3288  Heterosexual (straight)         Sometimes
## 3289  Heterosexual (straight)  Most of the time
## 3290  Heterosexual (straight)  Most of the time
## 3291           Gay or lesbian            Always
## 3292                 Not sure            Rarely
## 3293  Heterosexual (straight)         Sometimes
## 3294                 Not sure  Most of the time
## 3295  Heterosexual (straight)            Rarely
## 3296  Heterosexual (straight)            Rarely
## 3297                 Bisexual  Most of the time
## 3298  Heterosexual (straight)         Sometimes
## 3299  Heterosexual (straight)             Never
## 3300                 Bisexual            Always
## 3301  Heterosexual (straight)         Sometimes
## 3302  Heterosexual (straight)             Never
## 3303  Heterosexual (straight)             Never
## 3304  Heterosexual (straight)             Never
## 3305  Heterosexual (straight)            Rarely
## 3306  Heterosexual (straight)             Never
## 3307  Heterosexual (straight)             Never
## 3308  Heterosexual (straight)            Always
## 3309  Heterosexual (straight)  Most of the time
## 3310  Heterosexual (straight)  Most of the time
## 3311  Heterosexual (straight)         Sometimes
## 3312  Heterosexual (straight)         Sometimes
## 3313  Heterosexual (straight)            Rarely
## 3314  Heterosexual (straight)            Rarely
## 3315                 Bisexual  Most of the time
## 3316  Heterosexual (straight)             Never
## 3317  Heterosexual (straight)         Sometimes
## 3318  Heterosexual (straight)             Never
## 3319  Heterosexual (straight)  Most of the time
## 3320  Heterosexual (straight)         Sometimes
## 3321  Heterosexual (straight)            Rarely
## 3322  Heterosexual (straight)             Never
## 3323  Heterosexual (straight)         Sometimes
## 3324  Heterosexual (straight)         Sometimes
## 3325  Heterosexual (straight)             Never
## 3326  Heterosexual (straight)         Sometimes
## 3327  Heterosexual (straight)            Rarely
## 3328  Heterosexual (straight)            Always
## 3329  Heterosexual (straight)             Never
## 3330  Heterosexual (straight)         Sometimes
## 3331                 Bisexual  Most of the time
## 3332  Heterosexual (straight)         Sometimes
## 3333  Heterosexual (straight)             Never
## 3334  Heterosexual (straight)            Always
## 3335  Heterosexual (straight)            Rarely
## 3336  Heterosexual (straight)             Never
## 3337           Some other way  Most of the time
## 3338  Heterosexual (straight)             Never
## 3339  Heterosexual (straight)            Rarely
## 3340                 Not sure             Never
## 3341                 Bisexual  Most of the time
## 3342  Heterosexual (straight)            Rarely
## 3343  Heterosexual (straight)  Most of the time
## 3344  Heterosexual (straight)         Sometimes
## 3345                 Bisexual             Never
## 3346  Heterosexual (straight)             Never
## 3347  Heterosexual (straight)            Rarely
## 3348  Heterosexual (straight)            Rarely
## 3349  Heterosexual (straight)             Never
## 3350  Heterosexual (straight)  Most of the time
## 3351  Heterosexual (straight)             Never
## 3352  Heterosexual (straight)            Always
## 3353  Heterosexual (straight)         Sometimes
## 3354  Heterosexual (straight)             Never
## 3355  Heterosexual (straight)         Sometimes
## 3356  Heterosexual (straight)         Sometimes
## 3357  Heterosexual (straight)             Never
## 3358  Heterosexual (straight)             Never
## 3359  Heterosexual (straight)            Rarely
## 3360  Heterosexual (straight)            Rarely
## 3361  Heterosexual (straight)         Sometimes
## 3362  Heterosexual (straight)             Never
## 3363  Heterosexual (straight)             Never
## 3364  Heterosexual (straight)            Rarely
## 3365  Heterosexual (straight)            Rarely
## 3366  Heterosexual (straight)         Sometimes
## 3367  Heterosexual (straight)            Rarely
## 3368  Heterosexual (straight)         Sometimes
## 3369  Heterosexual (straight)  Most of the time
## 3370  Heterosexual (straight)            Rarely
## 3371  Heterosexual (straight)         Sometimes
## 3372  Heterosexual (straight)         Sometimes
## 3373  Heterosexual (straight)  Most of the time
## 3374  Heterosexual (straight)             Never
## 3375  Heterosexual (straight)             Never
## 3376  Heterosexual (straight)         Sometimes
## 3377  Heterosexual (straight)            Rarely
## 3378  Heterosexual (straight)  Most of the time
## 3379  Heterosexual (straight)  Most of the time
## 3380  Heterosexual (straight)         Sometimes
## 3381           Some other way  Most of the time
## 3382                 Bisexual            Rarely
## 3383  Heterosexual (straight)            Rarely
## 3384  Heterosexual (straight)             Never
## 3385  Heterosexual (straight)            Rarely
## 3386  Heterosexual (straight)              <NA>
## 3387  Heterosexual (straight)  Most of the time
## 3388  Heterosexual (straight)         Sometimes
## 3389  Heterosexual (straight)         Sometimes
## 3390  Heterosexual (straight)         Sometimes
## 3391  Heterosexual (straight)            Rarely
## 3392  Heterosexual (straight)         Sometimes
## 3393  Heterosexual (straight)            Rarely
## 3394  Heterosexual (straight)             Never
## 3395  Heterosexual (straight)         Sometimes
## 3396  Heterosexual (straight)             Never
## 3397  Heterosexual (straight)             Never
## 3398  Heterosexual (straight)             Never
## 3399  Heterosexual (straight)         Sometimes
## 3400                 Bisexual         Sometimes
## 3401                 Bisexual         Sometimes
## 3402  Heterosexual (straight)             Never
## 3403                 Bisexual  Most of the time
## 3404  Heterosexual (straight)             Never
## 3405                 Bisexual            Rarely
## 3406  Heterosexual (straight)  Most of the time
## 3407                 Bisexual         Sometimes
## 3408  Heterosexual (straight)            Rarely
## 3409  Heterosexual (straight)             Never
## 3410  Heterosexual (straight)            Rarely
## 3411  Heterosexual (straight)            Always
## 3412  Heterosexual (straight)         Sometimes
## 3413  Heterosexual (straight)         Sometimes
## 3414  Heterosexual (straight)             Never
## 3415  Heterosexual (straight)             Never
## 3416  Heterosexual (straight)            Rarely
## 3417  Heterosexual (straight)         Sometimes
## 3418  Heterosexual (straight)             Never
## 3419           Gay or lesbian  Most of the time
## 3420  Heterosexual (straight)             Never
## 3421  Heterosexual (straight)            Rarely
## 3422                 Bisexual             Never
## 3423  Heterosexual (straight)  Most of the time
## 3424  Heterosexual (straight)              <NA>
## 3425  Heterosexual (straight)  Most of the time
## 3426                 Bisexual  Most of the time
## 3427  Heterosexual (straight)             Never
## 3428  Heterosexual (straight)            Rarely
## 3429  Heterosexual (straight)            Rarely
## 3430  Heterosexual (straight)            Rarely
## 3431  Heterosexual (straight)         Sometimes
## 3432  Heterosexual (straight)             Never
## 3433  Heterosexual (straight)             Never
## 3434  Heterosexual (straight)             Never
## 3435  Heterosexual (straight)         Sometimes
## 3436  Heterosexual (straight)         Sometimes
## 3437  Heterosexual (straight)             Never
## 3438  Heterosexual (straight)             Never
## 3439  Heterosexual (straight)            Rarely
## 3440  Heterosexual (straight)         Sometimes
## 3441  Heterosexual (straight)             Never
## 3442  Heterosexual (straight)  Most of the time
## 3443                 Bisexual              <NA>
## 3444  Heterosexual (straight)         Sometimes
## 3445  Heterosexual (straight)            Rarely
## 3446  Heterosexual (straight)         Sometimes
## 3447  Heterosexual (straight)         Sometimes
## 3448  Heterosexual (straight)         Sometimes
## 3449           Some other way         Sometimes
## 3450  Heterosexual (straight)            Rarely
## 3451  Heterosexual (straight)             Never
## 3452  Heterosexual (straight)             Never
## 3453  Heterosexual (straight)             Never
## 3454  Heterosexual (straight)             Never
## 3455  Heterosexual (straight)             Never
## 3456  Heterosexual (straight)         Sometimes
## 3457  Heterosexual (straight)         Sometimes
## 3458  Heterosexual (straight)         Sometimes
## 3459  Heterosexual (straight)            Rarely
## 3460           Gay or lesbian  Most of the time
## 3461  Heterosexual (straight)  Most of the time
## 3462           Some other way         Sometimes
## 3463  Heterosexual (straight)         Sometimes
## 3464  Heterosexual (straight)         Sometimes
## 3465  Heterosexual (straight)             Never
## 3466  Heterosexual (straight)            Rarely
## 3467  Heterosexual (straight)            Rarely
## 3468  Heterosexual (straight)  Most of the time
## 3469  Heterosexual (straight)            Rarely
## 3470  Heterosexual (straight)         Sometimes
## 3471  Heterosexual (straight)             Never
## 3472  Heterosexual (straight)            Rarely
## 3473                 Bisexual  Most of the time
## 3474  Heterosexual (straight)            Rarely
## 3475  Heterosexual (straight)            Rarely
## 3476  Heterosexual (straight)            Rarely
## 3477                 Bisexual            Always
## 3478  Heterosexual (straight)  Most of the time
## 3479                 Bisexual         Sometimes
## 3480  Heterosexual (straight)         Sometimes
## 3481  Heterosexual (straight)  Most of the time
## 3482  Heterosexual (straight)             Never
## 3483  Heterosexual (straight)            Rarely
## 3484  Heterosexual (straight)            Always
## 3485  Heterosexual (straight)            Rarely
## 3486  Heterosexual (straight)            Always
## 3487  Heterosexual (straight)  Most of the time
## 3488  Heterosexual (straight)            Rarely
## 3489  Heterosexual (straight)            Rarely
## 3490                 Bisexual         Sometimes
## 3491  Heterosexual (straight)  Most of the time
## 3492  Heterosexual (straight)         Sometimes
## 3493           Gay or lesbian            Always
## 3494  Heterosexual (straight)            Rarely
## 3495                 Bisexual  Most of the time
## 3496  Heterosexual (straight)            Rarely
## 3497  Heterosexual (straight)  Most of the time
## 3498  Heterosexual (straight)  Most of the time
## 3499                 Not sure         Sometimes
## 3500  Heterosexual (straight)            Always
## 3501  Heterosexual (straight)            Rarely
## 3502  Heterosexual (straight)            Rarely
## 3503  Heterosexual (straight)            Always
## 3504  Heterosexual (straight)            Rarely
## 3505  Heterosexual (straight)         Sometimes
## 3506  Heterosexual (straight)            Rarely
## 3507  Heterosexual (straight)            Rarely
## 3508  Heterosexual (straight)            Rarely
## 3509  Heterosexual (straight)  Most of the time
## 3510                 Not sure            Always
## 3511  Heterosexual (straight)             Never
## 3512  Heterosexual (straight)         Sometimes
## 3513  Heterosexual (straight)         Sometimes
## 3514  Heterosexual (straight)  Most of the time
## 3515  Heterosexual (straight)  Most of the time
## 3516  Heterosexual (straight)             Never
## 3517  Heterosexual (straight)         Sometimes
## 3518  Heterosexual (straight)            Rarely
## 3519  Heterosexual (straight)         Sometimes
## 3520  Heterosexual (straight)         Sometimes
## 3521  Heterosexual (straight)             Never
## 3522                 Bisexual  Most of the time
## 3523  Heterosexual (straight)            Rarely
## 3524  Heterosexual (straight)         Sometimes
## 3525  Heterosexual (straight)             Never
## 3526  Heterosexual (straight)         Sometimes
## 3527  Heterosexual (straight)            Rarely
## 3528  Heterosexual (straight)         Sometimes
## 3529  Heterosexual (straight)            Always
## 3530  Heterosexual (straight)         Sometimes
## 3531  Heterosexual (straight)  Most of the time
## 3532  Heterosexual (straight)  Most of the time
## 3533  Heterosexual (straight)         Sometimes
## 3534  Heterosexual (straight)             Never
## 3535  Heterosexual (straight)         Sometimes
## 3536  Heterosexual (straight)  Most of the time
## 3537  Heterosexual (straight)         Sometimes
## 3538  Heterosexual (straight)         Sometimes
## 3539  Heterosexual (straight)         Sometimes
## 3540  Heterosexual (straight)  Most of the time
## 3541  Heterosexual (straight)            Rarely
## 3542  Heterosexual (straight)            Always
## 3543  Heterosexual (straight)         Sometimes
## 3544  Heterosexual (straight)         Sometimes
## 3545  Heterosexual (straight)         Sometimes
## 3546  Heterosexual (straight)            Rarely
## 3547  Heterosexual (straight)             Never
## 3548  Heterosexual (straight)            Rarely
## 3549  Heterosexual (straight)            Rarely
## 3550  Heterosexual (straight)         Sometimes
## 3551  Heterosexual (straight)  Most of the time
## 3552  Heterosexual (straight)         Sometimes
## 3553  Heterosexual (straight)             Never
## 3554  Heterosexual (straight)             Never
## 3555  Heterosexual (straight)         Sometimes
## 3556  Heterosexual (straight)              <NA>
## 3557  Heterosexual (straight)  Most of the time
## 3558                 Bisexual             Never
## 3559  Heterosexual (straight)         Sometimes
## 3560  Heterosexual (straight)         Sometimes
## 3561  Heterosexual (straight)            Rarely
## 3562  Heterosexual (straight)             Never
## 3563  Heterosexual (straight)         Sometimes
## 3564  Heterosexual (straight)            Rarely
## 3565  Heterosexual (straight)  Most of the time
## 3566  Heterosexual (straight)         Sometimes
## 3567  Heterosexual (straight)  Most of the time
## 3568  Heterosexual (straight)            Rarely
## 3569  Heterosexual (straight)         Sometimes
## 3570  Heterosexual (straight)         Sometimes
## 3571  Heterosexual (straight)            Rarely
## 3572  Heterosexual (straight)             Never
## 3573  Heterosexual (straight)            Always
## 3574  Heterosexual (straight)             Never
## 3575  Heterosexual (straight)         Sometimes
## 3576  Heterosexual (straight)         Sometimes
## 3577  Heterosexual (straight)              <NA>
## 3578  Heterosexual (straight)            Rarely
## 3579  Heterosexual (straight)             Never
## 3580  Heterosexual (straight)             Never
## 3581  Heterosexual (straight)            Rarely
## 3582  Heterosexual (straight)            Rarely
## 3583  Heterosexual (straight)         Sometimes
## 3584  Heterosexual (straight)         Sometimes
## 3585  Heterosexual (straight)             Never
## 3586  Heterosexual (straight)            Rarely
## 3587           Gay or lesbian  Most of the time
## 3588  Heterosexual (straight)             Never
## 3589  Heterosexual (straight)            Rarely
## 3590  Heterosexual (straight)              <NA>
## 3591  Heterosexual (straight)             Never
## 3592  Heterosexual (straight)         Sometimes
## 3593  Heterosexual (straight)            Rarely
## 3594  Heterosexual (straight)  Most of the time
## 3595  Heterosexual (straight)  Most of the time
## 3596  Heterosexual (straight)  Most of the time
## 3597                 Not sure            Rarely
## 3598  Heterosexual (straight)            Rarely
## 3599  Heterosexual (straight)             Never
## 3600  Heterosexual (straight)            Rarely
## 3601  Heterosexual (straight)            Rarely
## 3602  Heterosexual (straight)            Rarely
## 3603  Heterosexual (straight)             Never
## 3604  Heterosexual (straight)             Never
## 3605           Some other way  Most of the time
## 3606  Heterosexual (straight)         Sometimes
## 3607           Gay or lesbian             Never
## 3608  Heterosexual (straight)         Sometimes
## 3609  Heterosexual (straight)         Sometimes
## 3610  Heterosexual (straight)             Never
## 3611  Heterosexual (straight)            Rarely
## 3612  Heterosexual (straight)            Rarely
## 3613  Heterosexual (straight)            Rarely
## 3614  Heterosexual (straight)            Always
## 3615  Heterosexual (straight)  Most of the time
## 3616  Heterosexual (straight)         Sometimes
## 3617  Heterosexual (straight)         Sometimes
## 3618  Heterosexual (straight)  Most of the time
## 3619  Heterosexual (straight)            Rarely
## 3620  Heterosexual (straight)            Rarely
## 3621  Heterosexual (straight)         Sometimes
## 3622  Heterosexual (straight)         Sometimes
## 3623  Heterosexual (straight)            Rarely
## 3624  Heterosexual (straight)             Never
## 3625                 Bisexual            Rarely
## 3626  Heterosexual (straight)            Rarely
## 3627  Heterosexual (straight)             Never
## 3628  Heterosexual (straight)         Sometimes
## 3629  Heterosexual (straight)  Most of the time
## 3630                 Bisexual  Most of the time
## 3631           Gay or lesbian         Sometimes
## 3632  Heterosexual (straight)         Sometimes
## 3633  Heterosexual (straight)         Sometimes
## 3634  Heterosexual (straight)            Rarely
## 3635           Gay or lesbian             Never
## 3636  Heterosexual (straight)            Rarely
## 3637  Heterosexual (straight)            Rarely
## 3638  Heterosexual (straight)         Sometimes
## 3639  Heterosexual (straight)            Rarely
## 3640  Heterosexual (straight)         Sometimes
## 3641  Heterosexual (straight)  Most of the time
## 3642           Gay or lesbian         Sometimes
## 3643           Gay or lesbian         Sometimes
## 3644                 Not sure            Always
## 3645  Heterosexual (straight)             Never
## 3646  Heterosexual (straight)            Rarely
## 3647  Heterosexual (straight)             Never
## 3648           Gay or lesbian         Sometimes
## 3649  Heterosexual (straight)         Sometimes
## 3650  Heterosexual (straight)            Rarely
## 3651  Heterosexual (straight)            Always
## 3652  Heterosexual (straight)              <NA>
## 3653  Heterosexual (straight)  Most of the time
## 3654  Heterosexual (straight)              <NA>
## 3655  Heterosexual (straight)             Never
## 3656  Heterosexual (straight)            Rarely
## 3657  Heterosexual (straight)             Never
## 3658  Heterosexual (straight)            Rarely
## 3659  Heterosexual (straight)            Rarely
## 3660  Heterosexual (straight)            Rarely
## 3661  Heterosexual (straight)         Sometimes
## 3662  Heterosexual (straight)         Sometimes
## 3663  Heterosexual (straight)             Never
## 3664  Heterosexual (straight)  Most of the time
## 3665  Heterosexual (straight)            Rarely
## 3666                 Bisexual  Most of the time
## 3667                 Bisexual         Sometimes
## 3668  Heterosexual (straight)            Rarely
## 3669  Heterosexual (straight)  Most of the time
## 3670  Heterosexual (straight)             Never
## 3671  Heterosexual (straight)         Sometimes
## 3672  Heterosexual (straight)         Sometimes
## 3673  Heterosexual (straight)             Never
## 3674  Heterosexual (straight)            Rarely
## 3675  Heterosexual (straight)            Rarely
## 3676  Heterosexual (straight)            Rarely
## 3677                 Bisexual            Always
## 3678  Heterosexual (straight)         Sometimes
## 3679  Heterosexual (straight)             Never
## 3680                 Not sure         Sometimes
## 3681                 Bisexual  Most of the time
## 3682  Heterosexual (straight)            Rarely
## 3683  Heterosexual (straight)             Never
## 3684  Heterosexual (straight)            Always
## 3685  Heterosexual (straight)         Sometimes
## 3686  Heterosexual (straight)  Most of the time
## 3687  Heterosexual (straight)  Most of the time
## 3688  Heterosexual (straight)         Sometimes
## 3689  Heterosexual (straight)             Never
## 3690  Heterosexual (straight)            Rarely
## 3691                 Bisexual         Sometimes
## 3692  Heterosexual (straight)         Sometimes
## 3693  Heterosexual (straight)  Most of the time
## 3694  Heterosexual (straight)            Rarely
## 3695  Heterosexual (straight)            Always
## 3696  Heterosexual (straight)            Rarely
## 3697  Heterosexual (straight)         Sometimes
## 3698  Heterosexual (straight)             Never
## 3699  Heterosexual (straight)             Never
## 3700  Heterosexual (straight)            Rarely
## 3701                 Bisexual            Rarely
## 3702  Heterosexual (straight)              <NA>
## 3703                 Not sure            Always
## 3704  Heterosexual (straight)             Never
## 3705           Gay or lesbian            Rarely
## 3706                 Bisexual  Most of the time
## 3707  Heterosexual (straight)            Always
## 3708  Heterosexual (straight)            Always
## 3709  Heterosexual (straight)            Rarely
## 3710  Heterosexual (straight)         Sometimes
## 3711           Gay or lesbian            Rarely
## 3712  Heterosexual (straight)            Rarely
## 3713  Heterosexual (straight)         Sometimes
## 3714  Heterosexual (straight)         Sometimes
## 3715  Heterosexual (straight)         Sometimes
## 3716  Heterosexual (straight)  Most of the time
## 3717  Heterosexual (straight)         Sometimes
## 3718  Heterosexual (straight)  Most of the time
## 3719  Heterosexual (straight)         Sometimes
## 3720                 Not sure         Sometimes
## 3721  Heterosexual (straight)            Rarely
## 3722  Heterosexual (straight)  Most of the time
## 3723  Heterosexual (straight)            Rarely
## 3724  Heterosexual (straight)         Sometimes
## 3725  Heterosexual (straight)  Most of the time
## 3726  Heterosexual (straight)             Never
## 3727           Some other way         Sometimes
## 3728  Heterosexual (straight)            Rarely
## 3729  Heterosexual (straight)            Rarely
## 3730  Heterosexual (straight)            Rarely
## 3731  Heterosexual (straight)            Rarely
## 3732  Heterosexual (straight)             Never
## 3733  Heterosexual (straight)            Always
## 3734  Heterosexual (straight)             Never
## 3735  Heterosexual (straight)  Most of the time
## 3736                 Bisexual  Most of the time
## 3737  Heterosexual (straight)         Sometimes
## 3738  Heterosexual (straight)             Never
## 3739  Heterosexual (straight)            Always
## 3740  Heterosexual (straight)             Never
## 3741  Heterosexual (straight)         Sometimes
## 3742  Heterosexual (straight)  Most of the time
## 3743                 Not sure            Rarely
## 3744  Heterosexual (straight)            Always
## 3745  Heterosexual (straight)         Sometimes
## 3746  Heterosexual (straight)            Rarely
## 3747  Heterosexual (straight)             Never
## 3748  Heterosexual (straight)  Most of the time
## 3749  Heterosexual (straight)             Never
## 3750  Heterosexual (straight)            Rarely
## 3751                 Bisexual  Most of the time
## 3752  Heterosexual (straight)            Always
## 3753           Some other way         Sometimes
## 3754  Heterosexual (straight)             Never
## 3755                 Bisexual  Most of the time
## 3756  Heterosexual (straight)              <NA>
## 3757  Heterosexual (straight)         Sometimes
## 3758  Heterosexual (straight)            Rarely
## 3759  Heterosexual (straight)            Rarely
## 3760  Heterosexual (straight)         Sometimes
## 3761  Heterosexual (straight)            Rarely
## 3762  Heterosexual (straight)         Sometimes
## 3763  Heterosexual (straight)  Most of the time
## 3764  Heterosexual (straight)            Rarely
## 3765                 Not sure         Sometimes
## 3766  Heterosexual (straight)  Most of the time
## 3767  Heterosexual (straight)         Sometimes
## 3768  Heterosexual (straight)            Rarely
## 3769  Heterosexual (straight)            Always
## 3770  Heterosexual (straight)            Always
## 3771  Heterosexual (straight)             Never
## 3772  Heterosexual (straight)         Sometimes
## 3773  Heterosexual (straight)  Most of the time
## 3774  Heterosexual (straight)            Rarely
## 3775  Heterosexual (straight)            Rarely
## 3776  Heterosexual (straight)             Never
## 3777           Gay or lesbian             Never
## 3778  Heterosexual (straight)         Sometimes
## 3779  Heterosexual (straight)             Never
## 3780  Heterosexual (straight)            Rarely
## 3781  Heterosexual (straight)  Most of the time
## 3782  Heterosexual (straight)            Rarely
## 3783  Heterosexual (straight)             Never
## 3784  Heterosexual (straight)             Never
## 3785  Heterosexual (straight)         Sometimes
## 3786  Heterosexual (straight)            Rarely
## 3787  Heterosexual (straight)             Never
## 3788  Heterosexual (straight)             Never
## 3789                 Not sure         Sometimes
## 3790  Heterosexual (straight)             Never
## 3791  Heterosexual (straight)         Sometimes
## 3792  Heterosexual (straight)             Never
## 3793  Heterosexual (straight)         Sometimes
## 3794  Heterosexual (straight)  Most of the time
## 3795  Heterosexual (straight)  Most of the time
## 3796  Heterosexual (straight)  Most of the time
## 3797  Heterosexual (straight)  Most of the time
## 3798  Heterosexual (straight)  Most of the time
## 3799  Heterosexual (straight)            Rarely
## 3800  Heterosexual (straight)              <NA>
## 3801  Heterosexual (straight)            Rarely
## 3802  Heterosexual (straight)             Never
## 3803  Heterosexual (straight)         Sometimes
## 3804  Heterosexual (straight)             Never
## 3805  Heterosexual (straight)            Rarely
## 3806  Heterosexual (straight)             Never
## 3807  Heterosexual (straight)  Most of the time
## 3808  Heterosexual (straight)            Rarely
## 3809  Heterosexual (straight)              <NA>
## 3810  Heterosexual (straight)            Rarely
## 3811  Heterosexual (straight)            Rarely
## 3812  Heterosexual (straight)            Rarely
## 3813  Heterosexual (straight)  Most of the time
## 3814  Heterosexual (straight)             Never
## 3815  Heterosexual (straight)            Rarely
## 3816  Heterosexual (straight)         Sometimes
## 3817  Heterosexual (straight)            Rarely
## 3818  Heterosexual (straight)         Sometimes
## 3819                 Bisexual            Rarely
## 3820  Heterosexual (straight)             Never
## 3821  Heterosexual (straight)            Rarely
## 3822  Heterosexual (straight)  Most of the time
## 3823  Heterosexual (straight)         Sometimes
## 3824           Gay or lesbian         Sometimes
## 3825  Heterosexual (straight)            Rarely
## 3826  Heterosexual (straight)            Always
## 3827  Heterosexual (straight)         Sometimes
## 3828  Heterosexual (straight)             Never
## 3829  Heterosexual (straight)  Most of the time
## 3830  Heterosexual (straight)         Sometimes
## 3831  Heterosexual (straight)              <NA>
## 3832  Heterosexual (straight)            Rarely
## 3833  Heterosexual (straight)            Always
## 3834  Heterosexual (straight)             Never
## 3835  Heterosexual (straight)            Rarely
## 3836  Heterosexual (straight)            Rarely
## 3837  Heterosexual (straight)  Most of the time
## 3838  Heterosexual (straight)         Sometimes
## 3839  Heterosexual (straight)            Rarely
## 3840  Heterosexual (straight)            Rarely
## 3841                 Bisexual            Rarely
## 3842  Heterosexual (straight)         Sometimes
## 3843  Heterosexual (straight)         Sometimes
## 3844  Heterosexual (straight)         Sometimes
## 3845  Heterosexual (straight)            Always
## 3846  Heterosexual (straight)            Rarely
## 3847  Heterosexual (straight)             Never
## 3848  Heterosexual (straight)             Never
## 3849  Heterosexual (straight)            Always
## 3850  Heterosexual (straight)            Always
## 3851  Heterosexual (straight)         Sometimes
## 3852  Heterosexual (straight)             Never
## 3853  Heterosexual (straight)            Rarely
## 3854  Heterosexual (straight)            Rarely
## 3855  Heterosexual (straight)            Rarely
## 3856  Heterosexual (straight)             Never
## 3857  Heterosexual (straight)            Always
## 3858  Heterosexual (straight)         Sometimes
## 3859  Heterosexual (straight)             Never
## 3860  Heterosexual (straight)             Never
## 3861  Heterosexual (straight)  Most of the time
## 3862  Heterosexual (straight)            Always
## 3863           Gay or lesbian         Sometimes
## 3864           Gay or lesbian  Most of the time
## 3865  Heterosexual (straight)         Sometimes
## 3866  Heterosexual (straight)              <NA>
## 3867  Heterosexual (straight)  Most of the time
## 3868  Heterosexual (straight)            Rarely
## 3869  Heterosexual (straight)            Rarely
## 3870                 Not sure             Never
## 3871  Heterosexual (straight)            Rarely
## 3872  Heterosexual (straight)         Sometimes
## 3873  Heterosexual (straight)             Never
## 3874                 Not sure         Sometimes
## 3875  Heterosexual (straight)         Sometimes
## 3876  Heterosexual (straight)            Rarely
## 3877  Heterosexual (straight)         Sometimes
## 3878  Heterosexual (straight)            Rarely
## 3879  Heterosexual (straight)            Rarely
## 3880  Heterosexual (straight)            Rarely
## 3881  Heterosexual (straight)             Never
## 3882  Heterosexual (straight)             Never
## 3883  Heterosexual (straight)         Sometimes
## 3884  Heterosexual (straight)             Never
## 3885  Heterosexual (straight)            Rarely
## 3886  Heterosexual (straight)            Rarely
## 3887           Some other way             Never
## 3888                 Bisexual  Most of the time
## 3889  Heterosexual (straight)            Rarely
## 3890  Heterosexual (straight)             Never
## 3891  Heterosexual (straight)            Rarely
## 3892  Heterosexual (straight)             Never
## 3893  Heterosexual (straight)             Never
## 3894                 Bisexual         Sometimes
## 3895  Heterosexual (straight)         Sometimes
## 3896  Heterosexual (straight)  Most of the time
## 3897  Heterosexual (straight)             Never
## 3898  Heterosexual (straight)            Rarely
## 3899  Heterosexual (straight)             Never
## 3900  Heterosexual (straight)         Sometimes
## 3901  Heterosexual (straight)            Rarely
## 3902  Heterosexual (straight)  Most of the time
## 3903  Heterosexual (straight)             Never
## 3904  Heterosexual (straight)            Rarely
## 3905  Heterosexual (straight)         Sometimes
## 3906  Heterosexual (straight)             Never
## 3907  Heterosexual (straight)            Rarely
## 3908  Heterosexual (straight)             Never
## 3909           Gay or lesbian  Most of the time
## 3910  Heterosexual (straight)            Rarely
## 3911  Heterosexual (straight)         Sometimes
## 3912  Heterosexual (straight)         Sometimes
## 3913  Heterosexual (straight)             Never
## 3914                 Bisexual         Sometimes
## 3915  Heterosexual (straight)            Rarely
## 3916  Heterosexual (straight)         Sometimes
## 3917  Heterosexual (straight)              <NA>
## 3918  Heterosexual (straight)         Sometimes
## 3919           Gay or lesbian         Sometimes
## 3920  Heterosexual (straight)         Sometimes
## 3921  Heterosexual (straight)         Sometimes
## 3922  Heterosexual (straight)         Sometimes
## 3923  Heterosexual (straight)            Rarely
## 3924  Heterosexual (straight)            Rarely
## 3925  Heterosexual (straight)             Never
## 3926  Heterosexual (straight)         Sometimes
## 3927  Heterosexual (straight)  Most of the time
## 3928  Heterosexual (straight)         Sometimes
## 3929  Heterosexual (straight)         Sometimes
## 3930  Heterosexual (straight)  Most of the time
## 3931  Heterosexual (straight)  Most of the time
## 3932           Some other way            Always
## 3933  Heterosexual (straight)             Never
## 3934  Heterosexual (straight)            Rarely
## 3935  Heterosexual (straight)            Rarely
## 3936  Heterosexual (straight)         Sometimes
## 3937  Heterosexual (straight)             Never
## 3938  Heterosexual (straight)         Sometimes
## 3939  Heterosexual (straight)            Rarely
## 3940  Heterosexual (straight)         Sometimes
## 3941  Heterosexual (straight)         Sometimes
## 3942  Heterosexual (straight)         Sometimes
## 3943  Heterosexual (straight)            Rarely
## 3944           Gay or lesbian            Always
## 3945  Heterosexual (straight)         Sometimes
## 3946  Heterosexual (straight)         Sometimes
## 3947  Heterosexual (straight)            Rarely
## 3948  Heterosexual (straight)             Never
## 3949  Heterosexual (straight)  Most of the time
## 3950           Gay or lesbian  Most of the time
## 3951  Heterosexual (straight)  Most of the time
## 3952  Heterosexual (straight)             Never
## 3953                 Bisexual            Always
## 3954  Heterosexual (straight)            Rarely
## 3955  Heterosexual (straight)         Sometimes
## 3956  Heterosexual (straight)             Never
## 3957  Heterosexual (straight)              <NA>
## 3958  Heterosexual (straight)             Never
## 3959  Heterosexual (straight)             Never
## 3960  Heterosexual (straight)             Never
## 3961  Heterosexual (straight)             Never
## 3962  Heterosexual (straight)            Rarely
## 3963  Heterosexual (straight)            Rarely
## 3964           Some other way  Most of the time
## 3965  Heterosexual (straight)            Rarely
## 3966  Heterosexual (straight)            Rarely
## 3967  Heterosexual (straight)         Sometimes
## 3968                 Bisexual            Always
## 3969  Heterosexual (straight)            Rarely
## 3970  Heterosexual (straight)            Always
## 3971  Heterosexual (straight)  Most of the time
## 3972  Heterosexual (straight)             Never
## 3973  Heterosexual (straight)         Sometimes
## 3974  Heterosexual (straight)             Never
## 3975  Heterosexual (straight)         Sometimes
## 3976  Heterosexual (straight)             Never
## 3977  Heterosexual (straight)         Sometimes
## 3978  Heterosexual (straight)             Never
## 3979  Heterosexual (straight)             Never
## 3980  Heterosexual (straight)  Most of the time
## 3981  Heterosexual (straight)         Sometimes
## 3982  Heterosexual (straight)         Sometimes
## 3983  Heterosexual (straight)             Never
## 3984  Heterosexual (straight)             Never
## 3985  Heterosexual (straight)             Never
## 3986  Heterosexual (straight)  Most of the time
## 3987  Heterosexual (straight)             Never
## 3988  Heterosexual (straight)            Always
## 3989  Heterosexual (straight)         Sometimes
## 3990  Heterosexual (straight)            Rarely
## 3991  Heterosexual (straight)             Never
## 3992  Heterosexual (straight)             Never
## 3993  Heterosexual (straight)         Sometimes
## 3994  Heterosexual (straight)         Sometimes
## 3995  Heterosexual (straight)            Rarely
## 3996  Heterosexual (straight)             Never
## 3997  Heterosexual (straight)            Rarely
## 3998  Heterosexual (straight)            Always
## 3999                 Not sure            Always
## 4000  Heterosexual (straight)            Rarely
## 4001  Heterosexual (straight)            Rarely
## 4002                 Not sure  Most of the time
## 4003  Heterosexual (straight)            Rarely
## 4004  Heterosexual (straight)            Rarely
## 4005  Heterosexual (straight)              <NA>
## 4006  Heterosexual (straight)             Never
## 4007  Heterosexual (straight)             Never
## 4008  Heterosexual (straight)             Never
## 4009  Heterosexual (straight)  Most of the time
## 4010  Heterosexual (straight)             Never
## 4011  Heterosexual (straight)            Rarely
## 4012  Heterosexual (straight)             Never
## 4013           Gay or lesbian             Never
## 4014  Heterosexual (straight)  Most of the time
## 4015  Heterosexual (straight)            Rarely
## 4016  Heterosexual (straight)         Sometimes
## 4017  Heterosexual (straight)            Rarely
## 4018           Gay or lesbian  Most of the time
## 4019  Heterosexual (straight)         Sometimes
## 4020  Heterosexual (straight)            Always
## 4021  Heterosexual (straight)            Rarely
## 4022  Heterosexual (straight)  Most of the time
## 4023  Heterosexual (straight)            Rarely
## 4024  Heterosexual (straight)            Rarely
## 4025  Heterosexual (straight)            Rarely
## 4026  Heterosexual (straight)            Rarely
## 4027  Heterosexual (straight)            Rarely
## 4028  Heterosexual (straight)         Sometimes
## 4029  Heterosexual (straight)            Rarely
## 4030  Heterosexual (straight)         Sometimes
## 4031           Gay or lesbian  Most of the time
## 4032  Heterosexual (straight)             Never
## 4033  Heterosexual (straight)         Sometimes
## 4034           Some other way            Always
## 4035  Heterosexual (straight)            Rarely
## 4036  Heterosexual (straight)  Most of the time
## 4037  Heterosexual (straight)            Rarely
## 4038           Some other way         Sometimes
## 4039  Heterosexual (straight)            Rarely
## 4040  Heterosexual (straight)         Sometimes
## 4041  Heterosexual (straight)            Rarely
## 4042  Heterosexual (straight)            Rarely
## 4043  Heterosexual (straight)             Never
## 4044  Heterosexual (straight)         Sometimes
## 4045  Heterosexual (straight)             Never
## 4046  Heterosexual (straight)  Most of the time
## 4047  Heterosexual (straight)            Rarely
## 4048           Gay or lesbian             Never
## 4049  Heterosexual (straight)  Most of the time
## 4050  Heterosexual (straight)             Never
## 4051  Heterosexual (straight)  Most of the time
## 4052  Heterosexual (straight)         Sometimes
## 4053  Heterosexual (straight)            Rarely
## 4054  Heterosexual (straight)             Never
## 4055  Heterosexual (straight)            Rarely
## 4056  Heterosexual (straight)            Rarely
## 4057                 Bisexual  Most of the time
## 4058  Heterosexual (straight)            Always
## 4059  Heterosexual (straight)         Sometimes
## 4060  Heterosexual (straight)             Never
## 4061  Heterosexual (straight)            Rarely
## 4062  Heterosexual (straight)            Rarely
## 4063  Heterosexual (straight)              <NA>
## 4064  Heterosexual (straight)             Never
## 4065  Heterosexual (straight)             Never
## 4066  Heterosexual (straight)            Rarely
## 4067  Heterosexual (straight)             Never
## 4068  Heterosexual (straight)            Rarely
## 4069  Heterosexual (straight)            Always
## 4070  Heterosexual (straight)            Always
## 4071  Heterosexual (straight)  Most of the time
## 4072  Heterosexual (straight)             Never
## 4073  Heterosexual (straight)            Rarely
## 4074  Heterosexual (straight)             Never
## 4075  Heterosexual (straight)         Sometimes
## 4076  Heterosexual (straight)  Most of the time
## 4077  Heterosexual (straight)            Rarely
## 4078  Heterosexual (straight)            Rarely
## 4079  Heterosexual (straight)            Rarely
## 4080  Heterosexual (straight)         Sometimes
## 4081  Heterosexual (straight)  Most of the time
## 4082  Heterosexual (straight)            Rarely
## 4083  Heterosexual (straight)              <NA>
## 4084  Heterosexual (straight)             Never
## 4085           Some other way  Most of the time
## 4086  Heterosexual (straight)  Most of the time
## 4087  Heterosexual (straight)  Most of the time
## 4088  Heterosexual (straight)             Never
## 4089  Heterosexual (straight)            Rarely
## 4090  Heterosexual (straight)  Most of the time
## 4091  Heterosexual (straight)         Sometimes
## 4092  Heterosexual (straight)  Most of the time
## 4093  Heterosexual (straight)            Rarely
## 4094  Heterosexual (straight)            Rarely
## 4095  Heterosexual (straight)            Rarely
## 4096  Heterosexual (straight)         Sometimes
## 4097  Heterosexual (straight)         Sometimes
## 4098  Heterosexual (straight)         Sometimes
## 4099  Heterosexual (straight)             Never
## 4100  Heterosexual (straight)            Rarely
## 4101  Heterosexual (straight)            Rarely
## 4102  Heterosexual (straight)         Sometimes
## 4103  Heterosexual (straight)            Rarely
## 4104  Heterosexual (straight)             Never
## 4105  Heterosexual (straight)            Rarely
## 4106  Heterosexual (straight)         Sometimes
## 4107  Heterosexual (straight)             Never
## 4108  Heterosexual (straight)            Rarely
## 4109  Heterosexual (straight)             Never
## 4110  Heterosexual (straight)         Sometimes
## 4111  Heterosexual (straight)            Rarely
## 4112  Heterosexual (straight)            Always
## 4113  Heterosexual (straight)  Most of the time
## 4114  Heterosexual (straight)              <NA>
## 4115  Heterosexual (straight)             Never
## 4116  Heterosexual (straight)             Never
## 4117  Heterosexual (straight)         Sometimes
## 4118                 Bisexual            Always
## 4119  Heterosexual (straight)            Rarely
## 4120  Heterosexual (straight)             Never
## 4121  Heterosexual (straight)         Sometimes
## 4122  Heterosexual (straight)             Never
## 4123  Heterosexual (straight)             Never
## 4124  Heterosexual (straight)             Never
## 4125  Heterosexual (straight)             Never
## 4126  Heterosexual (straight)         Sometimes
## 4127  Heterosexual (straight)             Never
## 4128  Heterosexual (straight)            Rarely
## 4129  Heterosexual (straight)            Rarely
## 4130  Heterosexual (straight)              <NA>
## 4131  Heterosexual (straight)             Never
## 4132  Heterosexual (straight)  Most of the time
## 4133  Heterosexual (straight)             Never
## 4134  Heterosexual (straight)             Never
## 4135  Heterosexual (straight)            Always
## 4136  Heterosexual (straight)             Never
## 4137  Heterosexual (straight)             Never
## 4138                 Bisexual  Most of the time
## 4139  Heterosexual (straight)         Sometimes
## 4140  Heterosexual (straight)            Rarely
## 4141  Heterosexual (straight)         Sometimes
## 4142                 Not sure            Always
## 4143           Some other way            Rarely
## 4144  Heterosexual (straight)             Never
## 4145  Heterosexual (straight)         Sometimes
## 4146  Heterosexual (straight)         Sometimes
## 4147  Heterosexual (straight)            Rarely
## 4148  Heterosexual (straight)         Sometimes
## 4149  Heterosexual (straight)         Sometimes
## 4150  Heterosexual (straight)         Sometimes
## 4151                 Not sure         Sometimes
## 4152  Heterosexual (straight)         Sometimes
## 4153  Heterosexual (straight)            Rarely
## 4154  Heterosexual (straight)         Sometimes
## 4155  Heterosexual (straight)            Rarely
## 4156  Heterosexual (straight)         Sometimes
## 4157  Heterosexual (straight)            Rarely
## 4158  Heterosexual (straight)  Most of the time
## 4159           Some other way  Most of the time
## 4160  Heterosexual (straight)         Sometimes
## 4161  Heterosexual (straight)            Always
## 4162  Heterosexual (straight)  Most of the time
## 4163  Heterosexual (straight)             Never
## 4164  Heterosexual (straight)  Most of the time
## 4165  Heterosexual (straight)         Sometimes
## 4166  Heterosexual (straight)  Most of the time
## 4167  Heterosexual (straight)             Never
## 4168  Heterosexual (straight)             Never
## 4169                 Bisexual              <NA>
## 4170  Heterosexual (straight)         Sometimes
## 4171  Heterosexual (straight)         Sometimes
## 4172  Heterosexual (straight)         Sometimes
## 4173  Heterosexual (straight)            Rarely
## 4174                 Bisexual         Sometimes
## 4175  Heterosexual (straight)             Never
## 4176  Heterosexual (straight)         Sometimes
## 4177  Heterosexual (straight)             Never
## 4178  Heterosexual (straight)         Sometimes
## 4179  Heterosexual (straight)            Rarely
## 4180  Heterosexual (straight)         Sometimes
## 4181  Heterosexual (straight)             Never
## 4182  Heterosexual (straight)         Sometimes
## 4183  Heterosexual (straight)  Most of the time
## 4184  Heterosexual (straight)         Sometimes
## 4185           Gay or lesbian  Most of the time
## 4186                 Bisexual  Most of the time
## 4187  Heterosexual (straight)            Rarely
## 4188  Heterosexual (straight)              <NA>
## 4189  Heterosexual (straight)              <NA>
## 4190  Heterosexual (straight)              <NA>
## 4191           Gay or lesbian              <NA>
## 4192  Heterosexual (straight)              <NA>
## 4193                 Not sure              <NA>
## 4194                 Bisexual              <NA>
## 4195  Heterosexual (straight)              <NA>
## 4196  Heterosexual (straight)              <NA>
## 4197  Heterosexual (straight)              <NA>
## 4198  Heterosexual (straight)              <NA>
## 4199  Heterosexual (straight)              <NA>
## 4200  Heterosexual (straight)              <NA>
## 4201  Heterosexual (straight)              <NA>
## 4202  Heterosexual (straight)              <NA>
## 4203  Heterosexual (straight)              <NA>
## 4204  Heterosexual (straight)              <NA>
## 4205  Heterosexual (straight)              <NA>
## 4206  Heterosexual (straight)              <NA>
## 4207  Heterosexual (straight)              <NA>
## 4208  Heterosexual (straight)              <NA>
## 4209  Heterosexual (straight)              <NA>
## 4210  Heterosexual (straight)              <NA>
## 4211  Heterosexual (straight)              <NA>
## 4212  Heterosexual (straight)              <NA>
## 4213  Heterosexual (straight)              <NA>
## 4214                 Not sure              <NA>
## 4215  Heterosexual (straight)              <NA>
## 4216  Heterosexual (straight)              <NA>
## 4217  Heterosexual (straight)              <NA>
## 4218  Heterosexual (straight)              <NA>
## 4219  Heterosexual (straight)              <NA>
## 4220  Heterosexual (straight)              <NA>
## 4221           Some other way              <NA>
## 4222  Heterosexual (straight)              <NA>
## 4223  Heterosexual (straight)              <NA>
## 4224  Heterosexual (straight)              <NA>
## 4225  Heterosexual (straight)              <NA>
## 4226  Heterosexual (straight)              <NA>
## 4227           Gay or lesbian              <NA>
## 4228  Heterosexual (straight)              <NA>
## 4229  Heterosexual (straight)              <NA>
## 4230  Heterosexual (straight)              <NA>
## 4231  Heterosexual (straight)              <NA>
## 4232                 Bisexual              <NA>
## 4233  Heterosexual (straight)              <NA>
## 4234  Heterosexual (straight)              <NA>
## 4235  Heterosexual (straight)              <NA>
## 4236  Heterosexual (straight)              <NA>
## 4237  Heterosexual (straight)              <NA>
## 4238  Heterosexual (straight)              <NA>
## 4239  Heterosexual (straight)              <NA>
## 4240  Heterosexual (straight)              <NA>
## 4241  Heterosexual (straight)              <NA>
## 4242  Heterosexual (straight)              <NA>
## 4243  Heterosexual (straight)              <NA>
## 4244  Heterosexual (straight)              <NA>
## 4245  Heterosexual (straight)              <NA>
## 4246  Heterosexual (straight)              <NA>
## 4247                 Not sure              <NA>
## 4248  Heterosexual (straight)              <NA>
## 4249  Heterosexual (straight)              <NA>
## 4250  Heterosexual (straight)              <NA>
## 4251           Gay or lesbian              <NA>
## 4252  Heterosexual (straight)              <NA>
## 4253  Heterosexual (straight)              <NA>
## 4254  Heterosexual (straight)              <NA>
## 4255  Heterosexual (straight)              <NA>
## 4256  Heterosexual (straight)              <NA>
## 4257           Gay or lesbian              <NA>
## 4258  Heterosexual (straight)              <NA>
## 4259  Heterosexual (straight)              <NA>
## 4260  Heterosexual (straight)              <NA>
## 4261  Heterosexual (straight)              <NA>
## 4262  Heterosexual (straight)              <NA>
## 4263  Heterosexual (straight)              <NA>
## 4264  Heterosexual (straight)              <NA>
## 4265  Heterosexual (straight)              <NA>
## 4266           Gay or lesbian              <NA>
## 4267  Heterosexual (straight)              <NA>
## 4268  Heterosexual (straight)              <NA>
## 4269           Some other way              <NA>
## 4270  Heterosexual (straight)              <NA>
## 4271  Heterosexual (straight)              <NA>
## 4272  Heterosexual (straight)              <NA>
## 4273  Heterosexual (straight)              <NA>
## 4274  Heterosexual (straight)              <NA>
## 4275  Heterosexual (straight)              <NA>
## 4276                 Bisexual              <NA>
## 4277  Heterosexual (straight)              <NA>
## 4278  Heterosexual (straight)              <NA>
## 4279  Heterosexual (straight)              <NA>
## 4280  Heterosexual (straight)              <NA>
## 4281  Heterosexual (straight)              <NA>
## 4282  Heterosexual (straight)              <NA>
## 4283  Heterosexual (straight)              <NA>
## 4284  Heterosexual (straight)              <NA>
## 4285  Heterosexual (straight)              <NA>
## 4286  Heterosexual (straight)              <NA>
## 4287  Heterosexual (straight)              <NA>
## 4288  Heterosexual (straight)              <NA>
## 4289  Heterosexual (straight)              <NA>
## 4290  Heterosexual (straight)              <NA>
## 4291  Heterosexual (straight)              <NA>
## 4292  Heterosexual (straight)              <NA>
## 4293  Heterosexual (straight)              <NA>
## 4294                 Bisexual              <NA>
## 4295  Heterosexual (straight)              <NA>
## 4296                 Bisexual              <NA>
## 4297  Heterosexual (straight)              <NA>
## 4298  Heterosexual (straight)              <NA>
## 4299  Heterosexual (straight)              <NA>
## 4300  Heterosexual (straight)              <NA>
## 4301  Heterosexual (straight)              <NA>
## 4302  Heterosexual (straight)              <NA>
## 4303  Heterosexual (straight)              <NA>
## 4304  Heterosexual (straight)              <NA>
## 4305  Heterosexual (straight)              <NA>
## 4306  Heterosexual (straight)              <NA>
## 4307  Heterosexual (straight)              <NA>
## 4308                 Bisexual              <NA>
## 4309  Heterosexual (straight)              <NA>
## 4310  Heterosexual (straight)              <NA>
## 4311  Heterosexual (straight)              <NA>
## 4312  Heterosexual (straight)              <NA>
## 4313                 Not sure              <NA>
## 4314  Heterosexual (straight)              <NA>
## 4315                 Bisexual              <NA>
## 4316  Heterosexual (straight)              <NA>
## 4317  Heterosexual (straight)              <NA>
## 4318  Heterosexual (straight)              <NA>
## 4319  Heterosexual (straight)              <NA>
## 4320  Heterosexual (straight)              <NA>
## 4321  Heterosexual (straight)              <NA>
## 4322           Some other way              <NA>
## 4323  Heterosexual (straight)              <NA>
## 4324  Heterosexual (straight)              <NA>
## 4325                 Not sure              <NA>
## 4326  Heterosexual (straight)              <NA>
## 4327  Heterosexual (straight)             Never
## 4328  Heterosexual (straight)             Never
## 4329  Heterosexual (straight)            Rarely
## 4330  Heterosexual (straight)            Rarely
## 4331  Heterosexual (straight)         Sometimes
## 4332           Gay or lesbian             Never
## 4333  Heterosexual (straight)            Rarely
## 4334           Gay or lesbian         Sometimes
## 4335  Heterosexual (straight)              <NA>
## 4336  Heterosexual (straight)         Sometimes
## 4337  Heterosexual (straight)         Sometimes
## 4338                 Bisexual            Rarely
## 4339  Heterosexual (straight)             Never
## 4340  Heterosexual (straight)             Never
## 4341           Gay or lesbian  Most of the time
## 4342  Heterosexual (straight)         Sometimes
## 4343                 Not sure             Never
## 4344  Heterosexual (straight)              <NA>
## 4345                 Bisexual             Never
## 4346                 Bisexual             Never
## 4347  Heterosexual (straight)         Sometimes
## 4348  Heterosexual (straight)             Never
## 4349  Heterosexual (straight)             Never
## 4350  Heterosexual (straight)  Most of the time
## 4351  Heterosexual (straight)             Never
## 4352  Heterosexual (straight)            Rarely
## 4353  Heterosexual (straight)            Always
## 4354  Heterosexual (straight)         Sometimes
## 4355  Heterosexual (straight)         Sometimes
## 4356  Heterosexual (straight)             Never
## 4357  Heterosexual (straight)         Sometimes
## 4358           Gay or lesbian              <NA>
## 4359  Heterosexual (straight)            Rarely
## 4360  Heterosexual (straight)             Never
## 4361  Heterosexual (straight)              <NA>
## 4362  Heterosexual (straight)             Never
## 4363           Some other way  Most of the time
## 4364                 Bisexual         Sometimes
## 4365  Heterosexual (straight)             Never
## 4366  Heterosexual (straight)            Rarely
## 4367           Some other way  Most of the time
## 4368  Heterosexual (straight)         Sometimes
## 4369  Heterosexual (straight)             Never
## 4370  Heterosexual (straight)         Sometimes
## 4371  Heterosexual (straight)         Sometimes
## 4372  Heterosexual (straight)         Sometimes
## 4373  Heterosexual (straight)         Sometimes
## 4374  Heterosexual (straight)            Rarely
## 4375  Heterosexual (straight)             Never
## 4376  Heterosexual (straight)            Rarely
## 4377  Heterosexual (straight)         Sometimes
## 4378           Some other way             Never
## 4379  Heterosexual (straight)            Rarely
## 4380  Heterosexual (straight)            Rarely
## 4381                 Bisexual         Sometimes
## 4382  Heterosexual (straight)         Sometimes
## 4383  Heterosexual (straight)         Sometimes
## 4384  Heterosexual (straight)         Sometimes
## 4385  Heterosexual (straight)             Never
## 4386  Heterosexual (straight)             Never
## 4387  Heterosexual (straight)             Never
## 4388  Heterosexual (straight)         Sometimes
## 4389  Heterosexual (straight)            Rarely
## 4390  Heterosexual (straight)         Sometimes
## 4391                 Bisexual         Sometimes
## 4392  Heterosexual (straight)            Rarely
## 4393  Heterosexual (straight)  Most of the time
## 4394                 Bisexual  Most of the time
## 4395  Heterosexual (straight)             Never
## 4396  Heterosexual (straight)            Rarely
## 4397  Heterosexual (straight)             Never
## 4398  Heterosexual (straight)             Never
## 4399  Heterosexual (straight)            Rarely
## 4400  Heterosexual (straight)             Never
## 4401  Heterosexual (straight)            Rarely
## 4402  Heterosexual (straight)            Rarely
## 4403  Heterosexual (straight)  Most of the time
## 4404  Heterosexual (straight)            Always
## 4405  Heterosexual (straight)              <NA>
## 4406                 Bisexual         Sometimes
## 4407                 Not sure            Rarely
## 4408  Heterosexual (straight)         Sometimes
## 4409  Heterosexual (straight)         Sometimes
## 4410           Gay or lesbian            Always
## 4411  Heterosexual (straight)             Never
## 4412  Heterosexual (straight)  Most of the time
## 4413  Heterosexual (straight)         Sometimes
## 4414  Heterosexual (straight)            Rarely
## 4415                 Not sure            Rarely
## 4416  Heterosexual (straight)            Rarely
## 4417  Heterosexual (straight)             Never
## 4418                 Not sure         Sometimes
## 4419  Heterosexual (straight)             Never
## 4420  Heterosexual (straight)  Most of the time
## 4421                 Bisexual  Most of the time
## 4422  Heterosexual (straight)            Rarely
## 4423  Heterosexual (straight)            Rarely
## 4424  Heterosexual (straight)  Most of the time
## 4425  Heterosexual (straight)            Rarely
## 4426                 Bisexual            Rarely
## 4427  Heterosexual (straight)             Never
## 4428  Heterosexual (straight)            Rarely
## 4429  Heterosexual (straight)              <NA>
## 4430           Gay or lesbian            Always
## 4431  Heterosexual (straight)            Rarely
## 4432  Heterosexual (straight)            Rarely
## 4433  Heterosexual (straight)  Most of the time
## 4434           Gay or lesbian         Sometimes
## 4435  Heterosexual (straight)         Sometimes
## 4436  Heterosexual (straight)            Always
## 4437  Heterosexual (straight)             Never
## 4438  Heterosexual (straight)         Sometimes
## 4439  Heterosexual (straight)            Always
## 4440  Heterosexual (straight)             Never
## 4441  Heterosexual (straight)             Never
## 4442  Heterosexual (straight)             Never
## 4443  Heterosexual (straight)            Rarely
## 4444  Heterosexual (straight)             Never
## 4445  Heterosexual (straight)            Rarely
## 4446  Heterosexual (straight)             Never
## 4447                 Bisexual  Most of the time
## 4448  Heterosexual (straight)  Most of the time
## 4449  Heterosexual (straight)         Sometimes
## 4450  Heterosexual (straight)            Rarely
## 4451  Heterosexual (straight)            Rarely
## 4452                 Bisexual         Sometimes
## 4453  Heterosexual (straight)            Rarely
## 4454                 Not sure            Rarely
## 4455                 Not sure  Most of the time
## 4456  Heterosexual (straight)  Most of the time
## 4457  Heterosexual (straight)            Rarely
## 4458           Some other way  Most of the time
## 4459  Heterosexual (straight)            Rarely
## 4460  Heterosexual (straight)         Sometimes
## 4461           Gay or lesbian  Most of the time
## 4462  Heterosexual (straight)            Rarely
## 4463  Heterosexual (straight)            Rarely
## 4464  Heterosexual (straight)             Never
## 4465  Heterosexual (straight)  Most of the time
## 4466  Heterosexual (straight)         Sometimes
## 4467  Heterosexual (straight)             Never
## 4468  Heterosexual (straight)         Sometimes
## 4469  Heterosexual (straight)              <NA>
## 4470  Heterosexual (straight)             Never
## 4471  Heterosexual (straight)             Never
## 4472  Heterosexual (straight)         Sometimes
## 4473  Heterosexual (straight)            Rarely
## 4474  Heterosexual (straight)            Rarely
## 4475  Heterosexual (straight)            Rarely
## 4476  Heterosexual (straight)         Sometimes
## 4477                 Bisexual         Sometimes
## 4478  Heterosexual (straight)            Rarely
## 4479  Heterosexual (straight)  Most of the time
## 4480  Heterosexual (straight)         Sometimes
## 4481  Heterosexual (straight)             Never
## 4482  Heterosexual (straight)  Most of the time
## 4483  Heterosexual (straight)             Never
## 4484  Heterosexual (straight)         Sometimes
## 4485  Heterosexual (straight)             Never
## 4486  Heterosexual (straight)         Sometimes
## 4487  Heterosexual (straight)         Sometimes
## 4488           Some other way         Sometimes
## 4489           Some other way         Sometimes
## 4490  Heterosexual (straight)             Never
## 4491  Heterosexual (straight)            Rarely
## 4492  Heterosexual (straight)            Always
## 4493  Heterosexual (straight)            Rarely
## 4494                 Not sure         Sometimes
## 4495                 Bisexual            Rarely
## 4496           Gay or lesbian         Sometimes
## 4497  Heterosexual (straight)  Most of the time
## 4498  Heterosexual (straight)             Never
## 4499  Heterosexual (straight)            Always
## 4500  Heterosexual (straight)              <NA>
## 4501  Heterosexual (straight)             Never
## 4502  Heterosexual (straight)             Never
## 4503           Gay or lesbian  Most of the time
## 4504                 Bisexual  Most of the time
## 4505  Heterosexual (straight)         Sometimes
## 4506  Heterosexual (straight)            Always
## 4507  Heterosexual (straight)            Rarely
## 4508  Heterosexual (straight)         Sometimes
## 4509  Heterosexual (straight)  Most of the time
## 4510  Heterosexual (straight)         Sometimes
## 4511  Heterosexual (straight)             Never
## 4512  Heterosexual (straight)         Sometimes
## 4513  Heterosexual (straight)             Never
## 4514  Heterosexual (straight)         Sometimes
## 4515  Heterosexual (straight)             Never
## 4516                 Bisexual            Always
## 4517  Heterosexual (straight)             Never
## 4518                 Bisexual            Always
## 4519  Heterosexual (straight)         Sometimes
## 4520  Heterosexual (straight)  Most of the time
## 4521  Heterosexual (straight)            Rarely
## 4522  Heterosexual (straight)  Most of the time
## 4523  Heterosexual (straight)            Rarely
## 4524  Heterosexual (straight)             Never
## 4525  Heterosexual (straight)             Never
## 4526  Heterosexual (straight)         Sometimes
## 4527  Heterosexual (straight)             Never
## 4528  Heterosexual (straight)            Rarely
## 4529  Heterosexual (straight)            Rarely
## 4530  Heterosexual (straight)             Never
## 4531  Heterosexual (straight)            Always
## 4532  Heterosexual (straight)         Sometimes
## 4533  Heterosexual (straight)         Sometimes
## 4534  Heterosexual (straight)  Most of the time
## 4535  Heterosexual (straight)             Never
## 4536  Heterosexual (straight)  Most of the time
## 4537  Heterosexual (straight)            Rarely
## 4538  Heterosexual (straight)            Rarely
## 4539  Heterosexual (straight)            Rarely
## 4540  Heterosexual (straight)         Sometimes
## 4541  Heterosexual (straight)         Sometimes
## 4542                 Bisexual            Always
## 4543  Heterosexual (straight)            Always
## 4544  Heterosexual (straight)             Never
## 4545  Heterosexual (straight)         Sometimes
## 4546  Heterosexual (straight)            Rarely
## 4547                 Not sure         Sometimes
## 4548  Heterosexual (straight)            Rarely
## 4549  Heterosexual (straight)             Never
## 4550  Heterosexual (straight)            Rarely
## 4551  Heterosexual (straight)            Rarely
## 4552  Heterosexual (straight)  Most of the time
## 4553  Heterosexual (straight)            Always
## 4554  Heterosexual (straight)         Sometimes
## 4555  Heterosexual (straight)            Rarely
## 4556  Heterosexual (straight)  Most of the time
## 4557  Heterosexual (straight)            Always
## 4558  Heterosexual (straight)            Rarely
## 4559  Heterosexual (straight)         Sometimes
## 4560  Heterosexual (straight)             Never
## 4561  Heterosexual (straight)             Never
## 4562  Heterosexual (straight)            Rarely
## 4563  Heterosexual (straight)         Sometimes
## 4564  Heterosexual (straight)             Never
## 4565  Heterosexual (straight)            Rarely
## 4566  Heterosexual (straight)             Never
## 4567  Heterosexual (straight)             Never
## 4568  Heterosexual (straight)         Sometimes
## 4569  Heterosexual (straight)         Sometimes
## 4570  Heterosexual (straight)             Never
## 4571  Heterosexual (straight)         Sometimes
## 4572  Heterosexual (straight)         Sometimes
## 4573  Heterosexual (straight)            Rarely
## 4574  Heterosexual (straight)             Never
## 4575  Heterosexual (straight)             Never
## 4576  Heterosexual (straight)  Most of the time
## 4577  Heterosexual (straight)            Rarely
## 4578           Some other way  Most of the time
## 4579  Heterosexual (straight)            Rarely
## 4580  Heterosexual (straight)            Rarely
## 4581  Heterosexual (straight)             Never
## 4582  Heterosexual (straight)         Sometimes
## 4583           Some other way  Most of the time
## 4584  Heterosexual (straight)         Sometimes
## 4585  Heterosexual (straight)            Rarely
## 4586  Heterosexual (straight)            Rarely
## 4587  Heterosexual (straight)         Sometimes
## 4588  Heterosexual (straight)            Rarely
## 4589  Heterosexual (straight)            Rarely
## 4590  Heterosexual (straight)         Sometimes
## 4591  Heterosexual (straight)             Never
## 4592  Heterosexual (straight)  Most of the time
## 4593  Heterosexual (straight)             Never
## 4594  Heterosexual (straight)            Rarely
## 4595  Heterosexual (straight)            Always
## 4596  Heterosexual (straight)             Never
## 4597  Heterosexual (straight)              <NA>
## 4598  Heterosexual (straight)              <NA>
## 4599  Heterosexual (straight)              <NA>
## 4600  Heterosexual (straight)         Sometimes
## 4601  Heterosexual (straight)         Sometimes
## 4602  Heterosexual (straight)             Never
## 4603  Heterosexual (straight)             Never
## 4604  Heterosexual (straight)             Never
## 4605  Heterosexual (straight)              <NA>
## 4606  Heterosexual (straight)            Rarely
## 4607  Heterosexual (straight)         Sometimes
## 4608  Heterosexual (straight)         Sometimes
## 4609  Heterosexual (straight)            Rarely
## 4610  Heterosexual (straight)  Most of the time
## 4611  Heterosexual (straight)             Never
## 4612  Heterosexual (straight)            Rarely
## 4613  Heterosexual (straight)         Sometimes
## 4614  Heterosexual (straight)  Most of the time
## 4615  Heterosexual (straight)  Most of the time
## 4616  Heterosexual (straight)         Sometimes
## 4617  Heterosexual (straight)            Rarely
## 4618  Heterosexual (straight)            Rarely
## 4619  Heterosexual (straight)            Rarely
## 4620  Heterosexual (straight)         Sometimes
## 4621  Heterosexual (straight)            Rarely
## 4622  Heterosexual (straight)         Sometimes
## 4623                 Bisexual            Rarely
## 4624  Heterosexual (straight)         Sometimes
## 4625  Heterosexual (straight)            Rarely
## 4626  Heterosexual (straight)            Rarely
## 4627           Some other way  Most of the time
## 4628  Heterosexual (straight)         Sometimes
## 4629  Heterosexual (straight)            Rarely
## 4630  Heterosexual (straight)         Sometimes
## 4631                 Not sure  Most of the time
## 4632                 Not sure  Most of the time
## 4633  Heterosexual (straight)             Never
## 4634  Heterosexual (straight)         Sometimes
## 4635           Gay or lesbian         Sometimes
## 4636  Heterosexual (straight)  Most of the time
## 4637  Heterosexual (straight)             Never
## 4638                 Bisexual            Always
## 4639  Heterosexual (straight)            Rarely
## 4640  Heterosexual (straight)            Rarely
## 4641  Heterosexual (straight)             Never
## 4642  Heterosexual (straight)         Sometimes
## 4643  Heterosexual (straight)  Most of the time
## 4644           Gay or lesbian         Sometimes
## 4645  Heterosexual (straight)  Most of the time
## 4646                 Not sure  Most of the time
## 4647  Heterosexual (straight)  Most of the time
## 4648  Heterosexual (straight)            Rarely
## 4649  Heterosexual (straight)            Rarely
## 4650  Heterosexual (straight)            Rarely
## 4651  Heterosexual (straight)            Rarely
## 4652  Heterosexual (straight)            Always
## 4653  Heterosexual (straight)            Rarely
## 4654  Heterosexual (straight)         Sometimes
## 4655  Heterosexual (straight)         Sometimes
## 4656                 Bisexual  Most of the time
## 4657  Heterosexual (straight)             Never
## 4658  Heterosexual (straight)  Most of the time
## 4659                 Not sure         Sometimes
## 4660  Heterosexual (straight)             Never
## 4661  Heterosexual (straight)             Never
## 4662  Heterosexual (straight)            Rarely
## 4663  Heterosexual (straight)            Rarely
## 4664  Heterosexual (straight)         Sometimes
## 4665  Heterosexual (straight)         Sometimes
## 4666           Gay or lesbian  Most of the time
## 4667  Heterosexual (straight)  Most of the time
## 4668  Heterosexual (straight)  Most of the time
## 4669  Heterosexual (straight)             Never
## 4670  Heterosexual (straight)         Sometimes
## 4671  Heterosexual (straight)         Sometimes
## 4672                 Bisexual             Never
## 4673  Heterosexual (straight)             Never
## 4674  Heterosexual (straight)  Most of the time
## 4675  Heterosexual (straight)  Most of the time
## 4676  Heterosexual (straight)         Sometimes
## 4677  Heterosexual (straight)            Rarely
## 4678  Heterosexual (straight)         Sometimes
## 4679           Gay or lesbian             Never
## 4680           Some other way  Most of the time
## 4681  Heterosexual (straight)            Rarely
## 4682  Heterosexual (straight)            Rarely
## 4683  Heterosexual (straight)         Sometimes
## 4684  Heterosexual (straight)         Sometimes
## 4685  Heterosexual (straight)         Sometimes
## 4686  Heterosexual (straight)            Rarely
## 4687           Some other way            Rarely
## 4688                 Bisexual  Most of the time
## 4689  Heterosexual (straight)             Never
## 4690  Heterosexual (straight)             Never
## 4691  Heterosexual (straight)            Rarely
## 4692  Heterosexual (straight)            Rarely
## 4693           Some other way            Rarely
## 4694  Heterosexual (straight)             Never
## 4695  Heterosexual (straight)         Sometimes
## 4696  Heterosexual (straight)         Sometimes
## 4697  Heterosexual (straight)            Rarely
## 4698           Some other way         Sometimes
## 4699  Heterosexual (straight)            Rarely
## 4700  Heterosexual (straight)             Never
## 4701  Heterosexual (straight)             Never
## 4702                 Not sure            Rarely
## 4703  Heterosexual (straight)  Most of the time
## 4704  Heterosexual (straight)            Rarely
## 4705                 Not sure  Most of the time
## 4706  Heterosexual (straight)             Never
## 4707  Heterosexual (straight)         Sometimes
## 4708  Heterosexual (straight)            Always
## 4709                 Bisexual            Always
## 4710  Heterosexual (straight)            Rarely
## 4711  Heterosexual (straight)         Sometimes
## 4712  Heterosexual (straight)            Rarely
## 4713  Heterosexual (straight)         Sometimes
## 4714  Heterosexual (straight)             Never
## 4715  Heterosexual (straight)              <NA>
## 4716  Heterosexual (straight)              <NA>
## 4717  Heterosexual (straight)            Rarely
## 4718  Heterosexual (straight)            Rarely
## 4719  Heterosexual (straight)             Never
## 4720  Heterosexual (straight)            Rarely
## 4721  Heterosexual (straight)  Most of the time
## 4722                 Bisexual         Sometimes
## 4723  Heterosexual (straight)            Always
## 4724  Heterosexual (straight)  Most of the time
## 4725  Heterosexual (straight)            Always
## 4726                 Bisexual         Sometimes
## 4727           Some other way  Most of the time
## 4728  Heterosexual (straight)            Rarely
## 4729                 Bisexual            Rarely
## 4730  Heterosexual (straight)  Most of the time
## 4731  Heterosexual (straight)            Rarely
## 4732  Heterosexual (straight)             Never
## 4733  Heterosexual (straight)              <NA>
## 4734  Heterosexual (straight)  Most of the time
## 4735  Heterosexual (straight)  Most of the time
## 4736  Heterosexual (straight)              <NA>
## 4737  Heterosexual (straight)         Sometimes
## 4738  Heterosexual (straight)              <NA>
## 4739  Heterosexual (straight)         Sometimes
## 4740  Heterosexual (straight)            Rarely
## 4741  Heterosexual (straight)            Rarely
## 4742           Gay or lesbian              <NA>
## 4743  Heterosexual (straight)         Sometimes
## 4744  Heterosexual (straight)             Never
## 4745  Heterosexual (straight)  Most of the time
## 4746  Heterosexual (straight)              <NA>
## 4747  Heterosexual (straight)            Rarely
## 4748  Heterosexual (straight)              <NA>
## 4749  Heterosexual (straight)         Sometimes
## 4750  Heterosexual (straight)         Sometimes
## 4751  Heterosexual (straight)            Rarely
## 4752  Heterosexual (straight)            Always
## 4753  Heterosexual (straight)            Rarely
## 4754  Heterosexual (straight)         Sometimes
## 4755  Heterosexual (straight)             Never
## 4756  Heterosexual (straight)            Rarely
## 4757                 Bisexual            Rarely
## 4758  Heterosexual (straight)            Rarely
## 4759  Heterosexual (straight)             Never
## 4760  Heterosexual (straight)  Most of the time
## 4761  Heterosexual (straight)            Rarely
## 4762  Heterosexual (straight)             Never
## 4763  Heterosexual (straight)              <NA>
## 4764  Heterosexual (straight)         Sometimes
## 4765  Heterosexual (straight)  Most of the time
## 4766  Heterosexual (straight)            Rarely
## 4767  Heterosexual (straight)             Never
## 4768  Heterosexual (straight)         Sometimes
## 4769  Heterosexual (straight)             Never
## 4770  Heterosexual (straight)         Sometimes
## 4771  Heterosexual (straight)            Always
## 4772  Heterosexual (straight)  Most of the time
## 4773  Heterosexual (straight)             Never
## 4774  Heterosexual (straight)             Never
## 4775  Heterosexual (straight)         Sometimes
## 4776  Heterosexual (straight)            Rarely
## 4777  Heterosexual (straight)             Never
## 4778  Heterosexual (straight)  Most of the time
## 4779  Heterosexual (straight)             Never
## 4780  Heterosexual (straight)         Sometimes
## 4781                 Bisexual  Most of the time
## 4782  Heterosexual (straight)             Never
## 4783  Heterosexual (straight)            Rarely
## 4784  Heterosexual (straight)            Rarely
## 4785  Heterosexual (straight)         Sometimes
## 4786           Some other way         Sometimes
## 4787  Heterosexual (straight)             Never
## 4788                 Not sure             Never
## 4789  Heterosexual (straight)            Always
## 4790  Heterosexual (straight)            Rarely
## 4791  Heterosexual (straight)            Rarely
## 4792  Heterosexual (straight)         Sometimes
## 4793  Heterosexual (straight)  Most of the time
## 4794  Heterosexual (straight)            Rarely
## 4795  Heterosexual (straight)         Sometimes
## 4796  Heterosexual (straight)            Rarely
## 4797  Heterosexual (straight)             Never
## 4798  Heterosexual (straight)            Rarely
## 4799  Heterosexual (straight)            Rarely
## 4800  Heterosexual (straight)         Sometimes
## 4801  Heterosexual (straight)            Rarely
## 4802  Heterosexual (straight)  Most of the time
## 4803  Heterosexual (straight)             Never
## 4804  Heterosexual (straight)             Never
## 4805           Some other way  Most of the time
## 4806  Heterosexual (straight)            Rarely
## 4807                 Bisexual         Sometimes
## 4808  Heterosexual (straight)            Rarely
## 4809  Heterosexual (straight)            Rarely
## 4810  Heterosexual (straight)         Sometimes
## 4811  Heterosexual (straight)         Sometimes
## 4812  Heterosexual (straight)            Always
## 4813  Heterosexual (straight)         Sometimes
## 4814                 Bisexual  Most of the time
## 4815  Heterosexual (straight)  Most of the time
## 4816  Heterosexual (straight)         Sometimes
## 4817  Heterosexual (straight)         Sometimes
## 4818           Some other way  Most of the time
## 4819  Heterosexual (straight)         Sometimes
## 4820  Heterosexual (straight)            Rarely
## 4821  Heterosexual (straight)            Rarely
## 4822  Heterosexual (straight)            Rarely
## 4823  Heterosexual (straight)            Rarely
## 4824  Heterosexual (straight)            Always
## 4825  Heterosexual (straight)             Never
## 4826  Heterosexual (straight)             Never
## 4827  Heterosexual (straight)            Rarely
## 4828  Heterosexual (straight)            Rarely
## 4829  Heterosexual (straight)         Sometimes
## 4830  Heterosexual (straight)  Most of the time
## 4831  Heterosexual (straight)             Never
## 4832  Heterosexual (straight)  Most of the time
## 4833                 Bisexual  Most of the time
## 4834  Heterosexual (straight)         Sometimes
## 4835  Heterosexual (straight)              <NA>
## 4836  Heterosexual (straight)         Sometimes
## 4837  Heterosexual (straight)             Never
## 4838  Heterosexual (straight)             Never
## 4839  Heterosexual (straight)            Rarely
## 4840  Heterosexual (straight)            Rarely
## 4841  Heterosexual (straight)            Rarely
## 4842  Heterosexual (straight)  Most of the time
## 4843  Heterosexual (straight)            Rarely
## 4844  Heterosexual (straight)             Never
## 4845  Heterosexual (straight)             Never
## 4846  Heterosexual (straight)  Most of the time
## 4847  Heterosexual (straight)            Rarely
## 4848                 Not sure            Always
## 4849  Heterosexual (straight)            Rarely
## 4850  Heterosexual (straight)            Always
## 4851  Heterosexual (straight)             Never
## 4852           Some other way            Rarely
## 4853                 Bisexual         Sometimes
## 4854  Heterosexual (straight)         Sometimes
## 4855  Heterosexual (straight)            Rarely
## 4856  Heterosexual (straight)         Sometimes
## 4857           Gay or lesbian  Most of the time
## 4858  Heterosexual (straight)            Rarely
## 4859  Heterosexual (straight)            Rarely
## 4860  Heterosexual (straight)  Most of the time
## 4861  Heterosexual (straight)  Most of the time
## 4862  Heterosexual (straight)             Never
## 4863  Heterosexual (straight)  Most of the time
## 4864  Heterosexual (straight)             Never
## 4865                 Bisexual  Most of the time
## 4866  Heterosexual (straight)         Sometimes
## 4867  Heterosexual (straight)            Rarely
## 4868                 Bisexual  Most of the time
## 4869  Heterosexual (straight)            Rarely
## 4870  Heterosexual (straight)         Sometimes
## 4871                 Not sure         Sometimes
## 4872  Heterosexual (straight)             Never
## 4873  Heterosexual (straight)            Rarely
## 4874  Heterosexual (straight)             Never
## 4875  Heterosexual (straight)              <NA>
## 4876  Heterosexual (straight)            Always
## 4877                 Bisexual            Always
## 4878  Heterosexual (straight)  Most of the time
## 4879  Heterosexual (straight)         Sometimes
## 4880  Heterosexual (straight)             Never
## 4881  Heterosexual (straight)  Most of the time
## 4882                 Bisexual            Always
## 4883  Heterosexual (straight)         Sometimes
## 4884  Heterosexual (straight)            Rarely
## 4885  Heterosexual (straight)             Never
## 4886  Heterosexual (straight)         Sometimes
## 4887  Heterosexual (straight)  Most of the time
## 4888  Heterosexual (straight)         Sometimes
## 4889  Heterosexual (straight)         Sometimes
## 4890           Gay or lesbian         Sometimes
## 4891  Heterosexual (straight)         Sometimes
## 4892  Heterosexual (straight)  Most of the time
## 4893  Heterosexual (straight)  Most of the time
## 4894  Heterosexual (straight)            Rarely
## 4895                 Bisexual            Rarely
## 4896  Heterosexual (straight)            Rarely
## 4897  Heterosexual (straight)         Sometimes
## 4898  Heterosexual (straight)            Rarely
## 4899  Heterosexual (straight)  Most of the time
## 4900  Heterosexual (straight)            Always
## 4901  Heterosexual (straight)         Sometimes
## 4902  Heterosexual (straight)            Rarely
## 4903  Heterosexual (straight)  Most of the time
## 4904                 Bisexual  Most of the time
## 4905                 Bisexual  Most of the time
## 4906  Heterosexual (straight)            Rarely
## 4907  Heterosexual (straight)  Most of the time
## 4908  Heterosexual (straight)            Rarely
## 4909  Heterosexual (straight)             Never
## 4910                 Bisexual         Sometimes
## 4911  Heterosexual (straight)            Rarely
## 4912  Heterosexual (straight)         Sometimes
## 4913  Heterosexual (straight)         Sometimes
## 4914  Heterosexual (straight)             Never
## 4915  Heterosexual (straight)         Sometimes
## 4916  Heterosexual (straight)            Rarely
## 4917  Heterosexual (straight)            Rarely
## 4918  Heterosexual (straight)  Most of the time
## 4919  Heterosexual (straight)            Always
## 4920  Heterosexual (straight)             Never
## 4921                 Not sure            Rarely
## 4922  Heterosexual (straight)            Rarely
## 4923  Heterosexual (straight)            Rarely
## 4924  Heterosexual (straight)             Never
## 4925  Heterosexual (straight)             Never
## 4926                 Bisexual            Always
## 4927           Gay or lesbian         Sometimes
## 4928  Heterosexual (straight)  Most of the time
## 4929                 Bisexual  Most of the time
## 4930                 Bisexual  Most of the time
## 4931  Heterosexual (straight)  Most of the time
## 4932                 Not sure            Always
## 4933  Heterosexual (straight)         Sometimes
## 4934                 Bisexual            Rarely
## 4935  Heterosexual (straight)            Rarely
## 4936  Heterosexual (straight)            Rarely
## 4937  Heterosexual (straight)            Rarely
## 4938  Heterosexual (straight)            Rarely
## 4939                 Not sure  Most of the time
## 4940  Heterosexual (straight)            Rarely
## 4941  Heterosexual (straight)  Most of the time
## 4942  Heterosexual (straight)         Sometimes
## 4943                 Bisexual            Rarely
## 4944  Heterosexual (straight)  Most of the time
## 4945  Heterosexual (straight)  Most of the time
## 4946  Heterosexual (straight)             Never
## 4947  Heterosexual (straight)            Rarely
## 4948  Heterosexual (straight)            Rarely
## 4949  Heterosexual (straight)         Sometimes
## 4950  Heterosexual (straight)             Never
## 4951  Heterosexual (straight)         Sometimes
## 4952  Heterosexual (straight)         Sometimes
## 4953                 Bisexual         Sometimes
## 4954  Heterosexual (straight)         Sometimes
## 4955  Heterosexual (straight)             Never
## 4956                 Not sure            Rarely
## 4957  Heterosexual (straight)         Sometimes
## 4958  Heterosexual (straight)  Most of the time
## 4959  Heterosexual (straight)         Sometimes
## 4960  Heterosexual (straight)         Sometimes
## 4961  Heterosexual (straight)            Rarely
## 4962  Heterosexual (straight)            Rarely
## 4963  Heterosexual (straight)  Most of the time
## 4964  Heterosexual (straight)         Sometimes
## 4965  Heterosexual (straight)  Most of the time
## 4966  Heterosexual (straight)  Most of the time
## 4967                 Not sure         Sometimes
## 4968  Heterosexual (straight)            Rarely
## 4969  Heterosexual (straight)         Sometimes
## 4970  Heterosexual (straight)             Never
## 4971  Heterosexual (straight)             Never
## 4972  Heterosexual (straight)            Rarely
## 4973                 Bisexual  Most of the time
## 4974  Heterosexual (straight)             Never
## 4975  Heterosexual (straight)            Rarely
## 4976  Heterosexual (straight)         Sometimes
## 4977  Heterosexual (straight)             Never
## 4978  Heterosexual (straight)             Never
## 4979                 Not sure            Always
## 4980                 Not sure         Sometimes
## 4981  Heterosexual (straight)            Rarely
## 4982                 Bisexual  Most of the time
## 4983           Some other way         Sometimes
## 4984  Heterosexual (straight)  Most of the time
## 4985  Heterosexual (straight)            Rarely
## 4986  Heterosexual (straight)  Most of the time
## 4987  Heterosexual (straight)            Rarely
## 4988  Heterosexual (straight)         Sometimes
## 4989                 Not sure         Sometimes
## 4990  Heterosexual (straight)         Sometimes
## 4991  Heterosexual (straight)             Never
## 4992  Heterosexual (straight)            Rarely
## 4993  Heterosexual (straight)             Never
## 4994  Heterosexual (straight)            Rarely
## 4995  Heterosexual (straight)         Sometimes
## 4996  Heterosexual (straight)             Never
## 4997  Heterosexual (straight)            Rarely
## 4998                 Bisexual  Most of the time
## 4999  Heterosexual (straight)  Most of the time
## 5000  Heterosexual (straight)            Rarely
## 5001  Heterosexual (straight)         Sometimes
## 5002  Heterosexual (straight)            Rarely
## 5003  Heterosexual (straight)         Sometimes
## 5004  Heterosexual (straight)         Sometimes
## 5005  Heterosexual (straight)            Always
## 5006  Heterosexual (straight)  Most of the time
## 5007           Some other way  Most of the time
## 5008  Heterosexual (straight)            Rarely
## 5009  Heterosexual (straight)         Sometimes
## 5010  Heterosexual (straight)  Most of the time
## 5011  Heterosexual (straight)            Rarely
## 5012  Heterosexual (straight)         Sometimes
## 5013  Heterosexual (straight)  Most of the time
## 5014  Heterosexual (straight)             Never
## 5015  Heterosexual (straight)             Never
## 5016                 Not sure  Most of the time
## 5017                 Bisexual  Most of the time
## 5018  Heterosexual (straight)            Rarely
## 5019  Heterosexual (straight)         Sometimes
## 5020                 Not sure  Most of the time
## 5021  Heterosexual (straight)             Never
## 5022  Heterosexual (straight)             Never
## 5023  Heterosexual (straight)  Most of the time
## 5024  Heterosexual (straight)  Most of the time
## 5025                 Bisexual         Sometimes
## 5026  Heterosexual (straight)            Rarely
## 5027  Heterosexual (straight)  Most of the time
## 5028  Heterosexual (straight)             Never
## 5029  Heterosexual (straight)              <NA>
## 5030           Gay or lesbian         Sometimes
## 5031  Heterosexual (straight)            Rarely
## 5032  Heterosexual (straight)         Sometimes
## 5033  Heterosexual (straight)  Most of the time
## 5034  Heterosexual (straight)            Rarely
## 5035  Heterosexual (straight)            Rarely
## 5036  Heterosexual (straight)            Rarely
## 5037  Heterosexual (straight)         Sometimes
## 5038  Heterosexual (straight)             Never
## 5039  Heterosexual (straight)             Never
## 5040  Heterosexual (straight)             Never
## 5041                 Bisexual            Rarely
## 5042  Heterosexual (straight)             Never
## 5043  Heterosexual (straight)         Sometimes
## 5044  Heterosexual (straight)            Rarely
## 5045  Heterosexual (straight)         Sometimes
## 5046  Heterosexual (straight)             Never
## 5047  Heterosexual (straight)  Most of the time
## 5048                 Bisexual         Sometimes
## 5049  Heterosexual (straight)  Most of the time
## 5050  Heterosexual (straight)  Most of the time
## 5051  Heterosexual (straight)  Most of the time
## 5052  Heterosexual (straight)            Rarely
## 5053  Heterosexual (straight)            Rarely
## 5054  Heterosexual (straight)  Most of the time
## 5055  Heterosexual (straight)             Never
## 5056  Heterosexual (straight)            Rarely
## 5057           Gay or lesbian         Sometimes
## 5058  Heterosexual (straight)         Sometimes
## 5059  Heterosexual (straight)         Sometimes
## 5060           Some other way            Rarely
## 5061  Heterosexual (straight)             Never
## 5062  Heterosexual (straight)         Sometimes
## 5063  Heterosexual (straight)         Sometimes
## 5064  Heterosexual (straight)            Rarely
## 5065  Heterosexual (straight)         Sometimes
## 5066  Heterosexual (straight)         Sometimes
## 5067  Heterosexual (straight)            Rarely
## 5068  Heterosexual (straight)             Never
## 5069  Heterosexual (straight)            Rarely
## 5070  Heterosexual (straight)             Never
## 5071  Heterosexual (straight)            Rarely
## 5072  Heterosexual (straight)             Never
## 5073  Heterosexual (straight)            Rarely
## 5074  Heterosexual (straight)              <NA>
## 5075           Gay or lesbian         Sometimes
## 5076  Heterosexual (straight)            Rarely
## 5077  Heterosexual (straight)         Sometimes
## 5078  Heterosexual (straight)             Never
## 5079  Heterosexual (straight)  Most of the time
## 5080  Heterosexual (straight)              <NA>
## 5081  Heterosexual (straight)            Rarely
## 5082  Heterosexual (straight)            Rarely
## 5083           Gay or lesbian         Sometimes
## 5084  Heterosexual (straight)            Rarely
## 5085  Heterosexual (straight)         Sometimes
## 5086  Heterosexual (straight)             Never
## 5087  Heterosexual (straight)             Never
## 5088  Heterosexual (straight)  Most of the time
## 5089  Heterosexual (straight)             Never
## 5090  Heterosexual (straight)             Never
## 5091  Heterosexual (straight)             Never
## 5092  Heterosexual (straight)  Most of the time
## 5093  Heterosexual (straight)            Rarely
## 5094  Heterosexual (straight)         Sometimes
## 5095  Heterosexual (straight)              <NA>
## 5096  Heterosexual (straight)         Sometimes
## 5097                 Not sure         Sometimes
## 5098  Heterosexual (straight)         Sometimes
## 5099  Heterosexual (straight)            Rarely
## 5100  Heterosexual (straight)            Rarely
## 5101  Heterosexual (straight)             Never
## 5102  Heterosexual (straight)         Sometimes
## 5103  Heterosexual (straight)         Sometimes
## 5104  Heterosexual (straight)            Rarely
## 5105  Heterosexual (straight)            Rarely
## 5106  Heterosexual (straight)  Most of the time
## 5107  Heterosexual (straight)            Rarely
## 5108  Heterosexual (straight)             Never
## 5109  Heterosexual (straight)         Sometimes
## 5110  Heterosexual (straight)            Rarely
## 5111                 Bisexual            Always
## 5112  Heterosexual (straight)  Most of the time
## 5113  Heterosexual (straight)            Always
## 5114  Heterosexual (straight)            Rarely
## 5115  Heterosexual (straight)         Sometimes
## 5116  Heterosexual (straight)  Most of the time
## 5117                 Not sure             Never
## 5118  Heterosexual (straight)         Sometimes
## 5119                 Bisexual         Sometimes
## 5120  Heterosexual (straight)            Rarely
## 5121  Heterosexual (straight)            Rarely
## 5122  Heterosexual (straight)             Never
## 5123  Heterosexual (straight)            Rarely
## 5124  Heterosexual (straight)         Sometimes
## 5125                 Bisexual            Always
## 5126  Heterosexual (straight)            Rarely
## 5127  Heterosexual (straight)             Never
## 5128  Heterosexual (straight)         Sometimes
## 5129  Heterosexual (straight)  Most of the time
## 5130  Heterosexual (straight)             Never
## 5131  Heterosexual (straight)         Sometimes
## 5132  Heterosexual (straight)              <NA>
## 5133  Heterosexual (straight)            Always
## 5134                 Bisexual  Most of the time
## 5135  Heterosexual (straight)  Most of the time
## 5136  Heterosexual (straight)             Never
## 5137  Heterosexual (straight)             Never
## 5138  Heterosexual (straight)             Never
## 5139  Heterosexual (straight)            Always
## 5140  Heterosexual (straight)         Sometimes
## 5141  Heterosexual (straight)         Sometimes
## 5142  Heterosexual (straight)  Most of the time
## 5143                 Bisexual            Rarely
## 5144  Heterosexual (straight)            Rarely
## 5145  Heterosexual (straight)         Sometimes
## 5146  Heterosexual (straight)         Sometimes
## 5147  Heterosexual (straight)            Rarely
## 5148           Gay or lesbian         Sometimes
## 5149  Heterosexual (straight)             Never
## 5150  Heterosexual (straight)         Sometimes
## 5151  Heterosexual (straight)         Sometimes
## 5152  Heterosexual (straight)         Sometimes
## 5153  Heterosexual (straight)             Never
## 5154  Heterosexual (straight)  Most of the time
## 5155  Heterosexual (straight)            Rarely
## 5156                 Bisexual  Most of the time
## 5157  Heterosexual (straight)         Sometimes
## 5158  Heterosexual (straight)         Sometimes
## 5159  Heterosexual (straight)            Rarely
## 5160  Heterosexual (straight)            Rarely
## 5161  Heterosexual (straight)             Never
## 5162  Heterosexual (straight)  Most of the time
## 5163  Heterosexual (straight)             Never
## 5164  Heterosexual (straight)             Never
## 5165  Heterosexual (straight)         Sometimes
## 5166  Heterosexual (straight)            Rarely
## 5167  Heterosexual (straight)             Never
## 5168           Some other way         Sometimes
## 5169  Heterosexual (straight)            Rarely
## 5170  Heterosexual (straight)  Most of the time
## 5171  Heterosexual (straight)         Sometimes
## 5172  Heterosexual (straight)             Never
## 5173           Some other way  Most of the time
## 5174                 Not sure            Always
## 5175  Heterosexual (straight)         Sometimes
## 5176  Heterosexual (straight)            Rarely
## 5177  Heterosexual (straight)            Always
## 5178  Heterosexual (straight)            Rarely
## 5179                 Not sure            Always
## 5180  Heterosexual (straight)            Rarely
## 5181  Heterosexual (straight)            Rarely
## 5182  Heterosexual (straight)             Never
## 5183           Some other way            Rarely
## 5184  Heterosexual (straight)         Sometimes
## 5185  Heterosexual (straight)         Sometimes
## 5186  Heterosexual (straight)  Most of the time
## 5187           Gay or lesbian              <NA>
## 5188  Heterosexual (straight)             Never
## 5189  Heterosexual (straight)             Never
## 5190  Heterosexual (straight)            Rarely
## 5191  Heterosexual (straight)            Always
## 5192  Heterosexual (straight)         Sometimes
## 5193                 Bisexual            Always
## 5194  Heterosexual (straight)         Sometimes
## 5195  Heterosexual (straight)         Sometimes
## 5196  Heterosexual (straight)            Rarely
## 5197                 Bisexual            Rarely
## 5198  Heterosexual (straight)            Rarely
## 5199  Heterosexual (straight)         Sometimes
## 5200  Heterosexual (straight)             Never
## 5201  Heterosexual (straight)             Never
## 5202  Heterosexual (straight)            Rarely
## 5203  Heterosexual (straight)             Never
## 5204                 Bisexual            Always
## 5205  Heterosexual (straight)  Most of the time
## 5206           Gay or lesbian            Always
## 5207           Some other way  Most of the time
## 5208                 Bisexual         Sometimes
## 5209  Heterosexual (straight)            Rarely
## 5210  Heterosexual (straight)             Never
## 5211  Heterosexual (straight)            Rarely
## 5212  Heterosexual (straight)             Never
## 5213  Heterosexual (straight)            Always
## 5214  Heterosexual (straight)            Rarely
## 5215  Heterosexual (straight)            Rarely
## 5216  Heterosexual (straight)             Never
## 5217  Heterosexual (straight)         Sometimes
## 5218  Heterosexual (straight)         Sometimes
## 5219  Heterosexual (straight)         Sometimes
## 5220  Heterosexual (straight)  Most of the time
## 5221  Heterosexual (straight)            Rarely
## 5222                 Bisexual         Sometimes
## 5223                 Not sure            Always
## 5224  Heterosexual (straight)            Rarely
## 5225  Heterosexual (straight)             Never
## 5226  Heterosexual (straight)             Never
## 5227                 Bisexual  Most of the time
## 5228                 Bisexual            Always
## 5229  Heterosexual (straight)         Sometimes
## 5230                 Not sure            Rarely
## 5231  Heterosexual (straight)            Rarely
## 5232                 Bisexual  Most of the time
## 5233                 Bisexual  Most of the time
## 5234  Heterosexual (straight)             Never
## 5235  Heterosexual (straight)  Most of the time
## 5236  Heterosexual (straight)            Rarely
## 5237  Heterosexual (straight)            Rarely
## 5238                 Bisexual            Rarely
## 5239  Heterosexual (straight)         Sometimes
## 5240  Heterosexual (straight)             Never
## 5241  Heterosexual (straight)  Most of the time
## 5242  Heterosexual (straight)             Never
## 5243  Heterosexual (straight)         Sometimes
## 5244  Heterosexual (straight)         Sometimes
## 5245  Heterosexual (straight)             Never
## 5246  Heterosexual (straight)             Never
## 5247  Heterosexual (straight)            Rarely
## 5248  Heterosexual (straight)         Sometimes
## 5249  Heterosexual (straight)             Never
## 5250  Heterosexual (straight)         Sometimes
## 5251  Heterosexual (straight)            Rarely
## 5252  Heterosexual (straight)  Most of the time
## 5253  Heterosexual (straight)         Sometimes
## 5254                 Not sure  Most of the time
## 5255  Heterosexual (straight)             Never
## 5256  Heterosexual (straight)            Rarely
## 5257  Heterosexual (straight)  Most of the time
## 5258  Heterosexual (straight)            Rarely
## 5259  Heterosexual (straight)              <NA>
## 5260  Heterosexual (straight)             Never
## 5261  Heterosexual (straight)             Never
## 5262  Heterosexual (straight)              <NA>
## 5263  Heterosexual (straight)         Sometimes
## 5264                 Bisexual         Sometimes
## 5265  Heterosexual (straight)             Never
## 5266                 Bisexual  Most of the time
## 5267                 Not sure  Most of the time
## 5268  Heterosexual (straight)  Most of the time
## 5269  Heterosexual (straight)             Never
## 5270  Heterosexual (straight)         Sometimes
## 5271  Heterosexual (straight)             Never
## 5272  Heterosexual (straight)         Sometimes
## 5273  Heterosexual (straight)            Rarely
## 5274  Heterosexual (straight)  Most of the time
## 5275  Heterosexual (straight)         Sometimes
## 5276  Heterosexual (straight)  Most of the time
## 5277                 Bisexual            Rarely
## 5278  Heterosexual (straight)            Rarely
## 5279  Heterosexual (straight)         Sometimes
## 5280           Some other way             Never
## 5281  Heterosexual (straight)             Never
## 5282  Heterosexual (straight)         Sometimes
## 5283  Heterosexual (straight)             Never
## 5284  Heterosexual (straight)             Never
## 5285  Heterosexual (straight)             Never
## 5286  Heterosexual (straight)            Rarely
## 5287           Gay or lesbian            Rarely
## 5288  Heterosexual (straight)         Sometimes
## 5289  Heterosexual (straight)             Never
## 5290                 Bisexual  Most of the time
## 5291  Heterosexual (straight)  Most of the time
## 5292  Heterosexual (straight)             Never
## 5293  Heterosexual (straight)            Rarely
## 5294  Heterosexual (straight)         Sometimes
## 5295  Heterosexual (straight)         Sometimes
## 5296  Heterosexual (straight)             Never
## 5297                 Bisexual            Always
## 5298  Heterosexual (straight)            Always
## 5299  Heterosexual (straight)            Rarely
## 5300           Some other way              <NA>
## 5301  Heterosexual (straight)              <NA>
## 5302  Heterosexual (straight)              <NA>
## 5303  Heterosexual (straight)              <NA>
## 5304  Heterosexual (straight)              <NA>
## 5305  Heterosexual (straight)              <NA>
## 5306                 Bisexual              <NA>
## 5307  Heterosexual (straight)              <NA>
## 5308  Heterosexual (straight)              <NA>
## 5309  Heterosexual (straight)              <NA>
## 5310  Heterosexual (straight)              <NA>
## 5311  Heterosexual (straight)              <NA>
## 5312  Heterosexual (straight)              <NA>
## 5313  Heterosexual (straight)              <NA>
## 5314  Heterosexual (straight)              <NA>
## 5315  Heterosexual (straight)              <NA>
## 5316                 Bisexual              <NA>
## 5317  Heterosexual (straight)              <NA>
## 5318  Heterosexual (straight)              <NA>
## 5319                 Not sure              <NA>
## 5320  Heterosexual (straight)              <NA>
## 5321                 Bisexual              <NA>
## 5322                 Not sure              <NA>
## 5323  Heterosexual (straight)              <NA>
## 5324  Heterosexual (straight)              <NA>
## 5325  Heterosexual (straight)              <NA>
## 5326  Heterosexual (straight)              <NA>
## 5327  Heterosexual (straight)              <NA>
## 5328  Heterosexual (straight)              <NA>
## 5329           Some other way              <NA>
## 5330  Heterosexual (straight)              <NA>
## 5331                 Bisexual              <NA>
## 5332  Heterosexual (straight)              <NA>
## 5333  Heterosexual (straight)              <NA>
## 5334  Heterosexual (straight)              <NA>
## 5335  Heterosexual (straight)              <NA>
## 5336  Heterosexual (straight)              <NA>
## 5337  Heterosexual (straight)              <NA>
## 5338  Heterosexual (straight)              <NA>
## 5339  Heterosexual (straight)              <NA>
## 5340  Heterosexual (straight)              <NA>
## 5341  Heterosexual (straight)              <NA>
## 5342  Heterosexual (straight)              <NA>
## 5343  Heterosexual (straight)              <NA>
## 5344  Heterosexual (straight)              <NA>
## 5345  Heterosexual (straight)              <NA>
## 5346  Heterosexual (straight)              <NA>
## 5347  Heterosexual (straight)              <NA>
## 5348  Heterosexual (straight)              <NA>
## 5349                 Bisexual              <NA>
## 5350  Heterosexual (straight)              <NA>
## 5351  Heterosexual (straight)              <NA>
## 5352                 Bisexual              <NA>
## 5353                 Not sure              <NA>
## 5354  Heterosexual (straight)              <NA>
## 5355  Heterosexual (straight)              <NA>
## 5356           Gay or lesbian              <NA>
## 5357                 Bisexual              <NA>
## 5358  Heterosexual (straight)              <NA>
## 5359  Heterosexual (straight)              <NA>
## 5360  Heterosexual (straight)              <NA>
## 5361  Heterosexual (straight)              <NA>
## 5362  Heterosexual (straight)              <NA>
## 5363  Heterosexual (straight)              <NA>
## 5364  Heterosexual (straight)              <NA>
## 5365  Heterosexual (straight)              <NA>
## 5366  Heterosexual (straight)              <NA>
## 5367  Heterosexual (straight)              <NA>
## 5368  Heterosexual (straight)              <NA>
## 5369  Heterosexual (straight)              <NA>
## 5370  Heterosexual (straight)              <NA>
## 5371                 Bisexual              <NA>
## 5372  Heterosexual (straight)              <NA>
## 5373  Heterosexual (straight)              <NA>
## 5374                 Bisexual              <NA>
## 5375  Heterosexual (straight)              <NA>
## 5376                 Bisexual              <NA>
## 5377  Heterosexual (straight)              <NA>
## 5378  Heterosexual (straight)              <NA>
## 5379  Heterosexual (straight)              <NA>
## 5380  Heterosexual (straight)              <NA>
## 5381  Heterosexual (straight)              <NA>
## 5382  Heterosexual (straight)              <NA>
## 5383  Heterosexual (straight)              <NA>
## 5384  Heterosexual (straight)              <NA>
## 5385  Heterosexual (straight)              <NA>
## 5386  Heterosexual (straight)              <NA>
## 5387  Heterosexual (straight)              <NA>
## 5388  Heterosexual (straight)              <NA>
## 5389  Heterosexual (straight)              <NA>
## 5390  Heterosexual (straight)              <NA>
## 5391  Heterosexual (straight)              <NA>
## 5392  Heterosexual (straight)              <NA>
## 5393  Heterosexual (straight)              <NA>
## 5394  Heterosexual (straight)              <NA>
## 5395  Heterosexual (straight)              <NA>
## 5396  Heterosexual (straight)              <NA>
## 5397  Heterosexual (straight)              <NA>
## 5398  Heterosexual (straight)              <NA>
## 5399  Heterosexual (straight)              <NA>
## 5400  Heterosexual (straight)              <NA>
## 5401           Gay or lesbian              <NA>
## 5402  Heterosexual (straight)              <NA>
## 5403                 Not sure              <NA>
## 5404  Heterosexual (straight)              <NA>
## 5405  Heterosexual (straight)              <NA>
## 5406  Heterosexual (straight)              <NA>
## 5407  Heterosexual (straight)              <NA>
## 5408  Heterosexual (straight)              <NA>
## 5409  Heterosexual (straight)              <NA>
## 5410  Heterosexual (straight)              <NA>
## 5411  Heterosexual (straight)              <NA>
## 5412  Heterosexual (straight)              <NA>
## 5413  Heterosexual (straight)              <NA>
## 5414  Heterosexual (straight)              <NA>
## 5415  Heterosexual (straight)              <NA>
## 5416  Heterosexual (straight)              <NA>
## 5417                 Bisexual              <NA>
## 5418  Heterosexual (straight)              <NA>
## 5419  Heterosexual (straight)              <NA>
## 5420           Gay or lesbian              <NA>
## 5421  Heterosexual (straight)              <NA>
## 5422  Heterosexual (straight)              <NA>
## 5423                 Not sure              <NA>
## 5424  Heterosexual (straight)              <NA>
## 5425                 Not sure              <NA>
## 5426  Heterosexual (straight)              <NA>
## 5427           Gay or lesbian              <NA>
## 5428  Heterosexual (straight)              <NA>
## 5429  Heterosexual (straight)              <NA>
## 5430  Heterosexual (straight)              <NA>
## 5431  Heterosexual (straight)              <NA>
## 5432  Heterosexual (straight)              <NA>
## 5433  Heterosexual (straight)              <NA>
## 5434  Heterosexual (straight)              <NA>
## 5435  Heterosexual (straight)              <NA>
## 5436  Heterosexual (straight)              <NA>
## 5437  Heterosexual (straight)              <NA>
## 5438  Heterosexual (straight)              <NA>
## 5439  Heterosexual (straight)              <NA>
## 5440  Heterosexual (straight)              <NA>
## 5441  Heterosexual (straight)              <NA>
## 5442  Heterosexual (straight)              <NA>
## 5443                 Bisexual              <NA>
## 5444                 Not sure              <NA>
## 5445  Heterosexual (straight)              <NA>
## 5446  Heterosexual (straight)              <NA>
## 5447  Heterosexual (straight)              <NA>
## 5448  Heterosexual (straight)              <NA>
## 5449  Heterosexual (straight)              <NA>
## 5450  Heterosexual (straight)              <NA>
## 5451  Heterosexual (straight)              <NA>
## 5452  Heterosexual (straight)              <NA>
## 5453                 Not sure              <NA>
## 5454  Heterosexual (straight)              <NA>
## 5455  Heterosexual (straight)              <NA>
## 5456  Heterosexual (straight)              <NA>
## 5457  Heterosexual (straight)              <NA>
## 5458  Heterosexual (straight)              <NA>
## 5459  Heterosexual (straight)              <NA>
## 5460  Heterosexual (straight)              <NA>
## 5461  Heterosexual (straight)            Rarely
## 5462  Heterosexual (straight)             Never
## 5463  Heterosexual (straight)             Never
## 5464  Heterosexual (straight)         Sometimes
## 5465  Heterosexual (straight)            Rarely
## 5466  Heterosexual (straight)            Rarely
## 5467  Heterosexual (straight)             Never
## 5468  Heterosexual (straight)         Sometimes
## 5469  Heterosexual (straight)         Sometimes
## 5470                 Bisexual  Most of the time
## 5471  Heterosexual (straight)            Rarely
## 5472  Heterosexual (straight)         Sometimes
## 5473  Heterosexual (straight)            Always
## 5474                 Bisexual         Sometimes
## 5475  Heterosexual (straight)             Never
## 5476                 Bisexual  Most of the time
## 5477  Heterosexual (straight)            Rarely
## 5478  Heterosexual (straight)            Always
## 5479  Heterosexual (straight)         Sometimes
## 5480  Heterosexual (straight)  Most of the time
## 5481  Heterosexual (straight)            Rarely
## 5482  Heterosexual (straight)             Never
## 5483  Heterosexual (straight)            Rarely
## 5484  Heterosexual (straight)         Sometimes
## 5485  Heterosexual (straight)            Rarely
## 5486  Heterosexual (straight)         Sometimes
## 5487  Heterosexual (straight)            Rarely
## 5488  Heterosexual (straight)             Never
## 5489                 Bisexual  Most of the time
## 5490  Heterosexual (straight)            Rarely
## 5491  Heterosexual (straight)         Sometimes
## 5492  Heterosexual (straight)            Rarely
## 5493           Gay or lesbian         Sometimes
## 5494  Heterosexual (straight)            Rarely
## 5495  Heterosexual (straight)              <NA>
## 5496                 Not sure         Sometimes
## 5497  Heterosexual (straight)             Never
## 5498           Gay or lesbian  Most of the time
## 5499  Heterosexual (straight)  Most of the time
## 5500  Heterosexual (straight)         Sometimes
## 5501  Heterosexual (straight)            Always
## 5502  Heterosexual (straight)             Never
## 5503  Heterosexual (straight)             Never
## 5504  Heterosexual (straight)         Sometimes
## 5505  Heterosexual (straight)            Rarely
## 5506  Heterosexual (straight)            Rarely
## 5507  Heterosexual (straight)  Most of the time
## 5508  Heterosexual (straight)         Sometimes
## 5509           Gay or lesbian            Rarely
## 5510  Heterosexual (straight)             Never
## 5511  Heterosexual (straight)            Rarely
## 5512  Heterosexual (straight)  Most of the time
## 5513  Heterosexual (straight)            Rarely
## 5514  Heterosexual (straight)         Sometimes
## 5515  Heterosexual (straight)         Sometimes
## 5516  Heterosexual (straight)            Rarely
## 5517  Heterosexual (straight)         Sometimes
## 5518           Some other way         Sometimes
## 5519  Heterosexual (straight)             Never
## 5520           Gay or lesbian         Sometimes
## 5521  Heterosexual (straight)         Sometimes
## 5522  Heterosexual (straight)             Never
## 5523                 Not sure            Always
## 5524  Heterosexual (straight)            Rarely
## 5525  Heterosexual (straight)         Sometimes
## 5526  Heterosexual (straight)            Rarely
## 5527  Heterosexual (straight)              <NA>
## 5528  Heterosexual (straight)            Always
## 5529  Heterosexual (straight)  Most of the time
## 5530  Heterosexual (straight)             Never
## 5531  Heterosexual (straight)            Always
## 5532  Heterosexual (straight)             Never
## 5533  Heterosexual (straight)             Never
## 5534                 Not sure         Sometimes
## 5535  Heterosexual (straight)  Most of the time
## 5536  Heterosexual (straight)  Most of the time
## 5537  Heterosexual (straight)             Never
## 5538  Heterosexual (straight)            Rarely
## 5539  Heterosexual (straight)            Rarely
## 5540           Gay or lesbian  Most of the time
## 5541  Heterosexual (straight)            Rarely
## 5542  Heterosexual (straight)            Always
## 5543                 Bisexual            Always
## 5544  Heterosexual (straight)         Sometimes
## 5545  Heterosexual (straight)            Rarely
## 5546  Heterosexual (straight)            Rarely
## 5547  Heterosexual (straight)            Always
## 5548           Gay or lesbian  Most of the time
## 5549  Heterosexual (straight)         Sometimes
## 5550                 Bisexual         Sometimes
## 5551  Heterosexual (straight)         Sometimes
## 5552  Heterosexual (straight)            Rarely
## 5553  Heterosexual (straight)            Rarely
## 5554           Gay or lesbian  Most of the time
## 5555           Some other way            Always
## 5556  Heterosexual (straight)         Sometimes
## 5557  Heterosexual (straight)             Never
## 5558  Heterosexual (straight)         Sometimes
## 5559  Heterosexual (straight)            Always
## 5560  Heterosexual (straight)             Never
## 5561  Heterosexual (straight)         Sometimes
## 5562  Heterosexual (straight)             Never
## 5563  Heterosexual (straight)            Rarely
## 5564  Heterosexual (straight)         Sometimes
## 5565  Heterosexual (straight)  Most of the time
## 5566           Some other way            Always
## 5567  Heterosexual (straight)         Sometimes
## 5568  Heterosexual (straight)            Rarely
## 5569  Heterosexual (straight)             Never
## 5570           Some other way         Sometimes
## 5571  Heterosexual (straight)            Rarely
## 5572  Heterosexual (straight)            Rarely
## 5573  Heterosexual (straight)            Always
## 5574           Some other way         Sometimes
## 5575                 Bisexual            Always
## 5576  Heterosexual (straight)            Always
## 5577  Heterosexual (straight)            Rarely
## 5578                 Bisexual         Sometimes
## 5579  Heterosexual (straight)  Most of the time
## 5580  Heterosexual (straight)  Most of the time
## 5581  Heterosexual (straight)            Rarely
## 5582                 Not sure            Rarely
## 5583                 Not sure            Rarely
## 5584  Heterosexual (straight)            Rarely
## 5585                 Bisexual  Most of the time
## 5586           Gay or lesbian  Most of the time
## 5587  Heterosexual (straight)         Sometimes
## 5588  Heterosexual (straight)              <NA>
## 5589  Heterosexual (straight)             Never
## 5590  Heterosexual (straight)            Rarely
## 5591  Heterosexual (straight)             Never
## 5592  Heterosexual (straight)            Rarely
## 5593  Heterosexual (straight)         Sometimes
## 5594  Heterosexual (straight)             Never
## 5595  Heterosexual (straight)         Sometimes
## 5596                 Bisexual  Most of the time
## 5597  Heterosexual (straight)  Most of the time
## 5598  Heterosexual (straight)         Sometimes
## 5599  Heterosexual (straight)         Sometimes
## 5600  Heterosexual (straight)            Rarely
## 5601  Heterosexual (straight)             Never
## 5602                 Bisexual            Always
## 5603  Heterosexual (straight)         Sometimes
## 5604  Heterosexual (straight)         Sometimes
## 5605  Heterosexual (straight)            Rarely
## 5606                 Not sure  Most of the time
## 5607  Heterosexual (straight)            Rarely
## 5608  Heterosexual (straight)         Sometimes
## 5609  Heterosexual (straight)             Never
## 5610  Heterosexual (straight)            Rarely
## 5611  Heterosexual (straight)         Sometimes
## 5612  Heterosexual (straight)         Sometimes
## 5613                 Bisexual         Sometimes
## 5614  Heterosexual (straight)            Rarely
## 5615  Heterosexual (straight)  Most of the time
## 5616  Heterosexual (straight)  Most of the time
## 5617  Heterosexual (straight)         Sometimes
## 5618  Heterosexual (straight)         Sometimes
## 5619                 Bisexual         Sometimes
## 5620  Heterosexual (straight)            Always
## 5621  Heterosexual (straight)         Sometimes
## 5622  Heterosexual (straight)            Rarely
## 5623  Heterosexual (straight)            Rarely
## 5624  Heterosexual (straight)  Most of the time
## 5625  Heterosexual (straight)            Rarely
## 5626  Heterosexual (straight)             Never
## 5627  Heterosexual (straight)         Sometimes
## 5628  Heterosexual (straight)             Never
## 5629  Heterosexual (straight)              <NA>
## 5630  Heterosexual (straight)         Sometimes
## 5631  Heterosexual (straight)            Always
## 5632  Heterosexual (straight)         Sometimes
## 5633  Heterosexual (straight)             Never
## 5634  Heterosexual (straight)         Sometimes
## 5635                 Bisexual         Sometimes
## 5636  Heterosexual (straight)         Sometimes
## 5637  Heterosexual (straight)            Always
## 5638  Heterosexual (straight)         Sometimes
## 5639                 Bisexual            Rarely
## 5640  Heterosexual (straight)         Sometimes
## 5641  Heterosexual (straight)             Never
## 5642  Heterosexual (straight)            Always
## 5643           Gay or lesbian             Never
## 5644  Heterosexual (straight)            Rarely
## 5645  Heterosexual (straight)  Most of the time
## 5646  Heterosexual (straight)             Never
## 5647  Heterosexual (straight)            Rarely
## 5648  Heterosexual (straight)         Sometimes
## 5649  Heterosexual (straight)             Never
## 5650  Heterosexual (straight)         Sometimes
## 5651  Heterosexual (straight)             Never
## 5652           Some other way  Most of the time
## 5653  Heterosexual (straight)         Sometimes
## 5654  Heterosexual (straight)         Sometimes
## 5655           Gay or lesbian            Rarely
## 5656  Heterosexual (straight)  Most of the time
## 5657  Heterosexual (straight)            Rarely
## 5658  Heterosexual (straight)            Rarely
## 5659           Some other way  Most of the time
## 5660  Heterosexual (straight)  Most of the time
## 5661  Heterosexual (straight)  Most of the time
## 5662                 Bisexual  Most of the time
## 5663  Heterosexual (straight)  Most of the time
## 5664  Heterosexual (straight)         Sometimes
## 5665  Heterosexual (straight)             Never
## 5666  Heterosexual (straight)            Always
## 5667  Heterosexual (straight)            Rarely
## 5668  Heterosexual (straight)             Never
## 5669  Heterosexual (straight)             Never
## 5670  Heterosexual (straight)             Never
## 5671                 Bisexual  Most of the time
## 5672  Heterosexual (straight)             Never
## 5673  Heterosexual (straight)  Most of the time
## 5674  Heterosexual (straight)  Most of the time
## 5675  Heterosexual (straight)         Sometimes
## 5676  Heterosexual (straight)  Most of the time
## 5677  Heterosexual (straight)             Never
## 5678  Heterosexual (straight)            Rarely
## 5679  Heterosexual (straight)            Rarely
## 5680  Heterosexual (straight)             Never
## 5681                 Bisexual            Rarely
## 5682  Heterosexual (straight)  Most of the time
## 5683  Heterosexual (straight)  Most of the time
## 5684  Heterosexual (straight)         Sometimes
## 5685  Heterosexual (straight)  Most of the time
## 5686  Heterosexual (straight)         Sometimes
## 5687  Heterosexual (straight)             Never
## 5688  Heterosexual (straight)             Never
## 5689                 Bisexual  Most of the time
## 5690  Heterosexual (straight)             Never
## 5691  Heterosexual (straight)            Rarely
## 5692  Heterosexual (straight)            Rarely
## 5693  Heterosexual (straight)  Most of the time
## 5694  Heterosexual (straight)             Never
## 5695  Heterosexual (straight)             Never
## 5696  Heterosexual (straight)            Rarely
## 5697  Heterosexual (straight)  Most of the time
## 5698  Heterosexual (straight)            Always
## 5699  Heterosexual (straight)         Sometimes
## 5700  Heterosexual (straight)  Most of the time
## 5701  Heterosexual (straight)             Never
## 5702  Heterosexual (straight)  Most of the time
## 5703  Heterosexual (straight)         Sometimes
## 5704  Heterosexual (straight)            Always
## 5705                 Bisexual  Most of the time
## 5706  Heterosexual (straight)              <NA>
## 5707  Heterosexual (straight)  Most of the time
## 5708  Heterosexual (straight)  Most of the time
## 5709                 Not sure             Never
## 5710  Heterosexual (straight)         Sometimes
## 5711                 Bisexual  Most of the time
## 5712  Heterosexual (straight)         Sometimes
## 5713  Heterosexual (straight)         Sometimes
## 5714  Heterosexual (straight)         Sometimes
## 5715  Heterosexual (straight)         Sometimes
## 5716  Heterosexual (straight)         Sometimes
## 5717           Some other way         Sometimes
## 5718           Some other way  Most of the time
## 5719  Heterosexual (straight)             Never
## 5720  Heterosexual (straight)         Sometimes
## 5721  Heterosexual (straight)  Most of the time
## 5722  Heterosexual (straight)  Most of the time
## 5723  Heterosexual (straight)            Rarely
## 5724                 Bisexual  Most of the time
## 5725  Heterosexual (straight)  Most of the time
## 5726  Heterosexual (straight)         Sometimes
## 5727  Heterosexual (straight)            Rarely
## 5728  Heterosexual (straight)         Sometimes
## 5729  Heterosexual (straight)             Never
## 5730  Heterosexual (straight)            Rarely
## 5731  Heterosexual (straight)             Never
## 5732  Heterosexual (straight)         Sometimes
## 5733  Heterosexual (straight)         Sometimes
## 5734  Heterosexual (straight)         Sometimes
## 5735  Heterosexual (straight)         Sometimes
## 5736  Heterosexual (straight)         Sometimes
## 5737  Heterosexual (straight)         Sometimes
## 5738  Heterosexual (straight)         Sometimes
## 5739                 Not sure  Most of the time
## 5740  Heterosexual (straight)            Rarely
## 5741           Some other way            Always
## 5742  Heterosexual (straight)            Always
## 5743  Heterosexual (straight)         Sometimes
## 5744  Heterosexual (straight)              <NA>
## 5745                 Not sure         Sometimes
## 5746  Heterosexual (straight)         Sometimes
## 5747                 Bisexual  Most of the time
## 5748  Heterosexual (straight)  Most of the time
## 5749  Heterosexual (straight)            Rarely
## 5750  Heterosexual (straight)              <NA>
## 5751  Heterosexual (straight)         Sometimes
## 5752  Heterosexual (straight)            Always
## 5753  Heterosexual (straight)             Never
## 5754  Heterosexual (straight)  Most of the time
## 5755  Heterosexual (straight)            Rarely
## 5756  Heterosexual (straight)  Most of the time
## 5757  Heterosexual (straight)            Rarely
## 5758  Heterosexual (straight)             Never
## 5759  Heterosexual (straight)             Never
## 5760  Heterosexual (straight)  Most of the time
## 5761  Heterosexual (straight)              <NA>
## 5762                 Bisexual            Rarely
## 5763  Heterosexual (straight)             Never
## 5764  Heterosexual (straight)             Never
## 5765                 Not sure  Most of the time
## 5766  Heterosexual (straight)         Sometimes
## 5767           Some other way            Rarely
## 5768  Heterosexual (straight)            Rarely
## 5769  Heterosexual (straight)            Always
## 5770  Heterosexual (straight)            Always
## 5771  Heterosexual (straight)            Rarely
## 5772  Heterosexual (straight)         Sometimes
## 5773  Heterosexual (straight)  Most of the time
## 5774  Heterosexual (straight)  Most of the time
## 5775  Heterosexual (straight)            Rarely
## 5776  Heterosexual (straight)         Sometimes
## 5777           Some other way            Always
## 5778           Some other way  Most of the time
## 5779  Heterosexual (straight)              <NA>
## 5780  Heterosexual (straight)             Never
## 5781  Heterosexual (straight)         Sometimes
## 5782  Heterosexual (straight)             Never
## 5783                 Bisexual         Sometimes
## 5784           Gay or lesbian  Most of the time
## 5785  Heterosexual (straight)         Sometimes
## 5786  Heterosexual (straight)         Sometimes
## 5787  Heterosexual (straight)            Rarely
## 5788                 Bisexual            Rarely
## 5789  Heterosexual (straight)  Most of the time
## 5790  Heterosexual (straight)             Never
## 5791  Heterosexual (straight)         Sometimes
## 5792  Heterosexual (straight)            Always
## 5793           Gay or lesbian  Most of the time
## 5794                 Bisexual  Most of the time
## 5795  Heterosexual (straight)         Sometimes
## 5796  Heterosexual (straight)            Rarely
## 5797  Heterosexual (straight)            Rarely
## 5798  Heterosexual (straight)             Never
## 5799  Heterosexual (straight)            Rarely
## 5800  Heterosexual (straight)            Rarely
## 5801           Gay or lesbian         Sometimes
## 5802  Heterosexual (straight)         Sometimes
## 5803  Heterosexual (straight)         Sometimes
## 5804  Heterosexual (straight)  Most of the time
## 5805  Heterosexual (straight)            Always
## 5806  Heterosexual (straight)  Most of the time
## 5807  Heterosexual (straight)            Rarely
## 5808  Heterosexual (straight)  Most of the time
## 5809                 Bisexual  Most of the time
## 5810  Heterosexual (straight)             Never
## 5811  Heterosexual (straight)  Most of the time
## 5812  Heterosexual (straight)            Rarely
## 5813  Heterosexual (straight)  Most of the time
## 5814  Heterosexual (straight)  Most of the time
## 5815                 Bisexual         Sometimes
## 5816  Heterosexual (straight)         Sometimes
## 5817  Heterosexual (straight)  Most of the time
## 5818  Heterosexual (straight)              <NA>
## 5819  Heterosexual (straight)  Most of the time
## 5820                 Not sure  Most of the time
## 5821  Heterosexual (straight)  Most of the time
## 5822  Heterosexual (straight)         Sometimes
## 5823  Heterosexual (straight)         Sometimes
## 5824  Heterosexual (straight)             Never
## 5825  Heterosexual (straight)         Sometimes
## 5826  Heterosexual (straight)             Never
## 5827  Heterosexual (straight)             Never
## 5828                 Bisexual  Most of the time
## 5829  Heterosexual (straight)  Most of the time
## 5830           Gay or lesbian         Sometimes
## 5831  Heterosexual (straight)  Most of the time
## 5832  Heterosexual (straight)              <NA>
## 5833  Heterosexual (straight)            Rarely
## 5834                 Bisexual  Most of the time
## 5835  Heterosexual (straight)            Rarely
## 5836                 Not sure         Sometimes
## 5837           Gay or lesbian         Sometimes
## 5838  Heterosexual (straight)  Most of the time
## 5839  Heterosexual (straight)             Never
## 5840  Heterosexual (straight)  Most of the time
## 5841           Gay or lesbian         Sometimes
## 5842  Heterosexual (straight)  Most of the time
## 5843           Some other way         Sometimes
## 5844  Heterosexual (straight)         Sometimes
## 5845                 Bisexual            Always
## 5846  Heterosexual (straight)            Rarely
## 5847  Heterosexual (straight)            Rarely
## 5848  Heterosexual (straight)         Sometimes
## 5849  Heterosexual (straight)         Sometimes
## 5850  Heterosexual (straight)            Rarely
## 5851  Heterosexual (straight)            Rarely
## 5852  Heterosexual (straight)  Most of the time
## 5853  Heterosexual (straight)         Sometimes
## 5854  Heterosexual (straight)            Always
## 5855  Heterosexual (straight)            Rarely
## 5856  Heterosexual (straight)  Most of the time
## 5857  Heterosexual (straight)         Sometimes
## 5858  Heterosexual (straight)             Never
## 5859  Heterosexual (straight)            Rarely
## 5860           Gay or lesbian  Most of the time
## 5861  Heterosexual (straight)             Never
## 5862  Heterosexual (straight)  Most of the time
## 5863           Some other way              <NA>
## 5864                 Not sure         Sometimes
## 5865  Heterosexual (straight)  Most of the time
## 5866  Heterosexual (straight)            Rarely
## 5867  Heterosexual (straight)             Never
## 5868  Heterosexual (straight)         Sometimes
## 5869                 Not sure         Sometimes
## 5870  Heterosexual (straight)             Never
## 5871  Heterosexual (straight)         Sometimes
## 5872  Heterosexual (straight)            Rarely
## 5873  Heterosexual (straight)         Sometimes
## 5874  Heterosexual (straight)             Never
## 5875  Heterosexual (straight)         Sometimes
## 5876  Heterosexual (straight)             Never
## 5877  Heterosexual (straight)            Rarely
## 5878                 Bisexual         Sometimes
## 5879  Heterosexual (straight)            Rarely
## 5880  Heterosexual (straight)            Always
## 5881  Heterosexual (straight)  Most of the time
## 5882  Heterosexual (straight)            Rarely
## 5883  Heterosexual (straight)            Rarely
## 5884  Heterosexual (straight)  Most of the time
## 5885  Heterosexual (straight)            Rarely
## 5886  Heterosexual (straight)             Never
## 5887  Heterosexual (straight)  Most of the time
## 5888                 Not sure         Sometimes
## 5889  Heterosexual (straight)            Rarely
## 5890  Heterosexual (straight)            Rarely
## 5891  Heterosexual (straight)              <NA>
## 5892  Heterosexual (straight)  Most of the time
## 5893  Heterosexual (straight)  Most of the time
## 5894           Some other way            Always
## 5895  Heterosexual (straight)         Sometimes
## 5896  Heterosexual (straight)         Sometimes
## 5897  Heterosexual (straight)  Most of the time
## 5898  Heterosexual (straight)            Rarely
## 5899                 Not sure         Sometimes
## 5900  Heterosexual (straight)            Always
## 5901  Heterosexual (straight)  Most of the time
## 5902                 Not sure            Always
## 5903  Heterosexual (straight)            Rarely
## 5904  Heterosexual (straight)             Never
## 5905  Heterosexual (straight)            Rarely
## 5906  Heterosexual (straight)  Most of the time
## 5907  Heterosexual (straight)            Always
## 5908  Heterosexual (straight)         Sometimes
## 5909  Heterosexual (straight)         Sometimes
## 5910  Heterosexual (straight)            Rarely
## 5911  Heterosexual (straight)             Never
## 5912  Heterosexual (straight)            Rarely
## 5913  Heterosexual (straight)            Always
## 5914  Heterosexual (straight)             Never
## 5915  Heterosexual (straight)             Never
## 5916  Heterosexual (straight)  Most of the time
## 5917  Heterosexual (straight)             Never
## 5918                 Not sure            Always
## 5919  Heterosexual (straight)            Always
## 5920  Heterosexual (straight)            Rarely
## 5921  Heterosexual (straight)         Sometimes
## 5922  Heterosexual (straight)             Never
## 5923  Heterosexual (straight)             Never
## 5924  Heterosexual (straight)              <NA>
## 5925  Heterosexual (straight)         Sometimes
## 5926  Heterosexual (straight)         Sometimes
## 5927  Heterosexual (straight)         Sometimes
## 5928  Heterosexual (straight)              <NA>
## 5929  Heterosexual (straight)             Never
## 5930  Heterosexual (straight)  Most of the time
## 5931  Heterosexual (straight)              <NA>
## 5932  Heterosexual (straight)              <NA>
## 5933  Heterosexual (straight)              <NA>
## 5934  Heterosexual (straight)              <NA>
## 5935  Heterosexual (straight)             Never
## 5936  Heterosexual (straight)              <NA>
## 5937  Heterosexual (straight)         Sometimes
## 5938  Heterosexual (straight)  Most of the time
## 5939  Heterosexual (straight)         Sometimes
## 5940  Heterosexual (straight)  Most of the time
## 5941  Heterosexual (straight)  Most of the time
## 5942  Heterosexual (straight)             Never
## 5943  Heterosexual (straight)         Sometimes
## 5944  Heterosexual (straight)             Never
## 5945  Heterosexual (straight)         Sometimes
## 5946  Heterosexual (straight)              <NA>
## 5947  Heterosexual (straight)  Most of the time
## 5948  Heterosexual (straight)         Sometimes
## 5949  Heterosexual (straight)             Never
## 5950  Heterosexual (straight)             Never
## 5951  Heterosexual (straight)             Never
## 5952           Some other way         Sometimes
## 5953  Heterosexual (straight)             Never
## 5954  Heterosexual (straight)             Never
## 5955  Heterosexual (straight)            Rarely
## 5956  Heterosexual (straight)         Sometimes
## 5957  Heterosexual (straight)  Most of the time
## 5958  Heterosexual (straight)            Rarely
## 5959  Heterosexual (straight)            Rarely
## 5960           Gay or lesbian            Always
## 5961  Heterosexual (straight)              <NA>
## 5962                 Not sure         Sometimes
## 5963  Heterosexual (straight)         Sometimes
## 5964           Some other way            Rarely
## 5965  Heterosexual (straight)         Sometimes
## 5966                 Bisexual            Always
## 5967  Heterosexual (straight)  Most of the time
## 5968  Heterosexual (straight)  Most of the time
## 5969                 Bisexual            Rarely
## 5970  Heterosexual (straight)             Never
## 5971  Heterosexual (straight)             Never
## 5972  Heterosexual (straight)            Rarely
## 5973  Heterosexual (straight)         Sometimes
## 5974  Heterosexual (straight)             Never
## 5975           Some other way         Sometimes
## 5976  Heterosexual (straight)             Never
## 5977  Heterosexual (straight)         Sometimes
## 5978  Heterosexual (straight)         Sometimes
## 5979                 Bisexual            Rarely
## 5980                 Not sure         Sometimes
## 5981           Gay or lesbian  Most of the time
## 5982                 Not sure  Most of the time
## 5983  Heterosexual (straight)  Most of the time
## 5984  Heterosexual (straight)            Rarely
## 5985  Heterosexual (straight)  Most of the time
## 5986           Gay or lesbian  Most of the time
## 5987  Heterosexual (straight)            Rarely
## 5988  Heterosexual (straight)         Sometimes
## 5989  Heterosexual (straight)            Rarely
## 5990  Heterosexual (straight)  Most of the time
## 5991  Heterosexual (straight)             Never
## 5992  Heterosexual (straight)         Sometimes
## 5993  Heterosexual (straight)            Rarely
## 5994           Gay or lesbian  Most of the time
## 5995  Heterosexual (straight)            Rarely
## 5996  Heterosexual (straight)            Rarely
## 5997  Heterosexual (straight)             Never
## 5998           Some other way         Sometimes
## 5999                 Bisexual             Never
## 6000  Heterosexual (straight)             Never
## 6001  Heterosexual (straight)            Rarely
## 6002  Heterosexual (straight)  Most of the time
## 6003  Heterosexual (straight)            Rarely
## 6004  Heterosexual (straight)  Most of the time
## 6005                 Not sure         Sometimes
## 6006  Heterosexual (straight)         Sometimes
## 6007  Heterosexual (straight)             Never
## 6008  Heterosexual (straight)             Never
## 6009  Heterosexual (straight)             Never
## 6010  Heterosexual (straight)         Sometimes
## 6011  Heterosexual (straight)             Never
## 6012  Heterosexual (straight)             Never
## 6013  Heterosexual (straight)             Never
## 6014  Heterosexual (straight)            Always
## 6015  Heterosexual (straight)  Most of the time
## 6016  Heterosexual (straight)         Sometimes
## 6017                 Bisexual  Most of the time
## 6018  Heterosexual (straight)         Sometimes
## 6019  Heterosexual (straight)            Rarely
## 6020  Heterosexual (straight)  Most of the time
## 6021                 Bisexual  Most of the time
## 6022  Heterosexual (straight)  Most of the time
## 6023  Heterosexual (straight)            Rarely
## 6024  Heterosexual (straight)            Rarely
## 6025  Heterosexual (straight)            Always
## 6026                 Bisexual            Always
## 6027  Heterosexual (straight)            Rarely
## 6028  Heterosexual (straight)         Sometimes
## 6029                 Bisexual            Always
## 6030  Heterosexual (straight)            Rarely
## 6031                 Bisexual             Never
## 6032  Heterosexual (straight)         Sometimes
## 6033                 Bisexual         Sometimes
## 6034  Heterosexual (straight)            Rarely
## 6035  Heterosexual (straight)  Most of the time
## 6036  Heterosexual (straight)            Rarely
## 6037  Heterosexual (straight)         Sometimes
## 6038  Heterosexual (straight)         Sometimes
## 6039  Heterosexual (straight)            Rarely
## 6040           Some other way         Sometimes
## 6041  Heterosexual (straight)             Never
## 6042           Gay or lesbian         Sometimes
## 6043           Gay or lesbian             Never
## 6044  Heterosexual (straight)            Rarely
## 6045  Heterosexual (straight)         Sometimes
## 6046  Heterosexual (straight)            Rarely
## 6047  Heterosexual (straight)             Never
## 6048  Heterosexual (straight)            Rarely
## 6049  Heterosexual (straight)         Sometimes
## 6050  Heterosexual (straight)             Never
## 6051  Heterosexual (straight)         Sometimes
## 6052  Heterosexual (straight)         Sometimes
## 6053  Heterosexual (straight)            Always
## 6054  Heterosexual (straight)            Rarely
## 6055  Heterosexual (straight)             Never
## 6056           Some other way         Sometimes
## 6057  Heterosexual (straight)         Sometimes
## 6058  Heterosexual (straight)  Most of the time
## 6059  Heterosexual (straight)             Never
## 6060                 Bisexual  Most of the time
## 6061  Heterosexual (straight)            Rarely
## 6062           Gay or lesbian            Always
## 6063                 Bisexual  Most of the time
## 6064  Heterosexual (straight)         Sometimes
## 6065  Heterosexual (straight)         Sometimes
## 6066  Heterosexual (straight)            Rarely
## 6067  Heterosexual (straight)         Sometimes
## 6068                 Bisexual  Most of the time
## 6069  Heterosexual (straight)            Always
## 6070  Heterosexual (straight)             Never
## 6071                 Not sure         Sometimes
## 6072  Heterosexual (straight)  Most of the time
## 6073  Heterosexual (straight)             Never
## 6074  Heterosexual (straight)            Rarely
## 6075  Heterosexual (straight)  Most of the time
## 6076  Heterosexual (straight)         Sometimes
## 6077  Heterosexual (straight)  Most of the time
## 6078  Heterosexual (straight)             Never
## 6079  Heterosexual (straight)         Sometimes
## 6080  Heterosexual (straight)         Sometimes
## 6081  Heterosexual (straight)             Never
## 6082  Heterosexual (straight)             Never
## 6083  Heterosexual (straight)  Most of the time
## 6084  Heterosexual (straight)         Sometimes
## 6085  Heterosexual (straight)         Sometimes
## 6086  Heterosexual (straight)         Sometimes
## 6087  Heterosexual (straight)  Most of the time
## 6088  Heterosexual (straight)             Never
## 6089  Heterosexual (straight)  Most of the time
## 6090  Heterosexual (straight)         Sometimes
## 6091  Heterosexual (straight)         Sometimes
## 6092  Heterosexual (straight)            Always
## 6093  Heterosexual (straight)             Never
## 6094                 Bisexual         Sometimes
## 6095  Heterosexual (straight)            Rarely
## 6096  Heterosexual (straight)         Sometimes
## 6097  Heterosexual (straight)         Sometimes
## 6098  Heterosexual (straight)            Rarely
## 6099  Heterosexual (straight)  Most of the time
## 6100  Heterosexual (straight)             Never
## 6101  Heterosexual (straight)         Sometimes
## 6102  Heterosexual (straight)            Rarely
## 6103  Heterosexual (straight)         Sometimes
## 6104  Heterosexual (straight)            Rarely
## 6105  Heterosexual (straight)             Never
## 6106  Heterosexual (straight)              <NA>
## 6107  Heterosexual (straight)            Rarely
## 6108  Heterosexual (straight)            Rarely
## 6109  Heterosexual (straight)         Sometimes
## 6110  Heterosexual (straight)             Never
## 6111           Gay or lesbian  Most of the time
## 6112  Heterosexual (straight)  Most of the time
## 6113  Heterosexual (straight)            Rarely
## 6114                 Bisexual  Most of the time
## 6115                 Not sure            Rarely
## 6116                 Bisexual         Sometimes
## 6117  Heterosexual (straight)             Never
## 6118  Heterosexual (straight)         Sometimes
## 6119                 Not sure         Sometimes
## 6120                 Bisexual            Rarely
## 6121  Heterosexual (straight)             Never
## 6122  Heterosexual (straight)            Rarely
## 6123  Heterosexual (straight)  Most of the time
## 6124  Heterosexual (straight)         Sometimes
## 6125  Heterosexual (straight)            Rarely
## 6126  Heterosexual (straight)         Sometimes
## 6127                 Not sure         Sometimes
## 6128                 Bisexual  Most of the time
## 6129  Heterosexual (straight)  Most of the time
## 6130  Heterosexual (straight)            Rarely
## 6131  Heterosexual (straight)             Never
## 6132  Heterosexual (straight)            Rarely
## 6133                 Not sure            Always
## 6134  Heterosexual (straight)             Never
## 6135  Heterosexual (straight)  Most of the time
## 6136  Heterosexual (straight)  Most of the time
## 6137  Heterosexual (straight)         Sometimes
## 6138  Heterosexual (straight)  Most of the time
## 6139  Heterosexual (straight)         Sometimes
## 6140  Heterosexual (straight)            Always
## 6141  Heterosexual (straight)             Never
## 6142                 Bisexual         Sometimes
## 6143  Heterosexual (straight)  Most of the time
## 6144                 Bisexual         Sometimes
## 6145  Heterosexual (straight)             Never
## 6146  Heterosexual (straight)  Most of the time
## 6147           Some other way         Sometimes
## 6148  Heterosexual (straight)         Sometimes
## 6149           Gay or lesbian            Always
## 6150  Heterosexual (straight)            Rarely
## 6151  Heterosexual (straight)             Never
## 6152  Heterosexual (straight)            Rarely
## 6153  Heterosexual (straight)             Never
## 6154  Heterosexual (straight)             Never
## 6155  Heterosexual (straight)             Never
## 6156  Heterosexual (straight)             Never
## 6157  Heterosexual (straight)             Never
## 6158           Gay or lesbian         Sometimes
## 6159  Heterosexual (straight)             Never
## 6160  Heterosexual (straight)             Never
## 6161  Heterosexual (straight)             Never
## 6162  Heterosexual (straight)             Never
## 6163                 Bisexual  Most of the time
## 6164  Heterosexual (straight)             Never
## 6165  Heterosexual (straight)              <NA>
## 6166  Heterosexual (straight)            Rarely
## 6167  Heterosexual (straight)  Most of the time
## 6168  Heterosexual (straight)         Sometimes
## 6169                 Bisexual  Most of the time
## 6170                 Not sure  Most of the time
## 6171  Heterosexual (straight)            Rarely
## 6172  Heterosexual (straight)            Rarely
## 6173  Heterosexual (straight)            Rarely
## 6174                 Bisexual  Most of the time
## 6175  Heterosexual (straight)             Never
## 6176  Heterosexual (straight)            Always
## 6177  Heterosexual (straight)  Most of the time
## 6178  Heterosexual (straight)            Always
## 6179  Heterosexual (straight)            Rarely
## 6180  Heterosexual (straight)            Rarely
## 6181  Heterosexual (straight)  Most of the time
## 6182  Heterosexual (straight)            Rarely
## 6183           Gay or lesbian         Sometimes
## 6184  Heterosexual (straight)            Always
## 6185           Gay or lesbian         Sometimes
## 6186  Heterosexual (straight)            Always
## 6187  Heterosexual (straight)             Never
## 6188  Heterosexual (straight)            Rarely
## 6189           Some other way         Sometimes
## 6190  Heterosexual (straight)            Rarely
## 6191  Heterosexual (straight)  Most of the time
## 6192  Heterosexual (straight)  Most of the time
## 6193                 Not sure         Sometimes
## 6194  Heterosexual (straight)            Rarely
## 6195                 Not sure            Always
## 6196  Heterosexual (straight)  Most of the time
## 6197  Heterosexual (straight)         Sometimes
## 6198  Heterosexual (straight)            Rarely
## 6199           Gay or lesbian  Most of the time
## 6200  Heterosexual (straight)              <NA>
## 6201  Heterosexual (straight)         Sometimes
## 6202  Heterosexual (straight)            Always
## 6203  Heterosexual (straight)         Sometimes
## 6204                 Bisexual            Always
## 6205  Heterosexual (straight)         Sometimes
## 6206  Heterosexual (straight)            Rarely
## 6207  Heterosexual (straight)         Sometimes
## 6208  Heterosexual (straight)  Most of the time
## 6209  Heterosexual (straight)  Most of the time
## 6210                 Bisexual  Most of the time
## 6211  Heterosexual (straight)            Rarely
## 6212  Heterosexual (straight)             Never
## 6213  Heterosexual (straight)             Never
## 6214  Heterosexual (straight)            Rarely
## 6215  Heterosexual (straight)            Rarely
## 6216           Gay or lesbian            Always
## 6217  Heterosexual (straight)         Sometimes
## 6218  Heterosexual (straight)  Most of the time
## 6219  Heterosexual (straight)         Sometimes
## 6220  Heterosexual (straight)             Never
## 6221  Heterosexual (straight)            Always
## 6222  Heterosexual (straight)  Most of the time
## 6223  Heterosexual (straight)             Never
## 6224  Heterosexual (straight)         Sometimes
## 6225           Gay or lesbian         Sometimes
## 6226                 Not sure  Most of the time
## 6227  Heterosexual (straight)             Never
## 6228  Heterosexual (straight)  Most of the time
## 6229  Heterosexual (straight)         Sometimes
## 6230  Heterosexual (straight)            Rarely
## 6231  Heterosexual (straight)             Never
## 6232  Heterosexual (straight)            Always
## 6233  Heterosexual (straight)            Rarely
## 6234  Heterosexual (straight)             Never
## 6235  Heterosexual (straight)         Sometimes
## 6236  Heterosexual (straight)  Most of the time
## 6237  Heterosexual (straight)         Sometimes
## 6238  Heterosexual (straight)             Never
## 6239  Heterosexual (straight)         Sometimes
## 6240  Heterosexual (straight)            Rarely
## 6241  Heterosexual (straight)         Sometimes
## 6242  Heterosexual (straight)         Sometimes
## 6243  Heterosexual (straight)            Rarely
## 6244  Heterosexual (straight)  Most of the time
## 6245  Heterosexual (straight)  Most of the time
## 6246  Heterosexual (straight)            Rarely
## 6247  Heterosexual (straight)            Rarely
## 6248  Heterosexual (straight)             Never
## 6249  Heterosexual (straight)             Never
## 6250  Heterosexual (straight)  Most of the time
## 6251  Heterosexual (straight)         Sometimes
## 6252  Heterosexual (straight)             Never
## 6253  Heterosexual (straight)         Sometimes
## 6254  Heterosexual (straight)            Always
## 6255  Heterosexual (straight)  Most of the time
## 6256  Heterosexual (straight)  Most of the time
## 6257  Heterosexual (straight)         Sometimes
## 6258           Gay or lesbian  Most of the time
## 6259           Some other way  Most of the time
## 6260  Heterosexual (straight)             Never
## 6261           Gay or lesbian         Sometimes
## 6262  Heterosexual (straight)            Always
## 6263  Heterosexual (straight)             Never
## 6264           Some other way             Never
## 6265  Heterosexual (straight)             Never
## 6266  Heterosexual (straight)            Rarely
## 6267                 Not sure             Never
## 6268  Heterosexual (straight)            Rarely
## 6269  Heterosexual (straight)  Most of the time
## 6270           Gay or lesbian         Sometimes
## 6271  Heterosexual (straight)            Rarely
## 6272  Heterosexual (straight)            Rarely
## 6273  Heterosexual (straight)             Never
## 6274  Heterosexual (straight)             Never
## 6275                 Not sure         Sometimes
## 6276  Heterosexual (straight)         Sometimes
## 6277  Heterosexual (straight)             Never
## 6278  Heterosexual (straight)  Most of the time
## 6279  Heterosexual (straight)             Never
## 6280  Heterosexual (straight)             Never
## 6281  Heterosexual (straight)            Rarely
## 6282  Heterosexual (straight)         Sometimes
## 6283  Heterosexual (straight)             Never
## 6284  Heterosexual (straight)            Rarely
## 6285  Heterosexual (straight)            Always
## 6286           Gay or lesbian  Most of the time
## 6287                 Bisexual         Sometimes
## 6288  Heterosexual (straight)         Sometimes
## 6289  Heterosexual (straight)         Sometimes
## 6290  Heterosexual (straight)             Never
## 6291                 Bisexual              <NA>
## 6292  Heterosexual (straight)             Never
## 6293  Heterosexual (straight)  Most of the time
## 6294  Heterosexual (straight)            Always
## 6295  Heterosexual (straight)              <NA>
## 6296           Gay or lesbian             Never
## 6297                 Bisexual         Sometimes
## 6298  Heterosexual (straight)            Rarely
## 6299  Heterosexual (straight)         Sometimes
## 6300                 Bisexual  Most of the time
## 6301                 Bisexual            Always
## 6302  Heterosexual (straight)  Most of the time
## 6303           Gay or lesbian         Sometimes
## 6304  Heterosexual (straight)  Most of the time
## 6305                 Not sure             Never
## 6306                 Bisexual            Rarely
## 6307  Heterosexual (straight)  Most of the time
## 6308  Heterosexual (straight)             Never
## 6309           Some other way         Sometimes
## 6310  Heterosexual (straight)  Most of the time
## 6311                 Bisexual         Sometimes
## 6312           Gay or lesbian  Most of the time
## 6313  Heterosexual (straight)            Rarely
## 6314  Heterosexual (straight)            Rarely
## 6315  Heterosexual (straight)            Rarely
## 6316  Heterosexual (straight)         Sometimes
## 6317  Heterosexual (straight)             Never
## 6318  Heterosexual (straight)             Never
## 6319  Heterosexual (straight)         Sometimes
## 6320  Heterosexual (straight)         Sometimes
## 6321  Heterosexual (straight)         Sometimes
## 6322  Heterosexual (straight)         Sometimes
## 6323  Heterosexual (straight)            Rarely
## 6324  Heterosexual (straight)         Sometimes
## 6325  Heterosexual (straight)  Most of the time
## 6326           Some other way            Always
## 6327  Heterosexual (straight)             Never
## 6328  Heterosexual (straight)         Sometimes
## 6329  Heterosexual (straight)         Sometimes
## 6330  Heterosexual (straight)             Never
## 6331  Heterosexual (straight)            Rarely
## 6332  Heterosexual (straight)         Sometimes
## 6333  Heterosexual (straight)             Never
## 6334  Heterosexual (straight)  Most of the time
## 6335  Heterosexual (straight)  Most of the time
## 6336  Heterosexual (straight)            Rarely
## 6337  Heterosexual (straight)            Rarely
## 6338  Heterosexual (straight)              <NA>
## 6339  Heterosexual (straight)            Always
## 6340                 Bisexual            Always
## 6341                 Not sure  Most of the time
## 6342  Heterosexual (straight)            Rarely
## 6343           Some other way  Most of the time
## 6344  Heterosexual (straight)            Rarely
## 6345  Heterosexual (straight)            Rarely
## 6346           Gay or lesbian            Always
## 6347  Heterosexual (straight)  Most of the time
## 6348  Heterosexual (straight)             Never
## 6349  Heterosexual (straight)  Most of the time
## 6350  Heterosexual (straight)            Rarely
## 6351                 Not sure            Always
## 6352  Heterosexual (straight)            Rarely
## 6353  Heterosexual (straight)             Never
## 6354  Heterosexual (straight)            Rarely
## 6355  Heterosexual (straight)            Rarely
## 6356  Heterosexual (straight)  Most of the time
## 6357                 Not sure         Sometimes
## 6358  Heterosexual (straight)            Rarely
## 6359                 Bisexual         Sometimes
## 6360                 Bisexual         Sometimes
## 6361  Heterosexual (straight)              <NA>
## 6362           Gay or lesbian             Never
## 6363  Heterosexual (straight)            Always
## 6364  Heterosexual (straight)            Rarely
## 6365  Heterosexual (straight)            Rarely
## 6366  Heterosexual (straight)  Most of the time
## 6367  Heterosexual (straight)             Never
## 6368  Heterosexual (straight)             Never
## 6369  Heterosexual (straight)            Rarely
## 6370                 Not sure  Most of the time
## 6371  Heterosexual (straight)             Never
## 6372  Heterosexual (straight)         Sometimes
## 6373                 Not sure            Rarely
## 6374  Heterosexual (straight)             Never
## 6375  Heterosexual (straight)            Always
## 6376  Heterosexual (straight)  Most of the time
## 6377  Heterosexual (straight)  Most of the time
## 6378  Heterosexual (straight)         Sometimes
## 6379  Heterosexual (straight)         Sometimes
## 6380  Heterosexual (straight)             Never
## 6381  Heterosexual (straight)            Rarely
## 6382  Heterosexual (straight)            Rarely
## 6383  Heterosexual (straight)              <NA>
## 6384  Heterosexual (straight)  Most of the time
## 6385  Heterosexual (straight)  Most of the time
## 6386  Heterosexual (straight)         Sometimes
## 6387  Heterosexual (straight)            Rarely
## 6388  Heterosexual (straight)         Sometimes
## 6389  Heterosexual (straight)  Most of the time
## 6390  Heterosexual (straight)         Sometimes
## 6391                 Not sure            Rarely
## 6392  Heterosexual (straight)            Rarely
## 6393  Heterosexual (straight)         Sometimes
## 6394  Heterosexual (straight)             Never
## 6395           Gay or lesbian  Most of the time
## 6396  Heterosexual (straight)             Never
## 6397                 Bisexual         Sometimes
## 6398                 Bisexual  Most of the time
## 6399                 Bisexual            Rarely
## 6400  Heterosexual (straight)             Never
## 6401  Heterosexual (straight)             Never
## 6402  Heterosexual (straight)         Sometimes
## 6403  Heterosexual (straight)            Rarely
## 6404  Heterosexual (straight)         Sometimes
## 6405  Heterosexual (straight)         Sometimes
## 6406  Heterosexual (straight)             Never
## 6407                 Bisexual         Sometimes
## 6408                 Not sure         Sometimes
## 6409  Heterosexual (straight)         Sometimes
## 6410  Heterosexual (straight)             Never
## 6411  Heterosexual (straight)              <NA>
## 6412                 Not sure  Most of the time
## 6413  Heterosexual (straight)         Sometimes
## 6414           Gay or lesbian         Sometimes
## 6415  Heterosexual (straight)            Always
## 6416  Heterosexual (straight)         Sometimes
## 6417  Heterosexual (straight)  Most of the time
## 6418  Heterosexual (straight)            Rarely
## 6419  Heterosexual (straight)             Never
## 6420           Gay or lesbian  Most of the time
## 6421  Heterosexual (straight)             Never
## 6422           Gay or lesbian         Sometimes
## 6423  Heterosexual (straight)            Rarely
## 6424  Heterosexual (straight)            Always
## 6425  Heterosexual (straight)  Most of the time
## 6426                 Bisexual            Rarely
## 6427                 Not sure  Most of the time
## 6428  Heterosexual (straight)         Sometimes
## 6429  Heterosexual (straight)             Never
## 6430  Heterosexual (straight)            Rarely
## 6431  Heterosexual (straight)            Rarely
## 6432           Gay or lesbian            Always
## 6433  Heterosexual (straight)         Sometimes
## 6434  Heterosexual (straight)             Never
## 6435  Heterosexual (straight)         Sometimes
## 6436  Heterosexual (straight)            Rarely
## 6437  Heterosexual (straight)         Sometimes
## 6438  Heterosexual (straight)            Rarely
## 6439                 Bisexual             Never
## 6440  Heterosexual (straight)         Sometimes
## 6441  Heterosexual (straight)             Never
## 6442  Heterosexual (straight)              <NA>
## 6443  Heterosexual (straight)            Rarely
## 6444  Heterosexual (straight)  Most of the time
## 6445  Heterosexual (straight)         Sometimes
## 6446  Heterosexual (straight)             Never
## 6447  Heterosexual (straight)  Most of the time
## 6448  Heterosexual (straight)         Sometimes
## 6449  Heterosexual (straight)         Sometimes
## 6450  Heterosexual (straight)         Sometimes
## 6451  Heterosexual (straight)         Sometimes
## 6452                 Bisexual         Sometimes
## 6453  Heterosexual (straight)  Most of the time
## 6454  Heterosexual (straight)              <NA>
## 6455                 Not sure         Sometimes
## 6456  Heterosexual (straight)             Never
## 6457  Heterosexual (straight)         Sometimes
## 6458  Heterosexual (straight)  Most of the time
## 6459  Heterosexual (straight)            Always
## 6460  Heterosexual (straight)  Most of the time
## 6461  Heterosexual (straight)             Never
## 6462  Heterosexual (straight)  Most of the time
## 6463  Heterosexual (straight)  Most of the time
## 6464  Heterosexual (straight)             Never
## 6465                 Bisexual            Always
## 6466  Heterosexual (straight)         Sometimes
## 6467           Some other way         Sometimes
## 6468  Heterosexual (straight)         Sometimes
## 6469                 Not sure         Sometimes
## 6470  Heterosexual (straight)             Never
## 6471  Heterosexual (straight)         Sometimes
## 6472  Heterosexual (straight)         Sometimes
## 6473  Heterosexual (straight)  Most of the time
## 6474  Heterosexual (straight)            Rarely
## 6475  Heterosexual (straight)         Sometimes
## 6476  Heterosexual (straight)  Most of the time
## 6477                 Bisexual  Most of the time
## 6478  Heterosexual (straight)         Sometimes
## 6479                 Bisexual            Always
## 6480  Heterosexual (straight)         Sometimes
## 6481  Heterosexual (straight)             Never
## 6482  Heterosexual (straight)            Rarely
## 6483  Heterosexual (straight)         Sometimes
## 6484                 Not sure  Most of the time
## 6485  Heterosexual (straight)  Most of the time
## 6486  Heterosexual (straight)             Never
## 6487  Heterosexual (straight)  Most of the time
## 6488  Heterosexual (straight)         Sometimes
## 6489  Heterosexual (straight)  Most of the time
## 6490  Heterosexual (straight)            Rarely
## 6491  Heterosexual (straight)            Always
## 6492  Heterosexual (straight)         Sometimes
## 6493  Heterosexual (straight)            Rarely
## 6494           Some other way         Sometimes
## 6495  Heterosexual (straight)            Rarely
## 6496                 Bisexual            Rarely
## 6497  Heterosexual (straight)         Sometimes
## 6498  Heterosexual (straight)             Never
## 6499  Heterosexual (straight)         Sometimes
## 6500  Heterosexual (straight)         Sometimes
## 6501  Heterosexual (straight)            Rarely
## 6502  Heterosexual (straight)            Rarely
## 6503  Heterosexual (straight)             Never
## 6504  Heterosexual (straight)             Never
## 6505                 Not sure         Sometimes
## 6506  Heterosexual (straight)            Rarely
## 6507  Heterosexual (straight)         Sometimes
## 6508  Heterosexual (straight)         Sometimes
## 6509  Heterosexual (straight)            Rarely
## 6510  Heterosexual (straight)             Never
## 6511  Heterosexual (straight)             Never
## 6512  Heterosexual (straight)            Rarely
## 6513  Heterosexual (straight)            Rarely
## 6514  Heterosexual (straight)         Sometimes
## 6515           Some other way            Always
## 6516  Heterosexual (straight)  Most of the time
## 6517  Heterosexual (straight)             Never
## 6518  Heterosexual (straight)            Rarely
## 6519  Heterosexual (straight)             Never
## 6520  Heterosexual (straight)            Rarely
## 6521  Heterosexual (straight)         Sometimes
## 6522                 Bisexual            Rarely
## 6523  Heterosexual (straight)            Rarely
## 6524                 Bisexual  Most of the time
## 6525  Heterosexual (straight)         Sometimes
## 6526                 Bisexual            Rarely
## 6527  Heterosexual (straight)            Rarely
## 6528                 Bisexual         Sometimes
## 6529  Heterosexual (straight)             Never
## 6530  Heterosexual (straight)         Sometimes
## 6531                 Bisexual         Sometimes
## 6532                 Not sure  Most of the time
## 6533  Heterosexual (straight)             Never
## 6534  Heterosexual (straight)             Never
## 6535  Heterosexual (straight)              <NA>
## 6536  Heterosexual (straight)         Sometimes
## 6537  Heterosexual (straight)             Never
## 6538                 Not sure         Sometimes
## 6539                 Bisexual  Most of the time
## 6540  Heterosexual (straight)         Sometimes
## 6541  Heterosexual (straight)             Never
## 6542  Heterosexual (straight)             Never
## 6543  Heterosexual (straight)              <NA>
## 6544  Heterosexual (straight)             Never
## 6545  Heterosexual (straight)             Never
## 6546  Heterosexual (straight)            Rarely
## 6547  Heterosexual (straight)            Rarely
## 6548  Heterosexual (straight)         Sometimes
## 6549  Heterosexual (straight)         Sometimes
## 6550  Heterosexual (straight)  Most of the time
## 6551  Heterosexual (straight)             Never
## 6552  Heterosexual (straight)            Rarely
## 6553  Heterosexual (straight)             Never
## 6554  Heterosexual (straight)             Never
## 6555                 Bisexual  Most of the time
## 6556  Heterosexual (straight)         Sometimes
## 6557  Heterosexual (straight)             Never
## 6558  Heterosexual (straight)             Never
## 6559  Heterosexual (straight)  Most of the time
## 6560  Heterosexual (straight)  Most of the time
## 6561  Heterosexual (straight)         Sometimes
## 6562  Heterosexual (straight)             Never
## 6563           Some other way  Most of the time
## 6564                 Not sure  Most of the time
## 6565  Heterosexual (straight)         Sometimes
## 6566  Heterosexual (straight)  Most of the time
## 6567  Heterosexual (straight)  Most of the time
## 6568  Heterosexual (straight)  Most of the time
## 6569  Heterosexual (straight)         Sometimes
## 6570  Heterosexual (straight)             Never
## 6571  Heterosexual (straight)         Sometimes
## 6572  Heterosexual (straight)            Rarely
## 6573  Heterosexual (straight)             Never
## 6574  Heterosexual (straight)         Sometimes
## 6575  Heterosexual (straight)            Rarely
## 6576  Heterosexual (straight)            Rarely
## 6577  Heterosexual (straight)            Rarely
## 6578                 Bisexual            Always
## 6579           Gay or lesbian            Always
## 6580  Heterosexual (straight)            Always
## 6581  Heterosexual (straight)             Never
## 6582  Heterosexual (straight)            Always
## 6583  Heterosexual (straight)            Rarely
## 6584                 Bisexual  Most of the time
## 6585  Heterosexual (straight)         Sometimes
## 6586  Heterosexual (straight)         Sometimes
## 6587                 Bisexual            Always
## 6588  Heterosexual (straight)         Sometimes
## 6589  Heterosexual (straight)             Never
## 6590  Heterosexual (straight)  Most of the time
## 6591  Heterosexual (straight)             Never
## 6592  Heterosexual (straight)            Rarely
## 6593  Heterosexual (straight)            Rarely
## 6594  Heterosexual (straight)         Sometimes
## 6595  Heterosexual (straight)  Most of the time
## 6596  Heterosexual (straight)             Never
## 6597                 Bisexual              <NA>
## 6598                 Bisexual              <NA>
## 6599  Heterosexual (straight)              <NA>
## 6600           Some other way              <NA>
## 6601  Heterosexual (straight)              <NA>
## 6602  Heterosexual (straight)              <NA>
## 6603  Heterosexual (straight)              <NA>
## 6604  Heterosexual (straight)              <NA>
## 6605  Heterosexual (straight)              <NA>
## 6606                 Not sure              <NA>
## 6607  Heterosexual (straight)              <NA>
## 6608  Heterosexual (straight)              <NA>
## 6609  Heterosexual (straight)              <NA>
## 6610  Heterosexual (straight)              <NA>
## 6611  Heterosexual (straight)              <NA>
## 6612  Heterosexual (straight)              <NA>
## 6613  Heterosexual (straight)              <NA>
## 6614  Heterosexual (straight)              <NA>
## 6615                 Bisexual              <NA>
## 6616  Heterosexual (straight)              <NA>
## 6617                 Not sure              <NA>
## 6618  Heterosexual (straight)              <NA>
## 6619  Heterosexual (straight)              <NA>
## 6620  Heterosexual (straight)              <NA>
## 6621  Heterosexual (straight)              <NA>
## 6622  Heterosexual (straight)              <NA>
## 6623  Heterosexual (straight)              <NA>
## 6624                 Bisexual              <NA>
## 6625  Heterosexual (straight)              <NA>
## 6626  Heterosexual (straight)              <NA>
## 6627  Heterosexual (straight)              <NA>
## 6628  Heterosexual (straight)              <NA>
## 6629  Heterosexual (straight)              <NA>
## 6630  Heterosexual (straight)              <NA>
## 6631  Heterosexual (straight)              <NA>
## 6632  Heterosexual (straight)              <NA>
## 6633  Heterosexual (straight)              <NA>
## 6634           Gay or lesbian              <NA>
## 6635  Heterosexual (straight)              <NA>
## 6636  Heterosexual (straight)              <NA>
## 6637  Heterosexual (straight)              <NA>
## 6638  Heterosexual (straight)              <NA>
## 6639  Heterosexual (straight)              <NA>
## 6640  Heterosexual (straight)              <NA>
## 6641  Heterosexual (straight)              <NA>
## 6642  Heterosexual (straight)              <NA>
## 6643  Heterosexual (straight)              <NA>
## 6644           Gay or lesbian              <NA>
## 6645  Heterosexual (straight)              <NA>
## 6646  Heterosexual (straight)              <NA>
## 6647  Heterosexual (straight)              <NA>
## 6648  Heterosexual (straight)              <NA>
## 6649                 Bisexual              <NA>
## 6650  Heterosexual (straight)              <NA>
## 6651  Heterosexual (straight)              <NA>
## 6652  Heterosexual (straight)              <NA>
## 6653  Heterosexual (straight)              <NA>
## 6654  Heterosexual (straight)              <NA>
## 6655  Heterosexual (straight)              <NA>
## 6656  Heterosexual (straight)              <NA>
## 6657  Heterosexual (straight)              <NA>
## 6658  Heterosexual (straight)              <NA>
## 6659                 Bisexual              <NA>
## 6660                 Not sure              <NA>
## 6661  Heterosexual (straight)              <NA>
## 6662  Heterosexual (straight)              <NA>
## 6663  Heterosexual (straight)              <NA>
## 6664  Heterosexual (straight)              <NA>
## 6665  Heterosexual (straight)              <NA>
## 6666  Heterosexual (straight)              <NA>
## 6667  Heterosexual (straight)              <NA>
## 6668  Heterosexual (straight)              <NA>
## 6669  Heterosexual (straight)              <NA>
## 6670  Heterosexual (straight)              <NA>
## 6671  Heterosexual (straight)              <NA>
## 6672  Heterosexual (straight)              <NA>
## 6673                 Bisexual              <NA>
## 6674  Heterosexual (straight)              <NA>
## 6675  Heterosexual (straight)              <NA>
## 6676  Heterosexual (straight)              <NA>
## 6677  Heterosexual (straight)              <NA>
## 6678  Heterosexual (straight)              <NA>
## 6679  Heterosexual (straight)              <NA>
## 6680  Heterosexual (straight)              <NA>
## 6681                 Not sure              <NA>
## 6682  Heterosexual (straight)              <NA>
## 6683  Heterosexual (straight)              <NA>
## 6684  Heterosexual (straight)              <NA>
## 6685  Heterosexual (straight)              <NA>
## 6686                 Bisexual              <NA>
## 6687  Heterosexual (straight)              <NA>
## 6688  Heterosexual (straight)              <NA>
## 6689  Heterosexual (straight)              <NA>
## 6690  Heterosexual (straight)              <NA>
## 6691                 Bisexual              <NA>
## 6692                 Bisexual              <NA>
## 6693  Heterosexual (straight)              <NA>
## 6694  Heterosexual (straight)              <NA>
## 6695  Heterosexual (straight)              <NA>
## 6696                 Not sure              <NA>
## 6697  Heterosexual (straight)              <NA>
## 6698  Heterosexual (straight)              <NA>
## 6699  Heterosexual (straight)              <NA>
## 6700  Heterosexual (straight)              <NA>
## 6701  Heterosexual (straight)              <NA>
## 6702  Heterosexual (straight)              <NA>
## 6703  Heterosexual (straight)              <NA>
## 6704  Heterosexual (straight)              <NA>
## 6705  Heterosexual (straight)              <NA>
## 6706  Heterosexual (straight)              <NA>
## 6707  Heterosexual (straight)              <NA>
## 6708  Heterosexual (straight)              <NA>
## 6709  Heterosexual (straight)              <NA>
## 6710  Heterosexual (straight)              <NA>
## 6711  Heterosexual (straight)              <NA>
## 6712  Heterosexual (straight)              <NA>
## 6713  Heterosexual (straight)              <NA>
## 6714  Heterosexual (straight)              <NA>
## 6715  Heterosexual (straight)              <NA>
## 6716  Heterosexual (straight)              <NA>
## 6717  Heterosexual (straight)              <NA>
## 6718  Heterosexual (straight)              <NA>
## 6719  Heterosexual (straight)              <NA>
## 6720  Heterosexual (straight)              <NA>
## 6721  Heterosexual (straight)              <NA>
## 6722                 Not sure              <NA>
## 6723           Some other way              <NA>
## 6724  Heterosexual (straight)              <NA>
## 6725  Heterosexual (straight)              <NA>
## 6726  Heterosexual (straight)              <NA>
## 6727  Heterosexual (straight)              <NA>
## 6728  Heterosexual (straight)              <NA>
## 6729  Heterosexual (straight)              <NA>
## 6730  Heterosexual (straight)              <NA>
## 6731  Heterosexual (straight)              <NA>
## 6732  Heterosexual (straight)              <NA>
## 6733                 Bisexual              <NA>
## 6734  Heterosexual (straight)              <NA>
## 6735  Heterosexual (straight)              <NA>
## 6736  Heterosexual (straight)              <NA>
## 6737  Heterosexual (straight)              <NA>
## 6738  Heterosexual (straight)              <NA>
## 6739  Heterosexual (straight)              <NA>
## 6740  Heterosexual (straight)              <NA>
## 6741  Heterosexual (straight)              <NA>
## 6742  Heterosexual (straight)              <NA>
## 6743  Heterosexual (straight)              <NA>
## 6744  Heterosexual (straight)              <NA>
## 6745  Heterosexual (straight)              <NA>
## 6746  Heterosexual (straight)              <NA>
## 6747  Heterosexual (straight)              <NA>
## 6748  Heterosexual (straight)              <NA>
## 6749  Heterosexual (straight)              <NA>
## 6750  Heterosexual (straight)              <NA>
## 6751                 Bisexual              <NA>
## 6752  Heterosexual (straight)             Never
## 6753  Heterosexual (straight)            Always
## 6754  Heterosexual (straight)         Sometimes
## 6755  Heterosexual (straight)         Sometimes
## 6756  Heterosexual (straight)  Most of the time
## 6757  Heterosexual (straight)  Most of the time
## 6758                 Bisexual            Rarely
## 6759  Heterosexual (straight)             Never
## 6760  Heterosexual (straight)            Rarely
## 6761  Heterosexual (straight)            Rarely
## 6762  Heterosexual (straight)             Never
## 6763  Heterosexual (straight)         Sometimes
## 6764  Heterosexual (straight)             Never
## 6765  Heterosexual (straight)            Rarely
## 6766  Heterosexual (straight)             Never
## 6767  Heterosexual (straight)             Never
## 6768  Heterosexual (straight)         Sometimes
## 6769  Heterosexual (straight)  Most of the time
## 6770  Heterosexual (straight)         Sometimes
## 6771  Heterosexual (straight)  Most of the time
## 6772  Heterosexual (straight)  Most of the time
## 6773  Heterosexual (straight)             Never
## 6774  Heterosexual (straight)            Always
## 6775  Heterosexual (straight)            Rarely
## 6776  Heterosexual (straight)         Sometimes
## 6777  Heterosexual (straight)             Never
## 6778  Heterosexual (straight)  Most of the time
## 6779  Heterosexual (straight)            Rarely
## 6780  Heterosexual (straight)            Rarely
## 6781  Heterosexual (straight)            Rarely
## 6782  Heterosexual (straight)             Never
## 6783  Heterosexual (straight)         Sometimes
## 6784  Heterosexual (straight)             Never
## 6785  Heterosexual (straight)              <NA>
## 6786           Gay or lesbian  Most of the time
## 6787           Some other way         Sometimes
## 6788  Heterosexual (straight)              <NA>
## 6789  Heterosexual (straight)         Sometimes
## 6790  Heterosexual (straight)             Never
## 6791  Heterosexual (straight)  Most of the time
## 6792  Heterosexual (straight)         Sometimes
## 6793                 Bisexual  Most of the time
## 6794  Heterosexual (straight)  Most of the time
## 6795  Heterosexual (straight)  Most of the time
## 6796                 Bisexual  Most of the time
## 6797  Heterosexual (straight)            Rarely
## 6798                 Bisexual         Sometimes
## 6799           Gay or lesbian         Sometimes
## 6800  Heterosexual (straight)            Always
## 6801  Heterosexual (straight)             Never
## 6802  Heterosexual (straight)            Rarely
## 6803  Heterosexual (straight)            Always
## 6804           Gay or lesbian             Never
## 6805  Heterosexual (straight)             Never
## 6806           Some other way  Most of the time
## 6807  Heterosexual (straight)             Never
## 6808                 Not sure            Always
## 6809                 Bisexual  Most of the time
## 6810  Heterosexual (straight)            Rarely
## 6811  Heterosexual (straight)  Most of the time
## 6812           Some other way  Most of the time
## 6813  Heterosexual (straight)             Never
## 6814  Heterosexual (straight)         Sometimes
## 6815                 Bisexual             Never
## 6816           Gay or lesbian         Sometimes
## 6817  Heterosexual (straight)         Sometimes
## 6818  Heterosexual (straight)            Rarely
## 6819  Heterosexual (straight)         Sometimes
## 6820  Heterosexual (straight)         Sometimes
## 6821  Heterosexual (straight)  Most of the time
## 6822  Heterosexual (straight)         Sometimes
## 6823  Heterosexual (straight)            Rarely
## 6824  Heterosexual (straight)            Rarely
## 6825  Heterosexual (straight)            Rarely
## 6826  Heterosexual (straight)            Rarely
## 6827  Heterosexual (straight)         Sometimes
## 6828  Heterosexual (straight)  Most of the time
## 6829  Heterosexual (straight)         Sometimes
## 6830  Heterosexual (straight)             Never
## 6831                 Bisexual         Sometimes
## 6832  Heterosexual (straight)  Most of the time
## 6833           Some other way         Sometimes
## 6834  Heterosexual (straight)         Sometimes
## 6835                 Bisexual  Most of the time
## 6836  Heterosexual (straight)         Sometimes
## 6837  Heterosexual (straight)            Rarely
## 6838  Heterosexual (straight)         Sometimes
## 6839  Heterosexual (straight)             Never
## 6840  Heterosexual (straight)            Rarely
## 6841  Heterosexual (straight)         Sometimes
## 6842           Some other way              <NA>
## 6843  Heterosexual (straight)  Most of the time
## 6844  Heterosexual (straight)            Rarely
## 6845                 Bisexual            Rarely
## 6846  Heterosexual (straight)  Most of the time
## 6847           Gay or lesbian         Sometimes
## 6848  Heterosexual (straight)         Sometimes
## 6849  Heterosexual (straight)            Rarely
## 6850                 Bisexual            Always
## 6851  Heterosexual (straight)            Rarely
## 6852  Heterosexual (straight)            Rarely
## 6853  Heterosexual (straight)            Rarely
## 6854  Heterosexual (straight)         Sometimes
## 6855  Heterosexual (straight)             Never
## 6856  Heterosexual (straight)            Rarely
## 6857  Heterosexual (straight)            Rarely
## 6858  Heterosexual (straight)            Rarely
## 6859  Heterosexual (straight)            Rarely
## 6860  Heterosexual (straight)             Never
## 6861                 Not sure            Rarely
## 6862  Heterosexual (straight)  Most of the time
## 6863  Heterosexual (straight)            Rarely
## 6864           Gay or lesbian            Always
## 6865  Heterosexual (straight)  Most of the time
## 6866                 Bisexual  Most of the time
## 6867  Heterosexual (straight)             Never
## 6868           Some other way         Sometimes
## 6869  Heterosexual (straight)  Most of the time
## 6870           Gay or lesbian            Always
## 6871                 Bisexual  Most of the time
## 6872  Heterosexual (straight)         Sometimes
## 6873  Heterosexual (straight)             Never
## 6874  Heterosexual (straight)         Sometimes
## 6875  Heterosexual (straight)  Most of the time
## 6876                 Not sure         Sometimes
## 6877                 Bisexual  Most of the time
## 6878  Heterosexual (straight)         Sometimes
## 6879  Heterosexual (straight)         Sometimes
## 6880           Some other way  Most of the time
## 6881  Heterosexual (straight)         Sometimes
## 6882  Heterosexual (straight)         Sometimes
## 6883  Heterosexual (straight)         Sometimes
## 6884  Heterosexual (straight)         Sometimes
## 6885  Heterosexual (straight)            Rarely
## 6886  Heterosexual (straight)            Rarely
## 6887  Heterosexual (straight)             Never
## 6888  Heterosexual (straight)  Most of the time
## 6889           Gay or lesbian         Sometimes
## 6890  Heterosexual (straight)         Sometimes
## 6891  Heterosexual (straight)         Sometimes
## 6892  Heterosexual (straight)             Never
## 6893  Heterosexual (straight)  Most of the time
## 6894  Heterosexual (straight)             Never
## 6895                 Bisexual  Most of the time
## 6896  Heterosexual (straight)             Never
## 6897                 Not sure         Sometimes
## 6898  Heterosexual (straight)  Most of the time
## 6899  Heterosexual (straight)         Sometimes
## 6900  Heterosexual (straight)            Always
## 6901  Heterosexual (straight)            Always
## 6902  Heterosexual (straight)  Most of the time
## 6903  Heterosexual (straight)            Rarely
## 6904  Heterosexual (straight)             Never
## 6905  Heterosexual (straight)            Rarely
## 6906  Heterosexual (straight)  Most of the time
## 6907  Heterosexual (straight)            Rarely
## 6908  Heterosexual (straight)         Sometimes
## 6909  Heterosexual (straight)  Most of the time
## 6910  Heterosexual (straight)         Sometimes
## 6911  Heterosexual (straight)         Sometimes
## 6912  Heterosexual (straight)  Most of the time
## 6913  Heterosexual (straight)         Sometimes
## 6914  Heterosexual (straight)            Rarely
## 6915  Heterosexual (straight)         Sometimes
## 6916  Heterosexual (straight)         Sometimes
## 6917  Heterosexual (straight)  Most of the time
## 6918  Heterosexual (straight)             Never
## 6919  Heterosexual (straight)  Most of the time
## 6920  Heterosexual (straight)         Sometimes
## 6921  Heterosexual (straight)         Sometimes
## 6922  Heterosexual (straight)         Sometimes
## 6923  Heterosexual (straight)  Most of the time
## 6924  Heterosexual (straight)             Never
## 6925  Heterosexual (straight)         Sometimes
## 6926  Heterosexual (straight)  Most of the time
## 6927                 Bisexual            Always
## 6928  Heterosexual (straight)         Sometimes
## 6929  Heterosexual (straight)             Never
## 6930  Heterosexual (straight)  Most of the time
## 6931  Heterosexual (straight)         Sometimes
## 6932                 Bisexual  Most of the time
## 6933  Heterosexual (straight)             Never
## 6934           Gay or lesbian         Sometimes
## 6935  Heterosexual (straight)         Sometimes
## 6936  Heterosexual (straight)         Sometimes
## 6937  Heterosexual (straight)             Never
## 6938                 Bisexual            Always
## 6939           Some other way              <NA>
## 6940           Some other way  Most of the time
## 6941  Heterosexual (straight)             Never
## 6942  Heterosexual (straight)         Sometimes
## 6943  Heterosexual (straight)         Sometimes
## 6944                 Bisexual  Most of the time
## 6945  Heterosexual (straight)            Rarely
## 6946  Heterosexual (straight)         Sometimes
## 6947  Heterosexual (straight)         Sometimes
## 6948                 Not sure  Most of the time
## 6949  Heterosexual (straight)              <NA>
## 6950  Heterosexual (straight)            Always
## 6951                 Not sure  Most of the time
## 6952  Heterosexual (straight)            Rarely
## 6953                 Bisexual  Most of the time
## 6954  Heterosexual (straight)            Always
## 6955  Heterosexual (straight)         Sometimes
## 6956           Some other way  Most of the time
## 6957  Heterosexual (straight)  Most of the time
## 6958                 Bisexual         Sometimes
## 6959           Some other way            Always
## 6960  Heterosexual (straight)  Most of the time
## 6961  Heterosexual (straight)            Always
## 6962  Heterosexual (straight)  Most of the time
## 6963  Heterosexual (straight)             Never
## 6964  Heterosexual (straight)            Always
## 6965  Heterosexual (straight)         Sometimes
## 6966                 Bisexual            Always
## 6967  Heterosexual (straight)  Most of the time
## 6968  Heterosexual (straight)             Never
## 6969  Heterosexual (straight)            Rarely
## 6970  Heterosexual (straight)             Never
## 6971  Heterosexual (straight)         Sometimes
## 6972  Heterosexual (straight)         Sometimes
## 6973  Heterosexual (straight)            Rarely
## 6974  Heterosexual (straight)         Sometimes
## 6975  Heterosexual (straight)            Always
## 6976           Some other way            Always
## 6977  Heterosexual (straight)            Always
## 6978  Heterosexual (straight)  Most of the time
## 6979  Heterosexual (straight)            Always
## 6980  Heterosexual (straight)  Most of the time
## 6981  Heterosexual (straight)            Rarely
## 6982  Heterosexual (straight)         Sometimes
## 6983  Heterosexual (straight)             Never
## 6984  Heterosexual (straight)         Sometimes
## 6985                 Bisexual         Sometimes
## 6986  Heterosexual (straight)  Most of the time
## 6987  Heterosexual (straight)             Never
## 6988  Heterosexual (straight)         Sometimes
## 6989  Heterosexual (straight)            Rarely
## 6990  Heterosexual (straight)            Rarely
## 6991  Heterosexual (straight)            Rarely
## 6992  Heterosexual (straight)            Rarely
## 6993  Heterosexual (straight)         Sometimes
## 6994  Heterosexual (straight)            Always
## 6995  Heterosexual (straight)            Always
## 6996  Heterosexual (straight)         Sometimes
## 6997  Heterosexual (straight)            Always
## 6998  Heterosexual (straight)            Rarely
## 6999                 Bisexual         Sometimes
## 7000  Heterosexual (straight)              <NA>
## 7001  Heterosexual (straight)         Sometimes
## 7002           Some other way            Always
## 7003  Heterosexual (straight)         Sometimes
## 7004  Heterosexual (straight)            Always
## 7005  Heterosexual (straight)            Rarely
## 7006  Heterosexual (straight)             Never
## 7007  Heterosexual (straight)         Sometimes
## 7008  Heterosexual (straight)         Sometimes
## 7009  Heterosexual (straight)  Most of the time
## 7010  Heterosexual (straight)         Sometimes
## 7011  Heterosexual (straight)  Most of the time
## 7012  Heterosexual (straight)  Most of the time
## 7013  Heterosexual (straight)         Sometimes
## 7014  Heterosexual (straight)  Most of the time
## 7015  Heterosexual (straight)             Never
## 7016  Heterosexual (straight)         Sometimes
## 7017  Heterosexual (straight)         Sometimes
## 7018  Heterosexual (straight)             Never
## 7019  Heterosexual (straight)  Most of the time
## 7020  Heterosexual (straight)  Most of the time
## 7021  Heterosexual (straight)             Never
## 7022  Heterosexual (straight)             Never
## 7023  Heterosexual (straight)            Rarely
## 7024  Heterosexual (straight)         Sometimes
## 7025                 Not sure         Sometimes
## 7026  Heterosexual (straight)            Rarely
## 7027  Heterosexual (straight)            Rarely
## 7028  Heterosexual (straight)             Never
## 7029  Heterosexual (straight)             Never
## 7030  Heterosexual (straight)            Always
## 7031  Heterosexual (straight)         Sometimes
## 7032  Heterosexual (straight)  Most of the time
## 7033  Heterosexual (straight)            Always
## 7034  Heterosexual (straight)  Most of the time
## 7035  Heterosexual (straight)            Always
## 7036  Heterosexual (straight)            Rarely
## 7037  Heterosexual (straight)         Sometimes
## 7038  Heterosexual (straight)             Never
## 7039  Heterosexual (straight)            Always
## 7040  Heterosexual (straight)  Most of the time
## 7041  Heterosexual (straight)         Sometimes
## 7042  Heterosexual (straight)             Never
## 7043  Heterosexual (straight)  Most of the time
## 7044  Heterosexual (straight)             Never
## 7045  Heterosexual (straight)         Sometimes
## 7046  Heterosexual (straight)  Most of the time
## 7047  Heterosexual (straight)  Most of the time
## 7048  Heterosexual (straight)  Most of the time
## 7049  Heterosexual (straight)  Most of the time
## 7050  Heterosexual (straight)              <NA>
## 7051  Heterosexual (straight)         Sometimes
## 7052           Gay or lesbian         Sometimes
## 7053  Heterosexual (straight)            Rarely
## 7054  Heterosexual (straight)             Never
## 7055                 Bisexual  Most of the time
## 7056  Heterosexual (straight)  Most of the time
## 7057  Heterosexual (straight)         Sometimes
## 7058  Heterosexual (straight)            Rarely
## 7059                 Bisexual  Most of the time
## 7060  Heterosexual (straight)              <NA>
## 7061  Heterosexual (straight)         Sometimes
## 7062  Heterosexual (straight)            Rarely
## 7063  Heterosexual (straight)             Never
## 7064  Heterosexual (straight)            Rarely
## 7065           Some other way  Most of the time
## 7066  Heterosexual (straight)             Never
## 7067                 Bisexual  Most of the time
## 7068  Heterosexual (straight)            Always
## 7069  Heterosexual (straight)         Sometimes
## 7070  Heterosexual (straight)             Never
## 7071  Heterosexual (straight)            Rarely
## 7072  Heterosexual (straight)            Rarely
## 7073  Heterosexual (straight)            Rarely
## 7074  Heterosexual (straight)             Never
## 7075  Heterosexual (straight)  Most of the time
## 7076  Heterosexual (straight)  Most of the time
## 7077  Heterosexual (straight)             Never
## 7078  Heterosexual (straight)         Sometimes
## 7079  Heterosexual (straight)            Rarely
## 7080  Heterosexual (straight)            Rarely
## 7081  Heterosexual (straight)         Sometimes
## 7082  Heterosexual (straight)            Rarely
## 7083  Heterosexual (straight)         Sometimes
## 7084  Heterosexual (straight)         Sometimes
## 7085  Heterosexual (straight)         Sometimes
## 7086           Some other way            Always
## 7087  Heterosexual (straight)            Rarely
## 7088  Heterosexual (straight)            Rarely
## 7089  Heterosexual (straight)             Never
## 7090  Heterosexual (straight)  Most of the time
## 7091  Heterosexual (straight)            Rarely
## 7092                 Bisexual            Always
## 7093  Heterosexual (straight)            Always
## 7094  Heterosexual (straight)         Sometimes
## 7095           Some other way  Most of the time
## 7096  Heterosexual (straight)            Rarely
## 7097  Heterosexual (straight)             Never
## 7098  Heterosexual (straight)  Most of the time
## 7099                 Not sure  Most of the time
## 7100  Heterosexual (straight)            Rarely
## 7101           Some other way  Most of the time
## 7102                 Not sure            Rarely
## 7103  Heterosexual (straight)            Rarely
## 7104           Some other way         Sometimes
## 7105                 Bisexual  Most of the time
## 7106  Heterosexual (straight)  Most of the time
## 7107  Heterosexual (straight)         Sometimes
## 7108  Heterosexual (straight)             Never
## 7109  Heterosexual (straight)         Sometimes
## 7110  Heterosexual (straight)         Sometimes
## 7111                 Bisexual            Always
## 7112           Some other way         Sometimes
## 7113  Heterosexual (straight)  Most of the time
## 7114  Heterosexual (straight)            Rarely
## 7115  Heterosexual (straight)            Rarely
## 7116  Heterosexual (straight)            Rarely
## 7117  Heterosexual (straight)            Rarely
## 7118  Heterosexual (straight)         Sometimes
## 7119  Heterosexual (straight)         Sometimes
## 7120  Heterosexual (straight)            Rarely
## 7121                 Bisexual            Always
## 7122  Heterosexual (straight)  Most of the time
## 7123  Heterosexual (straight)             Never
## 7124  Heterosexual (straight)             Never
## 7125                 Bisexual            Rarely
## 7126  Heterosexual (straight)             Never
## 7127  Heterosexual (straight)            Rarely
## 7128  Heterosexual (straight)            Rarely
## 7129  Heterosexual (straight)  Most of the time
## 7130  Heterosexual (straight)            Rarely
## 7131                 Not sure  Most of the time
## 7132  Heterosexual (straight)         Sometimes
## 7133  Heterosexual (straight)            Rarely
## 7134  Heterosexual (straight)         Sometimes
## 7135  Heterosexual (straight)            Always
## 7136           Some other way  Most of the time
## 7137  Heterosexual (straight)         Sometimes
## 7138  Heterosexual (straight)         Sometimes
## 7139  Heterosexual (straight)  Most of the time
## 7140  Heterosexual (straight)            Rarely
## 7141  Heterosexual (straight)            Rarely
## 7142  Heterosexual (straight)            Rarely
## 7143  Heterosexual (straight)  Most of the time
## 7144           Some other way  Most of the time
## 7145  Heterosexual (straight)             Never
## 7146  Heterosexual (straight)  Most of the time
## 7147  Heterosexual (straight)         Sometimes
## 7148                 Not sure  Most of the time
## 7149  Heterosexual (straight)  Most of the time
## 7150  Heterosexual (straight)            Always
## 7151                 Bisexual  Most of the time
## 7152  Heterosexual (straight)             Never
## 7153  Heterosexual (straight)  Most of the time
## 7154  Heterosexual (straight)         Sometimes
## 7155  Heterosexual (straight)         Sometimes
## 7156  Heterosexual (straight)            Always
## 7157  Heterosexual (straight)         Sometimes
## 7158  Heterosexual (straight)             Never
## 7159  Heterosexual (straight)         Sometimes
## 7160  Heterosexual (straight)  Most of the time
## 7161                 Not sure            Always
## 7162  Heterosexual (straight)             Never
## 7163                 Bisexual  Most of the time
## 7164  Heterosexual (straight)         Sometimes
## 7165                 Not sure         Sometimes
## 7166  Heterosexual (straight)            Rarely
## 7167           Gay or lesbian  Most of the time
## 7168           Gay or lesbian            Rarely
## 7169  Heterosexual (straight)            Rarely
## 7170  Heterosexual (straight)            Rarely
## 7171  Heterosexual (straight)         Sometimes
## 7172  Heterosexual (straight)            Rarely
## 7173  Heterosexual (straight)         Sometimes
## 7174  Heterosexual (straight)         Sometimes
## 7175                 Not sure  Most of the time
## 7176  Heterosexual (straight)              <NA>
## 7177  Heterosexual (straight)            Rarely
## 7178                 Not sure  Most of the time
## 7179           Gay or lesbian            Rarely
## 7180  Heterosexual (straight)  Most of the time
## 7181  Heterosexual (straight)             Never
## 7182  Heterosexual (straight)         Sometimes
## 7183  Heterosexual (straight)             Never
## 7184  Heterosexual (straight)         Sometimes
## 7185  Heterosexual (straight)         Sometimes
## 7186  Heterosexual (straight)  Most of the time
## 7187  Heterosexual (straight)             Never
## 7188  Heterosexual (straight)            Always
## 7189  Heterosexual (straight)  Most of the time
## 7190                 Bisexual         Sometimes
## 7191  Heterosexual (straight)  Most of the time
## 7192  Heterosexual (straight)            Rarely
## 7193  Heterosexual (straight)  Most of the time
## 7194                 Bisexual             Never
## 7195  Heterosexual (straight)             Never
## 7196  Heterosexual (straight)  Most of the time
## 7197                 Not sure  Most of the time
## 7198  Heterosexual (straight)            Rarely
## 7199  Heterosexual (straight)             Never
## 7200  Heterosexual (straight)         Sometimes
## 7201  Heterosexual (straight)  Most of the time
## 7202  Heterosexual (straight)  Most of the time
## 7203  Heterosexual (straight)         Sometimes
## 7204  Heterosexual (straight)            Rarely
## 7205  Heterosexual (straight)         Sometimes
## 7206  Heterosexual (straight)             Never
## 7207  Heterosexual (straight)  Most of the time
## 7208  Heterosexual (straight)         Sometimes
## 7209  Heterosexual (straight)            Rarely
## 7210  Heterosexual (straight)              <NA>
## 7211                 Not sure              <NA>
## 7212  Heterosexual (straight)  Most of the time
## 7213  Heterosexual (straight)  Most of the time
## 7214  Heterosexual (straight)             Never
## 7215  Heterosexual (straight)         Sometimes
## 7216  Heterosexual (straight)  Most of the time
## 7217                 Not sure             Never
## 7218  Heterosexual (straight)  Most of the time
## 7219  Heterosexual (straight)  Most of the time
## 7220           Gay or lesbian  Most of the time
## 7221  Heterosexual (straight)         Sometimes
## 7222  Heterosexual (straight)  Most of the time
## 7223  Heterosexual (straight)              <NA>
## 7224  Heterosexual (straight)             Never
## 7225  Heterosexual (straight)            Always
## 7226           Gay or lesbian         Sometimes
## 7227  Heterosexual (straight)             Never
## 7228  Heterosexual (straight)            Rarely
## 7229  Heterosexual (straight)              <NA>
## 7230  Heterosexual (straight)            Always
## 7231                 Not sure            Always
## 7232  Heterosexual (straight)         Sometimes
## 7233  Heterosexual (straight)  Most of the time
## 7234  Heterosexual (straight)         Sometimes
## 7235  Heterosexual (straight)             Never
## 7236  Heterosexual (straight)         Sometimes
## 7237           Gay or lesbian            Always
## 7238                 Not sure  Most of the time
## 7239  Heterosexual (straight)            Rarely
## 7240                 Not sure  Most of the time
## 7241  Heterosexual (straight)  Most of the time
## 7242  Heterosexual (straight)              <NA>
## 7243                 Bisexual            Always
## 7244  Heterosexual (straight)             Never
## 7245  Heterosexual (straight)         Sometimes
## 7246  Heterosexual (straight)             Never
## 7247  Heterosexual (straight)            Rarely
## 7248  Heterosexual (straight)             Never
## 7249  Heterosexual (straight)         Sometimes
## 7250  Heterosexual (straight)              <NA>
## 7251  Heterosexual (straight)             Never
## 7252  Heterosexual (straight)  Most of the time
## 7253  Heterosexual (straight)            Rarely
## 7254  Heterosexual (straight)             Never
## 7255                 Not sure  Most of the time
## 7256                 Bisexual         Sometimes
## 7257  Heterosexual (straight)         Sometimes
## 7258  Heterosexual (straight)         Sometimes
## 7259  Heterosexual (straight)            Rarely
## 7260           Gay or lesbian  Most of the time
## 7261  Heterosexual (straight)         Sometimes
## 7262  Heterosexual (straight)            Rarely
## 7263  Heterosexual (straight)            Rarely
## 7264  Heterosexual (straight)            Rarely
## 7265  Heterosexual (straight)             Never
## 7266  Heterosexual (straight)  Most of the time
## 7267  Heterosexual (straight)            Rarely
## 7268  Heterosexual (straight)            Rarely
## 7269  Heterosexual (straight)         Sometimes
## 7270                 Not sure  Most of the time
## 7271  Heterosexual (straight)            Rarely
## 7272  Heterosexual (straight)             Never
## 7273                 Bisexual         Sometimes
## 7274  Heterosexual (straight)            Rarely
## 7275  Heterosexual (straight)             Never
## 7276           Gay or lesbian            Rarely
## 7277  Heterosexual (straight)         Sometimes
## 7278  Heterosexual (straight)             Never
## 7279           Gay or lesbian             Never
## 7280  Heterosexual (straight)         Sometimes
## 7281           Some other way  Most of the time
## 7282           Gay or lesbian  Most of the time
## 7283  Heterosexual (straight)         Sometimes
## 7284           Some other way              <NA>
## 7285  Heterosexual (straight)            Rarely
## 7286  Heterosexual (straight)         Sometimes
## 7287  Heterosexual (straight)             Never
## 7288           Some other way         Sometimes
## 7289  Heterosexual (straight)            Rarely
## 7290  Heterosexual (straight)            Rarely
## 7291  Heterosexual (straight)            Rarely
## 7292  Heterosexual (straight)             Never
## 7293  Heterosexual (straight)            Always
## 7294           Some other way         Sometimes
## 7295  Heterosexual (straight)             Never
## 7296  Heterosexual (straight)            Rarely
## 7297  Heterosexual (straight)         Sometimes
## 7298  Heterosexual (straight)            Rarely
## 7299  Heterosexual (straight)             Never
## 7300  Heterosexual (straight)             Never
## 7301                 Bisexual              <NA>
## 7302  Heterosexual (straight)             Never
## 7303  Heterosexual (straight)         Sometimes
## 7304  Heterosexual (straight)         Sometimes
## 7305  Heterosexual (straight)             Never
## 7306                 Bisexual  Most of the time
## 7307                 Bisexual             Never
## 7308  Heterosexual (straight)             Never
## 7309  Heterosexual (straight)            Always
## 7310  Heterosexual (straight)         Sometimes
## 7311  Heterosexual (straight)            Rarely
## 7312  Heterosexual (straight)  Most of the time
## 7313  Heterosexual (straight)  Most of the time
## 7314  Heterosexual (straight)  Most of the time
## 7315  Heterosexual (straight)            Rarely
## 7316  Heterosexual (straight)             Never
## 7317  Heterosexual (straight)             Never
## 7318  Heterosexual (straight)         Sometimes
## 7319  Heterosexual (straight)            Rarely
## 7320  Heterosexual (straight)            Always
## 7321  Heterosexual (straight)             Never
## 7322  Heterosexual (straight)             Never
## 7323  Heterosexual (straight)  Most of the time
## 7324  Heterosexual (straight)  Most of the time
## 7325  Heterosexual (straight)  Most of the time
## 7326  Heterosexual (straight)            Rarely
## 7327           Some other way              <NA>
## 7328  Heterosexual (straight)             Never
## 7329  Heterosexual (straight)         Sometimes
## 7330  Heterosexual (straight)         Sometimes
## 7331  Heterosexual (straight)            Rarely
## 7332                 Bisexual  Most of the time
## 7333  Heterosexual (straight)         Sometimes
## 7334  Heterosexual (straight)             Never
## 7335                 Bisexual  Most of the time
## 7336                 Bisexual  Most of the time
## 7337  Heterosexual (straight)            Always
## 7338  Heterosexual (straight)  Most of the time
## 7339  Heterosexual (straight)  Most of the time
## 7340  Heterosexual (straight)  Most of the time
## 7341  Heterosexual (straight)             Never
## 7342           Some other way            Always
## 7343                 Bisexual         Sometimes
## 7344           Gay or lesbian         Sometimes
## 7345  Heterosexual (straight)            Rarely
## 7346  Heterosexual (straight)  Most of the time
## 7347  Heterosexual (straight)         Sometimes
## 7348                 Bisexual            Rarely
## 7349  Heterosexual (straight)         Sometimes
## 7350  Heterosexual (straight)            Rarely
## 7351  Heterosexual (straight)  Most of the time
## 7352  Heterosexual (straight)         Sometimes
## 7353  Heterosexual (straight)  Most of the time
## 7354  Heterosexual (straight)            Rarely
## 7355  Heterosexual (straight)         Sometimes
## 7356  Heterosexual (straight)            Always
## 7357  Heterosexual (straight)            Rarely
## 7358                 Bisexual         Sometimes
## 7359  Heterosexual (straight)         Sometimes
## 7360  Heterosexual (straight)         Sometimes
## 7361  Heterosexual (straight)            Rarely
## 7362  Heterosexual (straight)            Rarely
## 7363                 Not sure  Most of the time
## 7364                 Bisexual  Most of the time
## 7365  Heterosexual (straight)              <NA>
## 7366                 Bisexual         Sometimes
## 7367  Heterosexual (straight)  Most of the time
## 7368  Heterosexual (straight)         Sometimes
## 7369  Heterosexual (straight)            Rarely
## 7370  Heterosexual (straight)  Most of the time
## 7371  Heterosexual (straight)         Sometimes
## 7372  Heterosexual (straight)            Always
## 7373  Heterosexual (straight)            Rarely
## 7374                 Bisexual         Sometimes
## 7375  Heterosexual (straight)            Rarely
## 7376  Heterosexual (straight)         Sometimes
## 7377                 Bisexual            Always
## 7378  Heterosexual (straight)            Rarely
## 7379  Heterosexual (straight)         Sometimes
## 7380           Gay or lesbian  Most of the time
## 7381                 Bisexual  Most of the time
## 7382                 Bisexual              <NA>
## 7383  Heterosexual (straight)         Sometimes
## 7384  Heterosexual (straight)  Most of the time
## 7385  Heterosexual (straight)         Sometimes
## 7386                 Not sure            Rarely
## 7387  Heterosexual (straight)  Most of the time
## 7388  Heterosexual (straight)            Rarely
## 7389  Heterosexual (straight)         Sometimes
## 7390  Heterosexual (straight)             Never
## 7391  Heterosexual (straight)         Sometimes
## 7392                 Bisexual  Most of the time
## 7393  Heterosexual (straight)         Sometimes
## 7394  Heterosexual (straight)            Rarely
## 7395  Heterosexual (straight)            Rarely
## 7396           Some other way  Most of the time
## 7397  Heterosexual (straight)  Most of the time
## 7398  Heterosexual (straight)         Sometimes
## 7399  Heterosexual (straight)  Most of the time
## 7400           Gay or lesbian  Most of the time
## 7401  Heterosexual (straight)  Most of the time
## 7402  Heterosexual (straight)             Never
## 7403  Heterosexual (straight)            Rarely
## 7404  Heterosexual (straight)            Rarely
## 7405  Heterosexual (straight)         Sometimes
## 7406  Heterosexual (straight)            Always
## 7407                 Bisexual            Always
## 7408                 Bisexual  Most of the time
## 7409  Heterosexual (straight)            Always
## 7410  Heterosexual (straight)             Never
## 7411  Heterosexual (straight)            Always
## 7412  Heterosexual (straight)            Rarely
## 7413                 Bisexual            Always
## 7414  Heterosexual (straight)             Never
## 7415                 Not sure            Always
## 7416  Heterosexual (straight)            Rarely
## 7417  Heterosexual (straight)  Most of the time
## 7418           Some other way         Sometimes
## 7419  Heterosexual (straight)  Most of the time
## 7420  Heterosexual (straight)  Most of the time
## 7421  Heterosexual (straight)  Most of the time
## 7422                 Bisexual            Rarely
## 7423  Heterosexual (straight)         Sometimes
## 7424                 Bisexual         Sometimes
## 7425  Heterosexual (straight)            Rarely
## 7426           Some other way  Most of the time
## 7427  Heterosexual (straight)            Rarely
## 7428                 Bisexual  Most of the time
## 7429  Heterosexual (straight)         Sometimes
## 7430  Heterosexual (straight)  Most of the time
## 7431  Heterosexual (straight)  Most of the time
## 7432  Heterosexual (straight)            Rarely
## 7433  Heterosexual (straight)         Sometimes
## 7434           Gay or lesbian            Always
## 7435                 Not sure  Most of the time
## 7436  Heterosexual (straight)            Rarely
## 7437  Heterosexual (straight)         Sometimes
## 7438  Heterosexual (straight)             Never
## 7439  Heterosexual (straight)            Rarely
## 7440  Heterosexual (straight)            Rarely
## 7441  Heterosexual (straight)             Never
## 7442  Heterosexual (straight)         Sometimes
## 7443  Heterosexual (straight)         Sometimes
## 7444  Heterosexual (straight)            Rarely
## 7445                 Not sure  Most of the time
## 7446  Heterosexual (straight)         Sometimes
## 7447  Heterosexual (straight)            Rarely
## 7448           Some other way         Sometimes
## 7449  Heterosexual (straight)             Never
## 7450                 Bisexual            Always
## 7451  Heterosexual (straight)  Most of the time
## 7452           Gay or lesbian  Most of the time
## 7453                 Bisexual         Sometimes
## 7454  Heterosexual (straight)            Rarely
## 7455  Heterosexual (straight)             Never
## 7456                 Not sure  Most of the time
## 7457                 Bisexual  Most of the time
## 7458  Heterosexual (straight)         Sometimes
## 7459  Heterosexual (straight)            Always
## 7460  Heterosexual (straight)            Rarely
## 7461  Heterosexual (straight)  Most of the time
## 7462  Heterosexual (straight)             Never
## 7463  Heterosexual (straight)         Sometimes
## 7464  Heterosexual (straight)         Sometimes
## 7465  Heterosexual (straight)  Most of the time
## 7466           Some other way            Always
## 7467  Heterosexual (straight)         Sometimes
## 7468  Heterosexual (straight)         Sometimes
## 7469  Heterosexual (straight)         Sometimes
## 7470  Heterosexual (straight)         Sometimes
## 7471  Heterosexual (straight)            Rarely
## 7472  Heterosexual (straight)  Most of the time
## 7473           Some other way  Most of the time
## 7474  Heterosexual (straight)            Rarely
## 7475  Heterosexual (straight)  Most of the time
## 7476           Some other way         Sometimes
## 7477  Heterosexual (straight)             Never
## 7478  Heterosexual (straight)             Never
## 7479  Heterosexual (straight)            Rarely
## 7480  Heterosexual (straight)         Sometimes
## 7481  Heterosexual (straight)            Rarely
## 7482  Heterosexual (straight)             Never
## 7483  Heterosexual (straight)  Most of the time
## 7484  Heterosexual (straight)         Sometimes
## 7485  Heterosexual (straight)             Never
## 7486  Heterosexual (straight)            Rarely
## 7487  Heterosexual (straight)            Rarely
## 7488  Heterosexual (straight)             Never
## 7489  Heterosexual (straight)             Never
## 7490  Heterosexual (straight)            Rarely
## 7491  Heterosexual (straight)             Never
## 7492  Heterosexual (straight)         Sometimes
## 7493  Heterosexual (straight)            Rarely
## 7494  Heterosexual (straight)  Most of the time
## 7495  Heterosexual (straight)         Sometimes
## 7496  Heterosexual (straight)  Most of the time
## 7497                 Bisexual            Always
## 7498  Heterosexual (straight)         Sometimes
## 7499           Gay or lesbian  Most of the time
## 7500  Heterosexual (straight)         Sometimes
## 7501           Gay or lesbian         Sometimes
## 7502  Heterosexual (straight)  Most of the time
## 7503                 Bisexual  Most of the time
## 7504  Heterosexual (straight)         Sometimes
## 7505  Heterosexual (straight)            Rarely
## 7506  Heterosexual (straight)  Most of the time
## 7507                 Not sure         Sometimes
## 7508  Heterosexual (straight)            Rarely
## 7509  Heterosexual (straight)            Always
## 7510           Some other way            Rarely
## 7511  Heterosexual (straight)            Always
## 7512  Heterosexual (straight)         Sometimes
## 7513  Heterosexual (straight)            Rarely
## 7514  Heterosexual (straight)             Never
## 7515  Heterosexual (straight)  Most of the time
## 7516                 Bisexual            Always
## 7517  Heterosexual (straight)  Most of the time
## 7518  Heterosexual (straight)         Sometimes
## 7519  Heterosexual (straight)  Most of the time
## 7520  Heterosexual (straight)         Sometimes
## 7521  Heterosexual (straight)             Never
## 7522                 Bisexual            Rarely
## 7523  Heterosexual (straight)         Sometimes
## 7524           Gay or lesbian            Rarely
## 7525           Gay or lesbian  Most of the time
## 7526  Heterosexual (straight)  Most of the time
## 7527           Some other way         Sometimes
## 7528                 Bisexual  Most of the time
## 7529  Heterosexual (straight)         Sometimes
## 7530  Heterosexual (straight)            Rarely
## 7531  Heterosexual (straight)         Sometimes
## 7532                 Not sure  Most of the time
## 7533  Heterosexual (straight)            Rarely
## 7534  Heterosexual (straight)            Rarely
## 7535                 Bisexual            Always
## 7536                 Not sure  Most of the time
## 7537  Heterosexual (straight)             Never
## 7538  Heterosexual (straight)            Always
## 7539  Heterosexual (straight)              <NA>
## 7540  Heterosexual (straight)         Sometimes
## 7541  Heterosexual (straight)            Rarely
## 7542  Heterosexual (straight)         Sometimes
## 7543  Heterosexual (straight)         Sometimes
## 7544           Gay or lesbian  Most of the time
## 7545  Heterosexual (straight)            Rarely
## 7546                 Bisexual  Most of the time
## 7547                 Not sure         Sometimes
## 7548  Heterosexual (straight)             Never
## 7549                 Bisexual         Sometimes
## 7550  Heterosexual (straight)            Rarely
## 7551  Heterosexual (straight)            Rarely
## 7552  Heterosexual (straight)  Most of the time
## 7553                 Bisexual         Sometimes
## 7554  Heterosexual (straight)  Most of the time
## 7555  Heterosexual (straight)         Sometimes
## 7556  Heterosexual (straight)         Sometimes
## 7557  Heterosexual (straight)         Sometimes
## 7558  Heterosexual (straight)  Most of the time
## 7559  Heterosexual (straight)         Sometimes
## 7560  Heterosexual (straight)         Sometimes
## 7561           Gay or lesbian            Always
## 7562  Heterosexual (straight)             Never
## 7563  Heterosexual (straight)              <NA>
## 7564                 Not sure             Never
## 7565  Heterosexual (straight)         Sometimes
## 7566  Heterosexual (straight)             Never
## 7567  Heterosexual (straight)         Sometimes
## 7568  Heterosexual (straight)            Rarely
## 7569  Heterosexual (straight)         Sometimes
## 7570  Heterosexual (straight)             Never
## 7571  Heterosexual (straight)             Never
## 7572  Heterosexual (straight)            Rarely
## 7573  Heterosexual (straight)            Rarely
## 7574  Heterosexual (straight)            Rarely
## 7575  Heterosexual (straight)  Most of the time
## 7576  Heterosexual (straight)            Rarely
## 7577  Heterosexual (straight)  Most of the time
## 7578  Heterosexual (straight)             Never
## 7579  Heterosexual (straight)            Rarely
## 7580                 Bisexual             Never
## 7581           Some other way            Always
## 7582  Heterosexual (straight)             Never
## 7583                 Not sure  Most of the time
## 7584  Heterosexual (straight)            Rarely
## 7585  Heterosexual (straight)            Rarely
## 7586  Heterosexual (straight)            Always
## 7587  Heterosexual (straight)              <NA>
## 7588  Heterosexual (straight)         Sometimes
## 7589                 Bisexual            Rarely
## 7590  Heterosexual (straight)         Sometimes
## 7591                 Bisexual            Always
## 7592                 Bisexual              <NA>
## 7593  Heterosexual (straight)            Rarely
## 7594  Heterosexual (straight)         Sometimes
## 7595  Heterosexual (straight)             Never
## 7596                 Not sure  Most of the time
## 7597  Heterosexual (straight)         Sometimes
## 7598  Heterosexual (straight)         Sometimes
## 7599  Heterosexual (straight)         Sometimes
## 7600  Heterosexual (straight)  Most of the time
## 7601  Heterosexual (straight)         Sometimes
## 7602  Heterosexual (straight)             Never
## 7603  Heterosexual (straight)  Most of the time
## 7604  Heterosexual (straight)             Never
## 7605           Some other way         Sometimes
## 7606  Heterosexual (straight)         Sometimes
## 7607  Heterosexual (straight)              <NA>
## 7608  Heterosexual (straight)             Never
## 7609           Gay or lesbian            Rarely
## 7610  Heterosexual (straight)             Never
## 7611  Heterosexual (straight)            Rarely
## 7612  Heterosexual (straight)             Never
## 7613  Heterosexual (straight)         Sometimes
## 7614  Heterosexual (straight)             Never
## 7615  Heterosexual (straight)            Rarely
## 7616  Heterosexual (straight)            Rarely
## 7617  Heterosexual (straight)  Most of the time
## 7618  Heterosexual (straight)         Sometimes
## 7619           Gay or lesbian  Most of the time
## 7620  Heterosexual (straight)         Sometimes
## 7621  Heterosexual (straight)         Sometimes
## 7622  Heterosexual (straight)         Sometimes
## 7623  Heterosexual (straight)            Rarely
## 7624           Gay or lesbian              <NA>
## 7625  Heterosexual (straight)            Rarely
## 7626  Heterosexual (straight)             Never
## 7627           Gay or lesbian             Never
## 7628  Heterosexual (straight)         Sometimes
## 7629  Heterosexual (straight)             Never
## 7630  Heterosexual (straight)             Never
## 7631           Some other way  Most of the time
## 7632  Heterosexual (straight)             Never
## 7633  Heterosexual (straight)            Rarely
## 7634  Heterosexual (straight)         Sometimes
## 7635  Heterosexual (straight)             Never
## 7636           Gay or lesbian         Sometimes
## 7637  Heterosexual (straight)             Never
## 7638  Heterosexual (straight)  Most of the time
## 7639                 Bisexual  Most of the time
## 7640                 Not sure         Sometimes
## 7641  Heterosexual (straight)         Sometimes
## 7642                 Bisexual  Most of the time
## 7643  Heterosexual (straight)         Sometimes
## 7644                 Not sure            Rarely
## 7645  Heterosexual (straight)         Sometimes
## 7646                 Bisexual  Most of the time
## 7647                 Bisexual  Most of the time
## 7648           Some other way  Most of the time
## 7649                 Bisexual         Sometimes
## 7650  Heterosexual (straight)  Most of the time
## 7651  Heterosexual (straight)            Always
## 7652  Heterosexual (straight)             Never
## 7653  Heterosexual (straight)            Rarely
## 7654  Heterosexual (straight)             Never
## 7655  Heterosexual (straight)         Sometimes
## 7656  Heterosexual (straight)             Never
## 7657  Heterosexual (straight)              <NA>
## 7658  Heterosexual (straight)  Most of the time
## 7659  Heterosexual (straight)            Rarely
## 7660  Heterosexual (straight)            Rarely
## 7661  Heterosexual (straight)             Never
## 7662  Heterosexual (straight)             Never
## 7663  Heterosexual (straight)             Never
## 7664                 Bisexual         Sometimes
## 7665                 Bisexual         Sometimes
## 7666           Some other way  Most of the time
## 7667  Heterosexual (straight)            Rarely
## 7668  Heterosexual (straight)         Sometimes
## 7669                 Bisexual            Rarely
## 7670  Heterosexual (straight)            Rarely
## 7671  Heterosexual (straight)  Most of the time
## 7672  Heterosexual (straight)         Sometimes
## 7673  Heterosexual (straight)  Most of the time
## 7674                 Not sure            Rarely
## 7675  Heterosexual (straight)            Rarely
## 7676           Some other way  Most of the time
## 7677  Heterosexual (straight)            Rarely
## 7678  Heterosexual (straight)            Rarely
## 7679  Heterosexual (straight)             Never
## 7680                 Bisexual            Always
## 7681                 Not sure            Always
## 7682  Heterosexual (straight)         Sometimes
## 7683  Heterosexual (straight)         Sometimes
## 7684  Heterosexual (straight)              <NA>
## 7685           Some other way  Most of the time
## 7686  Heterosexual (straight)  Most of the time
## 7687                 Bisexual            Always
## 7688                 Bisexual            Rarely
## 7689  Heterosexual (straight)            Rarely
## 7690           Gay or lesbian            Always
## 7691  Heterosexual (straight)  Most of the time
## 7692           Gay or lesbian         Sometimes
## 7693  Heterosexual (straight)              <NA>
## 7694  Heterosexual (straight)         Sometimes
## 7695  Heterosexual (straight)         Sometimes
## 7696  Heterosexual (straight)             Never
## 7697  Heterosexual (straight)             Never
## 7698  Heterosexual (straight)            Always
## 7699  Heterosexual (straight)             Never
## 7700  Heterosexual (straight)  Most of the time
## 7701                 Not sure  Most of the time
## 7702  Heterosexual (straight)              <NA>
## 7703  Heterosexual (straight)             Never
## 7704           Gay or lesbian  Most of the time
## 7705                 Not sure              <NA>
## 7706  Heterosexual (straight)            Rarely
## 7707  Heterosexual (straight)             Never
## 7708  Heterosexual (straight)            Rarely
## 7709                 Not sure            Rarely
## 7710                 Not sure            Always
## 7711           Some other way            Rarely
## 7712  Heterosexual (straight)             Never
## 7713                 Bisexual  Most of the time
## 7714           Gay or lesbian  Most of the time
## 7715  Heterosexual (straight)             Never
## 7716           Gay or lesbian  Most of the time
## 7717  Heterosexual (straight)            Rarely
## 7718  Heterosexual (straight)             Never
## 7719  Heterosexual (straight)  Most of the time
## 7720  Heterosexual (straight)             Never
## 7721                 Bisexual            Always
## 7722  Heterosexual (straight)         Sometimes
## 7723                 Bisexual  Most of the time
## 7724                 Bisexual  Most of the time
## 7725  Heterosexual (straight)  Most of the time
## 7726  Heterosexual (straight)         Sometimes
## 7727  Heterosexual (straight)         Sometimes
## 7728  Heterosexual (straight)             Never
## 7729  Heterosexual (straight)             Never
## 7730  Heterosexual (straight)         Sometimes
## 7731           Gay or lesbian             Never
## 7732  Heterosexual (straight)         Sometimes
## 7733  Heterosexual (straight)              <NA>
## 7734  Heterosexual (straight)  Most of the time
## 7735  Heterosexual (straight)         Sometimes
## 7736                 Bisexual            Rarely
## 7737                 Bisexual  Most of the time
## 7738  Heterosexual (straight)         Sometimes
## 7739  Heterosexual (straight)  Most of the time
## 7740  Heterosexual (straight)              <NA>
## 7741  Heterosexual (straight)  Most of the time
## 7742  Heterosexual (straight)            Rarely
## 7743  Heterosexual (straight)            Rarely
## 7744  Heterosexual (straight)         Sometimes
## 7745                 Bisexual         Sometimes
## 7746  Heterosexual (straight)  Most of the time
## 7747  Heterosexual (straight)         Sometimes
## 7748  Heterosexual (straight)  Most of the time
## 7749           Some other way            Always
## 7750  Heterosexual (straight)            Rarely
## 7751  Heterosexual (straight)             Never
## 7752                 Bisexual             Never
## 7753                 Bisexual            Rarely
## 7754                 Bisexual  Most of the time
## 7755  Heterosexual (straight)            Rarely
## 7756  Heterosexual (straight)  Most of the time
## 7757  Heterosexual (straight)         Sometimes
## 7758  Heterosexual (straight)  Most of the time
## 7759  Heterosexual (straight)         Sometimes
## 7760                 Not sure  Most of the time
## 7761                 Bisexual  Most of the time
## 7762                 Bisexual  Most of the time
## 7763  Heterosexual (straight)         Sometimes
## 7764                 Bisexual            Rarely
## 7765  Heterosexual (straight)         Sometimes
## 7766  Heterosexual (straight)            Rarely
## 7767                 Bisexual              <NA>
## 7768           Some other way  Most of the time
## 7769                 Bisexual  Most of the time
## 7770  Heterosexual (straight)         Sometimes
## 7771  Heterosexual (straight)         Sometimes
## 7772  Heterosexual (straight)             Never
## 7773                 Not sure  Most of the time
## 7774  Heterosexual (straight)            Rarely
## 7775  Heterosexual (straight)            Rarely
## 7776  Heterosexual (straight)         Sometimes
## 7777  Heterosexual (straight)             Never
## 7778  Heterosexual (straight)             Never
## 7779  Heterosexual (straight)             Never
## 7780  Heterosexual (straight)         Sometimes
## 7781           Some other way            Always
## 7782  Heterosexual (straight)         Sometimes
## 7783  Heterosexual (straight)            Always
## 7784  Heterosexual (straight)            Rarely
## 7785                 Bisexual  Most of the time
## 7786  Heterosexual (straight)  Most of the time
## 7787  Heterosexual (straight)            Always
## 7788  Heterosexual (straight)         Sometimes
## 7789  Heterosexual (straight)             Never
## 7790  Heterosexual (straight)              <NA>
## 7791  Heterosexual (straight)  Most of the time
## 7792                 Bisexual            Always
## 7793           Some other way  Most of the time
## 7794  Heterosexual (straight)         Sometimes
## 7795                 Not sure             Never
## 7796  Heterosexual (straight)             Never
## 7797  Heterosexual (straight)  Most of the time
## 7798  Heterosexual (straight)            Rarely
## 7799  Heterosexual (straight)            Rarely
## 7800  Heterosexual (straight)  Most of the time
## 7801  Heterosexual (straight)         Sometimes
## 7802                 Not sure  Most of the time
## 7803                 Bisexual  Most of the time
## 7804  Heterosexual (straight)            Always
## 7805  Heterosexual (straight)  Most of the time
## 7806  Heterosexual (straight)            Rarely
## 7807  Heterosexual (straight)              <NA>
## 7808  Heterosexual (straight)  Most of the time
## 7809  Heterosexual (straight)         Sometimes
## 7810           Some other way            Always
## 7811  Heterosexual (straight)         Sometimes
## 7812  Heterosexual (straight)         Sometimes
## 7813  Heterosexual (straight)  Most of the time
## 7814  Heterosexual (straight)            Always
## 7815  Heterosexual (straight)            Rarely
## 7816  Heterosexual (straight)         Sometimes
## 7817  Heterosexual (straight)         Sometimes
## 7818  Heterosexual (straight)         Sometimes
## 7819  Heterosexual (straight)         Sometimes
## 7820  Heterosexual (straight)         Sometimes
## 7821  Heterosexual (straight)             Never
## 7822  Heterosexual (straight)             Never
## 7823           Gay or lesbian            Always
## 7824  Heterosexual (straight)         Sometimes
## 7825  Heterosexual (straight)            Rarely
## 7826  Heterosexual (straight)            Rarely
## 7827                 Bisexual         Sometimes
## 7828  Heterosexual (straight)         Sometimes
## 7829  Heterosexual (straight)            Rarely
## 7830  Heterosexual (straight)             Never
## 7831  Heterosexual (straight)         Sometimes
## 7832  Heterosexual (straight)            Rarely
## 7833  Heterosexual (straight)            Rarely
## 7834  Heterosexual (straight)            Rarely
## 7835  Heterosexual (straight)            Rarely
## 7836  Heterosexual (straight)         Sometimes
## 7837  Heterosexual (straight)             Never
## 7838  Heterosexual (straight)             Never
## 7839           Gay or lesbian  Most of the time
## 7840  Heterosexual (straight)  Most of the time
## 7841  Heterosexual (straight)            Rarely
## 7842           Gay or lesbian         Sometimes
## 7843  Heterosexual (straight)             Never
## 7844  Heterosexual (straight)         Sometimes
## 7845  Heterosexual (straight)            Rarely
## 7846           Some other way  Most of the time
## 7847  Heterosexual (straight)         Sometimes
## 7848                 Bisexual         Sometimes
## 7849  Heterosexual (straight)             Never
## 7850  Heterosexual (straight)            Always
## 7851  Heterosexual (straight)         Sometimes
## 7852           Some other way            Rarely
## 7853  Heterosexual (straight)  Most of the time
## 7854                 Bisexual            Always
## 7855  Heterosexual (straight)         Sometimes
## 7856                 Bisexual         Sometimes
## 7857                 Bisexual         Sometimes
## 7858  Heterosexual (straight)         Sometimes
## 7859  Heterosexual (straight)  Most of the time
## 7860  Heterosexual (straight)         Sometimes
## 7861  Heterosexual (straight)         Sometimes
## 7862  Heterosexual (straight)            Rarely
## 7863           Some other way            Rarely
## 7864  Heterosexual (straight)         Sometimes
## 7865  Heterosexual (straight)         Sometimes
## 7866           Some other way  Most of the time
## 7867  Heterosexual (straight)             Never
## 7868  Heterosexual (straight)            Rarely
## 7869  Heterosexual (straight)         Sometimes
## 7870  Heterosexual (straight)         Sometimes
## 7871  Heterosexual (straight)         Sometimes
## 7872  Heterosexual (straight)         Sometimes
## 7873  Heterosexual (straight)         Sometimes
## 7874  Heterosexual (straight)  Most of the time
## 7875  Heterosexual (straight)         Sometimes
## 7876  Heterosexual (straight)  Most of the time
## 7877  Heterosexual (straight)            Rarely
## 7878                 Not sure         Sometimes
## 7879                 Bisexual  Most of the time
## 7880  Heterosexual (straight)            Rarely
## 7881  Heterosexual (straight)         Sometimes
## 7882  Heterosexual (straight)  Most of the time
## 7883  Heterosexual (straight)         Sometimes
## 7884  Heterosexual (straight)  Most of the time
## 7885                 Not sure         Sometimes
## 7886           Some other way         Sometimes
## 7887  Heterosexual (straight)             Never
## 7888  Heterosexual (straight)             Never
## 7889  Heterosexual (straight)            Rarely
## 7890  Heterosexual (straight)            Always
## 7891  Heterosexual (straight)            Rarely
## 7892                 Bisexual            Rarely
## 7893                 Bisexual  Most of the time
## 7894  Heterosexual (straight)            Rarely
## 7895  Heterosexual (straight)         Sometimes
## 7896  Heterosexual (straight)         Sometimes
## 7897           Gay or lesbian  Most of the time
## 7898  Heterosexual (straight)             Never
## 7899  Heterosexual (straight)            Rarely
## 7900  Heterosexual (straight)             Never
## 7901  Heterosexual (straight)             Never
## 7902           Gay or lesbian  Most of the time
## 7903  Heterosexual (straight)         Sometimes
## 7904  Heterosexual (straight)             Never
## 7905  Heterosexual (straight)             Never
## 7906  Heterosexual (straight)         Sometimes
## 7907  Heterosexual (straight)            Rarely
## 7908  Heterosexual (straight)         Sometimes
## 7909  Heterosexual (straight)  Most of the time
## 7910  Heterosexual (straight)            Always
## 7911                 Bisexual            Rarely
## 7912  Heterosexual (straight)            Always
## 7913                 Bisexual  Most of the time
## 7914           Gay or lesbian  Most of the time
## 7915  Heterosexual (straight)             Never
## 7916  Heterosexual (straight)             Never
## 7917           Gay or lesbian         Sometimes
## 7918  Heterosexual (straight)  Most of the time
## 7919  Heterosexual (straight)         Sometimes
## 7920  Heterosexual (straight)         Sometimes
## 7921  Heterosexual (straight)             Never
## 7922           Some other way            Rarely
## 7923  Heterosexual (straight)         Sometimes
## 7924  Heterosexual (straight)         Sometimes
## 7925  Heterosexual (straight)         Sometimes
## 7926  Heterosexual (straight)         Sometimes
## 7927  Heterosexual (straight)            Rarely
## 7928  Heterosexual (straight)            Always
## 7929  Heterosexual (straight)             Never
## 7930  Heterosexual (straight)             Never
## 7931  Heterosexual (straight)         Sometimes
## 7932  Heterosexual (straight)             Never
## 7933  Heterosexual (straight)            Rarely
## 7934  Heterosexual (straight)            Rarely
## 7935  Heterosexual (straight)             Never
## 7936  Heterosexual (straight)            Always
## 7937  Heterosexual (straight)            Rarely
## 7938  Heterosexual (straight)  Most of the time
## 7939           Some other way  Most of the time
## 7940  Heterosexual (straight)         Sometimes
## 7941  Heterosexual (straight)  Most of the time
## 7942           Gay or lesbian  Most of the time
## 7943  Heterosexual (straight)         Sometimes
## 7944  Heterosexual (straight)         Sometimes
## 7945  Heterosexual (straight)             Never
## 7946                 Not sure  Most of the time
## 7947                 Not sure  Most of the time
## 7948  Heterosexual (straight)            Rarely
## 7949           Some other way  Most of the time
## 7950  Heterosexual (straight)  Most of the time
## 7951  Heterosexual (straight)  Most of the time
## 7952  Heterosexual (straight)         Sometimes
## 7953           Some other way            Always
## 7954  Heterosexual (straight)            Rarely
## 7955  Heterosexual (straight)         Sometimes
## 7956  Heterosexual (straight)              <NA>
## 7957                 Bisexual              <NA>
## 7958  Heterosexual (straight)              <NA>
## 7959  Heterosexual (straight)              <NA>
## 7960  Heterosexual (straight)              <NA>
## 7961  Heterosexual (straight)              <NA>
## 7962  Heterosexual (straight)              <NA>
## 7963  Heterosexual (straight)              <NA>
## 7964  Heterosexual (straight)              <NA>
## 7965  Heterosexual (straight)              <NA>
## 7966  Heterosexual (straight)              <NA>
## 7967  Heterosexual (straight)              <NA>
## 7968  Heterosexual (straight)              <NA>
## 7969  Heterosexual (straight)              <NA>
## 7970  Heterosexual (straight)              <NA>
## 7971  Heterosexual (straight)              <NA>
## 7972  Heterosexual (straight)              <NA>
## 7973  Heterosexual (straight)              <NA>
## 7974  Heterosexual (straight)              <NA>
## 7975           Some other way              <NA>
## 7976                 Bisexual              <NA>
## 7977  Heterosexual (straight)              <NA>
## 7978                 Not sure              <NA>
## 7979  Heterosexual (straight)              <NA>
## 7980                 Bisexual              <NA>
## 7981  Heterosexual (straight)              <NA>
## 7982  Heterosexual (straight)              <NA>
## 7983  Heterosexual (straight)              <NA>
## 7984  Heterosexual (straight)              <NA>
## 7985  Heterosexual (straight)              <NA>
## 7986           Gay or lesbian              <NA>
## 7987  Heterosexual (straight)              <NA>
## 7988  Heterosexual (straight)              <NA>
## 7989  Heterosexual (straight)              <NA>
## 7990  Heterosexual (straight)              <NA>
## 7991  Heterosexual (straight)              <NA>
## 7992  Heterosexual (straight)              <NA>
## 7993  Heterosexual (straight)              <NA>
## 7994  Heterosexual (straight)              <NA>
## 7995  Heterosexual (straight)              <NA>
## 7996                 Not sure              <NA>
## 7997  Heterosexual (straight)              <NA>
## 7998  Heterosexual (straight)              <NA>
## 7999  Heterosexual (straight)              <NA>
## 8000  Heterosexual (straight)              <NA>
## 8001  Heterosexual (straight)              <NA>
## 8002  Heterosexual (straight)              <NA>
## 8003                 Bisexual              <NA>
## 8004  Heterosexual (straight)              <NA>
## 8005  Heterosexual (straight)              <NA>
## 8006                 Bisexual              <NA>
## 8007  Heterosexual (straight)              <NA>
## 8008                 Bisexual              <NA>
## 8009           Gay or lesbian              <NA>
## 8010  Heterosexual (straight)              <NA>
## 8011  Heterosexual (straight)              <NA>
## 8012  Heterosexual (straight)              <NA>
## 8013  Heterosexual (straight)              <NA>
## 8014  Heterosexual (straight)              <NA>
## 8015  Heterosexual (straight)              <NA>
## 8016  Heterosexual (straight)              <NA>
## 8017  Heterosexual (straight)              <NA>
## 8018  Heterosexual (straight)              <NA>
## 8019  Heterosexual (straight)              <NA>
## 8020  Heterosexual (straight)              <NA>
## 8021  Heterosexual (straight)              <NA>
## 8022  Heterosexual (straight)              <NA>
## 8023  Heterosexual (straight)              <NA>
## 8024  Heterosexual (straight)              <NA>
## 8025  Heterosexual (straight)              <NA>
## 8026  Heterosexual (straight)              <NA>
## 8027  Heterosexual (straight)              <NA>
## 8028  Heterosexual (straight)              <NA>
## 8029  Heterosexual (straight)              <NA>
## 8030  Heterosexual (straight)              <NA>
## 8031  Heterosexual (straight)              <NA>
## 8032                 Bisexual              <NA>
## 8033  Heterosexual (straight)              <NA>
## 8034  Heterosexual (straight)              <NA>
## 8035  Heterosexual (straight)              <NA>
## 8036  Heterosexual (straight)              <NA>
## 8037  Heterosexual (straight)              <NA>
## 8038  Heterosexual (straight)              <NA>
## 8039                 Not sure              <NA>
## 8040  Heterosexual (straight)              <NA>
## 8041                 Not sure              <NA>
## 8042  Heterosexual (straight)              <NA>
## 8043  Heterosexual (straight)              <NA>
## 8044  Heterosexual (straight)              <NA>
## 8045  Heterosexual (straight)              <NA>
## 8046  Heterosexual (straight)              <NA>
## 8047  Heterosexual (straight)              <NA>
## 8048  Heterosexual (straight)              <NA>
## 8049  Heterosexual (straight)              <NA>
## 8050  Heterosexual (straight)              <NA>
## 8051  Heterosexual (straight)              <NA>
## 8052  Heterosexual (straight)              <NA>
## 8053  Heterosexual (straight)              <NA>
## 8054  Heterosexual (straight)              <NA>
## 8055  Heterosexual (straight)              <NA>
## 8056  Heterosexual (straight)              <NA>
## 8057  Heterosexual (straight)              <NA>
## 8058  Heterosexual (straight)              <NA>
## 8059  Heterosexual (straight)              <NA>
## 8060  Heterosexual (straight)              <NA>
## 8061  Heterosexual (straight)              <NA>
## 8062           Gay or lesbian              <NA>
## 8063  Heterosexual (straight)              <NA>
## 8064  Heterosexual (straight)              <NA>
## 8065  Heterosexual (straight)              <NA>
## 8066  Heterosexual (straight)              <NA>
## 8067  Heterosexual (straight)              <NA>
## 8068  Heterosexual (straight)              <NA>
## 8069  Heterosexual (straight)              <NA>
## 8070  Heterosexual (straight)              <NA>
## 8071  Heterosexual (straight)              <NA>
## 8072  Heterosexual (straight)              <NA>
## 8073  Heterosexual (straight)              <NA>
## 8074  Heterosexual (straight)              <NA>
## 8075  Heterosexual (straight)              <NA>
## 8076  Heterosexual (straight)              <NA>
## 8077  Heterosexual (straight)              <NA>
## 8078  Heterosexual (straight)              <NA>
## 8079  Heterosexual (straight)              <NA>
## 8080  Heterosexual (straight)              <NA>
## 8081  Heterosexual (straight)              <NA>
## 8082  Heterosexual (straight)              <NA>
## 8083  Heterosexual (straight)              <NA>
## 8084  Heterosexual (straight)              <NA>
## 8085                 Bisexual              <NA>
## 8086  Heterosexual (straight)              <NA>
## 8087  Heterosexual (straight)              <NA>
## 8088  Heterosexual (straight)              <NA>
## 8089  Heterosexual (straight)              <NA>
## 8090  Heterosexual (straight)              <NA>
## 8091  Heterosexual (straight)              <NA>
## 8092  Heterosexual (straight)              <NA>
## 8093  Heterosexual (straight)              <NA>
## 8094  Heterosexual (straight)              <NA>
## 8095  Heterosexual (straight)              <NA>
## 8096  Heterosexual (straight)              <NA>
## 8097  Heterosexual (straight)              <NA>
## 8098  Heterosexual (straight)              <NA>
## 8099  Heterosexual (straight)              <NA>
## 8100  Heterosexual (straight)              <NA>
## 8101  Heterosexual (straight)              <NA>
## 8102  Heterosexual (straight)              <NA>
## 8103  Heterosexual (straight)              <NA>
## 8104  Heterosexual (straight)              <NA>
## 8105  Heterosexual (straight)              <NA>
## 8106  Heterosexual (straight)              <NA>
## 8107  Heterosexual (straight)              <NA>
## 8108                 Bisexual              <NA>
## 8109  Heterosexual (straight)              <NA>
## 8110           Some other way              <NA>
## 8111  Heterosexual (straight)              <NA>
## 8112  Heterosexual (straight)              <NA>
## 8113  Heterosexual (straight)              <NA>
## 8114  Heterosexual (straight)              <NA>
## 8115  Heterosexual (straight)              <NA>
## 8116                 Bisexual            Rarely
## 8117  Heterosexual (straight)             Never
## 8118                 Not sure  Most of the time
## 8119  Heterosexual (straight)         Sometimes
## 8120           Gay or lesbian         Sometimes
## 8121  Heterosexual (straight)            Rarely
## 8122           Some other way            Always
## 8123           Some other way         Sometimes
## 8124  Heterosexual (straight)            Rarely
## 8125           Gay or lesbian            Rarely
## 8126  Heterosexual (straight)            Rarely
## 8127  Heterosexual (straight)            Always
## 8128           Gay or lesbian         Sometimes
## 8129  Heterosexual (straight)            Rarely
## 8130  Heterosexual (straight)         Sometimes
## 8131           Gay or lesbian         Sometimes
## 8132  Heterosexual (straight)         Sometimes
## 8133           Some other way            Always
## 8134  Heterosexual (straight)  Most of the time
## 8135  Heterosexual (straight)         Sometimes
## 8136  Heterosexual (straight)  Most of the time
## 8137  Heterosexual (straight)            Always
## 8138  Heterosexual (straight)            Rarely
## 8139  Heterosexual (straight)            Rarely
## 8140  Heterosexual (straight)            Always
## 8141  Heterosexual (straight)             Never
## 8142                 Bisexual         Sometimes
## 8143  Heterosexual (straight)             Never
## 8144  Heterosexual (straight)         Sometimes
## 8145  Heterosexual (straight)         Sometimes
## 8146  Heterosexual (straight)         Sometimes
## 8147  Heterosexual (straight)         Sometimes
## 8148  Heterosexual (straight)         Sometimes
## 8149  Heterosexual (straight)            Rarely
## 8150  Heterosexual (straight)            Rarely
## 8151  Heterosexual (straight)            Rarely
## 8152  Heterosexual (straight)             Never
## 8153           Gay or lesbian         Sometimes
## 8154  Heterosexual (straight)             Never
## 8155           Gay or lesbian  Most of the time
## 8156  Heterosexual (straight)            Rarely
## 8157  Heterosexual (straight)            Rarely
## 8158  Heterosexual (straight)             Never
## 8159  Heterosexual (straight)         Sometimes
## 8160  Heterosexual (straight)  Most of the time
## 8161  Heterosexual (straight)            Rarely
## 8162           Some other way              <NA>
## 8163           Some other way            Rarely
## 8164  Heterosexual (straight)            Rarely
## 8165  Heterosexual (straight)  Most of the time
## 8166  Heterosexual (straight)            Rarely
## 8167  Heterosexual (straight)            Rarely
## 8168  Heterosexual (straight)  Most of the time
## 8169  Heterosexual (straight)             Never
## 8170  Heterosexual (straight)  Most of the time
## 8171  Heterosexual (straight)             Never
## 8172                 Bisexual            Always
## 8173  Heterosexual (straight)            Rarely
## 8174  Heterosexual (straight)             Never
## 8175           Some other way         Sometimes
## 8176           Gay or lesbian            Rarely
## 8177  Heterosexual (straight)            Always
## 8178                 Bisexual         Sometimes
## 8179                 Not sure            Always
## 8180                 Not sure              <NA>
## 8181  Heterosexual (straight)            Rarely
## 8182  Heterosexual (straight)             Never
## 8183  Heterosexual (straight)             Never
## 8184           Some other way         Sometimes
## 8185                 Bisexual             Never
## 8186  Heterosexual (straight)         Sometimes
## 8187  Heterosexual (straight)             Never
## 8188  Heterosexual (straight)              <NA>
## 8189  Heterosexual (straight)             Never
## 8190                 Bisexual             Never
## 8191                 Bisexual  Most of the time
## 8192           Gay or lesbian  Most of the time
## 8193  Heterosexual (straight)         Sometimes
## 8194  Heterosexual (straight)            Always
## 8195  Heterosexual (straight)            Rarely
## 8196  Heterosexual (straight)  Most of the time
## 8197  Heterosexual (straight)  Most of the time
## 8198           Some other way  Most of the time
## 8199  Heterosexual (straight)            Rarely
## 8200  Heterosexual (straight)         Sometimes
## 8201  Heterosexual (straight)         Sometimes
## 8202  Heterosexual (straight)         Sometimes
## 8203  Heterosexual (straight)             Never
## 8204                 Bisexual  Most of the time
## 8205  Heterosexual (straight)  Most of the time
## 8206  Heterosexual (straight)            Rarely
## 8207  Heterosexual (straight)         Sometimes
## 8208  Heterosexual (straight)            Rarely
## 8209           Gay or lesbian         Sometimes
## 8210                 Bisexual            Always
## 8211  Heterosexual (straight)            Rarely
## 8212  Heterosexual (straight)            Rarely
## 8213                 Bisexual            Always
## 8214           Some other way         Sometimes
## 8215                 Bisexual  Most of the time
## 8216                 Bisexual         Sometimes
## 8217  Heterosexual (straight)         Sometimes
## 8218  Heterosexual (straight)            Rarely
## 8219  Heterosexual (straight)         Sometimes
## 8220  Heterosexual (straight)  Most of the time
## 8221                 Bisexual         Sometimes
## 8222  Heterosexual (straight)         Sometimes
## 8223                 Not sure            Rarely
## 8224  Heterosexual (straight)         Sometimes
## 8225  Heterosexual (straight)            Rarely
## 8226  Heterosexual (straight)         Sometimes
## 8227                 Bisexual  Most of the time
## 8228  Heterosexual (straight)            Always
## 8229                 Bisexual  Most of the time
## 8230  Heterosexual (straight)         Sometimes
## 8231  Heterosexual (straight)  Most of the time
## 8232                 Not sure            Rarely
## 8233  Heterosexual (straight)  Most of the time
## 8234                 Bisexual  Most of the time
## 8235                 Bisexual         Sometimes
## 8236           Some other way         Sometimes
## 8237  Heterosexual (straight)         Sometimes
## 8238                 Bisexual  Most of the time
## 8239  Heterosexual (straight)            Rarely
## 8240  Heterosexual (straight)             Never
## 8241  Heterosexual (straight)            Rarely
## 8242  Heterosexual (straight)            Rarely
## 8243           Gay or lesbian            Always
## 8244  Heterosexual (straight)              <NA>
## 8245           Some other way            Always
## 8246  Heterosexual (straight)  Most of the time
## 8247  Heterosexual (straight)            Rarely
## 8248                 Bisexual         Sometimes
## 8249           Some other way            Always
## 8250  Heterosexual (straight)            Rarely
## 8251  Heterosexual (straight)             Never
## 8252  Heterosexual (straight)         Sometimes
## 8253                 Not sure         Sometimes
## 8254           Gay or lesbian            Rarely
## 8255                 Not sure         Sometimes
## 8256                 Bisexual  Most of the time
## 8257           Some other way         Sometimes
## 8258  Heterosexual (straight)            Rarely
## 8259  Heterosexual (straight)            Rarely
## 8260           Gay or lesbian         Sometimes
## 8261  Heterosexual (straight)         Sometimes
## 8262  Heterosexual (straight)            Rarely
## 8263  Heterosexual (straight)             Never
## 8264                 Bisexual  Most of the time
## 8265  Heterosexual (straight)            Rarely
## 8266  Heterosexual (straight)  Most of the time
## 8267  Heterosexual (straight)            Rarely
## 8268  Heterosexual (straight)         Sometimes
## 8269  Heterosexual (straight)         Sometimes
## 8270           Some other way  Most of the time
## 8271                 Not sure            Always
## 8272  Heterosexual (straight)         Sometimes
## 8273  Heterosexual (straight)  Most of the time
## 8274  Heterosexual (straight)         Sometimes
## 8275  Heterosexual (straight)         Sometimes
## 8276           Some other way  Most of the time
## 8277           Some other way  Most of the time
## 8278                 Bisexual         Sometimes
## 8279           Some other way             Never
## 8280  Heterosexual (straight)         Sometimes
## 8281  Heterosexual (straight)  Most of the time
## 8282  Heterosexual (straight)         Sometimes
## 8283           Gay or lesbian            Rarely
## 8284  Heterosexual (straight)         Sometimes
## 8285           Some other way            Rarely
## 8286  Heterosexual (straight)            Rarely
## 8287                 Not sure         Sometimes
## 8288  Heterosexual (straight)             Never
## 8289                 Bisexual         Sometimes
## 8290  Heterosexual (straight)            Always
## 8291  Heterosexual (straight)         Sometimes
## 8292  Heterosexual (straight)         Sometimes
## 8293  Heterosexual (straight)         Sometimes
## 8294                 Bisexual  Most of the time
## 8295  Heterosexual (straight)         Sometimes
## 8296  Heterosexual (straight)         Sometimes
## 8297  Heterosexual (straight)         Sometimes
## 8298  Heterosexual (straight)  Most of the time
## 8299  Heterosexual (straight)            Rarely
## 8300  Heterosexual (straight)             Never
## 8301  Heterosexual (straight)  Most of the time
## 8302  Heterosexual (straight)             Never
## 8303  Heterosexual (straight)             Never
## 8304                 Bisexual  Most of the time
## 8305  Heterosexual (straight)             Never
## 8306                 Bisexual            Always
## 8307                 Not sure             Never
## 8308  Heterosexual (straight)            Rarely
## 8309  Heterosexual (straight)            Rarely
## 8310           Some other way            Always
## 8311                 Bisexual         Sometimes
## 8312                 Not sure         Sometimes
## 8313                 Bisexual  Most of the time
## 8314           Some other way         Sometimes
## 8315           Some other way            Always
## 8316  Heterosexual (straight)            Rarely
## 8317  Heterosexual (straight)  Most of the time
## 8318                 Not sure            Rarely
## 8319  Heterosexual (straight)         Sometimes
## 8320                 Bisexual             Never
## 8321                 Not sure  Most of the time
## 8322  Heterosexual (straight)            Rarely
## 8323                 Bisexual             Never
## 8324           Gay or lesbian         Sometimes
## 8325           Some other way         Sometimes
## 8326  Heterosexual (straight)         Sometimes
## 8327                 Bisexual             Never
## 8328  Heterosexual (straight)  Most of the time
## 8329                 Bisexual         Sometimes
## 8330           Some other way            Always
## 8331  Heterosexual (straight)             Never
## 8332  Heterosexual (straight)            Rarely
## 8333  Heterosexual (straight)             Never
## 8334  Heterosexual (straight)             Never
## 8335  Heterosexual (straight)              <NA>
## 8336  Heterosexual (straight)             Never
## 8337  Heterosexual (straight)         Sometimes
## 8338           Gay or lesbian  Most of the time
## 8339           Gay or lesbian            Rarely
## 8340                 Bisexual         Sometimes
## 8341  Heterosexual (straight)         Sometimes
## 8342  Heterosexual (straight)         Sometimes
## 8343  Heterosexual (straight)             Never
## 8344  Heterosexual (straight)         Sometimes
## 8345  Heterosexual (straight)            Rarely
## 8346           Some other way            Always
## 8347  Heterosexual (straight)  Most of the time
## 8348           Some other way            Always
## 8349           Gay or lesbian         Sometimes
## 8350  Heterosexual (straight)             Never
## 8351  Heterosexual (straight)         Sometimes
## 8352                 Bisexual  Most of the time
## 8353  Heterosexual (straight)  Most of the time
## 8354  Heterosexual (straight)            Rarely
## 8355  Heterosexual (straight)         Sometimes
## 8356  Heterosexual (straight)  Most of the time
## 8357  Heterosexual (straight)             Never
## 8358                 Bisexual         Sometimes
## 8359  Heterosexual (straight)            Rarely
## 8360           Gay or lesbian            Always
## 8361  Heterosexual (straight)         Sometimes
## 8362  Heterosexual (straight)         Sometimes
## 8363  Heterosexual (straight)         Sometimes
## 8364  Heterosexual (straight)         Sometimes
## 8365  Heterosexual (straight)            Rarely
## 8366  Heterosexual (straight)  Most of the time
## 8367                 Bisexual            Always
## 8368  Heterosexual (straight)  Most of the time
## 8369  Heterosexual (straight)            Rarely
## 8370  Heterosexual (straight)             Never
## 8371  Heterosexual (straight)            Rarely
## 8372  Heterosexual (straight)         Sometimes
## 8373  Heterosexual (straight)         Sometimes
## 8374  Heterosexual (straight)  Most of the time
## 8375  Heterosexual (straight)            Rarely
## 8376  Heterosexual (straight)  Most of the time
## 8377                 Bisexual         Sometimes
## 8378  Heterosexual (straight)  Most of the time
## 8379  Heterosexual (straight)         Sometimes
## 8380  Heterosexual (straight)         Sometimes
## 8381  Heterosexual (straight)            Rarely
## 8382  Heterosexual (straight)  Most of the time
## 8383  Heterosexual (straight)         Sometimes
## 8384  Heterosexual (straight)         Sometimes
## 8385  Heterosexual (straight)  Most of the time
## 8386  Heterosexual (straight)            Rarely
## 8387  Heterosexual (straight)         Sometimes
## 8388  Heterosexual (straight)            Always
## 8389  Heterosexual (straight)  Most of the time
## 8390                 Bisexual  Most of the time
## 8391           Gay or lesbian  Most of the time
## 8392  Heterosexual (straight)         Sometimes
## 8393  Heterosexual (straight)            Rarely
## 8394  Heterosexual (straight)  Most of the time
## 8395  Heterosexual (straight)            Rarely
## 8396  Heterosexual (straight)  Most of the time
## 8397                 Bisexual  Most of the time
## 8398                 Bisexual            Rarely
## 8399  Heterosexual (straight)         Sometimes
## 8400  Heterosexual (straight)  Most of the time
## 8401  Heterosexual (straight)  Most of the time
## 8402  Heterosexual (straight)         Sometimes
## 8403  Heterosexual (straight)             Never
## 8404  Heterosexual (straight)  Most of the time
## 8405  Heterosexual (straight)            Rarely
## 8406  Heterosexual (straight)            Rarely
## 8407  Heterosexual (straight)         Sometimes
## 8408  Heterosexual (straight)         Sometimes
## 8409  Heterosexual (straight)            Rarely
## 8410  Heterosexual (straight)             Never
## 8411  Heterosexual (straight)            Rarely
## 8412  Heterosexual (straight)             Never
## 8413  Heterosexual (straight)         Sometimes
## 8414                 Bisexual         Sometimes
## 8415           Gay or lesbian  Most of the time
## 8416  Heterosexual (straight)             Never
## 8417  Heterosexual (straight)            Rarely
## 8418  Heterosexual (straight)  Most of the time
## 8419  Heterosexual (straight)            Rarely
## 8420  Heterosexual (straight)             Never
## 8421  Heterosexual (straight)         Sometimes
## 8422  Heterosexual (straight)            Rarely
## 8423           Gay or lesbian             Never
## 8424           Gay or lesbian            Always
## 8425  Heterosexual (straight)            Rarely
## 8426  Heterosexual (straight)         Sometimes
## 8427  Heterosexual (straight)            Rarely
## 8428  Heterosexual (straight)  Most of the time
## 8429  Heterosexual (straight)            Rarely
## 8430  Heterosexual (straight)         Sometimes
## 8431  Heterosexual (straight)         Sometimes
## 8432  Heterosexual (straight)            Always
## 8433  Heterosexual (straight)         Sometimes
## 8434  Heterosexual (straight)         Sometimes
## 8435  Heterosexual (straight)  Most of the time
## 8436  Heterosexual (straight)         Sometimes
## 8437  Heterosexual (straight)            Rarely
## 8438  Heterosexual (straight)            Always
## 8439  Heterosexual (straight)  Most of the time
## 8440  Heterosexual (straight)  Most of the time
## 8441                 Bisexual              <NA>
## 8442  Heterosexual (straight)             Never
## 8443  Heterosexual (straight)             Never
## 8444  Heterosexual (straight)  Most of the time
## 8445  Heterosexual (straight)  Most of the time
## 8446  Heterosexual (straight)              <NA>
## 8447  Heterosexual (straight)            Rarely
## 8448  Heterosexual (straight)         Sometimes
## 8449  Heterosexual (straight)         Sometimes
## 8450  Heterosexual (straight)         Sometimes
## 8451  Heterosexual (straight)         Sometimes
## 8452  Heterosexual (straight)              <NA>
## 8453  Heterosexual (straight)         Sometimes
## 8454  Heterosexual (straight)             Never
## 8455  Heterosexual (straight)             Never
## 8456  Heterosexual (straight)  Most of the time
## 8457  Heterosexual (straight)             Never
## 8458  Heterosexual (straight)             Never
## 8459  Heterosexual (straight)            Rarely
## 8460  Heterosexual (straight)         Sometimes
## 8461  Heterosexual (straight)         Sometimes
## 8462  Heterosexual (straight)         Sometimes
## 8463  Heterosexual (straight)  Most of the time
## 8464  Heterosexual (straight)             Never
## 8465  Heterosexual (straight)             Never
## 8466                 Bisexual  Most of the time
## 8467  Heterosexual (straight)            Always
## 8468  Heterosexual (straight)         Sometimes
## 8469  Heterosexual (straight)  Most of the time
## 8470  Heterosexual (straight)         Sometimes
## 8471  Heterosexual (straight)         Sometimes
## 8472           Some other way  Most of the time
## 8473  Heterosexual (straight)         Sometimes
## 8474  Heterosexual (straight)            Rarely
## 8475  Heterosexual (straight)            Rarely
## 8476  Heterosexual (straight)             Never
## 8477  Heterosexual (straight)            Rarely
## 8478  Heterosexual (straight)  Most of the time
## 8479                 Not sure  Most of the time
## 8480                 Bisexual         Sometimes
## 8481           Gay or lesbian  Most of the time
## 8482           Gay or lesbian         Sometimes
## 8483           Gay or lesbian  Most of the time
## 8484  Heterosexual (straight)         Sometimes
## 8485                 Bisexual            Always
## 8486                 Bisexual         Sometimes
## 8487  Heterosexual (straight)            Rarely
## 8488  Heterosexual (straight)         Sometimes
## 8489                 Bisexual            Rarely
## 8490  Heterosexual (straight)            Always
## 8491  Heterosexual (straight)         Sometimes
## 8492  Heterosexual (straight)            Rarely
## 8493                 Not sure         Sometimes
## 8494  Heterosexual (straight)  Most of the time
## 8495                 Bisexual              <NA>
## 8496  Heterosexual (straight)            Rarely
## 8497  Heterosexual (straight)         Sometimes
## 8498  Heterosexual (straight)         Sometimes
## 8499  Heterosexual (straight)         Sometimes
## 8500                 Not sure  Most of the time
## 8501                 Bisexual  Most of the time
## 8502  Heterosexual (straight)         Sometimes
## 8503  Heterosexual (straight)            Rarely
## 8504                 Bisexual         Sometimes
## 8505                 Bisexual         Sometimes
## 8506           Some other way  Most of the time
## 8507  Heterosexual (straight)            Rarely
## 8508                 Bisexual            Always
## 8509  Heterosexual (straight)            Always
## 8510  Heterosexual (straight)  Most of the time
## 8511  Heterosexual (straight)         Sometimes
## 8512  Heterosexual (straight)            Rarely
## 8513  Heterosexual (straight)            Rarely
## 8514  Heterosexual (straight)            Rarely
## 8515           Some other way            Always
## 8516  Heterosexual (straight)         Sometimes
## 8517  Heterosexual (straight)  Most of the time
## 8518                 Bisexual            Always
## 8519  Heterosexual (straight)            Rarely
## 8520                 Bisexual         Sometimes
## 8521  Heterosexual (straight)            Rarely
## 8522                 Bisexual            Rarely
## 8523  Heterosexual (straight)         Sometimes
## 8524  Heterosexual (straight)         Sometimes
## 8525  Heterosexual (straight)             Never
## 8526  Heterosexual (straight)         Sometimes
## 8527  Heterosexual (straight)         Sometimes
## 8528  Heterosexual (straight)  Most of the time
## 8529                 Not sure  Most of the time
## 8530  Heterosexual (straight)  Most of the time
## 8531  Heterosexual (straight)         Sometimes
## 8532  Heterosexual (straight)  Most of the time
## 8533                 Bisexual         Sometimes
## 8534  Heterosexual (straight)  Most of the time
## 8535  Heterosexual (straight)  Most of the time
## 8536  Heterosexual (straight)         Sometimes
## 8537  Heterosexual (straight)  Most of the time
## 8538                 Bisexual         Sometimes
## 8539  Heterosexual (straight)  Most of the time
## 8540  Heterosexual (straight)  Most of the time
## 8541  Heterosexual (straight)            Rarely
## 8542  Heterosexual (straight)         Sometimes
## 8543  Heterosexual (straight)         Sometimes
## 8544  Heterosexual (straight)  Most of the time
## 8545  Heterosexual (straight)             Never
## 8546  Heterosexual (straight)             Never
## 8547  Heterosexual (straight)            Rarely
## 8548  Heterosexual (straight)             Never
## 8549  Heterosexual (straight)            Always
## 8550  Heterosexual (straight)  Most of the time
## 8551                 Not sure         Sometimes
## 8552  Heterosexual (straight)  Most of the time
## 8553  Heterosexual (straight)             Never
## 8554  Heterosexual (straight)         Sometimes
## 8555  Heterosexual (straight)  Most of the time
## 8556  Heterosexual (straight)             Never
## 8557  Heterosexual (straight)         Sometimes
## 8558                 Bisexual  Most of the time
## 8559                 Bisexual  Most of the time
## 8560  Heterosexual (straight)            Rarely
## 8561  Heterosexual (straight)  Most of the time
## 8562                 Bisexual         Sometimes
## 8563  Heterosexual (straight)            Rarely
## 8564  Heterosexual (straight)         Sometimes
## 8565  Heterosexual (straight)             Never
## 8566  Heterosexual (straight)  Most of the time
## 8567  Heterosexual (straight)            Rarely
## 8568  Heterosexual (straight)         Sometimes
## 8569  Heterosexual (straight)  Most of the time
## 8570  Heterosexual (straight)            Rarely
## 8571  Heterosexual (straight)  Most of the time
## 8572                 Bisexual            Rarely
## 8573  Heterosexual (straight)            Rarely
## 8574  Heterosexual (straight)             Never
## 8575  Heterosexual (straight)         Sometimes
## 8576                 Not sure  Most of the time
## 8577  Heterosexual (straight)  Most of the time
## 8578                 Bisexual            Always
## 8579           Some other way         Sometimes
## 8580           Gay or lesbian         Sometimes
## 8581                 Not sure         Sometimes
## 8582  Heterosexual (straight)            Rarely
## 8583                 Bisexual         Sometimes
## 8584  Heterosexual (straight)  Most of the time
## 8585  Heterosexual (straight)            Rarely
## 8586                 Bisexual            Rarely
## 8587  Heterosexual (straight)            Rarely
## 8588                 Bisexual         Sometimes
## 8589                 Bisexual  Most of the time
## 8590  Heterosexual (straight)  Most of the time
## 8591  Heterosexual (straight)            Rarely
## 8592  Heterosexual (straight)            Rarely
## 8593  Heterosexual (straight)         Sometimes
## 8594  Heterosexual (straight)            Rarely
## 8595  Heterosexual (straight)             Never
## 8596  Heterosexual (straight)            Rarely
## 8597                 Bisexual  Most of the time
## 8598                 Bisexual             Never
## 8599  Heterosexual (straight)         Sometimes
## 8600  Heterosexual (straight)  Most of the time
## 8601  Heterosexual (straight)            Rarely
## 8602  Heterosexual (straight)            Always
## 8603  Heterosexual (straight)             Never
## 8604  Heterosexual (straight)         Sometimes
## 8605  Heterosexual (straight)             Never
## 8606  Heterosexual (straight)             Never
## 8607           Some other way  Most of the time
## 8608  Heterosexual (straight)         Sometimes
## 8609                 Bisexual  Most of the time
## 8610  Heterosexual (straight)            Rarely
## 8611  Heterosexual (straight)             Never
## 8612  Heterosexual (straight)             Never
## 8613  Heterosexual (straight)         Sometimes
## 8614  Heterosexual (straight)  Most of the time
## 8615           Gay or lesbian             Never
## 8616  Heterosexual (straight)            Rarely
## 8617                 Not sure         Sometimes
## 8618  Heterosexual (straight)            Rarely
## 8619  Heterosexual (straight)             Never
## 8620  Heterosexual (straight)         Sometimes
## 8621  Heterosexual (straight)             Never
## 8622           Gay or lesbian  Most of the time
## 8623                 Not sure            Rarely
## 8624  Heterosexual (straight)            Always
## 8625  Heterosexual (straight)         Sometimes
## 8626  Heterosexual (straight)         Sometimes
## 8627  Heterosexual (straight)            Rarely
## 8628  Heterosexual (straight)            Rarely
## 8629  Heterosexual (straight)  Most of the time
## 8630  Heterosexual (straight)             Never
## 8631  Heterosexual (straight)         Sometimes
## 8632  Heterosexual (straight)            Rarely
## 8633                 Not sure            Always
## 8634           Gay or lesbian            Rarely
## 8635  Heterosexual (straight)  Most of the time
## 8636  Heterosexual (straight)             Never
## 8637                 Bisexual         Sometimes
## 8638  Heterosexual (straight)            Rarely
## 8639           Gay or lesbian            Rarely
## 8640  Heterosexual (straight)             Never
## 8641  Heterosexual (straight)  Most of the time
## 8642  Heterosexual (straight)            Rarely
## 8643  Heterosexual (straight)            Rarely
## 8644  Heterosexual (straight)             Never
## 8645  Heterosexual (straight)            Rarely
## 8646                 Bisexual             Never
## 8647  Heterosexual (straight)            Rarely
## 8648  Heterosexual (straight)             Never
## 8649  Heterosexual (straight)         Sometimes
## 8650                 Not sure         Sometimes
## 8651                 Bisexual  Most of the time
## 8652                 Bisexual  Most of the time
## 8653  Heterosexual (straight)  Most of the time
## 8654  Heterosexual (straight)  Most of the time
## 8655  Heterosexual (straight)            Rarely
## 8656           Some other way            Always
## 8657  Heterosexual (straight)  Most of the time
## 8658  Heterosexual (straight)             Never
## 8659  Heterosexual (straight)             Never
## 8660  Heterosexual (straight)         Sometimes
## 8661                 Bisexual            Always
## 8662  Heterosexual (straight)         Sometimes
## 8663                 Not sure         Sometimes
## 8664  Heterosexual (straight)            Always
## 8665                 Not sure            Rarely
## 8666  Heterosexual (straight)  Most of the time
## 8667  Heterosexual (straight)         Sometimes
## 8668  Heterosexual (straight)         Sometimes
## 8669  Heterosexual (straight)         Sometimes
## 8670                 Not sure  Most of the time
## 8671  Heterosexual (straight)            Always
## 8672  Heterosexual (straight)         Sometimes
## 8673           Some other way         Sometimes
## 8674           Gay or lesbian         Sometimes
## 8675                 Bisexual         Sometimes
## 8676                 Bisexual         Sometimes
## 8677  Heterosexual (straight)         Sometimes
## 8678  Heterosexual (straight)         Sometimes
## 8679  Heterosexual (straight)  Most of the time
## 8680           Gay or lesbian            Always
## 8681  Heterosexual (straight)             Never
## 8682  Heterosexual (straight)         Sometimes
## 8683  Heterosexual (straight)             Never
## 8684  Heterosexual (straight)            Rarely
## 8685  Heterosexual (straight)             Never
## 8686                 Not sure  Most of the time
## 8687  Heterosexual (straight)            Always
## 8688  Heterosexual (straight)         Sometimes
## 8689  Heterosexual (straight)            Rarely
## 8690  Heterosexual (straight)         Sometimes
## 8691  Heterosexual (straight)         Sometimes
## 8692  Heterosexual (straight)  Most of the time
## 8693  Heterosexual (straight)            Rarely
## 8694                 Not sure  Most of the time
## 8695  Heterosexual (straight)             Never
## 8696           Some other way            Rarely
## 8697                 Not sure            Always
## 8698                 Bisexual            Rarely
## 8699  Heterosexual (straight)         Sometimes
## 8700  Heterosexual (straight)         Sometimes
## 8701  Heterosexual (straight)  Most of the time
## 8702  Heterosexual (straight)            Rarely
## 8703                 Not sure            Rarely
## 8704                 Bisexual  Most of the time
## 8705  Heterosexual (straight)             Never
## 8706  Heterosexual (straight)             Never
## 8707  Heterosexual (straight)            Always
## 8708                 Bisexual         Sometimes
## 8709           Gay or lesbian         Sometimes
## 8710  Heterosexual (straight)         Sometimes
## 8711           Some other way            Always
## 8712  Heterosexual (straight)             Never
## 8713  Heterosexual (straight)         Sometimes
## 8714  Heterosexual (straight)         Sometimes
## 8715  Heterosexual (straight)             Never
## 8716  Heterosexual (straight)  Most of the time
## 8717  Heterosexual (straight)  Most of the time
## 8718  Heterosexual (straight)  Most of the time
## 8719  Heterosexual (straight)              <NA>
## 8720  Heterosexual (straight)            Always
## 8721  Heterosexual (straight)  Most of the time
## 8722  Heterosexual (straight)             Never
## 8723  Heterosexual (straight)             Never
## 8724           Gay or lesbian         Sometimes
## 8725  Heterosexual (straight)            Rarely
## 8726  Heterosexual (straight)         Sometimes
## 8727  Heterosexual (straight)            Rarely
## 8728  Heterosexual (straight)            Rarely
## 8729                 Bisexual  Most of the time
## 8730  Heterosexual (straight)  Most of the time
## 8731  Heterosexual (straight)            Rarely
## 8732  Heterosexual (straight)             Never
## 8733                 Bisexual         Sometimes
## 8734                 Bisexual  Most of the time
## 8735  Heterosexual (straight)         Sometimes
## 8736  Heterosexual (straight)            Rarely
## 8737  Heterosexual (straight)  Most of the time
## 8738  Heterosexual (straight)            Rarely
## 8739                 Bisexual            Rarely
## 8740                 Bisexual  Most of the time
## 8741  Heterosexual (straight)         Sometimes
## 8742  Heterosexual (straight)             Never
## 8743                 Bisexual         Sometimes
## 8744           Some other way  Most of the time
## 8745                 Bisexual  Most of the time
## 8746  Heterosexual (straight)         Sometimes
## 8747  Heterosexual (straight)             Never
## 8748  Heterosexual (straight)            Always
## 8749  Heterosexual (straight)  Most of the time
## 8750  Heterosexual (straight)            Rarely
## 8751  Heterosexual (straight)             Never
## 8752                 Bisexual  Most of the time
## 8753  Heterosexual (straight)         Sometimes
## 8754  Heterosexual (straight)  Most of the time
## 8755           Some other way  Most of the time
## 8756                 Bisexual            Always
## 8757  Heterosexual (straight)  Most of the time
## 8758  Heterosexual (straight)             Never
## 8759  Heterosexual (straight)         Sometimes
## 8760                 Bisexual            Always
## 8761  Heterosexual (straight)            Always
## 8762  Heterosexual (straight)             Never
## 8763  Heterosexual (straight)         Sometimes
## 8764  Heterosexual (straight)         Sometimes
## 8765  Heterosexual (straight)            Rarely
## 8766  Heterosexual (straight)  Most of the time
## 8767  Heterosexual (straight)  Most of the time
## 8768                 Bisexual  Most of the time
## 8769  Heterosexual (straight)         Sometimes
## 8770  Heterosexual (straight)            Rarely
## 8771  Heterosexual (straight)            Rarely
## 8772  Heterosexual (straight)  Most of the time
## 8773  Heterosexual (straight)  Most of the time
## 8774  Heterosexual (straight)         Sometimes
## 8775  Heterosexual (straight)  Most of the time
## 8776  Heterosexual (straight)  Most of the time
## 8777  Heterosexual (straight)             Never
## 8778  Heterosexual (straight)             Never
## 8779  Heterosexual (straight)         Sometimes
## 8780  Heterosexual (straight)         Sometimes
## 8781  Heterosexual (straight)         Sometimes
## 8782                 Bisexual         Sometimes
## 8783                 Bisexual            Always
## 8784                 Bisexual  Most of the time
## 8785                 Bisexual  Most of the time
## 8786  Heterosexual (straight)         Sometimes
## 8787  Heterosexual (straight)         Sometimes
## 8788                 Not sure         Sometimes
## 8789  Heterosexual (straight)            Rarely
## 8790  Heterosexual (straight)         Sometimes
## 8791                 Bisexual         Sometimes
## 8792  Heterosexual (straight)            Rarely
## 8793  Heterosexual (straight)            Always
## 8794  Heterosexual (straight)  Most of the time
## 8795  Heterosexual (straight)            Rarely
## 8796                 Bisexual  Most of the time
## 8797  Heterosexual (straight)             Never
## 8798  Heterosexual (straight)         Sometimes
## 8799                 Bisexual  Most of the time
## 8800           Gay or lesbian  Most of the time
## 8801  Heterosexual (straight)            Always
## 8802  Heterosexual (straight)  Most of the time
## 8803  Heterosexual (straight)            Rarely
## 8804  Heterosexual (straight)             Never
## 8805           Some other way  Most of the time
## 8806  Heterosexual (straight)             Never
## 8807           Some other way            Rarely
## 8808                 Bisexual  Most of the time
## 8809  Heterosexual (straight)            Always
## 8810  Heterosexual (straight)             Never
## 8811  Heterosexual (straight)             Never
## 8812  Heterosexual (straight)         Sometimes
## 8813                 Bisexual  Most of the time
## 8814  Heterosexual (straight)             Never
## 8815  Heterosexual (straight)             Never
## 8816                 Bisexual            Rarely
## 8817  Heterosexual (straight)             Never
## 8818           Gay or lesbian             Never
## 8819  Heterosexual (straight)             Never
## 8820                 Bisexual            Rarely
## 8821                 Bisexual  Most of the time
## 8822  Heterosexual (straight)         Sometimes
## 8823  Heterosexual (straight)            Rarely
## 8824  Heterosexual (straight)             Never
## 8825                 Bisexual            Always
## 8826                 Not sure         Sometimes
## 8827  Heterosexual (straight)  Most of the time
## 8828  Heterosexual (straight)  Most of the time
## 8829                 Bisexual         Sometimes
## 8830                 Bisexual         Sometimes
## 8831  Heterosexual (straight)  Most of the time
## 8832  Heterosexual (straight)         Sometimes
## 8833                 Bisexual  Most of the time
## 8834  Heterosexual (straight)         Sometimes
## 8835  Heterosexual (straight)         Sometimes
## 8836  Heterosexual (straight)            Rarely
## 8837  Heterosexual (straight)             Never
## 8838  Heterosexual (straight)            Rarely
## 8839  Heterosexual (straight)            Rarely
## 8840           Some other way  Most of the time
## 8841  Heterosexual (straight)         Sometimes
## 8842                 Not sure            Always
## 8843  Heterosexual (straight)            Rarely
## 8844  Heterosexual (straight)            Rarely
## 8845  Heterosexual (straight)  Most of the time
## 8846  Heterosexual (straight)            Always
## 8847  Heterosexual (straight)            Rarely
## 8848  Heterosexual (straight)  Most of the time
## 8849  Heterosexual (straight)         Sometimes
## 8850  Heterosexual (straight)         Sometimes
## 8851           Gay or lesbian  Most of the time
## 8852  Heterosexual (straight)             Never
## 8853  Heterosexual (straight)             Never
## 8854  Heterosexual (straight)         Sometimes
## 8855           Gay or lesbian            Rarely
## 8856  Heterosexual (straight)             Never
## 8857                 Bisexual         Sometimes
## 8858  Heterosexual (straight)         Sometimes
## 8859  Heterosexual (straight)         Sometimes
## 8860  Heterosexual (straight)            Always
## 8861  Heterosexual (straight)             Never
## 8862  Heterosexual (straight)         Sometimes
## 8863  Heterosexual (straight)            Rarely
## 8864  Heterosexual (straight)            Rarely
## 8865  Heterosexual (straight)  Most of the time
## 8866                 Bisexual  Most of the time
## 8867  Heterosexual (straight)            Rarely
## 8868  Heterosexual (straight)            Rarely
## 8869           Some other way             Never
## 8870  Heterosexual (straight)         Sometimes
## 8871                 Bisexual  Most of the time
## 8872           Some other way  Most of the time
## 8873  Heterosexual (straight)  Most of the time
## 8874                 Not sure         Sometimes
## 8875  Heterosexual (straight)         Sometimes
## 8876  Heterosexual (straight)  Most of the time
## 8877                 Bisexual         Sometimes
## 8878  Heterosexual (straight)  Most of the time
## 8879                 Bisexual         Sometimes
## 8880  Heterosexual (straight)            Rarely
## 8881  Heterosexual (straight)             Never
## 8882  Heterosexual (straight)         Sometimes
## 8883  Heterosexual (straight)         Sometimes
## 8884                 Not sure  Most of the time
## 8885  Heterosexual (straight)         Sometimes
## 8886  Heterosexual (straight)         Sometimes
## 8887  Heterosexual (straight)            Rarely
## 8888  Heterosexual (straight)  Most of the time
## 8889  Heterosexual (straight)         Sometimes
## 8890  Heterosexual (straight)  Most of the time
## 8891  Heterosexual (straight)            Rarely
## 8892  Heterosexual (straight)         Sometimes
## 8893  Heterosexual (straight)         Sometimes
## 8894           Gay or lesbian            Always
## 8895                 Bisexual  Most of the time
## 8896  Heterosexual (straight)         Sometimes
## 8897  Heterosexual (straight)  Most of the time
## 8898  Heterosexual (straight)            Rarely
## 8899                 Bisexual         Sometimes
## 8900  Heterosexual (straight)            Rarely
## 8901                 Bisexual         Sometimes
## 8902  Heterosexual (straight)              <NA>
## 8903  Heterosexual (straight)             Never
## 8904  Heterosexual (straight)            Rarely
## 8905  Heterosexual (straight)            Rarely
## 8906                 Bisexual  Most of the time
## 8907  Heterosexual (straight)             Never
## 8908                 Bisexual         Sometimes
## 8909  Heterosexual (straight)  Most of the time
## 8910  Heterosexual (straight)  Most of the time
## 8911  Heterosexual (straight)  Most of the time
## 8912  Heterosexual (straight)         Sometimes
## 8913  Heterosexual (straight)            Always
## 8914  Heterosexual (straight)            Rarely
## 8915           Some other way         Sometimes
## 8916  Heterosexual (straight)            Rarely
## 8917  Heterosexual (straight)  Most of the time
## 8918  Heterosexual (straight)            Rarely
## 8919                 Bisexual  Most of the time
## 8920  Heterosexual (straight)            Always
## 8921  Heterosexual (straight)            Always
## 8922  Heterosexual (straight)         Sometimes
## 8923  Heterosexual (straight)  Most of the time
## 8924  Heterosexual (straight)            Rarely
## 8925           Some other way  Most of the time
## 8926           Gay or lesbian            Rarely
## 8927  Heterosexual (straight)         Sometimes
## 8928           Gay or lesbian  Most of the time
## 8929  Heterosexual (straight)         Sometimes
## 8930  Heterosexual (straight)         Sometimes
## 8931  Heterosexual (straight)         Sometimes
## 8932  Heterosexual (straight)             Never
## 8933  Heterosexual (straight)         Sometimes
## 8934  Heterosexual (straight)  Most of the time
## 8935  Heterosexual (straight)         Sometimes
## 8936  Heterosexual (straight)             Never
## 8937  Heterosexual (straight)         Sometimes
## 8938  Heterosexual (straight)             Never
## 8939  Heterosexual (straight)         Sometimes
## 8940  Heterosexual (straight)            Always
## 8941  Heterosexual (straight)             Never
## 8942  Heterosexual (straight)         Sometimes
## 8943  Heterosexual (straight)             Never
## 8944  Heterosexual (straight)  Most of the time
## 8945  Heterosexual (straight)            Always
## 8946  Heterosexual (straight)         Sometimes
## 8947  Heterosexual (straight)  Most of the time
## 8948  Heterosexual (straight)            Rarely
## 8949  Heterosexual (straight)  Most of the time
## 8950  Heterosexual (straight)         Sometimes
## 8951  Heterosexual (straight)            Always
## 8952  Heterosexual (straight)         Sometimes
## 8953  Heterosexual (straight)  Most of the time
## 8954  Heterosexual (straight)            Rarely
## 8955                 Bisexual  Most of the time
## 8956  Heterosexual (straight)         Sometimes
## 8957  Heterosexual (straight)         Sometimes
## 8958  Heterosexual (straight)  Most of the time
## 8959  Heterosexual (straight)            Rarely
## 8960  Heterosexual (straight)             Never
## 8961  Heterosexual (straight)         Sometimes
## 8962  Heterosexual (straight)  Most of the time
## 8963  Heterosexual (straight)         Sometimes
## 8964  Heterosexual (straight)  Most of the time
## 8965  Heterosexual (straight)  Most of the time
## 8966  Heterosexual (straight)             Never
## 8967  Heterosexual (straight)         Sometimes
## 8968                 Not sure         Sometimes
## 8969  Heterosexual (straight)             Never
## 8970  Heterosexual (straight)             Never
## 8971  Heterosexual (straight)            Always
## 8972  Heterosexual (straight)  Most of the time
## 8973  Heterosexual (straight)            Always
## 8974  Heterosexual (straight)         Sometimes
## 8975  Heterosexual (straight)             Never
## 8976  Heterosexual (straight)  Most of the time
## 8977  Heterosexual (straight)             Never
## 8978  Heterosexual (straight)             Never
## 8979  Heterosexual (straight)             Never
## 8980  Heterosexual (straight)            Rarely
## 8981  Heterosexual (straight)             Never
## 8982  Heterosexual (straight)             Never
## 8983                 Not sure         Sometimes
## 8984  Heterosexual (straight)         Sometimes
## 8985  Heterosexual (straight)            Always
## 8986  Heterosexual (straight)             Never
## 8987           Gay or lesbian            Always
## 8988  Heterosexual (straight)              <NA>
## 8989  Heterosexual (straight)            Rarely
## 8990  Heterosexual (straight)             Never
## 8991  Heterosexual (straight)            Rarely
## 8992  Heterosexual (straight)            Rarely
## 8993                 Bisexual         Sometimes
## 8994  Heterosexual (straight)             Never
## 8995  Heterosexual (straight)         Sometimes
## 8996                 Bisexual         Sometimes
## 8997  Heterosexual (straight)            Rarely
## 8998                 Bisexual            Rarely
## 8999  Heterosexual (straight)  Most of the time
## 9000  Heterosexual (straight)         Sometimes
## 9001  Heterosexual (straight)  Most of the time
## 9002  Heterosexual (straight)         Sometimes
## 9003  Heterosexual (straight)         Sometimes
## 9004  Heterosexual (straight)             Never
## 9005                 Not sure         Sometimes
## 9006                 Not sure  Most of the time
## 9007  Heterosexual (straight)            Always
## 9008  Heterosexual (straight)         Sometimes
## 9009  Heterosexual (straight)         Sometimes
## 9010                 Bisexual  Most of the time
## 9011  Heterosexual (straight)         Sometimes
## 9012  Heterosexual (straight)         Sometimes
## 9013  Heterosexual (straight)         Sometimes
## 9014                 Bisexual  Most of the time
## 9015                 Bisexual         Sometimes
## 9016  Heterosexual (straight)              <NA>
## 9017  Heterosexual (straight)         Sometimes
## 9018  Heterosexual (straight)         Sometimes
## 9019                 Not sure         Sometimes
## 9020  Heterosexual (straight)             Never
## 9021  Heterosexual (straight)             Never
## 9022  Heterosexual (straight)         Sometimes
## 9023                 Bisexual            Always
## 9024  Heterosexual (straight)  Most of the time
## 9025  Heterosexual (straight)         Sometimes
## 9026                 Not sure            Always
## 9027  Heterosexual (straight)         Sometimes
## 9028  Heterosexual (straight)         Sometimes
## 9029  Heterosexual (straight)            Always
## 9030  Heterosexual (straight)         Sometimes
## 9031                 Bisexual  Most of the time
## 9032                 Not sure  Most of the time
## 9033  Heterosexual (straight)         Sometimes
## 9034  Heterosexual (straight)            Rarely
## 9035  Heterosexual (straight)         Sometimes
## 9036  Heterosexual (straight)            Rarely
## 9037                 Bisexual             Never
## 9038  Heterosexual (straight)            Rarely
## 9039  Heterosexual (straight)            Always
## 9040                 Bisexual  Most of the time
## 9041  Heterosexual (straight)         Sometimes
## 9042  Heterosexual (straight)             Never
## 9043  Heterosexual (straight)             Never
## 9044  Heterosexual (straight)         Sometimes
## 9045  Heterosexual (straight)             Never
## 9046  Heterosexual (straight)            Rarely
## 9047           Some other way  Most of the time
## 9048  Heterosexual (straight)            Rarely
## 9049  Heterosexual (straight)  Most of the time
## 9050                 Bisexual            Always
## 9051  Heterosexual (straight)            Rarely
## 9052  Heterosexual (straight)             Never
## 9053  Heterosexual (straight)  Most of the time
## 9054                 Bisexual         Sometimes
## 9055                 Bisexual            Rarely
## 9056  Heterosexual (straight)            Always
## 9057  Heterosexual (straight)             Never
## 9058                 Bisexual         Sometimes
## 9059                 Bisexual  Most of the time
## 9060  Heterosexual (straight)         Sometimes
## 9061           Some other way         Sometimes
## 9062                 Bisexual            Always
## 9063  Heterosexual (straight)         Sometimes
## 9064                 Bisexual  Most of the time
## 9065  Heterosexual (straight)            Rarely
## 9066                 Bisexual         Sometimes
## 9067  Heterosexual (straight)  Most of the time
## 9068  Heterosexual (straight)            Always
## 9069  Heterosexual (straight)             Never
## 9070                 Bisexual              <NA>
## 9071  Heterosexual (straight)              <NA>
## 9072  Heterosexual (straight)         Sometimes
## 9073                 Bisexual         Sometimes
## 9074                 Bisexual            Always
## 9075                 Bisexual              <NA>
## 9076                 Bisexual         Sometimes
## 9077  Heterosexual (straight)            Rarely
## 9078  Heterosexual (straight)            Always
## 9079  Heterosexual (straight)  Most of the time
## 9080  Heterosexual (straight)            Rarely
## 9081                 Bisexual            Always
## 9082  Heterosexual (straight)            Rarely
## 9083  Heterosexual (straight)             Never
## 9084           Some other way            Always
## 9085           Gay or lesbian            Always
## 9086  Heterosexual (straight)            Always
## 9087  Heterosexual (straight)             Never
## 9088           Some other way            Rarely
## 9089  Heterosexual (straight)         Sometimes
## 9090  Heterosexual (straight)  Most of the time
## 9091  Heterosexual (straight)             Never
## 9092  Heterosexual (straight)              <NA>
## 9093  Heterosexual (straight)            Rarely
## 9094  Heterosexual (straight)  Most of the time
## 9095                 Bisexual         Sometimes
## 9096  Heterosexual (straight)         Sometimes
## 9097  Heterosexual (straight)            Rarely
## 9098                 Bisexual  Most of the time
## 9099  Heterosexual (straight)  Most of the time
## 9100  Heterosexual (straight)         Sometimes
## 9101                 Bisexual  Most of the time
## 9102                 Not sure  Most of the time
## 9103  Heterosexual (straight)            Rarely
## 9104                 Bisexual  Most of the time
## 9105                 Not sure         Sometimes
## 9106                 Not sure         Sometimes
## 9107  Heterosexual (straight)         Sometimes
## 9108  Heterosexual (straight)             Never
## 9109  Heterosexual (straight)            Rarely
## 9110  Heterosexual (straight)            Rarely
## 9111                 Bisexual         Sometimes
## 9112  Heterosexual (straight)            Rarely
## 9113  Heterosexual (straight)         Sometimes
## 9114  Heterosexual (straight)  Most of the time
## 9115                 Bisexual            Always
## 9116  Heterosexual (straight)         Sometimes
## 9117  Heterosexual (straight)            Rarely
## 9118                 Bisexual            Rarely
## 9119  Heterosexual (straight)         Sometimes
## 9120  Heterosexual (straight)             Never
## 9121                 Bisexual  Most of the time
## 9122  Heterosexual (straight)            Rarely
## 9123  Heterosexual (straight)            Rarely
## 9124                 Bisexual         Sometimes
## 9125                 Bisexual  Most of the time
## 9126  Heterosexual (straight)         Sometimes
## 9127  Heterosexual (straight)            Rarely
## 9128                 Bisexual  Most of the time
## 9129  Heterosexual (straight)         Sometimes
## 9130  Heterosexual (straight)            Always
## 9131           Some other way  Most of the time
## 9132  Heterosexual (straight)  Most of the time
## 9133                 Bisexual         Sometimes
## 9134  Heterosexual (straight)            Rarely
## 9135  Heterosexual (straight)             Never
## 9136  Heterosexual (straight)         Sometimes
## 9137  Heterosexual (straight)             Never
## 9138  Heterosexual (straight)            Rarely
## 9139  Heterosexual (straight)         Sometimes
## 9140  Heterosexual (straight)  Most of the time
## 9141  Heterosexual (straight)            Rarely
## 9142           Some other way  Most of the time
## 9143           Some other way            Always
## 9144  Heterosexual (straight)         Sometimes
## 9145  Heterosexual (straight)         Sometimes
## 9146  Heterosexual (straight)         Sometimes
## 9147  Heterosexual (straight)         Sometimes
## 9148  Heterosexual (straight)         Sometimes
## 9149  Heterosexual (straight)             Never
## 9150  Heterosexual (straight)         Sometimes
## 9151  Heterosexual (straight)             Never
## 9152  Heterosexual (straight)         Sometimes
## 9153  Heterosexual (straight)  Most of the time
## 9154  Heterosexual (straight)         Sometimes
## 9155                 Not sure  Most of the time
## 9156           Some other way            Always
## 9157                 Bisexual  Most of the time
## 9158  Heterosexual (straight)  Most of the time
## 9159  Heterosexual (straight)            Rarely
## 9160  Heterosexual (straight)            Rarely
## 9161                 Not sure         Sometimes
## 9162  Heterosexual (straight)         Sometimes
## 9163           Gay or lesbian  Most of the time
## 9164  Heterosexual (straight)         Sometimes
## 9165                 Not sure            Rarely
## 9166  Heterosexual (straight)            Rarely
## 9167  Heterosexual (straight)  Most of the time
## 9168  Heterosexual (straight)            Rarely
## 9169  Heterosexual (straight)            Always
## 9170                 Bisexual  Most of the time
## 9171  Heterosexual (straight)            Rarely
## 9172  Heterosexual (straight)            Rarely
## 9173  Heterosexual (straight)         Sometimes
## 9174  Heterosexual (straight)            Rarely
## 9175  Heterosexual (straight)             Never
## 9176                 Bisexual            Always
## 9177  Heterosexual (straight)            Rarely
## 9178  Heterosexual (straight)         Sometimes
## 9179  Heterosexual (straight)            Rarely
## 9180  Heterosexual (straight)         Sometimes
## 9181  Heterosexual (straight)            Rarely
## 9182  Heterosexual (straight)            Rarely
## 9183                 Not sure         Sometimes
## 9184  Heterosexual (straight)  Most of the time
## 9185  Heterosexual (straight)  Most of the time
## 9186                 Not sure         Sometimes
## 9187                 Bisexual            Rarely
## 9188  Heterosexual (straight)            Always
## 9189  Heterosexual (straight)             Never
## 9190                 Bisexual             Never
## 9191  Heterosexual (straight)         Sometimes
## 9192           Some other way            Always
## 9193  Heterosexual (straight)         Sometimes
## 9194  Heterosexual (straight)            Rarely
## 9195  Heterosexual (straight)             Never
## 9196  Heterosexual (straight)         Sometimes
## 9197  Heterosexual (straight)            Rarely
## 9198           Some other way  Most of the time
## 9199  Heterosexual (straight)            Rarely
## 9200  Heterosexual (straight)             Never
## 9201  Heterosexual (straight)             Never
## 9202  Heterosexual (straight)  Most of the time
## 9203  Heterosexual (straight)            Always
## 9204  Heterosexual (straight)             Never
## 9205  Heterosexual (straight)            Rarely
## 9206                 Bisexual  Most of the time
## 9207  Heterosexual (straight)            Rarely
## 9208  Heterosexual (straight)            Rarely
## 9209                 Bisexual  Most of the time
## 9210           Some other way  Most of the time
## 9211                 Bisexual            Always
## 9212  Heterosexual (straight)             Never
## 9213  Heterosexual (straight)            Rarely
## 9214  Heterosexual (straight)         Sometimes
## 9215  Heterosexual (straight)            Rarely
## 9216  Heterosexual (straight)            Rarely
## 9217                 Bisexual         Sometimes
## 9218  Heterosexual (straight)         Sometimes
## 9219  Heterosexual (straight)         Sometimes
## 9220  Heterosexual (straight)         Sometimes
## 9221  Heterosexual (straight)            Rarely
## 9222                 Not sure  Most of the time
## 9223           Gay or lesbian            Rarely
## 9224  Heterosexual (straight)             Never
## 9225  Heterosexual (straight)         Sometimes
## 9226  Heterosexual (straight)  Most of the time
## 9227  Heterosexual (straight)            Rarely
## 9228  Heterosexual (straight)             Never
## 9229  Heterosexual (straight)             Never
## 9230  Heterosexual (straight)             Never
## 9231  Heterosexual (straight)             Never
## 9232  Heterosexual (straight)            Rarely
## 9233           Gay or lesbian  Most of the time
## 9234  Heterosexual (straight)  Most of the time
## 9235  Heterosexual (straight)            Rarely
## 9236  Heterosexual (straight)            Rarely
## 9237  Heterosexual (straight)  Most of the time
## 9238  Heterosexual (straight)  Most of the time
## 9239                 Bisexual            Always
## 9240  Heterosexual (straight)  Most of the time
## 9241  Heterosexual (straight)            Rarely
## 9242  Heterosexual (straight)         Sometimes
## 9243  Heterosexual (straight)            Rarely
## 9244  Heterosexual (straight)  Most of the time
## 9245           Gay or lesbian         Sometimes
## 9246  Heterosexual (straight)            Rarely
## 9247  Heterosexual (straight)            Always
## 9248  Heterosexual (straight)  Most of the time
## 9249  Heterosexual (straight)            Rarely
## 9250  Heterosexual (straight)             Never
## 9251           Gay or lesbian         Sometimes
## 9252           Some other way  Most of the time
## 9253  Heterosexual (straight)             Never
## 9254  Heterosexual (straight)         Sometimes
## 9255  Heterosexual (straight)            Rarely
## 9256  Heterosexual (straight)  Most of the time
## 9257  Heterosexual (straight)         Sometimes
## 9258  Heterosexual (straight)              <NA>
## 9259  Heterosexual (straight)             Never
## 9260  Heterosexual (straight)            Rarely
## 9261  Heterosexual (straight)         Sometimes
## 9262  Heterosexual (straight)         Sometimes
## 9263                 Not sure  Most of the time
## 9264  Heterosexual (straight)              <NA>
## 9265  Heterosexual (straight)            Rarely
## 9266  Heterosexual (straight)            Always
## 9267  Heterosexual (straight)             Never
## 9268  Heterosexual (straight)  Most of the time
## 9269                 Bisexual            Rarely
## 9270  Heterosexual (straight)            Rarely
## 9271  Heterosexual (straight)         Sometimes
## 9272  Heterosexual (straight)  Most of the time
## 9273  Heterosexual (straight)         Sometimes
## 9274  Heterosexual (straight)         Sometimes
## 9275  Heterosexual (straight)         Sometimes
## 9276  Heterosexual (straight)             Never
## 9277  Heterosexual (straight)            Rarely
## 9278  Heterosexual (straight)         Sometimes
## 9279  Heterosexual (straight)            Always
## 9280  Heterosexual (straight)            Rarely
## 9281  Heterosexual (straight)            Rarely
## 9282  Heterosexual (straight)         Sometimes
## 9283  Heterosexual (straight)             Never
## 9284  Heterosexual (straight)         Sometimes
## 9285  Heterosexual (straight)             Never
## 9286  Heterosexual (straight)             Never
## 9287           Gay or lesbian            Always
## 9288  Heterosexual (straight)  Most of the time
## 9289  Heterosexual (straight)  Most of the time
## 9290  Heterosexual (straight)            Always
## 9291  Heterosexual (straight)            Rarely
## 9292  Heterosexual (straight)         Sometimes
## 9293  Heterosexual (straight)  Most of the time
## 9294                 Not sure  Most of the time
## 9295  Heterosexual (straight)             Never
## 9296  Heterosexual (straight)             Never
## 9297                 Bisexual  Most of the time
## 9298  Heterosexual (straight)         Sometimes
## 9299  Heterosexual (straight)            Rarely
## 9300  Heterosexual (straight)         Sometimes
## 9301  Heterosexual (straight)            Rarely
## 9302  Heterosexual (straight)         Sometimes
## 9303  Heterosexual (straight)             Never
## 9304  Heterosexual (straight)  Most of the time
## 9305  Heterosexual (straight)  Most of the time
## 9306                 Bisexual            Rarely
## 9307  Heterosexual (straight)            Always
## 9308           Some other way            Always
## 9309                 Bisexual            Always
## 9310           Some other way         Sometimes
## 9311  Heterosexual (straight)  Most of the time
## 9312           Some other way  Most of the time
## 9313  Heterosexual (straight)  Most of the time
## 9314                 Not sure  Most of the time
## 9315           Gay or lesbian  Most of the time
## 9316                 Not sure            Always
## 9317  Heterosexual (straight)         Sometimes
## 9318  Heterosexual (straight)            Rarely
## 9319                 Bisexual         Sometimes
## 9320                 Bisexual            Always
## 9321  Heterosexual (straight)              <NA>
## 9322  Heterosexual (straight)              <NA>
## 9323  Heterosexual (straight)              <NA>
## 9324  Heterosexual (straight)              <NA>
## 9325  Heterosexual (straight)              <NA>
## 9326  Heterosexual (straight)              <NA>
## 9327  Heterosexual (straight)              <NA>
## 9328  Heterosexual (straight)              <NA>
## 9329  Heterosexual (straight)              <NA>
## 9330  Heterosexual (straight)              <NA>
## 9331  Heterosexual (straight)              <NA>
## 9332  Heterosexual (straight)              <NA>
## 9333  Heterosexual (straight)              <NA>
## 9334  Heterosexual (straight)              <NA>
## 9335           Some other way              <NA>
## 9336  Heterosexual (straight)              <NA>
## 9337  Heterosexual (straight)              <NA>
## 9338  Heterosexual (straight)              <NA>
## 9339                 Bisexual              <NA>
## 9340  Heterosexual (straight)              <NA>
## 9341  Heterosexual (straight)              <NA>
## 9342                 Bisexual              <NA>
## 9343  Heterosexual (straight)              <NA>
## 9344  Heterosexual (straight)              <NA>
## 9345  Heterosexual (straight)              <NA>
## 9346  Heterosexual (straight)              <NA>
## 9347  Heterosexual (straight)              <NA>
## 9348                 Not sure              <NA>
## 9349  Heterosexual (straight)              <NA>
## 9350  Heterosexual (straight)              <NA>
## 9351  Heterosexual (straight)              <NA>
## 9352                 Not sure              <NA>
## 9353  Heterosexual (straight)              <NA>
## 9354  Heterosexual (straight)              <NA>
## 9355                 Bisexual              <NA>
## 9356  Heterosexual (straight)              <NA>
## 9357  Heterosexual (straight)              <NA>
## 9358  Heterosexual (straight)              <NA>
## 9359  Heterosexual (straight)              <NA>
## 9360  Heterosexual (straight)              <NA>
## 9361  Heterosexual (straight)              <NA>
## 9362  Heterosexual (straight)              <NA>
## 9363  Heterosexual (straight)              <NA>
## 9364  Heterosexual (straight)              <NA>
## 9365           Some other way              <NA>
## 9366           Some other way              <NA>
## 9367  Heterosexual (straight)              <NA>
## 9368  Heterosexual (straight)              <NA>
## 9369  Heterosexual (straight)              <NA>
## 9370                 Bisexual              <NA>
## 9371  Heterosexual (straight)              <NA>
## 9372  Heterosexual (straight)              <NA>
## 9373                 Not sure              <NA>
## 9374  Heterosexual (straight)              <NA>
## 9375  Heterosexual (straight)              <NA>
## 9376  Heterosexual (straight)              <NA>
## 9377  Heterosexual (straight)              <NA>
## 9378  Heterosexual (straight)              <NA>
## 9379  Heterosexual (straight)              <NA>
## 9380  Heterosexual (straight)              <NA>
## 9381  Heterosexual (straight)              <NA>
## 9382  Heterosexual (straight)              <NA>
## 9383  Heterosexual (straight)              <NA>
## 9384  Heterosexual (straight)              <NA>
## 9385  Heterosexual (straight)              <NA>
## 9386  Heterosexual (straight)              <NA>
## 9387  Heterosexual (straight)              <NA>
## 9388  Heterosexual (straight)              <NA>
## 9389  Heterosexual (straight)              <NA>
## 9390  Heterosexual (straight)              <NA>
## 9391  Heterosexual (straight)              <NA>
## 9392           Some other way              <NA>
## 9393  Heterosexual (straight)              <NA>
## 9394  Heterosexual (straight)              <NA>
## 9395                 Not sure              <NA>
## 9396  Heterosexual (straight)              <NA>
## 9397  Heterosexual (straight)              <NA>
## 9398                 Bisexual              <NA>
## 9399  Heterosexual (straight)              <NA>
## 9400           Gay or lesbian              <NA>
## 9401                 Bisexual              <NA>
## 9402  Heterosexual (straight)              <NA>
## 9403  Heterosexual (straight)              <NA>
## 9404  Heterosexual (straight)              <NA>
## 9405  Heterosexual (straight)              <NA>
## 9406                 Bisexual              <NA>
## 9407  Heterosexual (straight)              <NA>
## 9408  Heterosexual (straight)              <NA>
## 9409  Heterosexual (straight)              <NA>
## 9410  Heterosexual (straight)              <NA>
## 9411  Heterosexual (straight)              <NA>
## 9412  Heterosexual (straight)              <NA>
## 9413  Heterosexual (straight)              <NA>
## 9414  Heterosexual (straight)              <NA>
## 9415  Heterosexual (straight)              <NA>
## 9416                 Not sure              <NA>
## 9417                 Bisexual              <NA>
## 9418                 Bisexual              <NA>
## 9419  Heterosexual (straight)              <NA>
## 9420  Heterosexual (straight)              <NA>
## 9421  Heterosexual (straight)              <NA>
## 9422                 Bisexual              <NA>
## 9423  Heterosexual (straight)              <NA>
## 9424  Heterosexual (straight)              <NA>
## 9425  Heterosexual (straight)              <NA>
## 9426  Heterosexual (straight)              <NA>
## 9427  Heterosexual (straight)              <NA>
## 9428                 Bisexual              <NA>
## 9429  Heterosexual (straight)              <NA>
## 9430  Heterosexual (straight)              <NA>
## 9431  Heterosexual (straight)              <NA>
## 9432  Heterosexual (straight)              <NA>
## 9433  Heterosexual (straight)              <NA>
## 9434  Heterosexual (straight)              <NA>
## 9435                 Bisexual              <NA>
## 9436  Heterosexual (straight)              <NA>
## 9437  Heterosexual (straight)              <NA>
## 9438                 Bisexual              <NA>
## 9439  Heterosexual (straight)              <NA>
## 9440  Heterosexual (straight)              <NA>
## 9441  Heterosexual (straight)              <NA>
## 9442                 Not sure              <NA>
## 9443                 Bisexual              <NA>
## 9444  Heterosexual (straight)              <NA>
## 9445           Some other way              <NA>
## 9446                 Bisexual              <NA>
## 9447                 Bisexual              <NA>
## 9448  Heterosexual (straight)              <NA>
## 9449  Heterosexual (straight)              <NA>
## 9450  Heterosexual (straight)              <NA>
## 9451  Heterosexual (straight)              <NA>
## 9452  Heterosexual (straight)              <NA>
## 9453  Heterosexual (straight)              <NA>
## 9454  Heterosexual (straight)              <NA>
## 9455  Heterosexual (straight)              <NA>
## 9456  Heterosexual (straight)              <NA>
## 9457  Heterosexual (straight)              <NA>
## 9458                 Bisexual              <NA>
## 9459  Heterosexual (straight)              <NA>
## 9460  Heterosexual (straight)              <NA>
## 9461  Heterosexual (straight)              <NA>
## 9462  Heterosexual (straight)              <NA>
## 9463  Heterosexual (straight)              <NA>
## 9464  Heterosexual (straight)              <NA>
## 9465  Heterosexual (straight)              <NA>
## 9466           Some other way              <NA>
## 9467  Heterosexual (straight)              <NA>
## 9468  Heterosexual (straight)              <NA>
## 9469  Heterosexual (straight)              <NA>
## 9470           Some other way              <NA>
## 9471  Heterosexual (straight)              <NA>
## 9472           Some other way              <NA>
## 9473  Heterosexual (straight)              <NA>
## 9474                 Bisexual              <NA>
## 9475  Heterosexual (straight)              <NA>
## 9476                 Bisexual              <NA>
## 9477           Some other way              <NA>
## 9478           Some other way              <NA>
## 9479           Some other way              <NA>
## 9480  Heterosexual (straight)              <NA>
## 9481                 Bisexual              <NA>
## 9482                 Bisexual              <NA>
## 9483                 Bisexual              <NA>
## 9484  Heterosexual (straight)              <NA>
## 9485  Heterosexual (straight)              <NA>
## 9486  Heterosexual (straight)              <NA>
## 9487  Heterosexual (straight)              <NA>
## 9488  Heterosexual (straight)              <NA>
## 9489  Heterosexual (straight)              <NA>
## 9490                 Bisexual              <NA>
## 9491           Gay or lesbian              <NA>
## 9492  Heterosexual (straight)              <NA>
## 9493  Heterosexual (straight)              <NA>
## 9494                 Bisexual              <NA>
## 9495  Heterosexual (straight)              <NA>
## 9496  Heterosexual (straight)              <NA>
## 9497  Heterosexual (straight)              <NA>
## 9498  Heterosexual (straight)              <NA>
## 9499  Heterosexual (straight)              <NA>
## 9500  Heterosexual (straight)              <NA>
## 9501  Heterosexual (straight)              <NA>
## 9502           Gay or lesbian             Never
## 9503                 Bisexual         Sometimes
## 9504                 Bisexual         Sometimes
## 9505           Gay or lesbian  Most of the time
## 9506                 Bisexual            Always
## 9507                 Bisexual  Most of the time
## 9508           Some other way  Most of the time
## 9509  Heterosexual (straight)             Never
## 9510  Heterosexual (straight)         Sometimes
## 9511  Heterosexual (straight)            Always
## 9512                 Bisexual             Never
## 9513  Heterosexual (straight)  Most of the time
## 9514  Heterosexual (straight)         Sometimes
## 9515  Heterosexual (straight)             Never
## 9516  Heterosexual (straight)         Sometimes
## 9517                 Bisexual  Most of the time
## 9518                 Bisexual            Always
## 9519  Heterosexual (straight)         Sometimes
## 9520                 Bisexual         Sometimes
## 9521                 Bisexual         Sometimes
## 9522  Heterosexual (straight)            Always
## 9523  Heterosexual (straight)            Always
## 9524           Gay or lesbian            Rarely
## 9525  Heterosexual (straight)  Most of the time
## 9526  Heterosexual (straight)             Never
## 9527  Heterosexual (straight)         Sometimes
## 9528  Heterosexual (straight)            Rarely
## 9529  Heterosexual (straight)            Rarely
## 9530  Heterosexual (straight)  Most of the time
## 9531  Heterosexual (straight)             Never
## 9532  Heterosexual (straight)            Rarely
## 9533                 Not sure         Sometimes
## 9534                 Not sure             Never
## 9535                 Bisexual  Most of the time
## 9536                 Bisexual         Sometimes
## 9537  Heterosexual (straight)         Sometimes
## 9538  Heterosexual (straight)            Rarely
## 9539                 Not sure  Most of the time
## 9540  Heterosexual (straight)  Most of the time
## 9541  Heterosexual (straight)            Rarely
## 9542  Heterosexual (straight)            Rarely
## 9543  Heterosexual (straight)         Sometimes
## 9544           Some other way            Always
## 9545  Heterosexual (straight)            Rarely
## 9546                 Bisexual  Most of the time
## 9547  Heterosexual (straight)             Never
## 9548  Heterosexual (straight)            Rarely
## 9549  Heterosexual (straight)         Sometimes
## 9550  Heterosexual (straight)  Most of the time
## 9551                 Not sure  Most of the time
## 9552  Heterosexual (straight)  Most of the time
## 9553                 Not sure            Always
## 9554  Heterosexual (straight)            Rarely
## 9555           Some other way  Most of the time
## 9556                 Not sure  Most of the time
## 9557  Heterosexual (straight)             Never
## 9558  Heterosexual (straight)            Rarely
## 9559  Heterosexual (straight)            Rarely
## 9560  Heterosexual (straight)            Rarely
## 9561           Gay or lesbian  Most of the time
## 9562                 Not sure         Sometimes
## 9563                 Bisexual         Sometimes
## 9564  Heterosexual (straight)         Sometimes
## 9565  Heterosexual (straight)  Most of the time
## 9566  Heterosexual (straight)            Always
## 9567  Heterosexual (straight)            Rarely
## 9568                 Bisexual  Most of the time
## 9569  Heterosexual (straight)            Rarely
## 9570  Heterosexual (straight)         Sometimes
## 9571  Heterosexual (straight)         Sometimes
## 9572                 Bisexual            Rarely
## 9573  Heterosexual (straight)            Rarely
## 9574  Heterosexual (straight)         Sometimes
## 9575  Heterosexual (straight)             Never
## 9576  Heterosexual (straight)              <NA>
## 9577  Heterosexual (straight)         Sometimes
## 9578                 Not sure         Sometimes
## 9579  Heterosexual (straight)         Sometimes
## 9580  Heterosexual (straight)             Never
## 9581           Some other way  Most of the time
## 9582  Heterosexual (straight)             Never
## 9583  Heterosexual (straight)            Always
## 9584  Heterosexual (straight)         Sometimes
## 9585  Heterosexual (straight)             Never
## 9586  Heterosexual (straight)  Most of the time
## 9587  Heterosexual (straight)             Never
## 9588  Heterosexual (straight)             Never
## 9589           Some other way  Most of the time
## 9590  Heterosexual (straight)         Sometimes
## 9591                 Bisexual         Sometimes
## 9592  Heterosexual (straight)         Sometimes
## 9593  Heterosexual (straight)  Most of the time
## 9594           Some other way         Sometimes
## 9595           Gay or lesbian  Most of the time
## 9596                 Bisexual            Rarely
## 9597  Heterosexual (straight)            Rarely
## 9598  Heterosexual (straight)         Sometimes
## 9599  Heterosexual (straight)         Sometimes
## 9600  Heterosexual (straight)            Rarely
## 9601  Heterosexual (straight)         Sometimes
## 9602  Heterosexual (straight)         Sometimes
## 9603  Heterosexual (straight)  Most of the time
## 9604  Heterosexual (straight)              <NA>
## 9605                 Bisexual  Most of the time
## 9606  Heterosexual (straight)             Never
## 9607  Heterosexual (straight)         Sometimes
## 9608                 Bisexual  Most of the time
## 9609                 Not sure            Always
## 9610  Heterosexual (straight)            Rarely
## 9611                 Bisexual         Sometimes
## 9612  Heterosexual (straight)         Sometimes
## 9613  Heterosexual (straight)             Never
## 9614                 Bisexual            Always
## 9615  Heterosexual (straight)         Sometimes
## 9616                 Bisexual  Most of the time
## 9617  Heterosexual (straight)         Sometimes
## 9618  Heterosexual (straight)            Rarely
## 9619  Heterosexual (straight)             Never
## 9620  Heterosexual (straight)            Rarely
## 9621  Heterosexual (straight)            Rarely
## 9622  Heterosexual (straight)  Most of the time
## 9623  Heterosexual (straight)  Most of the time
## 9624  Heterosexual (straight)         Sometimes
## 9625           Some other way  Most of the time
## 9626  Heterosexual (straight)             Never
## 9627           Gay or lesbian  Most of the time
## 9628                 Bisexual            Rarely
## 9629  Heterosexual (straight)             Never
## 9630  Heterosexual (straight)         Sometimes
## 9631  Heterosexual (straight)            Rarely
## 9632                 Bisexual            Always
## 9633  Heterosexual (straight)  Most of the time
## 9634  Heterosexual (straight)            Always
## 9635  Heterosexual (straight)              <NA>
## 9636                 Not sure         Sometimes
## 9637  Heterosexual (straight)         Sometimes
## 9638           Gay or lesbian  Most of the time
## 9639  Heterosexual (straight)            Rarely
## 9640  Heterosexual (straight)         Sometimes
## 9641  Heterosexual (straight)            Rarely
## 9642  Heterosexual (straight)  Most of the time
## 9643  Heterosexual (straight)            Rarely
## 9644  Heterosexual (straight)             Never
## 9645  Heterosexual (straight)         Sometimes
## 9646  Heterosexual (straight)         Sometimes
## 9647  Heterosexual (straight)         Sometimes
## 9648  Heterosexual (straight)             Never
## 9649  Heterosexual (straight)  Most of the time
## 9650  Heterosexual (straight)  Most of the time
## 9651                 Bisexual  Most of the time
## 9652  Heterosexual (straight)         Sometimes
## 9653                 Bisexual         Sometimes
## 9654  Heterosexual (straight)  Most of the time
## 9655           Gay or lesbian  Most of the time
## 9656           Gay or lesbian         Sometimes
## 9657                 Bisexual  Most of the time
## 9658  Heterosexual (straight)            Always
## 9659  Heterosexual (straight)         Sometimes
## 9660           Gay or lesbian            Always
## 9661           Gay or lesbian         Sometimes
## 9662  Heterosexual (straight)              <NA>
## 9663  Heterosexual (straight)         Sometimes
## 9664  Heterosexual (straight)            Rarely
## 9665           Gay or lesbian            Always
## 9666  Heterosexual (straight)         Sometimes
## 9667           Gay or lesbian         Sometimes
## 9668  Heterosexual (straight)            Rarely
## 9669  Heterosexual (straight)            Always
## 9670  Heterosexual (straight)             Never
## 9671                 Bisexual  Most of the time
## 9672  Heterosexual (straight)            Rarely
## 9673           Gay or lesbian  Most of the time
## 9674  Heterosexual (straight)         Sometimes
## 9675  Heterosexual (straight)            Rarely
## 9676                 Not sure  Most of the time
## 9677  Heterosexual (straight)            Rarely
## 9678                 Bisexual         Sometimes
## 9679                 Not sure  Most of the time
## 9680  Heterosexual (straight)            Rarely
## 9681  Heterosexual (straight)             Never
## 9682           Some other way             Never
## 9683  Heterosexual (straight)  Most of the time
## 9684  Heterosexual (straight)            Rarely
## 9685                 Not sure         Sometimes
## 9686  Heterosexual (straight)         Sometimes
## 9687                 Not sure         Sometimes
## 9688  Heterosexual (straight)             Never
## 9689                 Bisexual         Sometimes
## 9690           Gay or lesbian            Rarely
## 9691  Heterosexual (straight)            Rarely
## 9692  Heterosexual (straight)             Never
## 9693  Heterosexual (straight)             Never
## 9694  Heterosexual (straight)            Rarely
## 9695  Heterosexual (straight)         Sometimes
## 9696                 Not sure            Rarely
## 9697           Gay or lesbian              <NA>
## 9698                 Bisexual              <NA>
## 9699  Heterosexual (straight)         Sometimes
## 9700  Heterosexual (straight)             Never
## 9701                 Bisexual         Sometimes
## 9702                 Not sure         Sometimes
## 9703  Heterosexual (straight)         Sometimes
## 9704  Heterosexual (straight)             Never
## 9705  Heterosexual (straight)         Sometimes
## 9706                 Bisexual         Sometimes
## 9707           Some other way  Most of the time
## 9708  Heterosexual (straight)             Never
## 9709  Heterosexual (straight)            Rarely
## 9710  Heterosexual (straight)            Rarely
## 9711  Heterosexual (straight)            Rarely
## 9712  Heterosexual (straight)  Most of the time
## 9713  Heterosexual (straight)         Sometimes
## 9714  Heterosexual (straight)         Sometimes
## 9715           Gay or lesbian         Sometimes
## 9716                 Bisexual             Never
## 9717  Heterosexual (straight)         Sometimes
## 9718  Heterosexual (straight)         Sometimes
## 9719  Heterosexual (straight)             Never
## 9720           Some other way            Rarely
## 9721  Heterosexual (straight)            Always
## 9722  Heterosexual (straight)            Rarely
## 9723  Heterosexual (straight)            Always
## 9724  Heterosexual (straight)  Most of the time
## 9725  Heterosexual (straight)  Most of the time
## 9726  Heterosexual (straight)  Most of the time
## 9727  Heterosexual (straight)            Always
## 9728  Heterosexual (straight)         Sometimes
## 9729  Heterosexual (straight)            Rarely
## 9730  Heterosexual (straight)         Sometimes
## 9731  Heterosexual (straight)             Never
## 9732  Heterosexual (straight)         Sometimes
## 9733  Heterosexual (straight)         Sometimes
## 9734  Heterosexual (straight)            Rarely
## 9735  Heterosexual (straight)         Sometimes
## 9736  Heterosexual (straight)         Sometimes
## 9737  Heterosexual (straight)             Never
## 9738  Heterosexual (straight)            Rarely
## 9739           Some other way            Always
## 9740                 Not sure            Always
## 9741  Heterosexual (straight)         Sometimes
## 9742           Gay or lesbian  Most of the time
## 9743  Heterosexual (straight)             Never
## 9744  Heterosexual (straight)  Most of the time
## 9745                 Bisexual  Most of the time
## 9746           Some other way  Most of the time
## 9747                 Bisexual  Most of the time
## 9748  Heterosexual (straight)            Always
## 9749  Heterosexual (straight)             Never
## 9750  Heterosexual (straight)            Rarely
## 9751  Heterosexual (straight)  Most of the time
## 9752  Heterosexual (straight)            Rarely
## 9753  Heterosexual (straight)            Rarely
## 9754           Gay or lesbian         Sometimes
## 9755  Heterosexual (straight)             Never
## 9756                 Not sure            Always
## 9757  Heterosexual (straight)            Rarely
## 9758  Heterosexual (straight)            Rarely
## 9759                 Not sure         Sometimes
## 9760  Heterosexual (straight)            Rarely
## 9761  Heterosexual (straight)            Rarely
## 9762  Heterosexual (straight)  Most of the time
## 9763  Heterosexual (straight)            Always
## 9764  Heterosexual (straight)         Sometimes
## 9765  Heterosexual (straight)         Sometimes
## 9766  Heterosexual (straight)         Sometimes
## 9767  Heterosexual (straight)         Sometimes
## 9768  Heterosexual (straight)  Most of the time
## 9769  Heterosexual (straight)            Rarely
## 9770  Heterosexual (straight)         Sometimes
## 9771           Some other way            Rarely
## 9772  Heterosexual (straight)         Sometimes
## 9773                 Bisexual         Sometimes
## 9774                 Not sure  Most of the time
## 9775                 Not sure  Most of the time
## 9776                 Not sure  Most of the time
## 9777           Some other way              <NA>
## 9778  Heterosexual (straight)  Most of the time
## 9779  Heterosexual (straight)         Sometimes
## 9780  Heterosexual (straight)            Rarely
## 9781  Heterosexual (straight)              <NA>
## 9782  Heterosexual (straight)             Never
## 9783  Heterosexual (straight)         Sometimes
## 9784  Heterosexual (straight)         Sometimes
## 9785  Heterosexual (straight)            Rarely
## 9786  Heterosexual (straight)             Never
## 9787  Heterosexual (straight)             Never
## 9788  Heterosexual (straight)  Most of the time
## 9789  Heterosexual (straight)         Sometimes
## 9790  Heterosexual (straight)             Never
## 9791  Heterosexual (straight)         Sometimes
## 9792  Heterosexual (straight)             Never
## 9793                 Bisexual         Sometimes
## 9794  Heterosexual (straight)  Most of the time
## 9795  Heterosexual (straight)  Most of the time
## 9796  Heterosexual (straight)  Most of the time
## 9797           Gay or lesbian             Never
## 9798  Heterosexual (straight)  Most of the time
## 9799           Gay or lesbian  Most of the time
## 9800  Heterosexual (straight)  Most of the time
## 9801                 Bisexual  Most of the time
## 9802  Heterosexual (straight)            Rarely
## 9803  Heterosexual (straight)            Rarely
## 9804  Heterosexual (straight)            Rarely
## 9805  Heterosexual (straight)            Rarely
## 9806                 Bisexual              <NA>
## 9807           Some other way  Most of the time
## 9808                 Bisexual  Most of the time
## 9809  Heterosexual (straight)             Never
## 9810  Heterosexual (straight)            Always
## 9811  Heterosexual (straight)            Always
## 9812           Gay or lesbian             Never
## 9813  Heterosexual (straight)         Sometimes
## 9814                 Bisexual  Most of the time
## 9815           Some other way  Most of the time
## 9816                 Not sure         Sometimes
## 9817                 Bisexual         Sometimes
## 9818  Heterosexual (straight)         Sometimes
## 9819  Heterosexual (straight)            Rarely
## 9820  Heterosexual (straight)         Sometimes
## 9821  Heterosexual (straight)            Rarely
## 9822                 Bisexual  Most of the time
## 9823  Heterosexual (straight)             Never
## 9824  Heterosexual (straight)  Most of the time
## 9825  Heterosexual (straight)         Sometimes
## 9826  Heterosexual (straight)  Most of the time
## 9827  Heterosexual (straight)         Sometimes
## 9828                 Not sure  Most of the time
## 9829           Gay or lesbian  Most of the time
## 9830  Heterosexual (straight)         Sometimes
## 9831  Heterosexual (straight)         Sometimes
## 9832  Heterosexual (straight)  Most of the time
## 9833  Heterosexual (straight)  Most of the time
## 9834  Heterosexual (straight)            Rarely
## 9835           Some other way  Most of the time
## 9836  Heterosexual (straight)            Rarely
## 9837           Some other way  Most of the time
## 9838  Heterosexual (straight)            Rarely
## 9839  Heterosexual (straight)            Rarely
## 9840  Heterosexual (straight)         Sometimes
## 9841                 Bisexual         Sometimes
## 9842  Heterosexual (straight)            Rarely
## 9843  Heterosexual (straight)            Always
## 9844  Heterosexual (straight)  Most of the time
## 9845           Gay or lesbian            Always
## 9846           Some other way  Most of the time
## 9847                 Bisexual  Most of the time
## 9848                 Not sure  Most of the time
## 9849  Heterosexual (straight)         Sometimes
## 9850           Gay or lesbian  Most of the time
## 9851  Heterosexual (straight)            Rarely
## 9852  Heterosexual (straight)  Most of the time
## 9853  Heterosexual (straight)            Rarely
## 9854  Heterosexual (straight)            Rarely
## 9855  Heterosexual (straight)            Rarely
## 9856  Heterosexual (straight)            Rarely
## 9857  Heterosexual (straight)  Most of the time
## 9858  Heterosexual (straight)  Most of the time
## 9859                 Bisexual  Most of the time
## 9860  Heterosexual (straight)             Never
## 9861  Heterosexual (straight)         Sometimes
## 9862  Heterosexual (straight)         Sometimes
## 9863  Heterosexual (straight)         Sometimes
## 9864  Heterosexual (straight)            Rarely
## 9865  Heterosexual (straight)         Sometimes
## 9866                 Not sure         Sometimes
## 9867                 Not sure  Most of the time
## 9868           Some other way            Always
## 9869           Some other way         Sometimes
## 9870  Heterosexual (straight)            Rarely
## 9871  Heterosexual (straight)            Always
## 9872                 Not sure            Rarely
## 9873                 Bisexual         Sometimes
## 9874                 Bisexual         Sometimes
## 9875  Heterosexual (straight)         Sometimes
## 9876  Heterosexual (straight)  Most of the time
## 9877  Heterosexual (straight)            Rarely
## 9878  Heterosexual (straight)         Sometimes
## 9879  Heterosexual (straight)            Always
## 9880  Heterosexual (straight)         Sometimes
## 9881                 Not sure            Always
## 9882  Heterosexual (straight)            Rarely
## 9883  Heterosexual (straight)         Sometimes
## 9884                 Bisexual            Always
## 9885  Heterosexual (straight)            Rarely
## 9886  Heterosexual (straight)  Most of the time
## 9887  Heterosexual (straight)             Never
## 9888  Heterosexual (straight)             Never
## 9889                 Bisexual         Sometimes
## 9890  Heterosexual (straight)             Never
## 9891                 Bisexual            Rarely
## 9892  Heterosexual (straight)             Never
## 9893  Heterosexual (straight)             Never
## 9894                 Not sure         Sometimes
## 9895  Heterosexual (straight)            Rarely
## 9896           Gay or lesbian         Sometimes
## 9897                 Not sure  Most of the time
## 9898  Heterosexual (straight)         Sometimes
## 9899  Heterosexual (straight)             Never
## 9900           Some other way         Sometimes
## 9901  Heterosexual (straight)            Rarely
## 9902  Heterosexual (straight)         Sometimes
## 9903  Heterosexual (straight)             Never
## 9904                 Bisexual         Sometimes
## 9905                 Bisexual              <NA>
## 9906  Heterosexual (straight)  Most of the time
## 9907  Heterosexual (straight)            Rarely
## 9908  Heterosexual (straight)  Most of the time
## 9909  Heterosexual (straight)             Never
## 9910  Heterosexual (straight)              <NA>
## 9911  Heterosexual (straight)  Most of the time
## 9912  Heterosexual (straight)         Sometimes
## 9913  Heterosexual (straight)            Rarely
## 9914  Heterosexual (straight)             Never
## 9915  Heterosexual (straight)            Always
## 9916  Heterosexual (straight)  Most of the time
## 9917                 Not sure  Most of the time
## 9918  Heterosexual (straight)            Rarely
## 9919  Heterosexual (straight)  Most of the time
## 9920  Heterosexual (straight)            Rarely
## 9921                 Bisexual         Sometimes
## 9922  Heterosexual (straight)             Never
## 9923  Heterosexual (straight)            Rarely
## 9924  Heterosexual (straight)         Sometimes
## 9925  Heterosexual (straight)            Always
## 9926  Heterosexual (straight)             Never
## 9927  Heterosexual (straight)             Never
## 9928  Heterosexual (straight)  Most of the time
## 9929  Heterosexual (straight)            Rarely
## 9930  Heterosexual (straight)         Sometimes
## 9931  Heterosexual (straight)            Always
## 9932  Heterosexual (straight)            Rarely
## 9933  Heterosexual (straight)              <NA>
## 9934  Heterosexual (straight)         Sometimes
## 9935                 Bisexual         Sometimes
## 9936  Heterosexual (straight)            Rarely
## 9937  Heterosexual (straight)             Never
## 9938  Heterosexual (straight)              <NA>
## 9939  Heterosexual (straight)              <NA>
## 9940           Gay or lesbian              <NA>
## 9941  Heterosexual (straight)            Rarely
## 9942                 Bisexual  Most of the time
## 9943  Heterosexual (straight)            Rarely
## 9944                 Bisexual         Sometimes
## 9945  Heterosexual (straight)         Sometimes
## 9946  Heterosexual (straight)         Sometimes
## 9947  Heterosexual (straight)  Most of the time
## 9948  Heterosexual (straight)         Sometimes
## 9949  Heterosexual (straight)  Most of the time
## 9950  Heterosexual (straight)             Never
## 9951  Heterosexual (straight)            Always
## 9952  Heterosexual (straight)            Rarely
## 9953           Gay or lesbian         Sometimes
## 9954  Heterosexual (straight)         Sometimes
## 9955                 Bisexual  Most of the time
## 9956  Heterosexual (straight)  Most of the time
## 9957  Heterosexual (straight)  Most of the time
## 9958           Some other way  Most of the time
## 9959  Heterosexual (straight)  Most of the time
## 9960  Heterosexual (straight)            Always
## 9961           Some other way  Most of the time
## 9962  Heterosexual (straight)            Rarely
## 9963  Heterosexual (straight)             Never
## 9964  Heterosexual (straight)            Rarely
## 9965  Heterosexual (straight)            Rarely
## 9966  Heterosexual (straight)         Sometimes
## 9967  Heterosexual (straight)              <NA>
## 9968  Heterosexual (straight)             Never
## 9969                 Bisexual            Rarely
## 9970                 Not sure            Rarely
## 9971           Some other way  Most of the time
## 9972  Heterosexual (straight)            Rarely
## 9973  Heterosexual (straight)             Never
## 9974  Heterosexual (straight)  Most of the time
## 9975  Heterosexual (straight)            Rarely
## 9976  Heterosexual (straight)            Rarely
## 9977           Gay or lesbian             Never
## 9978  Heterosexual (straight)            Rarely
## 9979  Heterosexual (straight)             Never
## 9980  Heterosexual (straight)            Rarely
## 9981                 Bisexual  Most of the time
## 9982  Heterosexual (straight)         Sometimes
## 9983  Heterosexual (straight)            Rarely
## 9984  Heterosexual (straight)            Rarely
## 9985  Heterosexual (straight)              <NA>
## 9986  Heterosexual (straight)         Sometimes
## 9987  Heterosexual (straight)         Sometimes
## 9988                 Bisexual         Sometimes
## 9989  Heterosexual (straight)  Most of the time
## 9990  Heterosexual (straight)         Sometimes
## 9991                 Bisexual         Sometimes
## 9992  Heterosexual (straight)         Sometimes
## 9993  Heterosexual (straight)             Never
## 9994                 Bisexual            Rarely
## 9995  Heterosexual (straight)         Sometimes
## 9996  Heterosexual (straight)         Sometimes
## 9997           Some other way            Always
## 9998  Heterosexual (straight)         Sometimes
## 9999                 Bisexual              <NA>
## 10000          Gay or lesbian             Never
## 10001 Heterosexual (straight)            Rarely
## 10002          Some other way         Sometimes
## 10003 Heterosexual (straight)            Rarely
## 10004          Gay or lesbian            Rarely
## 10005                Bisexual  Most of the time
## 10006                Not sure         Sometimes
## 10007          Some other way            Always
## 10008                Bisexual  Most of the time
## 10009 Heterosexual (straight)            Rarely
## 10010 Heterosexual (straight)            Rarely
## 10011 Heterosexual (straight)  Most of the time
## 10012          Some other way            Always
## 10013 Heterosexual (straight)            Rarely
## 10014                Not sure         Sometimes
## 10015 Heterosexual (straight)  Most of the time
## 10016 Heterosexual (straight)             Never
## 10017 Heterosexual (straight)             Never
## 10018                Not sure         Sometimes
## 10019 Heterosexual (straight)             Never
## 10020 Heterosexual (straight)            Rarely
## 10021          Some other way            Always
## 10022          Some other way  Most of the time
## 10023                Bisexual              <NA>
## 10024 Heterosexual (straight)            Rarely
## 10025 Heterosexual (straight)             Never
## 10026                Bisexual         Sometimes
## 10027 Heterosexual (straight)         Sometimes
## 10028 Heterosexual (straight)            Rarely
## 10029 Heterosexual (straight)            Rarely
## 10030 Heterosexual (straight)             Never
## 10031 Heterosexual (straight)            Rarely
## 10032 Heterosexual (straight)            Rarely
## 10033 Heterosexual (straight)  Most of the time
## 10034                Not sure  Most of the time
## 10035                Bisexual            Always
## 10036 Heterosexual (straight)         Sometimes
## 10037                Not sure         Sometimes
## 10038          Gay or lesbian            Always
## 10039 Heterosexual (straight)              <NA>
## 10040                Bisexual         Sometimes
## 10041          Some other way            Always
## 10042 Heterosexual (straight)            Rarely
## 10043 Heterosexual (straight)            Rarely
## 10044 Heterosexual (straight)         Sometimes
## 10045 Heterosexual (straight)            Rarely
## 10046          Some other way            Always
## 10047 Heterosexual (straight)            Rarely
## 10048          Some other way            Always
## 10049          Some other way         Sometimes
## 10050 Heterosexual (straight)            Rarely
## 10051 Heterosexual (straight)         Sometimes
## 10052          Some other way  Most of the time
## 10053 Heterosexual (straight)  Most of the time
## 10054 Heterosexual (straight)         Sometimes
## 10055                Bisexual  Most of the time
## 10056 Heterosexual (straight)         Sometimes
## 10057 Heterosexual (straight)            Rarely
## 10058                Bisexual            Always
## 10059 Heterosexual (straight)            Rarely
## 10060 Heterosexual (straight)  Most of the time
## 10061 Heterosexual (straight)         Sometimes
## 10062          Some other way  Most of the time
## 10063                Bisexual  Most of the time
## 10064 Heterosexual (straight)  Most of the time
## 10065 Heterosexual (straight)            Rarely
## 10066 Heterosexual (straight)            Always
## 10067 Heterosexual (straight)         Sometimes
## 10068 Heterosexual (straight)  Most of the time
## 10069 Heterosexual (straight)  Most of the time
## 10070                Bisexual         Sometimes
## 10071                Bisexual            Rarely
## 10072 Heterosexual (straight)         Sometimes
## 10073 Heterosexual (straight)         Sometimes
## 10074          Gay or lesbian            Always
## 10075                Bisexual         Sometimes
## 10076                Bisexual         Sometimes
## 10077          Some other way            Always
## 10078 Heterosexual (straight)         Sometimes
## 10079 Heterosexual (straight)         Sometimes
## 10080 Heterosexual (straight)             Never
## 10081 Heterosexual (straight)             Never
## 10082 Heterosexual (straight)  Most of the time
## 10083 Heterosexual (straight)         Sometimes
## 10084 Heterosexual (straight)             Never
## 10085                Bisexual  Most of the time
## 10086                Bisexual  Most of the time
## 10087                Not sure         Sometimes
## 10088 Heterosexual (straight)             Never
## 10089 Heterosexual (straight)            Rarely
## 10090 Heterosexual (straight)         Sometimes
## 10091 Heterosexual (straight)         Sometimes
## 10092                Bisexual            Always
## 10093 Heterosexual (straight)            Rarely
## 10094                Not sure         Sometimes
## 10095 Heterosexual (straight)             Never
## 10096                Not sure  Most of the time
## 10097 Heterosexual (straight)  Most of the time
## 10098          Some other way         Sometimes
## 10099 Heterosexual (straight)  Most of the time
## 10100 Heterosexual (straight)         Sometimes
## 10101                Bisexual            Always
## 10102 Heterosexual (straight)         Sometimes
## 10103 Heterosexual (straight)  Most of the time
## 10104 Heterosexual (straight)         Sometimes
## 10105          Gay or lesbian            Rarely
## 10106 Heterosexual (straight)              <NA>
## 10107 Heterosexual (straight)         Sometimes
## 10108 Heterosexual (straight)  Most of the time
## 10109                Bisexual  Most of the time
## 10110 Heterosexual (straight)  Most of the time
## 10111 Heterosexual (straight)  Most of the time
## 10112 Heterosexual (straight)         Sometimes
## 10113 Heterosexual (straight)         Sometimes
## 10114 Heterosexual (straight)         Sometimes
## 10115 Heterosexual (straight)         Sometimes
## 10116                Bisexual         Sometimes
## 10117                Not sure            Always
## 10118                Bisexual         Sometimes
## 10119                Not sure  Most of the time
## 10120 Heterosexual (straight)         Sometimes
## 10121 Heterosexual (straight)            Rarely
## 10122 Heterosexual (straight)            Rarely
## 10123                Bisexual  Most of the time
## 10124 Heterosexual (straight)  Most of the time
## 10125                Not sure            Always
## 10126 Heterosexual (straight)  Most of the time
## 10127 Heterosexual (straight)             Never
## 10128 Heterosexual (straight)  Most of the time
## 10129                Bisexual            Always
## 10130 Heterosexual (straight)  Most of the time
## 10131 Heterosexual (straight)         Sometimes
## 10132 Heterosexual (straight)         Sometimes
## 10133 Heterosexual (straight)         Sometimes
## 10134 Heterosexual (straight)             Never
## 10135 Heterosexual (straight)         Sometimes
## 10136                Bisexual  Most of the time
## 10137 Heterosexual (straight)         Sometimes
## 10138 Heterosexual (straight)         Sometimes
## 10139 Heterosexual (straight)            Rarely
## 10140 Heterosexual (straight)         Sometimes
## 10141 Heterosexual (straight)         Sometimes
## 10142 Heterosexual (straight)  Most of the time
## 10143 Heterosexual (straight)         Sometimes
## 10144 Heterosexual (straight)             Never
## 10145 Heterosexual (straight)              <NA>
## 10146                Not sure  Most of the time
## 10147 Heterosexual (straight)         Sometimes
## 10148          Gay or lesbian             Never
## 10149 Heterosexual (straight)  Most of the time
## 10150 Heterosexual (straight)            Rarely
## 10151                Bisexual            Rarely
## 10152 Heterosexual (straight)         Sometimes
## 10153 Heterosexual (straight)         Sometimes
## 10154 Heterosexual (straight)  Most of the time
## 10155 Heterosexual (straight)            Rarely
## 10156                Bisexual            Always
## 10157                Bisexual         Sometimes
## 10158                Bisexual  Most of the time
## 10159 Heterosexual (straight)            Rarely
## 10160 Heterosexual (straight)  Most of the time
## 10161 Heterosexual (straight)         Sometimes
## 10162                Bisexual            Always
## 10163 Heterosexual (straight)         Sometimes
## 10164 Heterosexual (straight)  Most of the time
## 10165 Heterosexual (straight)         Sometimes
## 10166 Heterosexual (straight)  Most of the time
## 10167 Heterosexual (straight)  Most of the time
## 10168 Heterosexual (straight)         Sometimes
## 10169 Heterosexual (straight)             Never
## 10170 Heterosexual (straight)             Never
## 10171 Heterosexual (straight)             Never
## 10172          Some other way  Most of the time
## 10173 Heterosexual (straight)              <NA>
## 10174 Heterosexual (straight)  Most of the time
## 10175 Heterosexual (straight)            Always
## 10176 Heterosexual (straight)            Rarely
## 10177 Heterosexual (straight)         Sometimes
## 10178                Not sure         Sometimes
## 10179 Heterosexual (straight)            Rarely
## 10180 Heterosexual (straight)            Rarely
## 10181 Heterosexual (straight)  Most of the time
## 10182 Heterosexual (straight)         Sometimes
## 10183 Heterosexual (straight)         Sometimes
## 10184 Heterosexual (straight)         Sometimes
## 10185 Heterosexual (straight)         Sometimes
## 10186                Bisexual  Most of the time
## 10187 Heterosexual (straight)         Sometimes
## 10188 Heterosexual (straight)            Always
## 10189 Heterosexual (straight)         Sometimes
## 10190                Bisexual            Always
## 10191 Heterosexual (straight)              <NA>
## 10192                Bisexual            Always
## 10193 Heterosexual (straight)         Sometimes
## 10194 Heterosexual (straight)         Sometimes
## 10195 Heterosexual (straight)            Rarely
## 10196                Bisexual            Always
## 10197 Heterosexual (straight)            Rarely
## 10198 Heterosexual (straight)  Most of the time
## 10199                Bisexual            Rarely
## 10200 Heterosexual (straight)            Rarely
## 10201                Bisexual  Most of the time
## 10202 Heterosexual (straight)             Never
## 10203                Bisexual         Sometimes
## 10204 Heterosexual (straight)            Rarely
## 10205                Not sure            Rarely
## 10206 Heterosexual (straight)  Most of the time
## 10207 Heterosexual (straight)            Rarely
## 10208 Heterosexual (straight)            Rarely
## 10209 Heterosexual (straight)             Never
## 10210 Heterosexual (straight)         Sometimes
## 10211          Gay or lesbian         Sometimes
## 10212 Heterosexual (straight)             Never
## 10213                Not sure            Rarely
## 10214          Gay or lesbian  Most of the time
## 10215 Heterosexual (straight)             Never
## 10216 Heterosexual (straight)            Rarely
## 10217 Heterosexual (straight)            Rarely
## 10218                Bisexual  Most of the time
## 10219                Bisexual  Most of the time
## 10220                Bisexual         Sometimes
## 10221 Heterosexual (straight)            Rarely
## 10222 Heterosexual (straight)            Rarely
## 10223                Bisexual  Most of the time
## 10224 Heterosexual (straight)            Rarely
## 10225 Heterosexual (straight)            Rarely
## 10226 Heterosexual (straight)         Sometimes
## 10227                Bisexual         Sometimes
## 10228 Heterosexual (straight)  Most of the time
## 10229          Some other way            Always
## 10230 Heterosexual (straight)         Sometimes
## 10231 Heterosexual (straight)            Rarely
## 10232 Heterosexual (straight)         Sometimes
## 10233          Gay or lesbian         Sometimes
## 10234 Heterosexual (straight)            Rarely
## 10235                Bisexual  Most of the time
## 10236 Heterosexual (straight)  Most of the time
## 10237 Heterosexual (straight)         Sometimes
## 10238 Heterosexual (straight)            Rarely
## 10239 Heterosexual (straight)            Rarely
## 10240          Gay or lesbian         Sometimes
## 10241 Heterosexual (straight)            Rarely
## 10242                Not sure         Sometimes
## 10243 Heterosexual (straight)            Rarely
## 10244 Heterosexual (straight)            Rarely
## 10245                Bisexual  Most of the time
## 10246                Bisexual            Always
## 10247 Heterosexual (straight)            Rarely
## 10248                Bisexual            Always
## 10249 Heterosexual (straight)            Rarely
## 10250 Heterosexual (straight)            Rarely
## 10251 Heterosexual (straight)            Rarely
## 10252 Heterosexual (straight)             Never
## 10253 Heterosexual (straight)            Rarely
## 10254 Heterosexual (straight)         Sometimes
## 10255 Heterosexual (straight)             Never
## 10256 Heterosexual (straight)            Rarely
## 10257 Heterosexual (straight)            Rarely
## 10258 Heterosexual (straight)            Always
## 10259 Heterosexual (straight)            Rarely
## 10260 Heterosexual (straight)  Most of the time
## 10261                Not sure  Most of the time
## 10262                Bisexual  Most of the time
## 10263 Heterosexual (straight)             Never
## 10264 Heterosexual (straight)  Most of the time
## 10265 Heterosexual (straight)         Sometimes
## 10266 Heterosexual (straight)  Most of the time
## 10267 Heterosexual (straight)            Rarely
## 10268 Heterosexual (straight)             Never
## 10269 Heterosexual (straight)             Never
## 10270 Heterosexual (straight)  Most of the time
## 10271 Heterosexual (straight)            Rarely
## 10272 Heterosexual (straight)  Most of the time
## 10273 Heterosexual (straight)         Sometimes
## 10274                Bisexual         Sometimes
## 10275 Heterosexual (straight)  Most of the time
## 10276 Heterosexual (straight)         Sometimes
## 10277 Heterosexual (straight)              <NA>
## 10278 Heterosexual (straight)         Sometimes
## 10279 Heterosexual (straight)         Sometimes
## 10280                Bisexual  Most of the time
## 10281 Heterosexual (straight)            Rarely
## 10282 Heterosexual (straight)         Sometimes
## 10283 Heterosexual (straight)         Sometimes
## 10284 Heterosexual (straight)             Never
## 10285 Heterosexual (straight)         Sometimes
## 10286 Heterosexual (straight)         Sometimes
## 10287 Heterosexual (straight)  Most of the time
## 10288 Heterosexual (straight)            Rarely
## 10289 Heterosexual (straight)  Most of the time
## 10290 Heterosexual (straight)             Never
## 10291 Heterosexual (straight)         Sometimes
## 10292 Heterosexual (straight)         Sometimes
## 10293 Heterosexual (straight)         Sometimes
## 10294 Heterosexual (straight)            Always
## 10295                Bisexual  Most of the time
## 10296 Heterosexual (straight)            Rarely
## 10297 Heterosexual (straight)            Rarely
## 10298 Heterosexual (straight)            Rarely
## 10299 Heterosexual (straight)  Most of the time
## 10300 Heterosexual (straight)            Rarely
## 10301 Heterosexual (straight)             Never
## 10302                Not sure  Most of the time
## 10303 Heterosexual (straight)         Sometimes
## 10304 Heterosexual (straight)            Rarely
## 10305                Bisexual         Sometimes
## 10306 Heterosexual (straight)             Never
## 10307 Heterosexual (straight)            Always
## 10308                Bisexual            Rarely
## 10309 Heterosexual (straight)         Sometimes
## 10310 Heterosexual (straight)         Sometimes
## 10311                Bisexual         Sometimes
## 10312 Heterosexual (straight)         Sometimes
## 10313                Bisexual         Sometimes
## 10314                Bisexual            Rarely
## 10315 Heterosexual (straight)         Sometimes
## 10316 Heterosexual (straight)         Sometimes
## 10317 Heterosexual (straight)            Rarely
## 10318 Heterosexual (straight)  Most of the time
## 10319 Heterosexual (straight)         Sometimes
## 10320 Heterosexual (straight)         Sometimes
## 10321 Heterosexual (straight)             Never
## 10322 Heterosexual (straight)            Rarely
## 10323                Bisexual            Always
## 10324 Heterosexual (straight)         Sometimes
## 10325 Heterosexual (straight)  Most of the time
## 10326 Heterosexual (straight)  Most of the time
## 10327 Heterosexual (straight)  Most of the time
## 10328 Heterosexual (straight)         Sometimes
## 10329 Heterosexual (straight)  Most of the time
## 10330 Heterosexual (straight)            Rarely
## 10331 Heterosexual (straight)         Sometimes
## 10332 Heterosexual (straight)            Rarely
## 10333 Heterosexual (straight)         Sometimes
## 10334 Heterosexual (straight)         Sometimes
## 10335 Heterosexual (straight)         Sometimes
## 10336 Heterosexual (straight)  Most of the time
## 10337 Heterosexual (straight)         Sometimes
## 10338 Heterosexual (straight)            Rarely
## 10339 Heterosexual (straight)         Sometimes
## 10340 Heterosexual (straight)  Most of the time
## 10341 Heterosexual (straight)             Never
## 10342 Heterosexual (straight)             Never
## 10343 Heterosexual (straight)             Never
## 10344 Heterosexual (straight)              <NA>
## 10345 Heterosexual (straight)            Rarely
## 10346 Heterosexual (straight)             Never
## 10347 Heterosexual (straight)         Sometimes
## 10348 Heterosexual (straight)            Rarely
## 10349 Heterosexual (straight)         Sometimes
## 10350                Not sure  Most of the time
## 10351 Heterosexual (straight)            Rarely
## 10352                Bisexual         Sometimes
## 10353                Not sure         Sometimes
## 10354 Heterosexual (straight)         Sometimes
## 10355          Gay or lesbian  Most of the time
## 10356                Bisexual         Sometimes
## 10357          Some other way  Most of the time
## 10358 Heterosexual (straight)            Always
## 10359 Heterosexual (straight)         Sometimes
## 10360 Heterosexual (straight)  Most of the time
## 10361 Heterosexual (straight)            Rarely
## 10362 Heterosexual (straight)         Sometimes
## 10363          Gay or lesbian            Always
## 10364 Heterosexual (straight)         Sometimes
## 10365 Heterosexual (straight)  Most of the time
## 10366          Some other way            Rarely
## 10367                Bisexual  Most of the time
## 10368          Some other way         Sometimes
## 10369 Heterosexual (straight)            Rarely
## 10370 Heterosexual (straight)            Rarely
## 10371 Heterosexual (straight)         Sometimes
## 10372 Heterosexual (straight)         Sometimes
## 10373 Heterosexual (straight)            Rarely
## 10374 Heterosexual (straight)  Most of the time
## 10375 Heterosexual (straight)            Rarely
## 10376                Not sure              <NA>
## 10377                Bisexual  Most of the time
## 10378                Bisexual         Sometimes
## 10379 Heterosexual (straight)            Rarely
## 10380 Heterosexual (straight)  Most of the time
## 10381 Heterosexual (straight)            Rarely
## 10382 Heterosexual (straight)            Rarely
## 10383 Heterosexual (straight)            Rarely
## 10384                Not sure            Always
## 10385 Heterosexual (straight)              <NA>
## 10386 Heterosexual (straight)  Most of the time
## 10387 Heterosexual (straight)         Sometimes
## 10388 Heterosexual (straight)         Sometimes
## 10389 Heterosexual (straight)  Most of the time
## 10390 Heterosexual (straight)         Sometimes
## 10391 Heterosexual (straight)             Never
## 10392                Bisexual  Most of the time
## 10393 Heterosexual (straight)         Sometimes
## 10394          Gay or lesbian            Always
## 10395          Some other way         Sometimes
## 10396                Not sure  Most of the time
## 10397          Gay or lesbian         Sometimes
## 10398          Some other way         Sometimes
## 10399                Bisexual  Most of the time
## 10400 Heterosexual (straight)            Always
## 10401 Heterosexual (straight)         Sometimes
## 10402          Some other way         Sometimes
## 10403                Bisexual         Sometimes
## 10404          Gay or lesbian            Always
## 10405 Heterosexual (straight)         Sometimes
## 10406 Heterosexual (straight)            Rarely
## 10407          Gay or lesbian            Rarely
## 10408 Heterosexual (straight)             Never
## 10409 Heterosexual (straight)         Sometimes
## 10410 Heterosexual (straight)             Never
## 10411 Heterosexual (straight)         Sometimes
## 10412                Bisexual            Always
## 10413 Heterosexual (straight)  Most of the time
## 10414 Heterosexual (straight)  Most of the time
## 10415 Heterosexual (straight)            Always
## 10416                Bisexual            Always
## 10417 Heterosexual (straight)             Never
## 10418                Not sure         Sometimes
## 10419 Heterosexual (straight)            Rarely
## 10420 Heterosexual (straight)         Sometimes
## 10421 Heterosexual (straight)            Rarely
## 10422 Heterosexual (straight)             Never
## 10423 Heterosexual (straight)            Rarely
## 10424 Heterosexual (straight)            Rarely
## 10425                Bisexual  Most of the time
## 10426 Heterosexual (straight)  Most of the time
## 10427 Heterosexual (straight)         Sometimes
## 10428 Heterosexual (straight)             Never
## 10429 Heterosexual (straight)             Never
## 10430 Heterosexual (straight)  Most of the time
## 10431 Heterosexual (straight)            Always
## 10432 Heterosexual (straight)         Sometimes
## 10433                Bisexual            Rarely
## 10434                Bisexual  Most of the time
## 10435 Heterosexual (straight)  Most of the time
## 10436 Heterosexual (straight)            Always
## 10437 Heterosexual (straight)  Most of the time
## 10438 Heterosexual (straight)  Most of the time
## 10439 Heterosexual (straight)            Rarely
## 10440                Bisexual         Sometimes
## 10441          Some other way  Most of the time
## 10442                Not sure  Most of the time
## 10443 Heterosexual (straight)         Sometimes
## 10444 Heterosexual (straight)            Always
## 10445 Heterosexual (straight)              <NA>
## 10446 Heterosexual (straight)              <NA>
## 10447                Bisexual  Most of the time
## 10448 Heterosexual (straight)         Sometimes
## 10449 Heterosexual (straight)             Never
## 10450                Bisexual         Sometimes
## 10451 Heterosexual (straight)         Sometimes
## 10452                Not sure             Never
## 10453 Heterosexual (straight)  Most of the time
## 10454                Not sure  Most of the time
## 10455                Not sure  Most of the time
## 10456 Heterosexual (straight)  Most of the time
## 10457 Heterosexual (straight)  Most of the time
## 10458                Bisexual         Sometimes
## 10459 Heterosexual (straight)            Rarely
## 10460 Heterosexual (straight)  Most of the time
## 10461                Not sure  Most of the time
## 10462 Heterosexual (straight)            Rarely
## 10463                Bisexual         Sometimes
## 10464 Heterosexual (straight)  Most of the time
## 10465 Heterosexual (straight)  Most of the time
## 10466 Heterosexual (straight)         Sometimes
## 10467          Gay or lesbian  Most of the time
## 10468 Heterosexual (straight)         Sometimes
## 10469                Not sure         Sometimes
## 10470 Heterosexual (straight)         Sometimes
## 10471 Heterosexual (straight)             Never
## 10472                Bisexual         Sometimes
## 10473 Heterosexual (straight)         Sometimes
## 10474 Heterosexual (straight)         Sometimes
## 10475 Heterosexual (straight)  Most of the time
## 10476 Heterosexual (straight)            Rarely
## 10477 Heterosexual (straight)         Sometimes
## 10478                Bisexual         Sometimes
## 10479          Gay or lesbian            Always
## 10480 Heterosexual (straight)  Most of the time
## 10481 Heterosexual (straight)         Sometimes
## 10482 Heterosexual (straight)            Rarely
## 10483 Heterosexual (straight)              <NA>
## 10484          Some other way  Most of the time
## 10485 Heterosexual (straight)            Always
## 10486 Heterosexual (straight)            Rarely
## 10487 Heterosexual (straight)             Never
## 10488          Some other way  Most of the time
## 10489 Heterosexual (straight)             Never
## 10490                Bisexual             Never
## 10491 Heterosexual (straight)            Rarely
## 10492 Heterosexual (straight)            Always
## 10493 Heterosexual (straight)         Sometimes
## 10494 Heterosexual (straight)             Never
## 10495 Heterosexual (straight)            Rarely
## 10496 Heterosexual (straight)            Rarely
## 10497 Heterosexual (straight)         Sometimes
## 10498 Heterosexual (straight)         Sometimes
## 10499 Heterosexual (straight)         Sometimes
## 10500                Not sure         Sometimes
## 10501          Gay or lesbian            Always
## 10502 Heterosexual (straight)             Never
## 10503 Heterosexual (straight)  Most of the time
## 10504                Not sure         Sometimes
## 10505 Heterosexual (straight)            Rarely
## 10506 Heterosexual (straight)             Never
## 10507 Heterosexual (straight)         Sometimes
## 10508 Heterosexual (straight)            Always
## 10509                Not sure         Sometimes
## 10510 Heterosexual (straight)            Rarely
## 10511                Bisexual  Most of the time
## 10512                Bisexual            Always
## 10513 Heterosexual (straight)             Never
## 10514                Bisexual            Always
## 10515 Heterosexual (straight)         Sometimes
## 10516                Not sure            Rarely
## 10517 Heterosexual (straight)             Never
## 10518                Bisexual         Sometimes
## 10519 Heterosexual (straight)  Most of the time
## 10520 Heterosexual (straight)         Sometimes
## 10521 Heterosexual (straight)            Rarely
## 10522 Heterosexual (straight)            Rarely
## 10523                Bisexual  Most of the time
## 10524 Heterosexual (straight)  Most of the time
## 10525 Heterosexual (straight)             Never
## 10526 Heterosexual (straight)  Most of the time
## 10527                Bisexual  Most of the time
## 10528 Heterosexual (straight)             Never
## 10529                Bisexual         Sometimes
## 10530                Bisexual  Most of the time
## 10531 Heterosexual (straight)            Rarely
## 10532 Heterosexual (straight)            Rarely
## 10533 Heterosexual (straight)            Rarely
## 10534                Bisexual  Most of the time
## 10535 Heterosexual (straight)         Sometimes
## 10536                Bisexual         Sometimes
## 10537 Heterosexual (straight)            Always
## 10538 Heterosexual (straight)            Rarely
## 10539 Heterosexual (straight)         Sometimes
## 10540                Bisexual  Most of the time
## 10541 Heterosexual (straight)            Rarely
## 10542                Not sure  Most of the time
## 10543 Heterosexual (straight)         Sometimes
## 10544 Heterosexual (straight)         Sometimes
## 10545 Heterosexual (straight)         Sometimes
## 10546                Bisexual  Most of the time
## 10547 Heterosexual (straight)            Rarely
## 10548                Bisexual         Sometimes
## 10549 Heterosexual (straight)         Sometimes
## 10550 Heterosexual (straight)            Rarely
## 10551 Heterosexual (straight)             Never
## 10552 Heterosexual (straight)            Rarely
## 10553 Heterosexual (straight)         Sometimes
## 10554 Heterosexual (straight)  Most of the time
## 10555 Heterosexual (straight)            Rarely
## 10556 Heterosexual (straight)         Sometimes
## 10557 Heterosexual (straight)         Sometimes
## 10558 Heterosexual (straight)            Rarely
## 10559                Not sure  Most of the time
## 10560 Heterosexual (straight)            Rarely
## 10561          Some other way  Most of the time
## 10562 Heterosexual (straight)             Never
## 10563 Heterosexual (straight)         Sometimes
## 10564 Heterosexual (straight)         Sometimes
## 10565                Bisexual         Sometimes
## 10566                Not sure  Most of the time
## 10567 Heterosexual (straight)            Rarely
## 10568 Heterosexual (straight)             Never
## 10569 Heterosexual (straight)         Sometimes
## 10570 Heterosexual (straight)         Sometimes
## 10571 Heterosexual (straight)  Most of the time
## 10572 Heterosexual (straight)             Never
## 10573 Heterosexual (straight)  Most of the time
## 10574 Heterosexual (straight)             Never
## 10575                Not sure         Sometimes
## 10576                Bisexual  Most of the time
## 10577          Some other way         Sometimes
## 10578 Heterosexual (straight)  Most of the time
## 10579 Heterosexual (straight)             Never
## 10580 Heterosexual (straight)            Rarely
## 10581 Heterosexual (straight)         Sometimes
## 10582 Heterosexual (straight)         Sometimes
## 10583                Bisexual         Sometimes
## 10584 Heterosexual (straight)            Rarely
## 10585                Bisexual            Rarely
## 10586          Some other way  Most of the time
## 10587 Heterosexual (straight)             Never
## 10588          Some other way         Sometimes
## 10589          Gay or lesbian  Most of the time
## 10590 Heterosexual (straight)             Never
## 10591 Heterosexual (straight)            Rarely
## 10592 Heterosexual (straight)            Rarely
## 10593          Gay or lesbian  Most of the time
## 10594 Heterosexual (straight)         Sometimes
## 10595 Heterosexual (straight)         Sometimes
## 10596 Heterosexual (straight)         Sometimes
## 10597 Heterosexual (straight)  Most of the time
## 10598                Bisexual  Most of the time
## 10599 Heterosexual (straight)         Sometimes
## 10600 Heterosexual (straight)            Rarely
## 10601 Heterosexual (straight)         Sometimes
## 10602 Heterosexual (straight)  Most of the time
## 10603 Heterosexual (straight)         Sometimes
## 10604 Heterosexual (straight)             Never
## 10605 Heterosexual (straight)             Never
## 10606 Heterosexual (straight)         Sometimes
## 10607 Heterosexual (straight)         Sometimes
## 10608 Heterosexual (straight)            Rarely
## 10609 Heterosexual (straight)         Sometimes
## 10610 Heterosexual (straight)         Sometimes
## 10611 Heterosexual (straight)             Never
## 10612 Heterosexual (straight)  Most of the time
## 10613 Heterosexual (straight)             Never
## 10614 Heterosexual (straight)  Most of the time
## 10615 Heterosexual (straight)         Sometimes
## 10616                Bisexual         Sometimes
## 10617          Some other way  Most of the time
## 10618 Heterosexual (straight)  Most of the time
## 10619 Heterosexual (straight)            Rarely
## 10620 Heterosexual (straight)            Rarely
## 10621          Gay or lesbian         Sometimes
## 10622 Heterosexual (straight)  Most of the time
## 10623          Some other way  Most of the time
## 10624 Heterosexual (straight)         Sometimes
## 10625 Heterosexual (straight)         Sometimes
## 10626 Heterosexual (straight)            Rarely
## 10627                Not sure         Sometimes
## 10628                Bisexual         Sometimes
## 10629          Some other way            Always
## 10630 Heterosexual (straight)              <NA>
## 10631                Not sure              <NA>
## 10632 Heterosexual (straight)              <NA>
## 10633 Heterosexual (straight)              <NA>
## 10634          Gay or lesbian              <NA>
## 10635 Heterosexual (straight)              <NA>
## 10636                Bisexual              <NA>
## 10637                Bisexual              <NA>
## 10638 Heterosexual (straight)              <NA>
## 10639 Heterosexual (straight)              <NA>
## 10640 Heterosexual (straight)              <NA>
## 10641 Heterosexual (straight)              <NA>
## 10642 Heterosexual (straight)              <NA>
## 10643 Heterosexual (straight)              <NA>
## 10644 Heterosexual (straight)              <NA>
## 10645 Heterosexual (straight)              <NA>
## 10646 Heterosexual (straight)              <NA>
## 10647 Heterosexual (straight)              <NA>
## 10648 Heterosexual (straight)              <NA>
## 10649 Heterosexual (straight)              <NA>
## 10650 Heterosexual (straight)              <NA>
## 10651 Heterosexual (straight)              <NA>
## 10652 Heterosexual (straight)              <NA>
## 10653 Heterosexual (straight)              <NA>
## 10654 Heterosexual (straight)              <NA>
## 10655          Gay or lesbian              <NA>
## 10656 Heterosexual (straight)              <NA>
## 10657          Some other way              <NA>
## 10658                Bisexual              <NA>
## 10659 Heterosexual (straight)              <NA>
## 10660 Heterosexual (straight)              <NA>
## 10661 Heterosexual (straight)              <NA>
## 10662 Heterosexual (straight)              <NA>
## 10663 Heterosexual (straight)              <NA>
## 10664 Heterosexual (straight)              <NA>
## 10665          Some other way              <NA>
## 10666                Bisexual              <NA>
## 10667 Heterosexual (straight)              <NA>
## 10668 Heterosexual (straight)              <NA>
## 10669 Heterosexual (straight)              <NA>
## 10670 Heterosexual (straight)              <NA>
## 10671 Heterosexual (straight)              <NA>
## 10672 Heterosexual (straight)              <NA>
## 10673 Heterosexual (straight)              <NA>
## 10674 Heterosexual (straight)              <NA>
## 10675 Heterosexual (straight)              <NA>
## 10676 Heterosexual (straight)              <NA>
## 10677          Gay or lesbian              <NA>
## 10678 Heterosexual (straight)              <NA>
## 10679          Gay or lesbian              <NA>
## 10680 Heterosexual (straight)              <NA>
## 10681 Heterosexual (straight)              <NA>
## 10682 Heterosexual (straight)              <NA>
## 10683 Heterosexual (straight)              <NA>
## 10684 Heterosexual (straight)              <NA>
## 10685          Some other way              <NA>
## 10686 Heterosexual (straight)              <NA>
## 10687 Heterosexual (straight)              <NA>
## 10688          Some other way              <NA>
## 10689 Heterosexual (straight)              <NA>
## 10690 Heterosexual (straight)              <NA>
## 10691 Heterosexual (straight)              <NA>
## 10692 Heterosexual (straight)              <NA>
## 10693 Heterosexual (straight)              <NA>
## 10694 Heterosexual (straight)              <NA>
## 10695                Bisexual              <NA>
## 10696 Heterosexual (straight)              <NA>
## 10697 Heterosexual (straight)              <NA>
## 10698 Heterosexual (straight)              <NA>
## 10699 Heterosexual (straight)              <NA>
## 10700                Not sure              <NA>
## 10701                Bisexual              <NA>
## 10702 Heterosexual (straight)              <NA>
## 10703 Heterosexual (straight)              <NA>
## 10704 Heterosexual (straight)              <NA>
## 10705 Heterosexual (straight)              <NA>
## 10706 Heterosexual (straight)              <NA>
## 10707 Heterosexual (straight)              <NA>
## 10708 Heterosexual (straight)              <NA>
## 10709 Heterosexual (straight)              <NA>
## 10710 Heterosexual (straight)              <NA>
## 10711 Heterosexual (straight)              <NA>
## 10712 Heterosexual (straight)              <NA>
## 10713 Heterosexual (straight)              <NA>
## 10714 Heterosexual (straight)              <NA>
## 10715 Heterosexual (straight)              <NA>
## 10716 Heterosexual (straight)              <NA>
## 10717 Heterosexual (straight)              <NA>
## 10718 Heterosexual (straight)              <NA>
## 10719 Heterosexual (straight)              <NA>
## 10720 Heterosexual (straight)              <NA>
## 10721                Not sure              <NA>
## 10722 Heterosexual (straight)              <NA>
## 10723 Heterosexual (straight)              <NA>
## 10724 Heterosexual (straight)              <NA>
## 10725                Bisexual              <NA>
## 10726                Not sure              <NA>
## 10727 Heterosexual (straight)              <NA>
## 10728                Bisexual              <NA>
## 10729 Heterosexual (straight)              <NA>
## 10730 Heterosexual (straight)              <NA>
## 10731 Heterosexual (straight)              <NA>
## 10732 Heterosexual (straight)              <NA>
## 10733 Heterosexual (straight)              <NA>
## 10734 Heterosexual (straight)              <NA>
## 10735 Heterosexual (straight)              <NA>
## 10736          Gay or lesbian              <NA>
## 10737 Heterosexual (straight)              <NA>
## 10738 Heterosexual (straight)              <NA>
## 10739 Heterosexual (straight)              <NA>
## 10740 Heterosexual (straight)              <NA>
## 10741 Heterosexual (straight)              <NA>
## 10742 Heterosexual (straight)              <NA>
## 10743                Not sure              <NA>
## 10744          Some other way              <NA>
## 10745 Heterosexual (straight)              <NA>
## 10746 Heterosexual (straight)              <NA>
## 10747                Bisexual              <NA>
## 10748 Heterosexual (straight)              <NA>
## 10749 Heterosexual (straight)              <NA>
## 10750 Heterosexual (straight)              <NA>
## 10751 Heterosexual (straight)              <NA>
## 10752 Heterosexual (straight)              <NA>
## 10753 Heterosexual (straight)              <NA>
## 10754          Some other way              <NA>
## 10755 Heterosexual (straight)              <NA>
## 10756 Heterosexual (straight)              <NA>
## 10757 Heterosexual (straight)              <NA>
## 10758 Heterosexual (straight)              <NA>
## 10759 Heterosexual (straight)              <NA>
## 10760 Heterosexual (straight)              <NA>
## 10761                Not sure              <NA>
## 10762          Gay or lesbian              <NA>
## 10763 Heterosexual (straight)              <NA>
## 10764 Heterosexual (straight)              <NA>
## 10765 Heterosexual (straight)              <NA>
## 10766 Heterosexual (straight)              <NA>
## 10767                Bisexual              <NA>
## 10768 Heterosexual (straight)              <NA>
## 10769 Heterosexual (straight)              <NA>
## 10770          Gay or lesbian              <NA>
## 10771                Bisexual              <NA>
## 10772 Heterosexual (straight)              <NA>
## 10773 Heterosexual (straight)              <NA>
## 10774          Gay or lesbian              <NA>
## 10775 Heterosexual (straight)              <NA>
## 10776 Heterosexual (straight)              <NA>
## 10777 Heterosexual (straight)              <NA>
## 10778 Heterosexual (straight)              <NA>
## 10779          Some other way              <NA>
## 10780 Heterosexual (straight)              <NA>
## 10781 Heterosexual (straight)              <NA>
## 10782 Heterosexual (straight)              <NA>
## 10783 Heterosexual (straight)              <NA>
## 10784 Heterosexual (straight)              <NA>
## 10785 Heterosexual (straight)              <NA>
## 10786 Heterosexual (straight)              <NA>
## 10787 Heterosexual (straight)              <NA>
## 10788 Heterosexual (straight)              <NA>
## 10789 Heterosexual (straight)              <NA>
## 10790 Heterosexual (straight)              <NA>
## 10791 Heterosexual (straight)              <NA>
## 10792 Heterosexual (straight)              <NA>
## 10793 Heterosexual (straight)              <NA>
## 10794 Heterosexual (straight)              <NA>
## 10795 Heterosexual (straight)              <NA>
## 10796 Heterosexual (straight)              <NA>
## 10797 Heterosexual (straight)              <NA>
## 10798 Heterosexual (straight)              <NA>
## 10799 Heterosexual (straight)              <NA>
## 10800 Heterosexual (straight)              <NA>
## 10801 Heterosexual (straight)              <NA>
## 10802 Heterosexual (straight)              <NA>
## 10803 Heterosexual (straight)              <NA>
## 10804                Bisexual             Never
## 10805 Heterosexual (straight)             Never
## 10806                Bisexual            Rarely
## 10807 Heterosexual (straight)         Sometimes
## 10808 Heterosexual (straight)            Rarely
## 10809 Heterosexual (straight)             Never
## 10810                Bisexual             Never
## 10811 Heterosexual (straight)            Rarely
## 10812 Heterosexual (straight)             Never
## 10813                Not sure             Never
## 10814 Heterosexual (straight)         Sometimes
## 10815                Bisexual            Always
## 10816                Bisexual            Always
## 10817 Heterosexual (straight)  Most of the time
## 10818                Bisexual         Sometimes
## 10819                Bisexual            Always
## 10820 Heterosexual (straight)            Always
## 10821 Heterosexual (straight)  Most of the time
## 10822 Heterosexual (straight)  Most of the time
## 10823 Heterosexual (straight)         Sometimes
## 10824 Heterosexual (straight)         Sometimes
## 10825                Bisexual            Always
## 10826 Heterosexual (straight)             Never
## 10827 Heterosexual (straight)            Rarely
## 10828 Heterosexual (straight)             Never
## 10829 Heterosexual (straight)            Rarely
## 10830 Heterosexual (straight)              <NA>
## 10831 Heterosexual (straight)            Rarely
## 10832 Heterosexual (straight)  Most of the time
## 10833 Heterosexual (straight)            Rarely
## 10834                Bisexual  Most of the time
## 10835 Heterosexual (straight)  Most of the time
## 10836 Heterosexual (straight)         Sometimes
## 10837 Heterosexual (straight)  Most of the time
## 10838 Heterosexual (straight)         Sometimes
## 10839 Heterosexual (straight)  Most of the time
## 10840 Heterosexual (straight)  Most of the time
## 10841          Gay or lesbian  Most of the time
## 10842 Heterosexual (straight)            Rarely
## 10843 Heterosexual (straight)         Sometimes
## 10844 Heterosexual (straight)         Sometimes
## 10845 Heterosexual (straight)  Most of the time
## 10846 Heterosexual (straight)            Rarely
## 10847 Heterosexual (straight)  Most of the time
## 10848 Heterosexual (straight)            Rarely
## 10849                Bisexual  Most of the time
## 10850 Heterosexual (straight)  Most of the time
## 10851 Heterosexual (straight)             Never
## 10852 Heterosexual (straight)  Most of the time
## 10853 Heterosexual (straight)             Never
## 10854                Bisexual            Always
## 10855 Heterosexual (straight)             Never
## 10856 Heterosexual (straight)            Rarely
## 10857 Heterosexual (straight)            Rarely
## 10858 Heterosexual (straight)              <NA>
## 10859 Heterosexual (straight)  Most of the time
## 10860 Heterosexual (straight)             Never
## 10861                Bisexual         Sometimes
## 10862 Heterosexual (straight)            Rarely
## 10863 Heterosexual (straight)         Sometimes
## 10864                Not sure         Sometimes
## 10865 Heterosexual (straight)              <NA>
## 10866 Heterosexual (straight)         Sometimes
## 10867 Heterosexual (straight)         Sometimes
## 10868 Heterosexual (straight)  Most of the time
## 10869 Heterosexual (straight)         Sometimes
## 10870                Bisexual         Sometimes
## 10871          Some other way  Most of the time
## 10872                Bisexual  Most of the time
## 10873                Bisexual         Sometimes
## 10874                Bisexual            Always
## 10875 Heterosexual (straight)  Most of the time
## 10876 Heterosexual (straight)            Always
## 10877 Heterosexual (straight)         Sometimes
## 10878 Heterosexual (straight)            Always
## 10879 Heterosexual (straight)             Never
## 10880 Heterosexual (straight)  Most of the time
## 10881 Heterosexual (straight)            Rarely
## 10882 Heterosexual (straight)  Most of the time
## 10883                Not sure  Most of the time
## 10884 Heterosexual (straight)            Always
## 10885 Heterosexual (straight)         Sometimes
## 10886 Heterosexual (straight)         Sometimes
## 10887                Not sure         Sometimes
## 10888 Heterosexual (straight)            Rarely
## 10889          Gay or lesbian         Sometimes
## 10890 Heterosexual (straight)            Rarely
## 10891                Not sure            Rarely
## 10892 Heterosexual (straight)            Rarely
## 10893                Bisexual            Always
## 10894 Heterosexual (straight)  Most of the time
## 10895          Some other way  Most of the time
## 10896 Heterosexual (straight)         Sometimes
## 10897 Heterosexual (straight)         Sometimes
## 10898                Bisexual  Most of the time
## 10899                Bisexual            Rarely
## 10900                Bisexual            Rarely
## 10901 Heterosexual (straight)            Rarely
## 10902 Heterosexual (straight)             Never
## 10903          Gay or lesbian  Most of the time
## 10904 Heterosexual (straight)         Sometimes
## 10905                Not sure         Sometimes
## 10906 Heterosexual (straight)            Rarely
## 10907 Heterosexual (straight)            Rarely
## 10908 Heterosexual (straight)         Sometimes
## 10909 Heterosexual (straight)         Sometimes
## 10910                Bisexual         Sometimes
## 10911                Bisexual  Most of the time
## 10912                Bisexual            Always
## 10913 Heterosexual (straight)         Sometimes
## 10914                Bisexual         Sometimes
## 10915 Heterosexual (straight)         Sometimes
## 10916 Heterosexual (straight)         Sometimes
## 10917 Heterosexual (straight)            Rarely
## 10918 Heterosexual (straight)  Most of the time
## 10919                Bisexual         Sometimes
## 10920          Some other way  Most of the time
## 10921 Heterosexual (straight)         Sometimes
## 10922          Gay or lesbian  Most of the time
## 10923                Not sure  Most of the time
## 10924 Heterosexual (straight)  Most of the time
## 10925 Heterosexual (straight)            Rarely
## 10926 Heterosexual (straight)  Most of the time
## 10927 Heterosexual (straight)         Sometimes
## 10928 Heterosexual (straight)         Sometimes
## 10929 Heterosexual (straight)            Rarely
## 10930                Not sure            Always
## 10931                Bisexual         Sometimes
## 10932 Heterosexual (straight)              <NA>
## 10933 Heterosexual (straight)            Rarely
## 10934 Heterosexual (straight)             Never
## 10935                Bisexual  Most of the time
## 10936 Heterosexual (straight)         Sometimes
## 10937                Bisexual         Sometimes
## 10938 Heterosexual (straight)             Never
## 10939 Heterosexual (straight)            Rarely
## 10940                Not sure            Always
## 10941 Heterosexual (straight)         Sometimes
## 10942 Heterosexual (straight)             Never
## 10943                Bisexual         Sometimes
## 10944 Heterosexual (straight)         Sometimes
## 10945 Heterosexual (straight)         Sometimes
## 10946                Bisexual         Sometimes
## 10947 Heterosexual (straight)         Sometimes
## 10948 Heterosexual (straight)  Most of the time
## 10949                Bisexual  Most of the time
## 10950                Bisexual            Rarely
## 10951 Heterosexual (straight)         Sometimes
## 10952          Gay or lesbian  Most of the time
## 10953 Heterosexual (straight)            Rarely
## 10954 Heterosexual (straight)            Always
## 10955                Bisexual            Always
## 10956 Heterosexual (straight)         Sometimes
## 10957 Heterosexual (straight)  Most of the time
## 10958          Some other way            Always
## 10959 Heterosexual (straight)         Sometimes
## 10960                Not sure  Most of the time
## 10961                Bisexual  Most of the time
## 10962                Bisexual         Sometimes
## 10963 Heterosexual (straight)  Most of the time
## 10964                Bisexual         Sometimes
## 10965 Heterosexual (straight)         Sometimes
## 10966 Heterosexual (straight)  Most of the time
## 10967 Heterosexual (straight)         Sometimes
## 10968          Gay or lesbian         Sometimes
## 10969 Heterosexual (straight)         Sometimes
## 10970          Gay or lesbian  Most of the time
## 10971 Heterosexual (straight)  Most of the time
## 10972                Bisexual  Most of the time
## 10973 Heterosexual (straight)  Most of the time
## 10974          Some other way  Most of the time
## 10975          Gay or lesbian            Always
## 10976 Heterosexual (straight)             Never
## 10977 Heterosexual (straight)            Rarely
## 10978 Heterosexual (straight)             Never
## 10979 Heterosexual (straight)         Sometimes
## 10980                Bisexual  Most of the time
## 10981 Heterosexual (straight)            Always
## 10982 Heterosexual (straight)             Never
## 10983          Some other way  Most of the time
## 10984 Heterosexual (straight)            Always
## 10985 Heterosexual (straight)         Sometimes
## 10986                Bisexual             Never
## 10987 Heterosexual (straight)         Sometimes
## 10988 Heterosexual (straight)            Rarely
## 10989                Bisexual  Most of the time
## 10990                Bisexual         Sometimes
## 10991 Heterosexual (straight)         Sometimes
## 10992 Heterosexual (straight)            Rarely
## 10993 Heterosexual (straight)  Most of the time
## 10994 Heterosexual (straight)  Most of the time
## 10995          Gay or lesbian  Most of the time
## 10996          Some other way  Most of the time
## 10997                Bisexual            Always
## 10998                Bisexual  Most of the time
## 10999 Heterosexual (straight)            Always
## 11000 Heterosexual (straight)            Always
## 11001 Heterosexual (straight)         Sometimes
## 11002 Heterosexual (straight)            Rarely
## 11003 Heterosexual (straight)         Sometimes
## 11004                Bisexual         Sometimes
## 11005 Heterosexual (straight)  Most of the time
## 11006                Bisexual            Always
## 11007 Heterosexual (straight)         Sometimes
## 11008 Heterosexual (straight)  Most of the time
## 11009                Bisexual            Rarely
## 11010 Heterosexual (straight)         Sometimes
## 11011 Heterosexual (straight)  Most of the time
## 11012 Heterosexual (straight)         Sometimes
## 11013 Heterosexual (straight)  Most of the time
## 11014 Heterosexual (straight)             Never
## 11015 Heterosexual (straight)            Rarely
## 11016 Heterosexual (straight)         Sometimes
## 11017          Gay or lesbian  Most of the time
## 11018                Bisexual  Most of the time
## 11019 Heterosexual (straight)            Always
## 11020                Bisexual             Never
## 11021 Heterosexual (straight)         Sometimes
## 11022 Heterosexual (straight)            Rarely
## 11023                Bisexual  Most of the time
## 11024                Bisexual            Always
## 11025 Heterosexual (straight)             Never
## 11026          Gay or lesbian         Sometimes
## 11027          Gay or lesbian            Rarely
## 11028 Heterosexual (straight)  Most of the time
## 11029 Heterosexual (straight)         Sometimes
## 11030 Heterosexual (straight)            Rarely
## 11031                Bisexual         Sometimes
## 11032                Bisexual  Most of the time
## 11033 Heterosexual (straight)         Sometimes
## 11034                Bisexual  Most of the time
## 11035                Bisexual  Most of the time
## 11036          Some other way         Sometimes
## 11037          Some other way            Always
## 11038 Heterosexual (straight)  Most of the time
## 11039 Heterosexual (straight)         Sometimes
## 11040 Heterosexual (straight)         Sometimes
## 11041                Not sure  Most of the time
## 11042          Some other way            Rarely
## 11043 Heterosexual (straight)  Most of the time
## 11044 Heterosexual (straight)         Sometimes
## 11045 Heterosexual (straight)            Rarely
## 11046 Heterosexual (straight)            Rarely
## 11047 Heterosexual (straight)             Never
## 11048 Heterosexual (straight)             Never
## 11049 Heterosexual (straight)         Sometimes
## 11050 Heterosexual (straight)  Most of the time
## 11051 Heterosexual (straight)         Sometimes
## 11052 Heterosexual (straight)         Sometimes
## 11053          Gay or lesbian  Most of the time
## 11054 Heterosexual (straight)         Sometimes
## 11055                Bisexual         Sometimes
## 11056          Some other way         Sometimes
## 11057 Heterosexual (straight)         Sometimes
## 11058 Heterosexual (straight)  Most of the time
## 11059 Heterosexual (straight)            Rarely
## 11060                Bisexual  Most of the time
## 11061 Heterosexual (straight)         Sometimes
## 11062          Gay or lesbian  Most of the time
## 11063 Heterosexual (straight)  Most of the time
## 11064 Heterosexual (straight)  Most of the time
## 11065 Heterosexual (straight)  Most of the time
## 11066 Heterosexual (straight)         Sometimes
## 11067 Heterosexual (straight)            Rarely
## 11068 Heterosexual (straight)            Rarely
## 11069 Heterosexual (straight)  Most of the time
## 11070 Heterosexual (straight)  Most of the time
## 11071 Heterosexual (straight)  Most of the time
## 11072 Heterosexual (straight)         Sometimes
## 11073 Heterosexual (straight)            Rarely
## 11074 Heterosexual (straight)         Sometimes
## 11075 Heterosexual (straight)         Sometimes
## 11076 Heterosexual (straight)         Sometimes
## 11077 Heterosexual (straight)         Sometimes
## 11078 Heterosexual (straight)  Most of the time
## 11079 Heterosexual (straight)             Never
## 11080 Heterosexual (straight)             Never
## 11081 Heterosexual (straight)  Most of the time
## 11082 Heterosexual (straight)         Sometimes
## 11083 Heterosexual (straight)  Most of the time
## 11084 Heterosexual (straight)            Rarely
## 11085 Heterosexual (straight)  Most of the time
## 11086 Heterosexual (straight)  Most of the time
## 11087          Gay or lesbian  Most of the time
## 11088                Bisexual            Always
## 11089 Heterosexual (straight)         Sometimes
## 11090 Heterosexual (straight)            Rarely
## 11091          Gay or lesbian         Sometimes
## 11092                Bisexual  Most of the time
## 11093 Heterosexual (straight)         Sometimes
## 11094 Heterosexual (straight)            Rarely
## 11095 Heterosexual (straight)             Never
## 11096 Heterosexual (straight)             Never
## 11097 Heterosexual (straight)         Sometimes
## 11098 Heterosexual (straight)         Sometimes
## 11099 Heterosexual (straight)             Never
## 11100                Bisexual  Most of the time
## 11101 Heterosexual (straight)         Sometimes
## 11102 Heterosexual (straight)  Most of the time
## 11103 Heterosexual (straight)         Sometimes
## 11104                Not sure              <NA>
## 11105                Not sure  Most of the time
## 11106 Heterosexual (straight)            Rarely
## 11107 Heterosexual (straight)  Most of the time
## 11108                Bisexual  Most of the time
## 11109 Heterosexual (straight)         Sometimes
## 11110 Heterosexual (straight)            Rarely
## 11111                Bisexual  Most of the time
## 11112 Heterosexual (straight)  Most of the time
## 11113                Bisexual            Always
## 11114 Heterosexual (straight)              <NA>
## 11115          Some other way              <NA>
## 11116 Heterosexual (straight)              <NA>
## 11117 Heterosexual (straight)             Never
## 11118 Heterosexual (straight)  Most of the time
## 11119 Heterosexual (straight)         Sometimes
## 11120 Heterosexual (straight)             Never
## 11121 Heterosexual (straight)         Sometimes
## 11122 Heterosexual (straight)            Rarely
## 11123 Heterosexual (straight)              <NA>
## 11124 Heterosexual (straight)  Most of the time
## 11125 Heterosexual (straight)  Most of the time
## 11126 Heterosexual (straight)  Most of the time
## 11127 Heterosexual (straight)  Most of the time
## 11128 Heterosexual (straight)            Rarely
## 11129 Heterosexual (straight)            Rarely
## 11130 Heterosexual (straight)         Sometimes
## 11131 Heterosexual (straight)             Never
## 11132 Heterosexual (straight)  Most of the time
## 11133 Heterosexual (straight)             Never
## 11134 Heterosexual (straight)         Sometimes
## 11135                Bisexual            Always
## 11136                Bisexual         Sometimes
## 11137                Not sure            Always
## 11138 Heterosexual (straight)            Always
## 11139 Heterosexual (straight)         Sometimes
## 11140 Heterosexual (straight)         Sometimes
## 11141 Heterosexual (straight)            Rarely
## 11142 Heterosexual (straight)         Sometimes
## 11143          Some other way         Sometimes
## 11144 Heterosexual (straight)  Most of the time
## 11145 Heterosexual (straight)         Sometimes
## 11146 Heterosexual (straight)            Rarely
## 11147 Heterosexual (straight)         Sometimes
## 11148 Heterosexual (straight)             Never
## 11149 Heterosexual (straight)         Sometimes
## 11150          Gay or lesbian            Always
## 11151                Not sure            Rarely
## 11152 Heterosexual (straight)              <NA>
## 11153 Heterosexual (straight)            Rarely
## 11154 Heterosexual (straight)  Most of the time
## 11155 Heterosexual (straight)            Rarely
## 11156 Heterosexual (straight)         Sometimes
## 11157 Heterosexual (straight)         Sometimes
## 11158 Heterosexual (straight)         Sometimes
## 11159 Heterosexual (straight)  Most of the time
## 11160 Heterosexual (straight)  Most of the time
## 11161                Bisexual            Always
## 11162 Heterosexual (straight)  Most of the time
## 11163                Bisexual  Most of the time
## 11164                Not sure  Most of the time
## 11165                Bisexual  Most of the time
## 11166 Heterosexual (straight)  Most of the time
## 11167                Bisexual         Sometimes
## 11168          Gay or lesbian         Sometimes
## 11169                Bisexual  Most of the time
## 11170                Bisexual         Sometimes
## 11171 Heterosexual (straight)            Always
## 11172 Heterosexual (straight)         Sometimes
## 11173 Heterosexual (straight)            Rarely
## 11174 Heterosexual (straight)  Most of the time
## 11175 Heterosexual (straight)             Never
## 11176 Heterosexual (straight)             Never
## 11177 Heterosexual (straight)         Sometimes
## 11178          Some other way         Sometimes
## 11179 Heterosexual (straight)         Sometimes
## 11180 Heterosexual (straight)             Never
## 11181 Heterosexual (straight)         Sometimes
## 11182                Bisexual  Most of the time
## 11183 Heterosexual (straight)         Sometimes
## 11184          Some other way  Most of the time
## 11185 Heterosexual (straight)         Sometimes
## 11186 Heterosexual (straight)         Sometimes
## 11187                Bisexual         Sometimes
## 11188 Heterosexual (straight)             Never
## 11189 Heterosexual (straight)             Never
## 11190          Some other way         Sometimes
## 11191 Heterosexual (straight)              <NA>
## 11192 Heterosexual (straight)             Never
## 11193 Heterosexual (straight)  Most of the time
## 11194          Some other way            Always
## 11195                Bisexual  Most of the time
## 11196 Heterosexual (straight)  Most of the time
## 11197                Bisexual            Always
## 11198 Heterosexual (straight)            Rarely
## 11199 Heterosexual (straight)            Rarely
## 11200 Heterosexual (straight)            Rarely
## 11201 Heterosexual (straight)  Most of the time
## 11202 Heterosexual (straight)            Rarely
## 11203 Heterosexual (straight)         Sometimes
## 11204 Heterosexual (straight)            Rarely
## 11205 Heterosexual (straight)            Rarely
## 11206 Heterosexual (straight)            Rarely
## 11207 Heterosexual (straight)  Most of the time
## 11208 Heterosexual (straight)            Always
## 11209                Not sure  Most of the time
## 11210 Heterosexual (straight)            Rarely
## 11211 Heterosexual (straight)            Rarely
## 11212          Gay or lesbian         Sometimes
## 11213 Heterosexual (straight)         Sometimes
## 11214 Heterosexual (straight)         Sometimes
## 11215 Heterosexual (straight)            Rarely
## 11216 Heterosexual (straight)            Rarely
## 11217 Heterosexual (straight)  Most of the time
## 11218 Heterosexual (straight)         Sometimes
## 11219                Bisexual            Always
## 11220 Heterosexual (straight)         Sometimes
## 11221                Not sure         Sometimes
## 11222 Heterosexual (straight)         Sometimes
## 11223 Heterosexual (straight)         Sometimes
## 11224                Bisexual  Most of the time
## 11225 Heterosexual (straight)  Most of the time
## 11226 Heterosexual (straight)         Sometimes
## 11227 Heterosexual (straight)            Rarely
## 11228                Bisexual         Sometimes
## 11229                Bisexual            Always
## 11230          Some other way         Sometimes
## 11231                Bisexual              <NA>
## 11232 Heterosexual (straight)         Sometimes
## 11233 Heterosexual (straight)         Sometimes
## 11234 Heterosexual (straight)  Most of the time
## 11235 Heterosexual (straight)            Rarely
## 11236 Heterosexual (straight)  Most of the time
## 11237 Heterosexual (straight)         Sometimes
## 11238 Heterosexual (straight)         Sometimes
## 11239          Some other way  Most of the time
## 11240 Heterosexual (straight)             Never
## 11241 Heterosexual (straight)             Never
## 11242 Heterosexual (straight)             Never
## 11243                Bisexual         Sometimes
## 11244 Heterosexual (straight)  Most of the time
## 11245 Heterosexual (straight)         Sometimes
## 11246 Heterosexual (straight)            Rarely
## 11247 Heterosexual (straight)            Always
## 11248                Not sure         Sometimes
## 11249                Bisexual            Always
## 11250 Heterosexual (straight)            Rarely
## 11251 Heterosexual (straight)  Most of the time
## 11252 Heterosexual (straight)         Sometimes
## 11253 Heterosexual (straight)         Sometimes
## 11254 Heterosexual (straight)            Rarely
## 11255 Heterosexual (straight)             Never
## 11256 Heterosexual (straight)             Never
## 11257 Heterosexual (straight)             Never
## 11258                Bisexual         Sometimes
## 11259                Not sure            Always
## 11260 Heterosexual (straight)         Sometimes
## 11261 Heterosexual (straight)  Most of the time
## 11262                Not sure  Most of the time
## 11263 Heterosexual (straight)         Sometimes
## 11264 Heterosexual (straight)  Most of the time
## 11265                Bisexual  Most of the time
## 11266 Heterosexual (straight)         Sometimes
## 11267                Bisexual            Rarely
## 11268                Bisexual              <NA>
## 11269 Heterosexual (straight)             Never
## 11270                Not sure         Sometimes
## 11271 Heterosexual (straight)         Sometimes
## 11272                Not sure         Sometimes
## 11273 Heterosexual (straight)            Rarely
## 11274 Heterosexual (straight)  Most of the time
## 11275 Heterosexual (straight)  Most of the time
## 11276 Heterosexual (straight)  Most of the time
## 11277 Heterosexual (straight)  Most of the time
## 11278 Heterosexual (straight)         Sometimes
## 11279          Some other way            Always
## 11280                Bisexual         Sometimes
## 11281          Gay or lesbian            Always
## 11282                Bisexual  Most of the time
## 11283                Bisexual            Always
## 11284 Heterosexual (straight)            Rarely
## 11285                Not sure  Most of the time
## 11286                Bisexual         Sometimes
## 11287 Heterosexual (straight)  Most of the time
## 11288                Not sure         Sometimes
## 11289                Bisexual         Sometimes
## 11290          Some other way  Most of the time
## 11291                Bisexual         Sometimes
## 11292                Bisexual             Never
## 11293                Bisexual         Sometimes
## 11294 Heterosexual (straight)            Rarely
## 11295          Gay or lesbian  Most of the time
## 11296                Not sure  Most of the time
## 11297 Heterosexual (straight)  Most of the time
## 11298 Heterosexual (straight)             Never
## 11299 Heterosexual (straight)             Never
## 11300 Heterosexual (straight)  Most of the time
## 11301 Heterosexual (straight)  Most of the time
## 11302 Heterosexual (straight)         Sometimes
## 11303 Heterosexual (straight)  Most of the time
## 11304 Heterosexual (straight)         Sometimes
## 11305                Not sure  Most of the time
## 11306                Bisexual            Always
## 11307 Heterosexual (straight)             Never
## 11308 Heterosexual (straight)              <NA>
## 11309 Heterosexual (straight)  Most of the time
## 11310 Heterosexual (straight)            Rarely
## 11311 Heterosexual (straight)            Always
## 11312 Heterosexual (straight)         Sometimes
## 11313 Heterosexual (straight)             Never
## 11314 Heterosexual (straight)             Never
## 11315 Heterosexual (straight)  Most of the time
## 11316 Heterosexual (straight)  Most of the time
## 11317 Heterosexual (straight)            Always
## 11318 Heterosexual (straight)         Sometimes
## 11319                Bisexual  Most of the time
## 11320                Bisexual  Most of the time
## 11321 Heterosexual (straight)             Never
## 11322 Heterosexual (straight)  Most of the time
## 11323                Bisexual  Most of the time
## 11324 Heterosexual (straight)         Sometimes
## 11325                Bisexual            Always
## 11326 Heterosexual (straight)            Rarely
## 11327 Heterosexual (straight)         Sometimes
## 11328 Heterosexual (straight)            Rarely
## 11329 Heterosexual (straight)              <NA>
## 11330 Heterosexual (straight)            Rarely
## 11331 Heterosexual (straight)              <NA>
## 11332 Heterosexual (straight)         Sometimes
## 11333 Heterosexual (straight)            Always
## 11334                Bisexual  Most of the time
## 11335 Heterosexual (straight)            Always
## 11336 Heterosexual (straight)         Sometimes
## 11337 Heterosexual (straight)            Always
## 11338 Heterosexual (straight)         Sometimes
## 11339 Heterosexual (straight)         Sometimes
## 11340                Bisexual            Rarely
## 11341 Heterosexual (straight)  Most of the time
## 11342 Heterosexual (straight)            Rarely
## 11343 Heterosexual (straight)  Most of the time
## 11344 Heterosexual (straight)            Rarely
## 11345 Heterosexual (straight)             Never
## 11346                Not sure  Most of the time
## 11347 Heterosexual (straight)  Most of the time
## 11348 Heterosexual (straight)            Rarely
## 11349 Heterosexual (straight)  Most of the time
## 11350                Not sure            Always
## 11351          Gay or lesbian         Sometimes
## 11352 Heterosexual (straight)             Never
## 11353                Bisexual  Most of the time
## 11354 Heterosexual (straight)  Most of the time
## 11355 Heterosexual (straight)            Rarely
## 11356 Heterosexual (straight)  Most of the time
## 11357                Bisexual         Sometimes
## 11358 Heterosexual (straight)         Sometimes
## 11359                Bisexual  Most of the time
## 11360                Bisexual  Most of the time
## 11361                Not sure            Always
## 11362 Heterosexual (straight)         Sometimes
## 11363                Not sure         Sometimes
## 11364                Not sure         Sometimes
## 11365                Bisexual            Always
## 11366 Heterosexual (straight)         Sometimes
## 11367 Heterosexual (straight)            Rarely
## 11368          Gay or lesbian         Sometimes
## 11369 Heterosexual (straight)            Rarely
## 11370                Not sure            Always
## 11371                Bisexual         Sometimes
## 11372                Bisexual         Sometimes
## 11373 Heterosexual (straight)            Rarely
## 11374                Bisexual            Rarely
## 11375 Heterosexual (straight)         Sometimes
## 11376 Heterosexual (straight)  Most of the time
## 11377 Heterosexual (straight)  Most of the time
## 11378 Heterosexual (straight)            Rarely
## 11379 Heterosexual (straight)             Never
## 11380                Bisexual         Sometimes
## 11381                Bisexual         Sometimes
## 11382 Heterosexual (straight)  Most of the time
## 11383 Heterosexual (straight)            Rarely
## 11384 Heterosexual (straight)              <NA>
## 11385 Heterosexual (straight)  Most of the time
## 11386                Bisexual            Rarely
## 11387                Bisexual            Always
## 11388 Heterosexual (straight)            Rarely
## 11389 Heterosexual (straight)            Always
## 11390 Heterosexual (straight)         Sometimes
## 11391 Heterosexual (straight)         Sometimes
## 11392 Heterosexual (straight)            Rarely
## 11393 Heterosexual (straight)         Sometimes
## 11394 Heterosexual (straight)         Sometimes
## 11395 Heterosexual (straight)             Never
## 11396 Heterosexual (straight)         Sometimes
## 11397 Heterosexual (straight)            Rarely
## 11398 Heterosexual (straight)             Never
## 11399 Heterosexual (straight)         Sometimes
## 11400 Heterosexual (straight)         Sometimes
## 11401 Heterosexual (straight)            Always
## 11402 Heterosexual (straight)            Always
## 11403                Not sure            Always
## 11404 Heterosexual (straight)         Sometimes
## 11405 Heterosexual (straight)            Rarely
## 11406                Bisexual            Always
## 11407          Some other way            Always
## 11408 Heterosexual (straight)         Sometimes
## 11409                Bisexual            Always
## 11410 Heterosexual (straight)             Never
## 11411 Heterosexual (straight)  Most of the time
## 11412                Bisexual  Most of the time
## 11413                Not sure  Most of the time
## 11414                Bisexual         Sometimes
## 11415 Heterosexual (straight)  Most of the time
## 11416 Heterosexual (straight)         Sometimes
## 11417                Bisexual            Rarely
## 11418 Heterosexual (straight)            Rarely
## 11419                Not sure  Most of the time
## 11420                Bisexual  Most of the time
## 11421                Bisexual  Most of the time
## 11422                Bisexual  Most of the time
## 11423 Heterosexual (straight)  Most of the time
## 11424 Heterosexual (straight)            Rarely
## 11425 Heterosexual (straight)             Never
## 11426 Heterosexual (straight)         Sometimes
## 11427 Heterosexual (straight)         Sometimes
## 11428 Heterosexual (straight)         Sometimes
## 11429 Heterosexual (straight)             Never
## 11430                Bisexual  Most of the time
## 11431 Heterosexual (straight)            Always
## 11432 Heterosexual (straight)         Sometimes
## 11433 Heterosexual (straight)         Sometimes
## 11434 Heterosexual (straight)         Sometimes
## 11435 Heterosexual (straight)            Rarely
## 11436                Bisexual  Most of the time
## 11437                Bisexual  Most of the time
## 11438 Heterosexual (straight)  Most of the time
## 11439                Bisexual  Most of the time
## 11440                Bisexual  Most of the time
## 11441 Heterosexual (straight)         Sometimes
## 11442          Gay or lesbian  Most of the time
## 11443                Bisexual         Sometimes
## 11444          Some other way              <NA>
## 11445          Gay or lesbian  Most of the time
## 11446 Heterosexual (straight)            Rarely
## 11447                Not sure             Never
## 11448                Bisexual            Rarely
## 11449                Bisexual  Most of the time
## 11450 Heterosexual (straight)             Never
## 11451                Bisexual  Most of the time
## 11452          Some other way            Rarely
## 11453 Heterosexual (straight)         Sometimes
## 11454 Heterosexual (straight)         Sometimes
## 11455                Bisexual         Sometimes
## 11456 Heterosexual (straight)         Sometimes
## 11457 Heterosexual (straight)  Most of the time
## 11458                Bisexual  Most of the time
## 11459 Heterosexual (straight)            Always
## 11460                Bisexual         Sometimes
## 11461 Heterosexual (straight)             Never
## 11462                Not sure              <NA>
## 11463                Bisexual         Sometimes
## 11464 Heterosexual (straight)            Rarely
## 11465 Heterosexual (straight)  Most of the time
## 11466                Bisexual  Most of the time
## 11467 Heterosexual (straight)             Never
## 11468                Bisexual            Always
## 11469 Heterosexual (straight)         Sometimes
## 11470 Heterosexual (straight)         Sometimes
## 11471                Bisexual  Most of the time
## 11472 Heterosexual (straight)         Sometimes
## 11473                Not sure            Always
## 11474 Heterosexual (straight)            Rarely
## 11475 Heterosexual (straight)            Rarely
## 11476                Bisexual         Sometimes
## 11477 Heterosexual (straight)            Rarely
## 11478 Heterosexual (straight)            Always
## 11479                Not sure         Sometimes
## 11480 Heterosexual (straight)  Most of the time
## 11481 Heterosexual (straight)            Always
## 11482 Heterosexual (straight)  Most of the time
## 11483                Bisexual         Sometimes
## 11484                Not sure         Sometimes
## 11485 Heterosexual (straight)  Most of the time
## 11486 Heterosexual (straight)  Most of the time
## 11487                Bisexual  Most of the time
## 11488                Not sure  Most of the time
## 11489 Heterosexual (straight)            Rarely
## 11490                Not sure            Rarely
## 11491                Bisexual            Always
## 11492 Heterosexual (straight)             Never
## 11493                Bisexual  Most of the time
## 11494 Heterosexual (straight)  Most of the time
## 11495 Heterosexual (straight)         Sometimes
## 11496                Not sure  Most of the time
## 11497 Heterosexual (straight)  Most of the time
## 11498 Heterosexual (straight)  Most of the time
## 11499 Heterosexual (straight)            Rarely
## 11500          Gay or lesbian            Always
## 11501 Heterosexual (straight)            Rarely
## 11502 Heterosexual (straight)  Most of the time
## 11503 Heterosexual (straight)         Sometimes
## 11504 Heterosexual (straight)             Never
## 11505                Not sure  Most of the time
## 11506                Bisexual         Sometimes
## 11507                Bisexual         Sometimes
## 11508          Some other way         Sometimes
## 11509                Bisexual  Most of the time
## 11510 Heterosexual (straight)             Never
## 11511                Bisexual         Sometimes
## 11512 Heterosexual (straight)         Sometimes
## 11513                Bisexual         Sometimes
## 11514 Heterosexual (straight)  Most of the time
## 11515                Not sure  Most of the time
## 11516 Heterosexual (straight)         Sometimes
## 11517                Bisexual            Always
## 11518                Bisexual            Always
## 11519 Heterosexual (straight)         Sometimes
## 11520 Heterosexual (straight)              <NA>
## 11521                Bisexual  Most of the time
## 11522 Heterosexual (straight)  Most of the time
## 11523 Heterosexual (straight)         Sometimes
## 11524                Bisexual  Most of the time
## 11525 Heterosexual (straight)            Always
## 11526 Heterosexual (straight)  Most of the time
## 11527 Heterosexual (straight)         Sometimes
## 11528          Some other way  Most of the time
## 11529 Heterosexual (straight)  Most of the time
## 11530          Gay or lesbian  Most of the time
## 11531                Bisexual            Always
## 11532 Heterosexual (straight)         Sometimes
## 11533 Heterosexual (straight)         Sometimes
## 11534 Heterosexual (straight)            Always
## 11535 Heterosexual (straight)            Always
## 11536 Heterosexual (straight)  Most of the time
## 11537          Some other way         Sometimes
## 11538 Heterosexual (straight)         Sometimes
## 11539          Some other way            Always
## 11540                Bisexual  Most of the time
## 11541                Bisexual  Most of the time
## 11542 Heterosexual (straight)            Rarely
## 11543 Heterosexual (straight)            Always
## 11544 Heterosexual (straight)  Most of the time
## 11545 Heterosexual (straight)             Never
## 11546 Heterosexual (straight)            Rarely
## 11547 Heterosexual (straight)         Sometimes
## 11548                Bisexual  Most of the time
## 11549 Heterosexual (straight)         Sometimes
## 11550                Bisexual         Sometimes
## 11551 Heterosexual (straight)  Most of the time
## 11552 Heterosexual (straight)             Never
## 11553 Heterosexual (straight)         Sometimes
## 11554 Heterosexual (straight)            Rarely
## 11555 Heterosexual (straight)             Never
## 11556 Heterosexual (straight)         Sometimes
## 11557          Some other way            Always
## 11558          Gay or lesbian            Rarely
## 11559                Not sure            Always
## 11560 Heterosexual (straight)         Sometimes
## 11561 Heterosexual (straight)         Sometimes
## 11562 Heterosexual (straight)         Sometimes
## 11563 Heterosexual (straight)            Rarely
## 11564                Bisexual            Always
## 11565 Heterosexual (straight)             Never
## 11566 Heterosexual (straight)         Sometimes
## 11567 Heterosexual (straight)            Rarely
## 11568                Bisexual         Sometimes
## 11569 Heterosexual (straight)         Sometimes
## 11570          Some other way         Sometimes
## 11571                Bisexual  Most of the time
## 11572                Bisexual  Most of the time
## 11573 Heterosexual (straight)  Most of the time
## 11574 Heterosexual (straight)         Sometimes
## 11575                Bisexual            Rarely
## 11576 Heterosexual (straight)             Never
## 11577 Heterosexual (straight)            Always
## 11578                Bisexual  Most of the time
## 11579 Heterosexual (straight)            Always
## 11580          Gay or lesbian  Most of the time
## 11581 Heterosexual (straight)  Most of the time
## 11582 Heterosexual (straight)            Rarely
## 11583 Heterosexual (straight)         Sometimes
## 11584          Gay or lesbian         Sometimes
## 11585 Heterosexual (straight)         Sometimes
## 11586 Heterosexual (straight)         Sometimes
## 11587                Bisexual  Most of the time
## 11588 Heterosexual (straight)         Sometimes
## 11589 Heterosexual (straight)             Never
## 11590 Heterosexual (straight)         Sometimes
## 11591 Heterosexual (straight)             Never
## 11592 Heterosexual (straight)         Sometimes
## 11593 Heterosexual (straight)         Sometimes
## 11594                Bisexual            Always
## 11595 Heterosexual (straight)  Most of the time
## 11596                Bisexual  Most of the time
## 11597                Bisexual            Always
## 11598 Heterosexual (straight)         Sometimes
## 11599          Some other way              <NA>
## 11600 Heterosexual (straight)  Most of the time
## 11601 Heterosexual (straight)             Never
## 11602 Heterosexual (straight)  Most of the time
## 11603 Heterosexual (straight)            Rarely
## 11604                Bisexual  Most of the time
## 11605                Bisexual  Most of the time
## 11606 Heterosexual (straight)            Always
## 11607 Heterosexual (straight)             Never
## 11608                Bisexual            Always
## 11609                Not sure         Sometimes
## 11610 Heterosexual (straight)            Rarely
## 11611 Heterosexual (straight)  Most of the time
## 11612 Heterosexual (straight)             Never
## 11613 Heterosexual (straight)         Sometimes
## 11614 Heterosexual (straight)  Most of the time
## 11615 Heterosexual (straight)             Never
## 11616                Bisexual  Most of the time
## 11617 Heterosexual (straight)         Sometimes
## 11618 Heterosexual (straight)         Sometimes
## 11619 Heterosexual (straight)         Sometimes
## 11620                Bisexual         Sometimes
## 11621                Bisexual  Most of the time
## 11622 Heterosexual (straight)  Most of the time
## 11623 Heterosexual (straight)  Most of the time
## 11624 Heterosexual (straight)         Sometimes
## 11625 Heterosexual (straight)            Rarely
## 11626 Heterosexual (straight)         Sometimes
## 11627 Heterosexual (straight)            Always
## 11628 Heterosexual (straight)         Sometimes
## 11629                Not sure            Rarely
## 11630 Heterosexual (straight)            Rarely
## 11631                Not sure         Sometimes
## 11632 Heterosexual (straight)         Sometimes
## 11633                Not sure  Most of the time
## 11634 Heterosexual (straight)             Never
## 11635 Heterosexual (straight)         Sometimes
## 11636                Bisexual         Sometimes
## 11637 Heterosexual (straight)  Most of the time
## 11638 Heterosexual (straight)  Most of the time
## 11639 Heterosexual (straight)  Most of the time
## 11640 Heterosexual (straight)  Most of the time
## 11641 Heterosexual (straight)         Sometimes
## 11642 Heterosexual (straight)  Most of the time
## 11643 Heterosexual (straight)         Sometimes
## 11644 Heterosexual (straight)              <NA>
## 11645 Heterosexual (straight)            Always
## 11646 Heterosexual (straight)         Sometimes
## 11647 Heterosexual (straight)  Most of the time
## 11648 Heterosexual (straight)            Always
## 11649          Gay or lesbian         Sometimes
## 11650 Heterosexual (straight)            Rarely
## 11651 Heterosexual (straight)         Sometimes
## 11652 Heterosexual (straight)         Sometimes
## 11653 Heterosexual (straight)             Never
## 11654                Not sure         Sometimes
## 11655 Heterosexual (straight)  Most of the time
## 11656                Bisexual            Always
## 11657          Some other way            Always
## 11658 Heterosexual (straight)  Most of the time
## 11659 Heterosexual (straight)              <NA>
## 11660 Heterosexual (straight)            Rarely
## 11661 Heterosexual (straight)            Rarely
## 11662 Heterosexual (straight)         Sometimes
## 11663 Heterosexual (straight)             Never
## 11664 Heterosexual (straight)            Rarely
## 11665 Heterosexual (straight)            Rarely
## 11666 Heterosexual (straight)            Rarely
## 11667 Heterosexual (straight)            Rarely
## 11668 Heterosexual (straight)         Sometimes
## 11669 Heterosexual (straight)             Never
## 11670 Heterosexual (straight)            Rarely
## 11671 Heterosexual (straight)  Most of the time
## 11672 Heterosexual (straight)         Sometimes
## 11673 Heterosexual (straight)         Sometimes
## 11674 Heterosexual (straight)         Sometimes
## 11675 Heterosexual (straight)         Sometimes
## 11676 Heterosexual (straight)         Sometimes
## 11677                Bisexual  Most of the time
## 11678          Gay or lesbian         Sometimes
## 11679                Bisexual         Sometimes
## 11680                Bisexual  Most of the time
## 11681                Not sure            Always
## 11682                Bisexual         Sometimes
## 11683 Heterosexual (straight)         Sometimes
## 11684 Heterosexual (straight)         Sometimes
## 11685 Heterosexual (straight)         Sometimes
## 11686                Bisexual            Rarely
## 11687 Heterosexual (straight)             Never
## 11688 Heterosexual (straight)              <NA>
## 11689                Bisexual              <NA>
## 11690 Heterosexual (straight)             Never
## 11691 Heterosexual (straight)         Sometimes
## 11692                Bisexual         Sometimes
## 11693          Gay or lesbian             Never
## 11694                Not sure         Sometimes
## 11695 Heterosexual (straight)  Most of the time
## 11696 Heterosexual (straight)            Rarely
## 11697 Heterosexual (straight)         Sometimes
## 11698                Not sure         Sometimes
## 11699 Heterosexual (straight)  Most of the time
## 11700 Heterosexual (straight)  Most of the time
## 11701 Heterosexual (straight)  Most of the time
## 11702                Bisexual             Never
## 11703                Not sure         Sometimes
## 11704                Bisexual            Always
## 11705 Heterosexual (straight)  Most of the time
## 11706 Heterosexual (straight)            Rarely
## 11707 Heterosexual (straight)  Most of the time
## 11708 Heterosexual (straight)            Rarely
## 11709          Some other way            Always
## 11710                Not sure            Rarely
## 11711 Heterosexual (straight)         Sometimes
## 11712          Some other way  Most of the time
## 11713 Heterosexual (straight)         Sometimes
## 11714 Heterosexual (straight)            Rarely
## 11715 Heterosexual (straight)         Sometimes
## 11716 Heterosexual (straight)            Rarely
## 11717 Heterosexual (straight)         Sometimes
## 11718 Heterosexual (straight)            Rarely
## 11719 Heterosexual (straight)            Always
## 11720 Heterosexual (straight)              <NA>
## 11721 Heterosexual (straight)         Sometimes
## 11722          Some other way         Sometimes
## 11723          Gay or lesbian         Sometimes
## 11724                Bisexual         Sometimes
## 11725                Bisexual         Sometimes
## 11726                Bisexual         Sometimes
## 11727          Some other way  Most of the time
## 11728 Heterosexual (straight)             Never
## 11729 Heterosexual (straight)         Sometimes
## 11730                Bisexual  Most of the time
## 11731                Not sure  Most of the time
## 11732          Some other way         Sometimes
## 11733 Heterosexual (straight)  Most of the time
## 11734          Some other way  Most of the time
## 11735                Not sure         Sometimes
## 11736 Heterosexual (straight)            Rarely
## 11737 Heterosexual (straight)             Never
## 11738          Gay or lesbian  Most of the time
## 11739 Heterosexual (straight)            Rarely
## 11740 Heterosexual (straight)         Sometimes
## 11741          Some other way  Most of the time
## 11742 Heterosexual (straight)            Rarely
## 11743          Gay or lesbian  Most of the time
## 11744 Heterosexual (straight)  Most of the time
## 11745          Gay or lesbian  Most of the time
## 11746          Gay or lesbian            Always
## 11747                Bisexual            Always
## 11748 Heterosexual (straight)         Sometimes
## 11749 Heterosexual (straight)             Never
## 11750 Heterosexual (straight)         Sometimes
## 11751                Bisexual  Most of the time
## 11752          Some other way  Most of the time
## 11753 Heterosexual (straight)             Never
## 11754                Bisexual  Most of the time
## 11755                Bisexual  Most of the time
## 11756                Bisexual            Always
## 11757 Heterosexual (straight)  Most of the time
## 11758 Heterosexual (straight)             Never
## 11759                Bisexual         Sometimes
## 11760                Bisexual  Most of the time
## 11761          Gay or lesbian            Always
## 11762                Bisexual  Most of the time
## 11763 Heterosexual (straight)         Sometimes
## 11764                Not sure            Always
## 11765                Bisexual         Sometimes
## 11766 Heterosexual (straight)         Sometimes
## 11767 Heterosexual (straight)         Sometimes
## 11768 Heterosexual (straight)            Always
## 11769          Some other way         Sometimes
## 11770 Heterosexual (straight)  Most of the time
## 11771 Heterosexual (straight)             Never
## 11772 Heterosexual (straight)             Never
## 11773 Heterosexual (straight)  Most of the time
## 11774 Heterosexual (straight)  Most of the time
## 11775          Some other way  Most of the time
## 11776 Heterosexual (straight)            Rarely
## 11777 Heterosexual (straight)             Never
## 11778                Bisexual         Sometimes
## 11779                Bisexual         Sometimes
## 11780                Not sure              <NA>
## 11781                Not sure  Most of the time
## 11782 Heterosexual (straight)  Most of the time
## 11783 Heterosexual (straight)         Sometimes
## 11784 Heterosexual (straight)            Always
## 11785                Bisexual         Sometimes
## 11786 Heterosexual (straight)             Never
## 11787 Heterosexual (straight)  Most of the time
## 11788                Not sure  Most of the time
## 11789 Heterosexual (straight)         Sometimes
## 11790 Heterosexual (straight)         Sometimes
## 11791          Some other way         Sometimes
## 11792          Gay or lesbian  Most of the time
## 11793 Heterosexual (straight)            Rarely
## 11794                Bisexual         Sometimes
## 11795 Heterosexual (straight)            Rarely
## 11796 Heterosexual (straight)         Sometimes
## 11797 Heterosexual (straight)  Most of the time
## 11798 Heterosexual (straight)              <NA>
## 11799                Bisexual            Always
## 11800 Heterosexual (straight)  Most of the time
## 11801          Gay or lesbian            Always
## 11802 Heterosexual (straight)            Always
## 11803                Bisexual  Most of the time
## 11804          Gay or lesbian  Most of the time
## 11805 Heterosexual (straight)         Sometimes
## 11806 Heterosexual (straight)         Sometimes
## 11807 Heterosexual (straight)            Rarely
## 11808          Some other way            Always
## 11809 Heterosexual (straight)             Never
## 11810                Bisexual  Most of the time
## 11811 Heterosexual (straight)             Never
## 11812 Heterosexual (straight)  Most of the time
## 11813                Bisexual         Sometimes
## 11814 Heterosexual (straight)            Rarely
## 11815          Gay or lesbian             Never
## 11816 Heterosexual (straight)  Most of the time
## 11817 Heterosexual (straight)         Sometimes
## 11818          Gay or lesbian  Most of the time
## 11819                Not sure  Most of the time
## 11820          Some other way  Most of the time
## 11821 Heterosexual (straight)         Sometimes
## 11822          Some other way         Sometimes
## 11823          Some other way            Always
## 11824                Bisexual         Sometimes
## 11825 Heterosexual (straight)         Sometimes
## 11826 Heterosexual (straight)             Never
## 11827 Heterosexual (straight)             Never
## 11828 Heterosexual (straight)         Sometimes
## 11829          Some other way            Always
## 11830 Heterosexual (straight)            Rarely
## 11831                Not sure         Sometimes
## 11832 Heterosexual (straight)         Sometimes
## 11833 Heterosexual (straight)             Never
## 11834                Bisexual            Rarely
## 11835          Gay or lesbian            Rarely
## 11836 Heterosexual (straight)  Most of the time
## 11837                Bisexual  Most of the time
## 11838          Some other way  Most of the time
## 11839 Heterosexual (straight)             Never
## 11840 Heterosexual (straight)            Rarely
## 11841 Heterosexual (straight)         Sometimes
## 11842 Heterosexual (straight)  Most of the time
## 11843 Heterosexual (straight)             Never
## 11844 Heterosexual (straight)  Most of the time
## 11845 Heterosexual (straight)  Most of the time
## 11846                Bisexual         Sometimes
## 11847          Gay or lesbian            Always
## 11848 Heterosexual (straight)             Never
## 11849 Heterosexual (straight)  Most of the time
## 11850 Heterosexual (straight)              <NA>
## 11851 Heterosexual (straight)         Sometimes
## 11852 Heterosexual (straight)         Sometimes
## 11853 Heterosexual (straight)  Most of the time
## 11854          Some other way         Sometimes
## 11855                Bisexual  Most of the time
## 11856 Heterosexual (straight)         Sometimes
## 11857 Heterosexual (straight)         Sometimes
## 11858                Bisexual         Sometimes
## 11859 Heterosexual (straight)         Sometimes
## 11860 Heterosexual (straight)  Most of the time
## 11861          Some other way  Most of the time
## 11862                Bisexual            Rarely
## 11863                Not sure         Sometimes
## 11864 Heterosexual (straight)         Sometimes
## 11865 Heterosexual (straight)            Rarely
## 11866          Gay or lesbian            Always
## 11867 Heterosexual (straight)         Sometimes
## 11868          Some other way  Most of the time
## 11869          Gay or lesbian  Most of the time
## 11870 Heterosexual (straight)             Never
## 11871                Not sure         Sometimes
## 11872 Heterosexual (straight)         Sometimes
## 11873                Not sure            Always
## 11874 Heterosexual (straight)            Rarely
## 11875 Heterosexual (straight)            Always
## 11876                Bisexual  Most of the time
## 11877 Heterosexual (straight)         Sometimes
## 11878 Heterosexual (straight)            Rarely
## 11879                Bisexual         Sometimes
## 11880                Bisexual  Most of the time
## 11881 Heterosexual (straight)         Sometimes
## 11882 Heterosexual (straight)         Sometimes
## 11883          Some other way         Sometimes
## 11884 Heterosexual (straight)         Sometimes
## 11885                Bisexual  Most of the time
## 11886 Heterosexual (straight)         Sometimes
## 11887 Heterosexual (straight)  Most of the time
## 11888                Not sure         Sometimes
## 11889 Heterosexual (straight)  Most of the time
## 11890                Bisexual  Most of the time
## 11891 Heterosexual (straight)         Sometimes
## 11892 Heterosexual (straight)         Sometimes
## 11893                Bisexual         Sometimes
## 11894                Bisexual             Never
## 11895 Heterosexual (straight)         Sometimes
## 11896                Bisexual         Sometimes
## 11897                Bisexual         Sometimes
## 11898 Heterosexual (straight)         Sometimes
## 11899 Heterosexual (straight)         Sometimes
## 11900                Bisexual         Sometimes
## 11901 Heterosexual (straight)         Sometimes
## 11902 Heterosexual (straight)  Most of the time
## 11903 Heterosexual (straight)            Rarely
## 11904          Gay or lesbian            Rarely
## 11905 Heterosexual (straight)         Sometimes
## 11906          Gay or lesbian         Sometimes
## 11907                Bisexual         Sometimes
## 11908                Bisexual            Rarely
## 11909 Heterosexual (straight)            Rarely
## 11910 Heterosexual (straight)            Rarely
## 11911 Heterosexual (straight)            Rarely
## 11912 Heterosexual (straight)            Rarely
## 11913 Heterosexual (straight)            Rarely
## 11914 Heterosexual (straight)            Rarely
## 11915          Gay or lesbian            Always
## 11916 Heterosexual (straight)         Sometimes
## 11917 Heterosexual (straight)  Most of the time
## 11918 Heterosexual (straight)            Always
## 11919 Heterosexual (straight)         Sometimes
## 11920 Heterosexual (straight)         Sometimes
## 11921 Heterosexual (straight)             Never
## 11922 Heterosexual (straight)            Always
## 11923 Heterosexual (straight)         Sometimes
## 11924 Heterosexual (straight)         Sometimes
## 11925          Some other way            Always
## 11926          Gay or lesbian            Always
## 11927 Heterosexual (straight)            Rarely
## 11928 Heterosexual (straight)         Sometimes
## 11929                Bisexual         Sometimes
## 11930 Heterosexual (straight)            Rarely
## 11931 Heterosexual (straight)         Sometimes
## 11932 Heterosexual (straight)         Sometimes
## 11933 Heterosexual (straight)         Sometimes
## 11934 Heterosexual (straight)             Never
## 11935          Some other way         Sometimes
## 11936 Heterosexual (straight)         Sometimes
## 11937 Heterosexual (straight)             Never
## 11938                Bisexual  Most of the time
## 11939 Heterosexual (straight)         Sometimes
## 11940 Heterosexual (straight)         Sometimes
## 11941          Some other way            Always
## 11942 Heterosexual (straight)  Most of the time
## 11943 Heterosexual (straight)         Sometimes
## 11944                Bisexual            Always
## 11945 Heterosexual (straight)         Sometimes
## 11946 Heterosexual (straight)             Never
## 11947 Heterosexual (straight)            Rarely
## 11948 Heterosexual (straight)  Most of the time
## 11949 Heterosexual (straight)         Sometimes
## 11950 Heterosexual (straight)  Most of the time
## 11951 Heterosexual (straight)            Always
## 11952 Heterosexual (straight)             Never
## 11953                Bisexual  Most of the time
## 11954 Heterosexual (straight)            Rarely
## 11955                Not sure         Sometimes
## 11956 Heterosexual (straight)         Sometimes
## 11957 Heterosexual (straight)  Most of the time
## 11958 Heterosexual (straight)            Always
## 11959          Some other way         Sometimes
## 11960 Heterosexual (straight)  Most of the time
## 11961 Heterosexual (straight)            Rarely
## 11962 Heterosexual (straight)             Never
## 11963 Heterosexual (straight)         Sometimes
## 11964 Heterosexual (straight)  Most of the time
## 11965 Heterosexual (straight)         Sometimes
## 11966 Heterosexual (straight)         Sometimes
## 11967 Heterosexual (straight)            Always
## 11968 Heterosexual (straight)         Sometimes
## 11969 Heterosexual (straight)  Most of the time
## 11970                Bisexual  Most of the time
## 11971 Heterosexual (straight)  Most of the time
## 11972 Heterosexual (straight)         Sometimes
## 11973 Heterosexual (straight)            Rarely
## 11974 Heterosexual (straight)         Sometimes
## 11975 Heterosexual (straight)         Sometimes
## 11976 Heterosexual (straight)  Most of the time
## 11977 Heterosexual (straight)  Most of the time
## 11978                Bisexual         Sometimes
## 11979 Heterosexual (straight)            Always
## 11980                Bisexual         Sometimes
## 11981 Heterosexual (straight)            Always
## 11982 Heterosexual (straight)              <NA>
## 11983 Heterosexual (straight)              <NA>
## 11984 Heterosexual (straight)              <NA>
## 11985 Heterosexual (straight)              <NA>
## 11986          Some other way              <NA>
## 11987 Heterosexual (straight)              <NA>
## 11988 Heterosexual (straight)              <NA>
## 11989 Heterosexual (straight)              <NA>
## 11990 Heterosexual (straight)              <NA>
## 11991 Heterosexual (straight)              <NA>
## 11992 Heterosexual (straight)              <NA>
## 11993 Heterosexual (straight)              <NA>
## 11994 Heterosexual (straight)              <NA>
## 11995 Heterosexual (straight)              <NA>
## 11996 Heterosexual (straight)              <NA>
## 11997 Heterosexual (straight)              <NA>
## 11998 Heterosexual (straight)              <NA>
## 11999                Bisexual              <NA>
## 12000 Heterosexual (straight)              <NA>
## 12001 Heterosexual (straight)              <NA>
## 12002 Heterosexual (straight)              <NA>
## 12003 Heterosexual (straight)              <NA>
## 12004 Heterosexual (straight)              <NA>
## 12005                Bisexual              <NA>
## 12006 Heterosexual (straight)              <NA>
## 12007 Heterosexual (straight)              <NA>
## 12008 Heterosexual (straight)              <NA>
## 12009                Bisexual              <NA>
## 12010 Heterosexual (straight)              <NA>
## 12011 Heterosexual (straight)              <NA>
## 12012 Heterosexual (straight)              <NA>
## 12013 Heterosexual (straight)              <NA>
## 12014 Heterosexual (straight)              <NA>
## 12015                Bisexual              <NA>
## 12016 Heterosexual (straight)              <NA>
## 12017 Heterosexual (straight)              <NA>
## 12018 Heterosexual (straight)              <NA>
## 12019 Heterosexual (straight)              <NA>
## 12020 Heterosexual (straight)              <NA>
## 12021 Heterosexual (straight)              <NA>
## 12022 Heterosexual (straight)              <NA>
## 12023 Heterosexual (straight)              <NA>
## 12024 Heterosexual (straight)              <NA>
## 12025                Bisexual              <NA>
## 12026 Heterosexual (straight)              <NA>
## 12027 Heterosexual (straight)              <NA>
## 12028 Heterosexual (straight)              <NA>
## 12029 Heterosexual (straight)              <NA>
## 12030          Some other way              <NA>
## 12031 Heterosexual (straight)              <NA>
## 12032 Heterosexual (straight)              <NA>
## 12033 Heterosexual (straight)              <NA>
## 12034                Not sure              <NA>
## 12035 Heterosexual (straight)              <NA>
## 12036 Heterosexual (straight)              <NA>
## 12037                Bisexual              <NA>
## 12038 Heterosexual (straight)              <NA>
## 12039          Gay or lesbian              <NA>
## 12040 Heterosexual (straight)              <NA>
## 12041 Heterosexual (straight)              <NA>
## 12042 Heterosexual (straight)              <NA>
## 12043 Heterosexual (straight)              <NA>
## 12044 Heterosexual (straight)              <NA>
## 12045 Heterosexual (straight)              <NA>
## 12046 Heterosexual (straight)              <NA>
## 12047 Heterosexual (straight)              <NA>
## 12048                Bisexual              <NA>
## 12049 Heterosexual (straight)              <NA>
## 12050 Heterosexual (straight)              <NA>
## 12051 Heterosexual (straight)              <NA>
## 12052                Bisexual              <NA>
## 12053 Heterosexual (straight)              <NA>
## 12054 Heterosexual (straight)              <NA>
## 12055                Bisexual              <NA>
## 12056 Heterosexual (straight)              <NA>
## 12057 Heterosexual (straight)              <NA>
## 12058 Heterosexual (straight)              <NA>
## 12059 Heterosexual (straight)              <NA>
## 12060                Not sure              <NA>
## 12061 Heterosexual (straight)              <NA>
## 12062 Heterosexual (straight)              <NA>
## 12063          Some other way              <NA>
## 12064 Heterosexual (straight)              <NA>
## 12065 Heterosexual (straight)              <NA>
## 12066 Heterosexual (straight)              <NA>
## 12067 Heterosexual (straight)              <NA>
## 12068 Heterosexual (straight)              <NA>
## 12069 Heterosexual (straight)              <NA>
## 12070          Some other way              <NA>
## 12071 Heterosexual (straight)              <NA>
## 12072 Heterosexual (straight)              <NA>
## 12073 Heterosexual (straight)              <NA>
## 12074          Some other way              <NA>
## 12075                Bisexual              <NA>
## 12076 Heterosexual (straight)              <NA>
## 12077 Heterosexual (straight)              <NA>
## 12078 Heterosexual (straight)              <NA>
## 12079 Heterosexual (straight)              <NA>
## 12080 Heterosexual (straight)              <NA>
## 12081                Bisexual              <NA>
## 12082 Heterosexual (straight)              <NA>
## 12083 Heterosexual (straight)              <NA>
## 12084 Heterosexual (straight)              <NA>
## 12085 Heterosexual (straight)              <NA>
## 12086 Heterosexual (straight)              <NA>
## 12087          Gay or lesbian              <NA>
## 12088 Heterosexual (straight)              <NA>
## 12089 Heterosexual (straight)              <NA>
## 12090 Heterosexual (straight)              <NA>
## 12091 Heterosexual (straight)              <NA>
## 12092 Heterosexual (straight)              <NA>
## 12093 Heterosexual (straight)              <NA>
## 12094 Heterosexual (straight)              <NA>
## 12095 Heterosexual (straight)              <NA>
## 12096 Heterosexual (straight)              <NA>
## 12097 Heterosexual (straight)              <NA>
## 12098 Heterosexual (straight)              <NA>
## 12099 Heterosexual (straight)              <NA>
## 12100          Some other way              <NA>
## 12101          Gay or lesbian              <NA>
## 12102                Bisexual              <NA>
## 12103                Bisexual              <NA>
## 12104                Not sure              <NA>
## 12105 Heterosexual (straight)              <NA>
## 12106                Not sure              <NA>
## 12107 Heterosexual (straight)              <NA>
## 12108 Heterosexual (straight)              <NA>
## 12109 Heterosexual (straight)              <NA>
## 12110                Bisexual              <NA>
## 12111 Heterosexual (straight)              <NA>
## 12112 Heterosexual (straight)              <NA>
## 12113                Bisexual              <NA>
## 12114                Not sure              <NA>
## 12115 Heterosexual (straight)              <NA>
## 12116 Heterosexual (straight)              <NA>
## 12117 Heterosexual (straight)              <NA>
## 12118 Heterosexual (straight)              <NA>
## 12119 Heterosexual (straight)              <NA>
## 12120 Heterosexual (straight)              <NA>
## 12121 Heterosexual (straight)              <NA>
## 12122 Heterosexual (straight)              <NA>
## 12123 Heterosexual (straight)              <NA>
## 12124 Heterosexual (straight)              <NA>
## 12125                Bisexual              <NA>
## 12126 Heterosexual (straight)              <NA>
## 12127                Not sure              <NA>
## 12128 Heterosexual (straight)              <NA>
## 12129 Heterosexual (straight)              <NA>
## 12130 Heterosexual (straight)              <NA>
## 12131                Not sure              <NA>
## 12132 Heterosexual (straight)              <NA>
## 12133          Some other way              <NA>
## 12134 Heterosexual (straight)              <NA>
## 12135 Heterosexual (straight)              <NA>
## 12136          Gay or lesbian              <NA>
## 12137                Bisexual              <NA>
## 12138 Heterosexual (straight)              <NA>
## 12139 Heterosexual (straight)              <NA>
## 12140 Heterosexual (straight)              <NA>
## 12141 Heterosexual (straight)              <NA>
## 12142 Heterosexual (straight)              <NA>
## 12143 Heterosexual (straight)              <NA>
## 12144 Heterosexual (straight)              <NA>
## 12145 Heterosexual (straight)              <NA>
## 12146          Gay or lesbian              <NA>
## 12147 Heterosexual (straight)              <NA>
## 12148 Heterosexual (straight)              <NA>
## 12149 Heterosexual (straight)              <NA>
## 12150 Heterosexual (straight)              <NA>
## 12151 Heterosexual (straight)              <NA>
## 12152 Heterosexual (straight)              <NA>
## 12153          Gay or lesbian              <NA>
## 12154 Heterosexual (straight)              <NA>
## 12155 Heterosexual (straight)              <NA>
## 12156 Heterosexual (straight)              <NA>
## 12157 Heterosexual (straight)              <NA>
## 12158 Heterosexual (straight)              <NA>
## 12159          Gay or lesbian              <NA>
## 12160 Heterosexual (straight)              <NA>
## 12161 Heterosexual (straight)              <NA>
## 12162 Heterosexual (straight)              <NA>
## 12163                Not sure              <NA>
## 12164 Heterosexual (straight)              <NA>
## 12165                Bisexual              <NA>
## 12166                Bisexual              <NA>
## 12167 Heterosexual (straight)              <NA>
## 12168 Heterosexual (straight)              <NA>
## 12169 Heterosexual (straight)              <NA>
## 12170 Heterosexual (straight)              <NA>
## 12171 Heterosexual (straight)              <NA>
## 12172 Heterosexual (straight)              <NA>
## 12173 Heterosexual (straight)              <NA>
## 12174 Heterosexual (straight)              <NA>
## 12175 Heterosexual (straight)              <NA>
## 12176                Bisexual              <NA>
## 12177 Heterosexual (straight)              <NA>
## 12178          Gay or lesbian              <NA>
## 12179 Heterosexual (straight)              <NA>
## 12180          Some other way            Always
## 12181          Some other way            Rarely
## 12182          Some other way  Most of the time
## 12183 Heterosexual (straight)            Rarely
## 12184 Heterosexual (straight)         Sometimes
## 12185                Bisexual  Most of the time
## 12186 Heterosexual (straight)  Most of the time
## 12187 Heterosexual (straight)             Never
## 12188 Heterosexual (straight)         Sometimes
## 12189 Heterosexual (straight)  Most of the time
## 12190 Heterosexual (straight)         Sometimes
## 12191 Heterosexual (straight)  Most of the time
## 12192                Bisexual  Most of the time
## 12193 Heterosexual (straight)  Most of the time
## 12194 Heterosexual (straight)         Sometimes
## 12195                Bisexual  Most of the time
## 12196 Heterosexual (straight)  Most of the time
## 12197 Heterosexual (straight)         Sometimes
## 12198          Gay or lesbian         Sometimes
## 12199 Heterosexual (straight)            Rarely
## 12200                Bisexual            Rarely
## 12201 Heterosexual (straight)            Always
## 12202 Heterosexual (straight)  Most of the time
## 12203                Bisexual             Never
## 12204 Heterosexual (straight)            Rarely
## 12205          Some other way         Sometimes
## 12206 Heterosexual (straight)         Sometimes
## 12207                Bisexual         Sometimes
## 12208 Heterosexual (straight)             Never
## 12209 Heterosexual (straight)  Most of the time
## 12210 Heterosexual (straight)            Rarely
## 12211 Heterosexual (straight)  Most of the time
## 12212 Heterosexual (straight)            Rarely
## 12213 Heterosexual (straight)              <NA>
## 12214 Heterosexual (straight)  Most of the time
## 12215                Not sure            Always
## 12216          Some other way         Sometimes
## 12217 Heterosexual (straight)              <NA>
## 12218 Heterosexual (straight)  Most of the time
## 12219                Not sure         Sometimes
## 12220          Some other way            Always
## 12221 Heterosexual (straight)            Always
## 12222                Not sure         Sometimes
## 12223          Some other way            Always
## 12224 Heterosexual (straight)  Most of the time
## 12225                Bisexual         Sometimes
## 12226 Heterosexual (straight)            Always
## 12227                Bisexual         Sometimes
## 12228 Heterosexual (straight)         Sometimes
## 12229 Heterosexual (straight)             Never
## 12230 Heterosexual (straight)         Sometimes
## 12231                Bisexual            Rarely
## 12232 Heterosexual (straight)         Sometimes
## 12233 Heterosexual (straight)            Rarely
## 12234 Heterosexual (straight)  Most of the time
## 12235 Heterosexual (straight)            Rarely
## 12236 Heterosexual (straight)             Never
## 12237 Heterosexual (straight)         Sometimes
## 12238 Heterosexual (straight)            Always
## 12239 Heterosexual (straight)            Always
## 12240 Heterosexual (straight)             Never
## 12241 Heterosexual (straight)         Sometimes
## 12242 Heterosexual (straight)         Sometimes
## 12243 Heterosexual (straight)             Never
## 12244                Bisexual         Sometimes
## 12245 Heterosexual (straight)         Sometimes
## 12246 Heterosexual (straight)         Sometimes
## 12247 Heterosexual (straight)             Never
## 12248 Heterosexual (straight)              <NA>
## 12249                Bisexual         Sometimes
## 12250 Heterosexual (straight)         Sometimes
## 12251 Heterosexual (straight)         Sometimes
## 12252                Bisexual         Sometimes
## 12253 Heterosexual (straight)             Never
## 12254 Heterosexual (straight)         Sometimes
## 12255 Heterosexual (straight)            Always
## 12256 Heterosexual (straight)         Sometimes
## 12257 Heterosexual (straight)              <NA>
## 12258                Bisexual            Always
## 12259 Heterosexual (straight)         Sometimes
## 12260 Heterosexual (straight)             Never
## 12261 Heterosexual (straight)         Sometimes
## 12262 Heterosexual (straight)         Sometimes
## 12263                Not sure         Sometimes
## 12264 Heterosexual (straight)            Rarely
## 12265                Bisexual            Always
## 12266 Heterosexual (straight)         Sometimes
## 12267 Heterosexual (straight)         Sometimes
## 12268 Heterosexual (straight)         Sometimes
## 12269 Heterosexual (straight)         Sometimes
## 12270 Heterosexual (straight)         Sometimes
## 12271 Heterosexual (straight)            Rarely
## 12272 Heterosexual (straight)         Sometimes
## 12273 Heterosexual (straight)             Never
## 12274 Heterosexual (straight)            Rarely
## 12275 Heterosexual (straight)         Sometimes
## 12276 Heterosexual (straight)         Sometimes
## 12277 Heterosexual (straight)  Most of the time
## 12278                Bisexual         Sometimes
## 12279 Heterosexual (straight)         Sometimes
## 12280                Bisexual  Most of the time
## 12281 Heterosexual (straight)         Sometimes
## 12282          Some other way  Most of the time
## 12283                Not sure  Most of the time
## 12284 Heterosexual (straight)         Sometimes
## 12285 Heterosexual (straight)  Most of the time
## 12286                Bisexual         Sometimes
## 12287 Heterosexual (straight)         Sometimes
## 12288 Heterosexual (straight)            Rarely
## 12289                Bisexual  Most of the time
## 12290                Bisexual         Sometimes
## 12291                Bisexual            Rarely
## 12292 Heterosexual (straight)  Most of the time
## 12293 Heterosexual (straight)             Never
## 12294 Heterosexual (straight)            Rarely
## 12295 Heterosexual (straight)  Most of the time
## 12296                Bisexual  Most of the time
## 12297 Heterosexual (straight)             Never
## 12298          Gay or lesbian              <NA>
## 12299                Bisexual  Most of the time
## 12300          Some other way         Sometimes
## 12301 Heterosexual (straight)  Most of the time
## 12302 Heterosexual (straight)            Always
## 12303                Not sure  Most of the time
## 12304                Bisexual  Most of the time
## 12305 Heterosexual (straight)         Sometimes
## 12306                Not sure  Most of the time
## 12307 Heterosexual (straight)         Sometimes
## 12308                Bisexual            Rarely
## 12309 Heterosexual (straight)             Never
## 12310 Heterosexual (straight)            Rarely
## 12311          Gay or lesbian         Sometimes
## 12312                Bisexual         Sometimes
## 12313 Heterosexual (straight)         Sometimes
## 12314                Not sure  Most of the time
## 12315                Bisexual             Never
## 12316 Heterosexual (straight)  Most of the time
## 12317 Heterosexual (straight)            Always
## 12318 Heterosexual (straight)         Sometimes
## 12319 Heterosexual (straight)  Most of the time
## 12320 Heterosexual (straight)  Most of the time
## 12321 Heterosexual (straight)         Sometimes
## 12322 Heterosexual (straight)  Most of the time
## 12323 Heterosexual (straight)            Rarely
## 12324          Some other way            Always
## 12325 Heterosexual (straight)         Sometimes
## 12326 Heterosexual (straight)         Sometimes
## 12327 Heterosexual (straight)            Rarely
## 12328                Bisexual            Always
## 12329                Bisexual            Always
## 12330 Heterosexual (straight)         Sometimes
## 12331          Gay or lesbian  Most of the time
## 12332          Gay or lesbian  Most of the time
## 12333                Bisexual         Sometimes
## 12334                Bisexual         Sometimes
## 12335 Heterosexual (straight)         Sometimes
## 12336 Heterosexual (straight)            Rarely
## 12337                Bisexual  Most of the time
## 12338 Heterosexual (straight)         Sometimes
## 12339 Heterosexual (straight)  Most of the time
## 12340 Heterosexual (straight)            Rarely
## 12341 Heterosexual (straight)         Sometimes
## 12342 Heterosexual (straight)  Most of the time
## 12343 Heterosexual (straight)            Always
## 12344 Heterosexual (straight)         Sometimes
## 12345 Heterosexual (straight)         Sometimes
## 12346 Heterosexual (straight)         Sometimes
## 12347          Gay or lesbian            Always
## 12348 Heterosexual (straight)         Sometimes
## 12349 Heterosexual (straight)            Rarely
## 12350 Heterosexual (straight)            Rarely
## 12351 Heterosexual (straight)             Never
## 12352 Heterosexual (straight)  Most of the time
## 12353                Bisexual  Most of the time
## 12354 Heterosexual (straight)             Never
## 12355 Heterosexual (straight)            Rarely
## 12356 Heterosexual (straight)             Never
## 12357                Bisexual            Always
## 12358 Heterosexual (straight)         Sometimes
## 12359 Heterosexual (straight)         Sometimes
## 12360          Some other way  Most of the time
## 12361 Heterosexual (straight)            Rarely
## 12362 Heterosexual (straight)            Always
## 12363 Heterosexual (straight)  Most of the time
## 12364 Heterosexual (straight)             Never
## 12365                Bisexual  Most of the time
## 12366                Not sure  Most of the time
## 12367                Not sure  Most of the time
## 12368 Heterosexual (straight)            Always
## 12369          Gay or lesbian         Sometimes
## 12370 Heterosexual (straight)         Sometimes
## 12371                Bisexual         Sometimes
## 12372                Not sure  Most of the time
## 12373 Heterosexual (straight)             Never
## 12374 Heterosexual (straight)         Sometimes
## 12375 Heterosexual (straight)         Sometimes
## 12376 Heterosexual (straight)            Always
## 12377 Heterosexual (straight)         Sometimes
## 12378                Bisexual         Sometimes
## 12379                Bisexual  Most of the time
## 12380 Heterosexual (straight)  Most of the time
## 12381                Bisexual  Most of the time
## 12382 Heterosexual (straight)  Most of the time
## 12383                Bisexual         Sometimes
## 12384 Heterosexual (straight)         Sometimes
## 12385 Heterosexual (straight)            Always
## 12386 Heterosexual (straight)  Most of the time
## 12387 Heterosexual (straight)            Rarely
## 12388 Heterosexual (straight)              <NA>
## 12389 Heterosexual (straight)         Sometimes
## 12390 Heterosexual (straight)             Never
## 12391 Heterosexual (straight)         Sometimes
## 12392                Not sure            Always
## 12393 Heterosexual (straight)             Never
## 12394                Bisexual              <NA>
## 12395 Heterosexual (straight)  Most of the time
## 12396                Bisexual  Most of the time
## 12397                Bisexual         Sometimes
## 12398                Not sure            Rarely
## 12399 Heterosexual (straight)         Sometimes
## 12400 Heterosexual (straight)            Always
## 12401                Bisexual            Always
## 12402 Heterosexual (straight)            Rarely
## 12403                Bisexual            Rarely
## 12404 Heterosexual (straight)         Sometimes
## 12405 Heterosexual (straight)         Sometimes
## 12406 Heterosexual (straight)             Never
## 12407                Bisexual            Always
## 12408 Heterosexual (straight)            Always
## 12409                Not sure            Always
## 12410 Heterosexual (straight)            Rarely
## 12411                Bisexual  Most of the time
## 12412 Heterosexual (straight)         Sometimes
## 12413                Not sure  Most of the time
## 12414 Heterosexual (straight)            Rarely
## 12415 Heterosexual (straight)         Sometimes
## 12416 Heterosexual (straight)         Sometimes
## 12417 Heterosexual (straight)            Rarely
## 12418 Heterosexual (straight)            Rarely
## 12419 Heterosexual (straight)  Most of the time
## 12420          Some other way  Most of the time
## 12421 Heterosexual (straight)            Always
## 12422 Heterosexual (straight)            Rarely
## 12423 Heterosexual (straight)         Sometimes
## 12424 Heterosexual (straight)            Rarely
## 12425 Heterosexual (straight)             Never
## 12426 Heterosexual (straight)         Sometimes
## 12427                Bisexual         Sometimes
## 12428 Heterosexual (straight)  Most of the time
## 12429                Bisexual  Most of the time
## 12430 Heterosexual (straight)         Sometimes
## 12431                Bisexual  Most of the time
## 12432                Not sure  Most of the time
## 12433 Heterosexual (straight)  Most of the time
## 12434 Heterosexual (straight)            Rarely
## 12435 Heterosexual (straight)            Rarely
## 12436          Gay or lesbian         Sometimes
## 12437                Bisexual         Sometimes
## 12438 Heterosexual (straight)  Most of the time
## 12439 Heterosexual (straight)  Most of the time
## 12440 Heterosexual (straight)         Sometimes
## 12441 Heterosexual (straight)         Sometimes
## 12442                Bisexual  Most of the time
## 12443 Heterosexual (straight)         Sometimes
## 12444                Bisexual         Sometimes
## 12445 Heterosexual (straight)  Most of the time
## 12446 Heterosexual (straight)         Sometimes
## 12447 Heterosexual (straight)            Rarely
## 12448 Heterosexual (straight)  Most of the time
## 12449 Heterosexual (straight)  Most of the time
## 12450                Bisexual            Always
## 12451 Heterosexual (straight)              <NA>
## 12452 Heterosexual (straight)            Rarely
## 12453 Heterosexual (straight)            Rarely
## 12454 Heterosexual (straight)  Most of the time
## 12455          Some other way         Sometimes
## 12456 Heterosexual (straight)  Most of the time
## 12457                Not sure            Always
## 12458                Bisexual         Sometimes
## 12459 Heterosexual (straight)            Always
## 12460                Bisexual  Most of the time
## 12461 Heterosexual (straight)            Always
## 12462 Heterosexual (straight)         Sometimes
## 12463                Bisexual  Most of the time
## 12464 Heterosexual (straight)            Rarely
## 12465                Bisexual  Most of the time
## 12466                Bisexual              <NA>
## 12467 Heterosexual (straight)         Sometimes
## 12468                Bisexual            Always
## 12469                Bisexual  Most of the time
## 12470 Heterosexual (straight)         Sometimes
## 12471 Heterosexual (straight)            Rarely
## 12472 Heterosexual (straight)         Sometimes
## 12473 Heterosexual (straight)             Never
## 12474 Heterosexual (straight)  Most of the time
## 12475 Heterosexual (straight)  Most of the time
## 12476                Bisexual            Rarely
## 12477          Gay or lesbian            Always
## 12478 Heterosexual (straight)  Most of the time
## 12479 Heterosexual (straight)             Never
## 12480                Bisexual            Rarely
## 12481 Heterosexual (straight)            Always
## 12482 Heterosexual (straight)         Sometimes
## 12483 Heterosexual (straight)         Sometimes
## 12484 Heterosexual (straight)            Rarely
## 12485                Bisexual  Most of the time
## 12486          Gay or lesbian  Most of the time
## 12487 Heterosexual (straight)            Rarely
## 12488 Heterosexual (straight)            Always
## 12489          Gay or lesbian  Most of the time
## 12490                Bisexual  Most of the time
## 12491          Some other way         Sometimes
## 12492 Heterosexual (straight)            Rarely
## 12493          Gay or lesbian         Sometimes
## 12494 Heterosexual (straight)            Rarely
## 12495 Heterosexual (straight)         Sometimes
## 12496 Heterosexual (straight)  Most of the time
## 12497                Bisexual             Never
## 12498 Heterosexual (straight)  Most of the time
## 12499          Gay or lesbian            Always
## 12500 Heterosexual (straight)         Sometimes
## 12501 Heterosexual (straight)         Sometimes
## 12502 Heterosexual (straight)             Never
## 12503 Heterosexual (straight)  Most of the time
## 12504 Heterosexual (straight)         Sometimes
## 12505 Heterosexual (straight)  Most of the time
## 12506 Heterosexual (straight)  Most of the time
## 12507                Bisexual         Sometimes
## 12508          Some other way            Always
## 12509 Heterosexual (straight)         Sometimes
## 12510 Heterosexual (straight)            Rarely
## 12511 Heterosexual (straight)  Most of the time
## 12512          Some other way  Most of the time
## 12513 Heterosexual (straight)            Always
## 12514 Heterosexual (straight)         Sometimes
## 12515                Bisexual  Most of the time
## 12516 Heterosexual (straight)            Always
## 12517 Heterosexual (straight)  Most of the time
## 12518 Heterosexual (straight)            Rarely
## 12519                Not sure         Sometimes
## 12520          Some other way            Always
## 12521 Heterosexual (straight)         Sometimes
## 12522                Not sure  Most of the time
## 12523 Heterosexual (straight)  Most of the time
## 12524                Bisexual  Most of the time
## 12525 Heterosexual (straight)  Most of the time
## 12526 Heterosexual (straight)         Sometimes
## 12527 Heterosexual (straight)  Most of the time
## 12528 Heterosexual (straight)  Most of the time
## 12529 Heterosexual (straight)  Most of the time
## 12530                Bisexual            Rarely
## 12531 Heterosexual (straight)  Most of the time
## 12532 Heterosexual (straight)  Most of the time
## 12533                Bisexual         Sometimes
## 12534                Bisexual  Most of the time
## 12535                Not sure  Most of the time
## 12536          Some other way         Sometimes
## 12537 Heterosexual (straight)             Never
## 12538 Heterosexual (straight)         Sometimes
## 12539 Heterosexual (straight)            Rarely
## 12540 Heterosexual (straight)         Sometimes
## 12541                Bisexual            Always
## 12542 Heterosexual (straight)         Sometimes
## 12543 Heterosexual (straight)  Most of the time
## 12544 Heterosexual (straight)         Sometimes
## 12545 Heterosexual (straight)         Sometimes
## 12546                Bisexual  Most of the time
## 12547          Some other way  Most of the time
## 12548 Heterosexual (straight)         Sometimes
## 12549 Heterosexual (straight)            Always
## 12550 Heterosexual (straight)             Never
## 12551 Heterosexual (straight)            Rarely
## 12552                Bisexual  Most of the time
## 12553          Some other way  Most of the time
## 12554                Bisexual  Most of the time
## 12555 Heterosexual (straight)            Rarely
## 12556 Heterosexual (straight)             Never
## 12557                Not sure  Most of the time
## 12558          Some other way            Always
## 12559 Heterosexual (straight)         Sometimes
## 12560 Heterosexual (straight)         Sometimes
## 12561          Gay or lesbian         Sometimes
## 12562 Heterosexual (straight)         Sometimes
## 12563 Heterosexual (straight)         Sometimes
## 12564 Heterosexual (straight)  Most of the time
## 12565                Not sure              <NA>
## 12566                Bisexual  Most of the time
## 12567                Bisexual  Most of the time
## 12568 Heterosexual (straight)             Never
## 12569 Heterosexual (straight)  Most of the time
## 12570 Heterosexual (straight)            Always
## 12571 Heterosexual (straight)         Sometimes
## 12572 Heterosexual (straight)         Sometimes
## 12573                Bisexual         Sometimes
## 12574                Not sure            Rarely
## 12575 Heterosexual (straight)         Sometimes
## 12576 Heterosexual (straight)         Sometimes
## 12577          Some other way              <NA>
## 12578                Not sure  Most of the time
## 12579 Heterosexual (straight)  Most of the time
## 12580 Heterosexual (straight)         Sometimes
## 12581 Heterosexual (straight)            Always
## 12582 Heterosexual (straight)         Sometimes
## 12583 Heterosexual (straight)         Sometimes
## 12584                Bisexual  Most of the time
## 12585 Heterosexual (straight)         Sometimes
## 12586 Heterosexual (straight)  Most of the time
## 12587 Heterosexual (straight)             Never
## 12588                Bisexual            Always
## 12589 Heterosexual (straight)         Sometimes
## 12590 Heterosexual (straight)         Sometimes
## 12591 Heterosexual (straight)            Rarely
## 12592                Bisexual  Most of the time
## 12593 Heterosexual (straight)  Most of the time
## 12594 Heterosexual (straight)         Sometimes
## 12595 Heterosexual (straight)         Sometimes
## 12596                Bisexual         Sometimes
## 12597 Heterosexual (straight)            Rarely
## 12598                Bisexual            Always
## 12599 Heterosexual (straight)  Most of the time
## 12600                Bisexual         Sometimes
## 12601                Bisexual  Most of the time
## 12602 Heterosexual (straight)  Most of the time
## 12603 Heterosexual (straight)  Most of the time
## 12604 Heterosexual (straight)            Rarely
## 12605 Heterosexual (straight)  Most of the time
## 12606                Bisexual  Most of the time
## 12607                Bisexual            Always
## 12608 Heterosexual (straight)            Rarely
## 12609                Not sure         Sometimes
## 12610 Heterosexual (straight)             Never
## 12611          Gay or lesbian         Sometimes
## 12612 Heterosexual (straight)             Never
## 12613 Heterosexual (straight)         Sometimes
## 12614                Bisexual             Never
## 12615                Not sure         Sometimes
## 12616 Heterosexual (straight)         Sometimes
## 12617 Heterosexual (straight)            Rarely
## 12618 Heterosexual (straight)  Most of the time
## 12619 Heterosexual (straight)  Most of the time
## 12620 Heterosexual (straight)            Rarely
## 12621 Heterosexual (straight)         Sometimes
## 12622                Bisexual             Never
## 12623                Bisexual            Rarely
## 12624                Not sure            Rarely
## 12625 Heterosexual (straight)         Sometimes
## 12626 Heterosexual (straight)              <NA>
## 12627 Heterosexual (straight)            Always
## 12628 Heterosexual (straight)             Never
## 12629 Heterosexual (straight)  Most of the time
## 12630                Not sure            Rarely
## 12631 Heterosexual (straight)         Sometimes
## 12632 Heterosexual (straight)            Rarely
## 12633 Heterosexual (straight)             Never
## 12634 Heterosexual (straight)            Rarely
## 12635 Heterosexual (straight)            Rarely
## 12636 Heterosexual (straight)  Most of the time
## 12637 Heterosexual (straight)            Rarely
## 12638 Heterosexual (straight)            Rarely
## 12639 Heterosexual (straight)             Never
## 12640                Bisexual             Never
## 12641 Heterosexual (straight)         Sometimes
## 12642 Heterosexual (straight)             Never
## 12643                Bisexual         Sometimes
## 12644 Heterosexual (straight)            Rarely
## 12645 Heterosexual (straight)         Sometimes
## 12646 Heterosexual (straight)         Sometimes
## 12647 Heterosexual (straight)             Never
## 12648 Heterosexual (straight)  Most of the time
## 12649 Heterosexual (straight)         Sometimes
## 12650 Heterosexual (straight)         Sometimes
## 12651                Bisexual         Sometimes
## 12652 Heterosexual (straight)             Never
## 12653          Gay or lesbian         Sometimes
## 12654 Heterosexual (straight)         Sometimes
## 12655                Bisexual         Sometimes
## 12656                Bisexual            Always
## 12657 Heterosexual (straight)            Rarely
## 12658                Not sure             Never
## 12659 Heterosexual (straight)  Most of the time
## 12660                Bisexual  Most of the time
## 12661                Not sure            Always
## 12662 Heterosexual (straight)             Never
## 12663 Heterosexual (straight)             Never
## 12664 Heterosexual (straight)  Most of the time
## 12665 Heterosexual (straight)  Most of the time
## 12666                Bisexual  Most of the time
## 12667 Heterosexual (straight)             Never
## 12668 Heterosexual (straight)         Sometimes
## 12669 Heterosexual (straight)            Rarely
## 12670 Heterosexual (straight)         Sometimes
## 12671          Some other way         Sometimes
## 12672 Heterosexual (straight)  Most of the time
## 12673          Some other way            Always
## 12674                Bisexual         Sometimes
## 12675 Heterosexual (straight)            Rarely
## 12676 Heterosexual (straight)         Sometimes
## 12677 Heterosexual (straight)         Sometimes
## 12678          Some other way            Always
## 12679 Heterosexual (straight)         Sometimes
## 12680 Heterosexual (straight)         Sometimes
## 12681                Bisexual         Sometimes
## 12682                Bisexual  Most of the time
## 12683 Heterosexual (straight)  Most of the time
## 12684          Some other way         Sometimes
## 12685                Bisexual            Rarely
## 12686                Not sure         Sometimes
## 12687 Heterosexual (straight)         Sometimes
## 12688          Some other way            Always
## 12689 Heterosexual (straight)  Most of the time
## 12690                Bisexual         Sometimes
## 12691 Heterosexual (straight)            Rarely
## 12692 Heterosexual (straight)         Sometimes
## 12693                Bisexual         Sometimes
## 12694 Heterosexual (straight)            Rarely
## 12695 Heterosexual (straight)         Sometimes
## 12696 Heterosexual (straight)         Sometimes
## 12697 Heterosexual (straight)            Rarely
## 12698 Heterosexual (straight)         Sometimes
## 12699 Heterosexual (straight)            Rarely
## 12700 Heterosexual (straight)         Sometimes
## 12701 Heterosexual (straight)         Sometimes
## 12702 Heterosexual (straight)         Sometimes
## 12703 Heterosexual (straight)            Rarely
## 12704 Heterosexual (straight)  Most of the time
## 12705                Bisexual  Most of the time
## 12706                Bisexual            Rarely
## 12707                Bisexual         Sometimes
## 12708          Gay or lesbian         Sometimes
## 12709 Heterosexual (straight)            Always
## 12710                Bisexual              <NA>
## 12711 Heterosexual (straight)            Rarely
## 12712 Heterosexual (straight)         Sometimes
## 12713 Heterosexual (straight)            Rarely
## 12714          Gay or lesbian             Never
## 12715 Heterosexual (straight)         Sometimes
## 12716 Heterosexual (straight)            Rarely
## 12717 Heterosexual (straight)            Rarely
## 12718 Heterosexual (straight)            Always
## 12719                Not sure  Most of the time
## 12720 Heterosexual (straight)            Rarely
## 12721 Heterosexual (straight)            Rarely
## 12722 Heterosexual (straight)            Always
## 12723 Heterosexual (straight)         Sometimes
## 12724 Heterosexual (straight)            Always
## 12725                Bisexual             Never
## 12726 Heterosexual (straight)         Sometimes
## 12727 Heterosexual (straight)  Most of the time
## 12728                Bisexual            Always
## 12729                Bisexual  Most of the time
## 12730 Heterosexual (straight)            Always
## 12731 Heterosexual (straight)            Always
## 12732 Heterosexual (straight)             Never
## 12733                Bisexual            Rarely
## 12734 Heterosexual (straight)  Most of the time
## 12735          Gay or lesbian  Most of the time
## 12736                Not sure            Always
## 12737                Bisexual         Sometimes
## 12738          Gay or lesbian            Always
## 12739 Heterosexual (straight)            Rarely
## 12740 Heterosexual (straight)            Rarely
## 12741 Heterosexual (straight)         Sometimes
## 12742 Heterosexual (straight)  Most of the time
## 12743                Bisexual            Always
## 12744          Gay or lesbian            Always
## 12745 Heterosexual (straight)  Most of the time
## 12746 Heterosexual (straight)         Sometimes
## 12747 Heterosexual (straight)            Rarely
## 12748 Heterosexual (straight)             Never
## 12749 Heterosexual (straight)            Rarely
## 12750 Heterosexual (straight)              <NA>
## 12751 Heterosexual (straight)  Most of the time
## 12752                Bisexual         Sometimes
## 12753 Heterosexual (straight)            Rarely
## 12754                Bisexual  Most of the time
## 12755                Bisexual  Most of the time
## 12756 Heterosexual (straight)             Never
## 12757 Heterosexual (straight)         Sometimes
## 12758 Heterosexual (straight)  Most of the time
## 12759 Heterosexual (straight)         Sometimes
## 12760                Not sure            Rarely
## 12761                Not sure  Most of the time
## 12762 Heterosexual (straight)            Rarely
## 12763                Bisexual            Always
## 12764 Heterosexual (straight)         Sometimes
## 12765 Heterosexual (straight)             Never
## 12766                Not sure            Rarely
## 12767                Not sure         Sometimes
## 12768                Bisexual  Most of the time
## 12769 Heterosexual (straight)  Most of the time
## 12770 Heterosexual (straight)  Most of the time
## 12771 Heterosexual (straight)         Sometimes
## 12772                Bisexual            Always
## 12773 Heterosexual (straight)            Always
## 12774                Bisexual         Sometimes
## 12775 Heterosexual (straight)         Sometimes
## 12776 Heterosexual (straight)  Most of the time
## 12777 Heterosexual (straight)            Rarely
## 12778          Gay or lesbian         Sometimes
## 12779          Gay or lesbian  Most of the time
## 12780 Heterosexual (straight)         Sometimes
## 12781 Heterosexual (straight)         Sometimes
## 12782          Some other way             Never
## 12783                Bisexual  Most of the time
## 12784 Heterosexual (straight)         Sometimes
## 12785 Heterosexual (straight)  Most of the time
## 12786                Bisexual         Sometimes
## 12787 Heterosexual (straight)             Never
## 12788 Heterosexual (straight)             Never
## 12789 Heterosexual (straight)  Most of the time
## 12790 Heterosexual (straight)         Sometimes
## 12791 Heterosexual (straight)  Most of the time
## 12792                Bisexual  Most of the time
## 12793 Heterosexual (straight)         Sometimes
## 12794 Heterosexual (straight)            Rarely
## 12795 Heterosexual (straight)         Sometimes
## 12796                Bisexual            Always
## 12797 Heterosexual (straight)             Never
## 12798 Heterosexual (straight)         Sometimes
## 12799 Heterosexual (straight)             Never
## 12800 Heterosexual (straight)  Most of the time
## 12801 Heterosexual (straight)  Most of the time
## 12802 Heterosexual (straight)  Most of the time
## 12803 Heterosexual (straight)         Sometimes
## 12804 Heterosexual (straight)            Always
## 12805                Bisexual  Most of the time
## 12806 Heterosexual (straight)  Most of the time
## 12807 Heterosexual (straight)         Sometimes
## 12808                Bisexual  Most of the time
## 12809 Heterosexual (straight)  Most of the time
## 12810 Heterosexual (straight)             Never
## 12811 Heterosexual (straight)  Most of the time
## 12812          Gay or lesbian  Most of the time
## 12813 Heterosexual (straight)         Sometimes
## 12814                Not sure  Most of the time
## 12815                Not sure  Most of the time
## 12816 Heterosexual (straight)  Most of the time
## 12817 Heterosexual (straight)             Never
## 12818                Bisexual  Most of the time
## 12819 Heterosexual (straight)  Most of the time
## 12820 Heterosexual (straight)         Sometimes
## 12821                Bisexual  Most of the time
## 12822 Heterosexual (straight)             Never
## 12823                Bisexual  Most of the time
## 12824 Heterosexual (straight)            Rarely
## 12825 Heterosexual (straight)             Never
## 12826 Heterosexual (straight)            Rarely
## 12827 Heterosexual (straight)  Most of the time
## 12828 Heterosexual (straight)            Rarely
## 12829          Some other way         Sometimes
## 12830 Heterosexual (straight)              <NA>
## 12831                Not sure            Always
## 12832 Heterosexual (straight)            Rarely
## 12833          Some other way  Most of the time
## 12834 Heterosexual (straight)  Most of the time
## 12835                Bisexual         Sometimes
## 12836          Gay or lesbian  Most of the time
## 12837 Heterosexual (straight)  Most of the time
## 12838                Bisexual  Most of the time
## 12839 Heterosexual (straight)            Rarely
## 12840 Heterosexual (straight)  Most of the time
## 12841 Heterosexual (straight)         Sometimes
## 12842                Not sure  Most of the time
## 12843 Heterosexual (straight)             Never
## 12844                Bisexual             Never
## 12845 Heterosexual (straight)             Never
## 12846          Gay or lesbian            Rarely
## 12847 Heterosexual (straight)            Always
## 12848 Heterosexual (straight)         Sometimes
## 12849 Heterosexual (straight)         Sometimes
## 12850 Heterosexual (straight)  Most of the time
## 12851 Heterosexual (straight)  Most of the time
## 12852 Heterosexual (straight)         Sometimes
## 12853 Heterosexual (straight)         Sometimes
## 12854 Heterosexual (straight)  Most of the time
## 12855 Heterosexual (straight)         Sometimes
## 12856 Heterosexual (straight)            Rarely
## 12857                Bisexual         Sometimes
## 12858 Heterosexual (straight)            Always
## 12859 Heterosexual (straight)  Most of the time
## 12860 Heterosexual (straight)             Never
## 12861          Some other way  Most of the time
## 12862 Heterosexual (straight)         Sometimes
## 12863 Heterosexual (straight)  Most of the time
## 12864 Heterosexual (straight)            Rarely
## 12865 Heterosexual (straight)            Always
## 12866                Bisexual  Most of the time
## 12867                Not sure         Sometimes
## 12868 Heterosexual (straight)            Rarely
## 12869 Heterosexual (straight)  Most of the time
## 12870 Heterosexual (straight)         Sometimes
## 12871 Heterosexual (straight)             Never
## 12872 Heterosexual (straight)         Sometimes
## 12873 Heterosexual (straight)            Rarely
## 12874          Gay or lesbian  Most of the time
## 12875                Bisexual         Sometimes
## 12876                Bisexual         Sometimes
## 12877 Heterosexual (straight)  Most of the time
## 12878 Heterosexual (straight)         Sometimes
## 12879 Heterosexual (straight)            Rarely
## 12880 Heterosexual (straight)            Rarely
## 12881 Heterosexual (straight)            Always
## 12882                Bisexual  Most of the time
## 12883 Heterosexual (straight)            Rarely
## 12884 Heterosexual (straight)         Sometimes
## 12885 Heterosexual (straight)            Rarely
## 12886 Heterosexual (straight)  Most of the time
## 12887 Heterosexual (straight)            Always
## 12888 Heterosexual (straight)         Sometimes
## 12889 Heterosexual (straight)  Most of the time
## 12890 Heterosexual (straight)            Rarely
## 12891          Some other way            Rarely
## 12892 Heterosexual (straight)  Most of the time
## 12893                Not sure         Sometimes
## 12894 Heterosexual (straight)  Most of the time
## 12895                Bisexual  Most of the time
## 12896 Heterosexual (straight)         Sometimes
## 12897          Some other way  Most of the time
## 12898                Bisexual  Most of the time
## 12899          Gay or lesbian         Sometimes
## 12900 Heterosexual (straight)            Always
## 12901 Heterosexual (straight)         Sometimes
## 12902 Heterosexual (straight)  Most of the time
## 12903 Heterosexual (straight)            Rarely
## 12904 Heterosexual (straight)            Always
## 12905                Bisexual             Never
## 12906 Heterosexual (straight)  Most of the time
## 12907          Some other way  Most of the time
## 12908 Heterosexual (straight)         Sometimes
## 12909 Heterosexual (straight)         Sometimes
## 12910 Heterosexual (straight)            Always
## 12911 Heterosexual (straight)            Rarely
## 12912 Heterosexual (straight)             Never
## 12913 Heterosexual (straight)         Sometimes
## 12914 Heterosexual (straight)  Most of the time
## 12915 Heterosexual (straight)  Most of the time
## 12916 Heterosexual (straight)            Rarely
## 12917          Some other way            Rarely
## 12918 Heterosexual (straight)            Rarely
## 12919                Bisexual  Most of the time
## 12920 Heterosexual (straight)         Sometimes
## 12921 Heterosexual (straight)             Never
## 12922 Heterosexual (straight)             Never
## 12923 Heterosexual (straight)             Never
## 12924 Heterosexual (straight)         Sometimes
## 12925 Heterosexual (straight)            Rarely
## 12926          Some other way         Sometimes
## 12927          Some other way              <NA>
## 12928                Bisexual         Sometimes
## 12929          Some other way  Most of the time
## 12930          Some other way  Most of the time
## 12931                Bisexual  Most of the time
## 12932 Heterosexual (straight)  Most of the time
## 12933 Heterosexual (straight)  Most of the time
## 12934 Heterosexual (straight)  Most of the time
## 12935 Heterosexual (straight)            Always
## 12936          Some other way         Sometimes
## 12937 Heterosexual (straight)  Most of the time
## 12938 Heterosexual (straight)  Most of the time
## 12939 Heterosexual (straight)             Never
## 12940                Not sure         Sometimes
## 12941 Heterosexual (straight)         Sometimes
## 12942 Heterosexual (straight)            Rarely
## 12943                Bisexual            Always
## 12944 Heterosexual (straight)            Always
## 12945 Heterosexual (straight)            Rarely
## 12946 Heterosexual (straight)         Sometimes
## 12947 Heterosexual (straight)            Rarely
## 12948 Heterosexual (straight)            Always
## 12949 Heterosexual (straight)         Sometimes
## 12950 Heterosexual (straight)         Sometimes
## 12951 Heterosexual (straight)         Sometimes
## 12952 Heterosexual (straight)         Sometimes
## 12953 Heterosexual (straight)            Always
## 12954 Heterosexual (straight)  Most of the time
## 12955 Heterosexual (straight)         Sometimes
## 12956 Heterosexual (straight)         Sometimes
## 12957 Heterosexual (straight)         Sometimes
## 12958                Bisexual  Most of the time
## 12959 Heterosexual (straight)            Rarely
## 12960 Heterosexual (straight)            Rarely
## 12961 Heterosexual (straight)         Sometimes
## 12962 Heterosexual (straight)  Most of the time
## 12963 Heterosexual (straight)         Sometimes
## 12964 Heterosexual (straight)            Rarely
## 12965 Heterosexual (straight)            Rarely
## 12966 Heterosexual (straight)  Most of the time
## 12967 Heterosexual (straight)             Never
## 12968 Heterosexual (straight)  Most of the time
## 12969                Bisexual  Most of the time
## 12970                Bisexual         Sometimes
## 12971                Bisexual         Sometimes
## 12972                Bisexual         Sometimes
## 12973 Heterosexual (straight)             Never
## 12974 Heterosexual (straight)             Never
## 12975          Some other way  Most of the time
## 12976                Bisexual  Most of the time
## 12977 Heterosexual (straight)            Always
## 12978 Heterosexual (straight)            Rarely
## 12979 Heterosexual (straight)             Never
## 12980 Heterosexual (straight)            Always
## 12981 Heterosexual (straight)            Always
## 12982 Heterosexual (straight)             Never
## 12983                Bisexual         Sometimes
## 12984 Heterosexual (straight)         Sometimes
## 12985 Heterosexual (straight)  Most of the time
## 12986 Heterosexual (straight)         Sometimes
## 12987                Bisexual            Rarely
## 12988 Heterosexual (straight)            Always
## 12989 Heterosexual (straight)            Rarely
## 12990                Not sure            Rarely
## 12991          Gay or lesbian            Rarely
## 12992 Heterosexual (straight)             Never
## 12993                Bisexual         Sometimes
## 12994 Heterosexual (straight)            Rarely
## 12995 Heterosexual (straight)            Rarely
## 12996 Heterosexual (straight)             Never
## 12997                Bisexual  Most of the time
## 12998                Bisexual         Sometimes
## 12999 Heterosexual (straight)            Rarely
## 13000 Heterosexual (straight)         Sometimes
## 13001 Heterosexual (straight)             Never
## 13002 Heterosexual (straight)            Rarely
## 13003 Heterosexual (straight)            Rarely
## 13004                Bisexual  Most of the time
## 13005          Gay or lesbian  Most of the time
## 13006                Bisexual         Sometimes
## 13007 Heterosexual (straight)              <NA>
## 13008 Heterosexual (straight)         Sometimes
## 13009 Heterosexual (straight)             Never
## 13010 Heterosexual (straight)            Rarely
## 13011 Heterosexual (straight)            Always
## 13012 Heterosexual (straight)            Rarely
## 13013                Bisexual  Most of the time
## 13014 Heterosexual (straight)  Most of the time
## 13015                Bisexual         Sometimes
## 13016 Heterosexual (straight)         Sometimes
## 13017 Heterosexual (straight)         Sometimes
## 13018 Heterosexual (straight)            Rarely
## 13019                Not sure            Rarely
## 13020 Heterosexual (straight)            Always
## 13021          Gay or lesbian         Sometimes
## 13022                Bisexual         Sometimes
## 13023                Bisexual            Always
## 13024                Bisexual         Sometimes
## 13025 Heterosexual (straight)         Sometimes
## 13026 Heterosexual (straight)         Sometimes
## 13027 Heterosexual (straight)            Rarely
## 13028                Bisexual  Most of the time
## 13029 Heterosexual (straight)  Most of the time
## 13030 Heterosexual (straight)            Rarely
## 13031 Heterosexual (straight)             Never
## 13032 Heterosexual (straight)             Never
## 13033 Heterosexual (straight)  Most of the time
## 13034                Not sure  Most of the time
## 13035                Not sure         Sometimes
## 13036                Not sure              <NA>
## 13037                Bisexual  Most of the time
## 13038 Heterosexual (straight)  Most of the time
## 13039 Heterosexual (straight)            Rarely
## 13040 Heterosexual (straight)             Never
## 13041 Heterosexual (straight)  Most of the time
## 13042 Heterosexual (straight)             Never
## 13043                Bisexual  Most of the time
## 13044                Bisexual         Sometimes
## 13045                Not sure         Sometimes
## 13046 Heterosexual (straight)  Most of the time
## 13047 Heterosexual (straight)         Sometimes
## 13048                Not sure             Never
## 13049 Heterosexual (straight)            Always
## 13050 Heterosexual (straight)         Sometimes
## 13051 Heterosexual (straight)            Always
## 13052          Gay or lesbian  Most of the time
## 13053 Heterosexual (straight)         Sometimes
## 13054 Heterosexual (straight)            Always
## 13055 Heterosexual (straight)         Sometimes
## 13056                Bisexual         Sometimes
## 13057 Heterosexual (straight)            Rarely
## 13058                Bisexual            Always
## 13059          Some other way            Always
## 13060 Heterosexual (straight)             Never
## 13061 Heterosexual (straight)            Rarely
## 13062 Heterosexual (straight)         Sometimes
## 13063                Bisexual  Most of the time
## 13064                Bisexual              <NA>
## 13065 Heterosexual (straight)            Always
## 13066 Heterosexual (straight)         Sometimes
## 13067 Heterosexual (straight)         Sometimes
## 13068          Gay or lesbian  Most of the time
## 13069                Bisexual            Always
## 13070 Heterosexual (straight)             Never
## 13071 Heterosexual (straight)  Most of the time
## 13072          Some other way  Most of the time
## 13073                Bisexual            Always
## 13074 Heterosexual (straight)  Most of the time
## 13075          Some other way  Most of the time
## 13076          Some other way  Most of the time
## 13077                Bisexual            Always
## 13078 Heterosexual (straight)            Always
## 13079 Heterosexual (straight)  Most of the time
## 13080 Heterosexual (straight)             Never
## 13081 Heterosexual (straight)         Sometimes
## 13082 Heterosexual (straight)            Always
## 13083 Heterosexual (straight)         Sometimes
## 13084 Heterosexual (straight)  Most of the time
## 13085                Bisexual         Sometimes
## 13086                Bisexual            Always
## 13087                Bisexual         Sometimes
## 13088                Bisexual  Most of the time
## 13089 Heterosexual (straight)  Most of the time
## 13090 Heterosexual (straight)            Always
## 13091 Heterosexual (straight)             Never
## 13092          Some other way  Most of the time
## 13093 Heterosexual (straight)              <NA>
## 13094 Heterosexual (straight)  Most of the time
## 13095          Some other way  Most of the time
## 13096 Heterosexual (straight)  Most of the time
## 13097 Heterosexual (straight)             Never
## 13098 Heterosexual (straight)         Sometimes
## 13099 Heterosexual (straight)  Most of the time
## 13100                Not sure            Always
## 13101 Heterosexual (straight)  Most of the time
## 13102          Some other way  Most of the time
## 13103                Bisexual  Most of the time
## 13104 Heterosexual (straight)         Sometimes
## 13105 Heterosexual (straight)         Sometimes
## 13106 Heterosexual (straight)  Most of the time
## 13107 Heterosexual (straight)         Sometimes
## 13108                Bisexual         Sometimes
## 13109                Not sure            Rarely
## 13110                Bisexual             Never
## 13111                Not sure  Most of the time
## 13112 Heterosexual (straight)            Rarely
## 13113                Bisexual  Most of the time
## 13114 Heterosexual (straight)         Sometimes
## 13115 Heterosexual (straight)            Always
## 13116 Heterosexual (straight)  Most of the time
## 13117 Heterosexual (straight)         Sometimes
## 13118                Not sure         Sometimes
## 13119 Heterosexual (straight)  Most of the time
## 13120          Some other way  Most of the time
## 13121 Heterosexual (straight)            Rarely
## 13122 Heterosexual (straight)            Rarely
## 13123 Heterosexual (straight)  Most of the time
## 13124 Heterosexual (straight)  Most of the time
## 13125 Heterosexual (straight)            Always
## 13126 Heterosexual (straight)         Sometimes
## 13127 Heterosexual (straight)  Most of the time
## 13128                Bisexual         Sometimes
## 13129 Heterosexual (straight)            Rarely
## 13130 Heterosexual (straight)            Rarely
## 13131 Heterosexual (straight)            Rarely
## 13132                Not sure         Sometimes
## 13133                Bisexual            Rarely
## 13134          Some other way         Sometimes
## 13135 Heterosexual (straight)  Most of the time
## 13136                Bisexual            Rarely
## 13137 Heterosexual (straight)  Most of the time
## 13138 Heterosexual (straight)         Sometimes
## 13139 Heterosexual (straight)            Rarely
## 13140                Bisexual  Most of the time
## 13141          Some other way            Always
## 13142 Heterosexual (straight)         Sometimes
## 13143 Heterosexual (straight)  Most of the time
## 13144                Bisexual            Always
## 13145                Bisexual            Rarely
## 13146 Heterosexual (straight)  Most of the time
## 13147 Heterosexual (straight)            Always
## 13148                Bisexual  Most of the time
## 13149                Not sure            Rarely
## 13150 Heterosexual (straight)            Always
## 13151 Heterosexual (straight)             Never
## 13152                Bisexual  Most of the time
## 13153 Heterosexual (straight)         Sometimes
## 13154 Heterosexual (straight)         Sometimes
## 13155                Bisexual  Most of the time
## 13156 Heterosexual (straight)         Sometimes
## 13157 Heterosexual (straight)  Most of the time
## 13158 Heterosexual (straight)            Rarely
## 13159                Not sure  Most of the time
## 13160 Heterosexual (straight)            Always
## 13161                Bisexual  Most of the time
## 13162          Some other way  Most of the time
## 13163 Heterosexual (straight)         Sometimes
## 13164                Not sure            Rarely
## 13165 Heterosexual (straight)             Never
## 13166                Not sure         Sometimes
## 13167 Heterosexual (straight)         Sometimes
## 13168 Heterosexual (straight)            Rarely
## 13169 Heterosexual (straight)         Sometimes
## 13170                Bisexual         Sometimes
## 13171                Bisexual         Sometimes
## 13172 Heterosexual (straight)            Always
## 13173 Heterosexual (straight)             Never
## 13174 Heterosexual (straight)            Rarely
## 13175 Heterosexual (straight)  Most of the time
## 13176 Heterosexual (straight)             Never
## 13177 Heterosexual (straight)         Sometimes
## 13178 Heterosexual (straight)         Sometimes
## 13179 Heterosexual (straight)            Rarely
## 13180 Heterosexual (straight)            Rarely
## 13181 Heterosexual (straight)         Sometimes
## 13182                Bisexual  Most of the time
## 13183 Heterosexual (straight)             Never
## 13184 Heterosexual (straight)         Sometimes
## 13185 Heterosexual (straight)            Rarely
## 13186          Gay or lesbian  Most of the time
## 13187 Heterosexual (straight)  Most of the time
## 13188                Bisexual         Sometimes
## 13189 Heterosexual (straight)         Sometimes
## 13190 Heterosexual (straight)             Never
## 13191          Some other way  Most of the time
## 13192                Not sure         Sometimes
## 13193 Heterosexual (straight)            Always
## 13194 Heterosexual (straight)         Sometimes
## 13195 Heterosexual (straight)         Sometimes
## 13196 Heterosexual (straight)  Most of the time
## 13197 Heterosexual (straight)            Rarely
## 13198 Heterosexual (straight)         Sometimes
## 13199                Bisexual  Most of the time
## 13200 Heterosexual (straight)            Rarely
## 13201 Heterosexual (straight)  Most of the time
## 13202 Heterosexual (straight)  Most of the time
## 13203 Heterosexual (straight)         Sometimes
## 13204                Bisexual            Always
## 13205 Heterosexual (straight)         Sometimes
## 13206 Heterosexual (straight)         Sometimes
## 13207 Heterosexual (straight)         Sometimes
## 13208 Heterosexual (straight)         Sometimes
## 13209 Heterosexual (straight)  Most of the time
## 13210          Some other way  Most of the time
## 13211                Bisexual  Most of the time
## 13212                Not sure  Most of the time
## 13213 Heterosexual (straight)             Never
## 13214 Heterosexual (straight)            Rarely
## 13215                Not sure         Sometimes
## 13216 Heterosexual (straight)            Rarely
## 13217          Some other way         Sometimes
## 13218 Heterosexual (straight)         Sometimes
## 13219 Heterosexual (straight)         Sometimes
## 13220 Heterosexual (straight)         Sometimes
## 13221          Some other way  Most of the time
## 13222 Heterosexual (straight)         Sometimes
## 13223                Not sure            Rarely
## 13224 Heterosexual (straight)         Sometimes
## 13225 Heterosexual (straight)             Never
## 13226 Heterosexual (straight)         Sometimes
## 13227 Heterosexual (straight)  Most of the time
## 13228                Bisexual  Most of the time
## 13229 Heterosexual (straight)             Never
## 13230 Heterosexual (straight)  Most of the time
## 13231 Heterosexual (straight)            Rarely
## 13232                Bisexual             Never
## 13233 Heterosexual (straight)             Never
## 13234          Gay or lesbian         Sometimes
## 13235 Heterosexual (straight)             Never
## 13236                Bisexual  Most of the time
## 13237 Heterosexual (straight)            Rarely
## 13238 Heterosexual (straight)         Sometimes
## 13239 Heterosexual (straight)            Rarely
## 13240                Bisexual         Sometimes
## 13241 Heterosexual (straight)            Rarely
## 13242                Bisexual            Rarely
## 13243 Heterosexual (straight)            Rarely
## 13244 Heterosexual (straight)            Rarely
## 13245 Heterosexual (straight)         Sometimes
## 13246 Heterosexual (straight)         Sometimes
## 13247 Heterosexual (straight)            Rarely
## 13248 Heterosexual (straight)         Sometimes
## 13249                Bisexual  Most of the time
## 13250 Heterosexual (straight)         Sometimes
## 13251          Some other way            Always
## 13252          Some other way  Most of the time
## 13253 Heterosexual (straight)  Most of the time
## 13254 Heterosexual (straight)         Sometimes
## 13255 Heterosexual (straight)            Rarely
## 13256 Heterosexual (straight)            Rarely
## 13257 Heterosexual (straight)         Sometimes
## 13258 Heterosexual (straight)            Rarely
## 13259          Gay or lesbian            Always
## 13260 Heterosexual (straight)  Most of the time
## 13261 Heterosexual (straight)         Sometimes
## 13262 Heterosexual (straight)         Sometimes
## 13263                Not sure  Most of the time
## 13264 Heterosexual (straight)         Sometimes
## 13265                Bisexual         Sometimes
## 13266 Heterosexual (straight)             Never
## 13267                Not sure  Most of the time
## 13268 Heterosexual (straight)  Most of the time
## 13269 Heterosexual (straight)            Rarely
## 13270                Bisexual            Rarely
## 13271                Not sure  Most of the time
## 13272                Bisexual  Most of the time
## 13273 Heterosexual (straight)            Rarely
## 13274 Heterosexual (straight)         Sometimes
## 13275                Not sure  Most of the time
## 13276 Heterosexual (straight)         Sometimes
## 13277 Heterosexual (straight)         Sometimes
## 13278 Heterosexual (straight)            Rarely
## 13279 Heterosexual (straight)         Sometimes
## 13280 Heterosexual (straight)            Rarely
## 13281 Heterosexual (straight)         Sometimes
## 13282 Heterosexual (straight)            Rarely
## 13283                Bisexual  Most of the time
## 13284          Some other way  Most of the time
## 13285 Heterosexual (straight)         Sometimes
## 13286 Heterosexual (straight)            Always
## 13287 Heterosexual (straight)              <NA>
## 13288 Heterosexual (straight)              <NA>
## 13289                Bisexual              <NA>
## 13290 Heterosexual (straight)              <NA>
## 13291 Heterosexual (straight)              <NA>
## 13292          Gay or lesbian              <NA>
## 13293                Not sure              <NA>
## 13294                Bisexual              <NA>
## 13295 Heterosexual (straight)              <NA>
## 13296 Heterosexual (straight)              <NA>
## 13297 Heterosexual (straight)              <NA>
## 13298          Gay or lesbian              <NA>
## 13299 Heterosexual (straight)              <NA>
## 13300 Heterosexual (straight)              <NA>
## 13301 Heterosexual (straight)              <NA>
## 13302 Heterosexual (straight)              <NA>
## 13303 Heterosexual (straight)              <NA>
## 13304                Bisexual              <NA>
## 13305 Heterosexual (straight)              <NA>
## 13306          Gay or lesbian              <NA>
## 13307 Heterosexual (straight)              <NA>
## 13308 Heterosexual (straight)              <NA>
## 13309 Heterosexual (straight)              <NA>
## 13310 Heterosexual (straight)              <NA>
## 13311                Not sure              <NA>
## 13312 Heterosexual (straight)              <NA>
## 13313 Heterosexual (straight)              <NA>
## 13314 Heterosexual (straight)              <NA>
## 13315 Heterosexual (straight)              <NA>
## 13316                Bisexual              <NA>
## 13317 Heterosexual (straight)              <NA>
## 13318 Heterosexual (straight)              <NA>
## 13319 Heterosexual (straight)              <NA>
## 13320 Heterosexual (straight)              <NA>
## 13321 Heterosexual (straight)              <NA>
## 13322 Heterosexual (straight)              <NA>
## 13323                Bisexual              <NA>
## 13324                Bisexual              <NA>
## 13325 Heterosexual (straight)              <NA>
## 13326 Heterosexual (straight)              <NA>
## 13327 Heterosexual (straight)              <NA>
## 13328 Heterosexual (straight)              <NA>
## 13329 Heterosexual (straight)              <NA>
## 13330 Heterosexual (straight)              <NA>
## 13331          Some other way              <NA>
## 13332                Not sure              <NA>
## 13333 Heterosexual (straight)              <NA>
## 13334 Heterosexual (straight)              <NA>
## 13335 Heterosexual (straight)              <NA>
## 13336 Heterosexual (straight)              <NA>
## 13337          Gay or lesbian              <NA>
## 13338 Heterosexual (straight)              <NA>
## 13339                Not sure              <NA>
## 13340 Heterosexual (straight)              <NA>
## 13341 Heterosexual (straight)              <NA>
## 13342                Bisexual              <NA>
## 13343                Not sure              <NA>
## 13344 Heterosexual (straight)              <NA>
## 13345 Heterosexual (straight)              <NA>
## 13346                Bisexual              <NA>
## 13347          Gay or lesbian              <NA>
## 13348                Bisexual              <NA>
## 13349          Some other way              <NA>
## 13350                Bisexual              <NA>
## 13351 Heterosexual (straight)              <NA>
## 13352          Gay or lesbian              <NA>
## 13353                Bisexual              <NA>
## 13354 Heterosexual (straight)              <NA>
## 13355 Heterosexual (straight)              <NA>
## 13356          Some other way              <NA>
## 13357 Heterosexual (straight)              <NA>
## 13358 Heterosexual (straight)              <NA>
## 13359 Heterosexual (straight)              <NA>
## 13360 Heterosexual (straight)              <NA>
## 13361 Heterosexual (straight)              <NA>
## 13362 Heterosexual (straight)              <NA>
## 13363 Heterosexual (straight)              <NA>
## 13364 Heterosexual (straight)              <NA>
## 13365 Heterosexual (straight)              <NA>
## 13366 Heterosexual (straight)              <NA>
## 13367 Heterosexual (straight)              <NA>
## 13368                Bisexual              <NA>
## 13369 Heterosexual (straight)              <NA>
## 13370                Not sure              <NA>
## 13371 Heterosexual (straight)              <NA>
## 13372 Heterosexual (straight)              <NA>
## 13373 Heterosexual (straight)              <NA>
## 13374                Bisexual              <NA>
## 13375 Heterosexual (straight)              <NA>
## 13376                Not sure              <NA>
## 13377                Bisexual              <NA>
## 13378          Some other way              <NA>
## 13379 Heterosexual (straight)              <NA>
## 13380 Heterosexual (straight)              <NA>
## 13381                Bisexual              <NA>
## 13382 Heterosexual (straight)              <NA>
## 13383 Heterosexual (straight)              <NA>
## 13384 Heterosexual (straight)              <NA>
## 13385 Heterosexual (straight)              <NA>
## 13386                Bisexual              <NA>
## 13387 Heterosexual (straight)              <NA>
## 13388                Not sure              <NA>
## 13389 Heterosexual (straight)              <NA>
## 13390 Heterosexual (straight)              <NA>
## 13391 Heterosexual (straight)              <NA>
## 13392 Heterosexual (straight)              <NA>
## 13393 Heterosexual (straight)              <NA>
## 13394 Heterosexual (straight)              <NA>
## 13395          Some other way              <NA>
## 13396 Heterosexual (straight)              <NA>
## 13397 Heterosexual (straight)              <NA>
## 13398 Heterosexual (straight)              <NA>
## 13399 Heterosexual (straight)              <NA>
## 13400 Heterosexual (straight)              <NA>
## 13401 Heterosexual (straight)              <NA>
## 13402                Bisexual              <NA>
## 13403 Heterosexual (straight)              <NA>
## 13404 Heterosexual (straight)              <NA>
## 13405 Heterosexual (straight)              <NA>
## 13406 Heterosexual (straight)              <NA>
## 13407                Bisexual              <NA>
## 13408 Heterosexual (straight)              <NA>
## 13409 Heterosexual (straight)              <NA>
## 13410 Heterosexual (straight)              <NA>
## 13411                Bisexual              <NA>
## 13412                Not sure              <NA>
## 13413 Heterosexual (straight)              <NA>
## 13414                Bisexual              <NA>
## 13415 Heterosexual (straight)              <NA>
## 13416 Heterosexual (straight)              <NA>
## 13417                Not sure              <NA>
## 13418 Heterosexual (straight)              <NA>
## 13419          Some other way              <NA>
## 13420 Heterosexual (straight)              <NA>
## 13421                Not sure              <NA>
## 13422          Some other way              <NA>
## 13423 Heterosexual (straight)              <NA>
## 13424          Some other way              <NA>
## 13425                Bisexual              <NA>
## 13426 Heterosexual (straight)              <NA>
## 13427                Not sure              <NA>
## 13428 Heterosexual (straight)              <NA>
## 13429                Bisexual              <NA>
## 13430 Heterosexual (straight)              <NA>
## 13431 Heterosexual (straight)              <NA>
## 13432 Heterosexual (straight)              <NA>
## 13433 Heterosexual (straight)              <NA>
## 13434          Gay or lesbian              <NA>
## 13435 Heterosexual (straight)              <NA>
## 13436 Heterosexual (straight)              <NA>
## 13437 Heterosexual (straight)              <NA>
## 13438 Heterosexual (straight)              <NA>
## 13439                Bisexual              <NA>
## 13440 Heterosexual (straight)              <NA>
## 13441 Heterosexual (straight)              <NA>
## 13442 Heterosexual (straight)              <NA>
## 13443 Heterosexual (straight)              <NA>
## 13444 Heterosexual (straight)              <NA>
## 13445                Not sure              <NA>
## 13446 Heterosexual (straight)              <NA>
## 13447                Bisexual              <NA>
## 13448                Bisexual              <NA>
## 13449                Bisexual              <NA>
## 13450 Heterosexual (straight)              <NA>
## 13451 Heterosexual (straight)              <NA>
## 13452                Bisexual              <NA>
## 13453 Heterosexual (straight)              <NA>
## 13454 Heterosexual (straight)              <NA>
## 13455 Heterosexual (straight)              <NA>
## 13456 Heterosexual (straight)              <NA>
## 13457 Heterosexual (straight)              <NA>
## 13458 Heterosexual (straight)              <NA>
## 13459 Heterosexual (straight)              <NA>
## 13460 Heterosexual (straight)              <NA>
## 13461 Heterosexual (straight)             Never
## 13462                Bisexual         Sometimes
## 13463 Heterosexual (straight)            Always
## 13464                Not sure            Always
## 13465 Heterosexual (straight)         Sometimes
## 13466 Heterosexual (straight)         Sometimes
## 13467 Heterosexual (straight)            Always
## 13468 Heterosexual (straight)            Rarely
## 13469 Heterosexual (straight)         Sometimes
## 13470                Not sure  Most of the time
## 13471 Heterosexual (straight)             Never
## 13472                Bisexual         Sometimes
## 13473          Gay or lesbian  Most of the time
## 13474                Not sure             Never
## 13475 Heterosexual (straight)  Most of the time
## 13476 Heterosexual (straight)            Rarely
## 13477                Bisexual  Most of the time
## 13478 Heterosexual (straight)            Always
## 13479 Heterosexual (straight)         Sometimes
## 13480                Bisexual         Sometimes
## 13481                Bisexual         Sometimes
## 13482 Heterosexual (straight)            Rarely
## 13483                Not sure  Most of the time
## 13484                Not sure         Sometimes
## 13485 Heterosexual (straight)            Rarely
## 13486 Heterosexual (straight)             Never
## 13487 Heterosexual (straight)         Sometimes
## 13488 Heterosexual (straight)         Sometimes
## 13489                Not sure         Sometimes
## 13490 Heterosexual (straight)              <NA>
## 13491 Heterosexual (straight)         Sometimes
## 13492          Gay or lesbian            Always
## 13493 Heterosexual (straight)  Most of the time
## 13494 Heterosexual (straight)            Always
## 13495 Heterosexual (straight)            Rarely
## 13496 Heterosexual (straight)              <NA>
## 13497 Heterosexual (straight)  Most of the time
## 13498 Heterosexual (straight)         Sometimes
## 13499 Heterosexual (straight)  Most of the time
## 13500 Heterosexual (straight)         Sometimes
## 13501                Bisexual         Sometimes
## 13502                Bisexual         Sometimes
## 13503 Heterosexual (straight)         Sometimes
## 13504 Heterosexual (straight)            Always
## 13505                Bisexual            Always
## 13506                Bisexual  Most of the time
## 13507 Heterosexual (straight)         Sometimes
## 13508 Heterosexual (straight)         Sometimes
## 13509 Heterosexual (straight)            Rarely
## 13510                Bisexual  Most of the time
## 13511 Heterosexual (straight)  Most of the time
## 13512                Bisexual            Always
## 13513                Bisexual            Rarely
## 13514 Heterosexual (straight)  Most of the time
## 13515 Heterosexual (straight)            Rarely
## 13516                Bisexual  Most of the time
## 13517                Not sure  Most of the time
## 13518 Heterosexual (straight)         Sometimes
## 13519                Not sure  Most of the time
## 13520 Heterosexual (straight)            Rarely
## 13521 Heterosexual (straight)         Sometimes
## 13522 Heterosexual (straight)             Never
## 13523                Bisexual  Most of the time
## 13524 Heterosexual (straight)            Rarely
## 13525                Bisexual            Always
## 13526 Heterosexual (straight)         Sometimes
## 13527 Heterosexual (straight)         Sometimes
## 13528                Bisexual  Most of the time
## 13529          Some other way         Sometimes
## 13530                Bisexual  Most of the time
## 13531 Heterosexual (straight)            Rarely
## 13532 Heterosexual (straight)  Most of the time
## 13533 Heterosexual (straight)  Most of the time
## 13534          Gay or lesbian  Most of the time
## 13535          Some other way            Rarely
## 13536 Heterosexual (straight)            Always
## 13537 Heterosexual (straight)         Sometimes
## 13538                Not sure  Most of the time
## 13539 Heterosexual (straight)         Sometimes
## 13540 Heterosexual (straight)  Most of the time
## 13541 Heterosexual (straight)         Sometimes
## 13542 Heterosexual (straight)         Sometimes
## 13543 Heterosexual (straight)         Sometimes
## 13544 Heterosexual (straight)  Most of the time
## 13545 Heterosexual (straight)         Sometimes
## 13546 Heterosexual (straight)            Rarely
## 13547 Heterosexual (straight)         Sometimes
## 13548                Not sure         Sometimes
## 13549 Heterosexual (straight)            Rarely
## 13550 Heterosexual (straight)             Never
## 13551 Heterosexual (straight)  Most of the time
## 13552 Heterosexual (straight)         Sometimes
## 13553                Bisexual  Most of the time
## 13554 Heterosexual (straight)         Sometimes
## 13555                Bisexual         Sometimes
## 13556                Bisexual         Sometimes
## 13557 Heterosexual (straight)  Most of the time
## 13558                Bisexual         Sometimes
## 13559 Heterosexual (straight)  Most of the time
## 13560          Some other way  Most of the time
## 13561 Heterosexual (straight)            Rarely
## 13562 Heterosexual (straight)  Most of the time
## 13563 Heterosexual (straight)  Most of the time
## 13564 Heterosexual (straight)            Rarely
## 13565 Heterosexual (straight)  Most of the time
## 13566                Not sure  Most of the time
## 13567 Heterosexual (straight)            Rarely
## 13568                Bisexual            Always
## 13569                Not sure            Always
## 13570 Heterosexual (straight)         Sometimes
## 13571                Bisexual         Sometimes
## 13572 Heterosexual (straight)  Most of the time
## 13573 Heterosexual (straight)  Most of the time
## 13574 Heterosexual (straight)             Never
## 13575 Heterosexual (straight)         Sometimes
## 13576 Heterosexual (straight)            Always
## 13577                Bisexual         Sometimes
## 13578          Some other way  Most of the time
## 13579 Heterosexual (straight)  Most of the time
## 13580 Heterosexual (straight)            Rarely
## 13581 Heterosexual (straight)            Rarely
## 13582 Heterosexual (straight)         Sometimes
## 13583 Heterosexual (straight)         Sometimes
## 13584 Heterosexual (straight)         Sometimes
## 13585                Bisexual            Always
## 13586 Heterosexual (straight)             Never
## 13587 Heterosexual (straight)         Sometimes
## 13588                Not sure            Rarely
## 13589 Heterosexual (straight)  Most of the time
## 13590 Heterosexual (straight)         Sometimes
## 13591 Heterosexual (straight)  Most of the time
## 13592 Heterosexual (straight)  Most of the time
## 13593 Heterosexual (straight)  Most of the time
## 13594                Bisexual  Most of the time
## 13595 Heterosexual (straight)         Sometimes
## 13596                Not sure  Most of the time
## 13597 Heterosexual (straight)         Sometimes
## 13598 Heterosexual (straight)  Most of the time
## 13599          Some other way            Always
## 13600 Heterosexual (straight)         Sometimes
## 13601          Some other way            Rarely
## 13602 Heterosexual (straight)         Sometimes
## 13603 Heterosexual (straight)  Most of the time
## 13604                Bisexual         Sometimes
## 13605 Heterosexual (straight)            Rarely
## 13606 Heterosexual (straight)            Rarely
## 13607 Heterosexual (straight)  Most of the time
## 13608 Heterosexual (straight)         Sometimes
## 13609 Heterosexual (straight)         Sometimes
## 13610                Bisexual  Most of the time
## 13611 Heterosexual (straight)         Sometimes
## 13612 Heterosexual (straight)         Sometimes
## 13613 Heterosexual (straight)         Sometimes
## 13614 Heterosexual (straight)         Sometimes
## 13615 Heterosexual (straight)         Sometimes
## 13616 Heterosexual (straight)  Most of the time
## 13617 Heterosexual (straight)             Never
## 13618 Heterosexual (straight)            Always
## 13619                Not sure         Sometimes
## 13620 Heterosexual (straight)         Sometimes
## 13621 Heterosexual (straight)            Rarely
## 13622          Gay or lesbian            Always
## 13623 Heterosexual (straight)  Most of the time
## 13624 Heterosexual (straight)         Sometimes
## 13625                Bisexual            Always
## 13626 Heterosexual (straight)         Sometimes
## 13627 Heterosexual (straight)             Never
## 13628                Bisexual         Sometimes
## 13629          Some other way            Rarely
## 13630 Heterosexual (straight)         Sometimes
## 13631          Gay or lesbian         Sometimes
## 13632          Gay or lesbian         Sometimes
## 13633 Heterosexual (straight)         Sometimes
## 13634                Bisexual         Sometimes
## 13635 Heterosexual (straight)            Rarely
## 13636          Some other way  Most of the time
## 13637                Bisexual         Sometimes
## 13638 Heterosexual (straight)         Sometimes
## 13639 Heterosexual (straight)  Most of the time
## 13640 Heterosexual (straight)  Most of the time
## 13641                Bisexual  Most of the time
## 13642 Heterosexual (straight)             Never
## 13643 Heterosexual (straight)             Never
## 13644 Heterosexual (straight)         Sometimes
## 13645 Heterosexual (straight)            Always
## 13646 Heterosexual (straight)            Rarely
## 13647 Heterosexual (straight)         Sometimes
## 13648 Heterosexual (straight)  Most of the time
## 13649 Heterosexual (straight)         Sometimes
## 13650 Heterosexual (straight)            Always
## 13651                Bisexual         Sometimes
## 13652 Heterosexual (straight)             Never
## 13653          Gay or lesbian            Always
## 13654 Heterosexual (straight)            Always
## 13655                Bisexual            Always
## 13656 Heterosexual (straight)         Sometimes
## 13657                Bisexual            Always
## 13658 Heterosexual (straight)         Sometimes
## 13659 Heterosexual (straight)            Rarely
## 13660 Heterosexual (straight)            Always
## 13661 Heterosexual (straight)            Always
## 13662 Heterosexual (straight)         Sometimes
## 13663          Gay or lesbian         Sometimes
## 13664 Heterosexual (straight)             Never
## 13665                Bisexual  Most of the time
## 13666          Gay or lesbian         Sometimes
## 13667 Heterosexual (straight)             Never
## 13668 Heterosexual (straight)         Sometimes
## 13669 Heterosexual (straight)             Never
## 13670 Heterosexual (straight)            Always
## 13671                Bisexual  Most of the time
## 13672                Bisexual         Sometimes
## 13673 Heterosexual (straight)  Most of the time
## 13674 Heterosexual (straight)            Rarely
## 13675 Heterosexual (straight)            Always
## 13676 Heterosexual (straight)         Sometimes
## 13677 Heterosexual (straight)             Never
## 13678          Some other way            Always
## 13679 Heterosexual (straight)             Never
## 13680 Heterosexual (straight)  Most of the time
## 13681 Heterosexual (straight)            Rarely
## 13682 Heterosexual (straight)             Never
## 13683 Heterosexual (straight)  Most of the time
## 13684 Heterosexual (straight)         Sometimes
## 13685 Heterosexual (straight)            Always
## 13686                Bisexual            Rarely
## 13687 Heterosexual (straight)  Most of the time
## 13688 Heterosexual (straight)            Rarely
## 13689 Heterosexual (straight)         Sometimes
## 13690 Heterosexual (straight)         Sometimes
## 13691          Some other way  Most of the time
## 13692          Gay or lesbian            Rarely
## 13693 Heterosexual (straight)            Rarely
## 13694 Heterosexual (straight)            Rarely
## 13695 Heterosexual (straight)  Most of the time
## 13696          Some other way            Always
## 13697                Not sure            Always
## 13698 Heterosexual (straight)         Sometimes
## 13699 Heterosexual (straight)            Always
## 13700 Heterosexual (straight)         Sometimes
## 13701 Heterosexual (straight)  Most of the time
## 13702 Heterosexual (straight)            Rarely
## 13703          Some other way         Sometimes
## 13704 Heterosexual (straight)         Sometimes
## 13705 Heterosexual (straight)  Most of the time
## 13706 Heterosexual (straight)         Sometimes
## 13707 Heterosexual (straight)            Rarely
## 13708 Heterosexual (straight)         Sometimes
## 13709 Heterosexual (straight)         Sometimes
## 13710 Heterosexual (straight)             Never
## 13711 Heterosexual (straight)  Most of the time
## 13712 Heterosexual (straight)  Most of the time
## 13713 Heterosexual (straight)  Most of the time
## 13714 Heterosexual (straight)              <NA>
## 13715 Heterosexual (straight)  Most of the time
## 13716 Heterosexual (straight)            Rarely
## 13717 Heterosexual (straight)         Sometimes
## 13718 Heterosexual (straight)            Rarely
## 13719 Heterosexual (straight)         Sometimes
## 13720 Heterosexual (straight)  Most of the time
## 13721 Heterosexual (straight)  Most of the time
## 13722 Heterosexual (straight)            Always
## 13723 Heterosexual (straight)         Sometimes
## 13724 Heterosexual (straight)         Sometimes
## 13725                Not sure  Most of the time
## 13726 Heterosexual (straight)         Sometimes
## 13727 Heterosexual (straight)         Sometimes
## 13728                Not sure  Most of the time
## 13729 Heterosexual (straight)         Sometimes
## 13730                Not sure            Always
## 13731 Heterosexual (straight)  Most of the time
## 13732 Heterosexual (straight)             Never
## 13733 Heterosexual (straight)            Rarely
## 13734 Heterosexual (straight)         Sometimes
## 13735 Heterosexual (straight)  Most of the time
## 13736 Heterosexual (straight)            Rarely
## 13737 Heterosexual (straight)            Rarely
## 13738                Bisexual  Most of the time
## 13739 Heterosexual (straight)  Most of the time
## 13740 Heterosexual (straight)         Sometimes
## 13741 Heterosexual (straight)            Rarely
## 13742 Heterosexual (straight)         Sometimes
## 13743 Heterosexual (straight)             Never
## 13744 Heterosexual (straight)  Most of the time
## 13745 Heterosexual (straight)         Sometimes
## 13746 Heterosexual (straight)         Sometimes
## 13747                Not sure  Most of the time
## 13748          Some other way            Always
## 13749                Bisexual             Never
## 13750 Heterosexual (straight)            Always
## 13751 Heterosexual (straight)         Sometimes
## 13752                Bisexual              <NA>
## 13753 Heterosexual (straight)  Most of the time
## 13754 Heterosexual (straight)             Never
## 13755 Heterosexual (straight)         Sometimes
## 13756 Heterosexual (straight)         Sometimes
## 13757 Heterosexual (straight)  Most of the time
## 13758 Heterosexual (straight)  Most of the time
## 13759 Heterosexual (straight)  Most of the time
## 13760 Heterosexual (straight)         Sometimes
## 13761 Heterosexual (straight)             Never
## 13762 Heterosexual (straight)             Never
## 13763 Heterosexual (straight)            Rarely
## 13764                Bisexual         Sometimes
## 13765                Not sure  Most of the time
## 13766 Heterosexual (straight)  Most of the time
## 13767 Heterosexual (straight)  Most of the time
## 13768 Heterosexual (straight)            Rarely
## 13769 Heterosexual (straight)         Sometimes
## 13770 Heterosexual (straight)  Most of the time
## 13771 Heterosexual (straight)         Sometimes
## 13772 Heterosexual (straight)         Sometimes
## 13773 Heterosexual (straight)         Sometimes
## 13774 Heterosexual (straight)  Most of the time
## 13775                Not sure         Sometimes
## 13776 Heterosexual (straight)         Sometimes
## 13777 Heterosexual (straight)            Rarely
## 13778 Heterosexual (straight)         Sometimes
## 13779 Heterosexual (straight)         Sometimes
## 13780 Heterosexual (straight)         Sometimes
## 13781          Some other way            Always
## 13782 Heterosexual (straight)            Always
## 13783 Heterosexual (straight)            Rarely
## 13784 Heterosexual (straight)         Sometimes
## 13785                Bisexual            Rarely
## 13786 Heterosexual (straight)             Never
## 13787 Heterosexual (straight)         Sometimes
## 13788 Heterosexual (straight)             Never
## 13789                Bisexual            Always
## 13790 Heterosexual (straight)         Sometimes
## 13791 Heterosexual (straight)  Most of the time
## 13792                Not sure         Sometimes
## 13793 Heterosexual (straight)            Rarely
## 13794 Heterosexual (straight)            Rarely
## 13795 Heterosexual (straight)         Sometimes
## 13796 Heterosexual (straight)            Rarely
## 13797 Heterosexual (straight)            Rarely
## 13798 Heterosexual (straight)  Most of the time
## 13799                Bisexual  Most of the time
## 13800                Not sure  Most of the time
## 13801 Heterosexual (straight)            Rarely
## 13802          Some other way  Most of the time
## 13803                Bisexual            Rarely
## 13804                Bisexual  Most of the time
## 13805 Heterosexual (straight)            Rarely
## 13806 Heterosexual (straight)         Sometimes
## 13807                Not sure         Sometimes
## 13808                Not sure         Sometimes
## 13809                Bisexual  Most of the time
## 13810 Heterosexual (straight)            Always
## 13811 Heterosexual (straight)         Sometimes
## 13812 Heterosexual (straight)              <NA>
## 13813 Heterosexual (straight)  Most of the time
## 13814          Gay or lesbian            Always
## 13815 Heterosexual (straight)         Sometimes
## 13816 Heterosexual (straight)            Rarely
## 13817 Heterosexual (straight)            Rarely
## 13818                Bisexual            Rarely
## 13819                Bisexual  Most of the time
## 13820 Heterosexual (straight)  Most of the time
## 13821 Heterosexual (straight)  Most of the time
## 13822                Bisexual            Always
## 13823 Heterosexual (straight)         Sometimes
## 13824          Some other way            Always
## 13825 Heterosexual (straight)             Never
## 13826 Heterosexual (straight)  Most of the time
## 13827                Not sure         Sometimes
## 13828                Not sure  Most of the time
## 13829          Gay or lesbian         Sometimes
## 13830 Heterosexual (straight)             Never
## 13831                Not sure         Sometimes
## 13832 Heterosexual (straight)              <NA>
## 13833          Some other way              <NA>
## 13834 Heterosexual (straight)         Sometimes
## 13835          Some other way         Sometimes
## 13836          Some other way  Most of the time
## 13837 Heterosexual (straight)            Always
## 13838                Bisexual  Most of the time
## 13839                Bisexual            Always
## 13840                Not sure         Sometimes
## 13841 Heterosexual (straight)         Sometimes
## 13842                Bisexual            Always
## 13843          Gay or lesbian  Most of the time
## 13844 Heterosexual (straight)         Sometimes
## 13845                Bisexual  Most of the time
## 13846 Heterosexual (straight)         Sometimes
## 13847 Heterosexual (straight)         Sometimes
## 13848          Gay or lesbian  Most of the time
## 13849                Bisexual              <NA>
## 13850 Heterosexual (straight)         Sometimes
## 13851 Heterosexual (straight)            Always
## 13852 Heterosexual (straight)            Rarely
## 13853                Bisexual         Sometimes
## 13854                Bisexual            Always
## 13855                Bisexual         Sometimes
## 13856 Heterosexual (straight)  Most of the time
## 13857 Heterosexual (straight)         Sometimes
## 13858 Heterosexual (straight)            Rarely
## 13859 Heterosexual (straight)            Rarely
## 13860 Heterosexual (straight)  Most of the time
## 13861          Some other way         Sometimes
## 13862                Bisexual         Sometimes
## 13863 Heterosexual (straight)              <NA>
## 13864 Heterosexual (straight)         Sometimes
## 13865 Heterosexual (straight)  Most of the time
## 13866 Heterosexual (straight)         Sometimes
## 13867                Bisexual             Never
## 13868                Not sure  Most of the time
## 13869                Bisexual            Always
## 13870 Heterosexual (straight)            Rarely
## 13871 Heterosexual (straight)            Rarely
## 13872 Heterosexual (straight)         Sometimes
## 13873 Heterosexual (straight)         Sometimes
## 13874          Some other way         Sometimes
## 13875                Not sure            Always
## 13876 Heterosexual (straight)  Most of the time
## 13877 Heterosexual (straight)             Never
## 13878 Heterosexual (straight)  Most of the time
## 13879 Heterosexual (straight)         Sometimes
## 13880 Heterosexual (straight)  Most of the time
## 13881                Bisexual              <NA>
## 13882                Not sure         Sometimes
## 13883 Heterosexual (straight)            Rarely
## 13884          Some other way  Most of the time
## 13885 Heterosexual (straight)         Sometimes
## 13886 Heterosexual (straight)  Most of the time
## 13887                Bisexual            Always
## 13888          Gay or lesbian             Never
## 13889 Heterosexual (straight)            Rarely
## 13890 Heterosexual (straight)            Rarely
## 13891 Heterosexual (straight)         Sometimes
## 13892                Bisexual  Most of the time
## 13893 Heterosexual (straight)            Rarely
## 13894                Not sure  Most of the time
## 13895 Heterosexual (straight)         Sometimes
## 13896                Bisexual         Sometimes
## 13897                Not sure  Most of the time
## 13898 Heterosexual (straight)            Rarely
## 13899                Not sure         Sometimes
## 13900 Heterosexual (straight)            Rarely
## 13901 Heterosexual (straight)         Sometimes
## 13902 Heterosexual (straight)            Rarely
## 13903 Heterosexual (straight)         Sometimes
## 13904                Not sure            Always
## 13905 Heterosexual (straight)            Always
## 13906 Heterosexual (straight)         Sometimes
## 13907          Gay or lesbian  Most of the time
## 13908 Heterosexual (straight)            Rarely
## 13909 Heterosexual (straight)            Always
## 13910                Bisexual         Sometimes
## 13911 Heterosexual (straight)         Sometimes
## 13912                Not sure         Sometimes
## 13913 Heterosexual (straight)         Sometimes
## 13914 Heterosexual (straight)              <NA>
## 13915 Heterosexual (straight)  Most of the time
## 13916 Heterosexual (straight)         Sometimes
## 13917                Not sure         Sometimes
## 13918 Heterosexual (straight)         Sometimes
## 13919 Heterosexual (straight)         Sometimes
## 13920 Heterosexual (straight)            Always
## 13921 Heterosexual (straight)            Rarely
## 13922 Heterosexual (straight)         Sometimes
## 13923 Heterosexual (straight)            Rarely
## 13924 Heterosexual (straight)            Always
## 13925          Some other way            Always
## 13926 Heterosexual (straight)             Never
## 13927 Heterosexual (straight)  Most of the time
## 13928 Heterosexual (straight)             Never
## 13929          Gay or lesbian         Sometimes
## 13930                Not sure         Sometimes
## 13931 Heterosexual (straight)            Rarely
## 13932 Heterosexual (straight)            Always
## 13933 Heterosexual (straight)            Always
## 13934 Heterosexual (straight)            Always
## 13935 Heterosexual (straight)  Most of the time
## 13936 Heterosexual (straight)            Rarely
## 13937                Bisexual         Sometimes
## 13938                Bisexual            Rarely
## 13939 Heterosexual (straight)            Rarely
## 13940                Not sure         Sometimes
## 13941                Not sure  Most of the time
## 13942                Bisexual         Sometimes
## 13943                Bisexual         Sometimes
## 13944                Bisexual            Always
## 13945 Heterosexual (straight)            Rarely
## 13946                Bisexual         Sometimes
## 13947                Bisexual  Most of the time
## 13948                Bisexual  Most of the time
## 13949                Not sure            Rarely
## 13950 Heterosexual (straight)  Most of the time
## 13951 Heterosexual (straight)         Sometimes
## 13952 Heterosexual (straight)         Sometimes
## 13953                Bisexual         Sometimes
## 13954 Heterosexual (straight)  Most of the time
## 13955                Bisexual  Most of the time
## 13956 Heterosexual (straight)         Sometimes
## 13957 Heterosexual (straight)             Never
## 13958 Heterosexual (straight)  Most of the time
## 13959 Heterosexual (straight)             Never
## 13960 Heterosexual (straight)            Rarely
## 13961 Heterosexual (straight)  Most of the time
## 13962 Heterosexual (straight)         Sometimes
## 13963 Heterosexual (straight)            Rarely
## 13964 Heterosexual (straight)  Most of the time
## 13965          Gay or lesbian            Always
## 13966 Heterosexual (straight)  Most of the time
## 13967 Heterosexual (straight)         Sometimes
## 13968          Some other way         Sometimes
## 13969                Bisexual  Most of the time
## 13970 Heterosexual (straight)  Most of the time
## 13971                Bisexual         Sometimes
## 13972          Some other way  Most of the time
## 13973 Heterosexual (straight)         Sometimes
## 13974 Heterosexual (straight)         Sometimes
## 13975 Heterosexual (straight)            Rarely
## 13976 Heterosexual (straight)  Most of the time
## 13977 Heterosexual (straight)         Sometimes
## 13978 Heterosexual (straight)  Most of the time
## 13979                Bisexual         Sometimes
## 13980 Heterosexual (straight)  Most of the time
## 13981                Bisexual         Sometimes
## 13982                Bisexual            Always
## 13983 Heterosexual (straight)         Sometimes
## 13984 Heterosexual (straight)  Most of the time
## 13985 Heterosexual (straight)  Most of the time
## 13986 Heterosexual (straight)  Most of the time
## 13987 Heterosexual (straight)            Rarely
## 13988                Not sure         Sometimes
## 13989 Heterosexual (straight)         Sometimes
## 13990 Heterosexual (straight)         Sometimes
## 13991                Bisexual            Always
## 13992 Heterosexual (straight)            Rarely
## 13993                Bisexual            Always
## 13994 Heterosexual (straight)             Never
## 13995 Heterosexual (straight)            Always
## 13996 Heterosexual (straight)            Rarely
## 13997                Not sure         Sometimes
## 13998 Heterosexual (straight)            Rarely
## 13999                Bisexual  Most of the time
## 14000 Heterosexual (straight)            Always
## 14001 Heterosexual (straight)            Rarely
## 14002                Bisexual            Always
## 14003                Not sure  Most of the time
## 14004                Not sure         Sometimes
## 14005 Heterosexual (straight)            Always
## 14006 Heterosexual (straight)  Most of the time
## 14007 Heterosexual (straight)            Rarely
## 14008                Not sure         Sometimes
## 14009 Heterosexual (straight)         Sometimes
## 14010 Heterosexual (straight)         Sometimes
## 14011 Heterosexual (straight)         Sometimes
## 14012          Gay or lesbian         Sometimes
## 14013                Not sure              <NA>
## 14014 Heterosexual (straight)            Rarely
## 14015 Heterosexual (straight)  Most of the time
## 14016 Heterosexual (straight)         Sometimes
## 14017 Heterosexual (straight)  Most of the time
## 14018                Bisexual            Always
## 14019 Heterosexual (straight)            Always
## 14020 Heterosexual (straight)            Always
## 14021 Heterosexual (straight)  Most of the time
## 14022                Not sure  Most of the time
## 14023          Some other way         Sometimes
## 14024 Heterosexual (straight)         Sometimes
## 14025 Heterosexual (straight)            Always
## 14026          Some other way  Most of the time
## 14027 Heterosexual (straight)         Sometimes
## 14028 Heterosexual (straight)         Sometimes
## 14029 Heterosexual (straight)         Sometimes
## 14030 Heterosexual (straight)            Rarely
## 14031                Not sure         Sometimes
## 14032 Heterosexual (straight)         Sometimes
## 14033                Bisexual  Most of the time
## 14034                Bisexual            Rarely
## 14035 Heterosexual (straight)            Always
## 14036 Heterosexual (straight)            Rarely
## 14037 Heterosexual (straight)            Rarely
## 14038 Heterosexual (straight)         Sometimes
## 14039 Heterosexual (straight)  Most of the time
## 14040 Heterosexual (straight)             Never
## 14041 Heterosexual (straight)            Always
## 14042          Some other way  Most of the time
## 14043 Heterosexual (straight)             Never
## 14044 Heterosexual (straight)         Sometimes
## 14045 Heterosexual (straight)            Rarely
## 14046                Bisexual            Always
## 14047 Heterosexual (straight)  Most of the time
## 14048 Heterosexual (straight)         Sometimes
## 14049 Heterosexual (straight)         Sometimes
## 14050 Heterosexual (straight)         Sometimes
## 14051 Heterosexual (straight)            Rarely
## 14052                Bisexual  Most of the time
## 14053 Heterosexual (straight)            Rarely
## 14054 Heterosexual (straight)             Never
## 14055                Bisexual            Always
## 14056 Heterosexual (straight)            Always
## 14057 Heterosexual (straight)  Most of the time
## 14058                Bisexual            Always
## 14059 Heterosexual (straight)            Rarely
## 14060 Heterosexual (straight)  Most of the time
## 14061 Heterosexual (straight)         Sometimes
## 14062 Heterosexual (straight)            Rarely
## 14063          Some other way         Sometimes
## 14064                Bisexual  Most of the time
## 14065                Not sure  Most of the time
## 14066 Heterosexual (straight)            Rarely
## 14067          Some other way  Most of the time
## 14068 Heterosexual (straight)         Sometimes
## 14069 Heterosexual (straight)            Rarely
## 14070          Some other way         Sometimes
## 14071                Bisexual            Always
## 14072 Heterosexual (straight)            Rarely
## 14073                Bisexual         Sometimes
## 14074 Heterosexual (straight)            Rarely
## 14075 Heterosexual (straight)         Sometimes
## 14076 Heterosexual (straight)         Sometimes
## 14077 Heterosexual (straight)            Rarely
## 14078 Heterosexual (straight)         Sometimes
## 14079 Heterosexual (straight)  Most of the time
## 14080 Heterosexual (straight)  Most of the time
## 14081 Heterosexual (straight)         Sometimes
## 14082 Heterosexual (straight)             Never
## 14083 Heterosexual (straight)             Never
## 14084 Heterosexual (straight)         Sometimes
## 14085                Bisexual  Most of the time
## 14086 Heterosexual (straight)             Never
## 14087                Bisexual  Most of the time
## 14088                Not sure         Sometimes
## 14089 Heterosexual (straight)         Sometimes
## 14090 Heterosexual (straight)         Sometimes
## 14091 Heterosexual (straight)         Sometimes
## 14092          Some other way         Sometimes
## 14093 Heterosexual (straight)  Most of the time
## 14094 Heterosexual (straight)            Always
## 14095 Heterosexual (straight)         Sometimes
## 14096          Gay or lesbian  Most of the time
## 14097          Gay or lesbian         Sometimes
## 14098 Heterosexual (straight)  Most of the time
## 14099 Heterosexual (straight)  Most of the time
## 14100                Bisexual  Most of the time
## 14101 Heterosexual (straight)            Rarely
## 14102 Heterosexual (straight)            Rarely
## 14103 Heterosexual (straight)         Sometimes
## 14104 Heterosexual (straight)         Sometimes
## 14105                Bisexual  Most of the time
## 14106          Some other way  Most of the time
## 14107                Bisexual         Sometimes
## 14108 Heterosexual (straight)            Rarely
## 14109 Heterosexual (straight)            Rarely
## 14110          Some other way            Always
## 14111                Bisexual  Most of the time
## 14112 Heterosexual (straight)         Sometimes
## 14113                Bisexual            Always
## 14114 Heterosexual (straight)         Sometimes
## 14115 Heterosexual (straight)  Most of the time
## 14116 Heterosexual (straight)              <NA>
## 14117 Heterosexual (straight)            Rarely
## 14118 Heterosexual (straight)  Most of the time
## 14119 Heterosexual (straight)         Sometimes
## 14120 Heterosexual (straight)         Sometimes
## 14121 Heterosexual (straight)         Sometimes
## 14122 Heterosexual (straight)  Most of the time
## 14123          Gay or lesbian  Most of the time
## 14124 Heterosexual (straight)  Most of the time
## 14125 Heterosexual (straight)             Never
## 14126 Heterosexual (straight)             Never
## 14127 Heterosexual (straight)             Never
## 14128 Heterosexual (straight)             Never
## 14129          Some other way            Always
## 14130 Heterosexual (straight)              <NA>
## 14131 Heterosexual (straight)             Never
## 14132 Heterosexual (straight)         Sometimes
## 14133 Heterosexual (straight)         Sometimes
## 14134                Not sure         Sometimes
## 14135 Heterosexual (straight)            Rarely
## 14136                Bisexual            Always
## 14137 Heterosexual (straight)            Rarely
## 14138 Heterosexual (straight)            Rarely
## 14139 Heterosexual (straight)         Sometimes
## 14140 Heterosexual (straight)             Never
## 14141 Heterosexual (straight)         Sometimes
## 14142                Bisexual  Most of the time
## 14143 Heterosexual (straight)            Always
## 14144 Heterosexual (straight)  Most of the time
## 14145 Heterosexual (straight)         Sometimes
## 14146 Heterosexual (straight)              <NA>
## 14147 Heterosexual (straight)              <NA>
## 14148                Bisexual         Sometimes
## 14149 Heterosexual (straight)         Sometimes
## 14150          Some other way         Sometimes
## 14151          Gay or lesbian             Never
## 14152 Heterosexual (straight)             Never
## 14153 Heterosexual (straight)            Rarely
## 14154 Heterosexual (straight)         Sometimes
## 14155 Heterosexual (straight)              <NA>
## 14156 Heterosexual (straight)             Never
## 14157 Heterosexual (straight)             Never
## 14158          Gay or lesbian  Most of the time
## 14159 Heterosexual (straight)  Most of the time
## 14160 Heterosexual (straight)         Sometimes
## 14161          Gay or lesbian            Rarely
## 14162          Some other way            Always
## 14163 Heterosexual (straight)            Rarely
## 14164                Not sure            Rarely
## 14165          Gay or lesbian  Most of the time
## 14166 Heterosexual (straight)         Sometimes
## 14167          Gay or lesbian  Most of the time
## 14168                Bisexual              <NA>
## 14169 Heterosexual (straight)            Rarely
## 14170 Heterosexual (straight)         Sometimes
## 14171                Bisexual         Sometimes
## 14172 Heterosexual (straight)            Rarely
## 14173                Bisexual  Most of the time
## 14174 Heterosexual (straight)         Sometimes
## 14175 Heterosexual (straight)         Sometimes
## 14176 Heterosexual (straight)         Sometimes
## 14177          Some other way            Always
## 14178 Heterosexual (straight)            Always
## 14179          Some other way  Most of the time
## 14180                Bisexual  Most of the time
## 14181                Not sure  Most of the time
## 14182                Bisexual  Most of the time
## 14183                Bisexual         Sometimes
## 14184 Heterosexual (straight)            Rarely
## 14185                Bisexual            Always
## 14186 Heterosexual (straight)              <NA>
## 14187 Heterosexual (straight)            Always
## 14188 Heterosexual (straight)            Rarely
## 14189                Bisexual  Most of the time
## 14190                Bisexual  Most of the time
## 14191 Heterosexual (straight)         Sometimes
## 14192                Bisexual  Most of the time
## 14193                Bisexual         Sometimes
## 14194                Bisexual         Sometimes
## 14195          Some other way  Most of the time
## 14196                Bisexual  Most of the time
## 14197 Heterosexual (straight)            Always
## 14198                Bisexual  Most of the time
## 14199                Bisexual  Most of the time
## 14200                Bisexual            Always
## 14201 Heterosexual (straight)         Sometimes
## 14202 Heterosexual (straight)             Never
## 14203 Heterosexual (straight)            Rarely
## 14204          Some other way  Most of the time
## 14205                Not sure  Most of the time
## 14206 Heterosexual (straight)            Always
## 14207 Heterosexual (straight)         Sometimes
## 14208          Some other way         Sometimes
## 14209                Bisexual  Most of the time
## 14210 Heterosexual (straight)            Rarely
## 14211                Bisexual            Rarely
## 14212 Heterosexual (straight)            Always
## 14213                Bisexual            Rarely
## 14214 Heterosexual (straight)            Always
## 14215          Some other way  Most of the time
## 14216 Heterosexual (straight)            Always
## 14217                Bisexual  Most of the time
## 14218 Heterosexual (straight)         Sometimes
## 14219 Heterosexual (straight)  Most of the time
## 14220 Heterosexual (straight)            Always
## 14221 Heterosexual (straight)         Sometimes
## 14222 Heterosexual (straight)            Always
## 14223 Heterosexual (straight)            Always
## 14224          Gay or lesbian  Most of the time
## 14225 Heterosexual (straight)            Always
## 14226 Heterosexual (straight)         Sometimes
## 14227                Bisexual            Always
## 14228 Heterosexual (straight)         Sometimes
## 14229                Not sure  Most of the time
## 14230          Some other way            Always
## 14231                Bisexual         Sometimes
## 14232 Heterosexual (straight)         Sometimes
## 14233 Heterosexual (straight)         Sometimes
## 14234 Heterosexual (straight)  Most of the time
## 14235 Heterosexual (straight)         Sometimes
## 14236 Heterosexual (straight)            Rarely
## 14237          Some other way         Sometimes
## 14238                Bisexual         Sometimes
## 14239                Bisexual            Rarely
## 14240 Heterosexual (straight)         Sometimes
## 14241                Bisexual            Always
## 14242 Heterosexual (straight)            Always
## 14243 Heterosexual (straight)         Sometimes
## 14244 Heterosexual (straight)         Sometimes
## 14245          Gay or lesbian  Most of the time
## 14246 Heterosexual (straight)              <NA>
## 14247 Heterosexual (straight)             Never
## 14248                Not sure  Most of the time
## 14249                Not sure  Most of the time
## 14250          Some other way  Most of the time
## 14251 Heterosexual (straight)            Rarely
## 14252          Gay or lesbian  Most of the time
## 14253 Heterosexual (straight)              <NA>
## 14254                Not sure  Most of the time
## 14255 Heterosexual (straight)  Most of the time
## 14256                Bisexual         Sometimes
## 14257                Bisexual  Most of the time
## 14258                Bisexual         Sometimes
## 14259          Some other way  Most of the time
## 14260 Heterosexual (straight)             Never
## 14261 Heterosexual (straight)         Sometimes
## 14262                Bisexual  Most of the time
## 14263 Heterosexual (straight)         Sometimes
## 14264                Bisexual         Sometimes
## 14265 Heterosexual (straight)         Sometimes
## 14266 Heterosexual (straight)         Sometimes
## 14267 Heterosexual (straight)         Sometimes
## 14268 Heterosexual (straight)         Sometimes
## 14269 Heterosexual (straight)  Most of the time
## 14270 Heterosexual (straight)         Sometimes
## 14271                Bisexual            Always
## 14272 Heterosexual (straight)            Rarely
## 14273 Heterosexual (straight)            Rarely
## 14274 Heterosexual (straight)  Most of the time
## 14275                Not sure  Most of the time
## 14276 Heterosexual (straight)         Sometimes
## 14277                Bisexual            Always
## 14278 Heterosexual (straight)             Never
## 14279          Gay or lesbian         Sometimes
## 14280                Bisexual         Sometimes
## 14281 Heterosexual (straight)  Most of the time
## 14282                Not sure         Sometimes
## 14283 Heterosexual (straight)             Never
## 14284                Bisexual            Rarely
## 14285 Heterosexual (straight)         Sometimes
##  [ reached 'max' / getOption("max.print") -- omitted 3350 rows ]

2.03 seems like an odd number! We can download the data dictionary and find that the height has been converted to meters. Let’s go ahead and convert this column into feet.

4. mutate() - Create New Variables

This means that we will be creating a new column with new information which is exactly what the mutate function is for. Using the mutate function on the yrbs_filter object, we can multiply every value in the height column by 3.28084 and write that into the new column height_ft. By default, it will create this new column at the end of the table. If we want this column to be next to the original height column instead, we need to specify that using the .after option. We will be writing this new column back to the data object yrbs_filter.

yrbs_filter <- mutate(yrbs_filter, height_ft=height*3.28084, .after=height) 
yrbs_filter
##                           age    sex                   grade height height_ft
## 1                14 years old Female               9th grade   1.65  5.413386
## 2                15 years old   Male               9th grade     NA        NA
## 3                16 years old   Male              11th grade   1.68  5.511811
## 4                17 years old Female              10th grade     NA        NA
## 5                14 years old   Male               9th grade   1.85  6.069554
## 6                16 years old   Male               9th grade   1.80  5.905512
## 7                17 years old   Male              11th grade   1.83  6.003937
## 8                15 years old Female               9th grade   1.52  4.986877
## 9                15 years old   Male               9th grade   1.65  5.413386
## 10               17 years old Female              11th grade   1.63  5.347769
## 11               16 years old   Male              10th grade   1.70  5.577428
## 12               15 years old Female               9th grade   1.57  5.150919
## 13               15 years old   Male               9th grade   1.68  5.511811
## 14      18 years old or older Female              11th grade   1.63  5.347769
## 15               15 years old   Male              10th grade   1.75  5.741470
## 16               14 years old Female               9th grade   1.68  5.511811
## 17               15 years old   Male               9th grade   1.88  6.167979
## 18      18 years old or older   Male              11th grade   1.93  6.332021
## 19               16 years old Female              11th grade   1.65  5.413386
## 20               16 years old Female               9th grade   1.52  4.986877
## 21               16 years old   Male              11th grade     NA        NA
## 22               16 years old   Male              10th grade   1.90  6.233596
## 23      18 years old or older   Male              12th grade   1.73  5.675853
## 24               16 years old Female              11th grade   1.80  5.905512
## 25               17 years old Female              11th grade   1.63  5.347769
## 26               16 years old Female              10th grade   1.65  5.413386
## 27               17 years old Female              12th grade   1.60  5.249344
## 28               17 years old Female              11th grade   1.75  5.741470
## 29               16 years old   Male              10th grade   1.83  6.003937
## 30      18 years old or older Female              12th grade   1.78  5.839895
## 31               17 years old   Male              11th grade   1.75  5.741470
## 32               16 years old Female              11th grade   1.60  5.249344
## 33               16 years old   Male              10th grade   1.78  5.839895
## 34      18 years old or older   Male              12th grade   1.85  6.069554
## 35               17 years old Female              11th grade   1.65  5.413386
## 36               15 years old   Male              10th grade   1.90  6.233596
## 37               17 years old Female              12th grade   1.63  5.347769
## 38      18 years old or older   Male              11th grade   1.93  6.332021
## 39               17 years old   Male              11th grade   1.80  5.905512
## 40               17 years old   Male              10th grade   1.73  5.675853
## 41               17 years old Female              11th grade   1.63  5.347769
## 42               14 years old   Male               9th grade   1.63  5.347769
## 43               16 years old Female               9th grade   1.45  4.757218
## 44               16 years old Female              11th grade   1.57  5.150919
## 45               17 years old   Male              10th grade   1.70  5.577428
## 46               17 years old   Male              11th grade   1.75  5.741470
## 47               17 years old Female              11th grade   1.57  5.150919
## 48               16 years old Female               9th grade   1.65  5.413386
## 49               14 years old Female               9th grade   1.52  4.986877
## 50               17 years old Female              11th grade   1.65  5.413386
## 51               15 years old Female               9th grade   1.63  5.347769
## 52               15 years old   Male               9th grade   1.75  5.741470
## 53               17 years old Female              11th grade   1.65  5.413386
## 54      18 years old or older   Male              12th grade   1.90  6.233596
## 55      18 years old or older   Male              12th grade   1.83  6.003937
## 56      18 years old or older   Male              11th grade   1.83  6.003937
## 57               15 years old Female              10th grade     NA        NA
## 58               17 years old   Male              10th grade   1.80  5.905512
## 59               15 years old   Male               9th grade   1.75  5.741470
## 60               17 years old Female              11th grade     NA        NA
## 61               14 years old   Male               9th grade   1.75  5.741470
## 62               14 years old   Male               9th grade   1.83  6.003937
## 63               17 years old   Male              11th grade   1.78  5.839895
## 64               15 years old   Male              10th grade   1.75  5.741470
## 65               14 years old Female               9th grade   1.55  5.085302
## 66               14 years old Female               9th grade   1.63  5.347769
## 67               17 years old Female              11th grade   1.65  5.413386
## 68               16 years old   Male              10th grade   1.80  5.905512
## 69               17 years old Female              12th grade   1.65  5.413386
## 70               15 years old   Male              10th grade   1.73  5.675853
## 71               17 years old Female              11th grade   1.68  5.511811
## 72               17 years old Female              10th grade   1.65  5.413386
## 73      18 years old or older Female              11th grade   1.65  5.413386
## 74               17 years old Female              11th grade   1.70  5.577428
## 75               17 years old   Male              12th grade   1.75  5.741470
## 76               17 years old Female              11th grade   1.65  5.413386
## 77               15 years old   Male              10th grade   1.88  6.167979
## 78               17 years old   Male              10th grade   1.83  6.003937
## 79               16 years old Female               9th grade   1.55  5.085302
## 80               15 years old   Male               9th grade   1.75  5.741470
## 81               15 years old   Male               9th grade   1.83  6.003937
## 82               16 years old Female              11th grade   1.60  5.249344
## 83               15 years old Female              10th grade   1.57  5.150919
## 84               15 years old   Male               9th grade   1.83  6.003937
## 85               14 years old   Male               9th grade   1.80  5.905512
## 86               15 years old   Male               9th grade   1.73  5.675853
## 87               15 years old Female              10th grade   1.68  5.511811
## 88               16 years old Female              10th grade   1.63  5.347769
## 89               14 years old   Male               9th grade   1.73  5.675853
## 90      18 years old or older   Male              12th grade   1.68  5.511811
## 91               16 years old   Male              10th grade   1.65  5.413386
## 92               15 years old   Male               9th grade   1.60  5.249344
## 93               15 years old Female               9th grade     NA        NA
## 94               17 years old Female              10th grade   1.57  5.150919
## 95               17 years old   Male              11th grade   1.78  5.839895
## 96               16 years old Female              10th grade   1.63  5.347769
## 97               17 years old   Male              11th grade   1.78  5.839895
## 98               16 years old   Male              11th grade   1.78  5.839895
## 99               15 years old   Male              10th grade   1.85  6.069554
## 100              17 years old   Male              11th grade   1.88  6.167979
## 101              16 years old Female              11th grade   1.55  5.085302
## 102              17 years old   Male Ungraded or other grade   1.88  6.167979
## 103              17 years old Female              11th grade   1.65  5.413386
## 104              17 years old   Male              11th grade   1.73  5.675853
## 105              16 years old   Male              11th grade   1.78  5.839895
## 106              16 years old Female              11th grade   1.63  5.347769
## 107              15 years old Female              10th grade   1.60  5.249344
## 108              15 years old Female               9th grade   1.60  5.249344
## 109              15 years old Female              10th grade   1.68  5.511811
## 110              17 years old   Male              11th grade   1.90  6.233596
## 111              16 years old   Male              11th grade   1.85  6.069554
## 112              16 years old   Male              10th grade   1.75  5.741470
## 113              14 years old Female               9th grade   1.50  4.921260
## 114              15 years old Female               9th grade   1.65  5.413386
## 115              15 years old   Male               9th grade   1.78  5.839895
## 116              17 years old Female              10th grade   1.57  5.150919
## 117              15 years old   Male               9th grade   1.85  6.069554
## 118              15 years old Female               9th grade   1.63  5.347769
## 119              15 years old Female              10th grade   1.63  5.347769
## 120              16 years old Female               9th grade   1.70  5.577428
## 121              15 years old Female               9th grade   1.65  5.413386
## 122              17 years old Female              10th grade   1.52  4.986877
## 123              15 years old   Male               9th grade   1.78  5.839895
## 124              15 years old Female               9th grade   1.68  5.511811
## 125     18 years old or older   Male              11th grade   1.93  6.332021
## 126              16 years old Female              11th grade   1.57  5.150919
## 127              15 years old Female              10th grade   1.68  5.511811
## 128              16 years old   Male              10th grade   1.85  6.069554
## 129              17 years old   Male              11th grade   1.75  5.741470
## 130              17 years old Female              11th grade   1.55  5.085302
## 131              17 years old   Male              10th grade   1.85  6.069554
## 132     18 years old or older   Male              12th grade   1.90  6.233596
## 133              17 years old Female              11th grade   1.60  5.249344
## 134              16 years old   Male              10th grade   1.88  6.167979
## 135              17 years old   Male              12th grade   1.83  6.003937
## 136              16 years old Female              11th grade     NA        NA
## 137              17 years old   Male              11th grade   1.85  6.069554
## 138              17 years old   Male              11th grade   1.93  6.332021
## 139              17 years old   Male              11th grade   1.85  6.069554
## 140              16 years old   Male              10th grade   1.73  5.675853
## 141              17 years old   Male              12th grade   1.80  5.905512
## 142              17 years old Female              11th grade   1.65  5.413386
## 143              15 years old   Male              10th grade   1.80  5.905512
## 144              17 years old Female              11th grade   1.60  5.249344
## 145              17 years old   Male              11th grade   1.93  6.332021
## 146              17 years old   Male              11th grade   1.88  6.167979
## 147              16 years old Female              10th grade   1.50  4.921260
## 148              16 years old   Male              11th grade   1.80  5.905512
## 149     18 years old or older Female              11th grade   1.68  5.511811
## 150              15 years old   Male               9th grade   1.78  5.839895
## 151              17 years old   Male              11th grade   1.78  5.839895
## 152              17 years old Female              11th grade   1.57  5.150919
## 153              15 years old Female              10th grade   1.57  5.150919
## 154              14 years old Female               9th grade   1.65  5.413386
## 155              15 years old Female               9th grade   1.60  5.249344
## 156              17 years old Female              11th grade   1.70  5.577428
## 157              17 years old   Male              11th grade   1.88  6.167979
## 158              17 years old Female              10th grade   1.70  5.577428
## 159              15 years old Female              10th grade     NA        NA
## 160              15 years old   Male               9th grade   1.93  6.332021
## 161                      <NA>   Male                    <NA>     NA        NA
## 162     18 years old or older   Male              11th grade   1.83  6.003937
## 163              15 years old Female              10th grade   1.70  5.577428
## 164              15 years old Female               9th grade   1.60  5.249344
## 165              17 years old Female              11th grade   1.60  5.249344
## 166              17 years old Female              11th grade   1.50  4.921260
## 167              17 years old   Male              11th grade   1.70  5.577428
## 168              16 years old Female               9th grade     NA        NA
## 169              15 years old Female               9th grade   1.68  5.511811
## 170              16 years old Female              10th grade     NA        NA
## 171              17 years old   Male              11th grade   1.80  5.905512
## 172              15 years old   Male               9th grade   1.83  6.003937
## 173              17 years old   Male              11th grade   1.78  5.839895
## 174              16 years old Female              10th grade   1.60  5.249344
## 175              15 years old Female               9th grade   1.50  4.921260
## 176              17 years old Female              11th grade   1.68  5.511811
## 177              17 years old Female              11th grade   1.45  4.757218
## 178              16 years old Female              10th grade   1.63  5.347769
## 179              16 years old   Male              10th grade   1.68  5.511811
## 180              16 years old   Male              11th grade   1.83  6.003937
## 181              16 years old Female              10th grade   1.50  4.921260
## 182              15 years old Female               9th grade   1.75  5.741470
## 183              16 years old   Male              10th grade   1.85  6.069554
## 184              17 years old   Male              11th grade   1.83  6.003937
## 185              15 years old Female              10th grade   1.60  5.249344
## 186              17 years old Female              11th grade     NA        NA
## 187              14 years old Female               9th grade   1.60  5.249344
## 188              15 years old Female               9th grade   1.55  5.085302
## 189              16 years old   Male              10th grade   1.68  5.511811
## 190              14 years old Female               9th grade   1.57  5.150919
## 191              17 years old   Male              11th grade   1.73  5.675853
## 192              16 years old Female              10th grade   1.63  5.347769
## 193              14 years old Female               9th grade   1.73  5.675853
## 194              16 years old   Male              11th grade   1.73  5.675853
## 195              15 years old   Male               9th grade   1.75  5.741470
## 196              16 years old   Male              10th grade   1.85  6.069554
## 197              15 years old   Male               9th grade   1.73  5.675853
## 198              16 years old   Male              11th grade   1.70  5.577428
## 199              15 years old Female               9th grade   1.55  5.085302
## 200              17 years old   Male              11th grade   1.75  5.741470
## 201              17 years old Female              11th grade   1.63  5.347769
## 202              16 years old   Male              10th grade   1.85  6.069554
## 203              15 years old Female               9th grade   1.68  5.511811
## 204     18 years old or older Female              11th grade   1.65  5.413386
## 205              16 years old   Male              11th grade   1.80  5.905512
## 206              16 years old   Male              10th grade   1.75  5.741470
## 207              16 years old   Male               9th grade     NA        NA
## 208              17 years old   Male              11th grade   1.85  6.069554
## 209              16 years old   Male              11th grade   1.78  5.839895
## 210              14 years old   Male               9th grade   1.73  5.675853
## 211     18 years old or older   Male              12th grade   1.80  5.905512
## 212              15 years old   Male              10th grade   1.80  5.905512
## 213              17 years old Female              11th grade     NA        NA
## 214              16 years old Female              10th grade   1.57  5.150919
## 215              16 years old   Male               9th grade     NA        NA
## 216              16 years old   Male              10th grade   1.85  6.069554
## 217              15 years old Female               9th grade   1.65  5.413386
## 218              15 years old Female               9th grade   1.70  5.577428
## 219              17 years old Female              11th grade   1.57  5.150919
## 220              17 years old   Male              11th grade   1.65  5.413386
## 221              16 years old   Male              10th grade   1.75  5.741470
## 222              15 years old Female               9th grade   1.63  5.347769
## 223              17 years old Female              11th grade   1.63  5.347769
## 224              17 years old   Male              11th grade   1.93  6.332021
## 225              15 years old   Male               9th grade   1.70  5.577428
## 226              15 years old   Male               9th grade   1.65  5.413386
## 227              16 years old   Male              10th grade   1.90  6.233596
## 228     18 years old or older   Male              11th grade   1.70  5.577428
## 229              16 years old Female              10th grade   1.65  5.413386
## 230              15 years old   Male               9th grade   1.85  6.069554
## 231              17 years old Female              11th grade   1.55  5.085302
## 232              16 years old Female              10th grade   1.57  5.150919
## 233              15 years old   Male               9th grade   1.75  5.741470
## 234              15 years old   Male               9th grade   1.73  5.675853
## 235              15 years old   Male               9th grade   1.65  5.413386
## 236              15 years old Female               9th grade   1.75  5.741470
## 237              15 years old Female               9th grade   1.63  5.347769
## 238              14 years old Female               9th grade   1.68  5.511811
## 239              16 years old Female              10th grade   1.52  4.986877
## 240              14 years old Female               9th grade   1.52  4.986877
## 241              14 years old Female               9th grade   1.52  4.986877
## 242              14 years old   Male               9th grade   1.75  5.741470
## 243              15 years old Female              10th grade   1.57  5.150919
## 244              15 years old   Male               9th grade   1.75  5.741470
## 245              15 years old Female               9th grade   1.65  5.413386
## 246              14 years old   Male               9th grade   1.78  5.839895
## 247              15 years old   Male               9th grade   1.75  5.741470
## 248              14 years old   Male               9th grade   1.78  5.839895
## 249              15 years old   Male               9th grade   1.68  5.511811
## 250              15 years old Female               9th grade   1.70  5.577428
## 251              17 years old Female              11th grade   1.55  5.085302
## 252              15 years old   Male               9th grade   1.83  6.003937
## 253              16 years old   Male              10th grade   1.96  6.430446
## 254              16 years old Female              11th grade   1.70  5.577428
## 255              15 years old Female              10th grade   1.65  5.413386
## 256              16 years old   Male              10th grade     NA        NA
## 257              16 years old   Male              10th grade     NA        NA
## 258              15 years old Female              10th grade   1.68  5.511811
## 259              15 years old   Male              10th grade   1.75  5.741470
## 260              16 years old   Male              10th grade     NA        NA
## 261              16 years old   Male              10th grade   1.68  5.511811
## 262              16 years old   Male              10th grade   1.57  5.150919
## 263              16 years old Female              10th grade   1.63  5.347769
## 264              15 years old Female              10th grade   1.60  5.249344
## 265              17 years old Female              10th grade     NA        NA
## 266              17 years old Female              10th grade   1.55  5.085302
## 267              15 years old   Male              10th grade   1.90  6.233596
## 268              16 years old   Male              10th grade   1.75  5.741470
## 269              15 years old Female              10th grade   1.65  5.413386
## 270              16 years old Female              10th grade   1.78  5.839895
## 271              16 years old   Male              10th grade     NA        NA
## 272              17 years old   Male              10th grade   1.68  5.511811
## 273              17 years old Female              10th grade     NA        NA
## 274              16 years old Female              10th grade   1.55  5.085302
## 275     18 years old or older Female              12th grade   1.60  5.249344
## 276              15 years old Female               9th grade   1.57  5.150919
## 277              15 years old Female               9th grade   1.68  5.511811
## 278     18 years old or older   Male              12th grade   1.88  6.167979
## 279     18 years old or older   Male              12th grade   1.73  5.675853
## 280              15 years old   Male               9th grade   1.78  5.839895
## 281              14 years old   Male               9th grade   1.78  5.839895
## 282              16 years old Female              10th grade   1.45  4.757218
## 283     18 years old or older Female              12th grade   1.57  5.150919
## 284              16 years old   Male               9th grade     NA        NA
## 285              14 years old   Male               9th grade   1.70  5.577428
## 286              15 years old   Male              10th grade   1.75  5.741470
## 287              17 years old   Male              12th grade   1.78  5.839895
## 288     18 years old or older Female              12th grade   1.63  5.347769
## 289              14 years old Female               9th grade   1.63  5.347769
## 290              15 years old   Male               9th grade   1.68  5.511811
## 291              15 years old Female              10th grade   1.63  5.347769
## 292              17 years old Female              12th grade   1.57  5.150919
## 293     18 years old or older   Male              12th grade   1.70  5.577428
## 294              16 years old Female               9th grade   1.57  5.150919
## 295              15 years old Female               9th grade   1.63  5.347769
## 296              17 years old   Male              10th grade   1.63  5.347769
## 297              17 years old Female              12th grade   1.65  5.413386
## 298     18 years old or older Female              12th grade   1.68  5.511811
## 299              14 years old Female               9th grade   1.70  5.577428
## 300              16 years old   Male              11th grade   1.52  4.986877
## 301     18 years old or older Female              12th grade   1.60  5.249344
## 302              14 years old   Male               9th grade     NA        NA
## 303              15 years old   Male               9th grade   1.65  5.413386
## 304              17 years old Female              10th grade   1.70  5.577428
## 305              14 years old   Male               9th grade   1.73  5.675853
## 306              17 years old   Male              10th grade   1.80  5.905512
## 307     18 years old or older   Male              12th grade   1.80  5.905512
## 308     18 years old or older Female              12th grade   1.60  5.249344
## 309              14 years old Female               9th grade   1.57  5.150919
## 310              15 years old   Male               9th grade   1.65  5.413386
## 311              17 years old Female              12th grade   1.57  5.150919
## 312     18 years old or older Female              12th grade   1.52  4.986877
## 313              17 years old Female              12th grade   1.60  5.249344
## 314              14 years old   Male               9th grade     NA        NA
## 315              14 years old Female               9th grade     NA        NA
## 316              17 years old   Male              12th grade   1.80  5.905512
## 317              14 years old   Male               9th grade   1.80  5.905512
## 318              15 years old Female               9th grade   1.65  5.413386
## 319              16 years old   Male              10th grade   1.85  6.069554
## 320     18 years old or older   Male              12th grade   1.83  6.003937
## 321              17 years old   Male               9th grade   1.73  5.675853
## 322              14 years old Female               9th grade     NA        NA
## 323              16 years old Female              10th grade   1.60  5.249344
## 324     18 years old or older Female              12th grade   1.63  5.347769
## 325              15 years old Female               9th grade     NA        NA
## 326              17 years old   Male              10th grade   1.68  5.511811
## 327     18 years old or older   Male              12th grade   1.83  6.003937
## 328              17 years old Female              12th grade   1.63  5.347769
## 329              16 years old   Male               9th grade     NA        NA
## 330              17 years old Female              11th grade     NA        NA
## 331              17 years old Female              12th grade   1.60  5.249344
## 332              14 years old Female               9th grade   1.63  5.347769
## 333              15 years old   Male               9th grade     NA        NA
## 334              17 years old Female              11th grade   1.65  5.413386
## 335              17 years old   Male              12th grade   1.78  5.839895
## 336              17 years old Female              12th grade   1.60  5.249344
## 337              14 years old Female               9th grade   1.63  5.347769
## 338              15 years old   Male               9th grade   1.70  5.577428
## 339              16 years old   Male              10th grade   1.68  5.511811
## 340              17 years old Female              12th grade   1.60  5.249344
## 341     18 years old or older   Male              12th grade   1.78  5.839895
## 342     18 years old or older   Male              12th grade   1.83  6.003937
## 343              17 years old   Male              12th grade     NA        NA
## 344              15 years old   Male               9th grade   1.73  5.675853
## 345              17 years old   Male              10th grade   1.68  5.511811
## 346     18 years old or older Female              12th grade   1.68  5.511811
## 347     18 years old or older   Male              12th grade   1.75  5.741470
## 348              14 years old   Male               9th grade   1.80  5.905512
## 349              15 years old Female               9th grade   1.60  5.249344
## 350              15 years old Female              10th grade   1.73  5.675853
## 351              17 years old Female              12th grade   1.65  5.413386
## 352              17 years old Female              12th grade   1.52  4.986877
## 353              15 years old Female               9th grade   1.52  4.986877
## 354              16 years old Female               9th grade   1.63  5.347769
## 355              16 years old   Male              10th grade   1.78  5.839895
## 356              16 years old   Male              10th grade   1.83  6.003937
## 357              16 years old Female              10th grade   1.65  5.413386
## 358              15 years old Female              10th grade   1.55  5.085302
## 359              17 years old   Male              11th grade   1.70  5.577428
## 360              15 years old   Male              10th grade   1.85  6.069554
## 361              15 years old Female              10th grade   1.50  4.921260
## 362              16 years old   Male              10th grade   1.90  6.233596
## 363              16 years old Female              10th grade   1.68  5.511811
## 364              15 years old Female              10th grade   1.65  5.413386
## 365              16 years old Female              10th grade   1.57  5.150919
## 366              15 years old Female              10th grade   1.57  5.150919
## 367              15 years old   Male               9th grade   1.78  5.839895
## 368              15 years old Female              10th grade   1.55  5.085302
## 369              16 years old Female               9th grade   1.65  5.413386
## 370              15 years old   Male              10th grade   1.80  5.905512
## 371              16 years old Female              10th grade   1.60  5.249344
## 372              15 years old   Male              10th grade   1.70  5.577428
## 373              16 years old   Male              10th grade   1.73  5.675853
## 374              17 years old Female              11th grade   1.60  5.249344
## 375              15 years old Female              10th grade   1.63  5.347769
## 376              15 years old Female              10th grade   1.52  4.986877
## 377              16 years old Female              10th grade   1.65  5.413386
## 378              15 years old Female               9th grade   1.63  5.347769
## 379     18 years old or older   Male              12th grade   1.68  5.511811
## 380              16 years old Female              10th grade   1.63  5.347769
## 381              15 years old Female              10th grade   1.65  5.413386
## 382              15 years old   Male              10th grade   1.80  5.905512
## 383     18 years old or older   Male              12th grade   1.75  5.741470
## 384              16 years old Female              10th grade   1.68  5.511811
## 385              16 years old   Male              10th grade   1.70  5.577428
## 386              15 years old   Male               9th grade   1.73  5.675853
## 387              15 years old   Male              10th grade   1.80  5.905512
## 388              16 years old   Male              11th grade   1.73  5.675853
## 389              16 years old Female              10th grade   1.78  5.839895
## 390              15 years old   Male              10th grade   1.80  5.905512
## 391              15 years old   Male               9th grade   1.73  5.675853
## 392              15 years old   Male              10th grade   1.80  5.905512
## 393              15 years old Female              10th grade   1.63  5.347769
## 394              17 years old Female              12th grade   1.75  5.741470
## 395              15 years old   Male              10th grade   1.73  5.675853
## 396              14 years old   Male               9th grade     NA        NA
## 397              16 years old   Male              10th grade   1.88  6.167979
## 398              16 years old   Male              10th grade   1.73  5.675853
## 399              15 years old   Male              10th grade   1.80  5.905512
## 400              15 years old   Male              10th grade   1.83  6.003937
## 401              15 years old   Male              10th grade   1.63  5.347769
## 402              15 years old   Male              10th grade   1.70  5.577428
## 403              17 years old   Male              11th grade   1.90  6.233596
## 404              15 years old   Male               9th grade   1.78  5.839895
## 405              17 years old   Male              12th grade   1.68  5.511811
## 406              15 years old   Male              10th grade   1.83  6.003937
## 407              15 years old   Male              10th grade   1.85  6.069554
## 408              16 years old Female              10th grade   1.63  5.347769
## 409              14 years old   Male               9th grade   1.90  6.233596
## 410              15 years old   Male               9th grade   1.78  5.839895
## 411              15 years old   Male              10th grade   1.78  5.839895
## 412              17 years old   Male              11th grade   1.75  5.741470
## 413     18 years old or older Female              12th grade   1.68  5.511811
## 414     18 years old or older   Male              12th grade   1.75  5.741470
## 415              14 years old   Male               9th grade   1.68  5.511811
## 416              16 years old Female              11th grade   1.65  5.413386
## 417              15 years old   Male              10th grade   1.78  5.839895
## 418              15 years old   Male              10th grade   1.68  5.511811
## 419              15 years old   Male              10th grade   1.78  5.839895
## 420              17 years old   Male              11th grade   1.73  5.675853
## 421              14 years old   Male               9th grade   1.63  5.347769
## 422              15 years old   Male              10th grade   1.83  6.003937
## 423              15 years old   Male              10th grade   1.88  6.167979
## 424              16 years old   Male              11th grade   1.83  6.003937
## 425              16 years old   Male              11th grade   1.78  5.839895
## 426              15 years old Female              10th grade   1.63  5.347769
## 427              15 years old   Male              10th grade   1.68  5.511811
## 428              17 years old   Male              11th grade   1.70  5.577428
## 429              15 years old   Male              10th grade   1.73  5.675853
## 430     18 years old or older Female              11th grade   1.57  5.150919
## 431              15 years old   Male              10th grade   1.78  5.839895
## 432              17 years old   Male              11th grade   1.75  5.741470
## 433              17 years old   Male              11th grade   1.85  6.069554
## 434              15 years old   Male               9th grade   1.65  5.413386
## 435              16 years old   Male              10th grade   1.83  6.003937
## 436              16 years old Female              11th grade   1.78  5.839895
## 437              16 years old   Male              11th grade   1.80  5.905512
## 438              15 years old   Male              10th grade   1.88  6.167979
## 439              17 years old Female              11th grade   1.63  5.347769
## 440              17 years old   Male              12th grade   1.80  5.905512
## 441              15 years old Female               9th grade   1.75  5.741470
## 442              16 years old   Male              10th grade   1.70  5.577428
## 443              16 years old Female              11th grade     NA        NA
## 444              17 years old   Male              12th grade   1.83  6.003937
## 445              17 years old   Male              12th grade   1.83  6.003937
## 446              15 years old   Male              10th grade   1.75  5.741470
## 447              17 years old Female              11th grade   1.52  4.986877
## 448              17 years old   Male              12th grade   1.80  5.905512
## 449              14 years old Female               9th grade   1.45  4.757218
## 450              14 years old Female               9th grade   1.60  5.249344
## 451              15 years old Female               9th grade     NA        NA
## 452              15 years old Female               9th grade   1.60  5.249344
## 453              14 years old Female               9th grade   1.57  5.150919
## 454              14 years old Female               9th grade   1.65  5.413386
## 455              14 years old Female               9th grade   1.68  5.511811
## 456     18 years old or older   Male              12th grade   1.73  5.675853
## 457              17 years old   Male              12th grade   1.85  6.069554
## 458     18 years old or older   Male              12th grade   1.80  5.905512
## 459     18 years old or older   Male              12th grade   1.75  5.741470
## 460     18 years old or older   Male              12th grade   1.80  5.905512
## 461              17 years old Female              12th grade   1.60  5.249344
## 462              17 years old Female              12th grade   1.65  5.413386
## 463     18 years old or older Female              12th grade   1.70  5.577428
## 464     18 years old or older   Male              12th grade   1.68  5.511811
## 465     18 years old or older   Male              12th grade   1.83  6.003937
## 466     18 years old or older Female              12th grade   1.55  5.085302
## 467              17 years old   Male              12th grade   1.90  6.233596
## 468     18 years old or older   Male              12th grade   1.73  5.675853
## 469              17 years old Female              12th grade   1.57  5.150919
## 470              17 years old Female              12th grade   1.70  5.577428
## 471              15 years old   Male               9th grade   1.70  5.577428
## 472              14 years old   Male               9th grade   1.70  5.577428
## 473              14 years old Female               9th grade   1.55  5.085302
## 474              15 years old Female               9th grade   1.65  5.413386
## 475              15 years old Female               9th grade   1.60  5.249344
## 476              15 years old   Male               9th grade   1.85  6.069554
## 477              14 years old Female               9th grade   1.73  5.675853
## 478              14 years old   Male               9th grade   1.73  5.675853
## 479              14 years old Female               9th grade     NA        NA
## 480     18 years old or older   Male              12th grade     NA        NA
## 481              15 years old   Male               9th grade   1.80  5.905512
## 482              14 years old Female               9th grade   1.63  5.347769
## 483              14 years old   Male               9th grade   1.68  5.511811
## 484              15 years old Female               9th grade   1.55  5.085302
## 485              14 years old Female               9th grade   1.60  5.249344
## 486              15 years old   Male               9th grade   1.75  5.741470
## 487              15 years old Female               9th grade     NA        NA
## 488              15 years old   Male               9th grade   1.70  5.577428
## 489              15 years old   Male              10th grade   1.68  5.511811
## 490              16 years old   Male              10th grade   1.70  5.577428
## 491              15 years old Female              10th grade   1.63  5.347769
## 492              15 years old   Male              10th grade     NA        NA
## 493              16 years old   Male              10th grade   1.78  5.839895
## 494              16 years old Female              10th grade     NA        NA
## 495              16 years old Female              10th grade   1.63  5.347769
## 496              16 years old   Male              10th grade   1.68  5.511811
## 497              16 years old Female              10th grade   1.57  5.150919
## 498              16 years old Female              10th grade   1.65  5.413386
## 499              16 years old   Male              10th grade   1.88  6.167979
## 500              16 years old   Male              10th grade     NA        NA
## 501              16 years old Female              10th grade   1.57  5.150919
## 502              16 years old Female              10th grade     NA        NA
## 503              16 years old Female              10th grade   1.57  5.150919
## 504     18 years old or older Female              12th grade   1.57  5.150919
## 505              17 years old Female              12th grade   1.70  5.577428
## 506              14 years old   Male               9th grade   1.65  5.413386
## 507              17 years old Female              11th grade   1.73  5.675853
## 508              15 years old Female              10th grade   1.57  5.150919
## 509              17 years old Female              12th grade   1.73  5.675853
## 510              17 years old Female              12th grade   1.50  4.921260
## 511              16 years old   Male               9th grade   1.70  5.577428
## 512              16 years old Female              11th grade   1.50  4.921260
## 513     18 years old or older Female              12th grade   1.70  5.577428
## 514              17 years old   Male              12th grade   1.85  6.069554
## 515              15 years old   Male               9th grade   1.75  5.741470
## 516              16 years old Female              11th grade   1.78  5.839895
## 517              15 years old Female              10th grade   1.57  5.150919
## 518              17 years old   Male              12th grade   1.85  6.069554
## 519              17 years old Female              12th grade   1.73  5.675853
## 520              14 years old Female               9th grade   1.65  5.413386
## 521              17 years old Female              11th grade   1.70  5.577428
## 522              16 years old   Male              11th grade   1.88  6.167979
## 523              17 years old Female              11th grade   1.52  4.986877
## 524              15 years old   Male               9th grade     NA        NA
## 525              17 years old Female              11th grade   1.68  5.511811
## 526              16 years old   Male              11th grade   1.93  6.332021
## 527              17 years old   Male              11th grade   1.93  6.332021
## 528              15 years old Female              10th grade   1.63  5.347769
## 529              15 years old Female              10th grade   1.60  5.249344
## 530     18 years old or older Female              12th grade   1.52  4.986877
## 531              17 years old   Male              12th grade   1.75  5.741470
## 532              16 years old   Male              11th grade   1.80  5.905512
## 533              15 years old Female              10th grade   1.63  5.347769
## 534              15 years old   Male              10th grade     NA        NA
## 535              17 years old   Male              12th grade   1.78  5.839895
## 536              16 years old Female              11th grade   1.60  5.249344
## 537              15 years old   Male              10th grade   1.78  5.839895
## 538              16 years old   Male              11th grade   1.70  5.577428
## 539              17 years old Female              12th grade   1.63  5.347769
## 540              17 years old Female              12th grade   1.55  5.085302
## 541              14 years old   Male               9th grade   1.68  5.511811
## 542              16 years old   Male              10th grade   1.80  5.905512
## 543              15 years old   Male              10th grade   1.73  5.675853
## 544              17 years old Female              12th grade   1.60  5.249344
## 545     18 years old or older Female              12th grade   1.75  5.741470
## 546              17 years old Female              11th grade   1.57  5.150919
## 547              17 years old Female              12th grade   1.60  5.249344
## 548              17 years old Female              12th grade   1.65  5.413386
## 549     18 years old or older Female              12th grade   1.63  5.347769
## 550              17 years old Female              12th grade   1.57  5.150919
## 551                      <NA>   Male               9th grade     NA        NA
## 552              15 years old Female               9th grade   1.60  5.249344
## 553              17 years old Female              11th grade   1.65  5.413386
## 554              17 years old Female              12th grade   1.68  5.511811
## 555              15 years old Female               9th grade   1.60  5.249344
## 556              17 years old Female              11th grade   1.63  5.347769
## 557              16 years old   Male              11th grade   1.80  5.905512
## 558              16 years old Female              11th grade     NA        NA
## 559              16 years old   Male              12th grade   1.73  5.675853
## 560              17 years old Female              12th grade   1.45  4.757218
## 561              14 years old Female               9th grade   1.73  5.675853
## 562              17 years old   Male              11th grade     NA        NA
## 563              17 years old Female              11th grade   1.68  5.511811
## 564              15 years old   Male              10th grade     NA        NA
## 565              17 years old Female              12th grade   1.65  5.413386
## 566     18 years old or older Female              12th grade   1.65  5.413386
## 567              14 years old   Male               9th grade   1.75  5.741470
## 568              15 years old Female               9th grade   1.63  5.347769
## 569              16 years old Female              11th grade   1.57  5.150919
## 570              17 years old   Male              12th grade   1.78  5.839895
## 571              16 years old   Male              11th grade   1.75  5.741470
## 572              16 years old Female              11th grade     NA        NA
## 573              16 years old   Male              10th grade   1.83  6.003937
## 574              14 years old   Male              10th grade   1.70  5.577428
## 575     18 years old or older   Male              12th grade   1.83  6.003937
## 576              16 years old   Male              11th grade   1.85  6.069554
## 577              16 years old Female              11th grade     NA        NA
## 578              15 years old Female              10th grade   1.50  4.921260
## 579     18 years old or older   Male              12th grade   1.90  6.233596
## 580              17 years old Female              12th grade     NA        NA
## 581              15 years old Female               9th grade   1.68  5.511811
## 582              17 years old Female              11th grade   1.68  5.511811
## 583              16 years old   Male              11th grade   1.83  6.003937
## 584              16 years old Female              11th grade   1.70  5.577428
## 585              17 years old   Male              12th grade   1.73  5.675853
## 586              17 years old   Male              12th grade   1.75  5.741470
## 587              15 years old   Male               9th grade   1.70  5.577428
## 588              16 years old   Male              11th grade   1.90  6.233596
## 589              16 years old   Male              10th grade   1.73  5.675853
## 590     18 years old or older Female              12th grade   1.60  5.249344
## 591              17 years old   Male              12th grade   1.73  5.675853
## 592              15 years old Female               9th grade   1.57  5.150919
## 593              14 years old Female               9th grade   1.60  5.249344
## 594              15 years old Female              10th grade   1.60  5.249344
## 595              16 years old Female              10th grade   1.55  5.085302
## 596              17 years old   <NA>              12th grade     NA        NA
## 597              17 years old   Male              12th grade   1.73  5.675853
## 598              16 years old Female              11th grade   1.57  5.150919
## 599              16 years old   Male              10th grade   1.83  6.003937
## 600              16 years old Female              10th grade   1.73  5.675853
## 601              17 years old   Male              12th grade   1.85  6.069554
## 602              17 years old Female              12th grade   1.52  4.986877
## 603              14 years old Female               9th grade   1.60  5.249344
## 604              16 years old Female              11th grade   1.50  4.921260
## 605              14 years old   Male               9th grade     NA        NA
## 606              14 years old Female               9th grade   1.57  5.150919
## 607              15 years old Female              10th grade   1.57  5.150919
## 608              16 years old   Male              10th grade   1.78  5.839895
## 609              17 years old   Male              12th grade   1.75  5.741470
## 610              15 years old Female               9th grade   1.55  5.085302
## 611              14 years old Female               9th grade   1.60  5.249344
## 612              16 years old   Male              11th grade   1.75  5.741470
## 613     18 years old or older Female              12th grade     NA        NA
## 614     18 years old or older   Male              12th grade   1.80  5.905512
## 615              15 years old   Male               9th grade   1.68  5.511811
## 616              14 years old   Male               9th grade     NA        NA
## 617              16 years old   Male              11th grade   1.83  6.003937
## 618              14 years old Female               9th grade   1.65  5.413386
## 619              17 years old Female              11th grade   1.68  5.511811
## 620              17 years old Female              11th grade   1.55  5.085302
## 621              16 years old Female              11th grade   1.60  5.249344
## 622              16 years old   Male              10th grade   1.80  5.905512
## 623              16 years old   Male              11th grade   1.78  5.839895
## 624              16 years old Female              10th grade     NA        NA
## 625                      <NA> Female              11th grade     NA        NA
## 626              14 years old Female               9th grade   1.63  5.347769
## 627              15 years old   Male              10th grade   1.63  5.347769
## 628              16 years old   Male              11th grade   1.83  6.003937
## 629              16 years old   Male              11th grade   1.78  5.839895
## 630              16 years old Female              11th grade   1.75  5.741470
## 631              14 years old   Male               9th grade   1.68  5.511811
## 632              15 years old Female              10th grade   1.63  5.347769
## 633              17 years old Female              11th grade   1.75  5.741470
## 634              17 years old   Male              11th grade   1.75  5.741470
## 635              17 years old Female              11th grade     NA        NA
## 636              15 years old Female               9th grade   1.63  5.347769
## 637              16 years old Female              11th grade   1.63  5.347769
## 638              17 years old Female              11th grade   1.52  4.986877
## 639              15 years old Female              10th grade   1.50  4.921260
## 640              16 years old Female              11th grade   1.50  4.921260
## 641              14 years old   Male               9th grade   1.90  6.233596
## 642              16 years old Female              10th grade   1.50  4.921260
## 643              16 years old Female              11th grade   1.60  5.249344
## 644              16 years old Female              10th grade   1.57  5.150919
## 645              17 years old   Male              11th grade   1.85  6.069554
## 646              16 years old   Male              11th grade   1.88  6.167979
## 647              16 years old Female              11th grade   1.70  5.577428
## 648              16 years old Female              11th grade   1.70  5.577428
## 649              15 years old   Male              10th grade   1.80  5.905512
## 650              17 years old   Male              11th grade   1.75  5.741470
## 651              17 years old   Male              11th grade   1.75  5.741470
## 652              14 years old   Male               9th grade   1.83  6.003937
## 653              16 years old   Male              10th grade   1.75  5.741470
## 654              16 years old Female              11th grade   1.70  5.577428
## 655              16 years old Female              11th grade   1.65  5.413386
## 656              14 years old   Male               9th grade   1.73  5.675853
## 657              15 years old Female              10th grade   1.65  5.413386
## 658              17 years old   <NA>              11th grade     NA        NA
## 659              16 years old   Male              11th grade   1.68  5.511811
## 660              14 years old   Male               9th grade   1.68  5.511811
## 661              16 years old   Male              10th grade     NA        NA
## 662              16 years old Female              11th grade   1.63  5.347769
## 663              16 years old Female              11th grade   1.65  5.413386
## 664              14 years old   Male               9th grade   1.73  5.675853
## 665              15 years old Female              10th grade   1.63  5.347769
## 666              17 years old   Male              11th grade   1.78  5.839895
## 667              16 years old   Male              11th grade   1.70  5.577428
## 668              15 years old   Male              10th grade   1.65  5.413386
## 669              16 years old   Male              11th grade   1.90  6.233596
## 670              16 years old   Male              10th grade   1.80  5.905512
## 671              16 years old Female              11th grade   1.70  5.577428
## 672              16 years old Female              11th grade   1.65  5.413386
## 673              15 years old Female               9th grade   1.63  5.347769
## 674              15 years old   Male              10th grade   1.80  5.905512
## 675              17 years old   Male              11th grade   1.83  6.003937
## 676              16 years old   Male              11th grade   1.78  5.839895
## 677              16 years old Female              11th grade   1.60  5.249344
## 678              14 years old Female               9th grade   1.68  5.511811
## 679              16 years old   Male              11th grade   1.78  5.839895
## 680              15 years old   Male              10th grade   1.80  5.905512
## 681              16 years old Female              11th grade   1.60  5.249344
## 682              15 years old Female               9th grade   1.63  5.347769
## 683              15 years old Female              10th grade   1.70  5.577428
## 684              16 years old Female              11th grade   1.73  5.675853
## 685              16 years old Female              11th grade   1.68  5.511811
## 686              16 years old   Male              10th grade   1.68  5.511811
## 687              16 years old Female              11th grade   1.63  5.347769
## 688              16 years old Female              10th grade   1.68  5.511811
## 689              16 years old Female              11th grade   1.65  5.413386
## 690              15 years old   Male               9th grade   1.68  5.511811
## 691              16 years old Female              10th grade     NA        NA
## 692              16 years old   Male              11th grade     NA        NA
## 693              16 years old Female              11th grade   1.68  5.511811
## 694              15 years old Female              10th grade   1.63  5.347769
## 695              17 years old Female              12th grade     NA        NA
## 696              16 years old   Male              11th grade   1.80  5.905512
## 697              16 years old Female              11th grade   1.63  5.347769
## 698              15 years old   Male              10th grade   1.88  6.167979
## 699              17 years old   Male              11th grade   1.83  6.003937
## 700              17 years old Female              11th grade   1.68  5.511811
## 701              15 years old Female              10th grade   1.75  5.741470
## 702              16 years old   Male              11th grade   1.75  5.741470
## 703              17 years old Female              11th grade   1.50  4.921260
## 704              15 years old Female              10th grade   1.60  5.249344
## 705              16 years old Female              11th grade   1.73  5.675853
## 706              15 years old Female               9th grade   1.63  5.347769
## 707              15 years old   Male              10th grade   1.80  5.905512
## 708              16 years old   Male              11th grade   1.83  6.003937
## 709              17 years old   Male              11th grade   1.78  5.839895
## 710              15 years old   Male              10th grade   1.68  5.511811
## 711              16 years old Female              11th grade   1.60  5.249344
## 712              17 years old   Male              11th grade   1.75  5.741470
## 713              16 years old Female              11th grade   1.57  5.150919
## 714              16 years old   Male              10th grade   1.73  5.675853
## 715              16 years old   Male              11th grade   1.88  6.167979
## 716              16 years old Female              10th grade   1.55  5.085302
## 717              17 years old   Male Ungraded or other grade   1.50  4.921260
## 718              16 years old Female              11th grade   1.52  4.986877
## 719              15 years old   Male               9th grade   1.73  5.675853
## 720              16 years old   Male              10th grade   1.78  5.839895
## 721              16 years old Female              11th grade   1.52  4.986877
## 722              15 years old   Male              10th grade   1.63  5.347769
## 723              17 years old   Male              11th grade   1.75  5.741470
## 724              15 years old Female                    <NA>   1.55  5.085302
## 725              16 years old Female              10th grade   1.60  5.249344
## 726              16 years old Female              11th grade   1.57  5.150919
## 727              15 years old Female              10th grade   1.63  5.347769
## 728              15 years old Female               9th grade   1.47  4.822835
## 729              15 years old   Male              10th grade   1.75  5.741470
## 730              17 years old   Male              11th grade   1.85  6.069554
## 731              16 years old   Male              10th grade   1.88  6.167979
## 732              16 years old Female              11th grade   1.68  5.511811
## 733              15 years old Female               9th grade   1.63  5.347769
## 734              15 years old Female              10th grade     NA        NA
## 735              15 years old Female              10th grade   1.65  5.413386
## 736              16 years old Female              11th grade   1.63  5.347769
## 737              15 years old   Male              10th grade   1.60  5.249344
## 738              16 years old   Male              11th grade   1.73  5.675853
## 739     18 years old or older Female Ungraded or other grade     NA        NA
## 740              15 years old   Male              10th grade   1.90  6.233596
## 741              15 years old   Male              10th grade   1.73  5.675853
## 742              17 years old Female              11th grade     NA        NA
## 743              15 years old   Male              10th grade   1.70  5.577428
## 744              17 years old   Male              11th grade   1.83  6.003937
## 745              17 years old Female              12th grade   1.63  5.347769
## 746     18 years old or older Female              12th grade   1.60  5.249344
## 747              17 years old Female              12th grade   1.57  5.150919
## 748     18 years old or older Female              12th grade   1.63  5.347769
## 749              17 years old   Male              12th grade     NA        NA
## 750              17 years old   Male              12th grade   1.75  5.741470
## 751     18 years old or older   Male              12th grade   1.78  5.839895
## 752              17 years old Female              12th grade   1.60  5.249344
## 753     18 years old or older   Male              12th grade   1.78  5.839895
## 754              17 years old Female              12th grade   1.63  5.347769
## 755     18 years old or older   Male              12th grade   1.88  6.167979
## 756              17 years old   Male              12th grade   1.65  5.413386
## 757              17 years old Female              12th grade     NA        NA
## 758     18 years old or older   Male              12th grade   1.73  5.675853
## 759     18 years old or older   Male              12th grade   1.85  6.069554
## 760     18 years old or older Female              12th grade   1.65  5.413386
## 761     18 years old or older   Male              12th grade   1.88  6.167979
## 762              16 years old Female              12th grade   1.57  5.150919
## 763              17 years old   Male              12th grade   1.80  5.905512
## 764              17 years old   Male              12th grade   1.73  5.675853
## 765              17 years old   Male              12th grade   1.88  6.167979
## 766     18 years old or older Female              12th grade   1.63  5.347769
## 767              17 years old Female              12th grade   1.63  5.347769
## 768     18 years old or older   Male              12th grade   1.85  6.069554
## 769     18 years old or older   Male              12th grade   1.80  5.905512
## 770     18 years old or older   Male              12th grade   1.83  6.003937
## 771              17 years old   Male              12th grade   1.83  6.003937
## 772              17 years old Female              12th grade   1.63  5.347769
## 773              17 years old Female              12th grade   1.65  5.413386
## 774              17 years old Female              12th grade   1.60  5.249344
## 775              17 years old   Male              12th grade   1.60  5.249344
## 776     18 years old or older   Male              12th grade   1.75  5.741470
## 777              17 years old Female              12th grade   1.68  5.511811
## 778              17 years old Female              12th grade   1.55  5.085302
## 779              17 years old   Male              12th grade   1.83  6.003937
## 780              17 years old Female              12th grade   1.70  5.577428
## 781              15 years old Female               9th grade     NA        NA
## 782     18 years old or older Female              12th grade     NA        NA
## 783              17 years old Female                    <NA>     NA        NA
## 784     18 years old or older Female              12th grade     NA        NA
## 785              14 years old   Male               9th grade     NA        NA
## 786              15 years old Female               9th grade     NA        NA
## 787              16 years old Female                    <NA>     NA        NA
## 788              17 years old Female              12th grade     NA        NA
## 789     18 years old or older Female              12th grade     NA        NA
## 790              16 years old   Male                    <NA>     NA        NA
## 791              16 years old   Male                    <NA>     NA        NA
## 792     18 years old or older Female              12th grade     NA        NA
## 793              16 years old Female                    <NA>     NA        NA
## 794              15 years old Female               9th grade     NA        NA
## 795              15 years old Female               9th grade     NA        NA
## 796              17 years old   Male                    <NA>     NA        NA
## 797              16 years old Female                    <NA>     NA        NA
## 798              16 years old   Male                    <NA>     NA        NA
## 799              16 years old   Male                    <NA>     NA        NA
## 800              16 years old Female                    <NA>     NA        NA
## 801              17 years old   Male              12th grade     NA        NA
## 802     18 years old or older Female              12th grade     NA        NA
## 803              15 years old Female               9th grade     NA        NA
## 804              15 years old Female               9th grade     NA        NA
## 805              17 years old Female                    <NA>     NA        NA
## 806              17 years old Female              12th grade     NA        NA
## 807     18 years old or older Female              12th grade     NA        NA
## 808              17 years old Female              12th grade     NA        NA
## 809              15 years old   <NA>               9th grade     NA        NA
## 810              17 years old Female              12th grade   1.60  5.249344
## 811              17 years old   Male              12th grade   1.78  5.839895
## 812              17 years old Female              12th grade   1.57  5.150919
## 813              17 years old   Male              12th grade   1.73  5.675853
## 814     18 years old or older   Male              12th grade   1.80  5.905512
## 815              17 years old Female              12th grade   1.63  5.347769
## 816              15 years old   Male               9th grade   1.83  6.003937
## 817              15 years old   Male               9th grade   1.78  5.839895
## 818              16 years old   Male              11th grade   1.70  5.577428
## 819              17 years old Female              11th grade   1.68  5.511811
## 820              17 years old   Male              12th grade   1.83  6.003937
## 821              14 years old Female               9th grade   1.70  5.577428
## 822              14 years old   Male               9th grade   1.73  5.675853
## 823              16 years old Female              11th grade   1.57  5.150919
## 824              17 years old   Male              12th grade   1.70  5.577428
## 825              14 years old Female               9th grade   1.65  5.413386
## 826              16 years old Female              11th grade   1.65  5.413386
## 827              15 years old   Male               9th grade   1.80  5.905512
## 828              17 years old Female              11th grade   1.55  5.085302
## 829              17 years old   Male              11th grade   1.80  5.905512
## 830     18 years old or older Female              12th grade   1.73  5.675853
## 831              16 years old Female              11th grade   1.57  5.150919
## 832              17 years old   Male              12th grade   1.83  6.003937
## 833              15 years old   Male               9th grade   1.88  6.167979
## 834              17 years old   Male              11th grade     NA        NA
## 835              15 years old Female               9th grade   1.55  5.085302
## 836              15 years old   Male               9th grade   1.75  5.741470
## 837              17 years old Female              11th grade   1.57  5.150919
## 838              15 years old   Male               9th grade   1.65  5.413386
## 839              16 years old   Male              11th grade     NA        NA
## 840              15 years old   Male               9th grade   1.73  5.675853
## 841              15 years old   Male               9th grade   1.57  5.150919
## 842              16 years old Female              11th grade     NA        NA
## 843     18 years old or older   Male              12th grade   1.78  5.839895
## 844              16 years old   Male              11th grade   1.78  5.839895
## 845              15 years old   Male               9th grade   1.65  5.413386
## 846              16 years old Female              11th grade   1.65  5.413386
## 847              17 years old   Male              12th grade   1.85  6.069554
## 848     18 years old or older   Male              12th grade   1.73  5.675853
## 849              14 years old Female               9th grade     NA        NA
## 850              17 years old Female              12th grade   1.68  5.511811
## 851              15 years old Female              10th grade   1.70  5.577428
## 852              14 years old   Male               9th grade   1.78  5.839895
## 853              16 years old   Male              11th grade   1.83  6.003937
## 854              15 years old Female               9th grade   1.57  5.150919
## 855              17 years old   Male              11th grade   1.85  6.069554
## 856              17 years old   Male              12th grade   1.73  5.675853
## 857              15 years old Female              10th grade   1.32  4.330709
## 858              15 years old Female               9th grade   1.70  5.577428
## 859              16 years old   Male              11th grade   1.78  5.839895
## 860              17 years old   Male              12th grade   1.55  5.085302
## 861              15 years old Female               9th grade   1.73  5.675853
## 862              17 years old Female              11th grade   1.78  5.839895
## 863     18 years old or older   Male              12th grade   1.65  5.413386
## 864              14 years old   Male               9th grade   1.78  5.839895
## 865     18 years old or older Female              12th grade   1.65  5.413386
## 866              15 years old Female              10th grade   1.52  4.986877
## 867              14 years old Female               9th grade   1.60  5.249344
## 868              17 years old   Male              11th grade   1.80  5.905512
## 869              17 years old   Male              12th grade   1.65  5.413386
## 870              16 years old Female              10th grade   1.55  5.085302
## 871              14 years old Female               9th grade   1.68  5.511811
## 872              16 years old Female              11th grade   1.73  5.675853
## 873     18 years old or older Female              12th grade     NA        NA
## 874              16 years old Female              10th grade   1.70  5.577428
## 875              14 years old   Male               9th grade     NA        NA
## 876              16 years old   Male              11th grade   1.73  5.675853
## 877              17 years old   Male              12th grade   1.88  6.167979
## 878              16 years old   Male              10th grade   1.68  5.511811
## 879              14 years old   Male               9th grade   1.70  5.577428
## 880              16 years old   Male              11th grade   1.68  5.511811
## 881              14 years old Female               9th grade     NA        NA
## 882              17 years old   Male              11th grade   1.78  5.839895
## 883              17 years old   Male              12th grade   1.73  5.675853
## 884              15 years old   Male              10th grade   1.73  5.675853
## 885              15 years old   Male               9th grade   1.83  6.003937
## 886              16 years old   Male              11th grade     NA        NA
## 887              17 years old Female              12th grade   1.70  5.577428
## 888              16 years old   Male              10th grade   1.75  5.741470
## 889              14 years old   Male               9th grade   1.70  5.577428
## 890              17 years old Female              12th grade   1.55  5.085302
## 891              14 years old   Male               9th grade   1.70  5.577428
## 892              17 years old   Male              11th grade     NA        NA
## 893              17 years old Female              12th grade   1.63  5.347769
## 894              15 years old Female              10th grade     NA        NA
## 895              14 years old   Male               9th grade   1.50  4.921260
## 896              16 years old Female              11th grade     NA        NA
## 897              17 years old   Male              12th grade   1.68  5.511811
## 898              15 years old   Male              10th grade   1.55  5.085302
## 899              14 years old   <NA>               9th grade     NA        NA
## 900              16 years old Female              11th grade   1.57  5.150919
## 901              17 years old   Male              12th grade   1.60  5.249344
## 902              15 years old Female              10th grade   1.70  5.577428
## 903              14 years old Female               9th grade   1.52  4.986877
## 904              16 years old Female              11th grade   1.60  5.249344
## 905     18 years old or older   Male              12th grade   1.78  5.839895
## 906              15 years old Female              10th grade     NA        NA
## 907              14 years old   Male               9th grade   1.70  5.577428
## 908     18 years old or older   Male              12th grade   1.90  6.233596
## 909              15 years old   Male              10th grade   1.68  5.511811
## 910              14 years old   Male               9th grade   1.75  5.741470
## 911              14 years old Female               9th grade   1.60  5.249344
## 912     18 years old or older Female              12th grade   1.65  5.413386
## 913              16 years old Female              10th grade   1.50  4.921260
## 914              15 years old Female               9th grade   1.63  5.347769
## 915              16 years old   Male              10th grade   1.68  5.511811
## 916              15 years old Female               9th grade   1.70  5.577428
## 917              17 years old   Male              12th grade   1.83  6.003937
## 918              16 years old Female              10th grade   1.60  5.249344
## 919              14 years old   Male               9th grade   1.75  5.741470
## 920              17 years old   Male              12th grade     NA        NA
## 921              15 years old   Male              10th grade   1.65  5.413386
## 922              14 years old   Male               9th grade   1.80  5.905512
## 923              14 years old   Male               9th grade   1.65  5.413386
## 924     18 years old or older   Male              12th grade   1.75  5.741470
## 925              15 years old   Male              10th grade   1.80  5.905512
## 926              15 years old   Male               9th grade   1.65  5.413386
## 927     18 years old or older Female              12th grade   1.50  4.921260
## 928              16 years old   Male              10th grade     NA        NA
## 929              14 years old   Male               9th grade   1.78  5.839895
## 930              16 years old   Male              11th grade   1.68  5.511811
## 931              17 years old Female              12th grade     NA        NA
## 932              15 years old Female              10th grade   1.65  5.413386
## 933              17 years old Female              12th grade   1.78  5.839895
## 934              14 years old Female               9th grade   1.70  5.577428
## 935              15 years old Female              10th grade     NA        NA
## 936              16 years old   Male              11th grade   1.75  5.741470
## 937                      <NA>   Male              11th grade     NA        NA
## 938              17 years old   Male              12th grade   1.78  5.839895
## 939     18 years old or older   Male              12th grade   1.65  5.413386
## 940              16 years old   Male              11th grade   1.73  5.675853
## 941              16 years old Female              11th grade   1.52  4.986877
## 942              16 years old Female              11th grade   1.55  5.085302
## 943              17 years old   Male              12th grade   1.75  5.741470
## 944     18 years old or older   Male              12th grade   1.73  5.675853
## 945              16 years old   Male              11th grade   1.70  5.577428
## 946              17 years old   Male              12th grade     NA        NA
## 947              17 years old Female              12th grade   1.57  5.150919
## 948              17 years old   Male              12th grade   1.78  5.839895
## 949              16 years old   Male              11th grade   1.73  5.675853
## 950              17 years old Female              12th grade   1.65  5.413386
## 951     18 years old or older Female              12th grade     NA        NA
## 952              17 years old Female              11th grade   1.55  5.085302
## 953              17 years old Female              12th grade   1.52  4.986877
## 954              16 years old   Male              11th grade   1.80  5.905512
## 955              16 years old   Male              11th grade   1.78  5.839895
## 956              16 years old Female              11th grade   1.65  5.413386
## 957              16 years old   Male              11th grade   1.65  5.413386
## 958              16 years old   Male              11th grade   1.78  5.839895
## 959              16 years old   Male              11th grade   1.73  5.675853
## 960              17 years old   Male              12th grade   1.68  5.511811
## 961     18 years old or older Female              12th grade   1.57  5.150919
## 962              17 years old Female              11th grade   1.60  5.249344
## 963              17 years old Female              12th grade   1.57  5.150919
## 964              16 years old   Male              11th grade   1.80  5.905512
## 965              16 years old Female              11th grade   1.60  5.249344
## 966              17 years old   Male              12th grade   1.73  5.675853
## 967     18 years old or older Female              12th grade   1.52  4.986877
## 968              17 years old   Male              12th grade   1.73  5.675853
## 969     18 years old or older   Male              12th grade   1.68  5.511811
## 970              16 years old   Male              11th grade   1.75  5.741470
## 971              17 years old   Male              11th grade   1.78  5.839895
## 972              16 years old   Male              11th grade   1.78  5.839895
## 973              17 years old Female              12th grade     NA        NA
## 974              16 years old Female              11th grade     NA        NA
## 975              17 years old Female              12th grade   1.73  5.675853
## 976              17 years old Female              12th grade   1.55  5.085302
## 977     18 years old or older   Male              12th grade   1.70  5.577428
## 978              15 years old   Male               9th grade   1.73  5.675853
## 979              16 years old Female              10th grade   1.55  5.085302
## 980              16 years old Female              11th grade   1.70  5.577428
## 981              17 years old Female              12th grade   1.57  5.150919
## 982              15 years old   Male               9th grade   1.68  5.511811
## 983              15 years old Female              10th grade   1.50  4.921260
## 984              16 years old   Male              11th grade   1.78  5.839895
## 985              17 years old   Male              12th grade   1.80  5.905512
## 986              14 years old   Male               9th grade   1.80  5.905512
## 987              16 years old   Male              10th grade   1.80  5.905512
## 988              16 years old   Male              11th grade   1.70  5.577428
## 989              17 years old Female              12th grade   1.60  5.249344
## 990              14 years old   Male               9th grade   1.78  5.839895
## 991              15 years old   Male              10th grade   1.83  6.003937
## 992              16 years old Female              11th grade   1.75  5.741470
## 993     18 years old or older   Male              12th grade   1.88  6.167979
## 994              15 years old Female               9th grade   1.65  5.413386
## 995              17 years old Female              11th grade   1.57  5.150919
## 996              17 years old Female              12th grade     NA        NA
## 997              14 years old   Male               9th grade   1.65  5.413386
## 998              15 years old Female              10th grade   1.63  5.347769
## 999              16 years old Female              11th grade     NA        NA
## 1000             17 years old Female              12th grade   1.52  4.986877
## 1001             15 years old   Male               9th grade     NA        NA
## 1002             15 years old Female              10th grade   1.63  5.347769
## 1003             17 years old   Male              11th grade   1.68  5.511811
## 1004             17 years old Female              12th grade     NA        NA
## 1005             14 years old Female               9th grade   1.70  5.577428
## 1006             15 years old   Male              10th grade   1.70  5.577428
## 1007             16 years old   Male              11th grade   1.73  5.675853
## 1008             17 years old Female              12th grade   1.47  4.822835
## 1009             14 years old Female               9th grade   1.57  5.150919
## 1010             15 years old   Male              10th grade   1.83  6.003937
## 1011             16 years old Female              11th grade     NA        NA
## 1012             17 years old Female              12th grade   1.55  5.085302
## 1013             14 years old Female               9th grade   1.57  5.150919
## 1014             16 years old Female              10th grade   1.50  4.921260
## 1015             17 years old   Male              11th grade     NA        NA
## 1016             17 years old Female              12th grade     NA        NA
## 1017             14 years old   Male               9th grade   1.68  5.511811
## 1018             16 years old Female              10th grade   1.63  5.347769
## 1019             16 years old Female              11th grade   1.52  4.986877
## 1020             17 years old   Male              12th grade   1.73  5.675853
## 1021             14 years old   Male               9th grade   1.60  5.249344
## 1022             15 years old Female              10th grade   1.65  5.413386
## 1023             16 years old Female              11th grade   1.68  5.511811
## 1024             17 years old Female              12th grade   1.65  5.413386
## 1025             14 years old Female               9th grade     NA        NA
## 1026             16 years old   Male              11th grade   1.68  5.511811
## 1027             17 years old   Male              12th grade   1.70  5.577428
## 1028             15 years old   Male               9th grade   1.73  5.675853
## 1029             15 years old   Male              10th grade   1.83  6.003937
## 1030             16 years old Female              11th grade     NA        NA
## 1031             16 years old   Male              11th grade   1.73  5.675853
## 1032    18 years old or older Female              12th grade   1.57  5.150919
## 1033             15 years old   Male              10th grade   1.68  5.511811
## 1034             16 years old Female              11th grade   1.60  5.249344
## 1035             17 years old   Male              12th grade   1.83  6.003937
## 1036             14 years old   Male               9th grade   1.70  5.577428
## 1037             15 years old Female              10th grade   1.57  5.150919
## 1038             16 years old Female              11th grade   1.55  5.085302
## 1039             17 years old   Male              12th grade   1.65  5.413386
## 1040             14 years old   Male               9th grade   1.73  5.675853
## 1041             15 years old Female              10th grade   1.57  5.150919
## 1042             16 years old Female              11th grade   1.60  5.249344
## 1043             17 years old   Male              12th grade   1.80  5.905512
## 1044             15 years old   Male               9th grade   1.83  6.003937
## 1045             15 years old Female              10th grade     NA        NA
## 1046             16 years old Female              11th grade     NA        NA
## 1047             17 years old   Male              12th grade   1.68  5.511811
## 1048             15 years old Female              10th grade     NA        NA
## 1049             15 years old   Male              10th grade   1.80  5.905512
## 1050             16 years old   Male              11th grade   1.73  5.675853
## 1051             14 years old Female               9th grade   1.65  5.413386
## 1052             16 years old   Male              10th grade   1.75  5.741470
## 1053             16 years old Female              11th grade   1.60  5.249344
## 1054             15 years old Female               9th grade   1.60  5.249344
## 1055             15 years old Female              10th grade     NA        NA
## 1056             16 years old Female              11th grade     NA        NA
## 1057             17 years old   Male              12th grade   1.78  5.839895
## 1058             14 years old   Male               9th grade   1.60  5.249344
## 1059             15 years old Female              10th grade   1.50  4.921260
## 1060             16 years old Female              11th grade   1.63  5.347769
## 1061             17 years old Female              12th grade   1.55  5.085302
## 1062             14 years old   Male               9th grade     NA        NA
## 1063             15 years old   Male              10th grade   1.83  6.003937
## 1064             16 years old Female              11th grade   1.60  5.249344
## 1065             17 years old   Male              12th grade   1.75  5.741470
## 1066             15 years old   Male               9th grade   1.73  5.675853
## 1067             16 years old   Male              10th grade   1.65  5.413386
## 1068             16 years old   Male              11th grade   1.68  5.511811
## 1069             17 years old   Male              12th grade   1.83  6.003937
## 1070             15 years old Female               9th grade     NA        NA
## 1071             16 years old Female              11th grade   1.68  5.511811
## 1072             17 years old   Male              12th grade   1.78  5.839895
## 1073             15 years old Female               9th grade   1.60  5.249344
## 1074             15 years old   Male              10th grade   1.78  5.839895
## 1075             16 years old Female              11th grade     NA        NA
## 1076    18 years old or older Female              12th grade   1.52  4.986877
## 1077             15 years old   Male              10th grade   1.80  5.905512
## 1078             17 years old Female              11th grade   1.50  4.921260
## 1079    18 years old or older Female              12th grade   1.57  5.150919
## 1080             14 years old Female               9th grade   1.65  5.413386
## 1081             16 years old   Male              11th grade   1.80  5.905512
## 1082             17 years old   Male              12th grade   1.70  5.577428
## 1083             14 years old   Male               9th grade   1.73  5.675853
## 1084             15 years old Female              10th grade   1.52  4.986877
## 1085             16 years old Female              11th grade   1.50  4.921260
## 1086    18 years old or older   Male              12th grade   1.63  5.347769
## 1087             15 years old Female              10th grade   1.50  4.921260
## 1088             15 years old Female               9th grade   1.68  5.511811
## 1089             14 years old Female               9th grade     NA        NA
## 1090             14 years old Female               9th grade     NA        NA
## 1091             17 years old   Male              12th grade     NA        NA
## 1092             17 years old   Male              12th grade     NA        NA
## 1093    18 years old or older Female              12th grade     NA        NA
## 1094    18 years old or older Female              12th grade   1.68  5.511811
## 1095             14 years old   Male               9th grade   1.73  5.675853
## 1096             17 years old Female              11th grade   1.57  5.150919
## 1097             15 years old Female              10th grade   1.63  5.347769
## 1098             14 years old Female               9th grade   1.57  5.150919
## 1099             14 years old   Male               9th grade   1.73  5.675853
## 1100             15 years old Female              10th grade   1.63  5.347769
## 1101             17 years old   Male              12th grade   1.78  5.839895
## 1102             17 years old Female              12th grade   1.73  5.675853
## 1103             14 years old Female               9th grade   1.52  4.986877
## 1104             16 years old   Male              11th grade   1.63  5.347769
## 1105             15 years old Female              10th grade   1.60  5.249344
## 1106             15 years old Female               9th grade   1.63  5.347769
## 1107             15 years old   Male               9th grade   1.90  6.233596
## 1108             15 years old   Male              10th grade   1.78  5.839895
## 1109             17 years old   Male              12th grade   1.75  5.741470
## 1110             17 years old Female              12th grade   1.63  5.347769
## 1111             14 years old   Male               9th grade   1.80  5.905512
## 1112             16 years old   Male              11th grade   1.78  5.839895
## 1113             15 years old   Male              10th grade   1.68  5.511811
## 1114             15 years old   Male               9th grade   1.80  5.905512
## 1115             15 years old Female               9th grade   1.55  5.085302
## 1116             16 years old   Male              10th grade   1.78  5.839895
## 1117             17 years old Female              12th grade     NA        NA
## 1118    18 years old or older   Male              12th grade   1.78  5.839895
## 1119             13 years old   Male               9th grade   1.68  5.511811
## 1120             16 years old Female              11th grade   1.52  4.986877
## 1121             15 years old   Male              10th grade   1.73  5.675853
## 1122             15 years old Female               9th grade     NA        NA
## 1123             15 years old   Male               9th grade   1.68  5.511811
## 1124             16 years old Female              10th grade   1.57  5.150919
## 1125             17 years old Female              12th grade   1.63  5.347769
## 1126             17 years old Female              12th grade   1.68  5.511811
## 1127             14 years old   Male               9th grade   1.78  5.839895
## 1128             16 years old   Male              10th grade   1.80  5.905512
## 1129             15 years old Female               9th grade   1.73  5.675853
## 1130             16 years old   Male              10th grade   1.70  5.577428
## 1131             17 years old Female              12th grade   1.80  5.905512
## 1132             17 years old Female              12th grade   1.68  5.511811
## 1133             15 years old Female               9th grade     NA        NA
## 1134             16 years old Female              10th grade   1.68  5.511811
## 1135             14 years old Female               9th grade   1.60  5.249344
## 1136             15 years old   Male               9th grade   1.83  6.003937
## 1137             15 years old   Male              10th grade   1.73  5.675853
## 1138             17 years old   Male              12th grade   1.68  5.511811
## 1139             17 years old Female              12th grade   1.70  5.577428
## 1140             15 years old   Male               9th grade   1.88  6.167979
## 1141             16 years old Female              11th grade   1.63  5.347769
## 1142             16 years old   Male              10th grade   1.78  5.839895
## 1143             14 years old   Male               9th grade   1.68  5.511811
## 1144             15 years old Female               9th grade   1.55  5.085302
## 1145             16 years old Female              10th grade   1.68  5.511811
## 1146             17 years old Female              12th grade   1.57  5.150919
## 1147             17 years old   Male              12th grade   1.80  5.905512
## 1148             15 years old   Male               9th grade   1.60  5.249344
## 1149             16 years old Female              11th grade   1.65  5.413386
## 1150             16 years old   Male              10th grade   1.85  6.069554
## 1151             14 years old Female               9th grade     NA        NA
## 1152             15 years old Female               9th grade     NA        NA
## 1153             15 years old Female              10th grade   1.60  5.249344
## 1154             17 years old   Male              12th grade   1.88  6.167979
## 1155             17 years old   Male              12th grade   1.85  6.069554
## 1156             15 years old   Male               9th grade   1.70  5.577428
## 1157             16 years old   Male              11th grade   1.83  6.003937
## 1158             15 years old Female              10th grade     NA        NA
## 1159             15 years old   Male              10th grade   1.68  5.511811
## 1160             17 years old Female              12th grade   1.55  5.085302
## 1161             14 years old Female               9th grade   1.60  5.249344
## 1162             17 years old Female              11th grade   1.65  5.413386
## 1163             15 years old   Male              10th grade   1.63  5.347769
## 1164             15 years old   Male              10th grade   1.73  5.675853
## 1165             17 years old   Male              12th grade   1.80  5.905512
## 1166    18 years old or older Female              12th grade   1.68  5.511811
## 1167             17 years old   Male              12th grade   1.78  5.839895
## 1168             15 years old   Male              10th grade   1.73  5.675853
## 1169    18 years old or older   Male              12th grade   1.78  5.839895
## 1170             17 years old Female              12th grade     NA        NA
## 1171             15 years old   Male               9th grade   1.85  6.069554
## 1172             17 years old Female              12th grade   1.57  5.150919
## 1173             15 years old Female              10th grade   1.57  5.150919
## 1174             14 years old   Male               9th grade   1.75  5.741470
## 1175             15 years old   Male               9th grade   1.83  6.003937
## 1176             15 years old Female              10th grade   1.68  5.511811
## 1177             17 years old Female              12th grade   1.70  5.577428
## 1178    18 years old or older Female              12th grade   1.65  5.413386
## 1179             15 years old   Male               9th grade   1.80  5.905512
## 1180             16 years old Female              11th grade   1.63  5.347769
## 1181             15 years old   Male              10th grade   1.75  5.741470
## 1182             14 years old   Male               9th grade   1.70  5.577428
## 1183             15 years old Female               9th grade   1.65  5.413386
## 1184             15 years old Female              10th grade     NA        NA
## 1185             17 years old   Male              12th grade   1.73  5.675853
## 1186             17 years old   Male              12th grade   1.70  5.577428
## 1187             14 years old   Male               9th grade     NA        NA
## 1188             17 years old Female              11th grade   1.68  5.511811
## 1189                     <NA> Female              10th grade     NA        NA
## 1190             15 years old   Male               9th grade   1.70  5.577428
## 1191             14 years old   Male               9th grade   1.70  5.577428
## 1192             16 years old   Male              10th grade   1.65  5.413386
## 1193             17 years old   Male              12th grade   1.80  5.905512
## 1194             16 years old Female              12th grade   1.73  5.675853
## 1195             16 years old   Male               9th grade     NA        NA
## 1196             16 years old Female              11th grade   1.65  5.413386
## 1197             15 years old   Male              11th grade   1.68  5.511811
## 1198             14 years old   Male               9th grade   1.78  5.839895
## 1199             16 years old Female              12th grade   1.57  5.150919
## 1200             17 years old Female              12th grade   1.52  4.986877
## 1201             15 years old Female               9th grade   1.55  5.085302
## 1202             17 years old   Male              11th grade   1.73  5.675853
## 1203             15 years old   Male              10th grade   1.83  6.003937
## 1204             15 years old Female               9th grade     NA        NA
## 1205             14 years old   Male               9th grade   1.88  6.167979
## 1206             16 years old   Male              10th grade   1.73  5.675853
## 1207             17 years old   Male              12th grade   1.93  6.332021
## 1208             17 years old Female              12th grade   1.60  5.249344
## 1209             16 years old   Male               9th grade   1.75  5.741470
## 1210             16 years old Female              11th grade   1.65  5.413386
## 1211  12 years old or younger Female Ungraded or other grade   1.42  4.658793
## 1212             15 years old   Male               9th grade   1.80  5.905512
## 1213             15 years old Female               9th grade   1.78  5.839895
## 1214             15 years old   Male              10th grade   1.63  5.347769
## 1215             17 years old Female              12th grade   1.73  5.675853
## 1216             17 years old Female              12th grade   1.57  5.150919
## 1217             15 years old Female               9th grade   1.60  5.249344
## 1218             16 years old   Male              11th grade   1.88  6.167979
## 1219             15 years old   <NA>              10th grade     NA        NA
## 1220             15 years old Female               9th grade   1.57  5.150919
## 1221             14 years old   Male               9th grade   1.75  5.741470
## 1222             16 years old   Male              10th grade   1.73  5.675853
## 1223             17 years old   Male              12th grade   1.65  5.413386
## 1224             17 years old   Male              12th grade   1.57  5.150919
## 1225             14 years old Female               9th grade   1.68  5.511811
## 1226             16 years old   Male              10th grade   1.65  5.413386
## 1227             15 years old   Male               9th grade   1.73  5.675853
## 1228             15 years old Female               9th grade   1.63  5.347769
## 1229             15 years old   Male              10th grade   1.63  5.347769
## 1230             17 years old Female              12th grade   1.68  5.511811
## 1231             17 years old Female              12th grade   1.55  5.085302
## 1232             14 years old Female               9th grade   1.60  5.249344
## 1233             16 years old Female              11th grade   1.60  5.249344
## 1234             15 years old   Male              10th grade   1.88  6.167979
## 1235             15 years old Female               9th grade     NA        NA
## 1236             14 years old   Male               9th grade   1.68  5.511811
## 1237             15 years old Female              10th grade   1.55  5.085302
## 1238             17 years old Female              12th grade   1.73  5.675853
## 1239    18 years old or older   Male              12th grade   1.75  5.741470
## 1240             14 years old   Male               9th grade   1.70  5.577428
## 1241             17 years old   Male              11th grade   1.70  5.577428
## 1242             15 years old   Male              10th grade   1.85  6.069554
## 1243             15 years old Female               9th grade   1.57  5.150919
## 1244             14 years old   Male               9th grade   1.63  5.347769
## 1245             15 years old   Male              10th grade   1.70  5.577428
## 1246    18 years old or older Female              12th grade   1.60  5.249344
## 1247             17 years old Female              12th grade   1.70  5.577428
## 1248             15 years old Female                    <NA>     NA        NA
## 1249             16 years old Female              11th grade   1.73  5.675853
## 1250             16 years old   Male              10th grade   1.83  6.003937
## 1251             14 years old Female               9th grade   1.65  5.413386
## 1252             17 years old Female              12th grade   1.57  5.150919
## 1253             17 years old   Male              12th grade   1.80  5.905512
## 1254             14 years old Female               9th grade   1.68  5.511811
## 1255             16 years old Female              11th grade   1.65  5.413386
## 1256             15 years old Female              10th grade   1.73  5.675853
## 1257             15 years old Female               9th grade   1.50  4.921260
## 1258             15 years old   Male              10th grade   1.88  6.167979
## 1259             15 years old   Male               9th grade   1.73  5.675853
## 1260             15 years old Female               9th grade   1.52  4.986877
## 1261             17 years old   Male              12th grade   1.70  5.577428
## 1262    18 years old or older Female              12th grade   1.65  5.413386
## 1263             15 years old Female               9th grade   1.57  5.150919
## 1264             15 years old   Male               9th grade   1.73  5.675853
## 1265             14 years old   Male               9th grade   1.85  6.069554
## 1266             15 years old   Male               9th grade   1.78  5.839895
## 1267             14 years old Female               9th grade   1.60  5.249344
## 1268             15 years old Female                    <NA>     NA        NA
## 1269             14 years old Female               9th grade   1.50  4.921260
## 1270             14 years old   Male               9th grade   1.80  5.905512
## 1271             14 years old Female               9th grade   1.63  5.347769
## 1272             17 years old Female              12th grade   1.63  5.347769
## 1273             17 years old   Male              11th grade   1.80  5.905512
## 1274             14 years old   Male               9th grade   1.60  5.249344
## 1275             17 years old Female              12th grade   1.65  5.413386
## 1276             17 years old   Male              11th grade   1.75  5.741470
## 1277             14 years old Female               9th grade   1.57  5.150919
## 1278             17 years old   Male              12th grade   1.85  6.069554
## 1279             16 years old Female              11th grade   1.52  4.986877
## 1280             15 years old   Male               9th grade   1.68  5.511811
## 1281             17 years old Female              12th grade   1.70  5.577428
## 1282             16 years old   Male              11th grade     NA        NA
## 1283             14 years old Female               9th grade   1.60  5.249344
## 1284             17 years old   Male              12th grade     NA        NA
## 1285             17 years old Female              11th grade     NA        NA
## 1286             14 years old Female               9th grade   1.55  5.085302
## 1287             17 years old Female              12th grade   1.63  5.347769
## 1288             16 years old Female              11th grade     NA        NA
## 1289             15 years old   Male               9th grade   1.78  5.839895
## 1290             17 years old   Male              12th grade   1.83  6.003937
## 1291             16 years old Female              11th grade   1.57  5.150919
## 1292             15 years old   Male               9th grade   1.75  5.741470
## 1293             15 years old   Male               9th grade   1.78  5.839895
## 1294             13 years old   Male               9th grade   1.83  6.003937
## 1295             17 years old   Male              12th grade   1.65  5.413386
## 1296             16 years old Female              11th grade   1.57  5.150919
## 1297             15 years old   Male               9th grade   1.68  5.511811
## 1298             14 years old Female               9th grade     NA        NA
## 1299             15 years old Female               9th grade   1.70  5.577428
## 1300             14 years old Female               9th grade   1.73  5.675853
## 1301             14 years old   Male               9th grade   1.65  5.413386
## 1302    18 years old or older   Male              12th grade   1.75  5.741470
## 1303             14 years old   Male               9th grade   1.70  5.577428
## 1304    18 years old or older   Male              12th grade   1.78  5.839895
## 1305             16 years old Female              11th grade   1.65  5.413386
## 1306             14 years old   Male               9th grade   1.83  6.003937
## 1307             17 years old Female              12th grade   1.65  5.413386
## 1308             16 years old   Male              11th grade   1.68  5.511811
## 1309             14 years old   Male               9th grade   1.60  5.249344
## 1310    18 years old or older Female              12th grade   1.63  5.347769
## 1311             16 years old Female              11th grade   1.50  4.921260
## 1312             14 years old Female               9th grade   1.55  5.085302
## 1313             17 years old Female              12th grade   1.60  5.249344
## 1314             16 years old Female              11th grade   1.75  5.741470
## 1315             14 years old Female               9th grade   1.55  5.085302
## 1316             17 years old Female              12th grade   1.57  5.150919
## 1317             17 years old   Male              11th grade     NA        NA
## 1318             15 years old   Male               9th grade   1.80  5.905512
## 1319             17 years old   Male              12th grade   1.73  5.675853
## 1320             16 years old Female              11th grade     NA        NA
## 1321             15 years old Female               9th grade   1.50  4.921260
## 1322             16 years old   Male              10th grade   1.78  5.839895
## 1323             17 years old   Male              11th grade   1.65  5.413386
## 1324             17 years old   Male              12th grade   1.75  5.741470
## 1325             16 years old   Male              11th grade   1.83  6.003937
## 1326             14 years old Female               9th grade   1.50  4.921260
## 1327             16 years old Female              10th grade   1.63  5.347769
## 1328             16 years old Female              10th grade   1.65  5.413386
## 1329             16 years old Female              11th grade   1.68  5.511811
## 1330    18 years old or older Female              12th grade   1.55  5.085302
## 1331             17 years old Female              11th grade     NA        NA
## 1332             15 years old   Male               9th grade     NA        NA
## 1333             16 years old   Male              10th grade   1.65  5.413386
## 1334             15 years old Female              10th grade   1.50  4.921260
## 1335             16 years old   Male              11th grade   1.73  5.675853
## 1336    18 years old or older Female              12th grade   1.52  4.986877
## 1337             17 years old Female              11th grade   1.65  5.413386
## 1338             15 years old   Male               9th grade   1.75  5.741470
## 1339             15 years old   Male              10th grade   1.73  5.675853
## 1340             16 years old   Male              10th grade   1.85  6.069554
## 1341             17 years old   Male              12th grade   1.83  6.003937
## 1342             17 years old Female              11th grade   1.50  4.921260
## 1343             17 years old Female              12th grade   1.57  5.150919
## 1344             16 years old   Male              11th grade   1.83  6.003937
## 1345             15 years old   Male               9th grade   1.83  6.003937
## 1346             16 years old   Male              10th grade   1.70  5.577428
## 1347             16 years old Female              10th grade   1.52  4.986877
## 1348             17 years old Female              12th grade   1.50  4.921260
## 1349             17 years old Female              11th grade   1.42  4.658793
## 1350             17 years old Female              12th grade   1.60  5.249344
## 1351             16 years old   Male              11th grade   1.80  5.905512
## 1352             14 years old   Male               9th grade   1.65  5.413386
## 1353             15 years old   Male               9th grade   1.63  5.347769
## 1354             15 years old Female              10th grade     NA        NA
## 1355    18 years old or older Female              12th grade   1.68  5.511811
## 1356             17 years old   <NA>              11th grade     NA        NA
## 1357             17 years old   Male              12th grade   1.83  6.003937
## 1358             17 years old Female              11th grade   1.60  5.249344
## 1359             16 years old   Male               9th grade   1.90  6.233596
## 1360             16 years old Female              10th grade   1.55  5.085302
## 1361             15 years old Female              10th grade   1.60  5.249344
## 1362             17 years old Female              12th grade   1.60  5.249344
## 1363             17 years old Female              11th grade   1.42  4.658793
## 1364             17 years old Female              12th grade   1.52  4.986877
## 1365             17 years old   Male              11th grade   1.70  5.577428
## 1366             14 years old   Male               9th grade   1.63  5.347769
## 1367             15 years old Female               9th grade   1.52  4.986877
## 1368             16 years old   Male              10th grade   1.85  6.069554
## 1369             16 years old   Male              10th grade   1.70  5.577428
## 1370    18 years old or older Female              12th grade   1.52  4.986877
## 1371             16 years old   Male              11th grade   1.80  5.905512
## 1372    18 years old or older Female              12th grade   1.60  5.249344
## 1373             17 years old   Male              11th grade   1.75  5.741470
## 1374             14 years old Female               9th grade   1.52  4.986877
## 1375             16 years old Female              10th grade   1.60  5.249344
## 1376             16 years old Female              11th grade   1.47  4.822835
## 1377             16 years old   Male              11th grade   1.83  6.003937
## 1378             15 years old   Male               9th grade   1.70  5.577428
## 1379             15 years old Female               9th grade     NA        NA
## 1380             16 years old Female              10th grade   1.60  5.249344
## 1381             15 years old Female              10th grade   1.70  5.577428
## 1382             17 years old   Male              12th grade   1.88  6.167979
## 1383             16 years old Female              11th grade   1.70  5.577428
## 1384             17 years old Female              12th grade   1.57  5.150919
## 1385             17 years old   Male              11th grade     NA        NA
## 1386             15 years old   Male               9th grade   1.78  5.839895
## 1387             16 years old   Male              10th grade   1.68  5.511811
## 1388    18 years old or older   Male              12th grade   1.60  5.249344
## 1389             16 years old Female              11th grade   1.70  5.577428
## 1390             17 years old   Male              12th grade   1.78  5.839895
## 1391             17 years old   Male              11th grade   1.63  5.347769
## 1392             15 years old Female               9th grade   1.65  5.413386
## 1393             15 years old   Male               9th grade     NA        NA
## 1394             15 years old   Male              10th grade   1.70  5.577428
## 1395             16 years old Female              10th grade   1.70  5.577428
## 1396             16 years old Female              11th grade   1.68  5.511811
## 1397             15 years old Female               9th grade   1.50  4.921260
## 1398             15 years old Female               9th grade   1.60  5.249344
## 1399             15 years old Female              10th grade   1.52  4.986877
## 1400             16 years old Female              10th grade   1.57  5.150919
## 1401             16 years old   Male              11th grade   1.75  5.741470
## 1402    18 years old or older Female              12th grade   1.57  5.150919
## 1403             16 years old   Male              11th grade   1.85  6.069554
## 1404             15 years old   Male               9th grade   1.75  5.741470
## 1405             15 years old Female               9th grade   1.50  4.921260
## 1406             15 years old Female              10th grade   1.55  5.085302
## 1407             16 years old   Male              10th grade   1.68  5.511811
## 1408             17 years old Female              12th grade     NA        NA
## 1409             17 years old Female              11th grade   1.60  5.249344
## 1410    18 years old or older   Male              12th grade   1.73  5.675853
## 1411             16 years old Female              11th grade   1.68  5.511811
## 1412             15 years old Female               9th grade   1.57  5.150919
## 1413             14 years old Female               9th grade   1.57  5.150919
## 1414             16 years old Female              10th grade   1.52  4.986877
## 1415             15 years old   Male              10th grade   1.73  5.675853
## 1416    18 years old or older   Male              12th grade   1.78  5.839895
## 1417             16 years old Female              11th grade   1.57  5.150919
## 1418             17 years old Female              12th grade   1.63  5.347769
## 1419             16 years old   Male              11th grade   1.70  5.577428
## 1420             14 years old   Male               9th grade   1.70  5.577428
## 1421             15 years old   Male               9th grade   1.63  5.347769
## 1422             16 years old Female              10th grade   1.60  5.249344
## 1423             16 years old Female              10th grade   1.50  4.921260
## 1424             16 years old   Male              11th grade   1.68  5.511811
## 1425             16 years old   Male              11th grade     NA        NA
## 1426             15 years old Female              10th grade   1.65  5.413386
## 1427             15 years old Female              10th grade   1.63  5.347769
## 1428             16 years old Female              11th grade   1.60  5.249344
## 1429             17 years old Female              12th grade   1.57  5.150919
## 1430             17 years old Female              11th grade   1.52  4.986877
## 1431             15 years old Female               9th grade   1.55  5.085302
## 1432             15 years old Female               9th grade     NA        NA
## 1433             15 years old Female              10th grade   1.50  4.921260
## 1434             16 years old Female              10th grade   1.65  5.413386
## 1435    18 years old or older Female              12th grade   1.65  5.413386
## 1436             16 years old   Male              11th grade   1.70  5.577428
## 1437    18 years old or older   Male              12th grade   1.85  6.069554
## 1438             17 years old Female              11th grade   1.70  5.577428
## 1439             14 years old Female               9th grade   1.57  5.150919
## 1440             15 years old   Male               9th grade   1.70  5.577428
## 1441             16 years old   Male              10th grade   1.73  5.675853
## 1442             15 years old Female              10th grade   1.60  5.249344
## 1443             16 years old   Male              11th grade   1.75  5.741470
## 1444    18 years old or older   Male              12th grade   1.52  4.986877
## 1445             16 years old Female              11th grade   1.73  5.675853
## 1446             15 years old Female               9th grade   1.55  5.085302
## 1447             15 years old Female              10th grade   1.52  4.986877
## 1448             16 years old Female              10th grade   1.60  5.249344
## 1449    18 years old or older   Male              12th grade   1.83  6.003937
## 1450             17 years old Female              11th grade     NA        NA
## 1451    18 years old or older Female              12th grade   1.55  5.085302
## 1452             17 years old Female              11th grade   1.60  5.249344
## 1453             14 years old   Male               9th grade   1.80  5.905512
## 1454             16 years old   Male              10th grade   1.83  6.003937
## 1455             16 years old   Male              10th grade   1.63  5.347769
## 1456             17 years old   Male              11th grade   1.70  5.577428
## 1457    18 years old or older   Male              12th grade   1.70  5.577428
## 1458             16 years old   Male              11th grade   1.68  5.511811
## 1459             14 years old Female               9th grade     NA        NA
## 1460             15 years old Female              10th grade   1.55  5.085302
## 1461             16 years old Female              10th grade   1.57  5.150919
## 1462             17 years old   Male              12th grade   1.75  5.741470
## 1463             17 years old Female              11th grade   1.45  4.757218
## 1464             17 years old Female              12th grade   1.52  4.986877
## 1465             17 years old Female              11th grade   1.45  4.757218
## 1466             15 years old Female               9th grade     NA        NA
## 1467             17 years old   Male              10th grade   1.78  5.839895
## 1468    18 years old or older Female              12th grade   1.57  5.150919
## 1469             16 years old   Male              11th grade   1.90  6.233596
## 1470    18 years old or older Female              12th grade   1.60  5.249344
## 1471             16 years old Female              11th grade   1.60  5.249344
## 1472             16 years old Female               9th grade     NA        NA
## 1473             16 years old   Male               9th grade   1.68  5.511811
## 1474             16 years old   Male              10th grade   1.70  5.577428
## 1475             15 years old Female              10th grade   1.57  5.150919
## 1476             17 years old Female              12th grade   1.73  5.675853
## 1477             17 years old Female              11th grade   1.63  5.347769
## 1478             16 years old   Male              10th grade   1.85  6.069554
## 1479             14 years old Female               9th grade     NA        NA
## 1480             17 years old Female              12th grade   1.73  5.675853
## 1481             17 years old Female              11th grade     NA        NA
## 1482    18 years old or older Female              12th grade   1.57  5.150919
## 1483             17 years old Female              11th grade   1.60  5.249344
## 1484             14 years old   Male               9th grade     NA        NA
## 1485             15 years old   Male               9th grade   1.78  5.839895
## 1486             16 years old Female              10th grade   1.47  4.822835
## 1487             16 years old   Male              10th grade   1.78  5.839895
## 1488             17 years old   Male              12th grade   1.73  5.675853
## 1489             17 years old Female              11th grade     NA        NA
## 1490             17 years old   Male              12th grade   1.80  5.905512
## 1491             16 years old Female              11th grade     NA        NA
## 1492             15 years old Female               9th grade   1.60  5.249344
## 1493             15 years old Female              10th grade   1.50  4.921260
## 1494             16 years old Female              10th grade   1.55  5.085302
## 1495             17 years old Female              12th grade   1.68  5.511811
## 1496             17 years old   Male              11th grade     NA        NA
## 1497    18 years old or older   Male              12th grade   1.83  6.003937
## 1498             16 years old Female              11th grade   1.73  5.675853
## 1499             14 years old Female               9th grade   1.73  5.675853
## 1500             16 years old Female              11th grade     NA        NA
## 1501             15 years old Female               9th grade   1.57  5.150919
## 1502             17 years old Female              11th grade   1.65  5.413386
## 1503             14 years old Female               9th grade     NA        NA
## 1504             16 years old   Male              11th grade   1.68  5.511811
## 1505             14 years old Female               9th grade   1.47  4.822835
## 1506             16 years old Female              11th grade   1.57  5.150919
## 1507             15 years old   Male               9th grade   1.63  5.347769
## 1508             15 years old   Male               9th grade   1.73  5.675853
## 1509             15 years old Female               9th grade     NA        NA
## 1510             14 years old   Male               9th grade     NA        NA
## 1511             14 years old Female               9th grade   1.63  5.347769
## 1512             15 years old Female               9th grade   1.68  5.511811
## 1513             14 years old Female               9th grade   1.52  4.986877
## 1514             15 years old Female               9th grade   1.50  4.921260
## 1515             14 years old Female               9th grade   1.55  5.085302
## 1516             14 years old Female               9th grade   1.68  5.511811
## 1517             14 years old   Male               9th grade     NA        NA
## 1518             15 years old Female               9th grade   1.68  5.511811
## 1519             15 years old   Male               9th grade   1.78  5.839895
## 1520             14 years old Female               9th grade   1.57  5.150919
## 1521             15 years old Female               9th grade   1.57  5.150919
## 1522             15 years old Female               9th grade   1.60  5.249344
## 1523             15 years old Female               9th grade   1.55  5.085302
## 1524             15 years old Female               9th grade     NA        NA
## 1525             14 years old   Male               9th grade   1.75  5.741470
## 1526             14 years old   Male               9th grade   1.83  6.003937
## 1527             15 years old   Male               9th grade   1.80  5.905512
## 1528             15 years old Female               9th grade   1.60  5.249344
## 1529    18 years old or older Female              12th grade   1.60  5.249344
## 1530             17 years old Female              12th grade   1.63  5.347769
## 1531             17 years old   Male              11th grade   1.85  6.069554
## 1532             16 years old Female              11th grade   1.75  5.741470
## 1533             17 years old Female              11th grade   1.65  5.413386
## 1534             16 years old   Male              11th grade   1.75  5.741470
## 1535             16 years old   Male              11th grade   1.70  5.577428
## 1536             17 years old Female              11th grade   1.68  5.511811
## 1537    18 years old or older   Male              12th grade   1.70  5.577428
## 1538             17 years old Female              12th grade   1.63  5.347769
## 1539    18 years old or older Female              12th grade   1.52  4.986877
## 1540    18 years old or older   Male              12th grade   1.83  6.003937
## 1541    18 years old or older   Male              12th grade   1.83  6.003937
## 1542             17 years old Female              12th grade   1.63  5.347769
## 1543             17 years old Female              12th grade   1.60  5.249344
## 1544             17 years old   Male              12th grade   1.80  5.905512
## 1545    18 years old or older Female              12th grade   1.57  5.150919
## 1546             17 years old   Male              12th grade     NA        NA
## 1547             16 years old Female              11th grade   1.60  5.249344
## 1548             17 years old   Male              12th grade   1.70  5.577428
## 1549    18 years old or older   Male              12th grade   1.68  5.511811
## 1550             15 years old Female               9th grade   1.65  5.413386
## 1551             15 years old Female               9th grade   1.73  5.675853
## 1552             15 years old Female               9th grade   1.50  4.921260
## 1553             17 years old Female              12th grade   1.60  5.249344
## 1554    18 years old or older   Male              12th grade   1.78  5.839895
## 1555    18 years old or older   Male              12th grade   1.80  5.905512
## 1556    18 years old or older   Male              12th grade   1.85  6.069554
## 1557             17 years old Female              12th grade   1.60  5.249344
## 1558             17 years old Female              12th grade   1.57  5.150919
## 1559    18 years old or older   Male              12th grade   1.80  5.905512
## 1560             17 years old   Male              12th grade     NA        NA
## 1561    18 years old or older   Male              12th grade     NA        NA
## 1562             17 years old Female              12th grade   1.73  5.675853
## 1563             17 years old Female              12th grade   1.55  5.085302
## 1564    18 years old or older   Male              12th grade   1.83  6.003937
## 1565    18 years old or older   Male              12th grade   1.78  5.839895
## 1566             17 years old Female              12th grade   1.68  5.511811
## 1567             17 years old Female              12th grade   1.60  5.249344
## 1568             17 years old Female              12th grade   1.73  5.675853
## 1569    18 years old or older   Male              12th grade   1.70  5.577428
## 1570    18 years old or older   Male              12th grade   1.70  5.577428
## 1571             17 years old   Male              12th grade   1.70  5.577428
## 1572    18 years old or older Female              12th grade   1.68  5.511811
## 1573    18 years old or older   Male              12th grade   1.83  6.003937
## 1574             17 years old   Male              12th grade   1.73  5.675853
## 1575    18 years old or older   Male              12th grade   1.75  5.741470
## 1576             17 years old Female              12th grade   1.63  5.347769
## 1577             16 years old   Male              11th grade   1.75  5.741470
## 1578             16 years old   Male              11th grade   1.75  5.741470
## 1579             14 years old Female               9th grade   1.57  5.150919
## 1580             17 years old   Male              11th grade   1.78  5.839895
## 1581             15 years old Female              10th grade     NA        NA
## 1582             16 years old   Male              11th grade   1.80  5.905512
## 1583             15 years old   Male              10th grade   1.80  5.905512
## 1584             16 years old Female              11th grade   1.68  5.511811
## 1585             16 years old Female              10th grade   1.55  5.085302
## 1586             17 years old   Male              11th grade   1.73  5.675853
## 1587             16 years old   Male              10th grade   1.60  5.249344
## 1588             17 years old   Male              10th grade   1.63  5.347769
## 1589             15 years old   Male              10th grade   1.75  5.741470
## 1590             14 years old Female               9th grade   1.57  5.150919
## 1591             15 years old Female              10th grade   1.68  5.511811
## 1592             17 years old Female              10th grade   1.60  5.249344
## 1593             15 years old Female               9th grade   1.63  5.347769
## 1594             15 years old Female               9th grade   1.63  5.347769
## 1595             16 years old Female              10th grade   1.73  5.675853
## 1596             14 years old Female               9th grade   1.60  5.249344
## 1597             16 years old Female              10th grade   1.55  5.085302
## 1598             15 years old   Male              10th grade   1.57  5.150919
## 1599             15 years old Female               9th grade   1.70  5.577428
## 1600             15 years old   Male              10th grade   1.78  5.839895
## 1601    18 years old or older   Male              12th grade   1.75  5.741470
## 1602             14 years old Female               9th grade   1.63  5.347769
## 1603             16 years old   Male              10th grade   1.68  5.511811
## 1604             16 years old Female              10th grade   1.50  4.921260
## 1605             14 years old Female               9th grade   1.63  5.347769
## 1606             16 years old Female              10th grade     NA        NA
## 1607             16 years old   Male              11th grade   1.65  5.413386
## 1608             15 years old   Male              10th grade   1.85  6.069554
## 1609             15 years old   Male               9th grade   1.83  6.003937
## 1610             15 years old   Male              10th grade   1.83  6.003937
## 1611             15 years old   Male              10th grade   1.68  5.511811
## 1612             14 years old   Male               9th grade   1.78  5.839895
## 1613             17 years old   Male              11th grade   1.78  5.839895
## 1614             16 years old Female              10th grade   1.52  4.986877
## 1615             15 years old   Male               9th grade   1.65  5.413386
## 1616             16 years old   Male              11th grade   1.90  6.233596
## 1617             16 years old   Male              10th grade   1.88  6.167979
## 1618             16 years old   Male              10th grade   1.57  5.150919
## 1619             15 years old   Male              10th grade     NA        NA
## 1620             15 years old Female               9th grade   1.60  5.249344
## 1621             17 years old   Male              11th grade   1.68  5.511811
## 1622             16 years old Female              10th grade   1.50  4.921260
## 1623             14 years old Female               9th grade   1.60  5.249344
## 1624             16 years old Female              10th grade   1.55  5.085302
## 1625             15 years old Female               9th grade   1.52  4.986877
## 1626    18 years old or older   Male              12th grade   1.83  6.003937
## 1627             16 years old   Male              10th grade   1.80  5.905512
## 1628             15 years old   Male               9th grade   1.70  5.577428
## 1629    18 years old or older Female              12th grade     NA        NA
## 1630             15 years old Female              10th grade   1.65  5.413386
## 1631             14 years old Female               9th grade   1.57  5.150919
## 1632             16 years old Female              10th grade   1.63  5.347769
## 1633             15 years old   Male               9th grade   1.88  6.167979
## 1634             15 years old   Male              10th grade   1.83  6.003937
## 1635             15 years old   Male               9th grade   1.83  6.003937
## 1636             16 years old   Male              10th grade   1.70  5.577428
## 1637             15 years old   Male              10th grade   1.78  5.839895
## 1638             15 years old   Male              10th grade   1.70  5.577428
## 1639             16 years old   Male              10th grade   1.65  5.413386
## 1640             16 years old   Male              10th grade   1.70  5.577428
## 1641             16 years old Female              10th grade   1.63  5.347769
## 1642             16 years old Female              10th grade   1.57  5.150919
## 1643             16 years old   Male              10th grade   1.83  6.003937
## 1644             16 years old Female              11th grade     NA        NA
## 1645             15 years old Female              10th grade   1.70  5.577428
## 1646             15 years old Female              10th grade   1.65  5.413386
## 1647             15 years old Female              10th grade   1.63  5.347769
## 1648             15 years old   Male              10th grade   1.80  5.905512
## 1649             16 years old Female              10th grade     NA        NA
## 1650             16 years old   Male              10th grade   1.70  5.577428
## 1651             15 years old Female              10th grade   1.65  5.413386
## 1652             16 years old Female              11th grade   1.70  5.577428
## 1653             14 years old Female               9th grade   1.55  5.085302
## 1654             15 years old   Male              10th grade     NA        NA
## 1655             16 years old Female              10th grade     NA        NA
## 1656             16 years old Female              11th grade   1.70  5.577428
## 1657             17 years old Female              11th grade   1.60  5.249344
## 1658             16 years old   Male              10th grade   1.65  5.413386
## 1659    18 years old or older Female              12th grade   1.55  5.085302
## 1660             17 years old Female              11th grade   1.60  5.249344
## 1661             16 years old   Male              10th grade   1.68  5.511811
## 1662             17 years old Female              11th grade   1.68  5.511811
## 1663             17 years old   <NA>              11th grade     NA        NA
## 1664             15 years old Female              10th grade   1.60  5.249344
## 1665             17 years old Female              11th grade   1.60  5.249344
## 1666             16 years old Female              10th grade   1.60  5.249344
## 1667             17 years old Female              11th grade   1.52  4.986877
## 1668             16 years old   Male              11th grade   1.78  5.839895
## 1669             16 years old   Male              10th grade   1.80  5.905512
## 1670             16 years old Female              11th grade   1.60  5.249344
## 1671             15 years old Female              10th grade   1.60  5.249344
## 1672             16 years old   Male              11th grade   1.83  6.003937
## 1673             16 years old Female              11th grade     NA        NA
## 1674             16 years old Female              10th grade   1.57  5.150919
## 1675             16 years old Female              11th grade   1.68  5.511811
## 1676             17 years old   <NA>              11th grade     NA        NA
## 1677             15 years old Female              10th grade     NA        NA
## 1678             17 years old Female              11th grade   1.52  4.986877
## 1679             16 years old Female              11th grade   1.88  6.167979
## 1680             15 years old Female              10th grade   1.63  5.347769
## 1681             16 years old Female              11th grade   1.68  5.511811
## 1682             17 years old   Male              11th grade   1.68  5.511811
## 1683             15 years old Female              10th grade     NA        NA
## 1684             17 years old Female              11th grade     NA        NA
## 1685             17 years old Female              11th grade   1.65  5.413386
## 1686             17 years old Female              10th grade   1.70  5.577428
## 1687             17 years old   Male              11th grade   1.75  5.741470
## 1688             16 years old   Male              11th grade   1.70  5.577428
## 1689             15 years old   Male              10th grade   1.90  6.233596
## 1690             16 years old Female              11th grade   1.75  5.741470
## 1691             16 years old Female              11th grade   1.57  5.150919
## 1692             15 years old Female              10th grade   1.60  5.249344
## 1693             17 years old Female              11th grade   1.50  4.921260
## 1694             15 years old Female              10th grade   1.60  5.249344
## 1695             16 years old Female              11th grade   1.63  5.347769
## 1696             16 years old   Male              11th grade   1.68  5.511811
## 1697             16 years old   Male              10th grade   1.78  5.839895
## 1698             16 years old   Male              10th grade   1.78  5.839895
## 1699             16 years old Female              10th grade   1.57  5.150919
## 1700    18 years old or older Female              12th grade     NA        NA
## 1701             16 years old   Male              10th grade   1.70  5.577428
## 1702             17 years old   Male              11th grade   1.90  6.233596
## 1703             15 years old   Male              10th grade   1.80  5.905512
## 1704             17 years old Female              11th grade   1.57  5.150919
## 1705             16 years old Female              10th grade     NA        NA
## 1706             17 years old   Male              11th grade   1.68  5.511811
## 1707             16 years old   Male              10th grade   1.75  5.741470
## 1708             16 years old   Male              10th grade   1.73  5.675853
## 1709             17 years old Female              11th grade   1.57  5.150919
## 1710             14 years old Female               9th grade   1.55  5.085302
## 1711             15 years old   Male               9th grade   1.68  5.511811
## 1712             14 years old Female               9th grade     NA        NA
## 1713             15 years old   Male               9th grade   1.60  5.249344
## 1714             17 years old Female              12th grade     NA        NA
## 1715             15 years old Female              10th grade   1.63  5.347769
## 1716    18 years old or older   Male              12th grade   1.52  4.986877
## 1717             14 years old Female               9th grade     NA        NA
## 1718             15 years old Female               9th grade   1.57  5.150919
## 1719    18 years old or older Female              12th grade   1.55  5.085302
## 1720             16 years old   Male              10th grade   1.70  5.577428
## 1721             14 years old   Male               9th grade   1.63  5.347769
## 1722             15 years old   Male               9th grade   1.78  5.839895
## 1723             17 years old   Male              12th grade   1.75  5.741470
## 1724             16 years old Female              10th grade   1.85  6.069554
## 1725             14 years old   Male               9th grade     NA        NA
## 1726             17 years old   Male              12th grade   1.70  5.577428
## 1727    18 years old or older Female              12th grade   1.55  5.085302
## 1728             15 years old Female               9th grade     NA        NA
## 1729             15 years old   Male               9th grade   1.65  5.413386
## 1730    18 years old or older   Male              12th grade   1.70  5.577428
## 1731             17 years old   Male              12th grade   1.78  5.839895
## 1732             14 years old Female               9th grade   1.60  5.249344
## 1733             15 years old   Male               9th grade   1.68  5.511811
## 1734             17 years old   Male              12th grade     NA        NA
## 1735             15 years old Female              10th grade   1.57  5.150919
## 1736             17 years old Female              12th grade   1.65  5.413386
## 1737             15 years old   Male               9th grade   1.75  5.741470
## 1738             15 years old   Male               9th grade   1.73  5.675853
## 1739    18 years old or older   Male              12th grade   1.65  5.413386
## 1740             15 years old   Male              10th grade   1.75  5.741470
## 1741             14 years old   Male               9th grade   1.73  5.675853
## 1742             15 years old   Male               9th grade   1.83  6.003937
## 1743             17 years old   Male              12th grade   1.85  6.069554
## 1744             16 years old Female              11th grade   1.57  5.150919
## 1745             17 years old Female              12th grade   1.68  5.511811
## 1746             15 years old   Male               9th grade   1.73  5.675853
## 1747             14 years old Female               9th grade   1.63  5.347769
## 1748    18 years old or older Female              12th grade   1.52  4.986877
## 1749             16 years old   Male              10th grade   1.57  5.150919
## 1750             17 years old   Male              12th grade   1.75  5.741470
## 1751             15 years old Female               9th grade   1.68  5.511811
## 1752             14 years old   Male               9th grade   1.63  5.347769
## 1753    18 years old or older Female              12th grade     NA        NA
## 1754             15 years old Female              10th grade   1.55  5.085302
## 1755    18 years old or older Female              12th grade   1.68  5.511811
## 1756             15 years old   Male               9th grade   1.75  5.741470
## 1757    18 years old or older   Male              12th grade   1.73  5.675853
## 1758             16 years old   Male              10th grade   1.83  6.003937
## 1759    18 years old or older Female              12th grade   1.70  5.577428
## 1760             15 years old   Male               9th grade   1.65  5.413386
## 1761             14 years old Female               9th grade   1.78  5.839895
## 1762             14 years old Female               9th grade   1.68  5.511811
## 1763             15 years old Female               9th grade   1.57  5.150919
## 1764             17 years old Female              12th grade   1.70  5.577428
## 1765             15 years old   Male               9th grade   1.75  5.741470
## 1766             14 years old Female               9th grade   1.55  5.085302
## 1767             14 years old Female               9th grade   1.60  5.249344
## 1768    18 years old or older Female              12th grade   1.47  4.822835
## 1769             16 years old Female              10th grade   1.68  5.511811
## 1770    18 years old or older   Male              12th grade   1.73  5.675853
## 1771             14 years old Female               9th grade   1.55  5.085302
## 1772             16 years old   Male               9th grade   1.70  5.577428
## 1773             15 years old   Male               9th grade   1.75  5.741470
## 1774             15 years old Female               9th grade   1.52  4.986877
## 1775    18 years old or older Female              12th grade   1.52  4.986877
## 1776             15 years old Female              10th grade   1.57  5.150919
## 1777    18 years old or older Female              12th grade   1.68  5.511811
## 1778             15 years old Female               9th grade   1.60  5.249344
## 1779             15 years old   Male               9th grade   1.80  5.905512
## 1780             14 years old Female               9th grade   1.55  5.085302
## 1781             17 years old   Male              12th grade   1.83  6.003937
## 1782             15 years old   Male              10th grade   1.88  6.167979
## 1783             17 years old Female              12th grade   1.57  5.150919
## 1784             15 years old Female               9th grade   1.60  5.249344
## 1785             14 years old   Male               9th grade   1.78  5.839895
## 1786             17 years old   Male              12th grade   1.80  5.905512
## 1787             16 years old Female              10th grade   1.50  4.921260
## 1788    18 years old or older   Male              12th grade     NA        NA
## 1789             15 years old   Male               9th grade   1.70  5.577428
## 1790             17 years old Female              12th grade   1.57  5.150919
## 1791             15 years old Female              10th grade   1.47  4.822835
## 1792             17 years old   Male              12th grade   1.83  6.003937
## 1793             14 years old   Male               9th grade     NA        NA
## 1794             15 years old   Male               9th grade   1.75  5.741470
## 1795             15 years old Female               9th grade   1.68  5.511811
## 1796             14 years old Female               9th grade     NA        NA
## 1797             17 years old   Male              12th grade   1.90  6.233596
## 1798             16 years old Female              10th grade   1.57  5.150919
## 1799             17 years old Female              12th grade   1.57  5.150919
## 1800             15 years old   Male               9th grade   1.78  5.839895
## 1801             17 years old Female              12th grade   1.73  5.675853
## 1802             16 years old   Male              10th grade   1.75  5.741470
## 1803             17 years old Female              12th grade   1.70  5.577428
## 1804             15 years old   Male               9th grade   1.68  5.511811
## 1805             15 years old   Male               9th grade   1.63  5.347769
## 1806    18 years old or older   Male              12th grade   1.75  5.741470
## 1807             15 years old Female              10th grade   1.73  5.675853
## 1808             17 years old   Male              12th grade     NA        NA
## 1809             15 years old Female               9th grade   1.55  5.085302
## 1810             15 years old   Male               9th grade   1.70  5.577428
## 1811             15 years old Female              10th grade   1.63  5.347769
## 1812             17 years old   Male              11th grade   1.68  5.511811
## 1813             16 years old Female              10th grade   1.60  5.249344
## 1814             15 years old Female              10th grade     NA        NA
## 1815             15 years old   Male              10th grade   1.75  5.741470
## 1816             16 years old Female              10th grade   1.73  5.675853
## 1817             17 years old   Male              11th grade     NA        NA
## 1818             16 years old Female              10th grade   1.75  5.741470
## 1819             15 years old   Male              10th grade   1.78  5.839895
## 1820             16 years old   Male              10th grade     NA        NA
## 1821             15 years old   Male              10th grade   1.75  5.741470
## 1822             15 years old Female              10th grade   1.65  5.413386
## 1823             16 years old   Male              10th grade   1.83  6.003937
## 1824             15 years old Female               9th grade   1.50  4.921260
## 1825             16 years old   Male              11th grade   1.85  6.069554
## 1826             16 years old Female              10th grade   1.52  4.986877
## 1827             15 years old Female              10th grade   1.63  5.347769
## 1828             15 years old Female              10th grade   1.42  4.658793
## 1829             16 years old   Male              11th grade   1.88  6.167979
## 1830             16 years old Female              10th grade   1.57  5.150919
## 1831             15 years old Female              10th grade   1.57  5.150919
## 1832             16 years old   Male              10th grade   1.73  5.675853
## 1833             14 years old   Male               9th grade   1.60  5.249344
## 1834             16 years old Female              10th grade     NA        NA
## 1835             15 years old Female              10th grade   1.65  5.413386
## 1836             17 years old   Male              12th grade   1.75  5.741470
## 1837             15 years old Female              10th grade   1.65  5.413386
## 1838             16 years old Female              10th grade   1.57  5.150919
## 1839             15 years old Female              10th grade   1.65  5.413386
## 1840             16 years old   Male              11th grade   1.75  5.741470
## 1841             15 years old Female              10th grade   1.50  4.921260
## 1842             15 years old   Male              10th grade   1.73  5.675853
## 1843             16 years old Female              10th grade   1.55  5.085302
## 1844             16 years old   Male              10th grade   1.57  5.150919
## 1845             16 years old Female              10th grade   1.63  5.347769
## 1846             15 years old Female              10th grade   1.60  5.249344
## 1847             16 years old   Male              11th grade   1.78  5.839895
## 1848             16 years old Female              10th grade   1.57  5.150919
## 1849             15 years old   Male              10th grade   1.70  5.577428
## 1850             15 years old Female              10th grade   1.57  5.150919
## 1851             16 years old   Male              10th grade     NA        NA
## 1852             16 years old   Male              10th grade     NA        NA
## 1853             17 years old   Male              11th grade   1.73  5.675853
## 1854             15 years old Female              10th grade   1.60  5.249344
## 1855             16 years old Female              10th grade   1.65  5.413386
## 1856             16 years old   Male              10th grade   1.63  5.347769
## 1857             15 years old   Male              10th grade   1.78  5.839895
## 1858             15 years old   Male               9th grade   1.78  5.839895
## 1859             17 years old Female              11th grade     NA        NA
## 1860             16 years old Female              11th grade   1.65  5.413386
## 1861             16 years old   Male              10th grade     NA        NA
## 1862             14 years old Female               9th grade   1.60  5.249344
## 1863             16 years old   Male              10th grade   1.70  5.577428
## 1864             16 years old Female              11th grade   1.60  5.249344
## 1865             15 years old   Male              10th grade   1.80  5.905512
## 1866             15 years old   Male               9th grade   1.70  5.577428
## 1867             15 years old Female              10th grade     NA        NA
## 1868             14 years old Female               9th grade   1.63  5.347769
## 1869             15 years old Female              10th grade   1.63  5.347769
## 1870             15 years old Female              10th grade   1.60  5.249344
## 1871             15 years old   Male               9th grade   1.96  6.430446
## 1872             16 years old Female              10th grade   1.63  5.347769
## 1873             17 years old   Male              12th grade   1.85  6.069554
## 1874             14 years old Female               9th grade   1.52  4.986877
## 1875             15 years old   Male              10th grade     NA        NA
## 1876             16 years old   Male              10th grade   1.75  5.741470
## 1877             16 years old Female              10th grade     NA        NA
## 1878             15 years old Female               9th grade   1.57  5.150919
## 1879             15 years old Female              10th grade   1.65  5.413386
## 1880             17 years old   Male              12th grade   1.93  6.332021
## 1881             14 years old Female               9th grade   1.52  4.986877
## 1882             17 years old Female              11th grade   1.68  5.511811
## 1883    18 years old or older   Male              12th grade   1.73  5.675853
## 1884             14 years old   Male               9th grade   1.70  5.577428
## 1885             15 years old   Male              10th grade     NA        NA
## 1886             15 years old   Male              10th grade   1.88  6.167979
## 1887             17 years old   Male              11th grade     NA        NA
## 1888             15 years old Female              10th grade   1.75  5.741470
## 1889             17 years old Female              11th grade   1.60  5.249344
## 1890             15 years old   Male               9th grade   1.75  5.741470
## 1891             16 years old   Male              10th grade   1.73  5.675853
## 1892             14 years old Female               9th grade   1.63  5.347769
## 1893             17 years old   Male              11th grade   1.63  5.347769
## 1894             14 years old   Male               9th grade   1.75  5.741470
## 1895             15 years old Female              10th grade   1.65  5.413386
## 1896             15 years old Female              10th grade   1.55  5.085302
## 1897             16 years old Female              10th grade   1.60  5.249344
## 1898             16 years old Female               9th grade   1.60  5.249344
## 1899             15 years old Female              10th grade   1.55  5.085302
## 1900             15 years old Female              10th grade   1.57  5.150919
## 1901             16 years old Female              10th grade   1.63  5.347769
## 1902             15 years old   Male               9th grade   1.78  5.839895
## 1903             15 years old Female               9th grade   1.68  5.511811
## 1904             16 years old Female              10th grade   1.60  5.249344
## 1905             16 years old Female              10th grade   1.57  5.150919
## 1906             14 years old Female               9th grade   1.47  4.822835
## 1907             15 years old Female              10th grade   1.63  5.347769
## 1908             16 years old   Male              11th grade   1.88  6.167979
## 1909             16 years old Female              11th grade     NA        NA
## 1910             14 years old   Male               9th grade   1.60  5.249344
## 1911             14 years old   Male               9th grade   1.75  5.741470
## 1912             15 years old   Male              10th grade   1.68  5.511811
## 1913             15 years old Female              10th grade   1.55  5.085302
## 1914             15 years old   Male               9th grade   1.65  5.413386
## 1915             16 years old   Male              11th grade   1.70  5.577428
## 1916             17 years old Female              11th grade   1.63  5.347769
## 1917             15 years old   Male              10th grade     NA        NA
## 1918             14 years old   Male               9th grade   1.63  5.347769
## 1919             15 years old Female              10th grade   1.55  5.085302
## 1920             14 years old   Male               9th grade     NA        NA
## 1921             15 years old Female              10th grade     NA        NA
## 1922             17 years old   Male              12th grade   1.70  5.577428
## 1923             15 years old Female              10th grade   1.60  5.249344
## 1924             14 years old   Male               9th grade   1.65  5.413386
## 1925             15 years old Female              10th grade   1.63  5.347769
## 1926             15 years old Female               9th grade   1.70  5.577428
## 1927    18 years old or older Female              12th grade   1.68  5.511811
## 1928    18 years old or older   Male              12th grade   1.73  5.675853
## 1929    18 years old or older Female              12th grade   1.65  5.413386
## 1930             17 years old Female              12th grade   1.63  5.347769
## 1931             17 years old   Male              12th grade   1.83  6.003937
## 1932             16 years old   Male              11th grade   1.70  5.577428
## 1933    18 years old or older Female              12th grade   1.65  5.413386
## 1934    18 years old or older   Male              12th grade   1.60  5.249344
## 1935             17 years old   Male              12th grade   1.83  6.003937
## 1936             17 years old   Male              12th grade   1.83  6.003937
## 1937    18 years old or older   Male              12th grade   1.83  6.003937
## 1938             16 years old Female              11th grade   1.60  5.249344
## 1939    18 years old or older Female              12th grade   1.65  5.413386
## 1940    18 years old or older   Male              12th grade   1.78  5.839895
## 1941    18 years old or older Female              12th grade   1.60  5.249344
## 1942             17 years old Female              11th grade   1.68  5.511811
## 1943             16 years old Female              11th grade   1.52  4.986877
## 1944             16 years old   Male              11th grade   1.75  5.741470
## 1945             16 years old Female              11th grade   1.65  5.413386
## 1946             17 years old Female              11th grade   1.63  5.347769
## 1947             17 years old Female              11th grade   1.70  5.577428
## 1948             17 years old   Male              11th grade   1.63  5.347769
## 1949    18 years old or older Female              12th grade   1.63  5.347769
## 1950    18 years old or older   Male              12th grade   1.88  6.167979
## 1951             17 years old   Male              11th grade   1.80  5.905512
## 1952             17 years old   Male              11th grade   1.78  5.839895
## 1953  12 years old or younger Female Ungraded or other grade     NA        NA
## 1954             17 years old Female              11th grade     NA        NA
## 1955             16 years old Female              11th grade   1.55  5.085302
## 1956             17 years old Female              11th grade   1.60  5.249344
## 1957             14 years old   Male               9th grade   1.65  5.413386
## 1958             15 years old Female               9th grade     NA        NA
## 1959             15 years old Female               9th grade     NA        NA
## 1960             15 years old Female              10th grade   1.65  5.413386
## 1961             15 years old Female              10th grade   1.65  5.413386
## 1962             14 years old Female               9th grade   1.57  5.150919
## 1963             15 years old Female               9th grade   1.65  5.413386
## 1964             16 years old Female              10th grade   1.60  5.249344
## 1965             14 years old   Male               9th grade   1.65  5.413386
## 1966             15 years old Female               9th grade   1.70  5.577428
## 1967             15 years old   Male               9th grade   1.80  5.905512
## 1968             16 years old Female              10th grade     NA        NA
## 1969             15 years old Female               9th grade   1.63  5.347769
## 1970             14 years old Female               9th grade   1.52  4.986877
## 1971             15 years old Female               9th grade     NA        NA
## 1972             16 years old Female              10th grade   1.70  5.577428
## 1973             15 years old   Male              10th grade   1.70  5.577428
## 1974             16 years old   Male              10th grade     NA        NA
## 1975             15 years old   Male              10th grade   1.75  5.741470
## 1976             14 years old   Male               9th grade     NA        NA
## 1977             14 years old Female               9th grade   1.60  5.249344
## 1978             14 years old Female               9th grade   1.68  5.511811
## 1979             15 years old   Male               9th grade   1.80  5.905512
## 1980             15 years old   Male               9th grade   1.75  5.741470
## 1981             16 years old   Male              10th grade   1.75  5.741470
## 1982             14 years old Female               9th grade   1.55  5.085302
## 1983             15 years old   Male               9th grade   1.88  6.167979
## 1984    18 years old or older   Male              12th grade   1.78  5.839895
## 1985             17 years old   Male              12th grade   1.68  5.511811
## 1986             17 years old Female              12th grade   1.78  5.839895
## 1987             17 years old   Male              12th grade   1.90  6.233596
## 1988             15 years old Female              10th grade   1.60  5.249344
## 1989             17 years old   Male              12th grade   1.78  5.839895
## 1990             15 years old Female              10th grade   1.68  5.511811
## 1991    18 years old or older Female              12th grade   1.63  5.347769
## 1992             16 years old   Male              10th grade   1.75  5.741470
## 1993             17 years old   Male              12th grade   1.70  5.577428
## 1994    18 years old or older Female              12th grade   1.75  5.741470
## 1995             14 years old Female               9th grade   1.55  5.085302
## 1996    18 years old or older Female              12th grade   1.80  5.905512
## 1997             15 years old Female              10th grade   1.50  4.921260
## 1998             17 years old   Male              12th grade   1.80  5.905512
## 1999             15 years old Female              10th grade   1.68  5.511811
## 2000             16 years old Female              10th grade     NA        NA
## 2001             16 years old   Male              10th grade   1.80  5.905512
## 2002    18 years old or older Female              12th grade   1.57  5.150919
## 2003    18 years old or older   Male              12th grade   1.65  5.413386
## 2004             15 years old Female              10th grade   1.63  5.347769
## 2005             17 years old Female              12th grade   1.65  5.413386
## 2006             16 years old   Male              10th grade   1.80  5.905512
## 2007             17 years old Female              12th grade   1.63  5.347769
## 2008             16 years old Female              10th grade   1.70  5.577428
## 2009             17 years old   Male              12th grade   1.83  6.003937
## 2010    18 years old or older Female              12th grade   1.68  5.511811
## 2011             15 years old   Male              10th grade   1.73  5.675853
## 2012    18 years old or older Female              12th grade   1.68  5.511811
## 2013             15 years old   Male              10th grade   1.60  5.249344
## 2014    18 years old or older Female              12th grade   1.75  5.741470
## 2015             15 years old   Male              10th grade   1.93  6.332021
## 2016             17 years old   Male              12th grade   1.70  5.577428
## 2017             17 years old Female              12th grade   1.63  5.347769
## 2018             17 years old Female              12th grade   1.70  5.577428
## 2019             17 years old Female              12th grade   1.60  5.249344
## 2020             16 years old Female              10th grade   1.65  5.413386
## 2021             16 years old Female              10th grade   1.68  5.511811
## 2022    18 years old or older Female              12th grade   1.70  5.577428
## 2023             15 years old   Male              10th grade   1.73  5.675853
## 2024             17 years old Female              12th grade   1.52  4.986877
## 2025             15 years old Female              10th grade   1.57  5.150919
## 2026             17 years old   Male              12th grade   1.85  6.069554
## 2027             15 years old   Male              10th grade   1.83  6.003937
## 2028             16 years old   Male              10th grade   1.78  5.839895
## 2029             17 years old Female              12th grade   1.73  5.675853
## 2030             16 years old Female              10th grade   1.52  4.986877
## 2031    18 years old or older   Male              12th grade   1.73  5.675853
## 2032             15 years old   Male              10th grade   1.75  5.741470
## 2033             14 years old   Male               9th grade   1.75  5.741470
## 2034             16 years old Female              11th grade   1.60  5.249344
## 2035             15 years old   Male               9th grade   1.85  6.069554
## 2036             15 years old Female              10th grade   1.70  5.577428
## 2037             17 years old Female              12th grade   1.83  6.003937
## 2038             15 years old   Male               9th grade   1.65  5.413386
## 2039             17 years old Female              11th grade   1.50  4.921260
## 2040             14 years old Female               9th grade   1.52  4.986877
## 2041             15 years old Female              10th grade   1.60  5.249344
## 2042             14 years old Female               9th grade   1.57  5.150919
## 2043             17 years old   Male              11th grade   1.78  5.839895
## 2044             15 years old Female               9th grade   1.57  5.150919
## 2045             16 years old   Male              10th grade   1.63  5.347769
## 2046             16 years old Female              10th grade   1.63  5.347769
## 2047             16 years old   Male              11th grade   1.85  6.069554
## 2048             15 years old Female               9th grade   1.52  4.986877
## 2049             16 years old   Male              10th grade   1.75  5.741470
## 2050             14 years old Female               9th grade   1.60  5.249344
## 2051             16 years old Female              11th grade   1.57  5.150919
## 2052             15 years old Female               9th grade   1.63  5.347769
## 2053             15 years old Female              10th grade   1.60  5.249344
## 2054             15 years old Female               9th grade   1.70  5.577428
## 2055             16 years old Female              10th grade   1.65  5.413386
## 2056             14 years old Female               9th grade     NA        NA
## 2057             14 years old Female               9th grade   1.68  5.511811
## 2058             14 years old   Male               9th grade   1.80  5.905512
## 2059             16 years old   Male              10th grade   1.63  5.347769
## 2060             16 years old   Male              11th grade   1.88  6.167979
## 2061             15 years old   Male               9th grade   1.80  5.905512
## 2062             15 years old Female              10th grade   1.65  5.413386
## 2063             15 years old Female               9th grade   1.65  5.413386
## 2064             17 years old Female              11th grade   1.80  5.905512
## 2065             14 years old Female               9th grade   1.70  5.577428
## 2066             16 years old Female              10th grade   1.60  5.249344
## 2067             14 years old   Male               9th grade   1.78  5.839895
## 2068             14 years old   Male               9th grade   1.78  5.839895
## 2069             16 years old Female              10th grade   1.55  5.085302
## 2070             15 years old   Male               9th grade   1.80  5.905512
## 2071             16 years old Female              11th grade   1.75  5.741470
## 2072             14 years old Female               9th grade     NA        NA
## 2073             16 years old   Male              10th grade   1.68  5.511811
## 2074             15 years old   Male               9th grade   1.83  6.003937
## 2075             17 years old   Male              11th grade   1.65  5.413386
## 2076             14 years old   Male               9th grade   1.85  6.069554
## 2077             16 years old   Male              10th grade   1.75  5.741470
## 2078             17 years old Female              11th grade   1.63  5.347769
## 2079             15 years old   Male               9th grade   1.96  6.430446
## 2080             15 years old Female               9th grade   1.70  5.577428
## 2081             15 years old   Male              10th grade   1.80  5.905512
## 2082             17 years old Female              11th grade   1.55  5.085302
## 2083             14 years old Female               9th grade   1.63  5.347769
## 2084             15 years old Female               9th grade   1.63  5.347769
## 2085             16 years old Female              10th grade   1.60  5.249344
## 2086             14 years old Female               9th grade   1.55  5.085302
## 2087             17 years old   Male              11th grade   1.80  5.905512
## 2088             14 years old   Male               9th grade   1.50  4.921260
## 2089             16 years old Female              10th grade   1.63  5.347769
## 2090             14 years old Female               9th grade   1.57  5.150919
## 2091             17 years old Female              11th grade     NA        NA
## 2092             15 years old Female               9th grade   1.65  5.413386
## 2093             15 years old Female              10th grade   1.57  5.150919
## 2094             15 years old   Male               9th grade     NA        NA
## 2095             17 years old   Male              11th grade   1.93  6.332021
## 2096             15 years old Female               9th grade   1.70  5.577428
## 2097             15 years old Female              10th grade   1.55  5.085302
## 2098             17 years old Female              11th grade   1.50  4.921260
## 2099             16 years old   Male              11th grade   1.78  5.839895
## 2100             15 years old Female               9th grade   1.60  5.249344
## 2101             16 years old Female              10th grade   1.85  6.069554
## 2102             17 years old Female              11th grade   1.63  5.347769
## 2103             14 years old Female               9th grade   1.57  5.150919
## 2104             16 years old   Male              11th grade   1.80  5.905512
## 2105             14 years old Female               9th grade     NA        NA
## 2106             16 years old Female              10th grade     NA        NA
## 2107             17 years old   Male              11th grade   1.73  5.675853
## 2108             14 years old Female               9th grade   1.57  5.150919
## 2109             17 years old Female              11th grade   1.63  5.347769
## 2110             15 years old Female               9th grade     NA        NA
## 2111             15 years old Female              10th grade   1.73  5.675853
## 2112             16 years old Female              11th grade   1.57  5.150919
## 2113             14 years old   Male               9th grade   1.83  6.003937
## 2114             16 years old Female              11th grade   1.57  5.150919
## 2115             14 years old Female               9th grade   1.63  5.347769
## 2116             16 years old   Male              10th grade   1.75  5.741470
## 2117             17 years old   Male              12th grade   1.55  5.085302
## 2118             14 years old Female               9th grade     NA        NA
## 2119             14 years old Female               9th grade   1.60  5.249344
## 2120             14 years old Female               9th grade   1.50  4.921260
## 2121             15 years old Female               9th grade   1.63  5.347769
## 2122             14 years old   Male               9th grade   1.78  5.839895
## 2123             15 years old   Male               9th grade   1.70  5.577428
## 2124             14 years old   Male               9th grade   1.70  5.577428
## 2125             15 years old   Male               9th grade   1.65  5.413386
## 2126             14 years old Female               9th grade   1.57  5.150919
## 2127             15 years old   Male              10th grade   1.70  5.577428
## 2128             15 years old   Male              10th grade   1.52  4.986877
## 2129             16 years old Female              10th grade   1.63  5.347769
## 2130             15 years old Female              10th grade   1.60  5.249344
## 2131             15 years old Female              10th grade   1.60  5.249344
## 2132             15 years old   Male              10th grade   1.68  5.511811
## 2133             16 years old Female              10th grade   1.68  5.511811
## 2134             15 years old Female              10th grade   1.55  5.085302
## 2135             16 years old Female              10th grade   1.75  5.741470
## 2136             15 years old Female               9th grade   1.57  5.150919
## 2137             16 years old   Male              10th grade   1.83  6.003937
## 2138             15 years old Female              10th grade   1.63  5.347769
## 2139             15 years old   Male              10th grade   1.85  6.069554
## 2140             16 years old   Male              10th grade   1.73  5.675853
## 2141             16 years old   Male              10th grade   1.70  5.577428
## 2142             15 years old Female              10th grade   1.52  4.986877
## 2143             17 years old Female              12th grade   1.68  5.511811
## 2144             17 years old   Male              11th grade   1.75  5.741470
## 2145             15 years old Female              10th grade   1.52  4.986877
## 2146             16 years old   Male              10th grade   1.65  5.413386
## 2147             15 years old   Male              10th grade   1.83  6.003937
## 2148             17 years old   Male              12th grade   1.78  5.839895
## 2149             17 years old   Male              12th grade   1.90  6.233596
## 2150             17 years old Female              12th grade   1.70  5.577428
## 2151             15 years old Female              10th grade   1.63  5.347769
## 2152             17 years old Female              12th grade     NA        NA
## 2153             17 years old Female              12th grade   1.68  5.511811
## 2154             16 years old Female              12th grade   1.68  5.511811
## 2155             17 years old   Male              12th grade   1.83  6.003937
## 2156    18 years old or older   Male              12th grade   1.68  5.511811
## 2157             17 years old   Male              12th grade   1.70  5.577428
## 2158    18 years old or older Female              12th grade   1.52  4.986877
## 2159    18 years old or older   Male              12th grade   1.75  5.741470
## 2160             15 years old   Male              10th grade   1.88  6.167979
## 2161             16 years old   Male              10th grade   1.85  6.069554
## 2162             16 years old   Male              10th grade     NA        NA
## 2163             17 years old Female              12th grade   1.60  5.249344
## 2164             17 years old   Male              12th grade   1.75  5.741470
## 2165             17 years old   Male              12th grade   1.88  6.167979
## 2166    18 years old or older   Male              12th grade   2.03  6.660105
## 2167    18 years old or older   Male              12th grade   1.73  5.675853
## 2168             17 years old Female              12th grade   1.73  5.675853
## 2169    18 years old or older   Male              12th grade   1.75  5.741470
## 2170    18 years old or older Female              12th grade   1.50  4.921260
## 2171             17 years old Female              12th grade   1.65  5.413386
## 2172             17 years old Female              12th grade     NA        NA
## 2173             17 years old Female              12th grade   1.68  5.511811
## 2174             17 years old   Male              12th grade   1.70  5.577428
## 2175    18 years old or older   Male              12th grade   1.96  6.430446
## 2176             16 years old   Male              12th grade   1.80  5.905512
## 2177             14 years old   Male               9th grade   1.70  5.577428
## 2178             16 years old   Male              10th grade   1.83  6.003937
## 2179             14 years old Female               9th grade   1.73  5.675853
## 2180             15 years old   Male               9th grade   1.73  5.675853
## 2181             14 years old Female               9th grade   1.63  5.347769
## 2182             15 years old Female              10th grade   1.60  5.249344
## 2183             15 years old Female               9th grade   1.63  5.347769
## 2184             14 years old Female               9th grade   1.57  5.150919
## 2185             14 years old Female               9th grade     NA        NA
## 2186             15 years old Female               9th grade   1.60  5.249344
## 2187             15 years old   Male               9th grade   1.75  5.741470
## 2188             14 years old   Male               9th grade   1.80  5.905512
## 2189             14 years old Female               9th grade   1.57  5.150919
## 2190             14 years old Female               9th grade   1.52  4.986877
## 2191             16 years old Female               9th grade   1.60  5.249344
## 2192             17 years old   Male              11th grade   1.78  5.839895
## 2193             16 years old   Male              11th grade   1.80  5.905512
## 2194             17 years old   Male              11th grade   1.68  5.511811
## 2195             17 years old Female              11th grade   1.68  5.511811
## 2196             16 years old Female              11th grade   1.68  5.511811
## 2197             16 years old   Male              11th grade   1.90  6.233596
## 2198             17 years old Female              11th grade   1.63  5.347769
## 2199             17 years old   Male              11th grade   1.70  5.577428
## 2200    18 years old or older   Male              11th grade   1.70  5.577428
## 2201             16 years old   Male              11th grade   1.70  5.577428
## 2202             16 years old Female              11th grade   1.68  5.511811
## 2203             16 years old Female              11th grade   1.55  5.085302
## 2204             16 years old Female              11th grade   1.57  5.150919
## 2205             16 years old Female              11th grade   1.63  5.347769
## 2206             16 years old   Male              11th grade   1.70  5.577428
## 2207             16 years old   Male              11th grade     NA        NA
## 2208             16 years old   Male              11th grade   1.73  5.675853
## 2209             16 years old   Male              11th grade   1.80  5.905512
## 2210             17 years old Female              11th grade   1.65  5.413386
## 2211             16 years old Female              11th grade   1.73  5.675853
## 2212             17 years old   Male              11th grade   1.80  5.905512
## 2213             16 years old   Male              11th grade   1.78  5.839895
## 2214             16 years old Female              11th grade   1.75  5.741470
## 2215    18 years old or older   Male              12th grade   1.78  5.839895
## 2216             17 years old Female              12th grade   1.60  5.249344
## 2217             17 years old Female              12th grade   1.63  5.347769
## 2218    18 years old or older   Male              10th grade   1.65  5.413386
## 2219    18 years old or older   Male              10th grade   1.80  5.905512
## 2220             15 years old Female               9th grade   1.63  5.347769
## 2221             16 years old   Male              10th grade   1.88  6.167979
## 2222             14 years old   Male               9th grade   1.73  5.675853
## 2223             14 years old Female               9th grade   1.57  5.150919
## 2224             14 years old   Male               9th grade   1.68  5.511811
## 2225             14 years old Female               9th grade   1.55  5.085302
## 2226             15 years old Female              10th grade   1.73  5.675853
## 2227             14 years old Female               9th grade   1.52  4.986877
## 2228             15 years old Female               9th grade   1.73  5.675853
## 2229             15 years old Female              10th grade   1.32  4.330709
## 2230             15 years old   Male              10th grade   1.60  5.249344
## 2231             16 years old Female              10th grade   1.60  5.249344
## 2232             14 years old   Male               9th grade   1.83  6.003937
## 2233             14 years old Female               9th grade   1.63  5.347769
## 2234             15 years old Female              10th grade   1.57  5.150919
## 2235             16 years old   Male              11th grade   1.80  5.905512
## 2236             16 years old   Male              10th grade   1.83  6.003937
## 2237             15 years old Female              10th grade     NA        NA
## 2238             15 years old   Male               9th grade   1.75  5.741470
## 2239             14 years old   Male               9th grade   1.85  6.069554
## 2240             14 years old Female               9th grade     NA        NA
## 2241             15 years old Female              10th grade   1.63  5.347769
## 2242             15 years old Female               9th grade   1.57  5.150919
## 2243             14 years old   Male               9th grade   1.63  5.347769
## 2244             14 years old   Male               9th grade   1.78  5.839895
## 2245             17 years old   Male              10th grade   1.83  6.003937
## 2246             15 years old Female               9th grade   1.47  4.822835
## 2247             15 years old   Male               9th grade   1.78  5.839895
## 2248             15 years old Female              10th grade     NA        NA
## 2249             15 years old Female               9th grade   1.60  5.249344
## 2250             14 years old   Male               9th grade   1.75  5.741470
## 2251             15 years old Female              10th grade   1.57  5.150919
## 2252             16 years old Female              10th grade   1.70  5.577428
## 2253             17 years old   Male              11th grade     NA        NA
## 2254    18 years old or older Female              12th grade   1.63  5.347769
## 2255             15 years old   Male              10th grade   1.88  6.167979
## 2256             17 years old   Male              12th grade   1.88  6.167979
## 2257             16 years old   Male              11th grade   1.78  5.839895
## 2258    18 years old or older   Male              11th grade     NA        NA
## 2259             17 years old   Male              12th grade   1.85  6.069554
## 2260             17 years old   Male              12th grade   1.75  5.741470
## 2261             16 years old   Male              11th grade   1.85  6.069554
## 2262             16 years old Female              11th grade   1.68  5.511811
## 2263             16 years old   Male              11th grade   1.83  6.003937
## 2264             16 years old   Male              11th grade   1.63  5.347769
## 2265             17 years old   Male              12th grade   1.73  5.675853
## 2266             14 years old Female               9th grade   1.63  5.347769
## 2267             17 years old   Male              11th grade   1.83  6.003937
## 2268             17 years old   Male              12th grade   1.75  5.741470
## 2269             17 years old   Male              11th grade   1.83  6.003937
## 2270             17 years old Female              12th grade   1.68  5.511811
## 2271             17 years old Female              12th grade   1.63  5.347769
## 2272    18 years old or older Female              12th grade   1.63  5.347769
## 2273    18 years old or older   Male              12th grade   1.83  6.003937
## 2274             16 years old Female              10th grade   1.60  5.249344
## 2275             16 years old   Male              11th grade   1.68  5.511811
## 2276    18 years old or older Female              12th grade   1.68  5.511811
## 2277             16 years old   Male              11th grade     NA        NA
## 2278             17 years old   Male              12th grade   1.75  5.741470
## 2279             15 years old Female              10th grade   1.57  5.150919
## 2280             15 years old   Male              10th grade   1.70  5.577428
## 2281             17 years old Female              11th grade   1.65  5.413386
## 2282             17 years old   Male              11th grade   1.70  5.577428
## 2283             17 years old   Male              12th grade   1.68  5.511811
## 2284             14 years old Female               9th grade   1.60  5.249344
## 2285             16 years old Female              10th grade   1.78  5.839895
## 2286    18 years old or older   Male              12th grade   1.83  6.003937
## 2287             17 years old   Male              12th grade   1.80  5.905512
## 2288             16 years old Female              11th grade   1.50  4.921260
## 2289             17 years old Female              12th grade   1.78  5.839895
## 2290             17 years old Female              12th grade     NA        NA
## 2291             17 years old Female              11th grade   1.63  5.347769
## 2292             17 years old   Male              12th grade   1.80  5.905512
## 2293             17 years old Female              12th grade   1.68  5.511811
## 2294             17 years old   Male              12th grade   1.78  5.839895
## 2295             16 years old   Male              11th grade   1.80  5.905512
## 2296             17 years old   Male              12th grade   1.70  5.577428
## 2297    18 years old or older   Male              12th grade   1.85  6.069554
## 2298    18 years old or older Female              12th grade   1.63  5.347769
## 2299    18 years old or older   Male              12th grade   1.80  5.905512
## 2300             15 years old Female              10th grade   1.50  4.921260
## 2301             17 years old   Male              12th grade     NA        NA
## 2302             17 years old Female              12th grade   1.52  4.986877
## 2303             15 years old Female              10th grade   1.65  5.413386
## 2304             17 years old Female              12th grade   1.55  5.085302
## 2305    18 years old or older   Male              12th grade   1.88  6.167979
## 2306             17 years old Female              12th grade   1.57  5.150919
## 2307    18 years old or older   Male              12th grade   1.73  5.675853
## 2308             17 years old   Male              11th grade   1.78  5.839895
## 2309    18 years old or older   Male              12th grade   1.65  5.413386
## 2310    18 years old or older Female              12th grade   1.65  5.413386
## 2311             16 years old   Male              11th grade   1.75  5.741470
## 2312             17 years old   Male              12th grade   1.83  6.003937
## 2313    18 years old or older Female              12th grade   1.60  5.249344
## 2314    18 years old or older   Male              12th grade   1.70  5.577428
## 2315             15 years old Female              10th grade     NA        NA
## 2316             17 years old Female              11th grade   1.75  5.741470
## 2317             17 years old Female              11th grade   1.63  5.347769
## 2318    18 years old or older   Male              12th grade   2.01  6.594488
## 2319    18 years old or older Female              12th grade   1.68  5.511811
## 2320    18 years old or older   Male              12th grade   1.83  6.003937
## 2321    18 years old or older   Male              12th grade   1.80  5.905512
## 2322             17 years old   Male              12th grade   1.78  5.839895
## 2323             15 years old Female              10th grade   1.70  5.577428
## 2324             16 years old Female              11th grade   1.60  5.249344
## 2325             14 years old   Male               9th grade   1.68  5.511811
## 2326    18 years old or older Female              12th grade   1.63  5.347769
## 2327             17 years old   Male              12th grade   1.90  6.233596
## 2328             16 years old   Male              11th grade   1.70  5.577428
## 2329    18 years old or older   Male              12th grade   1.80  5.905512
## 2330             17 years old Female              12th grade     NA        NA
## 2331             17 years old   Male              12th grade   1.85  6.069554
## 2332    18 years old or older   Male              12th grade   1.83  6.003937
## 2333             17 years old Female              11th grade   1.78  5.839895
## 2334    18 years old or older Female              12th grade   1.75  5.741470
## 2335             17 years old Female              12th grade   1.63  5.347769
## 2336             17 years old   Male              11th grade   1.60  5.249344
## 2337             17 years old Female              12th grade   1.63  5.347769
## 2338    18 years old or older   Male              12th grade   1.78  5.839895
## 2339             16 years old Female              10th grade   1.63  5.347769
## 2340    18 years old or older Female              12th grade   1.50  4.921260
## 2341             17 years old   Male              11th grade   1.80  5.905512
## 2342             17 years old Female              12th grade   1.55  5.085302
## 2343             15 years old Female              10th grade     NA        NA
## 2344             17 years old   Male              10th grade   1.73  5.675853
## 2345             16 years old Female              10th grade   1.68  5.511811
## 2346             15 years old Female              10th grade   1.68  5.511811
## 2347             15 years old   Male              10th grade   1.83  6.003937
## 2348             15 years old   Male              10th grade   1.75  5.741470
## 2349             16 years old   Male              10th grade   1.60  5.249344
## 2350             15 years old   Male              10th grade     NA        NA
## 2351             16 years old   Male              10th grade   1.80  5.905512
## 2352             16 years old Female              10th grade     NA        NA
## 2353             15 years old Female              10th grade   1.57  5.150919
## 2354             15 years old   Male              10th grade   1.68  5.511811
## 2355             15 years old   Male              10th grade   1.68  5.511811
## 2356             15 years old   Male              10th grade   1.83  6.003937
## 2357             16 years old   Male              10th grade     NA        NA
## 2358             15 years old   Male               9th grade   1.85  6.069554
## 2359             15 years old   Male               9th grade   1.75  5.741470
## 2360    18 years old or older   Male              12th grade   1.75  5.741470
## 2361             16 years old Female              11th grade   1.57  5.150919
## 2362             17 years old Female              12th grade   1.52  4.986877
## 2363             17 years old   Male              11th grade   1.85  6.069554
## 2364    18 years old or older   Male              11th grade   1.78  5.839895
## 2365             17 years old Female              12th grade   1.70  5.577428
## 2366             17 years old   Male              11th grade   1.68  5.511811
## 2367    18 years old or older   Male              11th grade   1.70  5.577428
## 2368    18 years old or older Female              12th grade   1.73  5.675853
## 2369             17 years old   Male              11th grade   1.73  5.675853
## 2370    18 years old or older Female              12th grade   1.70  5.577428
## 2371             16 years old   Male              11th grade   1.80  5.905512
## 2372             17 years old Female              12th grade   1.63  5.347769
## 2373             17 years old   Male              11th grade   1.78  5.839895
## 2374    18 years old or older Female              12th grade   1.55  5.085302
## 2375             17 years old   Male              11th grade   1.80  5.905512
## 2376    18 years old or older   Male              12th grade   1.73  5.675853
## 2377    18 years old or older   Male              12th grade   1.73  5.675853
## 2378             17 years old Female              11th grade     NA        NA
## 2379             14 years old Female               9th grade   1.55  5.085302
## 2380             17 years old   Male              11th grade   1.78  5.839895
## 2381             17 years old Female              12th grade   1.63  5.347769
## 2382             16 years old   Male              11th grade   1.73  5.675853
## 2383    18 years old or older Female              12th grade   1.55  5.085302
## 2384             16 years old Female              11th grade   1.55  5.085302
## 2385    18 years old or older   Male              12th grade   1.78  5.839895
## 2386             16 years old   Male              11th grade   1.68  5.511811
## 2387             17 years old Female              12th grade   1.60  5.249344
## 2388             16 years old   Male              11th grade   1.88  6.167979
## 2389             17 years old   Male              12th grade     NA        NA
## 2390             17 years old Female              12th grade   1.55  5.085302
## 2391             16 years old   Male              11th grade   1.88  6.167979
## 2392             15 years old Female               9th grade   1.50  4.921260
## 2393             17 years old Female              11th grade   1.52  4.986877
## 2394    18 years old or older   Male              12th grade   1.75  5.741470
## 2395    18 years old or older   Male              12th grade     NA        NA
## 2396             17 years old   Male              12th grade   1.90  6.233596
## 2397             17 years old   Male              12th grade   1.73  5.675853
## 2398             17 years old   Male              12th grade   1.80  5.905512
## 2399             17 years old   Male              11th grade   1.83  6.003937
## 2400             15 years old Female               9th grade   1.57  5.150919
## 2401             14 years old   Male               9th grade   1.83  6.003937
## 2402             17 years old   Male              12th grade   1.75  5.741470
## 2403             14 years old   Male               9th grade   1.78  5.839895
## 2404             14 years old   Male               9th grade   1.70  5.577428
## 2405             17 years old Female              12th grade   1.60  5.249344
## 2406             17 years old   Male              12th grade   1.75  5.741470
## 2407             16 years old   Male              11th grade   1.78  5.839895
## 2408             15 years old Female               9th grade   1.68  5.511811
## 2409             17 years old   Male              12th grade   1.68  5.511811
## 2410             17 years old   Male              11th grade   1.80  5.905512
## 2411             17 years old Female              12th grade   1.70  5.577428
## 2412             14 years old   Male               9th grade   1.78  5.839895
## 2413             15 years old Female               9th grade   1.73  5.675853
## 2414             14 years old Female               9th grade     NA        NA
## 2415             14 years old   Male               9th grade   1.70  5.577428
## 2416             14 years old Female               9th grade   1.63  5.347769
## 2417             15 years old Female               9th grade   1.52  4.986877
## 2418             14 years old   Male               9th grade   1.78  5.839895
## 2419             14 years old Female               9th grade   1.60  5.249344
## 2420             15 years old   Male               9th grade   1.88  6.167979
## 2421             15 years old Female               9th grade     NA        NA
## 2422             15 years old Female              10th grade   1.60  5.249344
## 2423             16 years old Female              10th grade   1.52  4.986877
## 2424             16 years old Female              10th grade   1.60  5.249344
## 2425             15 years old   Male              10th grade   1.70  5.577428
## 2426             16 years old Female              10th grade   1.60  5.249344
## 2427             17 years old Female              11th grade     NA        NA
## 2428             17 years old Female              11th grade   1.50  4.921260
## 2429             17 years old   Male              12th grade   1.70  5.577428
## 2430             14 years old Female               9th grade   1.50  4.921260
## 2431             16 years old Female              10th grade   1.75  5.741470
## 2432             17 years old Female              10th grade   1.57  5.150919
## 2433             17 years old   Male              11th grade   1.83  6.003937
## 2434             17 years old Female              11th grade   1.55  5.085302
## 2435    18 years old or older Female              12th grade   1.63  5.347769
## 2436    18 years old or older   Male              12th grade   1.60  5.249344
## 2437             14 years old Female               9th grade   1.63  5.347769
## 2438             14 years old   Male               9th grade   1.63  5.347769
## 2439             16 years old   Male              10th grade   1.75  5.741470
## 2440             15 years old   Male                    <NA>   1.73  5.675853
## 2441             16 years old Female              11th grade   1.57  5.150919
## 2442             17 years old Female              11th grade   1.60  5.249344
## 2443             17 years old   Male              12th grade   1.70  5.577428
## 2444             17 years old Female              12th grade   1.60  5.249344
## 2445             15 years old   Male               9th grade     NA        NA
## 2446             14 years old   Male               9th grade   1.75  5.741470
## 2447             16 years old   Male              10th grade   1.78  5.839895
## 2448             15 years old Female              10th grade   1.63  5.347769
## 2449             17 years old   Male              11th grade   1.70  5.577428
## 2450             17 years old   Male              12th grade   1.83  6.003937
## 2451    18 years old or older Female              12th grade   1.85  6.069554
## 2452             14 years old   Male               9th grade   1.73  5.675853
## 2453             14 years old   Male               9th grade     NA        NA
## 2454             16 years old Female              10th grade   1.55  5.085302
## 2455             16 years old Female              10th grade   1.60  5.249344
## 2456             17 years old Female              11th grade   1.45  4.757218
## 2457             16 years old Female              11th grade   1.63  5.347769
## 2458             17 years old Female              12th grade   1.52  4.986877
## 2459             14 years old Female               9th grade     NA        NA
## 2460             14 years old   Male               9th grade     NA        NA
## 2461             15 years old   Male              10th grade   1.68  5.511811
## 2462             16 years old Female              10th grade   1.65  5.413386
## 2463             16 years old   Male              11th grade   1.83  6.003937
## 2464             16 years old Female              11th grade   1.57  5.150919
## 2465             15 years old Female               9th grade   1.60  5.249344
## 2466             14 years old Female               9th grade   1.63  5.347769
## 2467             17 years old Female              10th grade   1.68  5.511811
## 2468             16 years old   Male              10th grade   1.75  5.741470
## 2469             17 years old Female              11th grade   1.70  5.577428
## 2470             16 years old   Male              11th grade   1.85  6.069554
## 2471    18 years old or older Female              12th grade   1.57  5.150919
## 2472             17 years old Female              12th grade   1.60  5.249344
## 2473             14 years old Female               9th grade   1.55  5.085302
## 2474             16 years old Female              10th grade   1.47  4.822835
## 2475             15 years old   <NA>              10th grade     NA        NA
## 2476             17 years old   Male              11th grade   1.65  5.413386
## 2477             14 years old Female               9th grade   1.63  5.347769
## 2478             14 years old Female               9th grade   1.55  5.085302
## 2479             15 years old Female              10th grade   1.57  5.150919
## 2480             16 years old Female              10th grade   1.68  5.511811
## 2481             16 years old Female              11th grade   1.55  5.085302
## 2482             14 years old Female               9th grade   1.68  5.511811
## 2483             16 years old   Male              10th grade   1.63  5.347769
## 2484             16 years old   Male              10th grade   1.73  5.675853
## 2485             16 years old   Male              11th grade   1.75  5.741470
## 2486             17 years old   Male              11th grade   1.70  5.577428
## 2487             17 years old Female              12th grade   1.68  5.511811
## 2488    18 years old or older   Male              12th grade   1.90  6.233596
## 2489             15 years old Female               9th grade   1.55  5.085302
## 2490             14 years old   Male               9th grade   1.80  5.905512
## 2491             16 years old   Male              10th grade   1.83  6.003937
## 2492             16 years old Female              10th grade   1.45  4.757218
## 2493             14 years old   Male               9th grade     NA        NA
## 2494             15 years old   Male               9th grade   1.73  5.675853
## 2495             16 years old Female              10th grade   1.63  5.347769
## 2496             16 years old   Male               9th grade   1.96  6.430446
## 2497             14 years old Female               9th grade   1.65  5.413386
## 2498             16 years old   Male              11th grade   1.83  6.003937
## 2499             15 years old   Male              10th grade   1.73  5.675853
## 2500             16 years old   Male              11th grade   1.75  5.741470
## 2501             17 years old Female              11th grade     NA        NA
## 2502             17 years old   Male              12th grade   1.65  5.413386
## 2503             17 years old   Male              12th grade   1.73  5.675853
## 2504             15 years old Female               9th grade   1.63  5.347769
## 2505             14 years old Female               9th grade   1.55  5.085302
## 2506             15 years old Female              10th grade     NA        NA
## 2507             16 years old Female              10th grade   1.65  5.413386
## 2508             16 years old Female              11th grade   1.57  5.150919
## 2509    18 years old or older Female              12th grade   1.60  5.249344
## 2510             17 years old Female              12th grade   1.68  5.511811
## 2511             16 years old   Male               9th grade   1.73  5.675853
## 2512             16 years old   Male              10th grade   1.75  5.741470
## 2513             15 years old   Male              10th grade   1.83  6.003937
## 2514             17 years old   Male              11th grade   1.68  5.511811
## 2515             17 years old   Male              11th grade   1.73  5.675853
## 2516    18 years old or older   Male              12th grade   1.83  6.003937
## 2517             14 years old   Male               9th grade   1.65  5.413386
## 2518             15 years old   Male               9th grade   1.75  5.741470
## 2519             16 years old Female              10th grade   1.65  5.413386
## 2520             16 years old Female              10th grade     NA        NA
## 2521             16 years old   Male              11th grade   1.83  6.003937
## 2522             16 years old Female              11th grade   1.63  5.347769
## 2523             14 years old   Male               9th grade   1.70  5.577428
## 2524             17 years old   Male              11th grade   1.75  5.741470
## 2525             16 years old Female              11th grade   1.57  5.150919
## 2526             16 years old Female              11th grade   1.68  5.511811
## 2527             14 years old   Male               9th grade   1.57  5.150919
## 2528             14 years old Female               9th grade   1.57  5.150919
## 2529             16 years old Female              10th grade   1.68  5.511811
## 2530             16 years old Female              10th grade   1.68  5.511811
## 2531             16 years old Female              11th grade   1.63  5.347769
## 2532    18 years old or older   Male              11th grade   1.85  6.069554
## 2533             17 years old   Male              12th grade   1.83  6.003937
## 2534             17 years old Female              12th grade   1.52  4.986877
## 2535             15 years old Female               9th grade     NA        NA
## 2536             15 years old   Male               9th grade   1.73  5.675853
## 2537             15 years old   Male              10th grade   1.75  5.741470
## 2538    18 years old or older Female              12th grade   1.55  5.085302
## 2539             17 years old   Male              12th grade   1.75  5.741470
## 2540             15 years old Female               9th grade   1.73  5.675853
## 2541             14 years old Female               9th grade     NA        NA
## 2542             16 years old Female              10th grade     NA        NA
## 2543             16 years old   Male              10th grade   1.83  6.003937
## 2544             17 years old   Male              11th grade   1.83  6.003937
## 2545             17 years old Female              11th grade   1.70  5.577428
## 2546    18 years old or older   Male              12th grade   1.90  6.233596
## 2547             17 years old Female              12th grade   1.57  5.150919
## 2548             15 years old   Male               9th grade   1.52  4.986877
## 2549             14 years old   Male               9th grade   1.63  5.347769
## 2550             16 years old   Male              10th grade   1.63  5.347769
## 2551             15 years old   <NA>              10th grade     NA        NA
## 2552             17 years old Female              11th grade   1.57  5.150919
## 2553             17 years old   Male              11th grade   1.83  6.003937
## 2554             17 years old Female              12th grade   1.55  5.085302
## 2555    18 years old or older Female              12th grade   1.65  5.413386
## 2556             15 years old Female               9th grade   1.60  5.249344
## 2557             17 years old   Male              11th grade   1.78  5.839895
## 2558             14 years old   Male               9th grade   1.75  5.741470
## 2559             17 years old   Male              11th grade   1.96  6.430446
## 2560             16 years old   Male              11th grade   1.83  6.003937
## 2561    18 years old or older Female              12th grade   1.63  5.347769
## 2562    18 years old or older   Male              12th grade   1.80  5.905512
## 2563             15 years old Female               9th grade     NA        NA
## 2564    18 years old or older Female              12th grade   1.68  5.511811
## 2565             17 years old Female              12th grade   1.57  5.150919
## 2566    18 years old or older Female              12th grade   1.55  5.085302
## 2567    18 years old or older Female              12th grade   1.52  4.986877
## 2568    18 years old or older Female              12th grade   1.57  5.150919
## 2569    18 years old or older   Male              12th grade   1.70  5.577428
## 2570             15 years old Female               9th grade   1.70  5.577428
## 2571             16 years old   Male              11th grade   1.93  6.332021
## 2572             16 years old   Male              10th grade   1.80  5.905512
## 2573             17 years old Female              11th grade   1.57  5.150919
## 2574             15 years old Female              10th grade   1.68  5.511811
## 2575             17 years old   Male              11th grade   2.01  6.594488
## 2576             15 years old Female               9th grade   1.65  5.413386
## 2577    18 years old or older Female              12th grade   1.55  5.085302
## 2578             15 years old Female              10th grade   1.75  5.741470
## 2579    18 years old or older Female              12th grade   1.68  5.511811
## 2580             14 years old Female               9th grade   1.63  5.347769
## 2581             17 years old Female              12th grade   1.78  5.839895
## 2582             15 years old Female              10th grade   1.55  5.085302
## 2583    18 years old or older   Male              12th grade   1.73  5.675853
## 2584    18 years old or older Female              12th grade   1.50  4.921260
## 2585             15 years old   Male               9th grade   1.68  5.511811
## 2586             15 years old Female               9th grade   1.65  5.413386
## 2587             17 years old   Male              12th grade   1.73  5.675853
## 2588             16 years old Female              10th grade   1.57  5.150919
## 2589             17 years old Female              12th grade   1.63  5.347769
## 2590             14 years old   Male               9th grade   1.75  5.741470
## 2591             17 years old Female              12th grade   1.57  5.150919
## 2592             15 years old   Male              10th grade   1.68  5.511811
## 2593    18 years old or older   Male              12th grade   1.70  5.577428
## 2594             15 years old   Male               9th grade   1.78  5.839895
## 2595             17 years old   Male              12th grade   1.68  5.511811
## 2596             15 years old   Male              10th grade   1.85  6.069554
## 2597             15 years old   Male               9th grade   1.75  5.741470
## 2598             17 years old Female              11th grade   1.78  5.839895
## 2599             16 years old   Male              10th grade   1.83  6.003937
## 2600             17 years old Female              12th grade   1.52  4.986877
## 2601             15 years old   Male               9th grade   1.75  5.741470
## 2602             17 years old Female              12th grade   1.52  4.986877
## 2603             16 years old   Male              10th grade   1.65  5.413386
## 2604             17 years old Female              12th grade   1.63  5.347769
## 2605             15 years old   Male               9th grade   1.75  5.741470
## 2606             17 years old   Male              12th grade   1.57  5.150919
## 2607             16 years old Female              10th grade   1.68  5.511811
## 2608             17 years old Female              12th grade   1.63  5.347769
## 2609             15 years old   Male               9th grade   1.68  5.511811
## 2610    18 years old or older   Male              12th grade   1.83  6.003937
## 2611             15 years old   Male              10th grade     NA        NA
## 2612             14 years old Female               9th grade   1.70  5.577428
## 2613             17 years old Female              12th grade   1.63  5.347769
## 2614             16 years old   Male              10th grade   1.80  5.905512
## 2615    18 years old or older Female              12th grade   1.68  5.511811
## 2616    18 years old or older   Male              12th grade   1.78  5.839895
## 2617             16 years old Female              10th grade   1.57  5.150919
## 2618             17 years old   Male              11th grade   1.93  6.332021
## 2619             14 years old   Male               9th grade   1.68  5.511811
## 2620             17 years old   Male              12th grade   1.85  6.069554
## 2621             15 years old Female              10th grade   1.50  4.921260
## 2622             17 years old Female              12th grade   1.50  4.921260
## 2623             17 years old   Male              11th grade   1.98  6.496063
## 2624             15 years old   Male              10th grade   1.88  6.167979
## 2625    18 years old or older   Male              12th grade   1.80  5.905512
## 2626             14 years old Female               9th grade   1.60  5.249344
## 2627    18 years old or older   Male              12th grade   1.73  5.675853
## 2628             16 years old   Male              10th grade   1.78  5.839895
## 2629             16 years old Female              10th grade   1.68  5.511811
## 2630    18 years old or older Female              12th grade   1.68  5.511811
## 2631             15 years old   Male               9th grade   1.73  5.675853
## 2632             17 years old   Male              12th grade   1.70  5.577428
## 2633             15 years old   Male              10th grade   1.70  5.577428
## 2634             17 years old Female              12th grade   1.70  5.577428
## 2635             14 years old   Male               9th grade   1.75  5.741470
## 2636    18 years old or older   Male              12th grade   1.88  6.167979
## 2637             16 years old   Male              10th grade   1.73  5.675853
## 2638    18 years old or older Female              12th grade   1.70  5.577428
## 2639             16 years old Female              11th grade   1.65  5.413386
## 2640             15 years old Female              10th grade   1.57  5.150919
## 2641             17 years old Female              12th grade   1.60  5.249344
## 2642             17 years old Female              12th grade   1.63  5.347769
## 2643             16 years old Female              10th grade   1.55  5.085302
## 2644    18 years old or older   Male              12th grade   1.73  5.675853
## 2645             14 years old   Male               9th grade     NA        NA
## 2646             17 years old Female              11th grade   1.55  5.085302
## 2647             16 years old   Male              10th grade   1.70  5.577428
## 2648    18 years old or older Female              12th grade   1.63  5.347769
## 2649             15 years old   Male               9th grade   1.80  5.905512
## 2650    18 years old or older Female              12th grade   1.52  4.986877
## 2651             16 years old   Male              10th grade   1.73  5.675853
## 2652    18 years old or older Female              12th grade     NA        NA
## 2653             14 years old   Male               9th grade   1.63  5.347769
## 2654             17 years old Female              12th grade     NA        NA
## 2655             16 years old   Male              10th grade   1.80  5.905512
## 2656             15 years old Female               9th grade   1.60  5.249344
## 2657             15 years old Female               9th grade   1.57  5.150919
## 2658             15 years old Female              10th grade   1.68  5.511811
## 2659             17 years old Female              11th grade   1.75  5.741470
## 2660             15 years old   Male               9th grade     NA        NA
## 2661             16 years old Female              10th grade   1.60  5.249344
## 2662             17 years old Female              11th grade   1.55  5.085302
## 2663             15 years old Female               9th grade   1.63  5.347769
## 2664    18 years old or older   Male              12th grade   1.83  6.003937
## 2665             16 years old   Male               9th grade   1.68  5.511811
## 2666             16 years old Female              10th grade   1.55  5.085302
## 2667             15 years old Female               9th grade   1.75  5.741470
## 2668             16 years old Female              10th grade   1.63  5.347769
## 2669             17 years old   Male              11th grade   1.70  5.577428
## 2670             15 years old   Male               9th grade   1.80  5.905512
## 2671             16 years old Female              10th grade   1.65  5.413386
## 2672             15 years old Female              10th grade   1.73  5.675853
## 2673             15 years old Female               9th grade   1.52  4.986877
## 2674             15 years old   Male               9th grade   1.75  5.741470
## 2675             17 years old Female              11th grade   1.70  5.577428
## 2676             16 years old Female              11th grade   1.63  5.347769
## 2677             17 years old Female              12th grade   1.55  5.085302
## 2678             15 years old Female              10th grade   1.50  4.921260
## 2679             17 years old Female              11th grade   1.70  5.577428
## 2680             16 years old   Male               9th grade   1.65  5.413386
## 2681             16 years old Female              10th grade   1.42  4.658793
## 2682             17 years old Female              11th grade   1.65  5.413386
## 2683             17 years old   Male              11th grade   1.73  5.675853
## 2684             15 years old Female              10th grade   1.65  5.413386
## 2685    18 years old or older Female              11th grade   1.50  4.921260
## 2686             15 years old   Male               9th grade   1.75  5.741470
## 2687             16 years old Female              10th grade   1.60  5.249344
## 2688             15 years old   Male              10th grade   1.90  6.233596
## 2689             17 years old   Male              11th grade   1.93  6.332021
## 2690             17 years old Female              11th grade   1.68  5.511811
## 2691             15 years old   Male               9th grade   1.75  5.741470
## 2692             15 years old   Male              10th grade   1.70  5.577428
## 2693             17 years old   Male              11th grade   1.80  5.905512
## 2694             15 years old   Male               9th grade   1.78  5.839895
## 2695             16 years old Female              10th grade   1.60  5.249344
## 2696             14 years old   Male               9th grade   1.83  6.003937
## 2697             17 years old   Male              11th grade   1.90  6.233596
## 2698             15 years old   Male               9th grade   1.68  5.511811
## 2699             15 years old   Male              10th grade   1.78  5.839895
## 2700             15 years old Female              10th grade   1.55  5.085302
## 2701             17 years old   Male              11th grade   1.70  5.577428
## 2702             15 years old   Male              10th grade   1.73  5.675853
## 2703             17 years old Female              11th grade   1.63  5.347769
## 2704             14 years old Female               9th grade   1.68  5.511811
## 2705             15 years old Female              10th grade   1.70  5.577428
## 2706             15 years old   Male               9th grade   1.78  5.839895
## 2707             15 years old   Male              10th grade   1.90  6.233596
## 2708             16 years old   Male               9th grade   1.70  5.577428
## 2709             16 years old Female              10th grade   1.63  5.347769
## 2710             14 years old Female               9th grade   1.68  5.511811
## 2711             15 years old   Male              10th grade   1.78  5.839895
## 2712             16 years old Female              11th grade   1.57  5.150919
## 2713             15 years old Female               9th grade   1.57  5.150919
## 2714             17 years old   Male              11th grade   1.80  5.905512
## 2715             16 years old Female              10th grade   1.55  5.085302
## 2716             16 years old Female              11th grade   1.63  5.347769
## 2717             14 years old   Male               9th grade   1.65  5.413386
## 2718             16 years old   Male               9th grade   1.78  5.839895
## 2719             15 years old Female              10th grade   1.70  5.577428
## 2720             16 years old   Male              10th grade   1.83  6.003937
## 2721             14 years old   Male               9th grade     NA        NA
## 2722             16 years old   Male              10th grade   1.88  6.167979
## 2723             16 years old Female              10th grade   1.60  5.249344
## 2724             17 years old   Male              11th grade   1.70  5.577428
## 2725             16 years old   Male               9th grade   1.65  5.413386
## 2726             14 years old Female               9th grade   1.60  5.249344
## 2727             15 years old   Male               9th grade   1.68  5.511811
## 2728             14 years old Female               9th grade   1.65  5.413386
## 2729    18 years old or older Female              12th grade   1.60  5.249344
## 2730             16 years old   Male              10th grade   1.68  5.511811
## 2731    18 years old or older   Male              11th grade   1.80  5.905512
## 2732             14 years old Female               9th grade   1.57  5.150919
## 2733    18 years old or older Female              12th grade   1.52  4.986877
## 2734             16 years old   Male              10th grade   1.73  5.675853
## 2735    18 years old or older Female              11th grade   1.65  5.413386
## 2736             15 years old Female               9th grade   1.65  5.413386
## 2737             17 years old   Male              12th grade   1.75  5.741470
## 2738             17 years old   Male              10th grade   1.78  5.839895
## 2739             17 years old   Male              11th grade   1.85  6.069554
## 2740             15 years old Female               9th grade   1.55  5.085302
## 2741    18 years old or older Female              12th grade   1.55  5.085302
## 2742             16 years old Female              10th grade   1.57  5.150919
## 2743             16 years old   Male              11th grade   1.73  5.675853
## 2744             15 years old Female               9th grade   1.63  5.347769
## 2745    18 years old or older   Male              12th grade   1.68  5.511811
## 2746             16 years old   Male              11th grade   1.80  5.905512
## 2747             15 years old   Male               9th grade   1.73  5.675853
## 2748             16 years old Female              11th grade   1.52  4.986877
## 2749             16 years old   Male              10th grade   1.75  5.741470
## 2750             17 years old   Male              11th grade   1.65  5.413386
## 2751             14 years old   Male               9th grade   1.68  5.511811
## 2752             17 years old   Male              11th grade   1.75  5.741470
## 2753             17 years old   Male              12th grade   1.78  5.839895
## 2754             16 years old Female              11th grade   1.57  5.150919
## 2755             15 years old Female               9th grade   1.47  4.822835
## 2756             17 years old Female              10th grade   1.60  5.249344
## 2757             16 years old Female              11th grade   1.63  5.347769
## 2758             15 years old Female               9th grade   1.52  4.986877
## 2759    18 years old or older Female              12th grade   1.70  5.577428
## 2760             17 years old   Male              11th grade   1.78  5.839895
## 2761             17 years old Female              11th grade   1.50  4.921260
## 2762             14 years old   Male               9th grade   1.55  5.085302
## 2763    18 years old or older Female              12th grade   1.63  5.347769
## 2764             16 years old Female              10th grade   1.50  4.921260
## 2765             14 years old Female               9th grade   1.60  5.249344
## 2766             15 years old Female               9th grade   1.55  5.085302
## 2767             17 years old Female              12th grade   1.65  5.413386
## 2768             16 years old   Male              10th grade   1.83  6.003937
## 2769             16 years old   Male              11th grade   1.83  6.003937
## 2770             16 years old Female               9th grade   1.73  5.675853
## 2771    18 years old or older Female              12th grade   1.70  5.577428
## 2772             15 years old   Male              10th grade   1.68  5.511811
## 2773             17 years old Female              11th grade     NA        NA
## 2774             15 years old   Male               9th grade   1.78  5.839895
## 2775             17 years old   Male              12th grade   1.73  5.675853
## 2776             16 years old   Male              10th grade   1.78  5.839895
## 2777             16 years old Female              11th grade   1.57  5.150919
## 2778             14 years old   Male               9th grade   1.65  5.413386
## 2779             16 years old Female              11th grade   1.70  5.577428
## 2780             17 years old   Male              11th grade   1.78  5.839895
## 2781             15 years old Female               9th grade   1.70  5.577428
## 2782             17 years old Female              12th grade   1.73  5.675853
## 2783             17 years old Female              11th grade   1.63  5.347769
## 2784             15 years old   Male               9th grade   1.96  6.430446
## 2785             17 years old Female              12th grade   1.57  5.150919
## 2786             15 years old Female              10th grade   1.70  5.577428
## 2787             17 years old   Male              11th grade   1.78  5.839895
## 2788             16 years old   Male               9th grade   1.57  5.150919
## 2789    18 years old or older   Male              12th grade   1.83  6.003937
## 2790             17 years old Female              10th grade   1.63  5.347769
## 2791             17 years old   Male              11th grade   1.73  5.675853
## 2792             15 years old Female               9th grade   1.55  5.085302
## 2793             17 years old   Male              12th grade   1.88  6.167979
## 2794             16 years old Female              10th grade   1.63  5.347769
## 2795             17 years old Female              11th grade   1.63  5.347769
## 2796             15 years old   Male               9th grade   1.80  5.905512
## 2797             17 years old Female              12th grade   1.55  5.085302
## 2798             14 years old Female               9th grade   1.70  5.577428
## 2799             17 years old Female              12th grade   1.57  5.150919
## 2800             14 years old Female               9th grade   1.57  5.150919
## 2801    18 years old or older   Male              12th grade   1.73  5.675853
## 2802             14 years old Female               9th grade   1.55  5.085302
## 2803             15 years old Female               9th grade   1.63  5.347769
## 2804             16 years old Female              11th grade   1.65  5.413386
## 2805             15 years old   Male               9th grade     NA        NA
## 2806             15 years old   Male               9th grade   1.70  5.577428
## 2807             15 years old   Male               9th grade   1.65  5.413386
## 2808    18 years old or older   Male              12th grade   1.90  6.233596
## 2809             15 years old   Male              10th grade   1.70  5.577428
## 2810             17 years old Female              11th grade   1.65  5.413386
## 2811             14 years old   Male               9th grade   1.83  6.003937
## 2812             17 years old Female              12th grade   1.68  5.511811
## 2813             15 years old   Male              10th grade   1.65  5.413386
## 2814             17 years old Female              11th grade   1.63  5.347769
## 2815             17 years old   Male              12th grade   1.83  6.003937
## 2816             16 years old   Male              10th grade   1.73  5.675853
## 2817             17 years old Female              12th grade   1.63  5.347769
## 2818             17 years old Female              12th grade   1.60  5.249344
## 2819             17 years old   Male              12th grade   1.78  5.839895
## 2820             17 years old Female              12th grade   1.65  5.413386
## 2821    18 years old or older Female              12th grade   1.52  4.986877
## 2822             17 years old   Male              11th grade   1.68  5.511811
## 2823    18 years old or older Female              12th grade     NA        NA
## 2824             17 years old   Male              12th grade   1.78  5.839895
## 2825             17 years old Female              11th grade   1.65  5.413386
## 2826             17 years old   Male              12th grade     NA        NA
## 2827    18 years old or older   Male              12th grade   1.75  5.741470
## 2828    18 years old or older Female              12th grade   1.65  5.413386
## 2829    18 years old or older   Male              12th grade   1.68  5.511811
## 2830             17 years old   Male              12th grade   1.78  5.839895
## 2831    18 years old or older   Male              12th grade   1.73  5.675853
## 2832    18 years old or older   Male              12th grade   1.83  6.003937
## 2833             17 years old   Male              12th grade   1.78  5.839895
## 2834    18 years old or older Female              12th grade   1.63  5.347769
## 2835    18 years old or older Female              11th grade   1.57  5.150919
## 2836             15 years old   Male               9th grade   1.70  5.577428
## 2837             15 years old Female              10th grade   1.55  5.085302
## 2838    18 years old or older   Male              12th grade   1.88  6.167979
## 2839             16 years old   Male              11th grade   1.75  5.741470
## 2840             14 years old   Male               9th grade   1.68  5.511811
## 2841             16 years old Female              10th grade   1.70  5.577428
## 2842             15 years old   Male              10th grade   1.78  5.839895
## 2843             15 years old Female               9th grade   1.68  5.511811
## 2844             16 years old Female              10th grade   1.63  5.347769
## 2845             17 years old Female              12th grade   1.75  5.741470
## 2846             16 years old Female              11th grade     NA        NA
## 2847             15 years old Female               9th grade   1.55  5.085302
## 2848             15 years old Female              10th grade   1.52  4.986877
## 2849    18 years old or older   Male              12th grade   1.80  5.905512
## 2850             16 years old Female              11th grade   1.68  5.511811
## 2851             15 years old Female               9th grade   1.65  5.413386
## 2852             15 years old   Male              10th grade     NA        NA
## 2853             17 years old   Male              12th grade   1.78  5.839895
## 2854             14 years old   Male               9th grade   1.65  5.413386
## 2855    18 years old or older   Male              12th grade     NA        NA
## 2856    18 years old or older   Male              12th grade   1.83  6.003937
## 2857             15 years old Female              10th grade     NA        NA
## 2858             14 years old   Male               9th grade   1.80  5.905512
## 2859             16 years old   Male              10th grade   1.70  5.577428
## 2860             16 years old Female              11th grade   1.60  5.249344
## 2861             16 years old Female              10th grade   1.52  4.986877
## 2862             16 years old Female              11th grade   1.57  5.150919
## 2863             16 years old   Male              10th grade   1.73  5.675853
## 2864             17 years old Female              12th grade   1.63  5.347769
## 2865             14 years old   Male               9th grade   1.73  5.675853
## 2866  12 years old or younger Female               9th grade     NA        NA
## 2867             17 years old   Male              11th grade   1.85  6.069554
## 2868             14 years old Female               9th grade   1.63  5.347769
## 2869             15 years old Female              10th grade   1.50  4.921260
## 2870             17 years old Female              11th grade   1.68  5.511811
## 2871             15 years old   Male               9th grade   1.78  5.839895
## 2872             15 years old Female              10th grade   1.70  5.577428
## 2873             16 years old Female              11th grade   1.50  4.921260
## 2874             17 years old Female              11th grade   1.75  5.741470
## 2875             15 years old   Male               9th grade   1.78  5.839895
## 2876             14 years old Female               9th grade   1.57  5.150919
## 2877    18 years old or older   Male              12th grade   1.65  5.413386
## 2878             16 years old Female              10th grade   1.63  5.347769
## 2879             15 years old   Male              10th grade   1.78  5.839895
## 2880    18 years old or older Female              12th grade   1.63  5.347769
## 2881             16 years old Female              11th grade   1.57  5.150919
## 2882             14 years old Female               9th grade   1.65  5.413386
## 2883             16 years old   Male              10th grade   1.80  5.905512
## 2884             16 years old   Male              10th grade   1.75  5.741470
## 2885             17 years old   Male              11th grade   1.83  6.003937
## 2886             14 years old   Male               9th grade   1.75  5.741470
## 2887             16 years old   Male              10th grade   1.68  5.511811
## 2888             16 years old Female              11th grade     NA        NA
## 2889             17 years old   Male              11th grade   1.88  6.167979
## 2890             14 years old Female               9th grade   1.68  5.511811
## 2891             15 years old Female              10th grade   1.60  5.249344
## 2892             14 years old Female               9th grade     NA        NA
## 2893    18 years old or older Female              12th grade   1.55  5.085302
## 2894             16 years old   Male              11th grade   1.83  6.003937
## 2895             14 years old   Male               9th grade   1.80  5.905512
## 2896             15 years old Female              10th grade   1.65  5.413386
## 2897             17 years old Female              11th grade   1.70  5.577428
## 2898             15 years old   Male               9th grade   1.78  5.839895
## 2899             16 years old Female              11th grade   1.60  5.249344
## 2900             16 years old Female              10th grade   1.63  5.347769
## 2901             15 years old   Male               9th grade   1.70  5.577428
## 2902             16 years old   Male              10th grade   1.85  6.069554
## 2903    18 years old or older Female              12th grade   1.65  5.413386
## 2904    18 years old or older   Male              12th grade   1.85  6.069554
## 2905             17 years old   Male              11th grade   1.73  5.675853
## 2906             14 years old Female               9th grade   1.63  5.347769
## 2907             16 years old Female              10th grade   1.60  5.249344
## 2908    18 years old or older   Male              12th grade   1.73  5.675853
## 2909             16 years old   Male              11th grade   1.85  6.069554
## 2910             14 years old Female               9th grade   1.65  5.413386
## 2911             15 years old Female              10th grade   1.68  5.511811
## 2912             17 years old   Male              12th grade   1.78  5.839895
## 2913             16 years old   Male              11th grade   1.88  6.167979
## 2914             15 years old Female               9th grade   1.70  5.577428
## 2915             15 years old Female              10th grade   1.68  5.511811
## 2916             17 years old Female              11th grade   1.78  5.839895
## 2917             15 years old   Male               9th grade   1.63  5.347769
## 2918             16 years old Female              10th grade   1.65  5.413386
## 2919             17 years old   Male              12th grade   1.75  5.741470
## 2920             17 years old Female              11th grade   1.55  5.085302
## 2921             15 years old Female               9th grade   1.65  5.413386
## 2922    18 years old or older   Male              12th grade   1.78  5.839895
## 2923             16 years old Female              11th grade   1.65  5.413386
## 2924             15 years old Female               9th grade   1.63  5.347769
## 2925             16 years old Female              10th grade   1.55  5.085302
## 2926             17 years old   Male              12th grade   1.80  5.905512
## 2927             16 years old Female              11th grade   1.57  5.150919
## 2928             14 years old Female               9th grade   1.57  5.150919
## 2929             15 years old   Male              10th grade   1.83  6.003937
## 2930    18 years old or older   Male              12th grade   1.90  6.233596
## 2931             17 years old Female              11th grade   1.60  5.249344
## 2932             15 years old   Male               9th grade   1.70  5.577428
## 2933             17 years old   Male              11th grade   1.80  5.905512
## 2934             17 years old   Male              12th grade   1.78  5.839895
## 2935             15 years old Female               9th grade   1.57  5.150919
## 2936             14 years old   Male               9th grade   1.73  5.675853
## 2937             16 years old Female              10th grade   1.55  5.085302
## 2938    18 years old or older Female              12th grade   1.60  5.249344
## 2939             15 years old Female               9th grade   1.57  5.150919
## 2940             15 years old   Male               9th grade   1.57  5.150919
## 2941    18 years old or older   Male              12th grade   1.70  5.577428
## 2942             15 years old   Male               9th grade   1.75  5.741470
## 2943             15 years old   Male               9th grade   1.75  5.741470
## 2944             15 years old   Male              10th grade   1.75  5.741470
## 2945             17 years old Female              12th grade   1.42  4.658793
## 2946             15 years old Female               9th grade   1.52  4.986877
## 2947             14 years old Female               9th grade   1.63  5.347769
## 2948             15 years old Female              10th grade   1.65  5.413386
## 2949             17 years old   Male              12th grade   1.93  6.332021
## 2950             15 years old   Male               9th grade   1.70  5.577428
## 2951             15 years old Female               9th grade   1.68  5.511811
## 2952             15 years old Female              10th grade   1.50  4.921260
## 2953             17 years old Female              12th grade   1.75  5.741470
## 2954             14 years old Female               9th grade   1.68  5.511811
## 2955             15 years old Female               9th grade   1.50  4.921260
## 2956             16 years old   Male              10th grade   1.80  5.905512
## 2957    18 years old or older   Male              12th grade   1.73  5.675853
## 2958             15 years old Female               9th grade   1.52  4.986877
## 2959             15 years old   Male              10th grade   1.90  6.233596
## 2960    18 years old or older   Male              12th grade   1.85  6.069554
## 2961             15 years old Female               9th grade   1.60  5.249344
## 2962             15 years old Female               9th grade   1.80  5.905512
## 2963             17 years old Female              12th grade   1.57  5.150919
## 2964             15 years old   Male               9th grade   1.75  5.741470
## 2965             16 years old   Male              10th grade   1.80  5.905512
## 2966             17 years old Female              12th grade   1.68  5.511811
## 2967             15 years old   Male               9th grade   1.70  5.577428
## 2968             15 years old   Male              10th grade   1.85  6.069554
## 2969    18 years old or older   Male              12th grade   1.85  6.069554
## 2970             14 years old Female               9th grade   1.65  5.413386
## 2971             15 years old Female               9th grade   1.57  5.150919
## 2972             15 years old Female              10th grade   1.63  5.347769
## 2973    18 years old or older Female              12th grade   1.60  5.249344
## 2974             14 years old Female               9th grade   1.68  5.511811
## 2975             15 years old Female               9th grade   1.63  5.347769
## 2976             15 years old Female              10th grade   1.65  5.413386
## 2977             17 years old Female              12th grade   1.68  5.511811
## 2978             14 years old Female               9th grade   1.60  5.249344
## 2979             16 years old   Male              10th grade   1.73  5.675853
## 2980    18 years old or older   Male              12th grade   1.80  5.905512
## 2981                     <NA> Female               9th grade     NA        NA
## 2982             14 years old Female               9th grade   1.60  5.249344
## 2983             15 years old   Male              10th grade   1.80  5.905512
## 2984    18 years old or older Female              12th grade   1.75  5.741470
## 2985             15 years old   Male               9th grade   1.75  5.741470
## 2986             14 years old Female               9th grade   1.57  5.150919
## 2987             15 years old   Male              10th grade   1.73  5.675853
## 2988             17 years old Female              12th grade   1.60  5.249344
## 2989             14 years old Female               9th grade   1.63  5.347769
## 2990             15 years old Female               9th grade   1.70  5.577428
## 2991             15 years old Female              10th grade   1.63  5.347769
## 2992    18 years old or older   Male              12th grade   1.83  6.003937
## 2993             15 years old   Male               9th grade   1.63  5.347769
## 2994             14 years old   Male               9th grade     NA        NA
## 2995             15 years old Female              10th grade   1.57  5.150919
## 2996             17 years old   Male              12th grade   1.80  5.905512
## 2997             15 years old Female               9th grade   1.57  5.150919
## 2998             15 years old Female              10th grade   1.63  5.347769
## 2999    18 years old or older Female              12th grade   1.80  5.905512
## 3000             14 years old   Male               9th grade   1.63  5.347769
## 3001             15 years old   Male              10th grade   1.73  5.675853
## 3002    18 years old or older Female              12th grade     NA        NA
## 3003             15 years old Female               9th grade   1.60  5.249344
## 3004             15 years old Female               9th grade   1.68  5.511811
## 3005             16 years old Female              10th grade     NA        NA
## 3006             17 years old Female              12th grade   1.57  5.150919
## 3007             15 years old Female               9th grade     NA        NA
## 3008             14 years old   Male               9th grade   1.78  5.839895
## 3009             16 years old   Male              10th grade   1.88  6.167979
## 3010    18 years old or older Female              12th grade     NA        NA
## 3011             14 years old Female               9th grade   1.57  5.150919
## 3012             15 years old Female               9th grade   1.63  5.347769
## 3013             15 years old   Male              10th grade   1.65  5.413386
## 3014    18 years old or older   Male              12th grade   1.83  6.003937
## 3015             15 years old   Male               9th grade   1.85  6.069554
## 3016    18 years old or older   Male              12th grade   1.83  6.003937
## 3017             14 years old Female               9th grade   1.50  4.921260
## 3018             15 years old Female               9th grade   1.57  5.150919
## 3019             15 years old Female              10th grade     NA        NA
## 3020             15 years old   Male               9th grade   1.83  6.003937
## 3021             17 years old   Male              12th grade   1.83  6.003937
## 3022             14 years old   Male               9th grade   1.88  6.167979
## 3023             15 years old   Male               9th grade   1.78  5.839895
## 3024             17 years old   Male              12th grade   1.80  5.905512
## 3025                     <NA> Female               9th grade     NA        NA
## 3026             15 years old Female               9th grade   1.57  5.150919
## 3027    18 years old or older   Male              12th grade   1.70  5.577428
## 3028             14 years old Female               9th grade   1.60  5.249344
## 3029             15 years old   Male               9th grade   1.68  5.511811
## 3030             17 years old Female              12th grade   1.73  5.675853
## 3031             15 years old   Male               9th grade   1.68  5.511811
## 3032             15 years old   Male               9th grade   1.68  5.511811
## 3033             17 years old Female              12th grade   1.57  5.150919
## 3034             15 years old   Male               9th grade     NA        NA
## 3035             15 years old Female               9th grade   1.60  5.249344
## 3036    18 years old or older Female              12th grade   1.63  5.347769
## 3037             16 years old   Male              10th grade   1.75  5.741470
## 3038             16 years old Female              11th grade   1.63  5.347769
## 3039             16 years old   Male              11th grade   1.83  6.003937
## 3040             17 years old Female              12th grade   1.52  4.986877
## 3041             15 years old Female              10th grade   1.73  5.675853
## 3042             16 years old   Male              10th grade   1.75  5.741470
## 3043    18 years old or older Female              12th grade   1.63  5.347769
## 3044             17 years old   Male              10th grade   1.83  6.003937
## 3045             15 years old Female              10th grade   1.55  5.085302
## 3046             17 years old   Male              12th grade   1.90  6.233596
## 3047    18 years old or older   Male              12th grade   1.80  5.905512
## 3048             17 years old   Male              11th grade   1.68  5.511811
## 3049    18 years old or older   Male              12th grade   1.68  5.511811
## 3050             15 years old Female              10th grade   1.65  5.413386
## 3051    18 years old or older   Male              11th grade   1.73  5.675853
## 3052             16 years old Female              11th grade     NA        NA
## 3053    18 years old or older   Male              12th grade   1.83  6.003937
## 3054             15 years old   Male              10th grade   1.88  6.167979
## 3055             17 years old   Male              10th grade   1.85  6.069554
## 3056             17 years old   Male              11th grade   1.80  5.905512
## 3057             16 years old Female              11th grade   1.73  5.675853
## 3058             16 years old Female              11th grade   1.57  5.150919
## 3059    18 years old or older   Male              12th grade   1.83  6.003937
## 3060             16 years old   Male              10th grade   1.80  5.905512
## 3061             17 years old Female              11th grade   1.60  5.249344
## 3062             17 years old Female              12th grade   1.73  5.675853
## 3063             16 years old Female              10th grade   1.73  5.675853
## 3064             17 years old   Male              11th grade   1.75  5.741470
## 3065             17 years old   Male              11th grade   1.75  5.741470
## 3066             17 years old Female              12th grade   1.70  5.577428
## 3067             16 years old Female              10th grade   1.65  5.413386
## 3068             16 years old Female              11th grade   1.63  5.347769
## 3069             16 years old   Male              11th grade   1.75  5.741470
## 3070    18 years old or older   Male              12th grade   1.68  5.511811
## 3071             16 years old   Male              10th grade   1.80  5.905512
## 3072             17 years old Female              11th grade   1.60  5.249344
## 3073             16 years old   Male              11th grade   1.75  5.741470
## 3074    18 years old or older Female              12th grade   1.70  5.577428
## 3075             15 years old   Male              10th grade   1.85  6.069554
## 3076    18 years old or older   Male              12th grade   1.78  5.839895
## 3077             16 years old Female              10th grade   1.63  5.347769
## 3078             17 years old Female              11th grade   1.57  5.150919
## 3079             17 years old   Male              11th grade   1.70  5.577428
## 3080    18 years old or older Female              12th grade   1.63  5.347769
## 3081             16 years old   Male              11th grade   1.68  5.511811
## 3082             17 years old Female              11th grade   1.55  5.085302
## 3083             17 years old Female              12th grade   1.75  5.741470
## 3084             16 years old   Male              10th grade   1.85  6.069554
## 3085             16 years old   Male              11th grade   1.80  5.905512
## 3086             16 years old Female              10th grade   1.68  5.511811
## 3087             17 years old   Male              10th grade   1.75  5.741470
## 3088             17 years old   Male              12th grade   1.85  6.069554
## 3089             16 years old Female              10th grade   1.70  5.577428
## 3090             16 years old Female              11th grade   1.78  5.839895
## 3091             16 years old   Male              11th grade   1.83  6.003937
## 3092    18 years old or older Female              12th grade   1.70  5.577428
## 3093             16 years old   Male              10th grade   1.83  6.003937
## 3094             17 years old   Male              11th grade   1.90  6.233596
## 3095             16 years old   Male              11th grade     NA        NA
## 3096             17 years old Female              12th grade   1.68  5.511811
## 3097             16 years old Female              10th grade   1.57  5.150919
## 3098             16 years old   Male              11th grade     NA        NA
## 3099             16 years old   Male              11th grade   1.78  5.839895
## 3100    18 years old or older   Male              12th grade   1.75  5.741470
## 3101             16 years old Female              10th grade   1.57  5.150919
## 3102             16 years old   Male              11th grade   1.78  5.839895
## 3103             16 years old   Male              10th grade   1.63  5.347769
## 3104    18 years old or older Female              12th grade   1.68  5.511811
## 3105             16 years old   Male              10th grade   1.73  5.675853
## 3106             17 years old   Male              11th grade   1.80  5.905512
## 3107             16 years old Female              11th grade   1.60  5.249344
## 3108             16 years old   Male              10th grade   1.68  5.511811
## 3109             16 years old Female              11th grade   1.60  5.249344
## 3110             17 years old Female              11th grade   1.65  5.413386
## 3111    18 years old or older   Male              12th grade   1.70  5.577428
## 3112             15 years old Female              10th grade   1.60  5.249344
## 3113             17 years old Female              11th grade   1.57  5.150919
## 3114             17 years old   Male              11th grade   1.93  6.332021
## 3115             17 years old Female              12th grade   1.73  5.675853
## 3116             17 years old   Male              11th grade   1.78  5.839895
## 3117             17 years old   Male              11th grade   1.80  5.905512
## 3118             17 years old Female              12th grade   1.60  5.249344
## 3119             16 years old Female              10th grade   1.73  5.675853
## 3120             17 years old Female              11th grade     NA        NA
## 3121    18 years old or older   Male              11th grade   1.83  6.003937
## 3122             16 years old   Male              11th grade   1.73  5.675853
## 3123             16 years old   Male              11th grade   1.70  5.577428
## 3124             17 years old Female              12th grade   1.68  5.511811
## 3125             16 years old   Male              10th grade   1.83  6.003937
## 3126             17 years old Female              11th grade   1.63  5.347769
## 3127             17 years old Female              11th grade     NA        NA
## 3128    18 years old or older Female              12th grade   1.63  5.347769
## 3129             16 years old Female              10th grade   1.57  5.150919
## 3130             16 years old   Male              11th grade   1.93  6.332021
## 3131             16 years old   Male              11th grade   1.73  5.675853
## 3132    18 years old or older   Male              12th grade   1.73  5.675853
## 3133             16 years old Female              10th grade   1.65  5.413386
## 3134             16 years old Female              11th grade   1.63  5.347769
## 3135             17 years old Female              11th grade     NA        NA
## 3136    18 years old or older Female              12th grade   1.60  5.249344
## 3137    18 years old or older   Male              12th grade   1.78  5.839895
## 3138             16 years old Female              10th grade   1.52  4.986877
## 3139             17 years old Female              12th grade   1.57  5.150919
## 3140             16 years old   Male              10th grade   1.78  5.839895
## 3141             15 years old   Male               9th grade   1.70  5.577428
## 3142             17 years old Female              12th grade   1.65  5.413386
## 3143             14 years old Female               9th grade   1.60  5.249344
## 3144             17 years old   Male              11th grade   1.75  5.741470
## 3145             17 years old   Male              12th grade   1.83  6.003937
## 3146             15 years old Female              10th grade   1.52  4.986877
## 3147             14 years old Female               9th grade   1.75  5.741470
## 3148             17 years old   Male              11th grade   1.83  6.003937
## 3149    18 years old or older Female              12th grade   1.73  5.675853
## 3150             17 years old   Male              12th grade   1.88  6.167979
## 3151             15 years old Female              10th grade   1.80  5.905512
## 3152             15 years old Female               9th grade   1.63  5.347769
## 3153             16 years old   Male              11th grade   1.83  6.003937
## 3154             15 years old   Male              10th grade   1.80  5.905512
## 3155             15 years old   Male               9th grade   1.80  5.905512
## 3156    18 years old or older   Male              12th grade   1.73  5.675853
## 3157             17 years old Female              11th grade   1.55  5.085302
## 3158             17 years old Female              12th grade   1.55  5.085302
## 3159             16 years old Female              10th grade   1.63  5.347769
## 3160             15 years old   Male               9th grade   1.83  6.003937
## 3161    18 years old or older   Male              12th grade   1.70  5.577428
## 3162             15 years old Female              10th grade   1.63  5.347769
## 3163             17 years old Female              12th grade   1.60  5.249344
## 3164             15 years old Female              10th grade   1.60  5.249344
## 3165             17 years old   Male              11th grade   1.80  5.905512
## 3166             17 years old Female              12th grade   1.68  5.511811
## 3167             15 years old Female              10th grade   1.65  5.413386
## 3168             14 years old Female               9th grade   1.60  5.249344
## 3169             16 years old Female              11th grade   1.73  5.675853
## 3170             15 years old Female              10th grade   1.63  5.347769
## 3171             16 years old   Male               9th grade   1.65  5.413386
## 3172    18 years old or older   Male              12th grade   1.65  5.413386
## 3173             16 years old Female              10th grade   1.55  5.085302
## 3174    18 years old or older   Male              12th grade   1.73  5.675853
## 3175             17 years old   Male              10th grade   1.75  5.741470
## 3176    18 years old or older Female              12th grade   1.63  5.347769
## 3177             15 years old   Male              10th grade   1.83  6.003937
## 3178             15 years old Female               9th grade     NA        NA
## 3179             16 years old Female              11th grade   1.70  5.577428
## 3180    18 years old or older Female              12th grade   1.57  5.150919
## 3181             16 years old Female              10th grade   1.52  4.986877
## 3182             14 years old Female               9th grade   1.73  5.675853
## 3183             17 years old   Male              11th grade   1.70  5.577428
## 3184             17 years old   Male              12th grade   1.88  6.167979
## 3185             15 years old Female              10th grade   1.60  5.249344
## 3186             15 years old   Male              10th grade   1.78  5.839895
## 3187             16 years old Female              11th grade   1.55  5.085302
## 3188             16 years old Female              10th grade   1.73  5.675853
## 3189             16 years old Female              11th grade   1.65  5.413386
## 3190    18 years old or older   Male              12th grade   1.85  6.069554
## 3191             16 years old   Male              10th grade   1.80  5.905512
## 3192             15 years old Female               9th grade   1.68  5.511811
## 3193             17 years old   Male              11th grade   1.78  5.839895
## 3194    18 years old or older   Male              12th grade   1.70  5.577428
## 3195             16 years old Female               9th grade   1.57  5.150919
## 3196             14 years old   Male               9th grade   1.78  5.839895
## 3197             16 years old   Male              11th grade   1.65  5.413386
## 3198    18 years old or older   Male              12th grade   1.63  5.347769
## 3199             16 years old   Male              10th grade   1.75  5.741470
## 3200    18 years old or older Female              12th grade   1.68  5.511811
## 3201             16 years old Female              10th grade   1.57  5.150919
## 3202    18 years old or older   Male              12th grade   1.73  5.675853
## 3203             16 years old Female              10th grade   1.55  5.085302
## 3204             15 years old Female               9th grade     NA        NA
## 3205             17 years old   Male              11th grade   1.73  5.675853
## 3206             15 years old   Male               9th grade   1.85  6.069554
## 3207             14 years old   Male               9th grade   1.73  5.675853
## 3208             15 years old   Male               9th grade   1.78  5.839895
## 3209             14 years old Female               9th grade   1.52  4.986877
## 3210             14 years old   Male               9th grade   1.73  5.675853
## 3211             14 years old   Male               9th grade   1.80  5.905512
## 3212             14 years old Female               9th grade   1.63  5.347769
## 3213             15 years old   Male               9th grade   1.85  6.069554
## 3214             14 years old   Male               9th grade   1.63  5.347769
## 3215             15 years old Female               9th grade   1.55  5.085302
## 3216             15 years old   Male               9th grade   1.90  6.233596
## 3217             15 years old Female               9th grade   1.68  5.511811
## 3218             16 years old   Male               9th grade   1.80  5.905512
## 3219             14 years old   Male               9th grade   1.68  5.511811
## 3220             14 years old   Male               9th grade   1.70  5.577428
## 3221             15 years old   Male               9th grade   1.68  5.511811
## 3222             14 years old Female               9th grade   1.65  5.413386
## 3223             15 years old   Male               9th grade   1.75  5.741470
## 3224             14 years old   Male               9th grade   1.80  5.905512
## 3225             14 years old   Male               9th grade   1.73  5.675853
## 3226                     <NA> Female               9th grade     NA        NA
## 3227             15 years old   Male               9th grade   1.68  5.511811
## 3228             14 years old Female               9th grade   1.68  5.511811
## 3229             15 years old   Male               9th grade   1.68  5.511811
## 3230             14 years old Female               9th grade   1.63  5.347769
## 3231             15 years old   Male               9th grade     NA        NA
## 3232             15 years old   Male               9th grade   1.63  5.347769
## 3233             15 years old   Male               9th grade   1.83  6.003937
## 3234             15 years old   Male               9th grade   1.75  5.741470
## 3235             14 years old Female               9th grade   1.78  5.839895
## 3236             14 years old   Male               9th grade   1.73  5.675853
## 3237             15 years old Female               9th grade     NA        NA
## 3238             14 years old Female               9th grade   1.57  5.150919
## 3239             14 years old   Male               9th grade   1.73  5.675853
## 3240             15 years old Female               9th grade   1.55  5.085302
## 3241             14 years old Female               9th grade   1.63  5.347769
## 3242             14 years old Female               9th grade   1.55  5.085302
## 3243             14 years old   Male               9th grade   1.85  6.069554
## 3244             14 years old Female               9th grade     NA        NA
## 3245             15 years old   Male               9th grade   1.73  5.675853
## 3246             14 years old Female               9th grade   1.63  5.347769
## 3247             15 years old Female               9th grade   1.60  5.249344
## 3248             15 years old   Male               9th grade     NA        NA
## 3249             14 years old Female               9th grade   1.75  5.741470
## 3250             15 years old Female               9th grade   1.55  5.085302
## 3251             15 years old   Male               9th grade   1.83  6.003937
## 3252             15 years old Female               9th grade   1.68  5.511811
## 3253             16 years old   Male              11th grade   1.68  5.511811
## 3254             16 years old   Male              11th grade   1.88  6.167979
## 3255             17 years old Female              12th grade   1.65  5.413386
## 3256             15 years old   Male              10th grade   1.83  6.003937
## 3257             17 years old   Male              11th grade   1.85  6.069554
## 3258             15 years old   Male              10th grade   1.83  6.003937
## 3259    18 years old or older Female              12th grade   1.65  5.413386
## 3260             16 years old Female              10th grade   1.60  5.249344
## 3261             16 years old   Male              10th grade   1.83  6.003937
## 3262             16 years old   Male              11th grade   1.63  5.347769
## 3263             16 years old   Male              10th grade   1.83  6.003937
## 3264             17 years old Female              11th grade   1.73  5.675853
## 3265             15 years old Female              10th grade   1.68  5.511811
## 3266             16 years old Female              10th grade   1.73  5.675853
## 3267             17 years old   Male              12th grade   1.90  6.233596
## 3268             16 years old   Male              11th grade   1.83  6.003937
## 3269             17 years old   Male              12th grade   1.93  6.332021
## 3270             17 years old Female              11th grade   1.55  5.085302
## 3271             15 years old   Male              10th grade   1.73  5.675853
## 3272             16 years old   Male              10th grade   1.65  5.413386
## 3273             17 years old Female              12th grade     NA        NA
## 3274             16 years old   Male              10th grade   1.70  5.577428
## 3275             16 years old   Male              11th grade   1.85  6.069554
## 3276             16 years old Female              11th grade   1.60  5.249344
## 3277             15 years old Female              10th grade   1.65  5.413386
## 3278             16 years old   Male              10th grade   1.78  5.839895
## 3279             17 years old   Male              11th grade   1.73  5.675853
## 3280             15 years old Female              10th grade   1.57  5.150919
## 3281             17 years old Female              11th grade   1.68  5.511811
## 3282             15 years old   Male              10th grade   1.93  6.332021
## 3283             15 years old Female              10th grade   1.65  5.413386
## 3284             16 years old   Male              10th grade   1.83  6.003937
## 3285             17 years old   Male              11th grade   1.70  5.577428
## 3286             17 years old   Male              11th grade   1.78  5.839895
## 3287             15 years old Female              10th grade   1.68  5.511811
## 3288             15 years old   Male              10th grade   1.70  5.577428
## 3289             16 years old   Male              10th grade   1.83  6.003937
## 3290    18 years old or older   Male              12th grade   1.90  6.233596
## 3291             17 years old   Male              12th grade   1.80  5.905512
## 3292             15 years old   Male              10th grade   1.80  5.905512
## 3293             17 years old Female              12th grade   1.63  5.347769
## 3294             15 years old   Male              10th grade   1.75  5.741470
## 3295             15 years old   Male              10th grade   1.73  5.675853
## 3296             16 years old   Male              11th grade   1.83  6.003937
## 3297             17 years old   Male              11th grade   1.83  6.003937
## 3298             15 years old Female              10th grade   1.52  4.986877
## 3299             15 years old Female              10th grade   1.57  5.150919
## 3300             17 years old Female              11th grade   1.65  5.413386
## 3301             17 years old   Male              11th grade   1.90  6.233596
## 3302             17 years old   Male              12th grade   1.88  6.167979
## 3303             16 years old   Male              10th grade   1.80  5.905512
## 3304             17 years old Female              12th grade     NA        NA
## 3305             17 years old   Male              11th grade   1.88  6.167979
## 3306             15 years old Female              10th grade   1.60  5.249344
## 3307             15 years old Female              10th grade   1.65  5.413386
## 3308             17 years old Female              12th grade   1.88  6.167979
## 3309             16 years old   Male              10th grade   1.80  5.905512
## 3310             15 years old Female              10th grade   1.70  5.577428
## 3311             15 years old   Male              10th grade   1.80  5.905512
## 3312    18 years old or older Female              12th grade   1.68  5.511811
## 3313             17 years old Female              11th grade   1.68  5.511811
## 3314             16 years old Female              10th grade   1.57  5.150919
## 3315             15 years old   Male              10th grade   1.78  5.839895
## 3316             17 years old   Male              11th grade     NA        NA
## 3317    18 years old or older   Male              12th grade   1.78  5.839895
## 3318             15 years old Female              10th grade   1.70  5.577428
## 3319             17 years old Female              11th grade   1.63  5.347769
## 3320             15 years old Female              10th grade   1.65  5.413386
## 3321             16 years old   Male              10th grade   1.78  5.839895
## 3322    18 years old or older Female              12th grade   1.78  5.839895
## 3323             17 years old   Male              11th grade   1.80  5.905512
## 3324             17 years old Female              11th grade   1.50  4.921260
## 3325             16 years old   Male              11th grade   1.60  5.249344
## 3326             16 years old   Male              11th grade   1.78  5.839895
## 3327    18 years old or older   Male              12th grade   1.80  5.905512
## 3328    18 years old or older Female              12th grade   1.57  5.150919
## 3329             16 years old Female              10th grade   1.57  5.150919
## 3330             17 years old Female              12th grade   1.55  5.085302
## 3331             16 years old   Male              11th grade   1.80  5.905512
## 3332             15 years old Female              10th grade   1.75  5.741470
## 3333    18 years old or older Female              12th grade   1.63  5.347769
## 3334             15 years old Female              10th grade   1.60  5.249344
## 3335             15 years old   Male              10th grade   1.90  6.233596
## 3336             15 years old   Male              10th grade   1.88  6.167979
## 3337             16 years old Female              10th grade   1.70  5.577428
## 3338             17 years old Female              11th grade   1.60  5.249344
## 3339    18 years old or older Female              12th grade   1.57  5.150919
## 3340             15 years old Female              10th grade   1.65  5.413386
## 3341             16 years old   Male              10th grade   1.85  6.069554
## 3342             16 years old Female              10th grade   1.80  5.905512
## 3343             16 years old Female              11th grade   1.65  5.413386
## 3344             15 years old Female              10th grade   1.70  5.577428
## 3345             17 years old Female              12th grade   1.68  5.511811
## 3346             16 years old Female              10th grade   1.70  5.577428
## 3347             16 years old Female              10th grade   1.63  5.347769
## 3348             17 years old   Male              11th grade   1.78  5.839895
## 3349             17 years old   Male              12th grade   1.83  6.003937
## 3350             17 years old   Male              11th grade   1.80  5.905512
## 3351             17 years old   Male              11th grade   1.70  5.577428
## 3352             16 years old   Male              11th grade   1.83  6.003937
## 3353             16 years old Female              10th grade   1.83  6.003937
## 3354             15 years old   Male              10th grade   1.90  6.233596
## 3355             15 years old Female              10th grade     NA        NA
## 3356             16 years old   Male              11th grade   1.80  5.905512
## 3357             16 years old Female              11th grade   1.57  5.150919
## 3358             15 years old   Male              10th grade   1.73  5.675853
## 3359             16 years old Female              10th grade   1.65  5.413386
## 3360             16 years old   Male              10th grade   1.80  5.905512
## 3361             16 years old   Male              10th grade   1.75  5.741470
## 3362    18 years old or older Female              12th grade   1.65  5.413386
## 3363             14 years old Female               9th grade   1.60  5.249344
## 3364             17 years old   Male              11th grade   1.75  5.741470
## 3365    18 years old or older Female              12th grade   1.68  5.511811
## 3366             16 years old Female              10th grade   1.63  5.347769
## 3367             15 years old Female               9th grade   1.57  5.150919
## 3368             17 years old   Male              11th grade   1.73  5.675853
## 3369             16 years old   Male              11th grade   1.83  6.003937
## 3370             17 years old   Male              11th grade   1.70  5.577428
## 3371    18 years old or older   Male              12th grade   1.78  5.839895
## 3372             14 years old Female               9th grade   1.65  5.413386
## 3373             17 years old Female              11th grade   1.70  5.577428
## 3374             16 years old Female              10th grade   1.55  5.085302
## 3375             14 years old   Male               9th grade   1.75  5.741470
## 3376             17 years old Female              11th grade   1.68  5.511811
## 3377    18 years old or older   Male              12th grade   1.73  5.675853
## 3378             16 years old   Male              10th grade   1.80  5.905512
## 3379             14 years old   Male               9th grade   1.70  5.577428
## 3380             17 years old Female              11th grade   1.63  5.347769
## 3381    18 years old or older   Male              12th grade   1.68  5.511811
## 3382             15 years old   Male              10th grade   1.65  5.413386
## 3383    18 years old or older Female              12th grade   1.73  5.675853
## 3384             14 years old Female               9th grade   1.55  5.085302
## 3385             17 years old Female              11th grade   1.75  5.741470
## 3386    18 years old or older   Male              12th grade     NA        NA
## 3387             15 years old   Male              10th grade     NA        NA
## 3388             15 years old Female               9th grade   1.57  5.150919
## 3389    18 years old or older Female              12th grade   1.57  5.150919
## 3390             16 years old Female              10th grade     NA        NA
## 3391             15 years old Female               9th grade   1.57  5.150919
## 3392             17 years old   Male              11th grade     NA        NA
## 3393             17 years old Female              12th grade     NA        NA
## 3394             15 years old   Male               9th grade     NA        NA
## 3395             15 years old   Male              10th grade   1.85  6.069554
## 3396             15 years old   Male               9th grade   1.80  5.905512
## 3397             17 years old   Male              11th grade   1.88  6.167979
## 3398             17 years old   Male              12th grade   1.75  5.741470
## 3399             15 years old   Male               9th grade     NA        NA
## 3400             17 years old   Male              11th grade   1.88  6.167979
## 3401             17 years old   Male              12th grade   1.80  5.905512
## 3402             15 years old   Male              10th grade   1.73  5.675853
## 3403             15 years old   Male               9th grade   1.73  5.675853
## 3404             16 years old Female              11th grade   1.75  5.741470
## 3405             17 years old   Male              11th grade   1.80  5.905512
## 3406             16 years old   Male              10th grade   1.70  5.577428
## 3407             15 years old Female               9th grade     NA        NA
## 3408             15 years old   Male               9th grade   1.98  6.496063
## 3409             16 years old   Male              10th grade   1.70  5.577428
## 3410             15 years old   Male               9th grade   1.83  6.003937
## 3411             16 years old Female              11th grade   1.65  5.413386
## 3412    18 years old or older   Male              12th grade   1.88  6.167979
## 3413             16 years old   Male              10th grade   1.78  5.839895
## 3414             17 years old Female              11th grade   1.68  5.511811
## 3415             17 years old   Male              12th grade   1.78  5.839895
## 3416             16 years old Female              10th grade   1.70  5.577428
## 3417    18 years old or older Female              12th grade   1.60  5.249344
## 3418             16 years old Female               9th grade   1.73  5.675853
## 3419             17 years old Female              12th grade   1.63  5.347769
## 3420             15 years old Female              10th grade   1.60  5.249344
## 3421             14 years old   Male               9th grade   1.63  5.347769
## 3422             16 years old   Male              11th grade   1.90  6.233596
## 3423    18 years old or older   Male              12th grade   1.78  5.839895
## 3424             16 years old   Male              10th grade   1.78  5.839895
## 3425             15 years old   Male               9th grade   1.68  5.511811
## 3426             16 years old   Male              11th grade   1.75  5.741470
## 3427             17 years old Female              11th grade   1.57  5.150919
## 3428             17 years old   Male              12th grade   1.78  5.839895
## 3429             15 years old   Male               9th grade     NA        NA
## 3430    18 years old or older Female              12th grade   1.60  5.249344
## 3431             16 years old   Male              10th grade   1.78  5.839895
## 3432             14 years old Female               9th grade   1.70  5.577428
## 3433    18 years old or older Female              12th grade   1.73  5.675853
## 3434             15 years old   Male              10th grade   1.75  5.741470
## 3435             15 years old   Male              10th grade     NA        NA
## 3436             16 years old Female              11th grade   1.65  5.413386
## 3437             16 years old   Male              11th grade   1.75  5.741470
## 3438             15 years old Female              10th grade   1.73  5.675853
## 3439             14 years old Female               9th grade   1.57  5.150919
## 3440             16 years old   Male              11th grade   1.85  6.069554
## 3441    18 years old or older   Male              12th grade   1.85  6.069554
## 3442             17 years old Female              11th grade   1.73  5.675853
## 3443             15 years old Female              10th grade   1.57  5.150919
## 3444    18 years old or older Female              12th grade   1.55  5.085302
## 3445             16 years old   Male              10th grade   1.83  6.003937
## 3446             14 years old   Male               9th grade   1.73  5.675853
## 3447             17 years old   Male              11th grade   1.78  5.839895
## 3448             17 years old   Male              11th grade   1.75  5.741470
## 3449             17 years old Female              12th grade   1.63  5.347769
## 3450             16 years old Female              10th grade   1.65  5.413386
## 3451    18 years old or older   Male              11th grade   1.83  6.003937
## 3452             17 years old   Male              12th grade   1.80  5.905512
## 3453             17 years old Female              12th grade   1.55  5.085302
## 3454             15 years old   Male               9th grade   1.80  5.905512
## 3455             17 years old Female              11th grade   1.63  5.347769
## 3456             15 years old Female              10th grade   1.65  5.413386
## 3457             15 years old Female               9th grade   1.65  5.413386
## 3458             16 years old   Male              11th grade   1.83  6.003937
## 3459    18 years old or older   Male              12th grade   1.75  5.741470
## 3460             14 years old   Male               9th grade   1.70  5.577428
## 3461             17 years old   Male              11th grade   1.70  5.577428
## 3462             16 years old Female              11th grade   1.63  5.347769
## 3463    18 years old or older   Male              12th grade   1.73  5.675853
## 3464             15 years old   Male               9th grade   1.78  5.839895
## 3465             17 years old   Male              11th grade   1.80  5.905512
## 3466             17 years old   Male              11th grade   1.88  6.167979
## 3467    18 years old or older   Male              12th grade   1.85  6.069554
## 3468             14 years old   Male               9th grade   1.80  5.905512
## 3469             17 years old Female              11th grade   1.68  5.511811
## 3470             16 years old   Male              11th grade     NA        NA
## 3471             15 years old Female              10th grade   1.70  5.577428
## 3472             16 years old   Male              10th grade   1.83  6.003937
## 3473             17 years old Female              11th grade   1.57  5.150919
## 3474    18 years old or older Female              12th grade   1.65  5.413386
## 3475             16 years old   Male              10th grade   1.78  5.839895
## 3476             15 years old   Male               9th grade   1.65  5.413386
## 3477             16 years old Female              11th grade   1.65  5.413386
## 3478    18 years old or older Female              12th grade   1.70  5.577428
## 3479             15 years old Female              10th grade   1.57  5.150919
## 3480             15 years old Female               9th grade   1.68  5.511811
## 3481    18 years old or older   Male              12th grade   1.63  5.347769
## 3482             15 years old   Male              10th grade   1.70  5.577428
## 3483             15 years old   Male               9th grade   1.68  5.511811
## 3484             16 years old   Male              11th grade   1.75  5.741470
## 3485    18 years old or older   <NA>              12th grade     NA        NA
## 3486    18 years old or older   Male              12th grade   1.73  5.675853
## 3487    18 years old or older Female              12th grade   1.65  5.413386
## 3488             14 years old Female               9th grade   1.55  5.085302
## 3489             17 years old   Male              11th grade   1.73  5.675853
## 3490             16 years old Female              11th grade   1.57  5.150919
## 3491    18 years old or older Female              12th grade   1.65  5.413386
## 3492    18 years old or older Female              12th grade   1.60  5.249344
## 3493             14 years old   Male               9th grade   1.78  5.839895
## 3494             14 years old Female               9th grade   1.60  5.249344
## 3495    18 years old or older   Male              12th grade   1.75  5.741470
## 3496             16 years old   Male              11th grade   1.70  5.577428
## 3497             17 years old Female              12th grade   1.75  5.741470
## 3498             15 years old Female               9th grade   1.73  5.675853
## 3499             16 years old Female              11th grade   1.52  4.986877
## 3500             17 years old Female              12th grade   1.65  5.413386
## 3501             16 years old   Male              11th grade   1.80  5.905512
## 3502    18 years old or older Female              12th grade   1.52  4.986877
## 3503             15 years old   Male               9th grade   1.73  5.675853
## 3504             15 years old   Male               9th grade   1.80  5.905512
## 3505             14 years old Female               9th grade   1.68  5.511811
## 3506             17 years old Female              12th grade   1.60  5.249344
## 3507             17 years old   Male              11th grade   1.70  5.577428
## 3508    18 years old or older Female              12th grade   1.63  5.347769
## 3509             15 years old Female              10th grade   1.63  5.347769
## 3510             14 years old   Male               9th grade   1.57  5.150919
## 3511             15 years old Female               9th grade   1.70  5.577428
## 3512             17 years old   Male              12th grade   1.83  6.003937
## 3513             17 years old   Male              11th grade   1.70  5.577428
## 3514    18 years old or older Female              12th grade   1.63  5.347769
## 3515             16 years old   Male              10th grade   1.70  5.577428
## 3516             16 years old   Male              10th grade   1.60  5.249344
## 3517             14 years old Female               9th grade   1.60  5.249344
## 3518             14 years old   Male               9th grade   1.73  5.675853
## 3519             17 years old Female              11th grade   1.63  5.347769
## 3520             16 years old   Male              11th grade   1.83  6.003937
## 3521             17 years old Female              12th grade   1.68  5.511811
## 3522             14 years old   Male               9th grade   1.75  5.741470
## 3523             14 years old Female               9th grade   1.80  5.905512
## 3524             16 years old Female              11th grade   1.57  5.150919
## 3525             17 years old   Male              12th grade   1.65  5.413386
## 3526             15 years old Female               9th grade     NA        NA
## 3527             15 years old Female               9th grade   1.60  5.249344
## 3528             17 years old   Male              12th grade   1.80  5.905512
## 3529             17 years old   Male              11th grade   1.70  5.577428
## 3530    18 years old or older   Male              12th grade   1.73  5.675853
## 3531             15 years old Female              10th grade   1.63  5.347769
## 3532                     <NA>   Male              10th grade     NA        NA
## 3533             15 years old Female               9th grade     NA        NA
## 3534             14 years old Female               9th grade   1.68  5.511811
## 3535             17 years old Female              12th grade   1.70  5.577428
## 3536             17 years old   Male              11th grade   1.78  5.839895
## 3537             17 years old Female              12th grade   1.65  5.413386
## 3538             16 years old   Male              10th grade   1.78  5.839895
## 3539             14 years old   Male               9th grade   1.75  5.741470
## 3540             15 years old   Male               9th grade   1.75  5.741470
## 3541    18 years old or older Female              12th grade   1.52  4.986877
## 3542             16 years old   Male              11th grade   1.85  6.069554
## 3543    18 years old or older Female              12th grade     NA        NA
## 3544             15 years old Female               9th grade   1.75  5.741470
## 3545             15 years old   Male               9th grade   1.75  5.741470
## 3546             17 years old   Male              12th grade   1.73  5.675853
## 3547             17 years old   Male              11th grade   1.78  5.839895
## 3548             17 years old   Male              12th grade   1.83  6.003937
## 3549             15 years old   Male              10th grade   1.68  5.511811
## 3550             16 years old   Male              10th grade   1.83  6.003937
## 3551             14 years old   Male               9th grade   1.65  5.413386
## 3552             15 years old   Male                    <NA>   1.83  6.003937
## 3553             17 years old Female              11th grade   1.52  4.986877
## 3554    18 years old or older Female              12th grade   1.63  5.347769
## 3555             14 years old   Male               9th grade   1.68  5.511811
## 3556             15 years old Female               9th grade   1.78  5.839895
## 3557             17 years old Female              12th grade   1.60  5.249344
## 3558             17 years old   Male              11th grade   1.96  6.430446
## 3559    18 years old or older   Male              12th grade   1.83  6.003937
## 3560             16 years old   Male              10th grade   1.85  6.069554
## 3561             15 years old Female               9th grade     NA        NA
## 3562             14 years old Female               9th grade   1.70  5.577428
## 3563    18 years old or older Female              12th grade   1.63  5.347769
## 3564             17 years old   Male              11th grade   1.80  5.905512
## 3565    18 years old or older Female              12th grade   1.83  6.003937
## 3566             14 years old   Male               9th grade   1.60  5.249344
## 3567             15 years old   Male               9th grade   1.80  5.905512
## 3568             16 years old Female              11th grade   1.52  4.986877
## 3569             16 years old Female              11th grade     NA        NA
## 3570    18 years old or older   Male              12th grade   1.80  5.905512
## 3571             15 years old   Male               9th grade   1.80  5.905512
## 3572             14 years old   Male               9th grade   1.75  5.741470
## 3573             17 years old   Male              11th grade   1.70  5.577428
## 3574             17 years old   Male              12th grade   1.68  5.511811
## 3575             17 years old   Male              12th grade   1.78  5.839895
## 3576             16 years old Female              10th grade   1.73  5.675853
## 3577             15 years old Female              10th grade   1.68  5.511811
## 3578             15 years old Female               9th grade   1.52  4.986877
## 3579             15 years old   Male               9th grade   1.73  5.675853
## 3580             17 years old   Male              11th grade   1.78  5.839895
## 3581             16 years old Female              12th grade   1.75  5.741470
## 3582             16 years old   Male              10th grade   1.78  5.839895
## 3583             15 years old Female              10th grade   1.70  5.577428
## 3584             14 years old Female               9th grade     NA        NA
## 3585             14 years old Female               9th grade   1.57  5.150919
## 3586             17 years old   Male              11th grade   1.70  5.577428
## 3587             17 years old   Male              12th grade   1.80  5.905512
## 3588             15 years old   Male              10th grade   1.80  5.905512
## 3589             15 years old   Male              10th grade   1.70  5.577428
## 3590             14 years old Female               9th grade   1.60  5.249344
## 3591             15 years old Female               9th grade   1.65  5.413386
## 3592    18 years old or older   Male              12th grade   1.78  5.839895
## 3593             16 years old Female              11th grade   1.52  4.986877
## 3594             17 years old Female              12th grade   1.80  5.905512
## 3595             14 years old Female               9th grade   1.52  4.986877
## 3596    18 years old or older Female              12th grade   1.68  5.511811
## 3597             17 years old   Male              11th grade   1.83  6.003937
## 3598             17 years old Female              12th grade   1.73  5.675853
## 3599             15 years old Female              10th grade   1.60  5.249344
## 3600             15 years old   Male               9th grade     NA        NA
## 3601             14 years old Female               9th grade   1.57  5.150919
## 3602    18 years old or older Female              12th grade   1.50  4.921260
## 3603             17 years old   Male              11th grade   1.83  6.003937
## 3604             17 years old Female              12th grade   1.73  5.675853
## 3605             15 years old Female              10th grade   1.75  5.741470
## 3606             15 years old   Male              10th grade   1.70  5.577428
## 3607             15 years old   Male               9th grade   1.75  5.741470
## 3608             14 years old   Male               9th grade   1.75  5.741470
## 3609    18 years old or older Female              12th grade   1.60  5.249344
## 3610             16 years old   Male              11th grade   1.80  5.905512
## 3611             16 years old   Male              10th grade   1.80  5.905512
## 3612             15 years old Female              10th grade   1.68  5.511811
## 3613             14 years old Female               9th grade   1.57  5.150919
## 3614             15 years old Female               9th grade   1.57  5.150919
## 3615             17 years old Female              11th grade   1.57  5.150919
## 3616    18 years old or older   Male              12th grade   1.90  6.233596
## 3617             16 years old   Male              10th grade   1.68  5.511811
## 3618             16 years old Female              10th grade   1.57  5.150919
## 3619             14 years old Female               9th grade   1.65  5.413386
## 3620             15 years old Female               9th grade   1.55  5.085302
## 3621             16 years old Female              11th grade   1.52  4.986877
## 3622             15 years old   Male              10th grade   1.80  5.905512
## 3623             15 years old   Male               9th grade   1.73  5.675853
## 3624             15 years old   Male               9th grade   1.78  5.839895
## 3625             17 years old   Male              12th grade   1.83  6.003937
## 3626             16 years old Female              11th grade   1.60  5.249344
## 3627             16 years old   Male              10th grade   1.73  5.675853
## 3628             15 years old   Male              10th grade   1.85  6.069554
## 3629             14 years old Female               9th grade     NA        NA
## 3630             17 years old Female              12th grade   1.63  5.347769
## 3631             17 years old Female              11th grade   1.57  5.150919
## 3632             16 years old Female              10th grade   1.65  5.413386
## 3633             16 years old   Male              10th grade   1.75  5.741470
## 3634             15 years old   Male               9th grade   1.78  5.839895
## 3635             15 years old   Male               9th grade   1.78  5.839895
## 3636             14 years old Female               9th grade     NA        NA
## 3637             17 years old Female              12th grade   1.68  5.511811
## 3638             16 years old   Male              11th grade   1.90  6.233596
## 3639             16 years old   Male              10th grade   1.68  5.511811
## 3640             16 years old   Male              10th grade   1.85  6.069554
## 3641             14 years old Female                    <NA>   1.55  5.085302
## 3642             14 years old   Male               9th grade   1.80  5.905512
## 3643             17 years old   Male              11th grade   1.88  6.167979
## 3644             17 years old Female              11th grade   1.68  5.511811
## 3645             15 years old   Male              10th grade   1.75  5.741470
## 3646             15 years old   Male               9th grade   1.78  5.839895
## 3647             14 years old Female               9th grade   1.68  5.511811
## 3648             16 years old   Male              11th grade   1.78  5.839895
## 3649             15 years old   Male              10th grade   1.73  5.675853
## 3650             16 years old   Male              11th grade   1.70  5.577428
## 3651             17 years old   Male              11th grade   1.83  6.003937
## 3652             17 years old Female              11th grade   1.63  5.347769
## 3653             17 years old Female              11th grade   1.70  5.577428
## 3654             16 years old Female              11th grade     NA        NA
## 3655             16 years old Female              10th grade   1.50  4.921260
## 3656             15 years old Female              10th grade   1.73  5.675853
## 3657             15 years old Female              10th grade   1.63  5.347769
## 3658             16 years old Female              10th grade   1.60  5.249344
## 3659             16 years old   Male              10th grade   1.73  5.675853
## 3660             16 years old   Male              10th grade   1.75  5.741470
## 3661             15 years old   Male              10th grade   1.65  5.413386
## 3662             14 years old Female               9th grade   1.68  5.511811
## 3663             17 years old Female              10th grade   1.73  5.675853
## 3664             16 years old   Male              10th grade   1.65  5.413386
## 3665             15 years old Female              10th grade   1.60  5.249344
## 3666             15 years old   Male               9th grade   1.68  5.511811
## 3667             16 years old   Male               9th grade   1.73  5.675853
## 3668             15 years old Female               9th grade   1.60  5.249344
## 3669             16 years old   Male               9th grade   1.83  6.003937
## 3670             17 years old   Male              11th grade   1.78  5.839895
## 3671             17 years old   Male              11th grade   1.78  5.839895
## 3672             16 years old   Male              11th grade   1.80  5.905512
## 3673             17 years old Female              11th grade   1.65  5.413386
## 3674             16 years old   Male              11th grade   1.65  5.413386
## 3675             15 years old   Male               9th grade   1.73  5.675853
## 3676             14 years old   Male               9th grade   1.65  5.413386
## 3677             16 years old Female              10th grade   1.63  5.347769
## 3678             15 years old   Male              10th grade   1.75  5.741470
## 3679             16 years old Female              10th grade   1.70  5.577428
## 3680             16 years old Female              10th grade   1.52  4.986877
## 3681             16 years old   Male              10th grade   1.68  5.511811
## 3682             15 years old Female               9th grade     NA        NA
## 3683             14 years old   Male               9th grade   1.60  5.249344
## 3684             15 years old Female               9th grade   1.60  5.249344
## 3685             17 years old   Male              10th grade     NA        NA
## 3686             16 years old   Male              10th grade     NA        NA
## 3687                     <NA> Female              10th grade     NA        NA
## 3688             15 years old   Male              10th grade   1.75  5.741470
## 3689             14 years old   Male               9th grade   1.80  5.905512
## 3690             17 years old   Male              12th grade   1.85  6.069554
## 3691             17 years old   Male              11th grade   1.68  5.511811
## 3692             15 years old   Male               9th grade   1.75  5.741470
## 3693             17 years old   Male              12th grade   1.78  5.839895
## 3694             17 years old   Male              11th grade   1.68  5.511811
## 3695             16 years old   Male              10th grade   1.68  5.511811
## 3696             14 years old   Male               9th grade   1.80  5.905512
## 3697    18 years old or older   Male              12th grade   1.83  6.003937
## 3698             16 years old   Male              11th grade   1.73  5.675853
## 3699             16 years old   Male              10th grade   1.78  5.839895
## 3700    18 years old or older   Male              12th grade   1.96  6.430446
## 3701             16 years old   Male              11th grade   1.83  6.003937
## 3702             15 years old   Male              10th grade   1.78  5.839895
## 3703             15 years old   Male               9th grade   1.70  5.577428
## 3704    18 years old or older   Male              12th grade   1.88  6.167979
## 3705             17 years old   Male              11th grade   1.88  6.167979
## 3706             16 years old   Male               9th grade   1.63  5.347769
## 3707    18 years old or older   Male              12th grade   1.83  6.003937
## 3708             17 years old   Male              11th grade   1.88  6.167979
## 3709             15 years old   <NA>               9th grade     NA        NA
## 3710             17 years old   Male              12th grade   1.83  6.003937
## 3711             17 years old   Male              11th grade   1.83  6.003937
## 3712             14 years old   Male               9th grade   1.83  6.003937
## 3713             17 years old   Male              12th grade   1.83  6.003937
## 3714             17 years old   Male              11th grade   1.78  5.839895
## 3715             15 years old   Male              10th grade   1.83  6.003937
## 3716    18 years old or older   Male              12th grade   1.78  5.839895
## 3717             16 years old   Male              11th grade   1.88  6.167979
## 3718             16 years old   Male              10th grade   1.68  5.511811
## 3719             15 years old   Male               9th grade   1.68  5.511811
## 3720    18 years old or older   Male              12th grade   1.75  5.741470
## 3721             17 years old   Male              11th grade   1.85  6.069554
## 3722             15 years old   Male              10th grade   1.73  5.675853
## 3723    18 years old or older   Male              12th grade   1.75  5.741470
## 3724             17 years old   Male              11th grade   1.88  6.167979
## 3725             16 years old   Male              10th grade   1.70  5.577428
## 3726             14 years old   Male               9th grade   1.68  5.511811
## 3727    18 years old or older   Male              12th grade   1.88  6.167979
## 3728             16 years old   Male              11th grade     NA        NA
## 3729             15 years old   Male              10th grade   1.68  5.511811
## 3730             14 years old   Male               9th grade     NA        NA
## 3731    18 years old or older   Male              12th grade   1.85  6.069554
## 3732             16 years old   Male              11th grade   1.96  6.430446
## 3733             16 years old   Male              10th grade   1.73  5.675853
## 3734    18 years old or older   Male              12th grade   1.83  6.003937
## 3735             17 years old   Male              11th grade   1.85  6.069554
## 3736             15 years old   Male              10th grade   1.83  6.003937
## 3737             14 years old   Male               9th grade   1.75  5.741470
## 3738    18 years old or older   Male              12th grade   1.70  5.577428
## 3739             16 years old   Male              11th grade   1.83  6.003937
## 3740             16 years old   Male              10th grade   1.85  6.069554
## 3741             14 years old   Male               9th grade   1.63  5.347769
## 3742             16 years old   Male              10th grade   1.80  5.905512
## 3743             15 years old   Male               9th grade   1.85  6.069554
## 3744             15 years old   Male              10th grade   1.75  5.741470
## 3745             14 years old   Male               9th grade   1.78  5.839895
## 3746             16 years old   Male              10th grade   1.78  5.839895
## 3747             15 years old   Male               9th grade   1.80  5.905512
## 3748             17 years old   Male              12th grade   1.78  5.839895
## 3749             16 years old   Male              10th grade   1.83  6.003937
## 3750             14 years old   Male               9th grade   1.78  5.839895
## 3751    18 years old or older   Male              12th grade   1.78  5.839895
## 3752             16 years old   Male              10th grade   1.88  6.167979
## 3753             15 years old   Male               9th grade     NA        NA
## 3754             14 years old   Male               9th grade   1.80  5.905512
## 3755    18 years old or older   Male              12th grade   1.83  6.003937
## 3756             15 years old   Male              10th grade   1.73  5.675853
## 3757             15 years old   Male               9th grade   1.68  5.511811
## 3758    18 years old or older   Male              12th grade   1.80  5.905512
## 3759             16 years old   Male              11th grade   1.85  6.069554
## 3760             16 years old   Male              10th grade   1.75  5.741470
## 3761    18 years old or older   Male              12th grade   1.83  6.003937
## 3762             16 years old   Male              11th grade   1.83  6.003937
## 3763             16 years old   Male              10th grade   1.78  5.839895
## 3764             17 years old   Male              12th grade   1.90  6.233596
## 3765             16 years old   Male              11th grade   1.75  5.741470
## 3766             15 years old   Male              10th grade   1.75  5.741470
## 3767             15 years old   Male               9th grade   1.90  6.233596
## 3768             16 years old   Male              10th grade   1.78  5.839895
## 3769             15 years old   Male               9th grade   1.88  6.167979
## 3770    18 years old or older   Male              12th grade   1.80  5.905512
## 3771             15 years old   Male               9th grade   1.96  6.430446
## 3772    18 years old or older   Male              12th grade   1.93  6.332021
## 3773             15 years old   Male              11th grade   1.73  5.675853
## 3774             14 years old   Male               9th grade   1.83  6.003937
## 3775             17 years old   Male              12th grade   1.70  5.577428
## 3776    18 years old or older   Male              12th grade   1.70  5.577428
## 3777             17 years old   Male              11th grade   1.80  5.905512
## 3778             17 years old   Male              12th grade   1.90  6.233596
## 3779             16 years old Female              10th grade   1.65  5.413386
## 3780             17 years old   Male              11th grade   1.88  6.167979
## 3781             16 years old Female              10th grade   1.68  5.511811
## 3782             17 years old   Male              12th grade   1.80  5.905512
## 3783             14 years old Female               9th grade   1.65  5.413386
## 3784             17 years old Female              11th grade   1.50  4.921260
## 3785             16 years old   Male              10th grade   1.83  6.003937
## 3786             17 years old   Male              12th grade   1.78  5.839895
## 3787             14 years old Female               9th grade   1.57  5.150919
## 3788             17 years old   Male              11th grade   1.75  5.741470
## 3789             15 years old   Male              10th grade   1.68  5.511811
## 3790             17 years old Female              12th grade   1.60  5.249344
## 3791             14 years old   Male               9th grade   1.68  5.511811
## 3792             17 years old   Male              11th grade   1.88  6.167979
## 3793             16 years old Female              10th grade   1.68  5.511811
## 3794             17 years old Female              12th grade   1.65  5.413386
## 3795             15 years old   Male              10th grade   1.78  5.839895
## 3796             17 years old   Male              12th grade   1.75  5.741470
## 3797             15 years old Female              10th grade   1.60  5.249344
## 3798             17 years old Female              12th grade   1.70  5.577428
## 3799             14 years old Female               9th grade   1.65  5.413386
## 3800             17 years old   Male              11th grade     NA        NA
## 3801             17 years old   Male              12th grade   1.90  6.233596
## 3802             15 years old   Male               9th grade   1.78  5.839895
## 3803             17 years old Female              11th grade   1.65  5.413386
## 3804             15 years old   Male              10th grade   1.80  5.905512
## 3805    18 years old or older Female              12th grade   1.63  5.347769
## 3806             15 years old   Male              10th grade   1.65  5.413386
## 3807             17 years old Female              11th grade   1.60  5.249344
## 3808             15 years old Female              10th grade   1.78  5.839895
## 3809             17 years old   Male              12th grade   1.68  5.511811
## 3810             15 years old   Male              10th grade   1.73  5.675853
## 3811             16 years old   Male              11th grade   1.68  5.511811
## 3812             17 years old   Male              10th grade   1.65  5.413386
## 3813             17 years old   Male              12th grade   1.73  5.675853
## 3814             15 years old   Male               9th grade   1.65  5.413386
## 3815             17 years old Female              11th grade   1.52  4.986877
## 3816             15 years old Female              10th grade   1.52  4.986877
## 3817    18 years old or older   Male              12th grade   1.63  5.347769
## 3818             16 years old   Male              10th grade   1.85  6.069554
## 3819             16 years old   Male              11th grade   1.78  5.839895
## 3820             15 years old   Male              10th grade   1.78  5.839895
## 3821             17 years old   Male              12th grade   1.73  5.675853
## 3822             14 years old   Male               9th grade   1.73  5.675853
## 3823             17 years old   Male              11th grade   1.85  6.069554
## 3824             16 years old   Male              10th grade   1.85  6.069554
## 3825             17 years old   Male              12th grade   1.78  5.839895
## 3826             15 years old   Male              10th grade   1.75  5.741470
## 3827             15 years old Female              10th grade   1.60  5.249344
## 3828             17 years old   Male              12th grade   1.68  5.511811
## 3829             14 years old Female               9th grade   1.68  5.511811
## 3830             16 years old   Male              11th grade   1.88  6.167979
## 3831             16 years old Female              10th grade   1.52  4.986877
## 3832             17 years old   Male              12th grade   1.75  5.741470
## 3833             16 years old Female              11th grade   1.73  5.675853
## 3834             16 years old   Male              10th grade   1.70  5.577428
## 3835             17 years old Female              12th grade   1.60  5.249344
## 3836             15 years old   Male               9th grade   1.73  5.675853
## 3837             17 years old   Male              11th grade   1.78  5.839895
## 3838             16 years old Female              10th grade   1.63  5.347769
## 3839             17 years old   Male              12th grade   1.75  5.741470
## 3840             14 years old   Male               9th grade   1.68  5.511811
## 3841             17 years old Female              11th grade   1.75  5.741470
## 3842             15 years old   Male              10th grade   1.88  6.167979
## 3843             17 years old   Male              12th grade     NA        NA
## 3844             14 years old   Male               9th grade   1.57  5.150919
## 3845             16 years old   Male              11th grade   1.78  5.839895
## 3846    18 years old or older   Male              12th grade   1.80  5.905512
## 3847             15 years old Female               9th grade   1.68  5.511811
## 3848             16 years old   Male              11th grade   1.85  6.069554
## 3849             14 years old Female               9th grade   1.57  5.150919
## 3850             16 years old   Male              11th grade   1.70  5.577428
## 3851             15 years old Female               9th grade   1.75  5.741470
## 3852             17 years old Female              12th grade     NA        NA
## 3853             16 years old   Male              10th grade   1.70  5.577428
## 3854             15 years old Female               9th grade   1.70  5.577428
## 3855             17 years old   Male              11th grade   1.78  5.839895
## 3856             15 years old Female              10th grade   1.68  5.511811
## 3857             15 years old   Male               9th grade   1.70  5.577428
## 3858             17 years old   Male              11th grade   1.85  6.069554
## 3859             16 years old Female              10th grade     NA        NA
## 3860             17 years old   Male              12th grade   1.75  5.741470
## 3861             14 years old   Male               9th grade   1.83  6.003937
## 3862             16 years old   <NA>              11th grade     NA        NA
## 3863             15 years old Female              10th grade   1.65  5.413386
## 3864    18 years old or older Female              12th grade   1.63  5.347769
## 3865             14 years old Female               9th grade   1.70  5.577428
## 3866             16 years old   Male              11th grade   1.80  5.905512
## 3867             15 years old   Male              10th grade   1.70  5.577428
## 3868             17 years old   Male              12th grade   1.85  6.069554
## 3869             15 years old   Male              10th grade   1.83  6.003937
## 3870             16 years old   Male              10th grade   1.78  5.839895
## 3871             15 years old   Male              10th grade   1.63  5.347769
## 3872             15 years old   Male              10th grade   1.83  6.003937
## 3873             17 years old   Male              11th grade   1.85  6.069554
## 3874             15 years old Female              10th grade   1.60  5.249344
## 3875             14 years old   Male               9th grade   1.80  5.905512
## 3876             17 years old   Male              11th grade   1.78  5.839895
## 3877    18 years old or older   Male              12th grade   1.75  5.741470
## 3878             15 years old   Male               9th grade   1.78  5.839895
## 3879             17 years old   Male              11th grade   1.83  6.003937
## 3880             16 years old Female              10th grade   1.63  5.347769
## 3881             17 years old Female              12th grade   1.78  5.839895
## 3882             14 years old Female               9th grade   1.63  5.347769
## 3883             17 years old   Male              11th grade   1.85  6.069554
## 3884             15 years old Female              10th grade   1.73  5.675853
## 3885    18 years old or older   Male              12th grade   1.85  6.069554
## 3886             15 years old   Male               9th grade   1.75  5.741470
## 3887             16 years old Female              11th grade   1.73  5.675853
## 3888             16 years old Female              10th grade   1.68  5.511811
## 3889             17 years old Female              11th grade   1.63  5.347769
## 3890             15 years old Female              10th grade   1.68  5.511811
## 3891             17 years old   Male              12th grade   1.70  5.577428
## 3892             15 years old Female              12th grade   1.63  5.347769
## 3893             17 years old   Male              11th grade   1.73  5.675853
## 3894             15 years old   Male              10th grade   1.75  5.741470
## 3895             16 years old Female              10th grade   1.57  5.150919
## 3896             17 years old Female              12th grade   1.63  5.347769
## 3897             15 years old   Male               9th grade   1.80  5.905512
## 3898             17 years old   Male              11th grade   1.80  5.905512
## 3899             16 years old Female              11th grade     NA        NA
## 3900             15 years old   Male              10th grade   1.70  5.577428
## 3901             17 years old Female              12th grade   1.60  5.249344
## 3902             15 years old   Male               9th grade   1.73  5.675853
## 3903             17 years old Female              11th grade   1.63  5.347769
## 3904             17 years old   Male              11th grade   1.73  5.675853
## 3905             16 years old Female              10th grade   1.60  5.249344
## 3906    18 years old or older Female              12th grade   1.70  5.577428
## 3907             15 years old   Male               9th grade   1.93  6.332021
## 3908             16 years old   Male              11th grade   1.78  5.839895
## 3909             15 years old Female              10th grade   1.65  5.413386
## 3910             17 years old Female              12th grade   1.63  5.347769
## 3911             14 years old Female               9th grade     NA        NA
## 3912             17 years old   Male              11th grade   1.55  5.085302
## 3913             16 years old   Male              10th grade   1.83  6.003937
## 3914             14 years old Female               9th grade   1.52  4.986877
## 3915             16 years old Female              11th grade   1.75  5.741470
## 3916             15 years old Female              10th grade   1.57  5.150919
## 3917    18 years old or older   Male              12th grade   1.78  5.839895
## 3918             17 years old   Male              11th grade   1.78  5.839895
## 3919             16 years old   Male              10th grade   1.83  6.003937
## 3920             17 years old   Male              12th grade   1.73  5.675853
## 3921             15 years old Female               9th grade   1.57  5.150919
## 3922             17 years old   Male              11th grade   1.75  5.741470
## 3923             16 years old   Male              10th grade   1.70  5.577428
## 3924    18 years old or older Female              12th grade   1.70  5.577428
## 3925             14 years old   Male               9th grade   1.75  5.741470
## 3926             14 years old Female               9th grade   1.63  5.347769
## 3927             17 years old   Male              11th grade   1.75  5.741470
## 3928             14 years old   Male              10th grade   1.73  5.675853
## 3929             17 years old   Male              12th grade   1.93  6.332021
## 3930             15 years old   Male               9th grade   1.65  5.413386
## 3931             15 years old Female               9th grade   1.68  5.511811
## 3932             16 years old   Male              10th grade   1.78  5.839895
## 3933             17 years old Female              12th grade   1.63  5.347769
## 3934             14 years old   Male               9th grade   1.75  5.741470
## 3935             16 years old Female              11th grade   1.55  5.085302
## 3936             15 years old Female              10th grade   1.68  5.511811
## 3937    18 years old or older   Male              12th grade   1.80  5.905512
## 3938             14 years old   Male               9th grade   1.80  5.905512
## 3939             16 years old   Male              11th grade   1.83  6.003937
## 3940             16 years old   Male              10th grade   1.78  5.839895
## 3941             15 years old   Male               9th grade   1.70  5.577428
## 3942             17 years old Female              11th grade   1.50  4.921260
## 3943             15 years old Female              10th grade     NA        NA
## 3944             17 years old Female              12th grade   1.78  5.839895
## 3945             15 years old   Male               9th grade   1.80  5.905512
## 3946             16 years old Female              11th grade   1.75  5.741470
## 3947             15 years old   Male              10th grade   1.75  5.741470
## 3948             17 years old   Male              12th grade   1.78  5.839895
## 3949             15 years old   Male               9th grade   1.75  5.741470
## 3950             17 years old   Male              11th grade   1.73  5.675853
## 3951             16 years old   Male              10th grade   1.65  5.413386
## 3952    18 years old or older   Male              12th grade   1.85  6.069554
## 3953             13 years old Female               9th grade   1.73  5.675853
## 3954             15 years old Female              10th grade   1.60  5.249344
## 3955    18 years old or older Female              12th grade   1.70  5.577428
## 3956             14 years old   Male               9th grade   1.75  5.741470
## 3957             15 years old Female              10th grade   1.70  5.577428
## 3958             14 years old Female               9th grade   1.68  5.511811
## 3959             15 years old Female               9th grade   1.60  5.249344
## 3960             14 years old Female               9th grade   1.52  4.986877
## 3961             15 years old Female              10th grade   1.63  5.347769
## 3962             17 years old   Male              10th grade   1.78  5.839895
## 3963             17 years old Female              11th grade   1.78  5.839895
## 3964             17 years old   Male              11th grade   1.78  5.839895
## 3965             17 years old   Male              12th grade   1.78  5.839895
## 3966    18 years old or older   Male              12th grade   1.73  5.675853
## 3967             14 years old Female               9th grade   1.60  5.249344
## 3968             15 years old   Male               9th grade   1.75  5.741470
## 3969             15 years old Female              10th grade     NA        NA
## 3970             15 years old   Male              10th grade   1.88  6.167979
## 3971             17 years old Female              11th grade   1.70  5.577428
## 3972             15 years old   Male               9th grade   1.73  5.675853
## 3973             13 years old Female               9th grade     NA        NA
## 3974             16 years old   Male              10th grade   1.80  5.905512
## 3975             15 years old Female              10th grade   1.68  5.511811
## 3976             16 years old   Male              11th grade   1.80  5.905512
## 3977             16 years old   Male              11th grade   1.85  6.069554
## 3978    18 years old or older Female              12th grade   1.47  4.822835
## 3979             17 years old Female              12th grade   1.70  5.577428
## 3980             15 years old   Male               9th grade   1.65  5.413386
## 3981             15 years old   Male              10th grade   1.93  6.332021
## 3982             16 years old   Male              10th grade   1.78  5.839895
## 3983             17 years old   Male              11th grade   1.78  5.839895
## 3984             17 years old Female              12th grade   1.68  5.511811
## 3985             17 years old Female              12th grade   1.68  5.511811
## 3986    18 years old or older Female              12th grade   1.75  5.741470
## 3987             15 years old Female               9th grade   1.63  5.347769
## 3988             15 years old Female               9th grade   1.63  5.347769
## 3989             16 years old Female              10th grade   1.55  5.085302
## 3990             15 years old Female              10th grade   1.65  5.413386
## 3991             17 years old Female              11th grade   1.65  5.413386
## 3992             17 years old Female              11th grade   1.60  5.249344
## 3993             17 years old Female              12th grade   1.60  5.249344
## 3994             17 years old Female              12th grade   1.75  5.741470
## 3995             15 years old Female               9th grade   1.68  5.511811
## 3996             14 years old Female               9th grade   1.60  5.249344
## 3997             15 years old   Male              10th grade   1.73  5.675853
## 3998             15 years old   Male              10th grade   1.78  5.839895
## 3999             17 years old Female              11th grade   1.70  5.577428
## 4000    18 years old or older Female              12th grade   1.57  5.150919
## 4001             14 years old   Male               9th grade   1.75  5.741470
## 4002             15 years old   Male               9th grade   1.73  5.675853
## 4003             15 years old   Male              10th grade   1.78  5.839895
## 4004             16 years old   Male              10th grade   1.93  6.332021
## 4005             17 years old   Male              11th grade     NA        NA
## 4006             17 years old Female              11th grade   1.65  5.413386
## 4007             17 years old Female              12th grade   1.70  5.577428
## 4008    18 years old or older Female              12th grade   1.57  5.150919
## 4009             15 years old   Male               9th grade   1.70  5.577428
## 4010             16 years old Female              10th grade   1.68  5.511811
## 4011             15 years old   Male              10th grade   1.83  6.003937
## 4012             17 years old   Male              11th grade   1.75  5.741470
## 4013             17 years old Female              11th grade     NA        NA
## 4014             17 years old Female              12th grade   1.57  5.150919
## 4015             17 years old Female              12th grade   1.80  5.905512
## 4016             15 years old Female               9th grade   1.65  5.413386
## 4017             16 years old Female              10th grade   1.68  5.511811
## 4018             15 years old Female              10th grade   1.70  5.577428
## 4019             17 years old   Male              11th grade   1.68  5.511811
## 4020             17 years old Female              11th grade   1.55  5.085302
## 4021             17 years old   Male              12th grade   1.78  5.839895
## 4022    18 years old or older   Male              12th grade   1.78  5.839895
## 4023             15 years old   Male               9th grade   1.70  5.577428
## 4024             14 years old Female               9th grade   1.63  5.347769
## 4025             15 years old Female              10th grade     NA        NA
## 4026             16 years old   Male              10th grade   1.73  5.675853
## 4027             16 years old   Male              11th grade   1.78  5.839895
## 4028             16 years old Female              11th grade   1.57  5.150919
## 4029             17 years old Female              12th grade   1.55  5.085302
## 4030    18 years old or older   Male              12th grade   1.85  6.069554
## 4031             14 years old   Male               9th grade   1.80  5.905512
## 4032             15 years old   Male               9th grade   1.63  5.347769
## 4033             16 years old   Male              10th grade   1.70  5.577428
## 4034             15 years old Female              10th grade   1.70  5.577428
## 4035             16 years old   Male              11th grade   1.83  6.003937
## 4036             14 years old Female               9th grade   1.63  5.347769
## 4037                     <NA>   Male              10th grade     NA        NA
## 4038             17 years old Female              11th grade     NA        NA
## 4039             16 years old Female              11th grade   1.68  5.511811
## 4040             17 years old   Male              12th grade   1.78  5.839895
## 4041    18 years old or older   Male              12th grade   1.75  5.741470
## 4042             14 years old Female               9th grade   1.55  5.085302
## 4043             15 years old Female              10th grade   1.73  5.675853
## 4044             16 years old Female              10th grade   1.73  5.675853
## 4045    18 years old or older   Male              11th grade     NA        NA
## 4046             16 years old   Male              11th grade   1.70  5.577428
## 4047    18 years old or older   Male              12th grade   1.83  6.003937
## 4048    18 years old or older Female              12th grade   1.60  5.249344
## 4049             15 years old Female               9th grade   1.63  5.347769
## 4050             14 years old   Male               9th grade   1.75  5.741470
## 4051             16 years old Female              10th grade   1.65  5.413386
## 4052             15 years old   Male              10th grade   1.80  5.905512
## 4053             17 years old Female              11th grade   1.80  5.905512
## 4054             16 years old   Male              11th grade   1.80  5.905512
## 4055             17 years old Female              12th grade   1.50  4.921260
## 4056             17 years old Female              12th grade   1.70  5.577428
## 4057             15 years old   Male               9th grade   1.68  5.511811
## 4058             15 years old   Male               9th grade   1.75  5.741470
## 4059             16 years old   Male              10th grade   1.70  5.577428
## 4060             16 years old   Male              10th grade   1.70  5.577428
## 4061             17 years old Female              11th grade   1.75  5.741470
## 4062    18 years old or older   Male              12th grade   1.78  5.839895
## 4063    18 years old or older   Male              12th grade   1.88  6.167979
## 4064             16 years old Female              10th grade   1.55  5.085302
## 4065             14 years old Female               9th grade   1.60  5.249344
## 4066             15 years old Female              10th grade   1.63  5.347769
## 4067             16 years old   Male              12th grade   1.83  6.003937
## 4068    18 years old or older Female              12th grade   1.60  5.249344
## 4069             15 years old   Male               9th grade   1.70  5.577428
## 4070             15 years old   Male              10th grade   1.83  6.003937
## 4071             17 years old Female              11th grade   1.75  5.741470
## 4072             17 years old Female              12th grade   1.63  5.347769
## 4073             17 years old Female              12th grade   1.68  5.511811
## 4074             15 years old   Male               9th grade   1.83  6.003937
## 4075             17 years old   Male              11th grade   1.80  5.905512
## 4076    18 years old or older Female              12th grade   1.63  5.347769
## 4077             17 years old Female              12th grade   1.63  5.347769
## 4078             14 years old Female               9th grade     NA        NA
## 4079             16 years old Female              11th grade     NA        NA
## 4080    18 years old or older   Male              12th grade   1.83  6.003937
## 4081             14 years old   Male               9th grade   1.73  5.675853
## 4082             14 years old Female                    <NA>   1.70  5.577428
## 4083             16 years old Female              11th grade   1.83  6.003937
## 4084             17 years old Female              12th grade   1.60  5.249344
## 4085             17 years old   Male              12th grade   1.85  6.069554
## 4086             15 years old Female               9th grade   1.68  5.511811
## 4087             16 years old Female              11th grade   1.70  5.577428
## 4088             17 years old Female              12th grade   1.70  5.577428
## 4089             17 years old Female              12th grade     NA        NA
## 4090             14 years old Female               9th grade   1.57  5.150919
## 4091             14 years old   Male               9th grade   1.65  5.413386
## 4092    18 years old or older   Male              12th grade   1.83  6.003937
## 4093             17 years old   Male              12th grade   1.73  5.675853
## 4094             15 years old   Male               9th grade   1.68  5.511811
## 4095             14 years old Female               9th grade   1.57  5.150919
## 4096             16 years old Female              10th grade   1.75  5.741470
## 4097             15 years old Female               9th grade   1.52  4.986877
## 4098             15 years old Female               9th grade   1.63  5.347769
## 4099             16 years old   Male              10th grade   1.75  5.741470
## 4100    18 years old or older   Male              10th grade   1.55  5.085302
## 4101             16 years old Female              11th grade   1.63  5.347769
## 4102             17 years old Female              12th grade   1.75  5.741470
## 4103    18 years old or older Female              12th grade   1.57  5.150919
## 4104             16 years old   Male               9th grade   1.70  5.577428
## 4105             15 years old   Male               9th grade   1.73  5.675853
## 4106             15 years old   Male               9th grade   1.78  5.839895
## 4107             15 years old   Male               9th grade   1.63  5.347769
## 4108             15 years old Female              10th grade   1.65  5.413386
## 4109             16 years old Female              10th grade   1.55  5.085302
## 4110             16 years old   Male              11th grade   1.65  5.413386
## 4111    18 years old or older   Male              12th grade   1.83  6.003937
## 4112             17 years old   Male              12th grade   1.80  5.905512
## 4113             15 years old   Male               9th grade   1.78  5.839895
## 4114             14 years old Female               9th grade     NA        NA
## 4115             16 years old Female              10th grade   1.68  5.511811
## 4116             15 years old Female              10th grade   1.68  5.511811
## 4117             16 years old   Male              11th grade   1.75  5.741470
## 4118    18 years old or older   Male              11th grade   1.90  6.233596
## 4119             17 years old Female              12th grade   1.52  4.986877
## 4120    18 years old or older   Male              12th grade     NA        NA
## 4121             15 years old   Male               9th grade   1.75  5.741470
## 4122             15 years old Female              10th grade   1.60  5.249344
## 4123             16 years old Female              10th grade   1.57  5.150919
## 4124             16 years old   Male              11th grade   1.68  5.511811
## 4125             17 years old Female              12th grade   1.70  5.577428
## 4126    18 years old or older   Male              12th grade   1.80  5.905512
## 4127             15 years old   Male               9th grade   1.90  6.233596
## 4128             14 years old   Male               9th grade   1.68  5.511811
## 4129             16 years old   Male               9th grade   1.88  6.167979
## 4130    18 years old or older Female              12th grade   1.55  5.085302
## 4131             15 years old Female              10th grade   1.70  5.577428
## 4132             15 years old Female               9th grade   1.60  5.249344
## 4133             17 years old Female              12th grade   1.73  5.675853
## 4134             17 years old   Male              11th grade   1.73  5.675853
## 4135             16 years old   Male              10th grade   1.68  5.511811
## 4136             16 years old   Male              11th grade   1.83  6.003937
## 4137             15 years old Female               9th grade   1.60  5.249344
## 4138    18 years old or older   Male              12th grade   1.83  6.003937
## 4139             15 years old   Male              10th grade   1.88  6.167979
## 4140             17 years old   Male              11th grade   1.73  5.675853
## 4141             15 years old   Male               9th grade   1.60  5.249344
## 4142             17 years old Female              12th grade   1.70  5.577428
## 4143             15 years old Female               9th grade   1.68  5.511811
## 4144             17 years old   Male              12th grade   1.68  5.511811
## 4145             16 years old Female              10th grade   1.60  5.249344
## 4146             16 years old   Male              11th grade   1.83  6.003937
## 4147             17 years old Female              12th grade   1.70  5.577428
## 4148             16 years old Female              10th grade   1.60  5.249344
## 4149    18 years old or older   Male              11th grade   1.73  5.675853
## 4150             14 years old Female               9th grade   1.78  5.839895
## 4151    18 years old or older Female              12th grade   1.70  5.577428
## 4152             17 years old   Male              10th grade     NA        NA
## 4153             16 years old   Male              11th grade   1.78  5.839895
## 4154             15 years old   Male              10th grade   1.73  5.675853
## 4155             17 years old   Male              11th grade   1.83  6.003937
## 4156             15 years old Female               9th grade   1.63  5.347769
## 4157    18 years old or older Female              12th grade     NA        NA
## 4158             15 years old Female              10th grade   1.75  5.741470
## 4159    18 years old or older   Male              12th grade   1.78  5.839895
## 4160             14 years old Female               9th grade   1.68  5.511811
## 4161             17 years old Female              12th grade   1.73  5.675853
## 4162             16 years old   Male               9th grade   1.83  6.003937
## 4163             17 years old Female              12th grade   1.52  4.986877
## 4164             15 years old   Male              10th grade   1.80  5.905512
## 4165    18 years old or older Female              12th grade   1.68  5.511811
## 4166             16 years old Female              10th grade   1.63  5.347769
## 4167             15 years old Female               9th grade     NA        NA
## 4168             17 years old   Male              12th grade   1.65  5.413386
## 4169             16 years old   Male              10th grade   1.78  5.839895
## 4170             16 years old   Male               9th grade     NA        NA
## 4171    18 years old or older Female              12th grade   1.73  5.675853
## 4172             15 years old   Male              10th grade   1.80  5.905512
## 4173             16 years old   Male              11th grade   1.70  5.577428
## 4174             14 years old   Male               9th grade   1.73  5.675853
## 4175    18 years old or older Female              12th grade   1.70  5.577428
## 4176             15 years old   Male              10th grade   1.70  5.577428
## 4177             16 years old   Male               9th grade   1.75  5.741470
## 4178             15 years old Female              10th grade     NA        NA
## 4179             17 years old Female              11th grade   1.57  5.150919
## 4180             15 years old Female               9th grade   1.57  5.150919
## 4181             17 years old   Male              10th grade   1.65  5.413386
## 4182             16 years old Female              11th grade     NA        NA
## 4183             15 years old   Male               9th grade   1.65  5.413386
## 4184             17 years old Female              12th grade   1.52  4.986877
## 4185             16 years old   Male              11th grade   1.78  5.839895
## 4186             15 years old Female               9th grade     NA        NA
## 4187    18 years old or older Female              12th grade   1.63  5.347769
## 4188             15 years old   Male              10th grade   1.80  5.905512
## 4189    18 years old or older   Male              11th grade   1.63  5.347769
## 4190             15 years old   Male              10th grade   1.70  5.577428
## 4191             16 years old   Male              11th grade   1.85  6.069554
## 4192             14 years old Female               9th grade   1.63  5.347769
## 4193    18 years old or older Female              12th grade   1.55  5.085302
## 4194             15 years old Female              10th grade     NA        NA
## 4195             16 years old   Male              11th grade   1.80  5.905512
## 4196             14 years old Female               9th grade   1.63  5.347769
## 4197             17 years old Female              12th grade   1.57  5.150919
## 4198             15 years old Female              10th grade   1.60  5.249344
## 4199             17 years old Female              11th grade   1.57  5.150919
## 4200             15 years old Female               9th grade   1.60  5.249344
## 4201             17 years old   Male              12th grade   1.90  6.233596
## 4202             15 years old Female              10th grade   1.63  5.347769
## 4203             16 years old Female              11th grade   1.63  5.347769
## 4204             15 years old Female               9th grade     NA        NA
## 4205             17 years old Female              12th grade   1.65  5.413386
## 4206             17 years old Female              10th grade   1.57  5.150919
## 4207             17 years old Female              11th grade   1.60  5.249344
## 4208    18 years old or older Female              12th grade   1.57  5.150919
## 4209             15 years old Female              10th grade   1.57  5.150919
## 4210             16 years old Female              11th grade   1.52  4.986877
## 4211             16 years old   Male               9th grade   1.63  5.347769
## 4212    18 years old or older   Male              12th grade   1.73  5.675853
## 4213             15 years old Female              10th grade   1.73  5.675853
## 4214             17 years old Female              11th grade   1.65  5.413386
## 4215             15 years old   Male               9th grade   1.80  5.905512
## 4216             17 years old   Male              12th grade   1.78  5.839895
## 4217             16 years old   Male              10th grade     NA        NA
## 4218             17 years old   Male              11th grade   1.73  5.675853
## 4219    18 years old or older Female              12th grade   1.73  5.675853
## 4220  12 years old or younger Female              10th grade     NA        NA
## 4221             17 years old   Male              11th grade     NA        NA
## 4222             17 years old   Male              10th grade   1.65  5.413386
## 4223             15 years old   Male              10th grade   1.78  5.839895
## 4224             16 years old   Male              10th grade   1.83  6.003937
## 4225             16 years old Female              10th grade   1.50  4.921260
## 4226             16 years old Female              11th grade   1.55  5.085302
## 4227             16 years old Female              10th grade   1.57  5.150919
## 4228             16 years old   Male              10th grade   1.73  5.675853
## 4229             17 years old Female              11th grade   1.55  5.085302
## 4230             15 years old   Male               9th grade   1.75  5.741470
## 4231             15 years old Female               9th grade   1.68  5.511811
## 4232             15 years old Female              10th grade   1.63  5.347769
## 4233             16 years old   Male               9th grade   1.75  5.741470
## 4234             16 years old   Male              10th grade   1.65  5.413386
## 4235             16 years old   Male              10th grade   1.78  5.839895
## 4236             16 years old   Male              11th grade   1.85  6.069554
## 4237             16 years old   Male              10th grade   1.65  5.413386
## 4238             17 years old Female              10th grade   1.60  5.249344
## 4239             16 years old Female              10th grade   1.55  5.085302
## 4240             17 years old Female              11th grade   1.60  5.249344
## 4241             17 years old Female              11th grade   1.55  5.085302
## 4242             16 years old Female              10th grade   1.55  5.085302
## 4243             17 years old Female              11th grade   1.55  5.085302
## 4244             15 years old   Male               9th grade   1.75  5.741470
## 4245             14 years old   Male               9th grade   1.75  5.741470
## 4246             16 years old Female              10th grade     NA        NA
## 4247             16 years old   Male              11th grade   1.60  5.249344
## 4248    18 years old or older Female              12th grade   1.63  5.347769
## 4249             15 years old Female               9th grade     NA        NA
## 4250             15 years old   Male              10th grade   1.75  5.741470
## 4251             17 years old Female              11th grade   1.68  5.511811
## 4252             17 years old Female              12th grade   1.73  5.675853
## 4253             14 years old   Male               9th grade   1.40  4.593176
## 4254             16 years old   Male              10th grade   1.80  5.905512
## 4255             17 years old Female              11th grade   1.63  5.347769
## 4256             17 years old   Male              12th grade   1.85  6.069554
## 4257             14 years old   Male               9th grade   1.75  5.741470
## 4258             15 years old   Male              10th grade   1.78  5.839895
## 4259             16 years old Female              11th grade   1.60  5.249344
## 4260             17 years old   Male              12th grade   1.83  6.003937
## 4261             15 years old Female               9th grade   1.52  4.986877
## 4262             16 years old   Male              10th grade   1.68  5.511811
## 4263             16 years old Female              11th grade   1.57  5.150919
## 4264             17 years old   Male              12th grade   1.70  5.577428
## 4265             14 years old   Male               9th grade   1.73  5.675853
## 4266             16 years old Female              10th grade   1.57  5.150919
## 4267             16 years old   Male              11th grade     NA        NA
## 4268             15 years old   Male               9th grade   1.68  5.511811
## 4269             17 years old Female              11th grade   1.70  5.577428
## 4270             17 years old Female              11th grade   1.70  5.577428
## 4271    18 years old or older   Male              12th grade   1.83  6.003937
## 4272             15 years old   Male               9th grade   1.70  5.577428
## 4273             16 years old Female              10th grade   1.63  5.347769
## 4274             16 years old   Male              11th grade   1.73  5.675853
## 4275             14 years old   Male               9th grade   1.70  5.577428
## 4276             15 years old Female              10th grade   1.65  5.413386
## 4277             16 years old Female              11th grade   1.65  5.413386
## 4278    18 years old or older   Male              12th grade   1.78  5.839895
## 4279             15 years old   Male               9th grade   1.65  5.413386
## 4280             16 years old Female              10th grade   1.68  5.511811
## 4281             16 years old Female              11th grade   1.65  5.413386
## 4282             17 years old   Male              12th grade   1.75  5.741470
## 4283             14 years old   Male               9th grade   1.83  6.003937
## 4284             15 years old   Male              10th grade   1.83  6.003937
## 4285             16 years old   Male              11th grade   1.83  6.003937
## 4286             17 years old Female              12th grade   1.63  5.347769
## 4287             14 years old Female               9th grade   1.63  5.347769
## 4288             16 years old   Male              10th grade   1.80  5.905512
## 4289             17 years old   Male              11th grade   1.65  5.413386
## 4290    18 years old or older Female              12th grade   1.63  5.347769
## 4291             15 years old Female               9th grade   1.70  5.577428
## 4292             16 years old   Male              10th grade   1.70  5.577428
## 4293             16 years old Female              11th grade     NA        NA
## 4294             17 years old Female              12th grade   1.60  5.249344
## 4295             15 years old   Male               9th grade   1.68  5.511811
## 4296             15 years old Female              10th grade   1.65  5.413386
## 4297             17 years old   Male              11th grade   1.83  6.003937
## 4298    18 years old or older Female              12th grade   1.57  5.150919
## 4299             15 years old   Male               9th grade   1.73  5.675853
## 4300             16 years old Female              10th grade   1.68  5.511811
## 4301    18 years old or older   Male              12th grade   1.78  5.839895
## 4302             15 years old Female              10th grade   1.70  5.577428
## 4303             17 years old   Male              11th grade   1.75  5.741470
## 4304             17 years old Female              12th grade   1.63  5.347769
## 4305             16 years old   Male              10th grade   1.75  5.741470
## 4306    18 years old or older Female              12th grade   1.65  5.413386
## 4307             16 years old Female              10th grade   1.57  5.150919
## 4308    18 years old or older   Male              12th grade   1.85  6.069554
## 4309             14 years old Female               9th grade   1.63  5.347769
## 4310             15 years old Female              10th grade   1.60  5.249344
## 4311             16 years old   Male              11th grade   1.73  5.675853
## 4312    18 years old or older Female              12th grade   1.60  5.249344
## 4313    18 years old or older Female              12th grade   1.55  5.085302
## 4314             15 years old   Male              10th grade   1.68  5.511811
## 4315    18 years old or older   Male              12th grade   1.90  6.233596
## 4316             15 years old Female              10th grade   1.57  5.150919
## 4317    18 years old or older   Male              12th grade   1.75  5.741470
## 4318    18 years old or older Female              12th grade   1.63  5.347769
## 4319             15 years old Female               9th grade   1.57  5.150919
## 4320             16 years old   Male              10th grade   1.68  5.511811
## 4321             17 years old   Male              11th grade   1.70  5.577428
## 4322    18 years old or older Female              12th grade   1.55  5.085302
## 4323             17 years old Female              12th grade   1.55  5.085302
## 4324             14 years old   Male               9th grade   1.70  5.577428
## 4325             15 years old   Male               9th grade   1.80  5.905512
## 4326             14 years old   Male               9th grade   1.78  5.839895
## 4327             15 years old Female               9th grade   1.68  5.511811
## 4328             15 years old Female               9th grade   1.57  5.150919
## 4329    18 years old or older Female              12th grade   1.73  5.675853
## 4330    18 years old or older   Male              12th grade   1.85  6.069554
## 4331             16 years old   Male              10th grade   1.70  5.577428
## 4332             15 years old   Male               9th grade   1.73  5.675853
## 4333             15 years old   Male              10th grade   1.83  6.003937
## 4334    18 years old or older Female              12th grade   1.60  5.249344
## 4335             15 years old   Male               9th grade   1.85  6.069554
## 4336             15 years old Female              10th grade   1.65  5.413386
## 4337    18 years old or older Female              12th grade   1.55  5.085302
## 4338    18 years old or older Female              12th grade   1.57  5.150919
## 4339             14 years old Female               9th grade   1.70  5.577428
## 4340             16 years old Female               9th grade   1.68  5.511811
## 4341    18 years old or older   Male              12th grade   1.80  5.905512
## 4342             15 years old Female               9th grade   1.70  5.577428
## 4343             15 years old Female               9th grade   1.68  5.511811
## 4344             17 years old Female              12th grade   1.70  5.577428
## 4345    18 years old or older   Male              12th grade   1.88  6.167979
## 4346             14 years old Female               9th grade   1.70  5.577428
## 4347             15 years old Female               9th grade   1.60  5.249344
## 4348             15 years old Female               9th grade     NA        NA
## 4349             17 years old Female              10th grade   1.57  5.150919
## 4350             17 years old   Male              12th grade   1.93  6.332021
## 4351             17 years old   Male              12th grade   1.83  6.003937
## 4352             15 years old   Male               9th grade   1.70  5.577428
## 4353             16 years old Female              10th grade   1.65  5.413386
## 4354    18 years old or older   Male              12th grade   1.90  6.233596
## 4355             14 years old   Male               9th grade   1.78  5.839895
## 4356             15 years old   <NA>               9th grade     NA        NA
## 4357             16 years old Female               9th grade     NA        NA
## 4358             15 years old Female               9th grade   1.78  5.839895
## 4359             16 years old   Male               9th grade   1.78  5.839895
## 4360             15 years old   Male               9th grade   1.68  5.511811
## 4361             15 years old Female              10th grade   1.57  5.150919
## 4362    18 years old or older   Male              12th grade   1.80  5.905512
## 4363             15 years old Female               9th grade   1.55  5.085302
## 4364             15 years old Female               9th grade   1.57  5.150919
## 4365    18 years old or older Female              12th grade   1.65  5.413386
## 4366    18 years old or older   Male              12th grade   1.75  5.741470
## 4367             15 years old   Male              10th grade   1.78  5.839895
## 4368             14 years old Female               9th grade   1.83  6.003937
## 4369             14 years old Female               9th grade   1.50  4.921260
## 4370             14 years old Female               9th grade   1.63  5.347769
## 4371             16 years old Female              10th grade   1.55  5.085302
## 4372    18 years old or older   Male              12th grade   1.73  5.675853
## 4373             17 years old Female              12th grade   1.60  5.249344
## 4374             15 years old   Male               9th grade   1.83  6.003937
## 4375             15 years old   Male                    <NA>   1.75  5.741470
## 4376             15 years old   Male               9th grade   1.85  6.069554
## 4377             15 years old   Male              10th grade   1.93  6.332021
## 4378    18 years old or older   Male              12th grade   1.78  5.839895
## 4379    18 years old or older   Male              12th grade   1.73  5.675853
## 4380             15 years old Female               9th grade     NA        NA
## 4381             14 years old Female               9th grade   1.70  5.577428
## 4382    18 years old or older Female              12th grade   1.60  5.249344
## 4383    18 years old or older   Male              12th grade   1.96  6.430446
## 4384             15 years old Female               9th grade   1.52  4.986877
## 4385    18 years old or older   Male              12th grade   1.85  6.069554
## 4386             15 years old   Male               9th grade     NA        NA
## 4387             15 years old Female               9th grade   1.65  5.413386
## 4388             16 years old   Male              10th grade   1.93  6.332021
## 4389    18 years old or older   Male              12th grade   1.83  6.003937
## 4390             17 years old   Male              12th grade   1.70  5.577428
## 4391             16 years old Female               9th grade     NA        NA
## 4392             15 years old Female               9th grade   1.50  4.921260
## 4393             15 years old   Male              10th grade   1.57  5.150919
## 4394    18 years old or older   Male              12th grade     NA        NA
## 4395             15 years old   Male               9th grade   1.83  6.003937
## 4396             15 years old Female               9th grade   1.65  5.413386
## 4397             16 years old Female              10th grade   1.70  5.577428
## 4398             17 years old   Male              11th grade   1.73  5.675853
## 4399             17 years old Female              11th grade   1.68  5.511811
## 4400             16 years old Female              10th grade   1.65  5.413386
## 4401             16 years old   Male              10th grade   1.88  6.167979
## 4402             16 years old Female              11th grade   1.63  5.347769
## 4403             15 years old Female              10th grade   1.57  5.150919
## 4404             16 years old Female              10th grade   1.60  5.249344
## 4405    18 years old or older   Male              12th grade   1.90  6.233596
## 4406    18 years old or older   Male              12th grade   1.88  6.167979
## 4407             15 years old   Male              10th grade   1.80  5.905512
## 4408             16 years old Female              10th grade   1.70  5.577428
## 4409             16 years old   Male              11th grade   1.83  6.003937
## 4410             16 years old Female              10th grade   1.68  5.511811
## 4411             15 years old Female              10th grade     NA        NA
## 4412             17 years old   Male              11th grade   1.80  5.905512
## 4413             17 years old   Male              11th grade   1.63  5.347769
## 4414             16 years old   Male              10th grade   1.70  5.577428
## 4415             17 years old   Male              10th grade   1.90  6.233596
## 4416             15 years old   Male              10th grade   1.83  6.003937
## 4417             17 years old Female              11th grade   1.73  5.675853
## 4418             17 years old   Male              11th grade   1.80  5.905512
## 4419             16 years old Female              10th grade   1.55  5.085302
## 4420             17 years old   Male              11th grade   1.96  6.430446
## 4421             16 years old Female              11th grade   1.60  5.249344
## 4422             16 years old Female              11th grade     NA        NA
## 4423             17 years old   Male              10th grade   1.68  5.511811
## 4424             16 years old   Male              11th grade   1.96  6.430446
## 4425             15 years old Female              10th grade   1.70  5.577428
## 4426             16 years old   Male              11th grade   1.75  5.741470
## 4427    18 years old or older Female              11th grade   1.55  5.085302
## 4428             15 years old   Male              10th grade   1.80  5.905512
## 4429             16 years old   Male              10th grade   1.83  6.003937
## 4430             17 years old Female              11th grade   1.57  5.150919
## 4431             17 years old   Male              12th grade   1.73  5.675853
## 4432             16 years old   Male              10th grade   1.73  5.675853
## 4433             16 years old Female              10th grade   1.65  5.413386
## 4434             16 years old Female              11th grade   1.60  5.249344
## 4435             17 years old   Male              11th grade   1.78  5.839895
## 4436             15 years old Female              10th grade   1.65  5.413386
## 4437             16 years old   Male              10th grade   1.73  5.675853
## 4438             17 years old Female              11th grade   1.68  5.511811
## 4439             17 years old Female              12th grade   1.57  5.150919
## 4440             15 years old   Male              10th grade   1.83  6.003937
## 4441             16 years old Female              10th grade   1.57  5.150919
## 4442             17 years old Female              11th grade   1.65  5.413386
## 4443             17 years old   Male              11th grade   1.68  5.511811
## 4444             15 years old Female              10th grade   1.57  5.150919
## 4445             14 years old Female               9th grade   1.60  5.249344
## 4446             15 years old Female              10th grade   1.57  5.150919
## 4447             17 years old   Male              11th grade   1.85  6.069554
## 4448    18 years old or older   Male              12th grade   1.80  5.905512
## 4449             16 years old Female              11th grade     NA        NA
## 4450             16 years old Female              10th grade   1.68  5.511811
## 4451             17 years old   Male              11th grade   1.75  5.741470
## 4452             15 years old   Male              10th grade   1.80  5.905512
## 4453             16 years old Female              10th grade   1.68  5.511811
## 4454             17 years old   Male              12th grade   1.83  6.003937
## 4455    18 years old or older Female              12th grade   1.73  5.675853
## 4456    18 years old or older   Male              12th grade   1.83  6.003937
## 4457    18 years old or older Female              12th grade   1.57  5.150919
## 4458    18 years old or older   Male              12th grade   1.83  6.003937
## 4459    18 years old or older   Male              12th grade   1.85  6.069554
## 4460             15 years old   Male              10th grade   1.63  5.347769
## 4461             17 years old   Male              11th grade   1.70  5.577428
## 4462             17 years old   Male              11th grade   1.83  6.003937
## 4463             15 years old   Male              10th grade     NA        NA
## 4464             15 years old   Male              10th grade   1.70  5.577428
## 4465             17 years old Female              11th grade   1.65  5.413386
## 4466             17 years old   Male              12th grade   1.78  5.839895
## 4467             16 years old Female              10th grade     NA        NA
## 4468             15 years old   Male              10th grade   1.83  6.003937
## 4469             15 years old Female              10th grade   1.57  5.150919
## 4470             16 years old Female              11th grade   1.63  5.347769
## 4471             16 years old Female              10th grade   1.65  5.413386
## 4472             15 years old Female              10th grade   1.65  5.413386
## 4473             16 years old   Male              10th grade   1.80  5.905512
## 4474             17 years old   Male              11th grade   1.83  6.003937
## 4475             15 years old   Male              10th grade   1.83  6.003937
## 4476             14 years old Female               9th grade   1.57  5.150919
## 4477    18 years old or older Female              12th grade   1.68  5.511811
## 4478    18 years old or older Female              12th grade     NA        NA
## 4479             15 years old Female               9th grade   1.63  5.347769
## 4480             16 years old Female              10th grade   1.60  5.249344
## 4481             16 years old Female              10th grade   1.68  5.511811
## 4482             16 years old Female              10th grade     NA        NA
## 4483             16 years old Female              10th grade   1.75  5.741470
## 4484             15 years old Female               9th grade   1.57  5.150919
## 4485             16 years old Female              11th grade   1.60  5.249344
## 4486             14 years old   Male               9th grade   1.78  5.839895
## 4487             15 years old   Male               9th grade   1.73  5.675853
## 4488    18 years old or older Female              12th grade   1.70  5.577428
## 4489    18 years old or older Female              12th grade   1.75  5.741470
## 4490    18 years old or older   Male              12th grade   1.78  5.839895
## 4491             15 years old Female              10th grade   1.60  5.249344
## 4492             16 years old Female              10th grade   1.63  5.347769
## 4493             14 years old Female               9th grade   1.63  5.347769
## 4494             15 years old   Male              10th grade   1.83  6.003937
## 4495             17 years old Female              12th grade   1.65  5.413386
## 4496             16 years old Female              10th grade   1.63  5.347769
## 4497             15 years old Female              10th grade   1.70  5.577428
## 4498    18 years old or older   Male              12th grade   1.83  6.003937
## 4499             15 years old Female               9th grade   1.63  5.347769
## 4500    18 years old or older Female              12th grade   1.63  5.347769
## 4501             15 years old Female              10th grade   1.63  5.347769
## 4502             17 years old   Male              11th grade   1.78  5.839895
## 4503             16 years old   Male              11th grade   1.88  6.167979
## 4504             15 years old   Male              10th grade   1.75  5.741470
## 4505             17 years old   Male              11th grade   1.83  6.003937
## 4506             14 years old   Male               9th grade   1.70  5.577428
## 4507             15 years old   Male              10th grade   1.68  5.511811
## 4508             16 years old   Male              11th grade   1.68  5.511811
## 4509             17 years old   Male              11th grade   1.80  5.905512
## 4510             15 years old   Male               9th grade   1.75  5.741470
## 4511             14 years old Female               9th grade   1.63  5.347769
## 4512             15 years old Female               9th grade   1.65  5.413386
## 4513             14 years old Female               9th grade   1.73  5.675853
## 4514             16 years old Female              11th grade   1.78  5.839895
## 4515             15 years old Female               9th grade   1.60  5.249344
## 4516             17 years old Female              11th grade   1.73  5.675853
## 4517             15 years old Female              10th grade   1.60  5.249344
## 4518             17 years old   Male              12th grade   1.90  6.233596
## 4519             16 years old Female              10th grade   1.63  5.347769
## 4520             17 years old   Male              12th grade   1.75  5.741470
## 4521             16 years old Female              11th grade   1.57  5.150919
## 4522             16 years old Female              10th grade   1.65  5.413386
## 4523             17 years old Female              11th grade   1.65  5.413386
## 4524             15 years old Female               9th grade   1.63  5.347769
## 4525             17 years old   Male              11th grade   1.75  5.741470
## 4526             15 years old Female              10th grade   1.52  4.986877
## 4527             16 years old   Male              11th grade   1.83  6.003937
## 4528             17 years old Female              11th grade   1.83  6.003937
## 4529             16 years old Female              10th grade   1.57  5.150919
## 4530             17 years old   Male              11th grade   1.80  5.905512
## 4531             17 years old Female              11th grade   1.65  5.413386
## 4532             16 years old   Male              10th grade   1.83  6.003937
## 4533             17 years old   Male              11th grade   1.78  5.839895
## 4534             17 years old   Male              11th grade   1.68  5.511811
## 4535             16 years old Female              10th grade   1.80  5.905512
## 4536             15 years old   Male               9th grade   1.83  6.003937
## 4537             17 years old Female              11th grade   1.70  5.577428
## 4538             15 years old Female              10th grade   1.70  5.577428
## 4539             15 years old Female              10th grade   1.65  5.413386
## 4540             15 years old Female               9th grade   1.68  5.511811
## 4541             17 years old Female              11th grade   1.63  5.347769
## 4542             15 years old Female              10th grade   1.75  5.741470
## 4543             15 years old Female               9th grade   1.65  5.413386
## 4544             17 years old Female              11th grade   1.60  5.249344
## 4545             15 years old   Male              10th grade   1.73  5.675853
## 4546             17 years old Female              12th grade   1.80  5.905512
## 4547             17 years old   Male              11th grade   1.85  6.069554
## 4548             16 years old   Male              10th grade   1.88  6.167979
## 4549             17 years old   Male              12th grade   1.83  6.003937
## 4550             16 years old   Male              10th grade   1.85  6.069554
## 4551             16 years old Female              11th grade   1.57  5.150919
## 4552             16 years old Female              11th grade   1.68  5.511811
## 4553             15 years old Female              10th grade   1.65  5.413386
## 4554             16 years old Female              10th grade   1.63  5.347769
## 4555             17 years old   Male              11th grade   1.78  5.839895
## 4556             17 years old   Male              11th grade   1.68  5.511811
## 4557             14 years old   Male               9th grade   1.73  5.675853
## 4558             15 years old Female               9th grade   1.60  5.249344
## 4559             17 years old   Male              12th grade   1.88  6.167979
## 4560             15 years old   Male              10th grade   1.80  5.905512
## 4561             16 years old   Male              11th grade   1.80  5.905512
## 4562             14 years old   Male               9th grade   1.75  5.741470
## 4563             16 years old   Male              10th grade   1.70  5.577428
## 4564    18 years old or older   Male              12th grade   1.78  5.839895
## 4565             15 years old Female               9th grade   1.60  5.249344
## 4566             17 years old Female              11th grade   1.80  5.905512
## 4567             15 years old Female              10th grade   1.63  5.347769
## 4568    18 years old or older Female              12th grade   1.60  5.249344
## 4569             17 years old   Male              11th grade   1.75  5.741470
## 4570             16 years old Female              11th grade   1.63  5.347769
## 4571             17 years old Female              11th grade   1.68  5.511811
## 4572             16 years old Female              11th grade   1.65  5.413386
## 4573    18 years old or older Female              11th grade   1.70  5.577428
## 4574             16 years old Female              11th grade   1.73  5.675853
## 4575             16 years old Female              11th grade   1.63  5.347769
## 4576             17 years old Female              11th grade   1.75  5.741470
## 4577             16 years old Female              11th grade   1.65  5.413386
## 4578             16 years old Female              11th grade   1.68  5.511811
## 4579             17 years old Female              11th grade   1.60  5.249344
## 4580    18 years old or older Female              12th grade   1.63  5.347769
## 4581    18 years old or older   Male              12th grade   1.68  5.511811
## 4582    18 years old or older Female              12th grade   1.78  5.839895
## 4583             17 years old Female              12th grade   1.57  5.150919
## 4584             17 years old Female              12th grade   1.75  5.741470
## 4585             17 years old Female              11th grade   1.63  5.347769
## 4586             17 years old Female              11th grade   1.68  5.511811
## 4587             17 years old Female              11th grade   1.60  5.249344
## 4588             17 years old Female              12th grade   1.68  5.511811
## 4589    18 years old or older   <NA>              12th grade     NA        NA
## 4590             17 years old   Male              12th grade   1.90  6.233596
## 4591             17 years old Female              12th grade   1.63  5.347769
## 4592    18 years old or older Female              12th grade   1.70  5.577428
## 4593             17 years old   <NA>              11th grade     NA        NA
## 4594    18 years old or older Female              12th grade   1.60  5.249344
## 4595             17 years old Female              12th grade   1.63  5.347769
## 4596    18 years old or older Female              12th grade   1.65  5.413386
## 4597             17 years old   Male              12th grade   1.73  5.675853
## 4598             17 years old Female              12th grade   1.68  5.511811
## 4599             15 years old   Male              10th grade   1.83  6.003937
## 4600             15 years old Female              10th grade   1.65  5.413386
## 4601             16 years old   Male              10th grade   1.65  5.413386
## 4602             16 years old Female              10th grade   1.57  5.150919
## 4603             17 years old Female              10th grade   1.70  5.577428
## 4604             17 years old Female              10th grade   1.70  5.577428
## 4605             17 years old Female              11th grade   1.75  5.741470
## 4606             16 years old   Male              10th grade     NA        NA
## 4607             16 years old Female              10th grade   1.68  5.511811
## 4608             15 years old   Male              10th grade   1.83  6.003937
## 4609             16 years old   Male              10th grade   1.85  6.069554
## 4610             15 years old Female               9th grade   1.63  5.347769
## 4611             14 years old Female               9th grade   1.68  5.511811
## 4612             15 years old Female               9th grade   1.63  5.347769
## 4613             14 years old Female               9th grade   1.55  5.085302
## 4614             15 years old   Male               9th grade   1.63  5.347769
## 4615             15 years old Female               9th grade   1.60  5.249344
## 4616             14 years old Female               9th grade   1.57  5.150919
## 4617             16 years old   Male              10th grade   1.73  5.675853
## 4618             16 years old Female              10th grade   1.63  5.347769
## 4619             16 years old Female               9th grade   1.45  4.757218
## 4620             16 years old   Male              10th grade   1.73  5.675853
## 4621             17 years old   Male              10th grade   1.80  5.905512
## 4622             14 years old   Male               9th grade   1.70  5.577428
## 4623             16 years old   Male              10th grade   1.70  5.577428
## 4624             15 years old   Male               9th grade   1.80  5.905512
## 4625             16 years old   Male              10th grade   1.78  5.839895
## 4626             14 years old Female               9th grade   1.55  5.085302
## 4627             16 years old   Male              10th grade   1.73  5.675853
## 4628             16 years old   Male              10th grade     NA        NA
## 4629             15 years old Female               9th grade   1.65  5.413386
## 4630             16 years old Female              11th grade     NA        NA
## 4631             17 years old Female              12th grade   1.68  5.511811
## 4632             15 years old   Male              10th grade   1.78  5.839895
## 4633             16 years old   Male              10th grade   1.85  6.069554
## 4634             15 years old   Male               9th grade   1.83  6.003937
## 4635             17 years old   Male              12th grade   1.73  5.675853
## 4636             14 years old   Male               9th grade   1.63  5.347769
## 4637             15 years old   Male              10th grade   2.01  6.594488
## 4638             14 years old Female               9th grade   1.60  5.249344
## 4639             16 years old   Male              11th grade   1.83  6.003937
## 4640             17 years old Female              11th grade   1.65  5.413386
## 4641             17 years old   Male              11th grade   1.70  5.577428
## 4642             17 years old   Male              12th grade   1.93  6.332021
## 4643             16 years old   Male              10th grade   1.78  5.839895
## 4644             15 years old   Male              10th grade   1.73  5.675853
## 4645             14 years old   Male               9th grade   1.88  6.167979
## 4646             16 years old Female              10th grade   1.63  5.347769
## 4647             16 years old Female               9th grade   1.57  5.150919
## 4648             16 years old   Male              10th grade   1.80  5.905512
## 4649             16 years old Female              10th grade     NA        NA
## 4650             16 years old   Male              10th grade   1.73  5.675853
## 4651             16 years old Female              10th grade   1.57  5.150919
## 4652             15 years old Female               9th grade   1.55  5.085302
## 4653             15 years old   Male              10th grade   1.98  6.496063
## 4654             16 years old Female               9th grade   1.65  5.413386
## 4655             14 years old   Male               9th grade   1.78  5.839895
## 4656             16 years old   Male              10th grade   1.85  6.069554
## 4657             15 years old   Male               9th grade   1.78  5.839895
## 4658             15 years old   Male              10th grade   1.73  5.675853
## 4659             14 years old Female               9th grade   1.70  5.577428
## 4660             17 years old   Male              10th grade   1.80  5.905512
## 4661             14 years old   Male               9th grade   1.65  5.413386
## 4662             16 years old Female              11th grade   1.52  4.986877
## 4663    18 years old or older   Male              12th grade   1.78  5.839895
## 4664             16 years old   Male              11th grade   1.80  5.905512
## 4665    18 years old or older Female              12th grade   1.70  5.577428
## 4666    18 years old or older Female              12th grade     NA        NA
## 4667             17 years old Female              11th grade   1.55  5.085302
## 4668             17 years old   Male              11th grade   1.78  5.839895
## 4669    18 years old or older Female              12th grade   1.63  5.347769
## 4670             17 years old Female              11th grade   1.68  5.511811
## 4671    18 years old or older   Male              12th grade   1.63  5.347769
## 4672    18 years old or older Female              12th grade   1.73  5.675853
## 4673    18 years old or older Female              12th grade   1.57  5.150919
## 4674             17 years old   Male              11th grade   1.83  6.003937
## 4675             17 years old Female              12th grade   1.70  5.577428
## 4676             17 years old   Male              12th grade   1.85  6.069554
## 4677             16 years old Female              11th grade     NA        NA
## 4678    18 years old or older   Male              12th grade   1.63  5.347769
## 4679             16 years old Female              11th grade   1.73  5.675853
## 4680             16 years old   Male              12th grade   1.83  6.003937
## 4681             16 years old   Male              11th grade   1.80  5.905512
## 4682    18 years old or older Female              12th grade   1.63  5.347769
## 4683             17 years old   Male              11th grade   1.83  6.003937
## 4684    18 years old or older Female              12th grade   1.55  5.085302
## 4685    18 years old or older   Male              12th grade   1.88  6.167979
## 4686             16 years old   Male              11th grade   1.75  5.741470
## 4687    18 years old or older Female              12th grade   1.63  5.347769
## 4688             17 years old   Male              11th grade   1.68  5.511811
## 4689    18 years old or older Female              12th grade   1.73  5.675853
## 4690    18 years old or older   Male              11th grade   1.88  6.167979
## 4691             17 years old   Male              12th grade   1.85  6.069554
## 4692             17 years old   Male              11th grade   1.70  5.577428
## 4693    18 years old or older Female              12th grade   1.60  5.249344
## 4694    18 years old or older Female              11th grade   1.57  5.150919
## 4695             17 years old   Male              11th grade   1.90  6.233596
## 4696             17 years old   Male              12th grade   1.75  5.741470
## 4697    18 years old or older   Male              12th grade   1.83  6.003937
## 4698             17 years old   Male              11th grade   1.75  5.741470
## 4699             17 years old   Male              11th grade   1.73  5.675853
## 4700    18 years old or older Female              12th grade   1.68  5.511811
## 4701    18 years old or older   Male              12th grade   1.73  5.675853
## 4702             16 years old   Male              11th grade   1.73  5.675853
## 4703             17 years old   Male              11th grade   1.70  5.577428
## 4704    18 years old or older   Male              12th grade   1.90  6.233596
## 4705             16 years old   Male              11th grade   1.78  5.839895
## 4706             16 years old Female              11th grade   1.63  5.347769
## 4707    18 years old or older Female              12th grade   1.68  5.511811
## 4708             16 years old   Male              11th grade   1.70  5.577428
## 4709             16 years old Female              11th grade   1.63  5.347769
## 4710    18 years old or older   Male              12th grade   1.80  5.905512
## 4711             17 years old   Male              12th grade   1.78  5.839895
## 4712             16 years old   Male              11th grade   1.80  5.905512
## 4713             17 years old   Male              11th grade   1.78  5.839895
## 4714             17 years old Female              12th grade   1.68  5.511811
## 4715             16 years old   Male              11th grade   1.68  5.511811
## 4716             17 years old   Male              12th grade   1.90  6.233596
## 4717             17 years old Female              11th grade   1.68  5.511811
## 4718             17 years old   Male              11th grade   1.65  5.413386
## 4719             17 years old Female              12th grade   1.60  5.249344
## 4720             16 years old Female              11th grade   1.63  5.347769
## 4721             16 years old   Male              11th grade   1.68  5.511811
## 4722             16 years old   Male              10th grade     NA        NA
## 4723             16 years old Female              10th grade   1.65  5.413386
## 4724             15 years old Female              10th grade   1.73  5.675853
## 4725             15 years old   Male              10th grade   1.68  5.511811
## 4726             16 years old   Male              10th grade   1.68  5.511811
## 4727             15 years old Female              10th grade   1.57  5.150919
## 4728             15 years old   Male              10th grade     NA        NA
## 4729             16 years old Female              10th grade     NA        NA
## 4730             16 years old   Male              10th grade   1.63  5.347769
## 4731             15 years old   Male              10th grade   1.85  6.069554
## 4732             15 years old   Male              10th grade   1.65  5.413386
## 4733             15 years old Female              10th grade   1.63  5.347769
## 4734             15 years old   Male              10th grade   1.68  5.511811
## 4735             15 years old   Male              10th grade   1.80  5.905512
## 4736             15 years old Female              10th grade   1.60  5.249344
## 4737             16 years old Female              10th grade   1.57  5.150919
## 4738             15 years old   Male              10th grade   1.78  5.839895
## 4739             15 years old   Male              10th grade   1.70  5.577428
## 4740             16 years old Female              10th grade   1.70  5.577428
## 4741             17 years old   Male              11th grade   1.80  5.905512
## 4742             15 years old Female              10th grade   1.68  5.511811
## 4743             16 years old Female              10th grade   1.60  5.249344
## 4744             17 years old Female              11th grade   1.57  5.150919
## 4745             17 years old   Male              11th grade   1.80  5.905512
## 4746             16 years old Female              10th grade   1.57  5.150919
## 4747             16 years old   Male              10th grade   1.83  6.003937
## 4748             16 years old Female              11th grade   1.60  5.249344
## 4749             16 years old   Male              10th grade   1.96  6.430446
## 4750             16 years old Female              10th grade   1.70  5.577428
## 4751             15 years old Female              10th grade   1.70  5.577428
## 4752             15 years old Female              10th grade     NA        NA
## 4753             16 years old Female              10th grade   1.70  5.577428
## 4754             15 years old Female              10th grade   1.60  5.249344
## 4755             16 years old Female              11th grade   1.57  5.150919
## 4756             16 years old Female              11th grade   1.68  5.511811
## 4757             15 years old   Male              10th grade   1.73  5.675853
## 4758             15 years old Female              10th grade   1.60  5.249344
## 4759             16 years old   Male              11th grade     NA        NA
## 4760             16 years old   Male              11th grade   1.88  6.167979
## 4761             16 years old Female              10th grade   1.65  5.413386
## 4762             15 years old Female              10th grade   1.60  5.249344
## 4763             16 years old Female              11th grade   1.65  5.413386
## 4764             16 years old Female              10th grade   1.60  5.249344
## 4765             16 years old   Male              11th grade   1.85  6.069554
## 4766             16 years old Female              11th grade   1.55  5.085302
## 4767             16 years old   Male              10th grade     NA        NA
## 4768             16 years old Female              11th grade   1.73  5.675853
## 4769             16 years old   Male              11th grade   1.78  5.839895
## 4770             16 years old   Male              10th grade   1.90  6.233596
## 4771             15 years old Female              10th grade   1.57  5.150919
## 4772             16 years old   Male              10th grade   1.68  5.511811
## 4773    18 years old or older   Male              12th grade     NA        NA
## 4774             16 years old   Male              10th grade   1.83  6.003937
## 4775             16 years old Female              10th grade   1.65  5.413386
## 4776             17 years old Female              12th grade   1.60  5.249344
## 4777             16 years old   Male              11th grade   1.80  5.905512
## 4778             15 years old Female              10th grade   1.68  5.511811
## 4779             15 years old   Male              10th grade   1.75  5.741470
## 4780             17 years old Female              11th grade   1.60  5.249344
## 4781             17 years old   Male                    <NA>   1.88  6.167979
## 4782             15 years old Female              10th grade   1.60  5.249344
## 4783             16 years old   Male              11th grade   1.83  6.003937
## 4784             16 years old   Male              11th grade   1.83  6.003937
## 4785             16 years old Female              10th grade   1.60  5.249344
## 4786             15 years old Female              10th grade   1.68  5.511811
## 4787             16 years old   Male              11th grade   1.78  5.839895
## 4788             16 years old Female              10th grade   1.50  4.921260
## 4789             16 years old Female              10th grade   1.65  5.413386
## 4790             16 years old Female              11th grade   1.60  5.249344
## 4791             16 years old   Male              10th grade   1.78  5.839895
## 4792             15 years old Female              10th grade   1.70  5.577428
## 4793             17 years old   Male              11th grade   1.80  5.905512
## 4794             16 years old Female              11th grade   1.73  5.675853
## 4795             15 years old   Male              10th grade   1.70  5.577428
## 4796             16 years old Female              10th grade     NA        NA
## 4797             16 years old Female              11th grade   1.68  5.511811
## 4798             17 years old Female              11th grade   1.65  5.413386
## 4799             16 years old Female              10th grade   1.68  5.511811
## 4800             16 years old Female              10th grade   1.52  4.986877
## 4801             17 years old Female              11th grade   1.63  5.347769
## 4802             17 years old   Male              11th grade   1.83  6.003937
## 4803             16 years old   Male              10th grade   1.80  5.905512
## 4804             14 years old   Male               9th grade   1.78  5.839895
## 4805             14 years old Female               9th grade   1.63  5.347769
## 4806             15 years old   Male               9th grade   1.80  5.905512
## 4807             17 years old   Male              12th grade   1.83  6.003937
## 4808             17 years old Female              12th grade   1.60  5.249344
## 4809    18 years old or older   Male              12th grade   1.68  5.511811
## 4810             17 years old   Male              12th grade   1.85  6.069554
## 4811             15 years old Female               9th grade   1.63  5.347769
## 4812             15 years old   Male              10th grade   1.73  5.675853
## 4813    18 years old or older   Male              12th grade   1.85  6.069554
## 4814             14 years old   Male               9th grade   1.63  5.347769
## 4815             15 years old   Male               9th grade   1.73  5.675853
## 4816             17 years old   Male              12th grade   1.88  6.167979
## 4817    18 years old or older   Male              12th grade   1.65  5.413386
## 4818             14 years old Female               9th grade   1.65  5.413386
## 4819             15 years old   Male               9th grade   1.78  5.839895
## 4820             17 years old   Male              12th grade   1.83  6.003937
## 4821    18 years old or older   Male              12th grade   1.85  6.069554
## 4822             15 years old   Male               9th grade   1.78  5.839895
## 4823             15 years old   Male               9th grade   1.78  5.839895
## 4824             14 years old   Male               9th grade   1.73  5.675853
## 4825             14 years old   Male               9th grade   1.73  5.675853
## 4826             16 years old   Male               9th grade   1.73  5.675853
## 4827    18 years old or older Female              12th grade   1.52  4.986877
## 4828             17 years old   Male              12th grade   1.83  6.003937
## 4829             15 years old   Male               9th grade   1.80  5.905512
## 4830             14 years old   Male               9th grade   1.70  5.577428
## 4831    18 years old or older   Male              12th grade   1.70  5.577428
## 4832             15 years old   Male               9th grade   1.65  5.413386
## 4833             17 years old Female              12th grade   1.60  5.249344
## 4834    18 years old or older   Male              12th grade   1.55  5.085302
## 4835             14 years old   Male               9th grade   1.70  5.577428
## 4836             14 years old Female               9th grade   1.57  5.150919
## 4837             17 years old Female              12th grade   1.68  5.511811
## 4838             15 years old   Male               9th grade   1.78  5.839895
## 4839             17 years old   Male              12th grade   1.85  6.069554
## 4840             14 years old   Male               9th grade   1.78  5.839895
## 4841    18 years old or older   Male              12th grade   1.70  5.577428
## 4842    18 years old or older Female              12th grade   1.65  5.413386
## 4843    18 years old or older   Male              12th grade   1.85  6.069554
## 4844             14 years old   Male               9th grade   1.88  6.167979
## 4845             14 years old   Male               9th grade   1.83  6.003937
## 4846    18 years old or older   Male              12th grade   1.70  5.577428
## 4847             17 years old Female              12th grade   1.73  5.675853
## 4848             14 years old Female               9th grade   1.57  5.150919
## 4849    18 years old or older   Male              12th grade   1.78  5.839895
## 4850             17 years old   Male              12th grade   1.80  5.905512
## 4851             17 years old   Male              12th grade   1.78  5.839895
## 4852             15 years old Female               9th grade   1.75  5.741470
## 4853             17 years old   Male              12th grade   1.93  6.332021
## 4854    18 years old or older Female              12th grade   1.68  5.511811
## 4855             17 years old   Male              12th grade   1.75  5.741470
## 4856             14 years old   Male               9th grade     NA        NA
## 4857    18 years old or older   Male              12th grade   1.83  6.003937
## 4858    18 years old or older   Male              12th grade   1.90  6.233596
## 4859             17 years old Female              11th grade   1.70  5.577428
## 4860             16 years old Female              11th grade   1.57  5.150919
## 4861             16 years old Female              11th grade     NA        NA
## 4862             16 years old Female              11th grade     NA        NA
## 4863             16 years old Female              11th grade   1.60  5.249344
## 4864             15 years old   Male               9th grade   1.80  5.905512
## 4865    18 years old or older   Male              12th grade   1.88  6.167979
## 4866    18 years old or older   Male              12th grade   1.85  6.069554
## 4867             14 years old Female               9th grade   1.57  5.150919
## 4868             17 years old Female              11th grade   1.63  5.347769
## 4869             15 years old   Male               9th grade   1.65  5.413386
## 4870             17 years old Female              12th grade   1.52  4.986877
## 4871    18 years old or older Female              12th grade   1.52  4.986877
## 4872             15 years old   Male               9th grade   1.68  5.511811
## 4873             17 years old Female              12th grade   1.80  5.905512
## 4874             17 years old   Male              11th grade   1.78  5.839895
## 4875             16 years old   Male              11th grade   1.83  6.003937
## 4876             14 years old Female               9th grade   1.63  5.347769
## 4877    18 years old or older   Male              12th grade   1.83  6.003937
## 4878             17 years old   Male              12th grade   1.80  5.905512
## 4879    18 years old or older Female              12th grade   1.52  4.986877
## 4880             16 years old Female              11th grade   1.63  5.347769
## 4881             15 years old Female              10th grade   1.63  5.347769
## 4882             14 years old Female               9th grade   1.65  5.413386
## 4883             15 years old Female              10th grade     NA        NA
## 4884             15 years old   Male              10th grade   1.90  6.233596
## 4885             14 years old   Male               9th grade   1.55  5.085302
## 4886             15 years old Female              10th grade   1.63  5.347769
## 4887             16 years old   Male              10th grade   1.65  5.413386
## 4888             14 years old Female               9th grade   1.75  5.741470
## 4889             14 years old Female               9th grade     NA        NA
## 4890             15 years old   Male               9th grade   1.78  5.839895
## 4891             16 years old   Male              10th grade   1.65  5.413386
## 4892             16 years old   Male              10th grade   1.85  6.069554
## 4893             15 years old   Male               9th grade   1.85  6.069554
## 4894             16 years old   Male              10th grade   1.85  6.069554
## 4895             16 years old   Male              10th grade   1.80  5.905512
## 4896             14 years old Female               9th grade     NA        NA
## 4897             15 years old Female              10th grade   1.73  5.675853
## 4898             15 years old   Male              10th grade   1.73  5.675853
## 4899             15 years old   Male               9th grade   1.75  5.741470
## 4900             15 years old   Male               9th grade   1.90  6.233596
## 4901             15 years old Female               9th grade   1.75  5.741470
## 4902             17 years old   Male              10th grade   1.80  5.905512
## 4903             16 years old   Male              10th grade   1.78  5.839895
## 4904             14 years old   Male               9th grade   1.70  5.577428
## 4905             15 years old Female               9th grade   1.60  5.249344
## 4906             14 years old Female               9th grade   1.68  5.511811
## 4907             14 years old Female               9th grade   1.63  5.347769
## 4908             16 years old   Male              10th grade   1.68  5.511811
## 4909             14 years old Female               9th grade   1.70  5.577428
## 4910             15 years old Female               9th grade   1.63  5.347769
## 4911             15 years old Female               9th grade   1.60  5.249344
## 4912             16 years old   Male              10th grade   1.78  5.839895
## 4913             15 years old Female               9th grade   1.65  5.413386
## 4914             15 years old   Male              10th grade   1.75  5.741470
## 4915             15 years old   Male              10th grade   1.78  5.839895
## 4916             14 years old   Male               9th grade   1.73  5.675853
## 4917             15 years old   Male               9th grade   1.83  6.003937
## 4918             16 years old   Male              10th grade   1.78  5.839895
## 4919             15 years old Female               9th grade   1.63  5.347769
## 4920             14 years old Female               9th grade   1.70  5.577428
## 4921             15 years old   Male              10th grade   1.75  5.741470
## 4922             16 years old   Male              10th grade   1.68  5.511811
## 4923             15 years old   Male               9th grade   1.83  6.003937
## 4924             16 years old   Male              10th grade   1.88  6.167979
## 4925             15 years old Female              10th grade   1.52  4.986877
## 4926             14 years old Female               9th grade   1.57  5.150919
## 4927             15 years old Female               9th grade   1.75  5.741470
## 4928             14 years old   Male               9th grade   1.78  5.839895
## 4929             15 years old Female              10th grade   1.65  5.413386
## 4930             16 years old   Male              10th grade   1.78  5.839895
## 4931             15 years old   Male               9th grade   1.75  5.741470
## 4932             14 years old   Male               9th grade   1.73  5.675853
## 4933             15 years old   Male              10th grade   1.78  5.839895
## 4934             15 years old Female              10th grade   1.63  5.347769
## 4935             15 years old Female               9th grade   1.57  5.150919
## 4936             15 years old   Male               9th grade   1.70  5.577428
## 4937             15 years old   Male              10th grade   1.80  5.905512
## 4938             16 years old   Male              10th grade   1.83  6.003937
## 4939             14 years old Female               9th grade   1.75  5.741470
## 4940             16 years old   Male               9th grade   1.75  5.741470
## 4941             15 years old Female              10th grade   1.65  5.413386
## 4942             15 years old   Male              10th grade   1.80  5.905512
## 4943             14 years old   Male               9th grade     NA        NA
## 4944             15 years old   Male               9th grade   1.68  5.511811
## 4945             14 years old   Male               9th grade   1.73  5.675853
## 4946                     <NA>   Male               9th grade     NA        NA
## 4947             15 years old Female              10th grade   1.63  5.347769
## 4948             16 years old   Male              10th grade   1.80  5.905512
## 4949             16 years old   Male              10th grade   1.78  5.839895
## 4950             16 years old Female              10th grade   1.70  5.577428
## 4951             15 years old Female               9th grade   1.52  4.986877
## 4952             17 years old   Male              12th grade   1.93  6.332021
## 4953             17 years old Female              12th grade   1.57  5.150919
## 4954             16 years old   Male              11th grade   1.75  5.741470
## 4955             16 years old Female              11th grade   1.60  5.249344
## 4956             17 years old Female              11th grade   1.63  5.347769
## 4957             17 years old Female              11th grade   1.57  5.150919
## 4958             16 years old Female              11th grade   1.60  5.249344
## 4959    18 years old or older   Male              12th grade   1.73  5.675853
## 4960             17 years old   Male              11th grade   1.70  5.577428
## 4961             16 years old Female              11th grade   1.73  5.675853
## 4962    18 years old or older Female              12th grade   1.57  5.150919
## 4963             17 years old   Male              12th grade   1.83  6.003937
## 4964             17 years old   Male              12th grade   1.73  5.675853
## 4965             17 years old Female              12th grade   1.75  5.741470
## 4966             16 years old   <NA>              11th grade     NA        NA
## 4967    18 years old or older Female              12th grade   1.73  5.675853
## 4968             17 years old Female              12th grade   1.68  5.511811
## 4969             17 years old Female              12th grade   1.70  5.577428
## 4970             17 years old Female              12th grade   1.60  5.249344
## 4971             17 years old   Male              11th grade   1.65  5.413386
## 4972             17 years old   Male              12th grade   1.88  6.167979
## 4973             17 years old   Male              12th grade   1.80  5.905512
## 4974             16 years old   Male              11th grade   1.78  5.839895
## 4975             16 years old   <NA>              11th grade     NA        NA
## 4976             17 years old   Male              12th grade   1.78  5.839895
## 4977    18 years old or older   Male              12th grade   1.83  6.003937
## 4978    18 years old or older   Male              12th grade   1.75  5.741470
## 4979    18 years old or older   Male              12th grade   1.80  5.905512
## 4980             17 years old   Male              11th grade   1.83  6.003937
## 4981             17 years old Female              11th grade   1.68  5.511811
## 4982    18 years old or older   Male              12th grade   1.96  6.430446
## 4983    18 years old or older   Male              12th grade   1.85  6.069554
## 4984             16 years old   Male              11th grade   1.83  6.003937
## 4985             17 years old   Male              11th grade   1.70  5.577428
## 4986             17 years old   Male              12th grade   1.83  6.003937
## 4987             17 years old Female              11th grade   1.68  5.511811
## 4988    18 years old or older   Male              12th grade   1.73  5.675853
## 4989             17 years old Female              12th grade   1.60  5.249344
## 4990             16 years old Female              11th grade   1.55  5.085302
## 4991             17 years old Female              11th grade   1.65  5.413386
## 4992    18 years old or older   Male              12th grade   1.85  6.069554
## 4993             17 years old Female              12th grade     NA        NA
## 4994    18 years old or older Female              12th grade   1.70  5.577428
## 4995             17 years old Female              11th grade   1.70  5.577428
## 4996    18 years old or older Female              12th grade   1.47  4.822835
## 4997             17 years old   Male              12th grade   1.78  5.839895
## 4998             17 years old Female              11th grade   1.73  5.675853
## 4999             17 years old   Male              11th grade   1.78  5.839895
## 5000    18 years old or older   Male              12th grade   1.83  6.003937
## 5001    18 years old or older   Male              12th grade   1.70  5.577428
## 5002             17 years old   Male              11th grade   1.80  5.905512
## 5003             16 years old Female              11th grade   1.75  5.741470
## 5004    18 years old or older Female              12th grade   1.65  5.413386
## 5005             17 years old Female              12th grade   1.68  5.511811
## 5006    18 years old or older   Male              12th grade   1.75  5.741470
## 5007    18 years old or older   Male              12th grade   1.83  6.003937
## 5008    18 years old or older   Male              12th grade   1.88  6.167979
## 5009             17 years old Female              12th grade   1.65  5.413386
## 5010    18 years old or older   Male              12th grade   1.85  6.069554
## 5011             17 years old Female              12th grade   1.63  5.347769
## 5012             17 years old   Male              11th grade   1.83  6.003937
## 5013             16 years old   Male              11th grade   1.80  5.905512
## 5014             17 years old   Male              11th grade   1.83  6.003937
## 5015             17 years old Female              12th grade     NA        NA
## 5016    18 years old or older Female              12th grade   1.68  5.511811
## 5017             17 years old   Male              11th grade   1.83  6.003937
## 5018             17 years old   Male              11th grade   1.73  5.675853
## 5019             17 years old   Male              12th grade   1.73  5.675853
## 5020    18 years old or older Female              12th grade   1.68  5.511811
## 5021             17 years old   Male              12th grade   1.75  5.741470
## 5022             16 years old Female              11th grade   1.63  5.347769
## 5023             17 years old Female              12th grade   1.63  5.347769
## 5024    18 years old or older Female              12th grade   1.55  5.085302
## 5025    18 years old or older   Male              12th grade   1.88  6.167979
## 5026    18 years old or older   Male              12th grade   1.85  6.069554
## 5027             16 years old   Male              11th grade   1.83  6.003937
## 5028             15 years old   Male               9th grade   1.70  5.577428
## 5029             16 years old   Male              11th grade   1.85  6.069554
## 5030             14 years old   Male               9th grade   1.75  5.741470
## 5031             15 years old Female               9th grade   1.70  5.577428
## 5032             17 years old   Male              11th grade   1.73  5.675853
## 5033             15 years old   Male               9th grade   1.70  5.577428
## 5034             16 years old Female              11th grade   1.57  5.150919
## 5035             15 years old Female               9th grade   1.78  5.839895
## 5036             17 years old   Male              11th grade     NA        NA
## 5037             14 years old   Male               9th grade   1.78  5.839895
## 5038             14 years old Female               9th grade   1.75  5.741470
## 5039             16 years old   Male              11th grade   1.63  5.347769
## 5040             16 years old   Male              11th grade   1.73  5.675853
## 5041             16 years old   Male              11th grade   1.75  5.741470
## 5042             14 years old   Male               9th grade   1.73  5.675853
## 5043             14 years old   Male               9th grade     NA        NA
## 5044             17 years old   Male              11th grade   1.78  5.839895
## 5045             14 years old   Male               9th grade   1.83  6.003937
## 5046             17 years old   Male              11th grade   1.80  5.905512
## 5047             16 years old   Male              11th grade   1.78  5.839895
## 5048             14 years old   Male               9th grade   1.78  5.839895
## 5049             15 years old   Male               9th grade   1.70  5.577428
## 5050             14 years old Female               9th grade   1.52  4.986877
## 5051             17 years old   Male              11th grade   1.75  5.741470
## 5052             14 years old   Male               9th grade     NA        NA
## 5053             16 years old Female              11th grade   1.57  5.150919
## 5054             15 years old   Male               9th grade   1.70  5.577428
## 5055             17 years old Female              11th grade   1.50  4.921260
## 5056             15 years old   Male               9th grade   1.85  6.069554
## 5057             16 years old   Male              11th grade   1.83  6.003937
## 5058             15 years old   Male               9th grade   1.63  5.347769
## 5059             17 years old   Male              11th grade   1.73  5.675853
## 5060             14 years old   Male               9th grade   1.63  5.347769
## 5061             16 years old   Male              11th grade   1.70  5.577428
## 5062             15 years old   Male               9th grade   1.78  5.839895
## 5063             16 years old   Male              11th grade   1.83  6.003937
## 5064             15 years old   Male               9th grade   1.80  5.905512
## 5065             14 years old Female               9th grade   1.60  5.249344
## 5066             17 years old Female              11th grade   1.65  5.413386
## 5067             15 years old Female               9th grade   1.70  5.577428
## 5068             17 years old Female              11th grade   1.52  4.986877
## 5069             17 years old Female              11th grade   1.60  5.249344
## 5070             14 years old   Male               9th grade   1.88  6.167979
## 5071             17 years old Female              11th grade   1.70  5.577428
## 5072             16 years old Female              11th grade     NA        NA
## 5073             15 years old   Male               9th grade   1.73  5.675853
## 5074             16 years old   Male              11th grade   1.88  6.167979
## 5075             15 years old Female               9th grade   1.63  5.347769
## 5076             16 years old Female              11th grade     NA        NA
## 5077             14 years old Female               9th grade   1.63  5.347769
## 5078             16 years old Female              11th grade   1.60  5.249344
## 5079             14 years old Female               9th grade   1.63  5.347769
## 5080             17 years old   Male              11th grade   1.85  6.069554
## 5081             14 years old Female               9th grade   1.65  5.413386
## 5082             16 years old   Male              11th grade   1.68  5.511811
## 5083             14 years old Female               9th grade   1.70  5.577428
## 5084             17 years old   Male              11th grade   1.80  5.905512
## 5085             15 years old Female               9th grade   1.70  5.577428
## 5086             14 years old   Male               9th grade   1.73  5.675853
## 5087    18 years old or older   Male              12th grade   1.78  5.839895
## 5088             14 years old Female               9th grade   1.70  5.577428
## 5089             15 years old Female              10th grade   1.52  4.986877
## 5090             16 years old   Male              10th grade   1.70  5.577428
## 5091             15 years old   Male              10th grade   1.68  5.511811
## 5092    18 years old or older Female              12th grade   1.83  6.003937
## 5093             17 years old Female              12th grade   1.65  5.413386
## 5094             16 years old   Male              10th grade   1.83  6.003937
## 5095             16 years old   Male              10th grade   1.65  5.413386
## 5096    18 years old or older Female              12th grade   1.63  5.347769
## 5097             17 years old Female              12th grade   1.73  5.675853
## 5098             16 years old   Male              10th grade   1.85  6.069554
## 5099             16 years old Female              10th grade   1.57  5.150919
## 5100             17 years old Female              12th grade   1.83  6.003937
## 5101             17 years old Female              12th grade   1.65  5.413386
## 5102             16 years old   Male              10th grade   1.90  6.233596
## 5103             16 years old Female              10th grade   1.73  5.675853
## 5104             15 years old Female              10th grade   1.65  5.413386
## 5105             15 years old Female              10th grade   1.55  5.085302
## 5106    18 years old or older   Male              12th grade   1.75  5.741470
## 5107             15 years old   Male              10th grade   1.80  5.905512
## 5108             16 years old Female              10th grade   1.73  5.675853
## 5109             17 years old   Male              12th grade   1.88  6.167979
## 5110             17 years old Female              12th grade   1.55  5.085302
## 5111             15 years old Female              10th grade     NA        NA
## 5112             16 years old   Male              10th grade   1.70  5.577428
## 5113    18 years old or older Female              12th grade   1.60  5.249344
## 5114             15 years old Female              10th grade   1.68  5.511811
## 5115             17 years old Female              12th grade   1.60  5.249344
## 5116             16 years old   Male              10th grade     NA        NA
## 5117             17 years old Female              12th grade   1.73  5.675853
## 5118             17 years old   Male              10th grade   1.80  5.905512
## 5119             15 years old   Male              10th grade   1.85  6.069554
## 5120             15 years old Female              10th grade   1.60  5.249344
## 5121             16 years old Female              10th grade   1.70  5.577428
## 5122             16 years old   Male              10th grade   1.70  5.577428
## 5123             17 years old Female              12th grade   1.65  5.413386
## 5124             16 years old Female              10th grade   1.78  5.839895
## 5125             17 years old Female              12th grade   1.68  5.511811
## 5126             15 years old   Male              10th grade   1.63  5.347769
## 5127    18 years old or older Female              12th grade   1.83  6.003937
## 5128             17 years old   Male              12th grade     NA        NA
## 5129             15 years old   Male              10th grade   1.78  5.839895
## 5130             17 years old   Male              12th grade   1.80  5.905512
## 5131             16 years old   Male              10th grade   1.75  5.741470
## 5132             16 years old   Male              10th grade   1.65  5.413386
## 5133             17 years old   Male              12th grade   1.75  5.741470
## 5134             15 years old Female              10th grade   1.75  5.741470
## 5135    18 years old or older Female              12th grade   1.60  5.249344
## 5136             15 years old Female              10th grade   1.57  5.150919
## 5137    18 years old or older   Male              12th grade   1.80  5.905512
## 5138             16 years old   Male                    <NA>   1.73  5.675853
## 5139             17 years old Female              12th grade   1.57  5.150919
## 5140             17 years old   Male              10th grade   1.65  5.413386
## 5141             15 years old   Male              10th grade   1.70  5.577428
## 5142             17 years old Female              12th grade   1.75  5.741470
## 5143             15 years old   Male               9th grade   1.80  5.905512
## 5144             17 years old Female              12th grade   1.70  5.577428
## 5145             17 years old Female              12th grade   1.63  5.347769
## 5146             14 years old Female               9th grade   1.47  4.822835
## 5147             16 years old Female              10th grade   1.52  4.986877
## 5148             17 years old Female              12th grade   1.75  5.741470
## 5149             15 years old   Male              10th grade   1.75  5.741470
## 5150             14 years old Female               9th grade   1.55  5.085302
## 5151             15 years old   Male              10th grade   1.73  5.675853
## 5152             17 years old Female              12th grade   1.57  5.150919
## 5153             16 years old   Male              10th grade   1.83  6.003937
## 5154             15 years old   Male              10th grade   1.70  5.577428
## 5155             17 years old   Male              12th grade   1.88  6.167979
## 5156             15 years old Female               9th grade   1.65  5.413386
## 5157             14 years old   Male               9th grade   1.80  5.905512
## 5158             16 years old Female              10th grade   1.63  5.347769
## 5159             15 years old   Male              10th grade   1.75  5.741470
## 5160             16 years old   Male              10th grade   1.83  6.003937
## 5161             15 years old Female              10th grade   1.70  5.577428
## 5162             16 years old   Male              10th grade   1.73  5.675853
## 5163             14 years old   Male               9th grade   1.70  5.577428
## 5164             15 years old   Male              10th grade     NA        NA
## 5165             15 years old   Male               9th grade   1.80  5.905512
## 5166             15 years old Female               9th grade   1.70  5.577428
## 5167             15 years old   Male               9th grade   1.57  5.150919
## 5168             15 years old Female               9th grade   1.60  5.249344
## 5169             14 years old   Male               9th grade   1.70  5.577428
## 5170             15 years old Female              10th grade   1.50  4.921260
## 5171    18 years old or older   Male              12th grade   1.80  5.905512
## 5172             15 years old   Male               9th grade   1.78  5.839895
## 5173             16 years old   Male              10th grade   1.68  5.511811
## 5174             17 years old   Male              11th grade   1.73  5.675853
## 5175             14 years old Female               9th grade   1.70  5.577428
## 5176             15 years old   Male               9th grade   1.83  6.003937
## 5177             17 years old Female              12th grade   1.68  5.511811
## 5178             17 years old Female              11th grade   1.68  5.511811
## 5179    18 years old or older Female              12th grade   1.75  5.741470
## 5180             15 years old Female               9th grade   1.60  5.249344
## 5181             15 years old   Male               9th grade   1.83  6.003937
## 5182             16 years old   Male              10th grade   1.73  5.675853
## 5183             17 years old Female              11th grade   1.63  5.347769
## 5184    18 years old or older   Male              12th grade   1.73  5.675853
## 5185             14 years old Female               9th grade   1.68  5.511811
## 5186             16 years old Female              10th grade   1.65  5.413386
## 5187             17 years old Female              11th grade   1.65  5.413386
## 5188             17 years old   Male              12th grade   1.65  5.413386
## 5189             15 years old Female               9th grade   1.63  5.347769
## 5190             15 years old   Male               9th grade   1.75  5.741470
## 5191             15 years old Female              10th grade   1.55  5.085302
## 5192             15 years old   Male               9th grade   1.65  5.413386
## 5193             16 years old Female              10th grade   1.60  5.249344
## 5194             16 years old Female              11th grade   1.57  5.150919
## 5195    18 years old or older Female              12th grade   1.70  5.577428
## 5196             15 years old Female               9th grade   1.70  5.577428
## 5197             16 years old   Male              10th grade   1.75  5.741470
## 5198             16 years old Female              11th grade   1.57  5.150919
## 5199    18 years old or older Female              12th grade   1.70  5.577428
## 5200             15 years old Female               9th grade   1.68  5.511811
## 5201             15 years old   Male              10th grade   1.73  5.675853
## 5202             16 years old   Male              11th grade   1.78  5.839895
## 5203             17 years old   Male              12th grade   1.78  5.839895
## 5204             14 years old   Male               9th grade   1.88  6.167979
## 5205             15 years old   Male               9th grade   1.75  5.741470
## 5206             15 years old   Male               9th grade   1.65  5.413386
## 5207             16 years old Female              10th grade   1.60  5.249344
## 5208             17 years old   Male              11th grade   1.80  5.905512
## 5209             17 years old   Male              12th grade   1.83  6.003937
## 5210             15 years old Female               9th grade   1.65  5.413386
## 5211             15 years old Female              10th grade   1.55  5.085302
## 5212             17 years old   Male              11th grade   1.78  5.839895
## 5213             17 years old Female              12th grade   1.75  5.741470
## 5214             15 years old   Male               9th grade   1.85  6.069554
## 5215             16 years old   Male              10th grade   1.63  5.347769
## 5216    18 years old or older Female              12th grade   1.55  5.085302
## 5217             15 years old Female               9th grade   1.60  5.249344
## 5218             16 years old Female              10th grade   1.80  5.905512
## 5219             17 years old   Male              11th grade   1.78  5.839895
## 5220             17 years old Female              12th grade   1.65  5.413386
## 5221             15 years old Female               9th grade   1.60  5.249344
## 5222             14 years old   Male               9th grade   1.65  5.413386
## 5223             16 years old   Male              10th grade   1.85  6.069554
## 5224             17 years old Female              11th grade   1.65  5.413386
## 5225             15 years old   Male               9th grade   1.75  5.741470
## 5226             15 years old   Male              10th grade   1.73  5.675853
## 5227             16 years old   Male              11th grade   1.83  6.003937
## 5228             15 years old   Male               9th grade   1.52  4.986877
## 5229             15 years old   Male              10th grade   1.75  5.741470
## 5230             17 years old Female              11th grade   1.57  5.150919
## 5231             17 years old Female              12th grade   1.63  5.347769
## 5232             15 years old   Male               9th grade   1.68  5.511811
## 5233             15 years old Female              10th grade   1.57  5.150919
## 5234             17 years old Female              11th grade   1.63  5.347769
## 5235    18 years old or older   Male              12th grade   1.80  5.905512
## 5236             15 years old Female               9th grade   1.52  4.986877
## 5237             15 years old   Male               9th grade   1.68  5.511811
## 5238             16 years old   Male              10th grade   1.75  5.741470
## 5239             17 years old Female              11th grade   1.68  5.511811
## 5240             16 years old   Male              10th grade   1.85  6.069554
## 5241             17 years old   Male              11th grade   1.90  6.233596
## 5242    18 years old or older Female              12th grade   1.57  5.150919
## 5243             15 years old   Male               9th grade   1.83  6.003937
## 5244             15 years old Female              10th grade   1.60  5.249344
## 5245             16 years old Female              11th grade   1.80  5.905512
## 5246             17 years old Female              12th grade   1.65  5.413386
## 5247             15 years old Female               9th grade   1.63  5.347769
## 5248             15 years old   Male              10th grade   1.78  5.839895
## 5249             17 years old Female              11th grade   1.75  5.741470
## 5250    18 years old or older Female              12th grade   1.65  5.413386
## 5251             15 years old Female               9th grade   1.63  5.347769
## 5252             16 years old   Male              10th grade   1.78  5.839895
## 5253             17 years old Female              11th grade   1.63  5.347769
## 5254    18 years old or older Female              12th grade     NA        NA
## 5255             15 years old Female               9th grade   1.68  5.511811
## 5256             14 years old Female               9th grade   1.63  5.347769
## 5257             15 years old   Male               9th grade   1.68  5.511811
## 5258             16 years old   Male               9th grade   1.78  5.839895
## 5259             15 years old   Male               9th grade   1.75  5.741470
## 5260             16 years old   Male               9th grade   1.78  5.839895
## 5261             14 years old Female               9th grade   1.73  5.675853
## 5262             15 years old Female               9th grade   1.78  5.839895
## 5263             15 years old Female               9th grade   1.68  5.511811
## 5264             15 years old Female               9th grade     NA        NA
## 5265             16 years old   Male               9th grade   1.85  6.069554
## 5266             15 years old Female               9th grade   1.68  5.511811
## 5267             15 years old Female               9th grade   1.65  5.413386
## 5268    18 years old or older Female              12th grade   1.78  5.839895
## 5269    18 years old or older Female              11th grade     NA        NA
## 5270    18 years old or older Female              12th grade   1.60  5.249344
## 5271             16 years old   Male              10th grade   1.80  5.905512
## 5272             17 years old   Male              11th grade   1.85  6.069554
## 5273    18 years old or older   Male              12th grade   1.75  5.741470
## 5274             16 years old Female              10th grade   1.63  5.347769
## 5275             17 years old Female              11th grade   1.75  5.741470
## 5276    18 years old or older   Male              12th grade   1.93  6.332021
## 5277             16 years old Female              10th grade   1.63  5.347769
## 5278             17 years old Female              11th grade   1.63  5.347769
## 5279    18 years old or older Female              12th grade   1.70  5.577428
## 5280             16 years old   Male              10th grade   1.78  5.839895
## 5281    18 years old or older Female              12th grade   1.63  5.347769
## 5282             16 years old   Male              10th grade   1.88  6.167979
## 5283             17 years old Female              11th grade   1.65  5.413386
## 5284             17 years old Female              11th grade   1.73  5.675853
## 5285    18 years old or older   Male              11th grade   1.70  5.577428
## 5286    18 years old or older Female              12th grade   1.63  5.347769
## 5287             16 years old Female              10th grade   1.65  5.413386
## 5288             17 years old   Male              11th grade   1.85  6.069554
## 5289             17 years old Female              12th grade   1.60  5.249344
## 5290             15 years old   Male              10th grade   1.75  5.741470
## 5291    18 years old or older Female              12th grade   1.70  5.577428
## 5292             15 years old Female              10th grade   1.57  5.150919
## 5293             17 years old Female              11th grade   1.73  5.675853
## 5294    18 years old or older Female              12th grade   1.73  5.675853
## 5295             16 years old Female              10th grade   1.68  5.511811
## 5296             17 years old   Male              11th grade   1.70  5.577428
## 5297    18 years old or older   Male              12th grade     NA        NA
## 5298             16 years old Female              10th grade   1.75  5.741470
## 5299             17 years old   Male              11th grade   1.78  5.839895
## 5300             17 years old Female              12th grade   1.68  5.511811
## 5301             16 years old   Male              10th grade   1.85  6.069554
## 5302             17 years old   Male                    <NA>   1.70  5.577428
## 5303             16 years old   Male              10th grade   1.75  5.741470
## 5304    18 years old or older Female              12th grade   1.55  5.085302
## 5305             14 years old Female               9th grade   1.50  4.921260
## 5306             16 years old   Male              11th grade   1.70  5.577428
## 5307             16 years old   Male              10th grade   1.75  5.741470
## 5308    18 years old or older   Male              12th grade   1.80  5.905512
## 5309             15 years old   Male               9th grade   1.75  5.741470
## 5310             16 years old Female              11th grade   1.65  5.413386
## 5311             16 years old   Male              10th grade   1.88  6.167979
## 5312    18 years old or older   Male              12th grade   1.73  5.675853
## 5313             15 years old Female               9th grade   1.60  5.249344
## 5314             16 years old   Male              11th grade   1.75  5.741470
## 5315             15 years old   Male              10th grade   1.70  5.577428
## 5316    18 years old or older Female              12th grade   1.63  5.347769
## 5317             15 years old Female               9th grade   1.65  5.413386
## 5318             17 years old Female              11th grade     NA        NA
## 5319             15 years old Female              10th grade   1.60  5.249344
## 5320             17 years old Female              12th grade   1.65  5.413386
## 5321             15 years old   Male               9th grade   1.73  5.675853
## 5322             16 years old Female              11th grade   1.65  5.413386
## 5323             16 years old   Male              11th grade   1.85  6.069554
## 5324             16 years old Female              10th grade   1.70  5.577428
## 5325    18 years old or older   Male              12th grade   1.78  5.839895
## 5326             14 years old Female               9th grade   1.78  5.839895
## 5327    18 years old or older Female              12th grade   1.78  5.839895
## 5328             15 years old   Male               9th grade   1.88  6.167979
## 5329             15 years old Female              10th grade   1.65  5.413386
## 5330    18 years old or older Female              12th grade   1.63  5.347769
## 5331             15 years old   Male               9th grade   1.83  6.003937
## 5332             16 years old   Male              11th grade   1.90  6.233596
## 5333             15 years old   Male              10th grade   1.78  5.839895
## 5334             17 years old Female              12th grade   1.75  5.741470
## 5335             15 years old Female               9th grade   1.57  5.150919
## 5336             17 years old Female              11th grade   1.60  5.249344
## 5337             16 years old   Male              10th grade   1.68  5.511811
## 5338    18 years old or older Female              12th grade   1.57  5.150919
## 5339             17 years old   Male              11th grade   1.96  6.430446
## 5340             17 years old Female              10th grade   1.60  5.249344
## 5341             17 years old Female              12th grade   1.68  5.511811
## 5342             17 years old   Male              11th grade   1.85  6.069554
## 5343             16 years old   Male              10th grade   1.65  5.413386
## 5344             17 years old Female              12th grade   1.63  5.347769
## 5345             15 years old   Male               9th grade   1.60  5.249344
## 5346             16 years old Female              11th grade   1.60  5.249344
## 5347             16 years old Female              11th grade   1.60  5.249344
## 5348             14 years old   Male               9th grade   1.73  5.675853
## 5349             17 years old   Male              11th grade   1.83  6.003937
## 5350             15 years old Female               9th grade   1.57  5.150919
## 5351             14 years old   Male               9th grade   1.63  5.347769
## 5352             16 years old   Male              10th grade   1.80  5.905512
## 5353             17 years old   Male              12th grade   1.73  5.675853
## 5354             17 years old   Male              12th grade   1.78  5.839895
## 5355  12 years old or younger   Male Ungraded or other grade   1.47  4.822835
## 5356             15 years old   Male               9th grade   1.73  5.675853
## 5357             17 years old   Male              11th grade   1.75  5.741470
## 5358             16 years old   Male               9th grade   1.57  5.150919
## 5359             16 years old   Male              10th grade   1.80  5.905512
## 5360    18 years old or older   Male              12th grade   1.75  5.741470
## 5361             17 years old   Male              11th grade   1.63  5.347769
## 5362             17 years old Female              11th grade   1.60  5.249344
## 5363             14 years old Female               9th grade   1.70  5.577428
## 5364             16 years old   Male              11th grade   1.73  5.675853
## 5365             14 years old Female               9th grade   1.57  5.150919
## 5366             15 years old Female              10th grade   1.68  5.511811
## 5367             17 years old Female              12th grade   1.65  5.413386
## 5368             17 years old Female              12th grade   1.63  5.347769
## 5369             17 years old Female              11th grade     NA        NA
## 5370             17 years old   Male              11th grade   1.73  5.675853
## 5371             14 years old   Male               9th grade   1.65  5.413386
## 5372    18 years old or older Female              11th grade   1.47  4.822835
## 5373             15 years old   Male              10th grade   1.83  6.003937
## 5374             17 years old Female              12th grade   1.63  5.347769
## 5375    18 years old or older   Male              12th grade   1.90  6.233596
## 5376    18 years old or older   Male              12th grade   1.70  5.577428
## 5377             16 years old Female              11th grade   1.63  5.347769
## 5378             16 years old   Male              11th grade   1.78  5.839895
## 5379             15 years old   Male               9th grade   1.73  5.675853
## 5380             15 years old Female              10th grade     NA        NA
## 5381             17 years old   Male              11th grade   1.68  5.511811
## 5382             16 years old   Male              11th grade   1.78  5.839895
## 5383             14 years old Female               9th grade   1.55  5.085302
## 5384             16 years old   Male              10th grade   1.73  5.675853
## 5385    18 years old or older   Male              12th grade   1.83  6.003937
## 5386    18 years old or older   Male              12th grade   1.83  6.003937
## 5387             16 years old   Male              11th grade   1.63  5.347769
## 5388             17 years old   Male              11th grade   1.70  5.577428
## 5389             15 years old Female               9th grade   1.65  5.413386
## 5390             16 years old   Male              11th grade   1.85  6.069554
## 5391             14 years old   Male               9th grade   1.68  5.511811
## 5392             15 years old   <NA>              10th grade     NA        NA
## 5393             17 years old   Male              12th grade   1.80  5.905512
## 5394             17 years old Female              12th grade   1.57  5.150919
## 5395             16 years old Female              11th grade   1.63  5.347769
## 5396             15 years old Female               9th grade   1.52  4.986877
## 5397             17 years old   Male              11th grade   1.83  6.003937
## 5398             15 years old Female               9th grade   1.70  5.577428
## 5399             15 years old   Male              10th grade   1.70  5.577428
## 5400             17 years old   Male              12th grade   1.78  5.839895
## 5401    18 years old or older   Male              12th grade   1.88  6.167979
## 5402             16 years old   Male              11th grade   1.88  6.167979
## 5403             14 years old Female               9th grade   1.65  5.413386
## 5404             17 years old   Male              11th grade   1.80  5.905512
## 5405             14 years old Female               9th grade   1.57  5.150919
## 5406             15 years old   Male              10th grade   1.85  6.069554
## 5407    18 years old or older Female              12th grade   1.57  5.150919
## 5408    18 years old or older Female              12th grade   1.75  5.741470
## 5409             15 years old   Male              10th grade   1.73  5.675853
## 5410             14 years old   Male               9th grade     NA        NA
## 5411             15 years old Female              10th grade   1.70  5.577428
## 5412             16 years old   Male              11th grade   1.80  5.905512
## 5413             17 years old   Male              11th grade     NA        NA
## 5414             14 years old   Male               9th grade   1.80  5.905512
## 5415             16 years old   Male              11th grade   1.70  5.577428
## 5416             15 years old Female               9th grade   1.60  5.249344
## 5417             15 years old Female              10th grade   1.52  4.986877
## 5418             17 years old   Male              12th grade   1.70  5.577428
## 5419             17 years old   Male              12th grade   1.78  5.839895
## 5420             16 years old Female              10th grade   1.68  5.511811
## 5421             14 years old   Male               9th grade   1.68  5.511811
## 5422             16 years old Female              11th grade   1.65  5.413386
## 5423             15 years old   Male               9th grade   1.68  5.511811
## 5424             16 years old   Male              10th grade   1.80  5.905512
## 5425             17 years old   Male              12th grade   1.60  5.249344
## 5426    18 years old or older   Male              12th grade   1.83  6.003937
## 5427             17 years old   Male              11th grade   1.80  5.905512
## 5428             15 years old   Male               9th grade   1.78  5.839895
## 5429             16 years old   Male              11th grade     NA        NA
## 5430             14 years old Female               9th grade   1.60  5.249344
## 5431             16 years old   Male              10th grade   1.73  5.675853
## 5432    18 years old or older   Male              12th grade   1.80  5.905512
## 5433    18 years old or older Female              12th grade   1.63  5.347769
## 5434             15 years old Female               9th grade   1.52  4.986877
## 5435             16 years old Female              11th grade   1.63  5.347769
## 5436             14 years old   Male               9th grade   1.75  5.741470
## 5437             17 years old Female              11th grade   1.65  5.413386
## 5438             15 years old Female               9th grade   1.63  5.347769
## 5439             15 years old   Male              10th grade   1.73  5.675853
## 5440             16 years old   Male              11th grade   1.88  6.167979
## 5441             14 years old Female               9th grade   1.57  5.150919
## 5442    18 years old or older   Male              11th grade   1.83  6.003937
## 5443             16 years old Female               9th grade   1.63  5.347769
## 5444             15 years old Female               9th grade   1.57  5.150919
## 5445             15 years old   Male              10th grade   1.75  5.741470
## 5446    18 years old or older Female              12th grade   1.65  5.413386
## 5447             17 years old Female              12th grade   1.65  5.413386
## 5448             17 years old Female              11th grade   1.63  5.347769
## 5449             15 years old   Male               9th grade   1.80  5.905512
## 5450             15 years old Female               9th grade   1.57  5.150919
## 5451             17 years old   Male              12th grade   1.78  5.839895
## 5452    18 years old or older Female              11th grade   1.68  5.511811
## 5453             17 years old   Male              11th grade   1.73  5.675853
## 5454             15 years old   Male               9th grade   1.78  5.839895
## 5455             16 years old   Male              11th grade   1.75  5.741470
## 5456             14 years old Female               9th grade     NA        NA
## 5457             17 years old   Male              11th grade   1.90  6.233596
## 5458    18 years old or older Female              11th grade     NA        NA
## 5459             15 years old Female               9th grade   1.60  5.249344
## 5460             16 years old   Male              11th grade   1.85  6.069554
## 5461             16 years old Female               9th grade   1.57  5.150919
## 5462             14 years old   Male               9th grade   1.83  6.003937
## 5463             16 years old   Male              11th grade   1.68  5.511811
## 5464             17 years old Female              11th grade   1.57  5.150919
## 5465             14 years old Female               9th grade   1.68  5.511811
## 5466             16 years old   Male              11th grade   1.78  5.839895
## 5467             15 years old Female               9th grade   1.57  5.150919
## 5468             15 years old   Male               9th grade   1.80  5.905512
## 5469             14 years old   Male               9th grade   1.68  5.511811
## 5470             16 years old Female              11th grade   1.57  5.150919
## 5471             15 years old Female               9th grade   1.55  5.085302
## 5472             14 years old   Male               9th grade   1.75  5.741470
## 5473             16 years old Female              10th grade   1.57  5.150919
## 5474    18 years old or older   Male              12th grade   1.70  5.577428
## 5475             17 years old Female              11th grade   1.52  4.986877
## 5476             17 years old Female              11th grade   1.52  4.986877
## 5477             16 years old Female              10th grade   1.52  4.986877
## 5478             17 years old Female              11th grade   1.55  5.085302
## 5479    18 years old or older Female              12th grade   1.60  5.249344
## 5480             16 years old   Male              10th grade   1.63  5.347769
## 5481             17 years old Female              11th grade   1.50  4.921260
## 5482             17 years old   Male              11th grade   1.78  5.839895
## 5483             17 years old   Male              11th grade   1.80  5.905512
## 5484             16 years old Female              11th grade   1.60  5.249344
## 5485             16 years old Female              10th grade     NA        NA
## 5486             16 years old Female              10th grade   1.70  5.577428
## 5487             16 years old   Male              10th grade   1.75  5.741470
## 5488             15 years old Female              10th grade   1.63  5.347769
## 5489             17 years old Female              12th grade   1.57  5.150919
## 5490             16 years old Female              10th grade   1.60  5.249344
## 5491             16 years old   Male              10th grade   1.68  5.511811
## 5492             14 years old Female               9th grade   1.60  5.249344
## 5493             17 years old Female              11th grade   1.60  5.249344
## 5494             17 years old Female              11th grade   1.55  5.085302
## 5495             17 years old Female              11th grade   1.65  5.413386
## 5496             16 years old   Male              10th grade   1.75  5.741470
## 5497             16 years old   Male              10th grade   1.78  5.839895
## 5498             17 years old Female              11th grade   1.73  5.675853
## 5499             16 years old   Male              10th grade   1.83  6.003937
## 5500             16 years old   Male              10th grade   1.78  5.839895
## 5501             16 years old   Male              10th grade   1.78  5.839895
## 5502             16 years old   Male              11th grade   1.73  5.675853
## 5503             16 years old   Male              11th grade   1.75  5.741470
## 5504             17 years old Female              11th grade   1.68  5.511811
## 5505             17 years old   Male              11th grade   1.70  5.577428
## 5506             17 years old   Male              11th grade   1.80  5.905512
## 5507             17 years old Female              10th grade   1.63  5.347769
## 5508             16 years old Female              10th grade   1.52  4.986877
## 5509             16 years old Female              11th grade   1.57  5.150919
## 5510    18 years old or older   Male              12th grade   1.78  5.839895
## 5511             17 years old Female              11th grade   1.70  5.577428
## 5512    18 years old or older Female              12th grade   1.65  5.413386
## 5513             17 years old   Male              11th grade   1.75  5.741470
## 5514             16 years old   Male              10th grade   1.80  5.905512
## 5515             15 years old Female              10th grade   1.57  5.150919
## 5516             16 years old   Male              10th grade   1.65  5.413386
## 5517             17 years old Female              11th grade     NA        NA
## 5518    18 years old or older   Male              12th grade     NA        NA
## 5519             17 years old Female              12th grade   1.57  5.150919
## 5520             15 years old Female               9th grade   1.70  5.577428
## 5521             17 years old   Male              12th grade   1.68  5.511811
## 5522             15 years old   Male               9th grade   1.73  5.675853
## 5523             15 years old Female               9th grade   1.60  5.249344
## 5524             15 years old   Male               9th grade   1.75  5.741470
## 5525             15 years old Female               9th grade   1.55  5.085302
## 5526             14 years old   Male               9th grade   1.70  5.577428
## 5527             15 years old Female               9th grade   1.63  5.347769
## 5528             14 years old Female               9th grade   1.70  5.577428
## 5529             15 years old   Male               9th grade   1.68  5.511811
## 5530             15 years old   Male               9th grade   1.80  5.905512
## 5531             14 years old Female               9th grade     NA        NA
## 5532             14 years old Female               9th grade   1.70  5.577428
## 5533             15 years old Female               9th grade   1.68  5.511811
## 5534             15 years old   Male               9th grade   1.65  5.413386
## 5535             15 years old Female               9th grade   1.55  5.085302
## 5536             14 years old Female               9th grade   1.52  4.986877
## 5537             15 years old Female               9th grade   1.50  4.921260
## 5538             15 years old   Male               9th grade   1.60  5.249344
## 5539             14 years old Female               9th grade   1.52  4.986877
## 5540             15 years old Female               9th grade   1.60  5.249344
## 5541             17 years old Female              12th grade   1.70  5.577428
## 5542             17 years old Female              11th grade   1.50  4.921260
## 5543             15 years old   Male              10th grade   1.73  5.675853
## 5544    18 years old or older Female              12th grade   1.73  5.675853
## 5545             17 years old Female              11th grade   1.50  4.921260
## 5546             17 years old Female              11th grade   1.60  5.249344
## 5547             17 years old Female              11th grade   1.65  5.413386
## 5548             17 years old Female              12th grade   1.57  5.150919
## 5549             17 years old   Male              11th grade   1.80  5.905512
## 5550             17 years old   Male              12th grade   1.73  5.675853
## 5551             16 years old Female              10th grade   1.68  5.511811
## 5552    18 years old or older Female              12th grade   1.68  5.511811
## 5553             16 years old Female              10th grade   1.60  5.249344
## 5554             15 years old Female              10th grade   1.57  5.150919
## 5555             16 years old Female              10th grade   1.68  5.511811
## 5556             16 years old Female              10th grade     NA        NA
## 5557             17 years old Female              11th grade   1.73  5.675853
## 5558             17 years old Female              12th grade   1.75  5.741470
## 5559             17 years old Female              11th grade   1.57  5.150919
## 5560             17 years old   Male              11th grade   1.73  5.675853
## 5561    18 years old or older Female              12th grade   1.55  5.085302
## 5562             16 years old Female              10th grade     NA        NA
## 5563             15 years old Female              10th grade   1.50  4.921260
## 5564             17 years old   Male              11th grade   1.60  5.249344
## 5565             15 years old Female              10th grade   1.57  5.150919
## 5566             16 years old Female              11th grade   1.60  5.249344
## 5567             16 years old Female              10th grade   1.60  5.249344
## 5568             17 years old Female              11th grade   1.70  5.577428
## 5569             16 years old   Male              10th grade   1.68  5.511811
## 5570             16 years old Female              10th grade   1.57  5.150919
## 5571             17 years old Female              11th grade   1.57  5.150919
## 5572             17 years old Female              11th grade   1.70  5.577428
## 5573             17 years old Female              11th grade   1.55  5.085302
## 5574    18 years old or older   Male              12th grade   1.75  5.741470
## 5575             16 years old   Male              10th grade   1.83  6.003937
## 5576             17 years old Female              11th grade   1.57  5.150919
## 5577             17 years old Female              11th grade   1.57  5.150919
## 5578    18 years old or older Female              12th grade   1.60  5.249344
## 5579             17 years old Female              11th grade   1.52  4.986877
## 5580    18 years old or older   Male              12th grade   1.70  5.577428
## 5581             17 years old   Male              11th grade   1.65  5.413386
## 5582             16 years old Female              10th grade   1.57  5.150919
## 5583             16 years old   Male              10th grade   1.85  6.069554
## 5584             16 years old   Male              10th grade   1.78  5.839895
## 5585             17 years old   Male              11th grade   1.75  5.741470
## 5586    18 years old or older   Male              12th grade   1.85  6.069554
## 5587             15 years old Female              10th grade   1.63  5.347769
## 5588             16 years old Female              10th grade   1.73  5.675853
## 5589             14 years old   Male               9th grade   1.68  5.511811
## 5590             17 years old   Male              12th grade   1.78  5.839895
## 5591             17 years old   Male              12th grade   1.75  5.741470
## 5592             16 years old Female              10th grade   1.52  4.986877
## 5593             15 years old Female               9th grade   1.63  5.347769
## 5594             15 years old Female               9th grade   1.50  4.921260
## 5595             15 years old   Male               9th grade   1.83  6.003937
## 5596             14 years old Female               9th grade   1.60  5.249344
## 5597             15 years old   Male               9th grade   1.73  5.675853
## 5598             14 years old   Male               9th grade   1.73  5.675853
## 5599             15 years old   Male               9th grade   1.60  5.249344
## 5600             15 years old Female               9th grade   1.70  5.577428
## 5601             15 years old   Male               9th grade   1.78  5.839895
## 5602             15 years old   Male               9th grade     NA        NA
## 5603             14 years old Female               9th grade   1.63  5.347769
## 5604             16 years old   Male               9th grade   1.85  6.069554
## 5605             15 years old Female               9th grade   1.68  5.511811
## 5606             15 years old   Male               9th grade   1.73  5.675853
## 5607             15 years old   Male               9th grade   1.80  5.905512
## 5608             15 years old Female               9th grade   1.60  5.249344
## 5609             15 years old Female               9th grade   1.60  5.249344
## 5610             15 years old Female               9th grade   1.63  5.347769
## 5611             14 years old   Male               9th grade   1.60  5.249344
## 5612             15 years old   Male               9th grade   1.57  5.150919
## 5613             14 years old Female               9th grade   1.52  4.986877
## 5614             14 years old Female               9th grade     NA        NA
## 5615             14 years old Female               9th grade   1.73  5.675853
## 5616             17 years old Female              11th grade   1.63  5.347769
## 5617             16 years old   Male              10th grade   1.75  5.741470
## 5618             17 years old Female              11th grade   1.50  4.921260
## 5619    18 years old or older Female              12th grade   1.60  5.249344
## 5620             17 years old Female              11th grade   1.68  5.511811
## 5621             15 years old Female              10th grade   1.55  5.085302
## 5622             16 years old   Male              10th grade   1.75  5.741470
## 5623             16 years old   Male              11th grade   1.73  5.675853
## 5624             17 years old Female              12th grade   1.63  5.347769
## 5625             17 years old   Male              11th grade   1.78  5.839895
## 5626             16 years old   Male              10th grade     NA        NA
## 5627             17 years old   Male              11th grade   1.70  5.577428
## 5628             15 years old Female              10th grade   1.57  5.150919
## 5629             15 years old Female               9th grade   1.65  5.413386
## 5630             15 years old Female               9th grade   1.70  5.577428
## 5631             17 years old   Male              11th grade     NA        NA
## 5632             16 years old Female              11th grade   1.63  5.347769
## 5633             16 years old Female              10th grade   1.63  5.347769
## 5634             17 years old Female              11th grade   1.57  5.150919
## 5635             17 years old Female              11th grade     NA        NA
## 5636             16 years old Female              10th grade   1.57  5.150919
## 5637             15 years old   Male               9th grade   1.75  5.741470
## 5638             16 years old   Male              11th grade   1.85  6.069554
## 5639             17 years old Female              11th grade   1.55  5.085302
## 5640             15 years old Female              10th grade   1.60  5.249344
## 5641             16 years old Female              10th grade   1.57  5.150919
## 5642             14 years old Female               9th grade   1.63  5.347769
## 5643             16 years old Female              10th grade   1.65  5.413386
## 5644             16 years old   Male              11th grade   1.65  5.413386
## 5645             16 years old   Male              10th grade   1.73  5.675853
## 5646             17 years old   Male              11th grade   1.73  5.675853
## 5647             16 years old Female              11th grade   1.57  5.150919
## 5648             16 years old   Male              10th grade   1.78  5.839895
## 5649             16 years old Female              11th grade   1.75  5.741470
## 5650             16 years old   Male              10th grade   1.73  5.675853
## 5651             15 years old Female               9th grade   1.65  5.413386
## 5652             17 years old Female              11th grade   1.65  5.413386
## 5653             17 years old Female              11th grade   1.60  5.249344
## 5654             15 years old Female              10th grade   1.57  5.150919
## 5655             16 years old   Male              10th grade   1.78  5.839895
## 5656             14 years old   Male               9th grade   1.73  5.675853
## 5657             14 years old   Male               9th grade   1.90  6.233596
## 5658             17 years old Female              11th grade   1.57  5.150919
## 5659             17 years old   Male              11th grade   1.93  6.332021
## 5660             16 years old   Male              10th grade   1.70  5.577428
## 5661             15 years old   Male               9th grade   1.70  5.577428
## 5662             14 years old Female               9th grade   1.68  5.511811
## 5663             17 years old Female              11th grade   1.73  5.675853
## 5664             17 years old Female              11th grade   1.50  4.921260
## 5665             16 years old   Male              10th grade   1.73  5.675853
## 5666             16 years old   Male              10th grade   1.65  5.413386
## 5667             14 years old   Male               9th grade   1.75  5.741470
## 5668             15 years old   Male               9th grade   1.70  5.577428
## 5669    18 years old or older   Male              12th grade   1.73  5.675853
## 5670             16 years old   Male              11th grade   1.73  5.675853
## 5671             15 years old Female              10th grade   1.57  5.150919
## 5672             16 years old   Male              10th grade   1.83  6.003937
## 5673             17 years old Female              11th grade   1.70  5.577428
## 5674             16 years old Female              10th grade   1.65  5.413386
## 5675             17 years old Female              11th grade   1.55  5.085302
## 5676             16 years old   Male              10th grade   1.60  5.249344
## 5677             16 years old   Male              10th grade   1.68  5.511811
## 5678             16 years old   Male              10th grade   1.78  5.839895
## 5679             16 years old Female              10th grade   1.70  5.577428
## 5680    18 years old or older   Male              12th grade   1.78  5.839895
## 5681    18 years old or older   Male              12th grade   1.83  6.003937
## 5682             14 years old   Male               9th grade   1.60  5.249344
## 5683    18 years old or older   Male              12th grade   1.80  5.905512
## 5684    18 years old or older Female              12th grade     NA        NA
## 5685             15 years old   Male               9th grade     NA        NA
## 5686    18 years old or older   Male              12th grade     NA        NA
## 5687    18 years old or older   Male              12th grade   1.83  6.003937
## 5688             14 years old Female               9th grade   1.40  4.593176
## 5689    18 years old or older   Male              12th grade   1.80  5.905512
## 5690    18 years old or older   Male              12th grade     NA        NA
## 5691             14 years old Female               9th grade   1.52  4.986877
## 5692    18 years old or older   Male              12th grade   1.73  5.675853
## 5693             15 years old Female               9th grade   1.55  5.085302
## 5694    18 years old or older   Male              12th grade   1.85  6.069554
## 5695             16 years old   Male               9th grade   1.90  6.233596
## 5696    18 years old or older   Male              12th grade   1.83  6.003937
## 5697             14 years old   Male               9th grade   1.65  5.413386
## 5698    18 years old or older Female              12th grade   1.57  5.150919
## 5699             14 years old Female               9th grade   1.52  4.986877
## 5700    18 years old or older   Male              12th grade   1.68  5.511811
## 5701    18 years old or older Female              12th grade   1.60  5.249344
## 5702             14 years old Female               9th grade   1.63  5.347769
## 5703    18 years old or older Female              12th grade   1.68  5.511811
## 5704             14 years old Female               9th grade   1.68  5.511811
## 5705    18 years old or older   Male              12th grade   1.70  5.577428
## 5706    18 years old or older   Male              12th grade   1.65  5.413386
## 5707             15 years old   Male               9th grade   1.68  5.511811
## 5708    18 years old or older   Male              12th grade   1.96  6.430446
## 5709             15 years old Female               9th grade   1.57  5.150919
## 5710    18 years old or older Female              12th grade   1.60  5.249344
## 5711    18 years old or older   Male              12th grade   1.80  5.905512
## 5712    18 years old or older   Male              12th grade   1.78  5.839895
## 5713             15 years old   Male               9th grade   1.75  5.741470
## 5714             16 years old   Male               9th grade   1.73  5.675853
## 5715    18 years old or older   Male              12th grade   1.78  5.839895
## 5716    18 years old or older   Male              12th grade   1.83  6.003937
## 5717             15 years old   Male               9th grade   1.63  5.347769
## 5718             17 years old   Male              11th grade   1.83  6.003937
## 5719             16 years old Female              10th grade   1.63  5.347769
## 5720             16 years old Female              10th grade     NA        NA
## 5721             17 years old Female              11th grade   1.63  5.347769
## 5722             16 years old Female              10th grade   1.63  5.347769
## 5723             16 years old Female              10th grade   1.65  5.413386
## 5724             17 years old   Male              11th grade   1.75  5.741470
## 5725             17 years old Female              11th grade   1.60  5.249344
## 5726             16 years old Female              10th grade   1.63  5.347769
## 5727             15 years old   Male              10th grade   1.80  5.905512
## 5728             16 years old   Male              11th grade   1.78  5.839895
## 5729             17 years old   Male              11th grade   1.65  5.413386
## 5730             15 years old Female              10th grade   1.70  5.577428
## 5731             15 years old   Male              10th grade   1.78  5.839895
## 5732             16 years old Female              11th grade   1.68  5.511811
## 5733             17 years old Female              11th grade   1.57  5.150919
## 5734             16 years old   Male              10th grade   1.80  5.905512
## 5735             16 years old   Male              10th grade   1.83  6.003937
## 5736             15 years old Female              10th grade   1.75  5.741470
## 5737             17 years old Female              11th grade     NA        NA
## 5738             16 years old Female              10th grade     NA        NA
## 5739             17 years old Female              11th grade   1.70  5.577428
## 5740             17 years old   Male              11th grade   1.70  5.577428
## 5741             16 years old   Male              10th grade   1.68  5.511811
## 5742             16 years old   Male              10th grade   1.78  5.839895
## 5743    18 years old or older   Male              12th grade     NA        NA
## 5744             15 years old Female               9th grade   1.70  5.577428
## 5745             15 years old Female              10th grade   1.80  5.905512
## 5746             16 years old   Male              11th grade   1.70  5.577428
## 5747             17 years old   Male              11th grade     NA        NA
## 5748             16 years old Female              10th grade   1.65  5.413386
## 5749             16 years old   Male              10th grade   1.73  5.675853
## 5750             17 years old   Male              11th grade   1.83  6.003937
## 5751             16 years old   Male              11th grade   1.78  5.839895
## 5752             15 years old Female              10th grade   1.63  5.347769
## 5753             16 years old Female              10th grade   1.57  5.150919
## 5754             17 years old Female              12th grade   1.55  5.085302
## 5755             15 years old Female              10th grade   1.60  5.249344
## 5756             15 years old Female              10th grade   1.55  5.085302
## 5757             17 years old   Male              11th grade   1.73  5.675853
## 5758             16 years old   Male              10th grade     NA        NA
## 5759             15 years old Female              10th grade   1.57  5.150919
## 5760             16 years old   Male              11th grade   1.78  5.839895
## 5761             16 years old Female              11th grade   1.63  5.347769
## 5762             17 years old   Male              11th grade   1.78  5.839895
## 5763             17 years old Female              10th grade   1.55  5.085302
## 5764             15 years old Female              10th grade   1.63  5.347769
## 5765             15 years old Female              10th grade   1.68  5.511811
## 5766             16 years old   Male              10th grade   1.73  5.675853
## 5767             17 years old   Male              11th grade   1.78  5.839895
## 5768             15 years old Female               9th grade   1.65  5.413386
## 5769             15 years old   Male               9th grade   1.73  5.675853
## 5770             15 years old Female               9th grade   1.68  5.511811
## 5771             15 years old   Male               9th grade   1.68  5.511811
## 5772             15 years old Female               9th grade   1.65  5.413386
## 5773             14 years old Female               9th grade   1.55  5.085302
## 5774             15 years old   Male               9th grade   1.70  5.577428
## 5775             15 years old Female               9th grade   1.60  5.249344
## 5776             15 years old   Male               9th grade   1.83  6.003937
## 5777             15 years old Female               9th grade   1.57  5.150919
## 5778             15 years old Female               9th grade   1.60  5.249344
## 5779             15 years old Female               9th grade   1.65  5.413386
## 5780             15 years old Female               9th grade   1.50  4.921260
## 5781             14 years old Female               9th grade   1.65  5.413386
## 5782             15 years old Female               9th grade   1.75  5.741470
## 5783             14 years old Female               9th grade   1.65  5.413386
## 5784             15 years old Female               9th grade   1.63  5.347769
## 5785             15 years old Female               9th grade   1.55  5.085302
## 5786             15 years old Female               9th grade     NA        NA
## 5787             17 years old Female              12th grade   1.63  5.347769
## 5788             17 years old   Male              12th grade   1.80  5.905512
## 5789             17 years old   Male              12th grade   1.68  5.511811
## 5790             17 years old   Male              12th grade   1.83  6.003937
## 5791    18 years old or older   Male              12th grade   1.85  6.069554
## 5792             17 years old   Male              12th grade   1.75  5.741470
## 5793             17 years old   Male              12th grade   1.75  5.741470
## 5794             17 years old   Male              12th grade   1.80  5.905512
## 5795             17 years old   Male              12th grade   1.85  6.069554
## 5796    18 years old or older   Male              12th grade   1.73  5.675853
## 5797             17 years old Female              12th grade   1.57  5.150919
## 5798             17 years old Female              12th grade   1.60  5.249344
## 5799             17 years old Female              12th grade   1.57  5.150919
## 5800             17 years old Female              12th grade   1.73  5.675853
## 5801             17 years old Female              12th grade   1.63  5.347769
## 5802             17 years old Female              12th grade   1.65  5.413386
## 5803             17 years old   Male              12th grade   1.57  5.150919
## 5804             17 years old Female              11th grade   1.63  5.347769
## 5805             14 years old Female               9th grade     NA        NA
## 5806             17 years old Female              10th grade   1.63  5.347769
## 5807             16 years old Female               9th grade   1.63  5.347769
## 5808             17 years old Female              12th grade   1.63  5.347769
## 5809             16 years old   Male               9th grade     NA        NA
## 5810             15 years old Female              10th grade   1.60  5.249344
## 5811    18 years old or older Female              12th grade   1.52  4.986877
## 5812             15 years old Female              10th grade   1.57  5.150919
## 5813             16 years old   Male              11th grade   1.75  5.741470
## 5814    18 years old or older Female              12th grade     NA        NA
## 5815             14 years old Female               9th grade   1.60  5.249344
## 5816             17 years old   Male              11th grade   1.75  5.741470
## 5817             17 years old   Male              12th grade   1.75  5.741470
## 5818             16 years old Female              11th grade   1.63  5.347769
## 5819             17 years old Female              12th grade   1.75  5.741470
## 5820             16 years old   Male              10th grade   1.78  5.839895
## 5821    18 years old or older   Male              10th grade   1.88  6.167979
## 5822             17 years old Female              12th grade   1.55  5.085302
## 5823             17 years old Female              12th grade   1.68  5.511811
## 5824             16 years old   Male              10th grade   1.73  5.675853
## 5825             15 years old Female              10th grade   1.78  5.839895
## 5826             16 years old Female              11th grade   1.52  4.986877
## 5827    18 years old or older   Male              12th grade   1.65  5.413386
## 5828    18 years old or older   Male              12th grade   1.75  5.741470
## 5829             17 years old   Male              11th grade   1.83  6.003937
## 5830             15 years old Female              10th grade   1.78  5.839895
## 5831             17 years old   Male              11th grade   1.75  5.741470
## 5832                     <NA>   Male              12th grade     NA        NA
## 5833             15 years old   Male               9th grade   1.70  5.577428
## 5834    18 years old or older   Male              12th grade     NA        NA
## 5835             17 years old   Male              12th grade   1.78  5.839895
## 5836             15 years old Female              10th grade   1.63  5.347769
## 5837             17 years old   Male              11th grade   1.73  5.675853
## 5838                     <NA>   Male              11th grade     NA        NA
## 5839             17 years old Female              11th grade   1.55  5.085302
## 5840             16 years old Female              11th grade   1.57  5.150919
## 5841             15 years old   Male              10th grade   1.75  5.741470
## 5842             17 years old Female              11th grade   1.60  5.249344
## 5843             15 years old   Male               9th grade   1.80  5.905512
## 5844             16 years old   Male              10th grade   1.73  5.675853
## 5845             17 years old   Male              11th grade   1.73  5.675853
## 5846    18 years old or older Female              12th grade   1.63  5.347769
## 5847             16 years old Female              10th grade   1.57  5.150919
## 5848             16 years old   Male              10th grade   1.83  6.003937
## 5849             14 years old Female               9th grade   1.63  5.347769
## 5850    18 years old or older Female              12th grade   1.63  5.347769
## 5851             16 years old Female              11th grade   1.63  5.347769
## 5852    18 years old or older   Male              12th grade   1.78  5.839895
## 5853             16 years old Female              10th grade   1.57  5.150919
## 5854             15 years old   Male               9th grade   1.80  5.905512
## 5855             16 years old   Male              11th grade   1.73  5.675853
## 5856             16 years old   Male              10th grade   1.73  5.675853
## 5857             15 years old Female               9th grade   1.65  5.413386
## 5858    18 years old or older Female              12th grade   1.68  5.511811
## 5859             15 years old   Male              10th grade   1.80  5.905512
## 5860    18 years old or older Female              12th grade   1.68  5.511811
## 5861             16 years old Female              11th grade   1.70  5.577428
## 5862             15 years old Female              10th grade   1.57  5.150919
## 5863    18 years old or older   Male              12th grade   1.80  5.905512
## 5864    18 years old or older   Male              12th grade   1.90  6.233596
## 5865             15 years old Female              10th grade   1.68  5.511811
## 5866             17 years old   Male              12th grade   1.83  6.003937
## 5867             17 years old Female              11th grade     NA        NA
## 5868             16 years old Female              11th grade   1.57  5.150919
## 5869             15 years old   Male              10th grade   1.90  6.233596
## 5870             17 years old   Male              11th grade   1.78  5.839895
## 5871             16 years old Female              10th grade   1.65  5.413386
## 5872    18 years old or older Female              12th grade   1.65  5.413386
## 5873    18 years old or older   Male              12th grade   1.78  5.839895
## 5874             14 years old Female               9th grade   1.55  5.085302
## 5875             15 years old   Male               9th grade   1.70  5.577428
## 5876             16 years old Female              11th grade   1.63  5.347769
## 5877             16 years old Female              10th grade   1.65  5.413386
## 5878             15 years old Female              10th grade   1.78  5.839895
## 5879             15 years old Female               9th grade     NA        NA
## 5880             15 years old Female              10th grade   1.70  5.577428
## 5881             16 years old Female              11th grade   1.63  5.347769
## 5882             15 years old   Male              10th grade   1.75  5.741470
## 5883             17 years old Female              12th grade     NA        NA
## 5884    18 years old or older   Male              12th grade   1.80  5.905512
## 5885    18 years old or older Female Ungraded or other grade   1.65  5.413386
## 5886             17 years old Female              11th grade     NA        NA
## 5887             16 years old Female              10th grade   1.57  5.150919
## 5888             16 years old Female              11th grade   1.60  5.249344
## 5889             16 years old Female              10th grade   1.65  5.413386
## 5890    18 years old or older Female              12th grade   1.73  5.675853
## 5891             16 years old Female               9th grade     NA        NA
## 5892             15 years old Female               9th grade   1.73  5.675853
## 5893             17 years old Female              11th grade   1.63  5.347769
## 5894             16 years old Female              10th grade   1.68  5.511811
## 5895             16 years old Female              11th grade   1.52  4.986877
## 5896             16 years old Female              10th grade   1.60  5.249344
## 5897             17 years old Female              12th grade   1.60  5.249344
## 5898             15 years old Female               9th grade   1.65  5.413386
## 5899             15 years old   Male               9th grade     NA        NA
## 5900             16 years old Female              11th grade   1.68  5.511811
## 5901             16 years old Female              10th grade   1.60  5.249344
## 5902             17 years old   Male              12th grade   1.73  5.675853
## 5903    18 years old or older   Male              12th grade   1.83  6.003937
## 5904             15 years old Female               9th grade   1.80  5.905512
## 5905             15 years old   Male               9th grade   1.75  5.741470
## 5906             17 years old   Male              11th grade   1.70  5.577428
## 5907             15 years old Female              10th grade   1.65  5.413386
## 5908             16 years old Female              11th grade   1.80  5.905512
## 5909             16 years old Female              10th grade   1.70  5.577428
## 5910    18 years old or older   Male              12th grade   1.78  5.839895
## 5911             15 years old Female               9th grade   1.75  5.741470
## 5912             14 years old Female               9th grade   1.57  5.150919
## 5913    18 years old or older   Male              11th grade   1.73  5.675853
## 5914             16 years old Female              10th grade   1.57  5.150919
## 5915             16 years old Female              11th grade     NA        NA
## 5916             15 years old Female              10th grade   1.73  5.675853
## 5917             17 years old Female              12th grade   1.63  5.347769
## 5918             17 years old Female              11th grade   1.63  5.347769
## 5919             15 years old   Male              10th grade   1.73  5.675853
## 5920             14 years old   Male               9th grade   1.90  6.233596
## 5921             16 years old Female              12th grade   1.60  5.249344
## 5922             16 years old   Male              10th grade   1.75  5.741470
## 5923             16 years old   Male              11th grade     NA        NA
## 5924             16 years old Female              10th grade   1.60  5.249344
## 5925    18 years old or older Female              12th grade   1.63  5.347769
## 5926    18 years old or older Female              12th grade   1.60  5.249344
## 5927             17 years old   Male              11th grade   1.75  5.741470
## 5928             15 years old   Male               9th grade   1.85  6.069554
## 5929             17 years old   Male              11th grade   1.78  5.839895
## 5930             16 years old   Male              10th grade   1.78  5.839895
## 5931             16 years old Female              11th grade   1.68  5.511811
## 5932             15 years old Female              10th grade   1.55  5.085302
## 5933             17 years old   Male              12th grade   1.73  5.675853
## 5934    18 years old or older Female              12th grade   1.68  5.511811
## 5935             15 years old Female               9th grade   1.63  5.347769
## 5936             16 years old   Male              11th grade   1.83  6.003937
## 5937             16 years old Female              11th grade   1.70  5.577428
## 5938             15 years old   Male               9th grade   1.75  5.741470
## 5939             17 years old   Male              12th grade   1.80  5.905512
## 5940             17 years old   Male              12th grade   1.73  5.675853
## 5941             14 years old   Male               9th grade   1.75  5.741470
## 5942             15 years old   Male               9th grade   1.70  5.577428
## 5943             16 years old Female              11th grade   1.75  5.741470
## 5944             16 years old   Male              10th grade   1.73  5.675853
## 5945             16 years old   Male              11th grade   1.73  5.675853
## 5946             14 years old Female               9th grade   1.52  4.986877
## 5947    18 years old or older Female              12th grade   1.68  5.511811
## 5948             17 years old   Male              12th grade   1.75  5.741470
## 5949             15 years old Female               9th grade   1.65  5.413386
## 5950             16 years old   Male              10th grade   1.73  5.675853
## 5951    18 years old or older   Male              11th grade   1.78  5.839895
## 5952             16 years old   Male              10th grade   1.70  5.577428
## 5953             16 years old   Male              10th grade   1.73  5.675853
## 5954             16 years old   Male              10th grade   1.80  5.905512
## 5955             15 years old   Male              10th grade   1.73  5.675853
## 5956             16 years old Female              10th grade   1.63  5.347769
## 5957             16 years old Female              10th grade   1.60  5.249344
## 5958    18 years old or older   Male              12th grade   1.75  5.741470
## 5959             16 years old Female              10th grade   1.63  5.347769
## 5960    18 years old or older   Male              12th grade   1.73  5.675853
## 5961    18 years old or older   Male              12th grade   1.85  6.069554
## 5962             15 years old Female               9th grade   1.63  5.347769
## 5963             14 years old Female               9th grade   1.68  5.511811
## 5964             17 years old   Male              12th grade   1.83  6.003937
## 5965             17 years old   Male              10th grade   1.68  5.511811
## 5966             16 years old Female              10th grade   1.57  5.150919
## 5967    18 years old or older Female              12th grade   1.78  5.839895
## 5968    18 years old or older   Male              12th grade   1.80  5.905512
## 5969             15 years old Female               9th grade   1.55  5.085302
## 5970             15 years old   Male               9th grade   1.68  5.511811
## 5971             16 years old   Male              11th grade   1.70  5.577428
## 5972             17 years old Female              11th grade     NA        NA
## 5973             16 years old Female              10th grade   1.57  5.150919
## 5974    18 years old or older Female              12th grade     NA        NA
## 5975             17 years old   Male              12th grade   1.88  6.167979
## 5976             15 years old Female               9th grade     NA        NA
## 5977             14 years old   Male               9th grade   1.68  5.511811
## 5978             16 years old Female              10th grade   1.68  5.511811
## 5979             16 years old   Male              10th grade   1.75  5.741470
## 5980             16 years old   Male              10th grade   1.78  5.839895
## 5981             15 years old   Male              10th grade   1.70  5.577428
## 5982             15 years old Female              10th grade   1.73  5.675853
## 5983             16 years old Female              11th grade   1.63  5.347769
## 5984             14 years old   Male               9th grade   1.83  6.003937
## 5985             17 years old Female              11th grade   1.73  5.675853
## 5986             15 years old Female              10th grade   1.65  5.413386
## 5987             17 years old Female              11th grade   1.68  5.511811
## 5988    18 years old or older Female              12th grade   1.63  5.347769
## 5989    18 years old or older Female              12th grade   1.57  5.150919
## 5990             14 years old   Male               9th grade   1.73  5.675853
## 5991             15 years old   Male               9th grade   1.73  5.675853
## 5992             17 years old   Male              11th grade   1.70  5.577428
## 5993             17 years old Female              11th grade   1.57  5.150919
## 5994             16 years old Female              10th grade     NA        NA
## 5995             15 years old   Male              11th grade   1.80  5.905512
## 5996             16 years old Female              11th grade   1.68  5.511811
## 5997             15 years old   Male               9th grade   1.70  5.577428
## 5998    18 years old or older Female              12th grade   1.60  5.249344
## 5999             17 years old   Male              12th grade   1.78  5.839895
## 6000             17 years old   Male              10th grade   1.73  5.675853
## 6001             14 years old Female               9th grade   1.70  5.577428
## 6002             17 years old Female              12th grade   1.63  5.347769
## 6003    18 years old or older Female              12th grade   1.60  5.249344
## 6004             16 years old   Male              10th grade   1.70  5.577428
## 6005             17 years old   Male              11th grade   1.78  5.839895
## 6006    18 years old or older Female              11th grade   1.42  4.658793
## 6007             17 years old   Male              12th grade   1.68  5.511811
## 6008             17 years old Female              11th grade   1.60  5.249344
## 6009             15 years old   Male               9th grade   1.73  5.675853
## 6010             17 years old Female              12th grade   1.52  4.986877
## 6011             17 years old Female              12th grade   1.63  5.347769
## 6012             16 years old   Male              10th grade   1.83  6.003937
## 6013             16 years old   Male              11th grade   1.70  5.577428
## 6014             17 years old   Male              11th grade   1.75  5.741470
## 6015             17 years old   Male              12th grade   1.68  5.511811
## 6016             17 years old   Male              12th grade   1.80  5.905512
## 6017             17 years old   Male              10th grade     NA        NA
## 6018             17 years old   Male              11th grade   1.55  5.085302
## 6019             17 years old   Male              11th grade   1.78  5.839895
## 6020    18 years old or older Female              12th grade   1.55  5.085302
## 6021             16 years old   Male              10th grade   1.80  5.905512
## 6022    18 years old or older   Male              11th grade   1.88  6.167979
## 6023             16 years old   Male              11th grade   1.85  6.069554
## 6024             15 years old Female               9th grade   1.52  4.986877
## 6025             17 years old Female              12th grade   1.63  5.347769
## 6026             16 years old   Male               9th grade     NA        NA
## 6027             16 years old Female              11th grade   1.63  5.347769
## 6028             17 years old   Male              11th grade   1.85  6.069554
## 6029             16 years old   Male               9th grade   1.78  5.839895
## 6030             17 years old   Male              11th grade   1.75  5.741470
## 6031             17 years old   Male              11th grade   1.80  5.905512
## 6032             15 years old   Male               9th grade   1.78  5.839895
## 6033             17 years old Female              12th grade   1.60  5.249344
## 6034             17 years old Female              11th grade   1.57  5.150919
## 6035             14 years old Female               9th grade   1.55  5.085302
## 6036             17 years old Female              12th grade   1.60  5.249344
## 6037    18 years old or older Female              12th grade   1.68  5.511811
## 6038             16 years old   Male              10th grade   1.73  5.675853
## 6039             17 years old Female              11th grade   1.63  5.347769
## 6040             17 years old Female              11th grade   1.63  5.347769
## 6041    18 years old or older Female              12th grade   1.57  5.150919
## 6042             17 years old   Male              11th grade   1.80  5.905512
## 6043             17 years old   Male              11th grade   1.88  6.167979
## 6044             15 years old   Male               9th grade   1.83  6.003937
## 6045    18 years old or older Female              12th grade   1.57  5.150919
## 6046    18 years old or older Female              12th grade   1.65  5.413386
## 6047             15 years old   Male              10th grade   1.73  5.675853
## 6048             15 years old Female               9th grade   1.65  5.413386
## 6049             16 years old   Male              10th grade   1.80  5.905512
## 6050             14 years old Female               9th grade   1.57  5.150919
## 6051             16 years old   Male              10th grade   1.78  5.839895
## 6052             17 years old   Male              11th grade   1.75  5.741470
## 6053             17 years old   Male                    <NA>   2.03  6.660105
## 6054             17 years old   Male              12th grade   1.80  5.905512
## 6055             17 years old Female              12th grade   1.60  5.249344
## 6056             15 years old Female               9th grade     NA        NA
## 6057             16 years old Female              10th grade   1.63  5.347769
## 6058             15 years old   Male               9th grade   1.68  5.511811
## 6059             16 years old   Male              10th grade   1.80  5.905512
## 6060             15 years old   Male               9th grade   1.80  5.905512
## 6061             16 years old Female              10th grade   1.78  5.839895
## 6062             16 years old   Male               9th grade   1.83  6.003937
## 6063             16 years old   Male              10th grade   1.73  5.675853
## 6064             17 years old   Male              10th grade   1.60  5.249344
## 6065             15 years old   Male               9th grade   1.75  5.741470
## 6066             15 years old Female               9th grade   1.55  5.085302
## 6067             14 years old Female               9th grade   1.57  5.150919
## 6068             16 years old Female              10th grade   1.63  5.347769
## 6069             15 years old   Male               9th grade     NA        NA
## 6070             16 years old Female              10th grade   1.68  5.511811
## 6071             14 years old Female               9th grade     NA        NA
## 6072             16 years old Female              10th grade   1.60  5.249344
## 6073             14 years old Female               9th grade   1.68  5.511811
## 6074             15 years old   Male              10th grade   1.73  5.675853
## 6075             14 years old   Male               9th grade   1.80  5.905512
## 6076             15 years old Female              10th grade   1.63  5.347769
## 6077             15 years old   Male              10th grade   1.63  5.347769
## 6078             15 years old   Male              10th grade   1.73  5.675853
## 6079             16 years old   Male              10th grade   1.65  5.413386
## 6080             16 years old Female              10th grade   1.52  4.986877
## 6081             17 years old Female              12th grade   1.60  5.249344
## 6082             17 years old Female              11th grade   1.57  5.150919
## 6083             15 years old   Male               9th grade   1.65  5.413386
## 6084             16 years old Female              10th grade     NA        NA
## 6085             17 years old   Male              12th grade   1.83  6.003937
## 6086             16 years old   Male              11th grade   1.78  5.839895
## 6087    18 years old or older   Male              12th grade   1.85  6.069554
## 6088             16 years old   Male               9th grade   1.80  5.905512
## 6089             15 years old Female              10th grade   1.65  5.413386
## 6090             15 years old Female               9th grade   1.63  5.347769
## 6091             15 years old Female              10th grade     NA        NA
## 6092             17 years old Female              12th grade   1.73  5.675853
## 6093             16 years old   Male              11th grade   1.78  5.839895
## 6094             16 years old Female              11th grade   1.55  5.085302
## 6095    18 years old or older Female              12th grade   1.65  5.413386
## 6096             15 years old Female               9th grade   1.68  5.511811
## 6097    18 years old or older Female              12th grade   1.55  5.085302
## 6098    18 years old or older   Male              11th grade   1.73  5.675853
## 6099             15 years old   Male               9th grade   1.68  5.511811
## 6100             15 years old Female               9th grade   1.68  5.511811
## 6101             16 years old   Male              10th grade     NA        NA
## 6102             15 years old Female              10th grade   1.52  4.986877
## 6103             16 years old Female               9th grade     NA        NA
## 6104             16 years old   Male              10th grade   1.93  6.332021
## 6105             15 years old   Male              10th grade   1.73  5.675853
## 6106    18 years old or older Female              12th grade   1.57  5.150919
## 6107             16 years old Female              11th grade   1.68  5.511811
## 6108             17 years old   Male              11th grade   1.73  5.675853
## 6109             17 years old Female              12th grade   1.57  5.150919
## 6110             14 years old Female               9th grade   1.60  5.249344
## 6111             16 years old Female              10th grade   1.52  4.986877
## 6112    18 years old or older   Male              12th grade   1.80  5.905512
## 6113    18 years old or older   Male              12th grade   1.83  6.003937
## 6114             17 years old Female              11th grade   1.52  4.986877
## 6115             15 years old   Male               9th grade   1.70  5.577428
## 6116             14 years old   Male               9th grade   1.78  5.839895
## 6117             16 years old Female              10th grade   1.80  5.905512
## 6118             17 years old   Male              10th grade   1.88  6.167979
## 6119             17 years old Female              12th grade   1.60  5.249344
## 6120             17 years old   Male              11th grade   1.70  5.577428
## 6121             14 years old Female               9th grade     NA        NA
## 6122             15 years old   Male              10th grade   1.70  5.577428
## 6123    18 years old or older Female              12th grade   1.60  5.249344
## 6124             17 years old Female              12th grade   1.52  4.986877
## 6125             15 years old   Male               9th grade   1.73  5.675853
## 6126             16 years old   Male              10th grade   1.70  5.577428
## 6127             16 years old   Male              10th grade   1.65  5.413386
## 6128             17 years old   Male              12th grade   1.80  5.905512
## 6129             17 years old   Male              11th grade   1.78  5.839895
## 6130             17 years old Female              11th grade   1.63  5.347769
## 6131             17 years old   Male              12th grade   1.78  5.839895
## 6132             15 years old   Male               9th grade   1.80  5.905512
## 6133             15 years old Female              10th grade     NA        NA
## 6134             16 years old   Male              10th grade   1.78  5.839895
## 6135             15 years old Female               9th grade   1.57  5.150919
## 6136    18 years old or older   Male              12th grade   1.73  5.675853
## 6137             17 years old   Male               9th grade     NA        NA
## 6138             15 years old   Male              10th grade   1.75  5.741470
## 6139    18 years old or older   Male              12th grade   1.75  5.741470
## 6140             17 years old   Male              11th grade   1.75  5.741470
## 6141             14 years old   Male               9th grade     NA        NA
## 6142             16 years old Female               9th grade   1.57  5.150919
## 6143             16 years old   Male              10th grade   1.65  5.413386
## 6144             14 years old Female              10th grade   1.70  5.577428
## 6145    18 years old or older Female              12th grade     NA        NA
## 6146             17 years old   Male              11th grade   1.75  5.741470
## 6147             14 years old Female               9th grade   1.68  5.511811
## 6148             16 years old Female              10th grade   1.63  5.347769
## 6149    18 years old or older Female              12th grade   1.65  5.413386
## 6150             17 years old   Male              12th grade   1.78  5.839895
## 6151             14 years old Female               9th grade   1.63  5.347769
## 6152             15 years old Female               9th grade   1.68  5.511811
## 6153             16 years old Female              10th grade   1.68  5.511811
## 6154             17 years old   Male              10th grade   1.68  5.511811
## 6155    18 years old or older Female              12th grade   1.60  5.249344
## 6156             16 years old   Male              11th grade   1.78  5.839895
## 6157             17 years old Female              11th grade   1.70  5.577428
## 6158    18 years old or older Female              12th grade   1.57  5.150919
## 6159             14 years old Female               9th grade     NA        NA
## 6160             15 years old Female               9th grade     NA        NA
## 6161             15 years old Female              10th grade   1.60  5.249344
## 6162             17 years old   Male              12th grade   1.78  5.839895
## 6163             16 years old   Male              11th grade   1.73  5.675853
## 6164    18 years old or older   Male              12th grade   1.90  6.233596
## 6165             16 years old   Male               9th grade     NA        NA
## 6166             17 years old   Male              12th grade   1.68  5.511811
## 6167             17 years old   Male              12th grade   1.73  5.675853
## 6168             17 years old Female              11th grade   1.65  5.413386
## 6169    18 years old or older   Male              12th grade   1.68  5.511811
## 6170             15 years old   Male               9th grade   1.65  5.413386
## 6171             15 years old Female               9th grade   1.55  5.085302
## 6172             15 years old   Male              10th grade   1.75  5.741470
## 6173             16 years old Female              10th grade   1.57  5.150919
## 6174    18 years old or older   Male              12th grade   1.88  6.167979
## 6175             16 years old   Male              11th grade   1.83  6.003937
## 6176             17 years old   Male              11th grade   1.85  6.069554
## 6177    18 years old or older   Male              12th grade   1.68  5.511811
## 6178             15 years old Female               9th grade   1.65  5.413386
## 6179             15 years old   Male              10th grade   1.78  5.839895
## 6180             16 years old Female              10th grade   1.60  5.249344
## 6181    18 years old or older Female              12th grade   1.63  5.347769
## 6182             16 years old Female              11th grade   1.57  5.150919
## 6183             16 years old Female              10th grade   1.47  4.822835
## 6184    18 years old or older Female              12th grade   1.57  5.150919
## 6185             14 years old Female               9th grade   1.52  4.986877
## 6186             17 years old   Male              12th grade   1.73  5.675853
## 6187             16 years old   Male              11th grade   1.83  6.003937
## 6188    18 years old or older Female              11th grade   1.63  5.347769
## 6189    18 years old or older   Male              12th grade   1.80  5.905512
## 6190             15 years old   Male               9th grade   1.52  4.986877
## 6191    18 years old or older   Male              12th grade   1.75  5.741470
## 6192             17 years old   Male              11th grade     NA        NA
## 6193             16 years old   Male              11th grade   1.88  6.167979
## 6194             17 years old   Male              12th grade   1.75  5.741470
## 6195             15 years old Female               9th grade   1.63  5.347769
## 6196             16 years old Female              10th grade   1.75  5.741470
## 6197             15 years old Female              10th grade   1.63  5.347769
## 6198             17 years old   Male              12th grade   1.73  5.675853
## 6199             17 years old Female              10th grade   1.60  5.249344
## 6200             17 years old   Male              11th grade   1.88  6.167979
## 6201             16 years old Female              11th grade   1.70  5.577428
## 6202             15 years old Female               9th grade   1.73  5.675853
## 6203             17 years old   Male              12th grade   1.75  5.741470
## 6204    18 years old or older Female              12th grade   1.68  5.511811
## 6205    18 years old or older Female              12th grade   1.63  5.347769
## 6206    18 years old or older   Male              12th grade   1.75  5.741470
## 6207    18 years old or older Female              12th grade   1.60  5.249344
## 6208             16 years old   Male              10th grade   1.85  6.069554
## 6209             16 years old Female              10th grade   1.60  5.249344
## 6210    18 years old or older Female              12th grade   1.65  5.413386
## 6211             17 years old   Male              11th grade   1.75  5.741470
## 6212             15 years old   Male               9th grade     NA        NA
## 6213             17 years old   Male              12th grade   1.83  6.003937
## 6214             16 years old   Male              10th grade   1.60  5.249344
## 6215    18 years old or older Female              11th grade   1.60  5.249344
## 6216             17 years old   Male              11th grade   1.75  5.741470
## 6217             14 years old Female               9th grade   1.68  5.511811
## 6218             16 years old   Male              10th grade   1.73  5.675853
## 6219             15 years old Female              10th grade     NA        NA
## 6220             17 years old   Male              11th grade   1.85  6.069554
## 6221             17 years old Female              11th grade   1.65  5.413386
## 6222             15 years old Female                    <NA>     NA        NA
## 6223             16 years old   Male              10th grade   1.70  5.577428
## 6224             16 years old   Male              10th grade   1.68  5.511811
## 6225    18 years old or older   Male              12th grade   1.73  5.675853
## 6226             16 years old Female              11th grade   1.63  5.347769
## 6227             16 years old   Male              10th grade   1.78  5.839895
## 6228             16 years old   Male              10th grade   1.78  5.839895
## 6229             16 years old Female              10th grade   1.57  5.150919
## 6230    18 years old or older   Male              12th grade   1.80  5.905512
## 6231             16 years old Female              11th grade   1.57  5.150919
## 6232             17 years old   Male              10th grade   1.65  5.413386
## 6233    18 years old or older Female              12th grade   1.65  5.413386
## 6234             15 years old   Male               9th grade   1.73  5.675853
## 6235             17 years old   Male              11th grade   1.73  5.675853
## 6236             17 years old   Male              11th grade   1.73  5.675853
## 6237             16 years old   Male              10th grade   1.70  5.577428
## 6238             16 years old Female              11th grade   1.52  4.986877
## 6239             15 years old   Male              10th grade   1.73  5.675853
## 6240             15 years old   Male              10th grade   1.75  5.741470
## 6241             16 years old   Male              10th grade     NA        NA
## 6242    18 years old or older   Male              12th grade   1.80  5.905512
## 6243             16 years old   Male              11th grade   1.75  5.741470
## 6244             17 years old Female              11th grade   1.60  5.249344
## 6245    18 years old or older   Male              12th grade   1.73  5.675853
## 6246             16 years old   Male              10th grade   1.78  5.839895
## 6247             15 years old   Male              10th grade   1.83  6.003937
## 6248    18 years old or older   Male              12th grade   1.68  5.511811
## 6249             17 years old Female              11th grade     NA        NA
## 6250             17 years old Female              11th grade   1.60  5.249344
## 6251             15 years old   Male               9th grade   1.68  5.511811
## 6252             17 years old Female              12th grade   1.65  5.413386
## 6253             15 years old   Male              10th grade     NA        NA
## 6254             15 years old Female              10th grade     NA        NA
## 6255    18 years old or older Female              12th grade   1.70  5.577428
## 6256             17 years old Female              11th grade   1.57  5.150919
## 6257             16 years old Female              11th grade     NA        NA
## 6258             16 years old Female               9th grade   1.63  5.347769
## 6259    18 years old or older Female              12th grade   1.65  5.413386
## 6260             16 years old Female              10th grade     NA        NA
## 6261    18 years old or older   Male              12th grade   1.68  5.511811
## 6262             17 years old   Male              10th grade   1.65  5.413386
## 6263             14 years old Female               9th grade   1.70  5.577428
## 6264             16 years old Female              10th grade     NA        NA
## 6265             15 years old Female              10th grade     NA        NA
## 6266             17 years old Female              12th grade   1.57  5.150919
## 6267             16 years old   Male              11th grade   1.78  5.839895
## 6268             16 years old Female              11th grade   1.68  5.511811
## 6269             14 years old Female               9th grade   1.55  5.085302
## 6270             17 years old Female              12th grade   1.63  5.347769
## 6271             16 years old Female              10th grade   1.60  5.249344
## 6272             16 years old   Male              10th grade   1.78  5.839895
## 6273                     <NA>   Male              10th grade     NA        NA
## 6274    18 years old or older Female              11th grade     NA        NA
## 6275             15 years old Female               9th grade     NA        NA
## 6276    18 years old or older   Male              12th grade   1.63  5.347769
## 6277             16 years old Female              10th grade     NA        NA
## 6278             17 years old Female              11th grade   1.57  5.150919
## 6279             17 years old   Male              11th grade   1.78  5.839895
## 6280    18 years old or older   Male              12th grade   1.78  5.839895
## 6281             15 years old   Male              10th grade   1.90  6.233596
## 6282             16 years old Female              10th grade   1.65  5.413386
## 6283    18 years old or older Female              11th grade   1.65  5.413386
## 6284             17 years old   Male              11th grade   1.73  5.675853
## 6285             16 years old Female               9th grade   1.63  5.347769
## 6286    18 years old or older   Male              12th grade   1.68  5.511811
## 6287             15 years old   Male              10th grade   1.75  5.741470
## 6288    18 years old or older   Male              11th grade   1.83  6.003937
## 6289             17 years old Female              11th grade   1.63  5.347769
## 6290             17 years old   Male              10th grade   1.83  6.003937
## 6291    18 years old or older Female              12th grade   1.68  5.511811
## 6292             17 years old Female              11th grade   1.57  5.150919
## 6293             16 years old   Male              11th grade   1.80  5.905512
## 6294             15 years old Female              10th grade     NA        NA
## 6295             17 years old Female              12th grade   1.68  5.511811
## 6296             16 years old Female              11th grade   1.57  5.150919
## 6297             16 years old   Male              10th grade   1.83  6.003937
## 6298             16 years old Female              10th grade   1.63  5.347769
## 6299    18 years old or older Female              12th grade   1.63  5.347769
## 6300             17 years old   Male              11th grade     NA        NA
## 6301             16 years old Female              10th grade   1.60  5.249344
## 6302    18 years old or older Female              12th grade   1.57  5.150919
## 6303             17 years old Female              11th grade     NA        NA
## 6304             16 years old   Male              10th grade     NA        NA
## 6305             16 years old Female              10th grade   1.65  5.413386
## 6306    18 years old or older   Male              12th grade   1.73  5.675853
## 6307             15 years old   Male              10th grade   1.80  5.905512
## 6308    18 years old or older   Male              12th grade   1.75  5.741470
## 6309             16 years old Female              11th grade   1.65  5.413386
## 6310    18 years old or older Female              12th grade   1.73  5.675853
## 6311             15 years old   Male               9th grade   1.63  5.347769
## 6312             15 years old   Male               9th grade   1.65  5.413386
## 6313             15 years old   Male               9th grade   1.60  5.249344
## 6314             15 years old Female               9th grade   1.65  5.413386
## 6315             15 years old   Male               9th grade   1.75  5.741470
## 6316             14 years old Female               9th grade     NA        NA
## 6317             15 years old   Male               9th grade   1.75  5.741470
## 6318             14 years old Female               9th grade     NA        NA
## 6319             15 years old Female              10th grade     NA        NA
## 6320             15 years old Female               9th grade   1.68  5.511811
## 6321             15 years old Female               9th grade   1.60  5.249344
## 6322             14 years old Female               9th grade   1.60  5.249344
## 6323             14 years old   Male               9th grade   1.93  6.332021
## 6324             14 years old Female               9th grade   1.60  5.249344
## 6325             14 years old   Male               9th grade   1.75  5.741470
## 6326             14 years old Female               9th grade   1.60  5.249344
## 6327             17 years old Female              12th grade   1.60  5.249344
## 6328             14 years old Female               9th grade   1.75  5.741470
## 6329             15 years old   Male               9th grade   1.73  5.675853
## 6330             14 years old Female               9th grade   1.52  4.986877
## 6331             15 years old   Male               9th grade   1.73  5.675853
## 6332             14 years old Female               9th grade   1.65  5.413386
## 6333             16 years old   Male               9th grade     NA        NA
## 6334    18 years old or older Female              12th grade   1.60  5.249344
## 6335             17 years old   Male              12th grade   1.83  6.003937
## 6336             15 years old   Male              10th grade   1.80  5.905512
## 6337             14 years old   Male               9th grade     NA        NA
## 6338             17 years old Female              12th grade   1.55  5.085302
## 6339             15 years old   Male              10th grade   1.75  5.741470
## 6340             17 years old Female              12th grade   1.65  5.413386
## 6341             15 years old Female              10th grade     NA        NA
## 6342             16 years old   Male              11th grade   1.83  6.003937
## 6343             17 years old Female              12th grade   1.70  5.577428
## 6344             15 years old   Male               9th grade     NA        NA
## 6345             15 years old Female              10th grade   1.70  5.577428
## 6346             17 years old Female              12th grade   1.50  4.921260
## 6347             15 years old   Male              10th grade   1.68  5.511811
## 6348             17 years old Female              12th grade   1.63  5.347769
## 6349             16 years old Female              11th grade   1.63  5.347769
## 6350             16 years old Female              11th grade   1.75  5.741470
## 6351             14 years old Female               9th grade   1.55  5.085302
## 6352    18 years old or older Female              12th grade   1.55  5.085302
## 6353             17 years old Female              12th grade   1.52  4.986877
## 6354             15 years old Female              10th grade   1.60  5.249344
## 6355             16 years old Female              10th grade   1.57  5.150919
## 6356    18 years old or older   Male              12th grade   1.83  6.003937
## 6357             16 years old Female              11th grade   1.60  5.249344
## 6358             16 years old Female              11th grade   1.65  5.413386
## 6359             17 years old   Male              11th grade   1.93  6.332021
## 6360             16 years old Female              11th grade   1.60  5.249344
## 6361             16 years old Female              11th grade   1.57  5.150919
## 6362             15 years old Female              10th grade   1.75  5.741470
## 6363             16 years old   Male              11th grade   1.68  5.511811
## 6364             16 years old Female              11th grade   1.57  5.150919
## 6365             17 years old Female              12th grade   1.63  5.347769
## 6366             17 years old   Male              12th grade   1.63  5.347769
## 6367             15 years old Female              10th grade     NA        NA
## 6368             17 years old Female              12th grade   1.60  5.249344
## 6369             16 years old Female              11th grade   1.52  4.986877
## 6370             16 years old   Male              11th grade   1.70  5.577428
## 6371             14 years old   Male               9th grade   1.60  5.249344
## 6372             17 years old   Male              11th grade   1.85  6.069554
## 6373             16 years old Female              11th grade   1.50  4.921260
## 6374             15 years old   Male              10th grade   1.78  5.839895
## 6375             17 years old Female              11th grade   1.60  5.249344
## 6376             17 years old   Male              11th grade   1.68  5.511811
## 6377             16 years old   Male              11th grade   1.75  5.741470
## 6378             17 years old Female              12th grade   1.68  5.511811
## 6379             17 years old   Male              12th grade   1.73  5.675853
## 6380             16 years old   Male              11th grade   1.65  5.413386
## 6381             15 years old   Male              10th grade   1.78  5.839895
## 6382             16 years old   Male              11th grade   1.83  6.003937
## 6383             14 years old   Male               9th grade   1.73  5.675853
## 6384             14 years old Female               9th grade   1.63  5.347769
## 6385             14 years old Female               9th grade   1.57  5.150919
## 6386             16 years old Female              11th grade   1.60  5.249344
## 6387             15 years old   Male              10th grade   1.80  5.905512
## 6388             16 years old   Male              11th grade   1.80  5.905512
## 6389             16 years old Female              11th grade   1.60  5.249344
## 6390             17 years old   Male              12th grade   1.88  6.167979
## 6391             16 years old Female              11th grade   1.68  5.511811
## 6392             14 years old   Male               9th grade   1.60  5.249344
## 6393             16 years old   Male              10th grade   1.75  5.741470
## 6394             16 years old   Male              11th grade   1.63  5.347769
## 6395             14 years old Female               9th grade   1.57  5.150919
## 6396    18 years old or older Female              12th grade   1.55  5.085302
## 6397             17 years old   Male              11th grade   1.75  5.741470
## 6398             14 years old   Male               9th grade   1.75  5.741470
## 6399             17 years old Female              11th grade   1.55  5.085302
## 6400             17 years old Female              11th grade   1.63  5.347769
## 6401             16 years old Female              11th grade   1.52  4.986877
## 6402    18 years old or older Female              11th grade   1.57  5.150919
## 6403             17 years old   Male              12th grade   1.70  5.577428
## 6404             16 years old   Male              11th grade   1.88  6.167979
## 6405             16 years old Female              10th grade   1.50  4.921260
## 6406             17 years old Female              10th grade   1.65  5.413386
## 6407             16 years old Female              11th grade   1.57  5.150919
## 6408             15 years old Female              10th grade   1.52  4.986877
## 6409             16 years old   Male              10th grade   1.65  5.413386
## 6410             17 years old   Male              11th grade   1.83  6.003937
## 6411             15 years old Female              10th grade   1.55  5.085302
## 6412             17 years old Female              12th grade   1.57  5.150919
## 6413             14 years old Female               9th grade   1.60  5.249344
## 6414             15 years old   Male              10th grade   1.78  5.839895
## 6415             14 years old   Male               9th grade   1.75  5.741470
## 6416             15 years old   Male               9th grade   1.75  5.741470
## 6417             16 years old Female              11th grade   1.78  5.839895
## 6418             14 years old   Male               9th grade   1.75  5.741470
## 6419             17 years old   Male              11th grade   1.88  6.167979
## 6420             16 years old   Male              10th grade   1.63  5.347769
## 6421             14 years old   Male               9th grade     NA        NA
## 6422             17 years old Female              12th grade   1.65  5.413386
## 6423             16 years old   Male              11th grade   1.68  5.511811
## 6424             14 years old Female               9th grade   1.70  5.577428
## 6425             16 years old   Male              11th grade   1.78  5.839895
## 6426                     <NA>   Male              10th grade     NA        NA
## 6427             15 years old   Male               9th grade   1.83  6.003937
## 6428    18 years old or older   Male              12th grade   1.60  5.249344
## 6429             15 years old   Male               9th grade   1.68  5.511811
## 6430             16 years old   Male              11th grade   1.65  5.413386
## 6431             14 years old   Male               9th grade   1.90  6.233596
## 6432             14 years old   Male               9th grade     NA        NA
## 6433             16 years old Female              11th grade   1.68  5.511811
## 6434    18 years old or older Female              12th grade     NA        NA
## 6435             17 years old Female              11th grade   1.68  5.511811
## 6436             15 years old   Male               9th grade   1.83  6.003937
## 6437             16 years old Female              11th grade   1.68  5.511811
## 6438             15 years old   Male              10th grade   1.78  5.839895
## 6439             17 years old   Male              11th grade   1.73  5.675853
## 6440             16 years old Female               9th grade   1.63  5.347769
## 6441             16 years old   Male              11th grade   1.90  6.233596
## 6442             15 years old   Male              10th grade   1.65  5.413386
## 6443    18 years old or older Female              12th grade   1.55  5.085302
## 6444             15 years old Female              10th grade   1.57  5.150919
## 6445             15 years old   Male               9th grade   1.68  5.511811
## 6446             17 years old   Male              11th grade   1.68  5.511811
## 6447             16 years old   Male              10th grade   1.75  5.741470
## 6448             16 years old   Male              10th grade   1.65  5.413386
## 6449             14 years old   Male               9th grade   1.68  5.511811
## 6450             17 years old Female              12th grade   1.73  5.675853
## 6451             14 years old Female               9th grade     NA        NA
## 6452             15 years old   Male              10th grade   1.78  5.839895
## 6453             16 years old   Male               9th grade   1.73  5.675853
## 6454             17 years old   Male              12th grade   1.93  6.332021
## 6455             17 years old   Male              11th grade   1.78  5.839895
## 6456             14 years old   Male               9th grade   1.85  6.069554
## 6457             15 years old   Male               9th grade   1.80  5.905512
## 6458             16 years old   Male              11th grade   1.80  5.905512
## 6459             16 years old   Male              10th grade   1.73  5.675853
## 6460             17 years old Female              12th grade   1.60  5.249344
## 6461             17 years old   Male              12th grade     NA        NA
## 6462             17 years old Female              12th grade   1.52  4.986877
## 6463    18 years old or older Female              12th grade   1.60  5.249344
## 6464             17 years old Female              11th grade   1.57  5.150919
## 6465             17 years old   Male              10th grade   1.75  5.741470
## 6466             16 years old Female              10th grade   1.40  4.593176
## 6467             17 years old Female              12th grade   1.75  5.741470
## 6468             17 years old   Male              12th grade   1.83  6.003937
## 6469    18 years old or older Female              12th grade   1.70  5.577428
## 6470             16 years old Female              11th grade   1.73  5.675853
## 6471             17 years old Female              12th grade   1.57  5.150919
## 6472    18 years old or older Female              12th grade   1.65  5.413386
## 6473             16 years old Female              11th grade   1.55  5.085302
## 6474             17 years old   Male              12th grade   1.80  5.905512
## 6475             17 years old   Male              12th grade   1.85  6.069554
## 6476             15 years old   <NA>              10th grade     NA        NA
## 6477             16 years old   Male                    <NA>   1.70  5.577428
## 6478    18 years old or older Female               9th grade   1.63  5.347769
## 6479    18 years old or older Female              12th grade   1.55  5.085302
## 6480             16 years old   Male              11th grade   1.78  5.839895
## 6481             15 years old   Male              10th grade   1.68  5.511811
## 6482             17 years old   Male              12th grade   1.83  6.003937
## 6483    18 years old or older   Male              12th grade   1.83  6.003937
## 6484             15 years old   Male               9th grade   1.70  5.577428
## 6485    18 years old or older Female              12th grade   1.50  4.921260
## 6486             16 years old   Male              11th grade   1.75  5.741470
## 6487    18 years old or older Female              12th grade   1.65  5.413386
## 6488             14 years old Female               9th grade   1.70  5.577428
## 6489             16 years old Female              11th grade   1.65  5.413386
## 6490    18 years old or older Female              12th grade   1.68  5.511811
## 6491             15 years old   Male               9th grade   1.73  5.675853
## 6492             16 years old Female              11th grade     NA        NA
## 6493             17 years old   Male              11th grade   1.80  5.905512
## 6494             16 years old   Male              11th grade   1.70  5.577428
## 6495             15 years old Female               9th grade   1.55  5.085302
## 6496             16 years old Female              11th grade   1.65  5.413386
## 6497    18 years old or older Female              12th grade   1.63  5.347769
## 6498             17 years old Female              11th grade   1.57  5.150919
## 6499             17 years old Female              12th grade   1.73  5.675853
## 6500    18 years old or older   Male              12th grade   1.83  6.003937
## 6501             14 years old   Male               9th grade   1.68  5.511811
## 6502             14 years old   Male              10th grade   1.85  6.069554
## 6503             17 years old Female              12th grade   1.65  5.413386
## 6504             15 years old   Male              10th grade   1.75  5.741470
## 6505             14 years old   Male               9th grade   1.57  5.150919
## 6506             15 years old Female              10th grade   1.68  5.511811
## 6507             15 years old   Male              10th grade   1.78  5.839895
## 6508                     <NA>   Male               9th grade     NA        NA
## 6509             15 years old Female              10th grade   1.45  4.757218
## 6510             16 years old Female              11th grade     NA        NA
## 6511             14 years old Female               9th grade   1.68  5.511811
## 6512             17 years old   Male              12th grade   1.88  6.167979
## 6513    18 years old or older   Male              12th grade   1.73  5.675853
## 6514             15 years old   Male              10th grade   1.65  5.413386
## 6515             14 years old   Male               9th grade   1.63  5.347769
## 6516             16 years old Female              10th grade   1.68  5.511811
## 6517             15 years old   Male               9th grade   1.78  5.839895
## 6518             15 years old   Male              10th grade   1.75  5.741470
## 6519             14 years old   Male               9th grade   1.70  5.577428
## 6520             16 years old Female              11th grade   1.75  5.741470
## 6521             15 years old Female               9th grade   1.52  4.986877
## 6522             17 years old Female              11th grade   1.60  5.249344
## 6523             14 years old Female               9th grade   1.68  5.511811
## 6524             14 years old Female               9th grade   1.60  5.249344
## 6525             16 years old Female              10th grade   1.50  4.921260
## 6526             16 years old Female               9th grade     NA        NA
## 6527             15 years old   Male              10th grade   1.73  5.675853
## 6528             16 years old   Male              10th grade   1.88  6.167979
## 6529             14 years old Female               9th grade   1.65  5.413386
## 6530    18 years old or older   Male              12th grade   1.80  5.905512
## 6531             15 years old   Male               9th grade   1.65  5.413386
## 6532             14 years old   Male               9th grade   1.65  5.413386
## 6533             16 years old Female               9th grade   1.50  4.921260
## 6534    18 years old or older   Male              12th grade   1.73  5.675853
## 6535             15 years old Female               9th grade   1.68  5.511811
## 6536             15 years old Female              10th grade   1.68  5.511811
## 6537             16 years old Female              10th grade   1.55  5.085302
## 6538             16 years old Female              10th grade   1.65  5.413386
## 6539             16 years old Female              10th grade   1.57  5.150919
## 6540             15 years old Female              10th grade   1.55  5.085302
## 6541             17 years old Female              12th grade   1.78  5.839895
## 6542             17 years old   Male              12th grade   1.73  5.675853
## 6543             15 years old Female               9th grade   1.50  4.921260
## 6544             15 years old Female              10th grade   1.55  5.085302
## 6545             16 years old Female              11th grade   1.57  5.150919
## 6546             17 years old Female              12th grade   1.63  5.347769
## 6547             15 years old Female               9th grade   1.65  5.413386
## 6548             16 years old   Male              10th grade   1.80  5.905512
## 6549             16 years old   Male              10th grade   1.70  5.577428
## 6550    18 years old or older Female              12th grade   1.60  5.249344
## 6551             16 years old Female              10th grade   1.60  5.249344
## 6552             15 years old   Male               9th grade   1.70  5.577428
## 6553             14 years old Female               9th grade   1.68  5.511811
## 6554             16 years old   Male              11th grade   1.68  5.511811
## 6555             14 years old Female               9th grade   1.63  5.347769
## 6556             15 years old Female              10th grade   1.55  5.085302
## 6557             15 years old   Male               9th grade   1.68  5.511811
## 6558             15 years old   Male              10th grade   1.68  5.511811
## 6559             14 years old   Male               9th grade   1.73  5.675853
## 6560             17 years old Female              11th grade     NA        NA
## 6561             16 years old   Male              10th grade     NA        NA
## 6562             14 years old   Male               9th grade   1.60  5.249344
## 6563             16 years old Female              11th grade   1.63  5.347769
## 6564             14 years old Female               9th grade   1.65  5.413386
## 6565             15 years old   Male              10th grade   1.70  5.577428
## 6566             14 years old Female               9th grade   1.60  5.249344
## 6567             16 years old   Male              11th grade   1.73  5.675853
## 6568             15 years old Female              10th grade   1.55  5.085302
## 6569             14 years old   Male               9th grade   1.42  4.658793
## 6570             17 years old   Male              11th grade     NA        NA
## 6571             15 years old Female              10th grade   1.57  5.150919
## 6572             14 years old   Male               9th grade   1.73  5.675853
## 6573             17 years old Female              11th grade   1.52  4.986877
## 6574             14 years old Female               9th grade   1.42  4.658793
## 6575             16 years old Female              11th grade   1.60  5.249344
## 6576             14 years old Female               9th grade   1.68  5.511811
## 6577             16 years old Female              11th grade     NA        NA
## 6578             14 years old Female               9th grade   1.52  4.986877
## 6579             17 years old Female              11th grade   1.50  4.921260
## 6580             16 years old Female              10th grade   1.50  4.921260
## 6581             14 years old Female               9th grade     NA        NA
## 6582             16 years old   Male              11th grade   1.75  5.741470
## 6583             15 years old   Male               9th grade   1.75  5.741470
## 6584             16 years old Female              11th grade   1.73  5.675853
## 6585             14 years old Female               9th grade   1.55  5.085302
## 6586             16 years old   Male              11th grade   1.70  5.577428
## 6587             14 years old Female               9th grade     NA        NA
## 6588    18 years old or older   Male              12th grade   1.75  5.741470
## 6589             14 years old Female               9th grade     NA        NA
## 6590             14 years old   Male               9th grade   1.60  5.249344
## 6591    18 years old or older Female              12th grade   1.45  4.757218
## 6592             14 years old Female               9th grade   1.57  5.150919
## 6593             17 years old   Male              12th grade   1.63  5.347769
## 6594             15 years old Female               9th grade     NA        NA
## 6595             17 years old   Male              12th grade   1.52  4.986877
## 6596    18 years old or older   Male              12th grade   1.65  5.413386
## 6597             15 years old Female               9th grade     NA        NA
## 6598             17 years old   Male              11th grade   1.68  5.511811
## 6599             14 years old Female               9th grade     NA        NA
## 6600    18 years old or older Female              11th grade   1.57  5.150919
## 6601             14 years old   Male               9th grade   1.57  5.150919
## 6602             17 years old   Male              11th grade   1.68  5.511811
## 6603    18 years old or older Female              12th grade     NA        NA
## 6604             17 years old Female              11th grade   1.60  5.249344
## 6605             14 years old Female               9th grade     NA        NA
## 6606             16 years old   Male              11th grade   1.60  5.249344
## 6607             16 years old   Male              11th grade   1.85  6.069554
## 6608             14 years old Female               9th grade   1.50  4.921260
## 6609             16 years old Female              11th grade   1.60  5.249344
## 6610             16 years old Female              11th grade   1.57  5.150919
## 6611             16 years old   Male              11th grade   1.68  5.511811
## 6612             15 years old Female               9th grade   1.47  4.822835
## 6613             15 years old   Male               9th grade   1.73  5.675853
## 6614             16 years old Female              11th grade   1.52  4.986877
## 6615             17 years old Female              12th grade   1.60  5.249344
## 6616             15 years old   Male               9th grade   1.65  5.413386
## 6617             17 years old Female              11th grade   1.60  5.249344
## 6618             15 years old   Male              10th grade   1.73  5.675853
## 6619             14 years old Female               9th grade   1.63  5.347769
## 6620             16 years old   Male              11th grade   1.68  5.511811
## 6621             15 years old Female              10th grade   1.65  5.413386
## 6622             16 years old Female              11th grade   1.73  5.675853
## 6623             14 years old Female               9th grade   1.63  5.347769
## 6624             16 years old Female              11th grade   1.60  5.249344
## 6625             16 years old   Male              10th grade     NA        NA
## 6626             14 years old Female               9th grade     NA        NA
## 6627             16 years old   Male              11th grade   1.70  5.577428
## 6628             15 years old   Male              10th grade   1.80  5.905512
## 6629             14 years old Female               9th grade   1.60  5.249344
## 6630             16 years old Female              11th grade   1.68  5.511811
## 6631             14 years old   Male               9th grade   1.52  4.986877
## 6632             16 years old   Male              11th grade   1.65  5.413386
## 6633             15 years old Female               9th grade   1.60  5.249344
## 6634             17 years old Female              11th grade   1.55  5.085302
## 6635             14 years old Female               9th grade   1.55  5.085302
## 6636             15 years old   Male              10th grade   1.70  5.577428
## 6637             14 years old Female               9th grade   1.60  5.249344
## 6638             14 years old   Male               9th grade     NA        NA
## 6639             16 years old Female              11th grade   1.88  6.167979
## 6640             16 years old   Male              11th grade   1.75  5.741470
## 6641             16 years old Female              11th grade   1.78  5.839895
## 6642             15 years old Female              10th grade   1.68  5.511811
## 6643             17 years old Female              11th grade   1.68  5.511811
## 6644             15 years old Female              10th grade   1.60  5.249344
## 6645             15 years old Female              10th grade   1.80  5.905512
## 6646             15 years old   Male              10th grade   1.60  5.249344
## 6647             17 years old   Male              12th grade   1.80  5.905512
## 6648             16 years old   Male              11th grade   1.70  5.577428
## 6649             14 years old   Male               9th grade   1.75  5.741470
## 6650             14 years old Female               9th grade   1.60  5.249344
## 6651             16 years old   Male              11th grade   1.83  6.003937
## 6652             15 years old   Male              10th grade   1.83  6.003937
## 6653             17 years old   <NA>              12th grade     NA        NA
## 6654             15 years old   Male              10th grade   1.75  5.741470
## 6655             17 years old Female              11th grade   1.57  5.150919
## 6656             16 years old Female              11th grade   1.65  5.413386
## 6657  12 years old or younger Female Ungraded or other grade     NA        NA
## 6658             14 years old   Male               9th grade   1.55  5.085302
## 6659             17 years old   Male              11th grade   1.88  6.167979
## 6660             16 years old Female              10th grade   1.60  5.249344
## 6661             14 years old Female               9th grade     NA        NA
## 6662             16 years old Female              11th grade   1.65  5.413386
## 6663             15 years old Female               9th grade   1.60  5.249344
## 6664             14 years old Female               9th grade   1.70  5.577428
## 6665             17 years old Female              12th grade   1.70  5.577428
## 6666             17 years old Female              12th grade   1.70  5.577428
## 6667             16 years old   Male              11th grade   1.65  5.413386
## 6668             14 years old   Male               9th grade   1.70  5.577428
## 6669             15 years old Female               9th grade     NA        NA
## 6670    18 years old or older Female              12th grade   1.60  5.249344
## 6671             16 years old Female              10th grade   1.73  5.675853
## 6672             14 years old Female               9th grade   1.73  5.675853
## 6673             16 years old Female              11th grade   1.73  5.675853
## 6674             16 years old   Male              10th grade   1.80  5.905512
## 6675             16 years old Female              11th grade   1.75  5.741470
## 6676             16 years old   Male              10th grade   1.96  6.430446
## 6677             15 years old Female              10th grade   1.52  4.986877
## 6678             17 years old   Male              12th grade   1.83  6.003937
## 6679             15 years old Female              10th grade   1.68  5.511811
## 6680             15 years old   <NA>              10th grade     NA        NA
## 6681             16 years old   Male              11th grade   1.90  6.233596
## 6682             14 years old Female               9th grade   1.63  5.347769
## 6683             17 years old Female              11th grade   1.63  5.347769
## 6684             15 years old Female              10th grade   1.68  5.511811
## 6685    18 years old or older Female              12th grade     NA        NA
## 6686             16 years old Female              11th grade   1.65  5.413386
## 6687             15 years old   Male              10th grade   1.78  5.839895
## 6688             17 years old   Male              12th grade   1.65  5.413386
## 6689             16 years old   Male              11th grade   1.78  5.839895
## 6690             16 years old Female              11th grade   1.63  5.347769
## 6691             17 years old Female              12th grade   1.52  4.986877
## 6692    18 years old or older Female              12th grade   1.68  5.511811
## 6693             17 years old Female              12th grade   1.83  6.003937
## 6694             14 years old Female               9th grade   1.63  5.347769
## 6695             16 years old   Male              11th grade   1.73  5.675853
## 6696    18 years old or older   Male              12th grade   1.93  6.332021
## 6697             16 years old   Male              11th grade   1.70  5.577428
## 6698             17 years old   Male              12th grade   1.63  5.347769
## 6699             14 years old Female               9th grade     NA        NA
## 6700    18 years old or older Female              12th grade     NA        NA
## 6701             16 years old Female              11th grade   1.57  5.150919
## 6702             15 years old Female              10th grade   1.60  5.249344
## 6703             17 years old   Male              11th grade   1.78  5.839895
## 6704             17 years old   Male              11th grade   1.75  5.741470
## 6705             17 years old   Male              11th grade   1.83  6.003937
## 6706             15 years old Female               9th grade   1.52  4.986877
## 6707             14 years old Female               9th grade   1.57  5.150919
## 6708             15 years old Female              10th grade   1.57  5.150919
## 6709  12 years old or younger Female               9th grade     NA        NA
## 6710             15 years old   Male              10th grade   1.78  5.839895
## 6711    18 years old or older   Male              12th grade   1.73  5.675853
## 6712    18 years old or older Female              12th grade   1.75  5.741470
## 6713             16 years old   Male              11th grade   1.83  6.003937
## 6714             16 years old Female              11th grade   1.70  5.577428
## 6715             14 years old Female               9th grade   1.75  5.741470
## 6716             16 years old   Male              11th grade   1.78  5.839895
## 6717             14 years old   Male               9th grade   1.75  5.741470
## 6718             15 years old   Male              10th grade   1.65  5.413386
## 6719             17 years old   Male              11th grade   1.75  5.741470
## 6720             16 years old Female              11th grade   1.73  5.675853
## 6721             15 years old   Male              10th grade   1.78  5.839895
## 6722                     <NA> Female              11th grade     NA        NA
## 6723             15 years old   Male              10th grade   1.85  6.069554
## 6724             17 years old Female              12th grade   1.60  5.249344
## 6725    18 years old or older Female              12th grade   1.80  5.905512
## 6726             16 years old   Male              10th grade   1.80  5.905512
## 6727             14 years old Female               9th grade   1.63  5.347769
## 6728             15 years old Female              10th grade   1.60  5.249344
## 6729             15 years old Female              10th grade   1.63  5.347769
## 6730             17 years old Female              12th grade   1.52  4.986877
## 6731             15 years old   Male              10th grade     NA        NA
## 6732             16 years old Female              11th grade   1.68  5.511811
## 6733             17 years old Female              12th grade   1.50  4.921260
## 6734    18 years old or older Female              12th grade     NA        NA
## 6735             17 years old   Male              12th grade   1.63  5.347769
## 6736    18 years old or older   Male              12th grade   1.83  6.003937
## 6737             17 years old   Male              12th grade   1.80  5.905512
## 6738             17 years old   Male              12th grade   1.75  5.741470
## 6739             16 years old   Male              11th grade   1.75  5.741470
## 6740             17 years old Female              12th grade   1.55  5.085302
## 6741             15 years old   Male               9th grade   1.75  5.741470
## 6742             17 years old Female              12th grade   1.65  5.413386
## 6743    18 years old or older   Male              12th grade   1.78  5.839895
## 6744             16 years old Female              11th grade   1.55  5.085302
## 6745             17 years old Female              11th grade   1.68  5.511811
## 6746             16 years old   Male              11th grade   1.73  5.675853
## 6747             15 years old   Male              10th grade   1.70  5.577428
## 6748             16 years old Female              11th grade   1.63  5.347769
## 6749             17 years old Female              11th grade   1.57  5.150919
## 6750             17 years old Female              11th grade   1.65  5.413386
## 6751             16 years old   Male              11th grade   1.73  5.675853
## 6752             17 years old   Male              11th grade   1.75  5.741470
## 6753             16 years old   Male              11th grade   1.78  5.839895
## 6754             16 years old   Male              11th grade     NA        NA
## 6755             16 years old Female              11th grade   1.63  5.347769
## 6756             15 years old Female              10th grade   1.57  5.150919
## 6757             16 years old Female              11th grade   1.52  4.986877
## 6758             17 years old   Male              11th grade     NA        NA
## 6759             16 years old Female              11th grade   1.52  4.986877
## 6760             15 years old Female              10th grade   1.65  5.413386
## 6761             16 years old Female              11th grade   1.60  5.249344
## 6762             16 years old   Male              11th grade   1.68  5.511811
## 6763             16 years old Female              11th grade   1.55  5.085302
## 6764             17 years old   Male              11th grade   1.68  5.511811
## 6765             17 years old   Male              11th grade   1.73  5.675853
## 6766    18 years old or older   Male              12th grade   1.80  5.905512
## 6767    18 years old or older   Male              12th grade   1.75  5.741470
## 6768             17 years old Female              12th grade   1.63  5.347769
## 6769             17 years old Female              12th grade   1.60  5.249344
## 6770             16 years old   Male              10th grade   1.83  6.003937
## 6771             15 years old Female              10th grade   1.60  5.249344
## 6772    18 years old or older   Male              12th grade   1.78  5.839895
## 6773             15 years old   Male              10th grade   1.75  5.741470
## 6774             15 years old   Male              10th grade     NA        NA
## 6775             17 years old   Male              11th grade   1.90  6.233596
## 6776             16 years old   Male              10th grade   1.68  5.511811
## 6777             16 years old Female              10th grade     NA        NA
## 6778             16 years old Female              11th grade   1.63  5.347769
## 6779             17 years old   Male              12th grade   1.80  5.905512
## 6780             15 years old Female              10th grade   1.73  5.675853
## 6781             16 years old   Male              11th grade   1.70  5.577428
## 6782    18 years old or older Female              12th grade   1.57  5.150919
## 6783             15 years old Female              10th grade   1.52  4.986877
## 6784             17 years old   Male              11th grade   1.78  5.839895
## 6785             17 years old   Male              12th grade   1.83  6.003937
## 6786             16 years old Female              10th grade   1.68  5.511811
## 6787             15 years old Female              10th grade   1.55  5.085302
## 6788             17 years old Female              11th grade   1.63  5.347769
## 6789             17 years old Female              12th grade   1.57  5.150919
## 6790             15 years old Female              10th grade   1.63  5.347769
## 6791             15 years old   Male              10th grade   1.68  5.511811
## 6792             17 years old   Male              11th grade   1.73  5.675853
## 6793             15 years old Female              10th grade   1.65  5.413386
## 6794             17 years old Female              11th grade   1.65  5.413386
## 6795             16 years old   Male              11th grade   1.75  5.741470
## 6796             16 years old Female              11th grade   1.60  5.249344
## 6797             16 years old Female              10th grade   1.60  5.249344
## 6798             16 years old Female              11th grade   1.65  5.413386
## 6799    18 years old or older Female              12th grade   1.68  5.511811
## 6800             15 years old   Male              10th grade   1.78  5.839895
## 6801             17 years old   Male              12th grade   1.60  5.249344
## 6802             16 years old Female              11th grade   1.55  5.085302
## 6803             16 years old   Male              11th grade   1.83  6.003937
## 6804             15 years old Female              10th grade   1.52  4.986877
## 6805             16 years old   Male              11th grade   1.80  5.905512
## 6806             15 years old Female              10th grade   1.65  5.413386
## 6807             15 years old   Male              10th grade   1.80  5.905512
## 6808             16 years old Female              11th grade   1.80  5.905512
## 6809             15 years old   Male              10th grade   1.68  5.511811
## 6810             15 years old Female              10th grade   1.57  5.150919
## 6811             16 years old   Male              11th grade   1.70  5.577428
## 6812             15 years old   Male              10th grade   1.80  5.905512
## 6813             16 years old Female              10th grade   1.55  5.085302
## 6814             16 years old Female              11th grade     NA        NA
## 6815             15 years old Female              10th grade   1.65  5.413386
## 6816             16 years old Female              10th grade   1.52  4.986877
## 6817             17 years old   Male              12th grade   1.83  6.003937
## 6818             15 years old Female              10th grade     NA        NA
## 6819             16 years old Female              10th grade   1.73  5.675853
## 6820             16 years old Female              11th grade   1.75  5.741470
## 6821             17 years old   Male              11th grade   1.85  6.069554
## 6822             16 years old   Male              10th grade   1.90  6.233596
## 6823             16 years old Female              10th grade     NA        NA
## 6824             17 years old   Male              11th grade   1.78  5.839895
## 6825             15 years old   Male              10th grade   1.65  5.413386
## 6826             16 years old   Male              11th grade   1.85  6.069554
## 6827             17 years old Female              12th grade   1.57  5.150919
## 6828             15 years old   <NA>              10th grade     NA        NA
## 6829             15 years old   Male              10th grade   1.75  5.741470
## 6830             16 years old   Male              11th grade   1.78  5.839895
## 6831             13 years old Female               9th grade     NA        NA
## 6832             15 years old Female              10th grade   1.63  5.347769
## 6833             16 years old Female              10th grade   1.80  5.905512
## 6834             15 years old   Male              10th grade   1.60  5.249344
## 6835             16 years old   Male              11th grade   1.70  5.577428
## 6836             15 years old   Male              10th grade   1.75  5.741470
## 6837             16 years old Female              10th grade   1.73  5.675853
## 6838             15 years old   Male              10th grade   1.70  5.577428
## 6839             17 years old Female              10th grade   1.60  5.249344
## 6840             15 years old Female              10th grade   1.65  5.413386
## 6841             16 years old Female              10th grade   1.60  5.249344
## 6842             16 years old   Male              10th grade   1.75  5.741470
## 6843             15 years old Female              10th grade   1.50  4.921260
## 6844             15 years old Female              10th grade   1.65  5.413386
## 6845             16 years old   Male              10th grade   1.78  5.839895
## 6846             16 years old   Male              10th grade   1.75  5.741470
## 6847             16 years old Female              10th grade   1.57  5.150919
## 6848             15 years old   Male              10th grade   1.75  5.741470
## 6849             16 years old   Male              10th grade   1.65  5.413386
## 6850             15 years old   Male              10th grade   1.63  5.347769
## 6851             17 years old Female              10th grade   1.63  5.347769
## 6852             16 years old   Male              10th grade   1.78  5.839895
## 6853             16 years old   Male              12th grade     NA        NA
## 6854             16 years old Female              10th grade   1.57  5.150919
## 6855             15 years old Female              10th grade   1.55  5.085302
## 6856             15 years old Female              10th grade   1.55  5.085302
## 6857             15 years old   Male              10th grade   1.70  5.577428
## 6858             15 years old Female              10th grade   1.57  5.150919
## 6859             15 years old   Male              10th grade   1.70  5.577428
## 6860             15 years old   Male              10th grade   1.80  5.905512
## 6861    18 years old or older   Male              11th grade   1.80  5.905512
## 6862             16 years old Female              10th grade   1.70  5.577428
## 6863             16 years old Female              10th grade   1.60  5.249344
## 6864             16 years old Female              10th grade   1.65  5.413386
## 6865             15 years old Female              10th grade   1.57  5.150919
## 6866             16 years old Female              10th grade   1.65  5.413386
## 6867             16 years old   Male              10th grade   1.75  5.741470
## 6868             16 years old   Male              10th grade   1.85  6.069554
## 6869             15 years old   Male              10th grade   1.85  6.069554
## 6870             15 years old Female              10th grade   1.68  5.511811
## 6871             15 years old   Male              10th grade   1.68  5.511811
## 6872             16 years old   Male              10th grade   1.70  5.577428
## 6873             15 years old Female              10th grade   1.57  5.150919
## 6874             15 years old Female              10th grade   1.57  5.150919
## 6875             16 years old Female              10th grade   1.70  5.577428
## 6876             16 years old Female              10th grade   1.65  5.413386
## 6877             16 years old   Male              10th grade   1.63  5.347769
## 6878    18 years old or older   Male              12th grade   1.73  5.675853
## 6879             15 years old Female              10th grade   1.55  5.085302
## 6880             15 years old   Male              10th grade   1.78  5.839895
## 6881             16 years old   Male              10th grade   1.83  6.003937
## 6882             15 years old Female              10th grade   1.75  5.741470
## 6883             16 years old   Male              10th grade   1.88  6.167979
## 6884             15 years old   Male              10th grade   1.78  5.839895
## 6885             16 years old Female              10th grade     NA        NA
## 6886             16 years old Female              10th grade   1.57  5.150919
## 6887             15 years old   Male              10th grade   1.60  5.249344
## 6888             15 years old   Male              10th grade   1.88  6.167979
## 6889             15 years old Female              10th grade     NA        NA
## 6890             16 years old   Male              10th grade   1.75  5.741470
## 6891             16 years old   Male              10th grade     NA        NA
## 6892             16 years old Female              10th grade   1.57  5.150919
## 6893             16 years old Female              10th grade   1.63  5.347769
## 6894             17 years old   Male              11th grade   1.83  6.003937
## 6895             16 years old Female              10th grade   1.60  5.249344
## 6896             16 years old Female              10th grade   1.57  5.150919
## 6897             16 years old   Male              10th grade   1.80  5.905512
## 6898             15 years old Female              10th grade   1.73  5.675853
## 6899             17 years old Female              10th grade   1.52  4.986877
## 6900             16 years old Female              10th grade   1.63  5.347769
## 6901             15 years old Female              10th grade     NA        NA
## 6902             16 years old   Male              10th grade   1.78  5.839895
## 6903             16 years old   Male              10th grade   1.73  5.675853
## 6904             16 years old   Male              10th grade   1.70  5.577428
## 6905             16 years old   Male              10th grade   1.68  5.511811
## 6906             15 years old   Male              10th grade   1.70  5.577428
## 6907             16 years old   Male              10th grade   1.68  5.511811
## 6908             15 years old Female              10th grade   1.63  5.347769
## 6909             15 years old Female              10th grade   1.63  5.347769
## 6910             15 years old Female              10th grade   1.60  5.249344
## 6911             15 years old Female              10th grade   1.57  5.150919
## 6912             16 years old   Male              10th grade   1.65  5.413386
## 6913             15 years old   Male              10th grade   1.80  5.905512
## 6914             15 years old   Male              10th grade   1.75  5.741470
## 6915             16 years old Female              10th grade   1.60  5.249344
## 6916             15 years old   Male              10th grade   1.63  5.347769
## 6917             15 years old Female              10th grade     NA        NA
## 6918             15 years old Female              10th grade   1.57  5.150919
## 6919             16 years old Female              10th grade   1.57  5.150919
## 6920             16 years old   Male              10th grade   1.70  5.577428
## 6921             16 years old   Male              10th grade   1.70  5.577428
## 6922             16 years old   Male              10th grade   1.88  6.167979
## 6923             16 years old Female              10th grade   1.73  5.675853
## 6924             15 years old   Male              10th grade   1.63  5.347769
## 6925             15 years old Female              10th grade   1.60  5.249344
## 6926             16 years old   Male              10th grade   1.60  5.249344
## 6927             15 years old   Male              10th grade   1.85  6.069554
## 6928             16 years old   Male              10th grade   1.65  5.413386
## 6929             15 years old   Male               9th grade   1.60  5.249344
## 6930             17 years old   Male              11th grade   1.85  6.069554
## 6931             16 years old Female              11th grade   1.60  5.249344
## 6932             16 years old   Male              10th grade   1.68  5.511811
## 6933    18 years old or older   Male              12th grade     NA        NA
## 6934             17 years old   Male              11th grade   1.85  6.069554
## 6935             16 years old Female              10th grade   1.63  5.347769
## 6936             17 years old   Male              11th grade   1.78  5.839895
## 6937             17 years old Female              11th grade   1.57  5.150919
## 6938             14 years old   Male               9th grade   1.85  6.069554
## 6939             15 years old Female              10th grade   1.68  5.511811
## 6940             17 years old   Male              11th grade   1.78  5.839895
## 6941             15 years old Female              10th grade     NA        NA
## 6942             16 years old   Male              11th grade   1.78  5.839895
## 6943             15 years old Female              10th grade   1.50  4.921260
## 6944             17 years old   Male              11th grade   1.75  5.741470
## 6945             14 years old Female               9th grade   1.65  5.413386
## 6946    18 years old or older   Male              12th grade   1.85  6.069554
## 6947             16 years old   Male              11th grade   1.70  5.577428
## 6948             16 years old Female              11th grade   1.55  5.085302
## 6949             16 years old Female              11th grade   1.63  5.347769
## 6950             16 years old Female              10th grade   1.65  5.413386
## 6951             16 years old Female              10th grade   1.70  5.577428
## 6952             15 years old   Male              10th grade   1.70  5.577428
## 6953             16 years old Female              11th grade     NA        NA
## 6954             15 years old   Male               9th grade   1.80  5.905512
## 6955             16 years old   Male              10th grade   1.85  6.069554
## 6956             15 years old Female              10th grade   1.70  5.577428
## 6957             16 years old   Male              11th grade   1.83  6.003937
## 6958             14 years old   Male               9th grade   1.73  5.675853
## 6959             16 years old Female              10th grade   1.73  5.675853
## 6960             16 years old Female              10th grade   1.68  5.511811
## 6961             17 years old Female              12th grade   1.60  5.249344
## 6962             14 years old Female               9th grade   1.65  5.413386
## 6963             16 years old Female              10th grade   1.75  5.741470
## 6964             15 years old   Male               9th grade   1.68  5.511811
## 6965             16 years old Female              11th grade   1.60  5.249344
## 6966             16 years old Female              11th grade   1.60  5.249344
## 6967             15 years old   Male              10th grade   1.70  5.577428
## 6968             16 years old   Male              10th grade   1.70  5.577428
## 6969             14 years old Female               9th grade   1.65  5.413386
## 6970             14 years old Female              10th grade   1.70  5.577428
## 6971             16 years old   Male              11th grade   1.78  5.839895
## 6972             17 years old Female              11th grade   1.68  5.511811
## 6973             15 years old Female               9th grade   1.70  5.577428
## 6974             16 years old   Male              10th grade   1.78  5.839895
## 6975             16 years old Female              10th grade   1.68  5.511811
## 6976             15 years old Female              10th grade   1.63  5.347769
## 6977             16 years old   Male              11th grade   1.75  5.741470
## 6978    18 years old or older Female              12th grade   1.63  5.347769
## 6979             15 years old   Male               9th grade   1.75  5.741470
## 6980             16 years old Female              10th grade     NA        NA
## 6981             16 years old   Male              10th grade   1.78  5.839895
## 6982             16 years old Female              10th grade     NA        NA
## 6983             16 years old Female              11th grade   1.57  5.150919
## 6984             16 years old Female              11th grade   1.65  5.413386
## 6985             14 years old Female               9th grade   1.65  5.413386
## 6986             17 years old Female              11th grade   1.60  5.249344
## 6987             16 years old Female              10th grade   1.63  5.347769
## 6988             17 years old Female              11th grade   1.65  5.413386
## 6989             15 years old   Male               9th grade   1.65  5.413386
## 6990             17 years old Female              11th grade   1.73  5.675853
## 6991             16 years old Female              10th grade   1.65  5.413386
## 6992             16 years old Female              10th grade   1.57  5.150919
## 6993             16 years old Female              10th grade     NA        NA
## 6994             15 years old Female              10th grade   1.78  5.839895
## 6995             15 years old   Male               9th grade   1.73  5.675853
## 6996             17 years old   Male              11th grade   1.65  5.413386
## 6997             16 years old Female              11th grade   1.75  5.741470
## 6998             17 years old   Male              11th grade   1.78  5.839895
## 6999             14 years old   Male               9th grade   1.83  6.003937
## 7000             17 years old   Male              11th grade   1.70  5.577428
## 7001    18 years old or older Female              12th grade   1.60  5.249344
## 7002             17 years old Female              11th grade   1.57  5.150919
## 7003             14 years old Female               9th grade   1.65  5.413386
## 7004             16 years old Female              10th grade   1.60  5.249344
## 7005             16 years old Female              11th grade   1.63  5.347769
## 7006             17 years old Female              11th grade   1.50  4.921260
## 7007             16 years old Female              10th grade   1.60  5.249344
## 7008             15 years old   Male              10th grade   1.75  5.741470
## 7009             16 years old   Male              11th grade   1.88  6.167979
## 7010             17 years old   Male              11th grade   1.68  5.511811
## 7011             16 years old Female              11th grade   1.65  5.413386
## 7012             17 years old Female              11th grade   1.70  5.577428
## 7013             15 years old Female              10th grade   1.57  5.150919
## 7014             16 years old Female              10th grade   1.63  5.347769
## 7015             14 years old Female               9th grade   1.60  5.249344
## 7016             15 years old Female              10th grade   1.52  4.986877
## 7017             17 years old Female              11th grade     NA        NA
## 7018             17 years old Female              11th grade   1.55  5.085302
## 7019             16 years old Female              10th grade   1.50  4.921260
## 7020             14 years old Female               9th grade   1.60  5.249344
## 7021             16 years old Female              11th grade   1.60  5.249344
## 7022             16 years old Female              11th grade   1.63  5.347769
## 7023             15 years old Female              10th grade     NA        NA
## 7024             15 years old   Male              10th grade   1.83  6.003937
## 7025             15 years old Female               9th grade   1.52  4.986877
## 7026             16 years old   Male              11th grade   1.83  6.003937
## 7027             15 years old Female              10th grade   1.60  5.249344
## 7028             16 years old Female              11th grade   1.65  5.413386
## 7029             14 years old   Male               9th grade   1.78  5.839895
## 7030             16 years old Female              11th grade   1.73  5.675853
## 7031             16 years old Female              11th grade   1.65  5.413386
## 7032             17 years old Female              11th grade   1.63  5.347769
## 7033             17 years old   Male              12th grade   1.70  5.577428
## 7034             15 years old Female               9th grade   1.68  5.511811
## 7035             15 years old Female              10th grade   1.73  5.675853
## 7036             13 years old Female               9th grade   1.60  5.249344
## 7037             16 years old   Male              10th grade   1.88  6.167979
## 7038             14 years old   Male               9th grade   1.80  5.905512
## 7039             14 years old Female               9th grade   1.60  5.249344
## 7040             14 years old   Male               9th grade   1.68  5.511811
## 7041             15 years old Female              10th grade   1.68  5.511811
## 7042             14 years old Female               9th grade   1.68  5.511811
## 7043             17 years old Female              11th grade   1.75  5.741470
## 7044             15 years old Female               9th grade   1.70  5.577428
## 7045             15 years old Female              10th grade   1.68  5.511811
## 7046             14 years old Female               9th grade   1.73  5.675853
## 7047             16 years old Female              10th grade   1.63  5.347769
## 7048             15 years old Female               9th grade   1.65  5.413386
## 7049             16 years old   Male              10th grade     NA        NA
## 7050             15 years old   Male               9th grade   1.75  5.741470
## 7051             16 years old   Male              11th grade   1.73  5.675853
## 7052             14 years old Female               9th grade     NA        NA
## 7053             14 years old Female               9th grade   1.57  5.150919
## 7054             15 years old Female               9th grade   1.60  5.249344
## 7055             16 years old   Male              10th grade   1.73  5.675853
## 7056             14 years old   Male               9th grade   1.90  6.233596
## 7057             16 years old Female              10th grade     NA        NA
## 7058             15 years old   Male               9th grade   1.75  5.741470
## 7059             17 years old Female              11th grade   1.60  5.249344
## 7060             15 years old Female               9th grade   1.75  5.741470
## 7061             15 years old   Male               9th grade   1.70  5.577428
## 7062             14 years old   Male               9th grade   1.73  5.675853
## 7063             16 years old Female              11th grade   1.65  5.413386
## 7064             14 years old Female               9th grade   1.63  5.347769
## 7065             16 years old   Male              11th grade   1.75  5.741470
## 7066             14 years old   Male               9th grade   1.68  5.511811
## 7067             15 years old   Male              10th grade   1.85  6.069554
## 7068             15 years old Female               9th grade   1.60  5.249344
## 7069             15 years old   Male              10th grade   1.90  6.233596
## 7070             15 years old Female              10th grade   1.60  5.249344
## 7071             15 years old   Male               9th grade   1.73  5.675853
## 7072             16 years old   Male              11th grade   1.73  5.675853
## 7073             15 years old Female               9th grade   1.60  5.249344
## 7074             16 years old   Male              10th grade   1.88  6.167979
## 7075             14 years old Female               9th grade   1.45  4.757218
## 7076             14 years old Female               9th grade   1.73  5.675853
## 7077             15 years old Female               9th grade   1.60  5.249344
## 7078             17 years old   Male              11th grade   1.78  5.839895
## 7079             16 years old   Male              10th grade   1.90  6.233596
## 7080             17 years old   Male              12th grade   1.65  5.413386
## 7081             15 years old Female              10th grade   1.65  5.413386
## 7082             14 years old Female               9th grade   1.65  5.413386
## 7083             17 years old   Male              11th grade   1.85  6.069554
## 7084             17 years old Female              12th grade   1.68  5.511811
## 7085             16 years old   Male              10th grade   1.75  5.741470
## 7086             14 years old   Male               9th grade   1.65  5.413386
## 7087             17 years old   Male              11th grade   1.73  5.675853
## 7088    18 years old or older   Male              12th grade   1.73  5.675853
## 7089             16 years old Female              10th grade     NA        NA
## 7090             17 years old Female              12th grade   1.75  5.741470
## 7091             16 years old Female              10th grade   1.70  5.577428
## 7092             14 years old Female               9th grade   1.63  5.347769
## 7093    18 years old or older   Male              12th grade   1.78  5.839895
## 7094             15 years old Female              10th grade     NA        NA
## 7095             14 years old   Male               9th grade   1.70  5.577428
## 7096    18 years old or older   Male              12th grade   1.78  5.839895
## 7097             15 years old   Male              10th grade   1.75  5.741470
## 7098             14 years old Female               9th grade   1.65  5.413386
## 7099             17 years old Female              11th grade     NA        NA
## 7100             16 years old Female              10th grade     NA        NA
## 7101             14 years old   Male               9th grade   1.75  5.741470
## 7102             16 years old   Male              11th grade   1.80  5.905512
## 7103             17 years old   Male              12th grade   1.57  5.150919
## 7104             16 years old Female              10th grade   1.65  5.413386
## 7105             14 years old   Male               9th grade   1.63  5.347769
## 7106             17 years old Female              12th grade   1.55  5.085302
## 7107             15 years old Female              10th grade   1.63  5.347769
## 7108             17 years old   Male              12th grade   1.75  5.741470
## 7109             14 years old   Male               9th grade   1.60  5.249344
## 7110             16 years old   Male              11th grade   1.83  6.003937
## 7111             17 years old   Male              12th grade   1.75  5.741470
## 7112             16 years old   Male              10th grade     NA        NA
## 7113             16 years old Female              11th grade   1.57  5.150919
## 7114             17 years old   Male              12th grade   1.75  5.741470
## 7115             16 years old   Male              10th grade   1.70  5.577428
## 7116             15 years old Female               9th grade   1.63  5.347769
## 7117             17 years old   Male              12th grade   1.78  5.839895
## 7118             16 years old Female              10th grade     NA        NA
## 7119             15 years old   Male               9th grade   1.65  5.413386
## 7120    18 years old or older   Male              12th grade   1.63  5.347769
## 7121             16 years old   Male              10th grade   1.83  6.003937
## 7122             15 years old Female               9th grade   1.57  5.150919
## 7123             15 years old   Male              10th grade   1.65  5.413386
## 7124             14 years old Female               9th grade   1.65  5.413386
## 7125             17 years old   Male              11th grade   1.88  6.167979
## 7126             17 years old   Male              12th grade   1.68  5.511811
## 7127             15 years old   Male              10th grade   1.70  5.577428
## 7128             15 years old Female               9th grade   1.68  5.511811
## 7129             15 years old   Male              10th grade   1.63  5.347769
## 7130             15 years old Female               9th grade   1.55  5.085302
## 7131    18 years old or older   Male              12th grade   1.68  5.511811
## 7132             16 years old   Male              10th grade   1.60  5.249344
## 7133             15 years old   Male               9th grade   1.68  5.511811
## 7134             16 years old   Male              11th grade     NA        NA
## 7135    18 years old or older   Male              12th grade   1.70  5.577428
## 7136             16 years old Female              10th grade   1.70  5.577428
## 7137             15 years old Female               9th grade   1.75  5.741470
## 7138             17 years old   Male              12th grade   1.75  5.741470
## 7139             17 years old Female              12th grade   1.63  5.347769
## 7140             16 years old Female              10th grade   1.70  5.577428
## 7141             15 years old Female               9th grade   1.60  5.249344
## 7142             16 years old   Male              10th grade   1.70  5.577428
## 7143             15 years old Female               9th grade   1.60  5.249344
## 7144             17 years old   Male              11th grade   1.73  5.675853
## 7145             16 years old   Male              10th grade   1.65  5.413386
## 7146             14 years old   Male               9th grade   1.68  5.511811
## 7147             15 years old Female              10th grade   1.68  5.511811
## 7148             15 years old   Male               9th grade   1.73  5.675853
## 7149             16 years old   Male              11th grade   1.90  6.233596
## 7150    18 years old or older   Male              12th grade   1.78  5.839895
## 7151             15 years old   Male              10th grade   1.78  5.839895
## 7152             14 years old   Male               9th grade   1.70  5.577428
## 7153             17 years old Female              11th grade   1.73  5.675853
## 7154             17 years old   Male              12th grade   1.83  6.003937
## 7155             16 years old   Male              10th grade   1.88  6.167979
## 7156             14 years old   Male               9th grade   1.68  5.511811
## 7157             17 years old   Male              12th grade   1.75  5.741470
## 7158    18 years old or older   Male              12th grade   1.80  5.905512
## 7159             16 years old Female              10th grade   1.57  5.150919
## 7160             15 years old Female               9th grade   1.68  5.511811
## 7161             16 years old   Male              11th grade   1.75  5.741470
## 7162    18 years old or older   Male              12th grade   1.78  5.839895
## 7163             16 years old   Male              11th grade   1.70  5.577428
## 7164             15 years old   Male               9th grade   1.65  5.413386
## 7165    18 years old or older   Male              12th grade   1.75  5.741470
## 7166             17 years old   Male              12th grade   1.73  5.675853
## 7167             16 years old   Male              10th grade   1.78  5.839895
## 7168             15 years old   Male               9th grade   1.65  5.413386
## 7169    18 years old or older   Male              12th grade   1.75  5.741470
## 7170    18 years old or older   Male              12th grade   1.78  5.839895
## 7171             15 years old Female               9th grade   1.55  5.085302
## 7172             17 years old   Male              12th grade   1.85  6.069554
## 7173    18 years old or older   Male              12th grade   1.83  6.003937
## 7174             15 years old   Male              10th grade   1.83  6.003937
## 7175             15 years old   Male               9th grade   1.88  6.167979
## 7176    18 years old or older   Male              12th grade   1.70  5.577428
## 7177             17 years old Female              12th grade   1.60  5.249344
## 7178             17 years old   Male              11th grade   1.80  5.905512
## 7179             17 years old   Male              12th grade   1.83  6.003937
## 7180             14 years old   Male               9th grade   1.73  5.675853
## 7181             16 years old   Male              11th grade   1.80  5.905512
## 7182             15 years old   Male               9th grade   1.57  5.150919
## 7183             16 years old   Male              11th grade   1.93  6.332021
## 7184             15 years old Female              10th grade   1.68  5.511811
## 7185             15 years old   Male               9th grade   1.70  5.577428
## 7186             15 years old Female               9th grade   1.65  5.413386
## 7187             14 years old Female               9th grade   1.63  5.347769
## 7188             15 years old   Male               9th grade   1.70  5.577428
## 7189             14 years old   Male               9th grade   1.68  5.511811
## 7190             16 years old Female              10th grade   1.60  5.249344
## 7191             15 years old Female               9th grade   1.70  5.577428
## 7192             14 years old Female               9th grade   1.57  5.150919
## 7193             15 years old Female              10th grade     NA        NA
## 7194             14 years old Female               9th grade   1.68  5.511811
## 7195             14 years old   Male               9th grade   1.55  5.085302
## 7196             15 years old Female               9th grade   1.60  5.249344
## 7197             15 years old   Male               9th grade   1.80  5.905512
## 7198             17 years old   Male              12th grade   1.80  5.905512
## 7199             15 years old Female              10th grade   1.68  5.511811
## 7200             15 years old Female               9th grade   1.57  5.150919
## 7201             15 years old   Male               9th grade   1.78  5.839895
## 7202             15 years old   Male               9th grade   1.75  5.741470
## 7203             15 years old   Male               9th grade   1.60  5.249344
## 7204             17 years old   Male              11th grade   1.85  6.069554
## 7205             15 years old Female               9th grade   1.65  5.413386
## 7206             16 years old   Male              10th grade   1.75  5.741470
## 7207             17 years old   Male              11th grade   1.85  6.069554
## 7208    18 years old or older   Male              12th grade   1.73  5.675853
## 7209             15 years old   Male               9th grade   1.65  5.413386
## 7210             15 years old Female              10th grade   1.60  5.249344
## 7211             15 years old   Male              10th grade   1.35  4.429134
## 7212             17 years old   Male              11th grade   1.65  5.413386
## 7213             14 years old   Male               9th grade   1.52  4.986877
## 7214             16 years old   Male              10th grade   1.90  6.233596
## 7215             16 years old   Male              11th grade   1.70  5.577428
## 7216             17 years old   Male              12th grade   1.73  5.675853
## 7217    18 years old or older   Male              12th grade   1.88  6.167979
## 7218             14 years old   Male               9th grade   1.70  5.577428
## 7219    18 years old or older   Male              12th grade   1.68  5.511811
## 7220             16 years old Female               9th grade   1.65  5.413386
## 7221             17 years old   Male              11th grade   1.70  5.577428
## 7222             15 years old   Male               9th grade   1.70  5.577428
## 7223             15 years old   Male              10th grade   1.83  6.003937
## 7224    18 years old or older   Male              12th grade   1.70  5.577428
## 7225             16 years old   Male              10th grade     NA        NA
## 7226             15 years old Female               9th grade   1.52  4.986877
## 7227             16 years old   Male              10th grade   1.65  5.413386
## 7228             16 years old   Male              11th grade   1.70  5.577428
## 7229             16 years old   Male              11th grade   1.83  6.003937
## 7230             17 years old   Male              11th grade   1.88  6.167979
## 7231             16 years old   Male              10th grade   1.88  6.167979
## 7232             14 years old   Male               9th grade   1.68  5.511811
## 7233             16 years old   Male              10th grade   1.80  5.905512
## 7234             17 years old   Male              12th grade   1.70  5.577428
## 7235             17 years old   Male              12th grade   1.83  6.003937
## 7236             15 years old Female              10th grade   1.63  5.347769
## 7237    18 years old or older   Male              11th grade   1.70  5.577428
## 7238    18 years old or older   Male              11th grade   1.60  5.249344
## 7239             15 years old   Male              10th grade   1.78  5.839895
## 7240             15 years old Female              10th grade   1.70  5.577428
## 7241             15 years old Female              10th grade   1.57  5.150919
## 7242             15 years old Female              10th grade   1.57  5.150919
## 7243             16 years old   Male              10th grade   1.65  5.413386
## 7244             15 years old Female              10th grade   1.55  5.085302
## 7245             14 years old   Male               9th grade   1.68  5.511811
## 7246             16 years old Female              10th grade   1.68  5.511811
## 7247             15 years old Female               9th grade   1.57  5.150919
## 7248             14 years old Female               9th grade   1.55  5.085302
## 7249             15 years old Female               9th grade   1.68  5.511811
## 7250             17 years old   Male              12th grade   1.85  6.069554
## 7251             17 years old Female              11th grade   1.63  5.347769
## 7252             16 years old Female              11th grade     NA        NA
## 7253             15 years old Female               9th grade   1.52  4.986877
## 7254             15 years old   Male               9th grade   1.78  5.839895
## 7255             16 years old Female              11th grade   1.35  4.429134
## 7256             17 years old   Male              11th grade   1.78  5.839895
## 7257             15 years old   Male               9th grade   1.65  5.413386
## 7258    18 years old or older   Male              12th grade   1.75  5.741470
## 7259             17 years old   Male              11th grade   1.73  5.675853
## 7260             17 years old Female              11th grade   1.63  5.347769
## 7261             15 years old Female               9th grade   1.60  5.249344
## 7262             15 years old   Male               9th grade   1.75  5.741470
## 7263             17 years old Female              12th grade   1.52  4.986877
## 7264             15 years old   Male               9th grade   1.75  5.741470
## 7265             15 years old Female               9th grade   1.73  5.675853
## 7266    18 years old or older Female              12th grade   1.60  5.249344
## 7267             16 years old Female              11th grade   1.68  5.511811
## 7268             17 years old Female              11th grade   1.83  6.003937
## 7269             15 years old   Male               9th grade   1.83  6.003937
## 7270             14 years old   Male               9th grade   1.78  5.839895
## 7271    18 years old or older Female              12th grade   1.78  5.839895
## 7272             16 years old Female              11th grade   1.55  5.085302
## 7273    18 years old or older Female              11th grade     NA        NA
## 7274             15 years old   Male               9th grade   1.70  5.577428
## 7275             15 years old Female               9th grade   1.50  4.921260
## 7276    18 years old or older   Male              12th grade   1.80  5.905512
## 7277             17 years old Female              11th grade   1.55  5.085302
## 7278             17 years old Female              11th grade     NA        NA
## 7279             15 years old   Male               9th grade   1.65  5.413386
## 7280             15 years old   Male               9th grade   1.80  5.905512
## 7281    18 years old or older Female              12th grade   1.40  4.593176
## 7282             14 years old Female               9th grade   1.60  5.249344
## 7283             15 years old Female               9th grade   1.68  5.511811
## 7284             14 years old   Male               9th grade   1.73  5.675853
## 7285    18 years old or older Female              12th grade   1.63  5.347769
## 7286             17 years old Female              11th grade   1.60  5.249344
## 7287             14 years old   Male               9th grade   1.68  5.511811
## 7288             15 years old   Male               9th grade   1.60  5.249344
## 7289    18 years old or older Female              12th grade   1.65  5.413386
## 7290             17 years old   Male              11th grade   1.70  5.577428
## 7291             15 years old Female               9th grade   1.57  5.150919
## 7292             15 years old   Male               9th grade   1.65  5.413386
## 7293    18 years old or older   Male              12th grade   1.80  5.905512
## 7294             17 years old Female              11th grade   1.60  5.249344
## 7295             15 years old Female               9th grade   1.65  5.413386
## 7296             14 years old Female               9th grade   1.55  5.085302
## 7297             17 years old   Male              12th grade   1.96  6.430446
## 7298             16 years old   Male              11th grade   1.80  5.905512
## 7299             16 years old   Male              11th grade   1.75  5.741470
## 7300             14 years old Female               9th grade   1.65  5.413386
## 7301             14 years old   Male               9th grade   1.70  5.577428
## 7302             17 years old   Male              12th grade   1.73  5.675853
## 7303             17 years old Female              11th grade   1.68  5.511811
## 7304             14 years old   Male               9th grade   1.78  5.839895
## 7305             16 years old Female              10th grade   1.65  5.413386
## 7306    18 years old or older   Male              12th grade   1.83  6.003937
## 7307             16 years old Female              11th grade   1.55  5.085302
## 7308             16 years old   Male              10th grade   1.88  6.167979
## 7309             16 years old   Male              11th grade   1.45  4.757218
## 7310             14 years old   Male               9th grade   1.78  5.839895
## 7311    18 years old or older Female              12th grade   1.57  5.150919
## 7312             16 years old Female              11th grade   1.57  5.150919
## 7313             16 years old   Male              10th grade   1.70  5.577428
## 7314             15 years old Female              10th grade   1.68  5.511811
## 7315             15 years old Female              10th grade   1.50  4.921260
## 7316             15 years old   Male              10th grade   1.75  5.741470
## 7317             15 years old Female               9th grade     NA        NA
## 7318             17 years old   Male              12th grade   1.70  5.577428
## 7319             17 years old   Male              11th grade   1.78  5.839895
## 7320             15 years old Female              10th grade   1.75  5.741470
## 7321             15 years old Female               9th grade   1.63  5.347769
## 7322    18 years old or older   Male              12th grade   1.70  5.577428
## 7323             17 years old   Male              11th grade   1.78  5.839895
## 7324    18 years old or older   <NA>              12th grade     NA        NA
## 7325             15 years old Female              10th grade   1.63  5.347769
## 7326             14 years old Female               9th grade   1.50  4.921260
## 7327             17 years old   Male              12th grade   1.83  6.003937
## 7328             14 years old   <NA>               9th grade     NA        NA
## 7329             17 years old   Male              12th grade   1.70  5.577428
## 7330             15 years old Female              10th grade   1.60  5.249344
## 7331             15 years old   Male              10th grade   1.80  5.905512
## 7332             15 years old   Male               9th grade   1.73  5.675853
## 7333             17 years old   Male              12th grade   1.70  5.577428
## 7334             14 years old   Male               9th grade   1.78  5.839895
## 7335             16 years old   Male              10th grade   1.73  5.675853
## 7336             15 years old   Male              10th grade   1.80  5.905512
## 7337             14 years old Female               9th grade   1.65  5.413386
## 7338             17 years old Female              12th grade   1.60  5.249344
## 7339             15 years old   Male               9th grade   1.98  6.496063
## 7340             17 years old   Male              12th grade   1.93  6.332021
## 7341             16 years old Female              10th grade   1.50  4.921260
## 7342             17 years old Female              10th grade   1.73  5.675853
## 7343             15 years old   Male               9th grade   1.80  5.905512
## 7344             17 years old   Male              12th grade   1.88  6.167979
## 7345             15 years old Female               9th grade   1.60  5.249344
## 7346             17 years old Female              11th grade   1.52  4.986877
## 7347             17 years old Female              12th grade   1.55  5.085302
## 7348             17 years old   Male              10th grade     NA        NA
## 7349             15 years old Female              10th grade   1.57  5.150919
## 7350             15 years old   Male               9th grade   1.68  5.511811
## 7351    18 years old or older Female              12th grade   1.63  5.347769
## 7352             15 years old   Male               9th grade   1.75  5.741470
## 7353             16 years old   Male              11th grade   1.80  5.905512
## 7354             17 years old Female              12th grade   1.63  5.347769
## 7355             15 years old   Male              10th grade   1.78  5.839895
## 7356             16 years old Female              10th grade   1.65  5.413386
## 7357             15 years old   Male               9th grade   1.78  5.839895
## 7358    18 years old or older Female              12th grade   1.57  5.150919
## 7359    18 years old or older   Male              12th grade   1.80  5.905512
## 7360             16 years old Female              11th grade   1.65  5.413386
## 7361             15 years old Female              10th grade   1.65  5.413386
## 7362             15 years old Female              10th grade   1.68  5.511811
## 7363             16 years old   Male               9th grade   1.83  6.003937
## 7364    18 years old or older Female              12th grade   1.50  4.921260
## 7365             15 years old Female               9th grade   1.70  5.577428
## 7366             17 years old   Male              11th grade   1.78  5.839895
## 7367    18 years old or older Female              12th grade   1.70  5.577428
## 7368             16 years old   Male              11th grade   1.60  5.249344
## 7369             15 years old   Male              10th grade   1.75  5.741470
## 7370             15 years old Female              10th grade   1.52  4.986877
## 7371             16 years old   Male               9th grade     NA        NA
## 7372             16 years old   Male              11th grade   1.73  5.675853
## 7373    18 years old or older   Male              12th grade   1.80  5.905512
## 7374             16 years old Female              10th grade   1.63  5.347769
## 7375             16 years old   Male              10th grade   1.75  5.741470
## 7376             14 years old   Male               9th grade   1.75  5.741470
## 7377    18 years old or older Female              12th grade   1.63  5.347769
## 7378             17 years old Female              11th grade   1.65  5.413386
## 7379             17 years old   Male              12th grade   1.70  5.577428
## 7380             15 years old   Male              10th grade   1.78  5.839895
## 7381             16 years old Female              10th grade   1.68  5.511811
## 7382             15 years old Female               9th grade     NA        NA
## 7383             17 years old Female              12th grade   1.78  5.839895
## 7384             15 years old   Male               9th grade   1.73  5.675853
## 7385             17 years old   Male              11th grade   1.75  5.741470
## 7386             17 years old Female              12th grade   1.55  5.085302
## 7387             17 years old   Male              11th grade   1.70  5.577428
## 7388             13 years old   Male               9th grade   1.75  5.741470
## 7389             17 years old Female              12th grade   1.55  5.085302
## 7390             15 years old   Male               9th grade   1.73  5.675853
## 7391             16 years old   Male               9th grade   1.88  6.167979
## 7392             17 years old Female              11th grade   1.68  5.511811
## 7393             17 years old Female              12th grade   1.65  5.413386
## 7394             15 years old   Male               9th grade     NA        NA
## 7395             17 years old Female              12th grade   1.55  5.085302
## 7396             14 years old Female               9th grade   1.78  5.839895
## 7397             17 years old   Male              11th grade   1.85  6.069554
## 7398    18 years old or older   Male              12th grade   1.83  6.003937
## 7399             16 years old Female              10th grade   1.68  5.511811
## 7400             16 years old Female              10th grade   1.50  4.921260
## 7401             16 years old   Male               9th grade   1.73  5.675853
## 7402             17 years old   Male              12th grade   1.83  6.003937
## 7403             16 years old   Male              11th grade   1.75  5.741470
## 7404             16 years old Female              10th grade   1.60  5.249344
## 7405             15 years old Female              10th grade   1.70  5.577428
## 7406             14 years old   Male               9th grade   1.85  6.069554
## 7407             16 years old   Male              11th grade   1.80  5.905512
## 7408    18 years old or older   Male              12th grade   1.70  5.577428
## 7409             15 years old Female               9th grade   1.88  6.167979
## 7410             16 years old   Male               9th grade   1.70  5.577428
## 7411             17 years old Female              12th grade   1.55  5.085302
## 7412             15 years old Female               9th grade   1.73  5.675853
## 7413    18 years old or older   Male              12th grade   1.75  5.741470
## 7414             17 years old   Male              11th grade   1.83  6.003937
## 7415             16 years old   Male              10th grade   1.83  6.003937
## 7416             15 years old Female              10th grade   1.70  5.577428
## 7417             14 years old   Male               9th grade   1.73  5.675853
## 7418             15 years old Female               9th grade   1.63  5.347769
## 7419             16 years old Female              10th grade   1.57  5.150919
## 7420             17 years old   Male              12th grade   1.75  5.741470
## 7421             16 years old Female              10th grade   1.60  5.249344
## 7422             17 years old   Male              12th grade   1.78  5.839895
## 7423             15 years old Female               9th grade   1.52  4.986877
## 7424             17 years old   Male              12th grade   1.80  5.905512
## 7425             16 years old Female              10th grade   1.63  5.347769
## 7426             15 years old   Male              10th grade   1.85  6.069554
## 7427             14 years old   Male               9th grade   1.83  6.003937
## 7428    18 years old or older Female              12th grade   1.60  5.249344
## 7429    18 years old or older   Male              11th grade   1.70  5.577428
## 7430             17 years old Female              12th grade   1.63  5.347769
## 7431             16 years old   Male              10th grade   1.83  6.003937
## 7432             15 years old   Male              10th grade   1.83  6.003937
## 7433             15 years old   Male               9th grade   1.70  5.577428
## 7434             17 years old   Male              12th grade   1.75  5.741470
## 7435             14 years old Female               9th grade   1.52  4.986877
## 7436             15 years old   Male               9th grade   1.63  5.347769
## 7437             15 years old   Male              10th grade     NA        NA
## 7438             17 years old Female              10th grade   1.73  5.675853
## 7439             16 years old Female              10th grade   1.52  4.986877
## 7440             16 years old Female              10th grade     NA        NA
## 7441             16 years old   Male              10th grade   1.70  5.577428
## 7442    18 years old or older Female              12th grade   1.57  5.150919
## 7443             17 years old   Male              12th grade   1.75  5.741470
## 7444    18 years old or older   Male              12th grade   1.78  5.839895
## 7445             17 years old Female              12th grade   1.63  5.347769
## 7446             16 years old Female              10th grade   1.60  5.249344
## 7447             17 years old Female              11th grade   1.63  5.347769
## 7448             16 years old   Male              10th grade   1.75  5.741470
## 7449             16 years old Female              11th grade   1.70  5.577428
## 7450             16 years old   Male              10th grade   1.68  5.511811
## 7451             16 years old   Male              11th grade   1.78  5.839895
## 7452             16 years old   Male              11th grade   1.96  6.430446
## 7453             15 years old Female              10th grade     NA        NA
## 7454             17 years old   Male              11th grade   1.78  5.839895
## 7455             17 years old   Male              11th grade   1.60  5.249344
## 7456             15 years old   Male              10th grade     NA        NA
## 7457             16 years old   Male              11th grade   1.68  5.511811
## 7458             17 years old   Male              11th grade   1.70  5.577428
## 7459             16 years old Female              10th grade   1.63  5.347769
## 7460             16 years old Female              11th grade   1.63  5.347769
## 7461             17 years old   Male              10th grade   1.80  5.905512
## 7462             17 years old Female              11th grade   1.70  5.577428
## 7463             17 years old   Male              11th grade   1.96  6.430446
## 7464             17 years old   <NA>              11th grade     NA        NA
## 7465             17 years old   Male              11th grade   1.80  5.905512
## 7466             17 years old   Male              11th grade     NA        NA
## 7467             16 years old   Male              10th grade   1.78  5.839895
## 7468             17 years old Female              11th grade   1.68  5.511811
## 7469             17 years old   <NA>              11th grade     NA        NA
## 7470             17 years old Female              11th grade   1.68  5.511811
## 7471             17 years old   Male              11th grade   1.65  5.413386
## 7472             17 years old Female              11th grade   1.63  5.347769
## 7473             16 years old   Male              11th grade   1.73  5.675853
## 7474    18 years old or older   Male              12th grade   1.65  5.413386
## 7475             14 years old   Male               9th grade   1.65  5.413386
## 7476             17 years old Female              12th grade   1.60  5.249344
## 7477             15 years old   Male               9th grade   1.85  6.069554
## 7478             17 years old   Male              12th grade   1.80  5.905512
## 7479             16 years old Female               9th grade   1.52  4.986877
## 7480             16 years old Female               9th grade   1.57  5.150919
## 7481             17 years old   Male              12th grade   1.96  6.430446
## 7482             15 years old Female               9th grade   1.57  5.150919
## 7483             15 years old Female               9th grade     NA        NA
## 7484    18 years old or older Female              12th grade   1.57  5.150919
## 7485             16 years old Female               9th grade   1.60  5.249344
## 7486    18 years old or older   Male              12th grade   1.68  5.511811
## 7487    18 years old or older Female              12th grade   1.52  4.986877
## 7488             15 years old   Male               9th grade   1.65  5.413386
## 7489             14 years old   Male               9th grade   1.75  5.741470
## 7490             17 years old Female              12th grade   1.63  5.347769
## 7491             17 years old Female              12th grade   1.52  4.986877
## 7492                     <NA>   Male               9th grade     NA        NA
## 7493             17 years old Female              12th grade   1.55  5.085302
## 7494    18 years old or older Female              12th grade   1.60  5.249344
## 7495             15 years old   Male               9th grade   1.68  5.511811
## 7496             17 years old   Male              12th grade   1.85  6.069554
## 7497             17 years old Female              12th grade   1.80  5.905512
## 7498             14 years old   Male               9th grade   1.85  6.069554
## 7499    18 years old or older   Male              12th grade   1.85  6.069554
## 7500    18 years old or older   Male              12th grade   1.73  5.675853
## 7501             15 years old   Male               9th grade   1.80  5.905512
## 7502             15 years old Female               9th grade   1.57  5.150919
## 7503             17 years old Female              12th grade   1.70  5.577428
## 7504             16 years old   Male              10th grade   1.78  5.839895
## 7505             17 years old   Male              12th grade   1.78  5.839895
## 7506             17 years old Female              12th grade   1.63  5.347769
## 7507             15 years old   Male              10th grade   1.75  5.741470
## 7508             17 years old Female              12th grade   1.57  5.150919
## 7509    18 years old or older   Male              12th grade   1.80  5.905512
## 7510             17 years old Female              12th grade   1.60  5.249344
## 7511             16 years old   Male              11th grade   1.70  5.577428
## 7512             16 years old Female              11th grade   1.68  5.511811
## 7513             16 years old Female              11th grade   1.68  5.511811
## 7514    18 years old or older   Male              12th grade   1.88  6.167979
## 7515             17 years old   Male              11th grade   1.60  5.249344
## 7516             15 years old Female              10th grade   1.63  5.347769
## 7517             17 years old   Male              12th grade   1.75  5.741470
## 7518             17 years old Female              11th grade   1.65  5.413386
## 7519    18 years old or older   Male              12th grade   1.73  5.675853
## 7520             15 years old   Male              10th grade   1.90  6.233596
## 7521             15 years old Female              10th grade   1.75  5.741470
## 7522             15 years old Female               9th grade   1.73  5.675853
## 7523             16 years old Female              11th grade   1.70  5.577428
## 7524    18 years old or older Female              12th grade   1.57  5.150919
## 7525             16 years old Female              11th grade   1.83  6.003937
## 7526    18 years old or older Female              12th grade   1.70  5.577428
## 7527             16 years old Female              11th grade     NA        NA
## 7528    18 years old or older Female              12th grade   1.63  5.347769
## 7529             17 years old   Male              12th grade   1.70  5.577428
## 7530             16 years old   Male              11th grade   1.88  6.167979
## 7531             16 years old Female              10th grade   1.60  5.249344
## 7532             17 years old Female              11th grade   1.68  5.511811
## 7533             14 years old Female               9th grade     NA        NA
## 7534             15 years old Female              10th grade   1.60  5.249344
## 7535             16 years old   Male              10th grade   1.70  5.577428
## 7536             17 years old Female              11th grade   1.70  5.577428
## 7537             15 years old   Male              10th grade   1.65  5.413386
## 7538    18 years old or older   Male              12th grade   2.01  6.594488
## 7539             16 years old   Male              11th grade   1.70  5.577428
## 7540    18 years old or older   Male              12th grade   1.83  6.003937
## 7541    18 years old or older Female              12th grade   1.68  5.511811
## 7542             17 years old Female              12th grade   1.63  5.347769
## 7543             15 years old   Male              10th grade   1.90  6.233596
## 7544             15 years old   Male              10th grade   1.80  5.905512
## 7545             16 years old   Male              11th grade   1.70  5.577428
## 7546             14 years old Female               9th grade   1.60  5.249344
## 7547             16 years old   Male              11th grade   1.83  6.003937
## 7548             17 years old Female              12th grade   1.63  5.347769
## 7549             16 years old Female              11th grade   1.60  5.249344
## 7550             16 years old   Male              10th grade   1.80  5.905512
## 7551             15 years old Female              10th grade     NA        NA
## 7552             16 years old   Male              11th grade   1.85  6.069554
## 7553    18 years old or older   Male              12th grade   1.88  6.167979
## 7554             14 years old   Male               9th grade   1.75  5.741470
## 7555             15 years old Female              10th grade     NA        NA
## 7556             14 years old   Male               9th grade   1.73  5.675853
## 7557             15 years old   Male              10th grade   1.80  5.905512
## 7558    18 years old or older Female              12th grade   1.57  5.150919
## 7559             14 years old Female               9th grade   1.47  4.822835
## 7560             16 years old Female              10th grade   1.68  5.511811
## 7561             15 years old   Male               9th grade   1.78  5.839895
## 7562             15 years old   Male              10th grade   1.88  6.167979
## 7563             15 years old Female               9th grade   1.65  5.413386
## 7564             16 years old   Male              10th grade   1.85  6.069554
## 7565             17 years old   Male              11th grade   1.90  6.233596
## 7566    18 years old or older   Male              12th grade   1.65  5.413386
## 7567             15 years old Female               9th grade   1.68  5.511811
## 7568             17 years old Female              10th grade   1.55  5.085302
## 7569             17 years old   Male              11th grade   1.93  6.332021
## 7570             15 years old   Male               9th grade   1.80  5.905512
## 7571             16 years old   Male              10th grade   1.73  5.675853
## 7572             16 years old   Male              11th grade   1.75  5.741470
## 7573    18 years old or older   Male              12th grade   1.80  5.905512
## 7574             14 years old   Male               9th grade   1.73  5.675853
## 7575             15 years old   Male              10th grade   1.88  6.167979
## 7576             16 years old Female              11th grade   1.70  5.577428
## 7577    18 years old or older   Male              12th grade   1.88  6.167979
## 7578             14 years old   Male               9th grade   1.63  5.347769
## 7579             15 years old Female              10th grade     NA        NA
## 7580             16 years old Female              11th grade   1.70  5.577428
## 7581             17 years old   Male              12th grade   1.65  5.413386
## 7582             15 years old   Male               9th grade   1.75  5.741470
## 7583             16 years old Female              10th grade   1.65  5.413386
## 7584    18 years old or older Female              12th grade   1.55  5.085302
## 7585             16 years old Female               9th grade   1.57  5.150919
## 7586             16 years old   Male              10th grade   1.90  6.233596
## 7587             17 years old   Male              11th grade   1.75  5.741470
## 7588             17 years old Female              12th grade   1.63  5.347769
## 7589             16 years old Female               9th grade   1.55  5.085302
## 7590             15 years old   Male              10th grade   1.90  6.233596
## 7591             17 years old   Male              11th grade   1.75  5.741470
## 7592             15 years old Female               9th grade   1.60  5.249344
## 7593             15 years old   Male               9th grade     NA        NA
## 7594             16 years old Female              10th grade   1.55  5.085302
## 7595             17 years old   Male              11th grade   1.75  5.741470
## 7596    18 years old or older   Male              12th grade   1.70  5.577428
## 7597             14 years old Female               9th grade   1.60  5.249344
## 7598             16 years old   Male              10th grade   1.80  5.905512
## 7599             16 years old Female              10th grade   1.73  5.675853
## 7600             17 years old   Male              11th grade   1.75  5.741470
## 7601             17 years old   Male              12th grade   1.80  5.905512
## 7602             16 years old   Male              10th grade   1.68  5.511811
## 7603             17 years old Female              11th grade   1.45  4.757218
## 7604    18 years old or older   Male              12th grade   1.80  5.905512
## 7605             15 years old   Male               9th grade   1.60  5.249344
## 7606             16 years old   Male              10th grade   1.68  5.511811
## 7607             15 years old   Male               9th grade   1.75  5.741470
## 7608             16 years old   Male              10th grade   1.85  6.069554
## 7609             14 years old Female               9th grade   1.55  5.085302
## 7610             16 years old   Male              10th grade   1.83  6.003937
## 7611             17 years old   Male              11th grade   1.90  6.233596
## 7612             14 years old Female               9th grade   1.57  5.150919
## 7613             14 years old Female               9th grade   1.60  5.249344
## 7614             16 years old   Male              10th grade   1.83  6.003937
## 7615    18 years old or older   Male              12th grade   1.78  5.839895
## 7616             15 years old Female               9th grade   1.68  5.511811
## 7617             14 years old Female               9th grade   1.70  5.577428
## 7618             16 years old Female              10th grade   1.65  5.413386
## 7619             17 years old   Male              11th grade   1.73  5.675853
## 7620    18 years old or older   Male              12th grade   1.75  5.741470
## 7621             15 years old   Male               9th grade   1.63  5.347769
## 7622             15 years old Female               9th grade   1.57  5.150919
## 7623             15 years old   Male               9th grade   1.78  5.839895
## 7624             16 years old Female              10th grade   1.63  5.347769
## 7625             17 years old Female              11th grade   1.63  5.347769
## 7626    18 years old or older   Male              12th grade   1.83  6.003937
## 7627             14 years old   Male               9th grade   1.60  5.249344
## 7628             15 years old   Male               9th grade   1.73  5.675853
## 7629             15 years old Female               9th grade   1.63  5.347769
## 7630             16 years old Female              10th grade   1.70  5.577428
## 7631             16 years old Female              11th grade   1.60  5.249344
## 7632             17 years old   Male              12th grade   1.83  6.003937
## 7633             15 years old Female               9th grade   1.65  5.413386
## 7634             16 years old Female              10th grade   1.70  5.577428
## 7635             16 years old Female              11th grade   1.65  5.413386
## 7636             17 years old   Male              11th grade   1.75  5.741470
## 7637             15 years old   Male               9th grade   1.78  5.839895
## 7638             15 years old Female               9th grade   1.60  5.249344
## 7639             16 years old   Male              10th grade   1.73  5.675853
## 7640             16 years old   Male              11th grade   1.70  5.577428
## 7641             17 years old   Male              12th grade   1.75  5.741470
## 7642             15 years old Female               9th grade     NA        NA
## 7643             16 years old Female               9th grade   1.70  5.577428
## 7644             16 years old Female              10th grade   1.68  5.511811
## 7645             17 years old Female              11th grade   1.70  5.577428
## 7646             16 years old Female               9th grade   1.68  5.511811
## 7647             16 years old   Male              10th grade   1.80  5.905512
## 7648             16 years old   Male              11th grade   1.73  5.675853
## 7649    18 years old or older Female              12th grade   1.50  4.921260
## 7650             15 years old   Male               9th grade   1.55  5.085302
## 7651             15 years old Female              10th grade   1.65  5.413386
## 7652             17 years old Female              11th grade   1.68  5.511811
## 7653             17 years old   Male              12th grade   1.83  6.003937
## 7654             15 years old Female               9th grade   1.68  5.511811
## 7655             16 years old Female              10th grade   1.85  6.069554
## 7656             17 years old Female              11th grade   1.63  5.347769
## 7657    18 years old or older   Male              12th grade   1.78  5.839895
## 7658             15 years old   Male               9th grade   1.78  5.839895
## 7659             16 years old Female              10th grade   1.73  5.675853
## 7660             16 years old Female              11th grade   1.65  5.413386
## 7661             15 years old Female               9th grade   1.55  5.085302
## 7662             15 years old   Male               9th grade   1.85  6.069554
## 7663             16 years old   Male              10th grade   1.80  5.905512
## 7664             17 years old Female              11th grade   1.68  5.511811
## 7665             17 years old   Male              12th grade   1.93  6.332021
## 7666             15 years old Female               9th grade   1.57  5.150919
## 7667             16 years old Female              10th grade   1.78  5.839895
## 7668             16 years old Female              11th grade   1.65  5.413386
## 7669    18 years old or older   Male              12th grade   1.78  5.839895
## 7670             15 years old Female               9th grade   1.75  5.741470
## 7671             16 years old Female              10th grade   1.65  5.413386
## 7672             17 years old   Male              11th grade   1.88  6.167979
## 7673             17 years old   Male              12th grade   1.63  5.347769
## 7674             15 years old   Male               9th grade   1.78  5.839895
## 7675             16 years old Female              10th grade   1.60  5.249344
## 7676             16 years old Female              11th grade   1.75  5.741470
## 7677             17 years old Female              11th grade   1.60  5.249344
## 7678    18 years old or older Female              12th grade   1.65  5.413386
## 7679             17 years old Female              11th grade   1.73  5.675853
## 7680    18 years old or older Female              12th grade   1.57  5.150919
## 7681             15 years old Female               9th grade   1.68  5.511811
## 7682             17 years old Female              10th grade   1.50  4.921260
## 7683             17 years old   Male              12th grade   1.85  6.069554
## 7684             16 years old Female              11th grade   1.65  5.413386
## 7685    18 years old or older   Male              12th grade   1.80  5.905512
## 7686             15 years old   Male               9th grade   1.85  6.069554
## 7687    18 years old or older   Male              12th grade   1.78  5.839895
## 7688             17 years old   Male              11th grade   1.78  5.839895
## 7689             16 years old   Male              10th grade     NA        NA
## 7690    18 years old or older   Male              11th grade   1.80  5.905512
## 7691    18 years old or older Female              12th grade   1.70  5.577428
## 7692             14 years old Female               9th grade   1.65  5.413386
## 7693             16 years old Female              10th grade   1.65  5.413386
## 7694             15 years old Female               9th grade   1.73  5.675853
## 7695             17 years old   Male              11th grade   1.80  5.905512
## 7696             16 years old   Male              11th grade   1.75  5.741470
## 7697    18 years old or older   Male              12th grade   1.70  5.577428
## 7698             14 years old Female               9th grade   1.60  5.249344
## 7699             15 years old Female               9th grade   1.73  5.675853
## 7700             16 years old   Male              10th grade     NA        NA
## 7701             17 years old   Male              11th grade   1.85  6.069554
## 7702             17 years old   Male              12th grade   1.85  6.069554
## 7703    18 years old or older Female              12th grade   1.57  5.150919
## 7704             17 years old Female              11th grade   1.65  5.413386
## 7705             15 years old Female               9th grade   1.57  5.150919
## 7706             16 years old   Male              10th grade   1.68  5.511811
## 7707             17 years old   Male              12th grade   1.70  5.577428
## 7708             15 years old   Male               9th grade   1.68  5.511811
## 7709             17 years old Female              11th grade   1.57  5.150919
## 7710             15 years old   Male               9th grade   1.85  6.069554
## 7711             16 years old Female              10th grade   1.63  5.347769
## 7712    18 years old or older Female              12th grade   1.75  5.741470
## 7713             14 years old   Male               9th grade   1.73  5.675853
## 7714             16 years old   Male              11th grade   1.73  5.675853
## 7715             16 years old Female              10th grade   1.55  5.085302
## 7716             16 years old Female              11th grade   1.57  5.150919
## 7717             15 years old   Male               9th grade   1.70  5.577428
## 7718             16 years old Female              10th grade   1.52  4.986877
## 7719             15 years old Female               9th grade   1.65  5.413386
## 7720             16 years old Female              11th grade   1.70  5.577428
## 7721             17 years old   Male              11th grade   1.70  5.577428
## 7722    18 years old or older   Male              12th grade   1.88  6.167979
## 7723             15 years old   Male               9th grade   1.73  5.675853
## 7724             16 years old   Male              10th grade   1.70  5.577428
## 7725             15 years old   Male               9th grade   1.80  5.905512
## 7726             17 years old Female              11th grade   1.63  5.347769
## 7727             16 years old Female              10th grade   1.65  5.413386
## 7728             16 years old Female              11th grade   1.68  5.511811
## 7729    18 years old or older   Male              12th grade   1.93  6.332021
## 7730             14 years old Female               9th grade   1.63  5.347769
## 7731             17 years old   Male              10th grade   1.70  5.577428
## 7732             16 years old   Male              10th grade   1.85  6.069554
## 7733             17 years old Female              11th grade   1.57  5.150919
## 7734             17 years old Female              12th grade   1.52  4.986877
## 7735             16 years old   Male              10th grade   1.80  5.905512
## 7736    18 years old or older   Male              12th grade   1.65  5.413386
## 7737             14 years old Female               9th grade   1.68  5.511811
## 7738             16 years old Female              11th grade   1.60  5.249344
## 7739             17 years old Female              12th grade   1.57  5.150919
## 7740             14 years old Female               9th grade   1.60  5.249344
## 7741             17 years old   Male              10th grade   1.73  5.675853
## 7742    18 years old or older Female              12th grade   1.65  5.413386
## 7743             15 years old Female               9th grade   1.60  5.249344
## 7744             16 years old Female              11th grade   1.68  5.511811
## 7745             16 years old Female              10th grade   1.63  5.347769
## 7746             17 years old   Male              11th grade   1.83  6.003937
## 7747             17 years old Female              12th grade   1.57  5.150919
## 7748             15 years old   Male               9th grade   1.73  5.675853
## 7749             16 years old Female              10th grade   1.75  5.741470
## 7750             14 years old Female               9th grade   1.68  5.511811
## 7751    18 years old or older Female              11th grade   1.60  5.249344
## 7752             17 years old   Male              11th grade   1.78  5.839895
## 7753             15 years old   Male               9th grade   1.78  5.839895
## 7754             16 years old Female              10th grade   1.60  5.249344
## 7755             15 years old   Male              11th grade   1.78  5.839895
## 7756             15 years old Female               9th grade   1.63  5.347769
## 7757             16 years old Female              10th grade   1.75  5.741470
## 7758    18 years old or older   Male              12th grade   1.83  6.003937
## 7759             17 years old   Male              11th grade     NA        NA
## 7760             15 years old Female               9th grade   1.70  5.577428
## 7761    18 years old or older Female              12th grade   1.60  5.249344
## 7762             15 years old Female               9th grade     NA        NA
## 7763             16 years old Female              11th grade   1.60  5.249344
## 7764             16 years old   Male              10th grade   1.78  5.839895
## 7765             17 years old   Male              11th grade   1.68  5.511811
## 7766             14 years old Female               9th grade   1.68  5.511811
## 7767             17 years old   Male              12th grade   1.85  6.069554
## 7768             17 years old   Male              11th grade   1.57  5.150919
## 7769             17 years old   Male              10th grade   1.80  5.905512
## 7770             17 years old   Male              11th grade   1.78  5.839895
## 7771             17 years old   Male              12th grade   1.75  5.741470
## 7772             14 years old   Male               9th grade   1.80  5.905512
## 7773             15 years old   Male               9th grade   1.83  6.003937
## 7774             15 years old   Male              10th grade   1.65  5.413386
## 7775             17 years old Female              11th grade   1.70  5.577428
## 7776             15 years old Female               9th grade   1.63  5.347769
## 7777             16 years old   Male              10th grade   1.68  5.511811
## 7778             15 years old   Male               9th grade   1.70  5.577428
## 7779             17 years old   Male              11th grade   1.90  6.233596
## 7780             16 years old   Male              10th grade     NA        NA
## 7781             16 years old   Male              11th grade   1.70  5.577428
## 7782    18 years old or older Female              12th grade   1.57  5.150919
## 7783             15 years old   Male               9th grade   1.73  5.675853
## 7784             16 years old   Male              10th grade   1.88  6.167979
## 7785             15 years old   Male               9th grade   1.75  5.741470
## 7786             16 years old   Male              11th grade   1.68  5.511811
## 7787             17 years old   Male              11th grade   1.80  5.905512
## 7788             15 years old Female               9th grade   1.65  5.413386
## 7789             16 years old   Male              10th grade   1.85  6.069554
## 7790    18 years old or older   Male              12th grade   1.75  5.741470
## 7791             17 years old Female              11th grade   1.55  5.085302
## 7792             16 years old   Male              10th grade   1.80  5.905512
## 7793             17 years old   Male              11th grade   1.88  6.167979
## 7794    18 years old or older   Male              12th grade   1.75  5.741470
## 7795             14 years old   Male               9th grade   1.85  6.069554
## 7796             15 years old Female              10th grade   1.70  5.577428
## 7797             17 years old Female              12th grade   1.70  5.577428
## 7798             15 years old   Male               9th grade   1.78  5.839895
## 7799             17 years old   Male              11th grade   1.85  6.069554
## 7800             16 years old   Male              10th grade   1.63  5.347769
## 7801             17 years old   Male              11th grade   1.85  6.069554
## 7802    18 years old or older Female              12th grade   1.52  4.986877
## 7803             14 years old   Male               9th grade   1.80  5.905512
## 7804             16 years old   Male              11th grade   1.83  6.003937
## 7805             16 years old   Male              10th grade   1.65  5.413386
## 7806             17 years old   Male              11th grade   1.83  6.003937
## 7807    18 years old or older   Male              12th grade   1.73  5.675853
## 7808             15 years old   Male               9th grade   1.73  5.675853
## 7809             15 years old   Male              10th grade   1.68  5.511811
## 7810             15 years old Female               9th grade   1.60  5.249344
## 7811             17 years old Female              11th grade     NA        NA
## 7812             16 years old Female              10th grade   1.60  5.249344
## 7813             17 years old   Male              11th grade   1.65  5.413386
## 7814             17 years old   Male              12th grade   1.78  5.839895
## 7815    18 years old or older Female              12th grade   1.45  4.757218
## 7816             16 years old   Male              10th grade   1.63  5.347769
## 7817             14 years old   Male               9th grade   1.65  5.413386
## 7818             17 years old   Male              11th grade   1.68  5.511811
## 7819             17 years old   Male              12th grade   1.70  5.577428
## 7820             15 years old   Male              10th grade   1.73  5.675853
## 7821             16 years old   Male               9th grade   1.73  5.675853
## 7822    18 years old or older Female              12th grade   1.57  5.150919
## 7823             15 years old   Male              10th grade   1.78  5.839895
## 7824             14 years old   Male               9th grade   1.80  5.905512
## 7825             17 years old   Male              11th grade   1.75  5.741470
## 7826             17 years old   Male              12th grade   1.78  5.839895
## 7827             15 years old   Male              10th grade   1.80  5.905512
## 7828             15 years old   Male               9th grade   1.78  5.839895
## 7829             17 years old   Male              11th grade   1.75  5.741470
## 7830    18 years old or older   Male              12th grade   1.73  5.675853
## 7831             15 years old Female              10th grade   1.65  5.413386
## 7832             14 years old Female               9th grade   1.78  5.839895
## 7833             16 years old   Male              11th grade   1.73  5.675853
## 7834             17 years old   Male              12th grade   1.85  6.069554
## 7835             16 years old Female              10th grade   1.57  5.150919
## 7836             15 years old Female               9th grade   1.57  5.150919
## 7837             16 years old   Male              11th grade   1.88  6.167979
## 7838             17 years old Female              11th grade   1.70  5.577428
## 7839             15 years old   Male              10th grade   1.88  6.167979
## 7840             15 years old Female               9th grade   1.65  5.413386
## 7841             17 years old   Male              11th grade   1.80  5.905512
## 7842             17 years old   Male              11th grade   1.75  5.741470
## 7843             16 years old Female              11th grade   1.63  5.347769
## 7844             17 years old   Male              12th grade   1.70  5.577428
## 7845             15 years old Female              10th grade   1.75  5.741470
## 7846             14 years old Female               9th grade   1.55  5.085302
## 7847             16 years old Female              11th grade   1.57  5.150919
## 7848             15 years old Female              10th grade   1.85  6.069554
## 7849             14 years old   Male               9th grade   1.78  5.839895
## 7850             16 years old   Male              11th grade   1.73  5.675853
## 7851             15 years old   Male              10th grade     NA        NA
## 7852             17 years old   Male              11th grade   1.85  6.069554
## 7853             17 years old Female              12th grade   1.63  5.347769
## 7854             16 years old Female              10th grade   1.57  5.150919
## 7855             16 years old   Male               9th grade   1.70  5.577428
## 7856             16 years old Female              11th grade   1.63  5.347769
## 7857             17 years old   Male              12th grade   1.70  5.577428
## 7858             17 years old Female              12th grade   1.68  5.511811
## 7859             16 years old   Male              10th grade   1.78  5.839895
## 7860             14 years old   Male               9th grade   1.70  5.577428
## 7861             17 years old   Male              11th grade   1.75  5.741470
## 7862             17 years old Female              12th grade   1.73  5.675853
## 7863             16 years old   Male              10th grade   1.75  5.741470
## 7864    18 years old or older Female              12th grade   1.65  5.413386
## 7865             17 years old   Male              11th grade   1.88  6.167979
## 7866             17 years old   Male              12th grade   1.70  5.577428
## 7867             16 years old Female              10th grade   1.68  5.511811
## 7868             15 years old   Male               9th grade   1.78  5.839895
## 7869             17 years old Female              11th grade   1.55  5.085302
## 7870             17 years old   Male              12th grade   1.78  5.839895
## 7871             16 years old Female              10th grade   1.68  5.511811
## 7872             14 years old   Male               9th grade   1.68  5.511811
## 7873             17 years old Female              11th grade   1.50  4.921260
## 7874             17 years old Female              12th grade   1.65  5.413386
## 7875             17 years old   Male              12th grade   1.75  5.741470
## 7876             16 years old   Male              10th grade   1.73  5.675853
## 7877             15 years old   Male               9th grade   1.68  5.511811
## 7878             17 years old   Male              11th grade   1.73  5.675853
## 7879             16 years old   Male              10th grade   1.73  5.675853
## 7880             15 years old   Male              10th grade   1.88  6.167979
## 7881             14 years old Female               9th grade   1.55  5.085302
## 7882             16 years old   Male              11th grade   1.73  5.675853
## 7883             17 years old Female              12th grade   1.57  5.150919
## 7884             16 years old Female              10th grade   1.75  5.741470
## 7885             15 years old Female               9th grade   1.52  4.986877
## 7886             17 years old   Male              11th grade   1.75  5.741470
## 7887             17 years old Female              11th grade     NA        NA
## 7888             15 years old Female              10th grade   1.75  5.741470
## 7889             15 years old   Male               9th grade   1.73  5.675853
## 7890             16 years old Female              11th grade   1.73  5.675853
## 7891             17 years old Female              11th grade   1.65  5.413386
## 7892             16 years old   Male              10th grade   1.75  5.741470
## 7893             15 years old Female               9th grade   1.78  5.839895
## 7894             17 years old Female              11th grade   1.57  5.150919
## 7895             15 years old   Male              10th grade   1.70  5.577428
## 7896             14 years old   Male               9th grade   1.70  5.577428
## 7897             15 years old Female               9th grade   1.70  5.577428
## 7898             16 years old Female              11th grade   1.65  5.413386
## 7899             17 years old   Male              11th grade   1.65  5.413386
## 7900             16 years old   Male              10th grade   1.78  5.839895
## 7901             14 years old   Male               9th grade     NA        NA
## 7902             16 years old Female              11th grade   1.63  5.347769
## 7903             17 years old   Male              12th grade   1.75  5.741470
## 7904             15 years old   Male               9th grade   1.80  5.905512
## 7905             16 years old Female              10th grade   1.70  5.577428
## 7906             17 years old   Male              12th grade   1.83  6.003937
## 7907             16 years old Female              10th grade   1.63  5.347769
## 7908             15 years old Female              10th grade   1.57  5.150919
## 7909             16 years old   Male               9th grade   1.85  6.069554
## 7910             17 years old   Male              11th grade   1.80  5.905512
## 7911             16 years old Female              10th grade   1.60  5.249344
## 7912             17 years old Female              12th grade   1.75  5.741470
## 7913             14 years old Female               9th grade   1.63  5.347769
## 7914             17 years old   Male              11th grade   1.73  5.675853
## 7915             14 years old   Male               9th grade   1.65  5.413386
## 7916    18 years old or older Female              11th grade   1.57  5.150919
## 7917             15 years old   Male              10th grade   1.83  6.003937
## 7918             17 years old Female              12th grade   1.75  5.741470
## 7919             15 years old   Male               9th grade   1.75  5.741470
## 7920             17 years old   Male              11th grade   1.70  5.577428
## 7921             17 years old   Male              10th grade   1.52  4.986877
## 7922             15 years old Female               9th grade   1.65  5.413386
## 7923             17 years old   Male              11th grade   1.83  6.003937
## 7924             16 years old   Male              11th grade   1.88  6.167979
## 7925             16 years old   Male              10th grade   1.83  6.003937
## 7926             15 years old   Male               9th grade   1.80  5.905512
## 7927             17 years old   Male              11th grade   1.83  6.003937
## 7928             16 years old Female              10th grade   1.68  5.511811
## 7929    18 years old or older   Male              12th grade   1.88  6.167979
## 7930             14 years old   Male               9th grade   1.68  5.511811
## 7931             17 years old   Male              11th grade   1.83  6.003937
## 7932             15 years old   Male              10th grade     NA        NA
## 7933             15 years old   Male               9th grade   1.98  6.496063
## 7934             16 years old   Male              11th grade   1.63  5.347769
## 7935             16 years old Female              10th grade   1.52  4.986877
## 7936             15 years old   Male               9th grade   1.78  5.839895
## 7937             17 years old   Male              11th grade   1.78  5.839895
## 7938             16 years old   Male              10th grade   1.78  5.839895
## 7939    18 years old or older   Male              12th grade   1.93  6.332021
## 7940             15 years old Female               9th grade   1.68  5.511811
## 7941             16 years old   Male              11th grade   1.83  6.003937
## 7942             16 years old Female              10th grade   1.57  5.150919
## 7943             14 years old Female               9th grade   1.63  5.347769
## 7944             17 years old   Male              11th grade   1.65  5.413386
## 7945             15 years old   Male              10th grade   1.85  6.069554
## 7946             15 years old   Male               9th grade   1.57  5.150919
## 7947             16 years old   Male              11th grade   1.73  5.675853
## 7948             16 years old   Male              10th grade   1.60  5.249344
## 7949    18 years old or older   Male              12th grade   1.70  5.577428
## 7950    18 years old or older   Male              12th grade   1.83  6.003937
## 7951             15 years old   Male               9th grade   1.70  5.577428
## 7952             17 years old Female              11th grade   1.60  5.249344
## 7953             15 years old Female              10th grade   1.57  5.150919
## 7954             15 years old   Male               9th grade   1.68  5.511811
## 7955             17 years old   Male              11th grade   1.80  5.905512
## 7956             17 years old   Male              11th grade   1.78  5.839895
## 7957             16 years old Female              10th grade   1.50  4.921260
## 7958    18 years old or older   Male              12th grade   1.80  5.905512
## 7959             17 years old   Male              12th grade   1.85  6.069554
## 7960             15 years old Female               9th grade   1.63  5.347769
## 7961             15 years old   Male              10th grade   1.88  6.167979
## 7962    18 years old or older Female              12th grade   1.65  5.413386
## 7963             14 years old   Male               9th grade   1.63  5.347769
## 7964    18 years old or older   Male              11th grade   1.80  5.905512
## 7965             15 years old Female              10th grade   1.55  5.085302
## 7966             17 years old   Male              12th grade   1.73  5.675853
## 7967             15 years old Female               9th grade   1.73  5.675853
## 7968  12 years old or younger   Male               9th grade     NA        NA
## 7969             17 years old Female              12th grade   1.80  5.905512
## 7970             15 years old   Male               9th grade   1.70  5.577428
## 7971             16 years old   Male              10th grade   1.80  5.905512
## 7972             16 years old   Male              10th grade   1.85  6.069554
## 7973             15 years old   Male               9th grade   1.75  5.741470
## 7974             16 years old Female              11th grade   1.65  5.413386
## 7975             16 years old Female              10th grade   1.57  5.150919
## 7976             17 years old Female              10th grade   1.63  5.347769
## 7977             16 years old   Male              10th grade   1.60  5.249344
## 7978             17 years old Female              12th grade   1.68  5.511811
## 7979             17 years old   Male              12th grade   1.85  6.069554
## 7980    18 years old or older Female              12th grade   1.63  5.347769
## 7981    18 years old or older Female              12th grade   1.65  5.413386
## 7982    18 years old or older Female              12th grade   1.70  5.577428
## 7983             16 years old Female              11th grade   1.57  5.150919
## 7984             15 years old   Male              10th grade   1.78  5.839895
## 7985             17 years old Female              12th grade   1.63  5.347769
## 7986             15 years old   Male              10th grade   1.78  5.839895
## 7987             17 years old Female              11th grade   1.60  5.249344
## 7988             16 years old Female              10th grade   1.83  6.003937
## 7989             17 years old   Male              12th grade   1.73  5.675853
## 7990    18 years old or older   Male              12th grade   1.88  6.167979
## 7991             15 years old   Male              10th grade   1.90  6.233596
## 7992    18 years old or older   Male              12th grade   1.70  5.577428
## 7993             16 years old   Male              10th grade   1.68  5.511811
## 7994             17 years old   Male              12th grade   1.83  6.003937
## 7995             16 years old Female               9th grade   1.60  5.249344
## 7996    18 years old or older   Male              12th grade   1.83  6.003937
## 7997             17 years old   Male              11th grade   1.83  6.003937
## 7998             17 years old Female              10th grade   1.60  5.249344
## 7999    18 years old or older Female              12th grade   1.63  5.347769
## 8000             17 years old   Male              11th grade   1.73  5.675853
## 8001    18 years old or older   Male              12th grade   1.83  6.003937
## 8002             15 years old Female              10th grade   1.68  5.511811
## 8003             17 years old Female              11th grade   1.52  4.986877
## 8004             15 years old Female              10th grade   1.65  5.413386
## 8005             16 years old Female              11th grade   1.65  5.413386
## 8006             16 years old Female              10th grade   1.37  4.494751
## 8007    18 years old or older Female              12th grade   1.63  5.347769
## 8008             16 years old Female              10th grade   1.57  5.150919
## 8009    18 years old or older Female              12th grade   1.80  5.905512
## 8010             15 years old Female               9th grade   1.45  4.757218
## 8011    18 years old or older   Male              12th grade   1.85  6.069554
## 8012             16 years old   Male               9th grade   1.78  5.839895
## 8013             15 years old Female               9th grade   1.57  5.150919
## 8014    18 years old or older Female              12th grade   1.63  5.347769
## 8015                     <NA>   <NA>                    <NA>     NA        NA
## 8016             16 years old Female               9th grade   1.52  4.986877
## 8017             16 years old Female              11th grade   1.75  5.741470
## 8018             15 years old   Male               9th grade   1.78  5.839895
## 8019    18 years old or older Female              12th grade   1.60  5.249344
## 8020             17 years old   Male              12th grade   1.78  5.839895
## 8021    18 years old or older Female              11th grade   1.73  5.675853
## 8022             17 years old Female              12th grade     NA        NA
## 8023             15 years old   Male               9th grade   1.65  5.413386
## 8024             17 years old   Male              12th grade   1.75  5.741470
## 8025             15 years old   Male               9th grade   1.63  5.347769
## 8026             17 years old Female              11th grade   1.65  5.413386
## 8027             15 years old Female               9th grade   1.70  5.577428
## 8028             16 years old Female              11th grade   1.65  5.413386
## 8029             17 years old Female              11th grade   1.63  5.347769
## 8030             17 years old Female              12th grade   1.63  5.347769
## 8031             15 years old   Male               9th grade     NA        NA
## 8032    18 years old or older   Male              12th grade   1.75  5.741470
## 8033             16 years old   Male              10th grade   1.88  6.167979
## 8034             17 years old Female              11th grade   1.68  5.511811
## 8035             15 years old Female              10th grade   1.57  5.150919
## 8036             16 years old   Male              10th grade   1.80  5.905512
## 8037             15 years old Female              10th grade   1.55  5.085302
## 8038             15 years old   Male              10th grade   1.83  6.003937
## 8039             17 years old Female              11th grade   1.75  5.741470
## 8040             16 years old Female              10th grade   1.60  5.249344
## 8041             16 years old Female              10th grade   1.75  5.741470
## 8042             17 years old Female              12th grade   1.73  5.675853
## 8043             16 years old   Male              10th grade   1.78  5.839895
## 8044    18 years old or older Female              12th grade   1.65  5.413386
## 8045             17 years old Female              10th grade   1.65  5.413386
## 8046             16 years old   Male              10th grade   1.83  6.003937
## 8047             17 years old Female              11th grade   1.57  5.150919
## 8048             16 years old Female              10th grade   1.65  5.413386
## 8049             16 years old   Male              10th grade   1.75  5.741470
## 8050             17 years old   Male              11th grade   1.78  5.839895
## 8051             16 years old   Male              11th grade   1.80  5.905512
## 8052             16 years old Female              10th grade   1.65  5.413386
## 8053             17 years old   Male              11th grade   1.90  6.233596
## 8054             17 years old Female              10th grade   1.57  5.150919
## 8055             16 years old Female               9th grade   1.68  5.511811
## 8056             16 years old Female              10th grade   1.68  5.511811
## 8057             14 years old   Male               9th grade   1.70  5.577428
## 8058             16 years old   Male              11th grade   1.70  5.577428
## 8059    18 years old or older   Male              12th grade   1.78  5.839895
## 8060             14 years old Female               9th grade   1.70  5.577428
## 8061             17 years old Female              11th grade   1.78  5.839895
## 8062             16 years old Female               9th grade   1.60  5.249344
## 8063             17 years old   Male              11th grade   1.83  6.003937
## 8064             17 years old Female              12th grade   1.63  5.347769
## 8065             15 years old   Male               9th grade   1.80  5.905512
## 8066             16 years old   Male              11th grade   1.78  5.839895
## 8067             14 years old   Male               9th grade   1.70  5.577428
## 8068             16 years old Female              11th grade     NA        NA
## 8069             15 years old Female               9th grade   1.65  5.413386
## 8070             16 years old Female              10th grade   1.65  5.413386
## 8071             14 years old Female               9th grade   1.63  5.347769
## 8072             17 years old Female              11th grade   1.65  5.413386
## 8073    18 years old or older Female              12th grade   1.65  5.413386
## 8074             17 years old Female              11th grade   1.73  5.675853
## 8075             15 years old   Male              10th grade   1.57  5.150919
## 8076             16 years old   Male               9th grade     NA        NA
## 8077             15 years old Female              10th grade   1.70  5.577428
## 8078             15 years old   Male               9th grade   1.68  5.511811
## 8079             17 years old   Male              11th grade   1.73  5.675853
## 8080             17 years old Female              12th grade   1.73  5.675853
## 8081             16 years old Female               9th grade     NA        NA
## 8082             17 years old   Male              11th grade   1.88  6.167979
## 8083             15 years old Female               9th grade   1.63  5.347769
## 8084             17 years old   Male              11th grade   1.83  6.003937
## 8085    18 years old or older   Male              12th grade   1.83  6.003937
## 8086             17 years old   Male              11th grade   1.88  6.167979
## 8087             15 years old Female               9th grade   1.68  5.511811
## 8088             17 years old   Male              11th grade   1.73  5.675853
## 8089    18 years old or older   Male              12th grade   1.83  6.003937
## 8090             17 years old   Male              11th grade   1.78  5.839895
## 8091             17 years old   Male              11th grade   1.83  6.003937
## 8092    18 years old or older Female              12th grade   1.55  5.085302
## 8093             16 years old   Male              10th grade   1.80  5.905512
## 8094             15 years old   Male               9th grade   1.80  5.905512
## 8095             16 years old Female              11th grade   1.68  5.511811
## 8096    18 years old or older   Male              12th grade   1.80  5.905512
## 8097             16 years old   Male              10th grade   1.73  5.675853
## 8098             16 years old   Male              10th grade   1.78  5.839895
## 8099             14 years old   Male               9th grade   1.68  5.511811
## 8100             16 years old   Male              10th grade   1.83  6.003937
## 8101             15 years old Female               9th grade   1.52  4.986877
## 8102             16 years old   Male              11th grade   1.70  5.577428
## 8103             17 years old   Male              12th grade   1.78  5.839895
## 8104             16 years old Female              10th grade   1.65  5.413386
## 8105             16 years old Female              10th grade   1.65  5.413386
## 8106             17 years old Female              11th grade   1.57  5.150919
## 8107             17 years old   Male              11th grade   1.90  6.233596
## 8108             14 years old   Male               9th grade   1.68  5.511811
## 8109             17 years old   Male              11th grade     NA        NA
## 8110             15 years old   Male               9th grade   1.68  5.511811
## 8111             14 years old Female               9th grade     NA        NA
## 8112             16 years old Female              10th grade   1.60  5.249344
## 8113             15 years old   Male               9th grade     NA        NA
## 8114    18 years old or older   Male              12th grade   1.75  5.741470
## 8115             14 years old Female               9th grade   1.60  5.249344
## 8116             15 years old Female              10th grade   1.63  5.347769
## 8117             15 years old   Male               9th grade   1.88  6.167979
## 8118             17 years old Female              11th grade   1.57  5.150919
## 8119             17 years old   Male              11th grade   1.80  5.905512
## 8120             15 years old Female               9th grade     NA        NA
## 8121             16 years old Female              11th grade   1.57  5.150919
## 8122             17 years old Female              11th grade   1.65  5.413386
## 8123             17 years old   Male              11th grade   1.70  5.577428
## 8124    18 years old or older   Male              12th grade   1.70  5.577428
## 8125             14 years old Female               9th grade     NA        NA
## 8126             16 years old Female               9th grade     NA        NA
## 8127             16 years old   Male              10th grade   1.83  6.003937
## 8128             15 years old   Male               9th grade   1.78  5.839895
## 8129             15 years old Female               9th grade     NA        NA
## 8130             14 years old Female               9th grade   1.73  5.675853
## 8131             15 years old Female               9th grade     NA        NA
## 8132             15 years old Female              10th grade   1.50  4.921260
## 8133             17 years old   Male              11th grade   1.83  6.003937
## 8134             14 years old   Male               9th grade   1.73  5.675853
## 8135             17 years old Female              11th grade   1.60  5.249344
## 8136             15 years old   Male               9th grade   1.75  5.741470
## 8137             16 years old Female              10th grade   1.55  5.085302
## 8138             15 years old   Male               9th grade   1.85  6.069554
## 8139             16 years old Female              10th grade   1.63  5.347769
## 8140             14 years old   Male               9th grade   1.65  5.413386
## 8141             16 years old Female               9th grade   1.63  5.347769
## 8142             15 years old Female               9th grade   1.55  5.085302
## 8143             16 years old Female              11th grade   1.63  5.347769
## 8144             15 years old Female               9th grade   1.63  5.347769
## 8145             17 years old   Male              12th grade   1.75  5.741470
## 8146             15 years old   Male               9th grade   1.83  6.003937
## 8147    18 years old or older   Male              12th grade   1.73  5.675853
## 8148             15 years old   Male               9th grade   1.80  5.905512
## 8149    18 years old or older   Male              12th grade   1.78  5.839895
## 8150    18 years old or older   Male              12th grade   1.78  5.839895
## 8151             15 years old   Male               9th grade   1.68  5.511811
## 8152    18 years old or older   Male              12th grade   2.01  6.594488
## 8153             15 years old Female               9th grade   1.60  5.249344
## 8154             17 years old   Male              12th grade   1.80  5.905512
## 8155             14 years old Female               9th grade   1.65  5.413386
## 8156             16 years old   Male               9th grade   1.78  5.839895
## 8157    18 years old or older   Male              12th grade   1.83  6.003937
## 8158    18 years old or older   Male              12th grade   1.80  5.905512
## 8159             15 years old   Male               9th grade   1.75  5.741470
## 8160    18 years old or older   Male              12th grade   1.93  6.332021
## 8161             15 years old Female               9th grade   1.50  4.921260
## 8162    18 years old or older   Male              12th grade   1.83  6.003937
## 8163    18 years old or older   Male              12th grade   1.96  6.430446
## 8164             15 years old Female               9th grade   1.63  5.347769
## 8165             17 years old   Male              12th grade   1.85  6.069554
## 8166             14 years old Female               9th grade   1.68  5.511811
## 8167             15 years old Female               9th grade   1.63  5.347769
## 8168             14 years old   Male               9th grade   1.85  6.069554
## 8169             14 years old Female               9th grade   1.63  5.347769
## 8170    18 years old or older Female              12th grade   1.68  5.511811
## 8171             17 years old   Male              12th grade   1.75  5.741470
## 8172    18 years old or older   Male              12th grade   1.83  6.003937
## 8173             14 years old Female               9th grade   1.70  5.577428
## 8174    18 years old or older   Male              12th grade   1.68  5.511811
## 8175             16 years old   Male               9th grade     NA        NA
## 8176    18 years old or older Female              12th grade   1.65  5.413386
## 8177             16 years old Female               9th grade     NA        NA
## 8178    18 years old or older Female              12th grade   1.60  5.249344
## 8179             16 years old   Male               9th grade   1.73  5.675853
## 8180    18 years old or older   Male              12th grade   1.75  5.741470
## 8181             14 years old Female               9th grade   1.63  5.347769
## 8182             17 years old Female              12th grade   1.65  5.413386
## 8183    18 years old or older   Male              12th grade   1.63  5.347769
## 8184             16 years old   Male               9th grade   1.75  5.741470
## 8185             15 years old Female               9th grade   1.70  5.577428
## 8186    18 years old or older   Male              12th grade   1.80  5.905512
## 8187             15 years old Female               9th grade   1.52  4.986877
## 8188    18 years old or older   Male              12th grade   1.80  5.905512
## 8189             15 years old   Male               9th grade   2.01  6.594488
## 8190             17 years old Female              12th grade   1.63  5.347769
## 8191             14 years old Female               9th grade   1.57  5.150919
## 8192             15 years old   Male               9th grade   1.60  5.249344
## 8193             15 years old   Male               9th grade   1.80  5.905512
## 8194    18 years old or older   Male              12th grade   1.88  6.167979
## 8195             14 years old Female               9th grade   1.65  5.413386
## 8196    18 years old or older   Male              12th grade   1.80  5.905512
## 8197             15 years old Female               9th grade   1.55  5.085302
## 8198    18 years old or older   Male              12th grade   1.85  6.069554
## 8199             15 years old   Male               9th grade   1.83  6.003937
## 8200    18 years old or older Female              12th grade   1.63  5.347769
## 8201             15 years old Female               9th grade   1.68  5.511811
## 8202    18 years old or older Female              12th grade   1.65  5.413386
## 8203             15 years old   Male               9th grade   1.83  6.003937
## 8204    18 years old or older Female              12th grade   1.73  5.675853
## 8205             14 years old Female               9th grade   1.65  5.413386
## 8206             17 years old   Male              12th grade   1.90  6.233596
## 8207             14 years old   Male               9th grade   1.78  5.839895
## 8208    18 years old or older   Male              12th grade   1.85  6.069554
## 8209             16 years old   Male              10th grade   1.75  5.741470
## 8210    18 years old or older   Male              12th grade   1.70  5.577428
## 8211    18 years old or older Female              12th grade   1.52  4.986877
## 8212             16 years old Female              11th grade   1.55  5.085302
## 8213             15 years old Female              10th grade   1.63  5.347769
## 8214             16 years old   Male              11th grade   1.78  5.839895
## 8215    18 years old or older Female              12th grade   1.63  5.347769
## 8216             16 years old   Male              11th grade   1.70  5.577428
## 8217             16 years old   Male              10th grade   1.78  5.839895
## 8218             17 years old   Male              11th grade   1.83  6.003937
## 8219             17 years old   Male              12th grade   1.83  6.003937
## 8220             16 years old   Male              11th grade   1.65  5.413386
## 8221    18 years old or older Female              12th grade     NA        NA
## 8222             16 years old   Male              10th grade   1.80  5.905512
## 8223             17 years old   Male              11th grade   1.88  6.167979
## 8224    18 years old or older Female              12th grade   1.55  5.085302
## 8225             17 years old   Male              11th grade   1.70  5.577428
## 8226             16 years old   Male              10th grade   1.83  6.003937
## 8227             17 years old   Male              11th grade   1.85  6.069554
## 8228    18 years old or older Female              12th grade   1.55  5.085302
## 8229             17 years old   Male              11th grade   1.68  5.511811
## 8230    18 years old or older   Male              12th grade   1.80  5.905512
## 8231             16 years old   Male              10th grade   1.75  5.741470
## 8232             15 years old   Male              10th grade   1.78  5.839895
## 8233             17 years old Female              11th grade   1.65  5.413386
## 8234    18 years old or older Female              12th grade   1.65  5.413386
## 8235             17 years old Female              11th grade   1.70  5.577428
## 8236             17 years old Female              12th grade   1.63  5.347769
## 8237             15 years old   Male              10th grade   1.68  5.511811
## 8238             16 years old   Male              10th grade   1.78  5.839895
## 8239             17 years old   Male              11th grade   1.68  5.511811
## 8240    18 years old or older Female              12th grade   1.57  5.150919
## 8241             17 years old   Male              11th grade   1.83  6.003937
## 8242    18 years old or older Female              12th grade   1.70  5.577428
## 8243             17 years old   Male              11th grade   1.88  6.167979
## 8244             16 years old Female              10th grade   1.57  5.150919
## 8245             16 years old Female              11th grade   1.52  4.986877
## 8246    18 years old or older Female              12th grade   1.65  5.413386
## 8247             17 years old   Male              11th grade   1.88  6.167979
## 8248             17 years old Female              12th grade   1.73  5.675853
## 8249             16 years old Female              10th grade   1.60  5.249344
## 8250             17 years old Female              12th grade   1.63  5.347769
## 8251             17 years old Female              11th grade   1.63  5.347769
## 8252             16 years old Female              10th grade   1.70  5.577428
## 8253             17 years old   Male              11th grade   1.78  5.839895
## 8254    18 years old or older   Male              12th grade   1.68  5.511811
## 8255             17 years old Female              11th grade   1.65  5.413386
## 8256             17 years old   Male              12th grade   1.90  6.233596
## 8257             16 years old   Male              10th grade   1.88  6.167979
## 8258    18 years old or older   Male              11th grade   1.68  5.511811
## 8259             17 years old Female              11th grade   1.50  4.921260
## 8260             17 years old Female              11th grade   1.63  5.347769
## 8261    18 years old or older   Male              12th grade   1.70  5.577428
## 8262             15 years old Female              10th grade   1.65  5.413386
## 8263             17 years old Female              11th grade   1.70  5.577428
## 8264             17 years old Female              11th grade   1.63  5.347769
## 8265             15 years old Female              10th grade   1.63  5.347769
## 8266             16 years old   Male              11th grade   1.73  5.675853
## 8267             16 years old Female              11th grade   1.52  4.986877
## 8268    18 years old or older Female              12th grade   1.70  5.577428
## 8269             16 years old   Male              10th grade   1.93  6.332021
## 8270             16 years old   Male              10th grade   1.60  5.249344
## 8271             16 years old Female              11th grade   1.60  5.249344
## 8272             17 years old Female              12th grade   1.63  5.347769
## 8273             17 years old Female              11th grade   1.68  5.511811
## 8274    18 years old or older   Male              12th grade   1.70  5.577428
## 8275             16 years old Female              10th grade   1.68  5.511811
## 8276             16 years old Female              10th grade   1.60  5.249344
## 8277             16 years old Female              11th grade   1.60  5.249344
## 8278    18 years old or older Female              12th grade   1.65  5.413386
## 8279             16 years old   Male              11th grade   1.88  6.167979
## 8280    18 years old or older   Male              12th grade   1.75  5.741470
## 8281             16 years old   Male              10th grade   1.68  5.511811
## 8282    18 years old or older   Male              11th grade   1.68  5.511811
## 8283             17 years old Female              11th grade   1.63  5.347769
## 8284             16 years old   Male              10th grade   1.85  6.069554
## 8285             16 years old   Male              11th grade   1.73  5.675853
## 8286    18 years old or older Female              12th grade   1.52  4.986877
## 8287             16 years old Female              10th grade   1.70  5.577428
## 8288    18 years old or older   Male              11th grade   1.93  6.332021
## 8289             17 years old Female              12th grade   1.63  5.347769
## 8290             16 years old   Male              11th grade   1.88  6.167979
## 8291    18 years old or older   Male              12th grade   1.80  5.905512
## 8292             16 years old Female              10th grade   1.57  5.150919
## 8293             16 years old   Male              10th grade   1.83  6.003937
## 8294             16 years old   Male              11th grade   1.80  5.905512
## 8295             17 years old Female              12th grade   1.57  5.150919
## 8296             16 years old   Male              10th grade   1.83  6.003937
## 8297             16 years old Female              10th grade   1.65  5.413386
## 8298             16 years old Female              11th grade     NA        NA
## 8299             17 years old Female              12th grade   1.70  5.577428
## 8300             15 years old   Male              10th grade   1.75  5.741470
## 8301             16 years old Female              10th grade   1.57  5.150919
## 8302             16 years old Female              11th grade   1.55  5.085302
## 8303    18 years old or older   Male              12th grade   1.68  5.511811
## 8304    18 years old or older   Male              12th grade   1.85  6.069554
## 8305             17 years old Female              11th grade   1.52  4.986877
## 8306             16 years old   Male              10th grade   1.75  5.741470
## 8307    18 years old or older   Male              12th grade   1.88  6.167979
## 8308             17 years old   Male              10th grade   1.70  5.577428
## 8309             17 years old   Male              11th grade   1.83  6.003937
## 8310    18 years old or older Female              12th grade   1.57  5.150919
## 8311             16 years old   Male              10th grade   1.78  5.839895
## 8312             17 years old   Male              12th grade     NA        NA
## 8313    18 years old or older Female              12th grade   1.63  5.347769
## 8314             15 years old Female              10th grade   1.65  5.413386
## 8315             16 years old   Male              10th grade   1.78  5.839895
## 8316    18 years old or older Female              12th grade   1.70  5.577428
## 8317             17 years old Female              11th grade   1.60  5.249344
## 8318             16 years old   Male              11th grade   1.80  5.905512
## 8319             16 years old   Male              10th grade   1.83  6.003937
## 8320             14 years old Female               9th grade   1.57  5.150919
## 8321             17 years old Female              11th grade   1.57  5.150919
## 8322             15 years old Female               9th grade   1.70  5.577428
## 8323             15 years old Female               9th grade   1.73  5.675853
## 8324             15 years old Female              10th grade   1.70  5.577428
## 8325             16 years old Female              10th grade   1.60  5.249344
## 8326             15 years old Female              10th grade     NA        NA
## 8327             15 years old   Male              10th grade   1.60  5.249344
## 8328             16 years old Female              10th grade   1.55  5.085302
## 8329             15 years old Female               9th grade   1.70  5.577428
## 8330             16 years old   Male              10th grade   1.83  6.003937
## 8331             17 years old   Male              11th grade   1.70  5.577428
## 8332             16 years old   Male              10th grade   1.78  5.839895
## 8333             15 years old   Male               9th grade   1.78  5.839895
## 8334             14 years old Female               9th grade   1.65  5.413386
## 8335             17 years old Female              10th grade   1.60  5.249344
## 8336             15 years old Female               9th grade   1.57  5.150919
## 8337             15 years old Female               9th grade   1.68  5.511811
## 8338    18 years old or older   Male              12th grade   1.85  6.069554
## 8339             14 years old Female               9th grade   1.63  5.347769
## 8340             17 years old   Male              11th grade   1.70  5.577428
## 8341             16 years old Female              11th grade   1.57  5.150919
## 8342             15 years old Female               9th grade   1.75  5.741470
## 8343             16 years old Female                    <NA>   1.57  5.150919
## 8344             17 years old   Male              11th grade   1.73  5.675853
## 8345             15 years old Female              10th grade   1.63  5.347769
## 8346             15 years old   Male              10th grade   1.57  5.150919
## 8347             15 years old Female               9th grade     NA        NA
## 8348             15 years old   Male               9th grade   1.83  6.003937
## 8349             16 years old   Male              10th grade   1.83  6.003937
## 8350             16 years old   Male              10th grade   1.83  6.003937
## 8351             16 years old   Male              10th grade   1.73  5.675853
## 8352             16 years old   Male              10th grade   1.78  5.839895
## 8353             17 years old Female              11th grade   1.57  5.150919
## 8354             14 years old Female               9th grade   1.80  5.905512
## 8355             15 years old   Male              10th grade   1.70  5.577428
## 8356             15 years old   Male               9th grade   1.78  5.839895
## 8357             15 years old   Male               9th grade   1.80  5.905512
## 8358             17 years old   Male              10th grade   1.70  5.577428
## 8359             15 years old   Male               9th grade   1.78  5.839895
## 8360             16 years old   Male              10th grade   1.88  6.167979
## 8361             17 years old Female              11th grade   1.63  5.347769
## 8362             16 years old Female              10th grade   1.60  5.249344
## 8363    18 years old or older Female              12th grade   1.63  5.347769
## 8364             14 years old Female               9th grade   1.65  5.413386
## 8365    18 years old or older   Male              12th grade   1.98  6.496063
## 8366             15 years old   Male              10th grade   1.65  5.413386
## 8367             15 years old   Male              10th grade   1.65  5.413386
## 8368    18 years old or older   Male              12th grade   1.80  5.905512
## 8369             16 years old   Male              10th grade   1.83  6.003937
## 8370             17 years old Female              11th grade   1.57  5.150919
## 8371             16 years old Female              11th grade   1.68  5.511811
## 8372             15 years old   Male               9th grade   1.80  5.905512
## 8373             14 years old Female               9th grade   1.60  5.249344
## 8374             15 years old   Male               9th grade   1.83  6.003937
## 8375             15 years old Female               9th grade   1.63  5.347769
## 8376             16 years old Female              11th grade   1.60  5.249344
## 8377             14 years old Female               9th grade   1.68  5.511811
## 8378    18 years old or older Female              12th grade   1.52  4.986877
## 8379             16 years old   Male              10th grade   1.85  6.069554
## 8380             15 years old   Male               9th grade   1.78  5.839895
## 8381             15 years old   Male               9th grade   1.70  5.577428
## 8382             16 years old Female              10th grade   1.57  5.150919
## 8383             15 years old   Male              10th grade   1.80  5.905512
## 8384    18 years old or older Female              12th grade   1.70  5.577428
## 8385             15 years old   Male               9th grade   1.70  5.577428
## 8386             14 years old Female               9th grade   1.68  5.511811
## 8387             16 years old   Male              10th grade   1.83  6.003937
## 8388             15 years old Female               9th grade   1.65  5.413386
## 8389             17 years old   Male              11th grade   1.78  5.839895
## 8390    18 years old or older   Male              11th grade   1.75  5.741470
## 8391             14 years old Female               9th grade   1.65  5.413386
## 8392             17 years old Female              11th grade   1.65  5.413386
## 8393             15 years old Female               9th grade   1.65  5.413386
## 8394             15 years old Female              10th grade   1.60  5.249344
## 8395             15 years old   Male               9th grade   1.80  5.905512
## 8396             17 years old Female              11th grade   1.60  5.249344
## 8397             17 years old Female              11th grade   1.57  5.150919
## 8398             17 years old   Male              12th grade   1.63  5.347769
## 8399             16 years old   Male              11th grade   1.75  5.741470
## 8400             16 years old   Male              10th grade   1.73  5.675853
## 8401             16 years old Female               9th grade   1.57  5.150919
## 8402             17 years old   Male              11th grade   1.70  5.577428
## 8403             17 years old   Male              11th grade   1.88  6.167979
## 8404    18 years old or older Female              12th grade   1.60  5.249344
## 8405             16 years old   Male              10th grade   1.80  5.905512
## 8406             17 years old Female              11th grade   1.60  5.249344
## 8407             16 years old Female              11th grade   1.70  5.577428
## 8408             15 years old Female               9th grade   1.65  5.413386
## 8409             16 years old Female              10th grade   1.55  5.085302
## 8410             14 years old   Male               9th grade   1.80  5.905512
## 8411             16 years old   Male              10th grade   1.70  5.577428
## 8412             14 years old   Male               9th grade   1.88  6.167979
## 8413             14 years old Female               9th grade   1.57  5.150919
## 8414             17 years old Female              10th grade   1.47  4.822835
## 8415             15 years old   Male               9th grade   1.83  6.003937
## 8416             16 years old Female              10th grade   1.57  5.150919
## 8417             16 years old Female              10th grade   1.60  5.249344
## 8418             16 years old   Male Ungraded or other grade     NA        NA
## 8419             15 years old Female               9th grade   1.63  5.347769
## 8420             15 years old   Male               9th grade   1.65  5.413386
## 8421             14 years old Female               9th grade   1.57  5.150919
## 8422             15 years old Female               9th grade   1.63  5.347769
## 8423             17 years old   Male              11th grade   1.75  5.741470
## 8424             16 years old   Male              12th grade     NA        NA
## 8425             16 years old   Male              10th grade   1.88  6.167979
## 8426             16 years old   Male              10th grade   1.78  5.839895
## 8427             15 years old Female               9th grade   1.65  5.413386
## 8428             15 years old   Male              10th grade   1.75  5.741470
## 8429             15 years old   Male               9th grade   1.80  5.905512
## 8430             16 years old Female              10th grade   1.65  5.413386
## 8431             16 years old Female              10th grade   1.73  5.675853
## 8432             17 years old Female              11th grade   1.65  5.413386
## 8433             17 years old Female              11th grade   1.68  5.511811
## 8434             15 years old Female               9th grade   1.63  5.347769
## 8435             16 years old   Male              10th grade   1.75  5.741470
## 8436             15 years old   Male               9th grade   1.73  5.675853
## 8437             15 years old Female              10th grade   1.50  4.921260
## 8438             16 years old   Male              10th grade   1.80  5.905512
## 8439    18 years old or older Female              12th grade   1.75  5.741470
## 8440             15 years old Female               9th grade   1.57  5.150919
## 8441             16 years old   Male              11th grade   1.83  6.003937
## 8442    18 years old or older   Male              12th grade     NA        NA
## 8443             17 years old Female              11th grade   1.52  4.986877
## 8444             15 years old Female              10th grade   1.57  5.150919
## 8445    18 years old or older Female              12th grade   1.68  5.511811
## 8446             17 years old Female              10th grade   1.73  5.675853
## 8447    18 years old or older Female              12th grade   1.68  5.511811
## 8448    18 years old or older   Male              12th grade   1.88  6.167979
## 8449             15 years old Female               9th grade   1.52  4.986877
## 8450             17 years old   Male              11th grade   1.78  5.839895
## 8451    18 years old or older   Male              12th grade   1.73  5.675853
## 8452             17 years old   Male              12th grade   1.83  6.003937
## 8453             16 years old   Male              10th grade   1.83  6.003937
## 8454             16 years old   Male               9th grade   1.73  5.675853
## 8455             15 years old Female               9th grade   1.50  4.921260
## 8456             17 years old   Male              12th grade   1.88  6.167979
## 8457    18 years old or older   Male              11th grade   1.88  6.167979
## 8458    18 years old or older   Male              12th grade   1.90  6.233596
## 8459             15 years old Female               9th grade     NA        NA
## 8460             17 years old   Male              11th grade   1.68  5.511811
## 8461    18 years old or older   Male              12th grade   1.75  5.741470
## 8462             16 years old Female              11th grade   1.55  5.085302
## 8463             17 years old Female              12th grade   1.60  5.249344
## 8464             16 years old   Male              11th grade   1.90  6.233596
## 8465             16 years old Female              11th grade   1.63  5.347769
## 8466             16 years old Female              11th grade   1.73  5.675853
## 8467    18 years old or older Female              12th grade   1.68  5.511811
## 8468             17 years old   Male              11th grade   1.70  5.577428
## 8469    18 years old or older   Male              12th grade   1.75  5.741470
## 8470             16 years old Female              11th grade   1.68  5.511811
## 8471             16 years old Female              10th grade   1.65  5.413386
## 8472             16 years old Female              11th grade   1.65  5.413386
## 8473    18 years old or older   Male              12th grade   1.73  5.675853
## 8474             16 years old Female              10th grade   1.68  5.511811
## 8475             17 years old   Male              11th grade   1.88  6.167979
## 8476    18 years old or older Female              12th grade   1.65  5.413386
## 8477             16 years old   Male              10th grade     NA        NA
## 8478             17 years old   Male              11th grade   1.93  6.332021
## 8479    18 years old or older Female              12th grade   1.60  5.249344
## 8480             15 years old   Male              10th grade   1.70  5.577428
## 8481    18 years old or older   Male              11th grade   1.85  6.069554
## 8482    18 years old or older   Male              12th grade   2.03  6.660105
## 8483             17 years old   Male              10th grade   1.65  5.413386
## 8484             15 years old   Male               9th grade   1.73  5.675853
## 8485             16 years old Female               9th grade     NA        NA
## 8486             16 years old Female              11th grade   1.55  5.085302
## 8487    18 years old or older   Male              12th grade   1.78  5.839895
## 8488             16 years old Female              10th grade   1.73  5.675853
## 8489             16 years old Female               9th grade   1.60  5.249344
## 8490             15 years old Female               9th grade   1.57  5.150919
## 8491             17 years old Female              11th grade   1.68  5.511811
## 8492             17 years old Female              12th grade   1.45  4.757218
## 8493             15 years old   Male               9th grade     NA        NA
## 8494             15 years old   Male               9th grade   1.78  5.839895
## 8495    18 years old or older Female              12th grade   1.70  5.577428
## 8496             16 years old   Male              10th grade     NA        NA
## 8497             15 years old Female               9th grade   1.55  5.085302
## 8498             15 years old Female               9th grade     NA        NA
## 8499    18 years old or older Female              12th grade   1.60  5.249344
## 8500             17 years old   Male              10th grade     NA        NA
## 8501             15 years old   Male               9th grade   1.78  5.839895
## 8502             15 years old   Male               9th grade   1.80  5.905512
## 8503             17 years old Female              11th grade     NA        NA
## 8504    18 years old or older   Male              12th grade   1.70  5.577428
## 8505             16 years old   Male              10th grade   1.83  6.003937
## 8506             16 years old Female              11th grade   1.52  4.986877
## 8507    18 years old or older   Male              12th grade   1.88  6.167979
## 8508             16 years old Female              10th grade   1.78  5.839895
## 8509             17 years old Female              12th grade   1.70  5.577428
## 8510             14 years old Female               9th grade   1.65  5.413386
## 8511             15 years old   Male               9th grade   1.70  5.577428
## 8512             17 years old Female              11th grade   1.65  5.413386
## 8513             16 years old   Male               9th grade   1.83  6.003937
## 8514             15 years old   Male               9th grade     NA        NA
## 8515             17 years old Female              11th grade   1.55  5.085302
## 8516    18 years old or older   Male              12th grade   1.96  6.430446
## 8517             14 years old Female               9th grade   1.73  5.675853
## 8518             15 years old   Male               9th grade   1.73  5.675853
## 8519             17 years old Female              11th grade   1.60  5.249344
## 8520    18 years old or older Female              12th grade   1.68  5.511811
## 8521             15 years old   Male               9th grade   1.65  5.413386
## 8522             17 years old Female              12th grade   1.70  5.577428
## 8523             17 years old   Male              11th grade   1.78  5.839895
## 8524             15 years old   Male               9th grade   1.65  5.413386
## 8525             14 years old   Male               9th grade   1.78  5.839895
## 8526             17 years old Female              11th grade   1.60  5.249344
## 8527    18 years old or older Female              12th grade   1.63  5.347769
## 8528             16 years old   Male              10th grade   1.75  5.741470
## 8529             16 years old   Male               9th grade   1.78  5.839895
## 8530             15 years old   Male               9th grade   1.78  5.839895
## 8531    18 years old or older   Male              12th grade   1.85  6.069554
## 8532             16 years old   Male              10th grade   1.63  5.347769
## 8533             15 years old Female               9th grade   1.60  5.249344
## 8534             16 years old Female              11th grade   1.73  5.675853
## 8535    18 years old or older   Male              12th grade   1.78  5.839895
## 8536             14 years old Female               9th grade   1.80  5.905512
## 8537             15 years old Female               9th grade   1.68  5.511811
## 8538             15 years old   Male               9th grade   1.85  6.069554
## 8539             15 years old   Male               9th grade   1.73  5.675853
## 8540             14 years old Female               9th grade   1.65  5.413386
## 8541             16 years old Female               9th grade   1.60  5.249344
## 8542             15 years old   Male               9th grade   1.80  5.905512
## 8543             15 years old   Male               9th grade   1.75  5.741470
## 8544             15 years old Female               9th grade     NA        NA
## 8545             15 years old   Male               9th grade   1.70  5.577428
## 8546             16 years old Female               9th grade   1.73  5.675853
## 8547             17 years old Female              12th grade   1.57  5.150919
## 8548             16 years old Female              10th grade   1.65  5.413386
## 8549    18 years old or older Female              11th grade   1.68  5.511811
## 8550    18 years old or older   Male              11th grade   1.75  5.741470
## 8551             16 years old Female              11th grade   1.52  4.986877
## 8552    18 years old or older Female              12th grade   1.65  5.413386
## 8553             17 years old Female              10th grade   1.65  5.413386
## 8554    18 years old or older   Male              12th grade   1.88  6.167979
## 8555             16 years old   Male              10th grade   1.78  5.839895
## 8556             17 years old Female              11th grade   1.63  5.347769
## 8557             16 years old   Male               9th grade   1.65  5.413386
## 8558             17 years old   Male              11th grade   1.83  6.003937
## 8559             17 years old   Male              11th grade   1.78  5.839895
## 8560             16 years old Female              10th grade   1.52  4.986877
## 8561    18 years old or older   Male              12th grade   1.75  5.741470
## 8562    18 years old or older   Male              12th grade   1.83  6.003937
## 8563             15 years old Female              10th grade   1.68  5.511811
## 8564             15 years old Female               9th grade   1.60  5.249344
## 8565             16 years old   Male              11th grade   1.88  6.167979
## 8566             16 years old   Male              11th grade   1.83  6.003937
## 8567             16 years old   Male              10th grade   1.73  5.675853
## 8568    18 years old or older Female              12th grade   1.73  5.675853
## 8569             17 years old   Male              10th grade   1.83  6.003937
## 8570             15 years old   Male               9th grade   1.75  5.741470
## 8571             16 years old Female              11th grade   1.75  5.741470
## 8572             17 years old Female              11th grade   1.57  5.150919
## 8573    18 years old or older   Male              12th grade   1.65  5.413386
## 8574             17 years old Female              12th grade   1.57  5.150919
## 8575             17 years old Female              10th grade   1.60  5.249344
## 8576    18 years old or older   Male              12th grade   1.90  6.233596
## 8577             16 years old Female               9th grade   1.50  4.921260
## 8578             17 years old Female              11th grade   1.35  4.429134
## 8579             17 years old   Male              11th grade   1.70  5.577428
## 8580             16 years old   Male              10th grade   1.68  5.511811
## 8581    18 years old or older   Male              12th grade   1.90  6.233596
## 8582    18 years old or older   Male              12th grade   1.88  6.167979
## 8583             17 years old Female              12th grade   1.73  5.675853
## 8584             17 years old Female              11th grade   1.73  5.675853
## 8585             15 years old Female               9th grade   1.65  5.413386
## 8586             16 years old Female              11th grade   1.68  5.511811
## 8587             17 years old Female              11th grade     NA        NA
## 8588             16 years old   Male              10th grade   1.73  5.675853
## 8589    18 years old or older Female              12th grade   1.75  5.741470
## 8590    18 years old or older Female              12th grade   1.73  5.675853
## 8591             16 years old   <NA>              10th grade     NA        NA
## 8592    18 years old or older Female              12th grade   1.60  5.249344
## 8593             16 years old   Male              10th grade   1.80  5.905512
## 8594    18 years old or older   Male              12th grade   1.88  6.167979
## 8595             16 years old Female              10th grade   1.73  5.675853
## 8596             17 years old   Male              12th grade   1.73  5.675853
## 8597             15 years old Female              10th grade   1.60  5.249344
## 8598             17 years old   Male              12th grade   1.93  6.332021
## 8599             17 years old   Male              11th grade   1.73  5.675853
## 8600             14 years old Female               9th grade   1.65  5.413386
## 8601             17 years old   Male              11th grade   1.75  5.741470
## 8602             16 years old   Male               9th grade   1.68  5.511811
## 8603             16 years old   Male              10th grade   1.73  5.675853
## 8604    18 years old or older   Male              12th grade   1.83  6.003937
## 8605    18 years old or older Female              12th grade   1.65  5.413386
## 8606    18 years old or older   Male              12th grade   1.83  6.003937
## 8607    18 years old or older   Male              12th grade   1.83  6.003937
## 8608             15 years old Female               9th grade   1.63  5.347769
## 8609             16 years old   Male              11th grade   1.65  5.413386
## 8610             16 years old Female              11th grade   1.60  5.249344
## 8611    18 years old or older Female              12th grade   1.78  5.839895
## 8612             16 years old   Male               9th grade   1.83  6.003937
## 8613             16 years old Female              11th grade   1.65  5.413386
## 8614             16 years old   Male              11th grade   1.88  6.167979
## 8615    18 years old or older Female              12th grade   1.70  5.577428
## 8616             16 years old Female              11th grade   1.68  5.511811
## 8617             15 years old   Male               9th grade   1.83  6.003937
## 8618             17 years old   Male              11th grade   1.88  6.167979
## 8619             17 years old Female              11th grade   1.73  5.675853
## 8620             16 years old   Male              10th grade   1.73  5.675853
## 8621    18 years old or older Female              12th grade   1.55  5.085302
## 8622    18 years old or older   Male              12th grade   1.73  5.675853
## 8623    18 years old or older Female              11th grade   1.68  5.511811
## 8624             15 years old   Male               9th grade   1.88  6.167979
## 8625             17 years old Female              11th grade   1.60  5.249344
## 8626             16 years old Female              10th grade   1.60  5.249344
## 8627    18 years old or older Female              12th grade   1.63  5.347769
## 8628             17 years old Female              11th grade   1.42  4.658793
## 8629             15 years old   Male               9th grade   1.75  5.741470
## 8630             17 years old   Male              11th grade   1.73  5.675853
## 8631             15 years old Female              10th grade   1.70  5.577428
## 8632    18 years old or older   Male              12th grade   1.80  5.905512
## 8633             15 years old Female               9th grade     NA        NA
## 8634             17 years old   Male              11th grade   1.75  5.741470
## 8635             15 years old Female               9th grade   1.73  5.675853
## 8636             16 years old Female              10th grade   1.65  5.413386
## 8637    18 years old or older   Male              12th grade   1.83  6.003937
## 8638             15 years old Female               9th grade   1.55  5.085302
## 8639             16 years old   Male              11th grade   1.83  6.003937
## 8640             17 years old   Male              11th grade   1.65  5.413386
## 8641             17 years old Female              12th grade   1.73  5.675853
## 8642    18 years old or older Female              12th grade   1.63  5.347769
## 8643             15 years old   Male               9th grade   1.85  6.069554
## 8644    18 years old or older Female              11th grade   1.52  4.986877
## 8645             17 years old Female              10th grade   1.65  5.413386
## 8646             17 years old Female              12th grade   1.73  5.675853
## 8647             17 years old Female              12th grade   1.60  5.249344
## 8648             17 years old   Male              11th grade   1.75  5.741470
## 8649             17 years old Female              11th grade   1.65  5.413386
## 8650             15 years old   Male               9th grade     NA        NA
## 8651             15 years old Female               9th grade     NA        NA
## 8652             15 years old   Male               9th grade   1.75  5.741470
## 8653             15 years old Female               9th grade     NA        NA
## 8654             15 years old Female               9th grade   1.68  5.511811
## 8655             15 years old Female               9th grade   1.63  5.347769
## 8656             15 years old   Male               9th grade   1.73  5.675853
## 8657             15 years old Female               9th grade     NA        NA
## 8658             14 years old   Male               9th grade     NA        NA
## 8659             15 years old   Male               9th grade   1.63  5.347769
## 8660             14 years old Female               9th grade   1.68  5.511811
## 8661             14 years old Female               9th grade   1.60  5.249344
## 8662             15 years old Female               9th grade   1.75  5.741470
## 8663             15 years old   Male               9th grade     NA        NA
## 8664             15 years old Female               9th grade     NA        NA
## 8665             15 years old   Male               9th grade     NA        NA
## 8666             15 years old Female               9th grade   1.68  5.511811
## 8667             15 years old Female               9th grade     NA        NA
## 8668             15 years old Female               9th grade     NA        NA
## 8669             15 years old   Male               9th grade     NA        NA
## 8670             14 years old Female               9th grade   1.63  5.347769
## 8671             15 years old   Male               9th grade   1.50  4.921260
## 8672             15 years old   Male               9th grade     NA        NA
## 8673             15 years old   Male               9th grade   1.55  5.085302
## 8674             15 years old Female               9th grade   1.60  5.249344
## 8675             14 years old   Male               9th grade     NA        NA
## 8676             15 years old Female               9th grade   1.57  5.150919
## 8677             14 years old   Male               9th grade   1.75  5.741470
## 8678             14 years old   Male               9th grade   1.68  5.511811
## 8679             14 years old Female               9th grade   1.60  5.249344
## 8680             15 years old   Male               9th grade   1.73  5.675853
## 8681             15 years old   Male               9th grade   1.83  6.003937
## 8682             15 years old Female               9th grade   1.63  5.347769
## 8683             14 years old   Male               9th grade   1.85  6.069554
## 8684             15 years old Female               9th grade     NA        NA
## 8685             17 years old Female              12th grade   1.70  5.577428
## 8686             17 years old Female              11th grade   1.65  5.413386
## 8687    18 years old or older Female              11th grade     NA        NA
## 8688             16 years old   Male              10th grade     NA        NA
## 8689             16 years old   Male              11th grade   1.75  5.741470
## 8690             17 years old Female              12th grade   1.65  5.413386
## 8691             16 years old Female              11th grade   1.65  5.413386
## 8692             16 years old   Male              10th grade   1.57  5.150919
## 8693             16 years old   Male              11th grade   1.90  6.233596
## 8694             17 years old Female              11th grade   1.63  5.347769
## 8695             17 years old Female              11th grade     NA        NA
## 8696    18 years old or older Female              12th grade   1.65  5.413386
## 8697             15 years old   Male              10th grade   1.73  5.675853
## 8698             17 years old Female              11th grade   1.57  5.150919
## 8699             16 years old Female              10th grade     NA        NA
## 8700             15 years old   Male              10th grade   1.70  5.577428
## 8701             16 years old Female              11th grade   1.60  5.249344
## 8702    18 years old or older Female              12th grade   1.52  4.986877
## 8703             16 years old Female              10th grade   1.63  5.347769
## 8704             16 years old Female              11th grade   1.70  5.577428
## 8705             17 years old Female              12th grade   1.63  5.347769
## 8706             16 years old   Male              10th grade   1.80  5.905512
## 8707             17 years old   Male              11th grade   1.78  5.839895
## 8708             16 years old Female              10th grade   1.52  4.986877
## 8709             16 years old   Male              11th grade   1.68  5.511811
## 8710             17 years old Female              12th grade   1.68  5.511811
## 8711             17 years old Female              11th grade   1.55  5.085302
## 8712             16 years old Female              11th grade   1.63  5.347769
## 8713             15 years old Female              10th grade   1.50  4.921260
## 8714             17 years old Female              11th grade   1.65  5.413386
## 8715             16 years old Female              11th grade   1.68  5.511811
## 8716             17 years old Female              12th grade   1.68  5.511811
## 8717             16 years old Female              10th grade     NA        NA
## 8718             17 years old Female              11th grade   1.70  5.577428
## 8719             15 years old   Male              10th grade   1.78  5.839895
## 8720             17 years old Female              11th grade   1.55  5.085302
## 8721    18 years old or older Female              12th grade   1.52  4.986877
## 8722             16 years old   Male              10th grade   1.83  6.003937
## 8723             17 years old Female              11th grade   1.68  5.511811
## 8724             17 years old   Male              12th grade   1.80  5.905512
## 8725             16 years old   Male              10th grade   1.83  6.003937
## 8726             16 years old Female              11th grade   1.70  5.577428
## 8727             16 years old Female              10th grade   1.70  5.577428
## 8728             17 years old Female              11th grade   1.57  5.150919
## 8729    18 years old or older Female              12th grade     NA        NA
## 8730             15 years old   Male              10th grade   1.83  6.003937
## 8731    18 years old or older   Male              12th grade   1.83  6.003937
## 8732             16 years old   Male              10th grade     NA        NA
## 8733    18 years old or older   Male              12th grade   1.63  5.347769
## 8734             16 years old Female              10th grade   1.78  5.839895
## 8735             17 years old   Male              11th grade   1.73  5.675853
## 8736    18 years old or older   Male              12th grade   1.65  5.413386
## 8737             16 years old   Male              10th grade   1.70  5.577428
## 8738    18 years old or older   Male              12th grade   1.68  5.511811
## 8739             17 years old   Male              11th grade   1.85  6.069554
## 8740    18 years old or older   Male              12th grade   1.78  5.839895
## 8741             17 years old Female              10th grade   1.63  5.347769
## 8742             17 years old   Male              12th grade   1.85  6.069554
## 8743             17 years old   Male              11th grade   1.88  6.167979
## 8744             16 years old   Male              10th grade   1.70  5.577428
## 8745             16 years old   Male              11th grade   1.73  5.675853
## 8746             17 years old Female              12th grade   1.70  5.577428
## 8747             15 years old Female              10th grade     NA        NA
## 8748    18 years old or older Female              12th grade   1.57  5.150919
## 8749             16 years old   Male              11th grade   1.78  5.839895
## 8750             16 years old   Male              10th grade   1.60  5.249344
## 8751             16 years old   Male              11th grade   1.80  5.905512
## 8752             17 years old   Male              12th grade   1.78  5.839895
## 8753             16 years old   Male              10th grade   1.68  5.511811
## 8754    18 years old or older Female              12th grade   1.57  5.150919
## 8755             17 years old Female              11th grade   1.57  5.150919
## 8756             16 years old   Male              10th grade   1.70  5.577428
## 8757             17 years old Female              11th grade   1.60  5.249344
## 8758             15 years old   Male              10th grade   1.80  5.905512
## 8759    18 years old or older Female              12th grade   1.60  5.249344
## 8760             17 years old   Male              11th grade   1.78  5.839895
## 8761             16 years old   Male              10th grade   1.88  6.167979
## 8762             13 years old   Male               9th grade     NA        NA
## 8763             17 years old   Male              12th grade   1.83  6.003937
## 8764             16 years old   Male              10th grade     NA        NA
## 8765    18 years old or older   Male              12th grade   1.83  6.003937
## 8766             17 years old Female              11th grade   1.63  5.347769
## 8767             16 years old Female              10th grade   1.60  5.249344
## 8768             17 years old   Male              11th grade   1.80  5.905512
## 8769             17 years old Female              12th grade   1.63  5.347769
## 8770    18 years old or older   Male              12th grade   1.83  6.003937
## 8771             16 years old   Male              11th grade   1.85  6.069554
## 8772             16 years old   Male              10th grade   1.70  5.577428
## 8773             17 years old   Male              11th grade   1.68  5.511811
## 8774             16 years old   Male              10th grade   1.68  5.511811
## 8775    18 years old or older   Male              12th grade   1.90  6.233596
## 8776             17 years old Female              11th grade   1.70  5.577428
## 8777    18 years old or older   Male              12th grade   1.75  5.741470
## 8778             16 years old Female              10th grade   1.73  5.675853
## 8779             17 years old   Male              12th grade     NA        NA
## 8780             17 years old Female              11th grade   1.57  5.150919
## 8781             16 years old Female              10th grade   1.68  5.511811
## 8782             17 years old Female              11th grade   1.65  5.413386
## 8783             16 years old   Male              10th grade   1.73  5.675853
## 8784    18 years old or older   Male              12th grade   1.85  6.069554
## 8785             17 years old Female              11th grade   1.57  5.150919
## 8786             17 years old Female              12th grade   1.68  5.511811
## 8787             17 years old Female              12th grade   1.57  5.150919
## 8788             16 years old Female              10th grade   1.60  5.249344
## 8789             17 years old Female              12th grade   1.55  5.085302
## 8790             17 years old Female              11th grade   1.57  5.150919
## 8791             17 years old   Male              11th grade   1.85  6.069554
## 8792    18 years old or older   Male              12th grade   1.78  5.839895
## 8793             16 years old Female              10th grade   1.65  5.413386
## 8794    18 years old or older   Male              12th grade   1.73  5.675853
## 8795             17 years old   Male              11th grade   1.70  5.577428
## 8796             16 years old Female              10th grade   1.57  5.150919
## 8797    18 years old or older   Male              12th grade   1.78  5.839895
## 8798             17 years old   <NA>              12th grade     NA        NA
## 8799    18 years old or older Female              12th grade   1.63  5.347769
## 8800    18 years old or older Female              12th grade   1.55  5.085302
## 8801             17 years old Female              12th grade   1.57  5.150919
## 8802             16 years old Female              11th grade   1.60  5.249344
## 8803             17 years old   Male              11th grade   1.68  5.511811
## 8804             17 years old   <NA>              11th grade     NA        NA
## 8805             16 years old   Male              11th grade   1.85  6.069554
## 8806             17 years old Female              11th grade   1.68  5.511811
## 8807             17 years old   Male              11th grade   1.83  6.003937
## 8808             17 years old   Male              11th grade   1.70  5.577428
## 8809             16 years old   Male              11th grade   1.80  5.905512
## 8810    18 years old or older   Male              11th grade   1.80  5.905512
## 8811             16 years old   Male              11th grade   1.90  6.233596
## 8812    18 years old or older Female              11th grade   1.75  5.741470
## 8813             17 years old   Male              11th grade   1.78  5.839895
## 8814             17 years old Female              11th grade   1.73  5.675853
## 8815             17 years old   Male              11th grade   1.85  6.069554
## 8816             15 years old Female               9th grade   1.57  5.150919
## 8817             15 years old Female               9th grade   1.70  5.577428
## 8818             16 years old   Male              10th grade     NA        NA
## 8819             15 years old   Male               9th grade   1.83  6.003937
## 8820             16 years old Female              10th grade   1.75  5.741470
## 8821             16 years old   Male              10th grade   1.80  5.905512
## 8822             16 years old Female              10th grade   1.63  5.347769
## 8823             17 years old   Male              10th grade     NA        NA
## 8824             16 years old   Male               9th grade   1.68  5.511811
## 8825             17 years old   Male              10th grade   1.75  5.741470
## 8826             15 years old Female               9th grade   1.57  5.150919
## 8827             15 years old Female              10th grade   1.60  5.249344
## 8828             15 years old Female              10th grade   1.65  5.413386
## 8829             16 years old Female              10th grade   1.57  5.150919
## 8830             15 years old Female               9th grade   1.63  5.347769
## 8831             16 years old Female              10th grade   1.57  5.150919
## 8832             14 years old Female               9th grade   1.55  5.085302
## 8833             17 years old   Male              10th grade   1.80  5.905512
## 8834             17 years old   Male              11th grade   1.88  6.167979
## 8835             16 years old Female              10th grade   1.73  5.675853
## 8836             14 years old Female               9th grade   1.73  5.675853
## 8837             15 years old Female               9th grade   1.68  5.511811
## 8838             16 years old   Male              10th grade   1.63  5.347769
## 8839             15 years old Female               9th grade   1.60  5.249344
## 8840             16 years old Female              10th grade   1.60  5.249344
## 8841             15 years old Female               9th grade   1.75  5.741470
## 8842             16 years old Female              10th grade   1.63  5.347769
## 8843             14 years old   Male               9th grade   1.70  5.577428
## 8844             17 years old Female              10th grade   1.65  5.413386
## 8845             14 years old   Male               9th grade   1.83  6.003937
## 8846             16 years old Female              10th grade   1.63  5.347769
## 8847             16 years old Female              10th grade   1.63  5.347769
## 8848             17 years old Female              10th grade   1.60  5.249344
## 8849    18 years old or older   Male              12th grade   1.90  6.233596
## 8850             17 years old   Male              11th grade   1.75  5.741470
## 8851    18 years old or older Female              11th grade   1.60  5.249344
## 8852             16 years old Female              11th grade   1.68  5.511811
## 8853             17 years old   Male              11th grade   1.90  6.233596
## 8854             16 years old Female              10th grade   1.60  5.249344
## 8855    18 years old or older   Male              12th grade   1.70  5.577428
## 8856             16 years old   Male              10th grade   1.60  5.249344
## 8857    18 years old or older Female              12th grade   1.70  5.577428
## 8858             15 years old Female              10th grade   1.60  5.249344
## 8859    18 years old or older   Male              11th grade   1.73  5.675853
## 8860             16 years old Female              10th grade   1.75  5.741470
## 8861    18 years old or older Female              12th grade   1.60  5.249344
## 8862             17 years old Female              10th grade   1.78  5.839895
## 8863             17 years old Female              11th grade   1.57  5.150919
## 8864    18 years old or older Female              12th grade   1.68  5.511811
## 8865    18 years old or older Female              11th grade   1.55  5.085302
## 8866             16 years old Female              10th grade   1.57  5.150919
## 8867             17 years old Female              11th grade   1.57  5.150919
## 8868             16 years old   Male              10th grade   1.75  5.741470
## 8869             17 years old Female              11th grade   1.57  5.150919
## 8870             16 years old   Male              10th grade   1.65  5.413386
## 8871             16 years old Female              10th grade   1.63  5.347769
## 8872    18 years old or older Female              12th grade   1.60  5.249344
## 8873             17 years old   Male              11th grade   1.63  5.347769
## 8874             17 years old   Male              10th grade   1.70  5.577428
## 8875             15 years old Female              10th grade   1.57  5.150919
## 8876             16 years old Female              10th grade   1.55  5.085302
## 8877    18 years old or older   Male              12th grade   1.85  6.069554
## 8878             16 years old Female              10th grade   1.55  5.085302
## 8879             16 years old   Male              10th grade   1.83  6.003937
## 8880    18 years old or older   Male              12th grade   1.85  6.069554
## 8881             16 years old   Male              10th grade   1.68  5.511811
## 8882             16 years old   Male              10th grade   1.78  5.839895
## 8883             17 years old Female              11th grade   1.70  5.577428
## 8884             17 years old Female              11th grade   1.78  5.839895
## 8885             17 years old Female              11th grade   1.55  5.085302
## 8886             17 years old Female              11th grade   1.60  5.249344
## 8887             15 years old Female              10th grade   1.65  5.413386
## 8888             16 years old Female              10th grade   1.60  5.249344
## 8889             15 years old   Male               9th grade   1.75  5.741470
## 8890             16 years old Female              11th grade   1.63  5.347769
## 8891             17 years old Female              12th grade   1.57  5.150919
## 8892             14 years old Female               9th grade   1.60  5.249344
## 8893             17 years old Female              11th grade   1.68  5.511811
## 8894             16 years old   Male              10th grade   1.90  6.233596
## 8895             17 years old   Male              10th grade   1.75  5.741470
## 8896             15 years old   Male               9th grade   1.80  5.905512
## 8897             16 years old Female              11th grade   1.73  5.675853
## 8898    18 years old or older   Male              12th grade   1.78  5.839895
## 8899    18 years old or older Female              12th grade   1.68  5.511811
## 8900             15 years old Female               9th grade   1.65  5.413386
## 8901             17 years old Female              11th grade   1.57  5.150919
## 8902             15 years old   Male              10th grade   1.75  5.741470
## 8903             14 years old Female               9th grade   1.63  5.347769
## 8904    18 years old or older   Male              12th grade   1.70  5.577428
## 8905             17 years old   Male              12th grade   1.88  6.167979
## 8906             15 years old Female               9th grade   1.60  5.249344
## 8907             17 years old   Male              11th grade   2.01  6.594488
## 8908             16 years old   Male              10th grade   1.80  5.905512
## 8909             16 years old   Male              10th grade   1.78  5.839895
## 8910             15 years old Female               9th grade   1.63  5.347769
## 8911             17 years old   <NA>              11th grade     NA        NA
## 8912    18 years old or older Female              12th grade   1.60  5.249344
## 8913             15 years old Female               9th grade   1.57  5.150919
## 8914             17 years old Female              11th grade   1.63  5.347769
## 8915             16 years old Female              10th grade   1.70  5.577428
## 8916             16 years old Female              10th grade   1.73  5.675853
## 8917             15 years old Female               9th grade   1.63  5.347769
## 8918             16 years old Female              11th grade   1.68  5.511811
## 8919    18 years old or older Female              12th grade   1.78  5.839895
## 8920             15 years old   Male               9th grade   1.78  5.839895
## 8921             17 years old Female              11th grade   1.70  5.577428
## 8922             15 years old Female              10th grade   1.55  5.085302
## 8923             17 years old   Male              11th grade   1.80  5.905512
## 8924    18 years old or older   Male              12th grade   1.88  6.167979
## 8925             14 years old Female               9th grade   1.70  5.577428
## 8926             17 years old Female              11th grade   1.65  5.413386
## 8927             16 years old Female              10th grade   1.60  5.249344
## 8928             16 years old   Male              10th grade   1.70  5.577428
## 8929             15 years old Female               9th grade   1.63  5.347769
## 8930             17 years old   Male              11th grade   1.83  6.003937
## 8931    18 years old or older Female              12th grade   1.63  5.347769
## 8932    18 years old or older   Male              12th grade   1.75  5.741470
## 8933             17 years old Female              11th grade   1.78  5.839895
## 8934             16 years old Female              10th grade   1.55  5.085302
## 8935             16 years old   Male              10th grade   1.83  6.003937
## 8936             14 years old   Male               9th grade   1.78  5.839895
## 8937             17 years old   Male              11th grade   1.78  5.839895
## 8938             17 years old Female              12th grade   1.68  5.511811
## 8939    18 years old or older   Male              12th grade   1.78  5.839895
## 8940             15 years old   Male               9th grade   1.90  6.233596
## 8941             17 years old   Male              11th grade   1.96  6.430446
## 8942             15 years old   Male              10th grade   1.90  6.233596
## 8943             15 years old Female              10th grade   1.68  5.511811
## 8944             15 years old   Male               9th grade   1.65  5.413386
## 8945    18 years old or older Female              12th grade   1.60  5.249344
## 8946    18 years old or older   Male              12th grade   1.83  6.003937
## 8947             15 years old Female               9th grade   1.52  4.986877
## 8948             17 years old Female              11th grade     NA        NA
## 8949             16 years old Female              10th grade   1.70  5.577428
## 8950             14 years old Female               9th grade   1.60  5.249344
## 8951             15 years old Female              10th grade   1.75  5.741470
## 8952             15 years old Female               9th grade   1.52  4.986877
## 8953    18 years old or older Female              11th grade   1.78  5.839895
## 8954    18 years old or older   Male              12th grade   1.88  6.167979
## 8955             15 years old Female               9th grade   1.65  5.413386
## 8956             17 years old Female              11th grade   1.68  5.511811
## 8957             16 years old Female              10th grade   1.57  5.150919
## 8958             16 years old   Male              10th grade   1.68  5.511811
## 8959             15 years old   Male               9th grade   1.63  5.347769
## 8960             16 years old   Male              11th grade   1.83  6.003937
## 8961             15 years old Female               9th grade   1.63  5.347769
## 8962    18 years old or older Female              11th grade   1.55  5.085302
## 8963             16 years old Female              10th grade   1.57  5.150919
## 8964             15 years old Female              10th grade   1.70  5.577428
## 8965             15 years old   Male               9th grade   1.68  5.511811
## 8966             17 years old Female              11th grade     NA        NA
## 8967             17 years old   Male              12th grade   1.68  5.511811
## 8968    18 years old or older   Male              12th grade   1.80  5.905512
## 8969             15 years old Female               9th grade   1.63  5.347769
## 8970             16 years old Female              10th grade   1.52  4.986877
## 8971             17 years old Female              10th grade   1.57  5.150919
## 8972             16 years old Female               9th grade   1.50  4.921260
## 8973             17 years old   Male              11th grade   1.68  5.511811
## 8974             16 years old Female              11th grade   1.70  5.577428
## 8975             15 years old Female              10th grade   1.60  5.249344
## 8976             17 years old   Male              11th grade   1.83  6.003937
## 8977    18 years old or older   Male              12th grade   1.68  5.511811
## 8978             17 years old   Male              12th grade   1.90  6.233596
## 8979             15 years old   Male               9th grade   1.70  5.577428
## 8980             17 years old   Male              11th grade   1.85  6.069554
## 8981             16 years old Female              10th grade   1.63  5.347769
## 8982             16 years old Female              10th grade   1.75  5.741470
## 8983             14 years old Female               9th grade   1.52  4.986877
## 8984             17 years old Female              11th grade   1.55  5.085302
## 8985             17 years old   Male              12th grade   1.60  5.249344
## 8986             15 years old Female               9th grade   1.60  5.249344
## 8987             17 years old Female              11th grade   1.57  5.150919
## 8988             16 years old Female              10th grade   1.60  5.249344
## 8989             16 years old   Male              10th grade   1.85  6.069554
## 8990             15 years old   Male              10th grade   1.70  5.577428
## 8991             17 years old Female              11th grade   1.63  5.347769
## 8992    18 years old or older Female              12th grade   1.73  5.675853
## 8993    18 years old or older Female              12th grade   1.57  5.150919
## 8994             17 years old   Male              11th grade   1.80  5.905512
## 8995             15 years old Female              10th grade   1.68  5.511811
## 8996             16 years old Female              10th grade   1.60  5.249344
## 8997             15 years old   Male               9th grade   1.75  5.741470
## 8998    18 years old or older   Male              11th grade   1.85  6.069554
## 8999             17 years old   Male              12th grade   1.73  5.675853
## 9000    18 years old or older   Male              12th grade   1.73  5.675853
## 9001             14 years old Female               9th grade     NA        NA
## 9002             16 years old Female              11th grade   1.73  5.675853
## 9003             15 years old Female              10th grade   1.63  5.347769
## 9004             15 years old Female              10th grade   1.73  5.675853
## 9005             15 years old Female               9th grade   1.57  5.150919
## 9006             17 years old   Male              11th grade   1.80  5.905512
## 9007    18 years old or older Female              12th grade   1.63  5.347769
## 9008    18 years old or older Female              12th grade   1.63  5.347769
## 9009             14 years old Female               9th grade   1.60  5.249344
## 9010             17 years old   Male              11th grade   1.73  5.675853
## 9011             16 years old Female              10th grade   1.65  5.413386
## 9012             17 years old   Male              11th grade   1.80  5.905512
## 9013             15 years old Female               9th grade   1.63  5.347769
## 9014             16 years old   Male              11th grade   1.83  6.003937
## 9015    18 years old or older Female              12th grade   1.40  4.593176
## 9016    18 years old or older   Male              12th grade   1.75  5.741470
## 9017             14 years old   Male               9th grade   1.75  5.741470
## 9018             16 years old   Male              11th grade   1.88  6.167979
## 9019             15 years old Female              10th grade   1.63  5.347769
## 9020             15 years old Female              10th grade   1.63  5.347769
## 9021             15 years old   Male               9th grade   1.85  6.069554
## 9022             15 years old   Male               9th grade   1.57  5.150919
## 9023             16 years old   Male              11th grade   1.70  5.577428
## 9024             15 years old Female              10th grade   1.63  5.347769
## 9025             15 years old Female              10th grade   1.73  5.675853
## 9026             15 years old   Male               9th grade   1.65  5.413386
## 9027             17 years old   Male              11th grade   2.03  6.660105
## 9028             17 years old   Male              12th grade   1.73  5.675853
## 9029             17 years old   Male              12th grade   1.83  6.003937
## 9030             16 years old   Male              10th grade   1.75  5.741470
## 9031             16 years old   Male              11th grade   1.78  5.839895
## 9032             17 years old   Male              12th grade   1.85  6.069554
## 9033             17 years old   Male              11th grade   1.83  6.003937
## 9034    18 years old or older Female              12th grade   1.60  5.249344
## 9035    18 years old or older   Male              12th grade   1.83  6.003937
## 9036    18 years old or older   Male              11th grade   1.80  5.905512
## 9037    18 years old or older   Male              12th grade   1.75  5.741470
## 9038    18 years old or older Female              12th grade   1.73  5.675853
## 9039             16 years old Female              11th grade   1.60  5.249344
## 9040             17 years old   Male              12th grade   1.85  6.069554
## 9041    18 years old or older Female              12th grade   1.55  5.085302
## 9042             17 years old   Male              11th grade   1.88  6.167979
## 9043             17 years old Female              12th grade   1.73  5.675853
## 9044    18 years old or older   Male              12th grade     NA        NA
## 9045    18 years old or older   Male              11th grade   1.80  5.905512
## 9046             17 years old   Male              12th grade   1.83  6.003937
## 9047             17 years old Female              12th grade   1.63  5.347769
## 9048             17 years old   Male              12th grade   1.83  6.003937
## 9049             17 years old   Male              11th grade   1.80  5.905512
## 9050    18 years old or older Female              12th grade   1.55  5.085302
## 9051             17 years old Female              11th grade   1.65  5.413386
## 9052    18 years old or older   Male              12th grade   1.80  5.905512
## 9053             17 years old   Male              12th grade   1.83  6.003937
## 9054             16 years old   Male              11th grade   1.78  5.839895
## 9055    18 years old or older Female              12th grade   1.65  5.413386
## 9056    18 years old or older   Male              12th grade   1.78  5.839895
## 9057             17 years old Female              11th grade   1.57  5.150919
## 9058             17 years old Female              12th grade   1.65  5.413386
## 9059             16 years old   Male              11th grade   1.78  5.839895
## 9060    18 years old or older   Male              12th grade   1.90  6.233596
## 9061    18 years old or older Female              12th grade   1.63  5.347769
## 9062             17 years old   Male              11th grade   1.88  6.167979
## 9063    18 years old or older Female              12th grade   1.60  5.249344
## 9064             17 years old Female              11th grade     NA        NA
## 9065             17 years old   Male              12th grade   1.60  5.249344
## 9066             17 years old   Male              12th grade   1.83  6.003937
## 9067    18 years old or older   Male              12th grade   1.90  6.233596
## 9068             17 years old Female              12th grade   1.63  5.347769
## 9069    18 years old or older Female              12th grade   1.57  5.150919
## 9070    18 years old or older   Male              12th grade   1.78  5.839895
## 9071             17 years old   Male              12th grade   1.88  6.167979
## 9072             16 years old Female              10th grade   1.63  5.347769
## 9073             16 years old Female              11th grade   1.63  5.347769
## 9074             15 years old   Male              10th grade   1.85  6.069554
## 9075             15 years old   Male              10th grade   1.70  5.577428
## 9076             15 years old   Male              10th grade   1.70  5.577428
## 9077             17 years old   Male              11th grade   1.90  6.233596
## 9078             15 years old Female              10th grade   1.70  5.577428
## 9079             17 years old Female              11th grade   1.70  5.577428
## 9080             16 years old   Male              10th grade   1.78  5.839895
## 9081             16 years old   Male              10th grade   1.83  6.003937
## 9082             16 years old   Male              10th grade   1.90  6.233596
## 9083             17 years old   Male              11th grade   1.75  5.741470
## 9084             17 years old   Male              11th grade   1.78  5.839895
## 9085    18 years old or older Female              11th grade   1.65  5.413386
## 9086             17 years old Female              10th grade   1.60  5.249344
## 9087             14 years old   Male               9th grade   1.73  5.675853
## 9088             15 years old Female               9th grade   1.55  5.085302
## 9089    18 years old or older   Male              11th grade   1.78  5.839895
## 9090             15 years old   Male              10th grade   1.78  5.839895
## 9091             14 years old Female               9th grade   1.52  4.986877
## 9092             16 years old Female              10th grade   1.55  5.085302
## 9093             17 years old Female              10th grade   1.65  5.413386
## 9094             15 years old Female               9th grade   1.75  5.741470
## 9095             17 years old   Male              11th grade   1.78  5.839895
## 9096             15 years old Female              10th grade   1.75  5.741470
## 9097             15 years old Female               9th grade   1.68  5.511811
## 9098             17 years old Female              11th grade   1.57  5.150919
## 9099             16 years old Female              10th grade   1.57  5.150919
## 9100    18 years old or older   Male              11th grade   1.65  5.413386
## 9101             15 years old   Male              10th grade   1.96  6.430446
## 9102             15 years old Female              10th grade   1.60  5.249344
## 9103             15 years old Female              10th grade   1.60  5.249344
## 9104             16 years old Female              11th grade   1.60  5.249344
## 9105             16 years old Female              10th grade   1.52  4.986877
## 9106             14 years old Female               9th grade   1.70  5.577428
## 9107             17 years old Female              10th grade   1.50  4.921260
## 9108             17 years old   Male              11th grade   1.80  5.905512
## 9109             16 years old Female              10th grade   1.52  4.986877
## 9110             16 years old Female              10th grade   1.60  5.249344
## 9111             16 years old Female              10th grade   1.65  5.413386
## 9112             15 years old   Male               9th grade   1.83  6.003937
## 9113             15 years old   Male               9th grade   1.83  6.003937
## 9114             15 years old Female               9th grade   1.70  5.577428
## 9115             15 years old Female               9th grade   1.52  4.986877
## 9116             14 years old   Male               9th grade   1.65  5.413386
## 9117             15 years old   Male               9th grade   1.65  5.413386
## 9118             15 years old   Male               9th grade   1.83  6.003937
## 9119             14 years old Female               9th grade   1.60  5.249344
## 9120             15 years old   Male               9th grade   1.78  5.839895
## 9121             15 years old   Male               9th grade   1.73  5.675853
## 9122             15 years old   Male               9th grade   1.70  5.577428
## 9123             15 years old Female               9th grade   1.65  5.413386
## 9124             15 years old Female               9th grade   1.60  5.249344
## 9125             16 years old   Male               9th grade   1.75  5.741470
## 9126             16 years old Female               9th grade   1.63  5.347769
## 9127             15 years old   Male               9th grade   1.63  5.347769
## 9128             14 years old Female               9th grade   1.63  5.347769
## 9129             15 years old   Male               9th grade   1.60  5.249344
## 9130             17 years old   Male              11th grade   1.78  5.839895
## 9131             15 years old   Male               9th grade   1.75  5.741470
## 9132             17 years old Female              11th grade   1.63  5.347769
## 9133             17 years old   Male              11th grade   1.63  5.347769
## 9134             16 years old Female              10th grade   1.65  5.413386
## 9135             15 years old   Male               9th grade     NA        NA
## 9136             14 years old Female               9th grade   1.65  5.413386
## 9137             16 years old   Male              11th grade   1.73  5.675853
## 9138    18 years old or older   Male              11th grade   1.80  5.905512
## 9139             16 years old   Male              10th grade   1.80  5.905512
## 9140             16 years old   Male               9th grade   1.80  5.905512
## 9141    18 years old or older Female              11th grade   1.83  6.003937
## 9142             17 years old   Male              10th grade   1.70  5.577428
## 9143             15 years old   Male               9th grade   1.70  5.577428
## 9144             16 years old   Male              10th grade   1.93  6.332021
## 9145             15 years old Female               9th grade   1.63  5.347769
## 9146             15 years old Female               9th grade   1.55  5.085302
## 9147             17 years old Female              11th grade     NA        NA
## 9148             16 years old   Male              10th grade   1.83  6.003937
## 9149             15 years old   Male               9th grade   1.80  5.905512
## 9150             17 years old   Male              10th grade     NA        NA
## 9151             16 years old   Male              10th grade   1.90  6.233596
## 9152             16 years old Female              10th grade   1.63  5.347769
## 9153             14 years old   Male               9th grade   1.57  5.150919
## 9154             16 years old Female               9th grade   1.63  5.347769
## 9155             16 years old Female              11th grade   1.63  5.347769
## 9156             16 years old   Male              10th grade   1.78  5.839895
## 9157             15 years old Female               9th grade   1.68  5.511811
## 9158             17 years old   Male              11th grade   1.83  6.003937
## 9159             15 years old Female               9th grade   1.68  5.511811
## 9160             16 years old   Male              11th grade   1.88  6.167979
## 9161             15 years old Female               9th grade   1.88  6.167979
## 9162    18 years old or older Female              11th grade   1.63  5.347769
## 9163             17 years old   Male              11th grade   1.85  6.069554
## 9164             15 years old Female               9th grade   1.70  5.577428
## 9165             16 years old   Male              11th grade   1.80  5.905512
## 9166             15 years old   Male               9th grade   1.68  5.511811
## 9167             15 years old Female               9th grade   1.55  5.085302
## 9168             17 years old   Male              11th grade   1.80  5.905512
## 9169             16 years old   Male               9th grade   1.80  5.905512
## 9170             17 years old   Male              11th grade   1.70  5.577428
## 9171             15 years old Female               9th grade   1.78  5.839895
## 9172             16 years old Female              11th grade   1.55  5.085302
## 9173             15 years old Female              10th grade   1.63  5.347769
## 9174             15 years old Female               9th grade     NA        NA
## 9175             16 years old Female              11th grade     NA        NA
## 9176             15 years old Female               9th grade   1.57  5.150919
## 9177             17 years old   Male              11th grade   1.78  5.839895
## 9178             16 years old   Male              10th grade   1.78  5.839895
## 9179             17 years old   Male              12th grade     NA        NA
## 9180             17 years old Female              11th grade   1.52  4.986877
## 9181             17 years old Female              11th grade   1.52  4.986877
## 9182             16 years old   Male              10th grade   1.88  6.167979
## 9183             14 years old Female               9th grade   1.57  5.150919
## 9184             17 years old   Male              11th grade   1.90  6.233596
## 9185             14 years old Female               9th grade   1.65  5.413386
## 9186             16 years old   Male              11th grade   1.75  5.741470
## 9187             16 years old Female              11th grade   1.70  5.577428
## 9188             17 years old Female              10th grade   1.75  5.741470
## 9189             14 years old Female               9th grade   1.57  5.150919
## 9190             15 years old   Male              10th grade   1.78  5.839895
## 9191             14 years old Female               9th grade   1.65  5.413386
## 9192             17 years old Female              11th grade   1.57  5.150919
## 9193             15 years old   Male               9th grade   1.78  5.839895
## 9194             15 years old   Male               9th grade   1.78  5.839895
## 9195             14 years old   Male               9th grade   1.75  5.741470
## 9196             16 years old   Male              11th grade   1.93  6.332021
## 9197             17 years old Female              11th grade   1.57  5.150919
## 9198             17 years old   Male              10th grade     NA        NA
## 9199             15 years old Female               9th grade   1.52  4.986877
## 9200             14 years old Female               9th grade   1.70  5.577428
## 9201             16 years old   Male               9th grade   1.85  6.069554
## 9202             14 years old   Male               9th grade   1.80  5.905512
## 9203             17 years old Female              12th grade   1.73  5.675853
## 9204             17 years old   Male              12th grade   1.98  6.496063
## 9205             15 years old   Male              10th grade   1.73  5.675853
## 9206             15 years old Female              10th grade   1.60  5.249344
## 9207             17 years old   Male              12th grade   1.73  5.675853
## 9208    18 years old or older Female              12th grade   1.65  5.413386
## 9209             16 years old   Male              10th grade     NA        NA
## 9210             17 years old   Male              12th grade   1.80  5.905512
## 9211             16 years old   Male              10th grade   1.73  5.675853
## 9212    18 years old or older Female              12th grade   1.63  5.347769
## 9213             15 years old Female              10th grade   1.65  5.413386
## 9214             15 years old   Male              10th grade   1.68  5.511811
## 9215             15 years old   Male              10th grade   1.78  5.839895
## 9216    18 years old or older   Male              12th grade   1.78  5.839895
## 9217    18 years old or older   Male              12th grade   1.80  5.905512
## 9218             16 years old   Male              10th grade   1.57  5.150919
## 9219             17 years old   Male              12th grade   1.88  6.167979
## 9220             15 years old   Male              10th grade   1.78  5.839895
## 9221    18 years old or older   Male              12th grade   1.73  5.675853
## 9222    18 years old or older   Male              12th grade   1.75  5.741470
## 9223             16 years old   Male              10th grade   1.90  6.233596
## 9224    18 years old or older   Male              12th grade   1.90  6.233596
## 9225             16 years old   Male              10th grade   1.90  6.233596
## 9226    18 years old or older Female              12th grade   1.65  5.413386
## 9227             15 years old   Male              10th grade   1.83  6.003937
## 9228    18 years old or older Female              12th grade   1.65  5.413386
## 9229             17 years old   Male              12th grade   1.83  6.003937
## 9230             16 years old   Male              10th grade     NA        NA
## 9231    18 years old or older Female              12th grade   1.70  5.577428
## 9232             16 years old   Male              10th grade   1.83  6.003937
## 9233    18 years old or older Female              12th grade   1.63  5.347769
## 9234    18 years old or older Female              12th grade   1.57  5.150919
## 9235             16 years old Female              10th grade   1.57  5.150919
## 9236             17 years old   Male              12th grade   1.73  5.675853
## 9237             16 years old   Male              10th grade   1.83  6.003937
## 9238    18 years old or older   Male              12th grade   1.80  5.905512
## 9239    18 years old or older   Male              12th grade   1.85  6.069554
## 9240             16 years old Female              10th grade   1.65  5.413386
## 9241             16 years old   Male              10th grade   1.98  6.496063
## 9242             14 years old Female               9th grade   1.63  5.347769
## 9243             14 years old   Male               9th grade   1.65  5.413386
## 9244             16 years old   Male              10th grade   1.70  5.577428
## 9245             15 years old   Male               9th grade   1.83  6.003937
## 9246    18 years old or older Female              12th grade   1.65  5.413386
## 9247             16 years old   Male              10th grade   1.90  6.233596
## 9248    18 years old or older   Male              12th grade   1.90  6.233596
## 9249             16 years old   Male              10th grade   1.75  5.741470
## 9250             15 years old Female               9th grade   1.57  5.150919
## 9251             17 years old   Male              12th grade   1.80  5.905512
## 9252    18 years old or older   Male              11th grade   1.73  5.675853
## 9253             16 years old Female              10th grade   1.55  5.085302
## 9254    18 years old or older   Male              12th grade   1.60  5.249344
## 9255             16 years old Female              10th grade   1.50  4.921260
## 9256             17 years old   Male              12th grade   1.68  5.511811
## 9257             14 years old   Male               9th grade   1.65  5.413386
## 9258    18 years old or older Female              12th grade   1.55  5.085302
## 9259    18 years old or older   Male              12th grade   1.75  5.741470
## 9260             17 years old   Male              11th grade   1.85  6.069554
## 9261             17 years old Female              11th grade   1.68  5.511811
## 9262    18 years old or older   Male              12th grade   1.80  5.905512
## 9263             17 years old   Male              11th grade   1.80  5.905512
## 9264             15 years old   Male              10th grade   1.65  5.413386
## 9265             15 years old Female               9th grade   1.78  5.839895
## 9266             17 years old   Male              12th grade   1.73  5.675853
## 9267             17 years old   Male              12th grade   1.78  5.839895
## 9268             15 years old   Male              10th grade   1.83  6.003937
## 9269             14 years old Female               9th grade     NA        NA
## 9270             17 years old Female              12th grade   1.55  5.085302
## 9271             17 years old   Male              11th grade   1.68  5.511811
## 9272             15 years old   Male               9th grade   1.78  5.839895
## 9273             17 years old Female              12th grade   1.57  5.150919
## 9274             17 years old   Male              11th grade   1.88  6.167979
## 9275             15 years old   Male               9th grade   1.78  5.839895
## 9276    18 years old or older Female              12th grade   1.63  5.347769
## 9277             16 years old Female              11th grade   1.63  5.347769
## 9278             15 years old   Male              10th grade   1.83  6.003937
## 9279             15 years old Female               9th grade     NA        NA
## 9280    18 years old or older   Male              12th grade   1.80  5.905512
## 9281             17 years old   Male              11th grade   1.75  5.741470
## 9282             16 years old   Male              10th grade   1.78  5.839895
## 9283             17 years old Female              12th grade   1.57  5.150919
## 9284             17 years old Female              11th grade   1.60  5.249344
## 9285             15 years old   Male              10th grade   1.85  6.069554
## 9286             15 years old Female               9th grade     NA        NA
## 9287    18 years old or older Female              12th grade   1.60  5.249344
## 9288             17 years old   Male              11th grade   1.75  5.741470
## 9289             15 years old   Male              10th grade   1.70  5.577428
## 9290             15 years old   Male               9th grade   1.70  5.577428
## 9291    18 years old or older   Male              12th grade   1.73  5.675853
## 9292             17 years old   Male              11th grade   1.83  6.003937
## 9293             16 years old Female              10th grade   1.55  5.085302
## 9294             14 years old   Male               9th grade   1.60  5.249344
## 9295             15 years old   Male              10th grade   1.75  5.741470
## 9296             14 years old   Male               9th grade   1.75  5.741470
## 9297             15 years old Female              10th grade     NA        NA
## 9298             14 years old   Male               9th grade   1.75  5.741470
## 9299             17 years old Female              12th grade   1.57  5.150919
## 9300             17 years old   Male              11th grade   1.70  5.577428
## 9301             15 years old Female              10th grade   1.50  4.921260
## 9302             15 years old   Male               9th grade   1.65  5.413386
## 9303             17 years old Female              12th grade   1.73  5.675853
## 9304             16 years old   Male              11th grade   1.78  5.839895
## 9305             16 years old   Male              10th grade   1.78  5.839895
## 9306             14 years old Female               9th grade     NA        NA
## 9307             17 years old   Male              12th grade   1.78  5.839895
## 9308             17 years old   Male              11th grade   1.68  5.511811
## 9309             16 years old Female              10th grade   1.83  6.003937
## 9310             14 years old   Male               9th grade   1.78  5.839895
## 9311             17 years old Female              12th grade     NA        NA
## 9312             17 years old   Male              11th grade   1.83  6.003937
## 9313             17 years old   Male              12th grade   1.85  6.069554
## 9314             17 years old   Male              11th grade   1.93  6.332021
## 9315             17 years old Female              12th grade     NA        NA
## 9316             16 years old Female              11th grade   1.60  5.249344
## 9317             15 years old   Male               9th grade     NA        NA
## 9318    18 years old or older   Male              12th grade   1.80  5.905512
## 9319             16 years old Female              11th grade   1.73  5.675853
## 9320    18 years old or older   Male              12th grade   1.83  6.003937
## 9321             16 years old Female              11th grade   1.68  5.511811
## 9322             15 years old Female               9th grade   1.55  5.085302
## 9323    18 years old or older Female              12th grade   1.63  5.347769
## 9324             17 years old Female              12th grade   1.47  4.822835
## 9325             15 years old   Male              10th grade   1.78  5.839895
## 9326             17 years old   Male              11th grade   1.78  5.839895
## 9327             14 years old   Male               9th grade   1.63  5.347769
## 9328             17 years old   Male              12th grade   1.85  6.069554
## 9329             15 years old Female              10th grade   1.63  5.347769
## 9330             16 years old   Male              11th grade   1.80  5.905512
## 9331             14 years old Female               9th grade   1.60  5.249344
## 9332             16 years old   Male              10th grade   1.88  6.167979
## 9333             17 years old   Male              11th grade   1.75  5.741470
## 9334             14 years old   Male               9th grade   1.90  6.233596
## 9335             17 years old   Male              12th grade     NA        NA
## 9336             17 years old Female              12th grade   1.68  5.511811
## 9337             16 years old   Male              10th grade   1.83  6.003937
## 9338             17 years old   Male              11th grade   1.80  5.905512
## 9339             17 years old Female              12th grade   1.60  5.249344
## 9340             15 years old   Male              10th grade   1.75  5.741470
## 9341             16 years old Female              11th grade   1.68  5.511811
## 9342             16 years old   Male              10th grade   1.75  5.741470
## 9343    18 years old or older Female              12th grade   1.60  5.249344
## 9344             16 years old   Male              10th grade   1.90  6.233596
## 9345             17 years old Female              11th grade   1.60  5.249344
## 9346             15 years old Female               9th grade   1.65  5.413386
## 9347    18 years old or older   Male              12th grade   1.70  5.577428
## 9348             16 years old   Male              11th grade   1.80  5.905512
## 9349             15 years old   Male               9th grade   1.68  5.511811
## 9350    18 years old or older Female              12th grade     NA        NA
## 9351             14 years old   Male               9th grade   1.78  5.839895
## 9352    18 years old or older   Male              12th grade   1.85  6.069554
## 9353             17 years old Female              12th grade   1.52  4.986877
## 9354             17 years old   Male              11th grade   1.83  6.003937
## 9355             15 years old   Male              10th grade   1.63  5.347769
## 9356             17 years old   Male              11th grade   1.70  5.577428
## 9357             16 years old Female               9th grade   1.70  5.577428
## 9358    18 years old or older Female              12th grade   1.75  5.741470
## 9359             16 years old Female              10th grade   1.47  4.822835
## 9360             16 years old Female              11th grade   1.73  5.675853
## 9361             15 years old Female               9th grade   1.45  4.757218
## 9362             17 years old Female              12th grade   1.57  5.150919
## 9363             15 years old Female              10th grade   1.65  5.413386
## 9364             16 years old   Male              11th grade   1.83  6.003937
## 9365             15 years old Female               9th grade   1.65  5.413386
## 9366             17 years old   Male              12th grade   1.83  6.003937
## 9367             17 years old   <NA>              11th grade     NA        NA
## 9368             14 years old Female               9th grade     NA        NA
## 9369             17 years old   Male              12th grade   1.73  5.675853
## 9370    18 years old or older   Male              12th grade   1.83  6.003937
## 9371             17 years old   Male              12th grade   1.75  5.741470
## 9372             16 years old Female              10th grade   1.70  5.577428
## 9373             17 years old   Male              11th grade   1.68  5.511811
## 9374             15 years old   Male               9th grade   1.68  5.511811
## 9375             17 years old Female              12th grade   1.68  5.511811
## 9376             14 years old   Male               9th grade     NA        NA
## 9377             17 years old Female              12th grade   1.68  5.511811
## 9378             16 years old Female              10th grade   1.55  5.085302
## 9379             16 years old Female              11th grade   1.65  5.413386
## 9380             15 years old   Male               9th grade   1.63  5.347769
## 9381    18 years old or older Female              12th grade   1.50  4.921260
## 9382             15 years old   Male              10th grade   1.60  5.249344
## 9383             16 years old Female              11th grade   1.55  5.085302
## 9384             15 years old   Male               9th grade   1.68  5.511811
## 9385             15 years old   Male               9th grade   1.68  5.511811
## 9386    18 years old or older Female              12th grade   1.63  5.347769
## 9387             16 years old   Male              10th grade   1.85  6.069554
## 9388             16 years old   Male              11th grade   1.80  5.905512
## 9389             14 years old Female               9th grade     NA        NA
## 9390    18 years old or older Female              12th grade   1.55  5.085302
## 9391             16 years old   Male              10th grade   1.73  5.675853
## 9392             17 years old   Male              11th grade   1.80  5.905512
## 9393             15 years old   Male               9th grade   1.83  6.003937
## 9394    18 years old or older   Male              11th grade   1.70  5.577428
## 9395             14 years old   Male               9th grade   1.70  5.577428
## 9396             17 years old   Male              12th grade   1.78  5.839895
## 9397    18 years old or older Female              12th grade   1.52  4.986877
## 9398             15 years old   Male               9th grade   1.78  5.839895
## 9399             17 years old Female              12th grade   1.63  5.347769
## 9400             17 years old Female              12th grade   1.45  4.757218
## 9401             17 years old Female              11th grade   1.60  5.249344
## 9402             16 years old Female               9th grade   1.63  5.347769
## 9403             14 years old Female               9th grade     NA        NA
## 9404             15 years old Female               9th grade   1.50  4.921260
## 9405    18 years old or older   Male              12th grade   1.80  5.905512
## 9406             17 years old   Male              11th grade   1.70  5.577428
## 9407             17 years old Female              12th grade   1.73  5.675853
## 9408             16 years old Female              11th grade   1.57  5.150919
## 9409             16 years old   Male               9th grade   1.73  5.675853
## 9410             15 years old Female               9th grade   1.57  5.150919
## 9411             15 years old   Male              10th grade   1.80  5.905512
## 9412    18 years old or older Female              12th grade   1.73  5.675853
## 9413             17 years old Female              12th grade     NA        NA
## 9414             16 years old Female              11th grade   1.60  5.249344
## 9415             16 years old   Male              10th grade   1.88  6.167979
## 9416             14 years old Female               9th grade   1.35  4.429134
## 9417             15 years old   Male              10th grade   1.65  5.413386
## 9418             16 years old Female              11th grade   1.60  5.249344
## 9419    18 years old or older   Male              12th grade   1.73  5.675853
## 9420             17 years old   Male              11th grade   1.78  5.839895
## 9421             15 years old   Male               9th grade   1.73  5.675853
## 9422             14 years old   Male               9th grade   1.83  6.003937
## 9423             16 years old Female              10th grade   1.50  4.921260
## 9424    18 years old or older   Male              12th grade   1.80  5.905512
## 9425             17 years old Female              11th grade   1.63  5.347769
## 9426             17 years old   Male              12th grade   1.73  5.675853
## 9427             16 years old   Male              11th grade   1.85  6.069554
## 9428             15 years old Female               9th grade   1.63  5.347769
## 9429             15 years old   Male               9th grade   1.78  5.839895
## 9430             17 years old Female              10th grade   1.60  5.249344
## 9431             17 years old   Male              11th grade   1.75  5.741470
## 9432    18 years old or older   Male              12th grade   1.80  5.905512
## 9433             16 years old   Male              11th grade   1.68  5.511811
## 9434             15 years old   Male               9th grade   1.70  5.577428
## 9435             15 years old Female               9th grade   1.63  5.347769
## 9436             15 years old Female              10th grade   1.57  5.150919
## 9437             17 years old Female              12th grade   1.55  5.085302
## 9438             16 years old   Male              11th grade   1.73  5.675853
## 9439             17 years old   Male              12th grade   1.73  5.675853
## 9440             16 years old Female              11th grade   1.57  5.150919
## 9441             14 years old Female               9th grade   1.75  5.741470
## 9442             15 years old Female               9th grade     NA        NA
## 9443             16 years old Female              10th grade   1.63  5.347769
## 9444    18 years old or older   Male              12th grade   1.90  6.233596
## 9445    18 years old or older Female              12th grade   1.60  5.249344
## 9446             15 years old   Male               9th grade   1.75  5.741470
## 9447             15 years old Female               9th grade   1.75  5.741470
## 9448             15 years old Female              10th grade   1.45  4.757218
## 9449             15 years old   Male              10th grade   1.73  5.675853
## 9450    18 years old or older   Male              12th grade   1.70  5.577428
## 9451             17 years old Female              12th grade   1.68  5.511811
## 9452             14 years old Female               9th grade   1.60  5.249344
## 9453             15 years old   Male               9th grade   1.73  5.675853
## 9454             16 years old   Male              10th grade   1.60  5.249344
## 9455             17 years old Female              11th grade   1.63  5.347769
## 9456             16 years old Female              11th grade   1.83  6.003937
## 9457             15 years old Female               9th grade   1.52  4.986877
## 9458             15 years old Female               9th grade     NA        NA
## 9459             15 years old   Male               9th grade   1.63  5.347769
## 9460             15 years old Female               9th grade     NA        NA
## 9461             14 years old   Male               9th grade   1.52  4.986877
## 9462             15 years old   Male               9th grade   1.75  5.741470
## 9463             16 years old   Male              10th grade   1.70  5.577428
## 9464             17 years old   Male              12th grade   1.70  5.577428
## 9465             16 years old   Male              11th grade   1.70  5.577428
## 9466             17 years old Female              12th grade   1.60  5.249344
## 9467             17 years old   Male              11th grade   1.85  6.069554
## 9468             15 years old   Male               9th grade   1.63  5.347769
## 9469             14 years old   Male               9th grade   1.68  5.511811
## 9470             15 years old   Male              10th grade   1.68  5.511811
## 9471             15 years old   Male              10th grade   1.70  5.577428
## 9472             17 years old   Male              12th grade   1.85  6.069554
## 9473             15 years old Female               9th grade   1.65  5.413386
## 9474             15 years old   Male               9th grade   1.73  5.675853
## 9475             17 years old   Male              11th grade   1.83  6.003937
## 9476             15 years old Female              10th grade   1.73  5.675853
## 9477             17 years old Female              12th grade   1.68  5.511811
## 9478             17 years old Female              12th grade   1.60  5.249344
## 9479             14 years old Female               9th grade     NA        NA
## 9480             14 years old Female               9th grade   1.70  5.577428
## 9481             15 years old   Male              10th grade   1.68  5.511811
## 9482             17 years old   Male              12th grade   1.78  5.839895
## 9483             17 years old Female              11th grade   1.60  5.249344
## 9484             17 years old Female              12th grade   1.68  5.511811
## 9485             15 years old Female               9th grade   1.63  5.347769
## 9486             14 years old   Male               9th grade   1.73  5.675853
## 9487             16 years old   Male              10th grade     NA        NA
## 9488    18 years old or older   Male              12th grade   1.80  5.905512
## 9489             16 years old   Male              11th grade   1.80  5.905512
## 9490             17 years old   Male              11th grade   1.78  5.839895
## 9491             15 years old   Male               9th grade   1.88  6.167979
## 9492             14 years old Female               9th grade   1.57  5.150919
## 9493             15 years old Female              10th grade   1.70  5.577428
## 9494             14 years old   Male               9th grade     NA        NA
## 9495             14 years old Female               9th grade   1.60  5.249344
## 9496             16 years old Female              10th grade   1.68  5.511811
## 9497             15 years old Female              10th grade   1.75  5.741470
## 9498             17 years old Female              12th grade   1.60  5.249344
## 9499    18 years old or older   Male              11th grade   1.83  6.003937
## 9500             17 years old   Male              11th grade   1.63  5.347769
## 9501             14 years old   Male               9th grade   1.65  5.413386
## 9502             15 years old   Male               9th grade   1.78  5.839895
## 9503    18 years old or older Female              12th grade   1.57  5.150919
## 9504             17 years old Female              11th grade   1.60  5.249344
## 9505             17 years old   Male              12th grade   1.73  5.675853
## 9506             14 years old   Male               9th grade     NA        NA
## 9507             15 years old Female              10th grade   1.50  4.921260
## 9508    18 years old or older   Male              12th grade   1.83  6.003937
## 9509             17 years old   Male              12th grade   1.80  5.905512
## 9510             16 years old Female              11th grade     NA        NA
## 9511             16 years old Female              10th grade   1.55  5.085302
## 9512             17 years old Female              11th grade   1.63  5.347769
## 9513    18 years old or older Female              12th grade   1.57  5.150919
## 9514             16 years old Female              11th grade   1.63  5.347769
## 9515             14 years old Female               9th grade     NA        NA
## 9516             15 years old   Male               9th grade   1.70  5.577428
## 9517             14 years old Female               9th grade   1.65  5.413386
## 9518             15 years old Female               9th grade   1.70  5.577428
## 9519             14 years old Female               9th grade   1.70  5.577428
## 9520             14 years old Female               9th grade     NA        NA
## 9521             15 years old Female               9th grade   1.60  5.249344
## 9522             16 years old Female              10th grade     NA        NA
## 9523             15 years old Female              10th grade   1.65  5.413386
## 9524             16 years old   Male              11th grade   1.73  5.675853
## 9525             17 years old   Male              11th grade   1.73  5.675853
## 9526             14 years old   Male               9th grade   1.78  5.839895
## 9527             16 years old   Male               9th grade   1.83  6.003937
## 9528             15 years old   Male              10th grade   1.75  5.741470
## 9529             17 years old Female              12th grade   1.73  5.675853
## 9530             16 years old   Male              11th grade   1.68  5.511811
## 9531             16 years old   Male              11th grade   1.83  6.003937
## 9532             14 years old Female               9th grade   1.70  5.577428
## 9533             14 years old Female               9th grade   1.68  5.511811
## 9534             16 years old Female              10th grade     NA        NA
## 9535             16 years old   Male              10th grade   1.75  5.741470
## 9536             17 years old   Male              11th grade   1.73  5.675853
## 9537             16 years old Female              11th grade   1.50  4.921260
## 9538             16 years old   Male              11th grade   1.73  5.675853
## 9539    18 years old or older   Male              12th grade   1.83  6.003937
## 9540             15 years old   Male               9th grade   1.68  5.511811
## 9541             15 years old   Male               9th grade   1.75  5.741470
## 9542             15 years old Female              10th grade   1.57  5.150919
## 9543    18 years old or older Female              11th grade     NA        NA
## 9544             17 years old   Male              12th grade   1.68  5.511811
## 9545             14 years old   Male               9th grade   1.83  6.003937
## 9546    18 years old or older   Male              12th grade   1.75  5.741470
## 9547             16 years old Female              10th grade   1.65  5.413386
## 9548             17 years old Female              11th grade   1.50  4.921260
## 9549             16 years old   Male              11th grade   1.88  6.167979
## 9550             15 years old Female              10th grade     NA        NA
## 9551             17 years old   Male              11th grade   1.73  5.675853
## 9552             15 years old Female               9th grade   1.70  5.577428
## 9553             15 years old Female               9th grade   1.60  5.249344
## 9554             16 years old   Male              10th grade   1.80  5.905512
## 9555             16 years old   Male               9th grade   1.73  5.675853
## 9556             16 years old Female              11th grade   1.63  5.347769
## 9557             17 years old Female              12th grade   1.65  5.413386
## 9558             17 years old Female              11th grade   1.65  5.413386
## 9559             17 years old   Male              11th grade   1.83  6.003937
## 9560             14 years old Female               9th grade   1.65  5.413386
## 9561             15 years old   Male               9th grade   1.60  5.249344
## 9562             16 years old Female              10th grade   1.65  5.413386
## 9563             15 years old   Male              10th grade   1.75  5.741470
## 9564             17 years old   Male              11th grade   1.78  5.839895
## 9565             14 years old Female               9th grade   1.60  5.249344
## 9566             14 years old   Male               9th grade   1.78  5.839895
## 9567             16 years old   Male              10th grade   1.75  5.741470
## 9568             16 years old Female              11th grade   1.68  5.511811
## 9569             14 years old Female               9th grade   1.63  5.347769
## 9570             15 years old Female               9th grade   1.63  5.347769
## 9571             16 years old Female              10th grade   1.65  5.413386
## 9572             16 years old   <NA>              10th grade     NA        NA
## 9573             17 years old   Male              12th grade   1.90  6.233596
## 9574    18 years old or older   Male              12th grade   1.83  6.003937
## 9575             15 years old Female              10th grade   1.63  5.347769
## 9576             15 years old Female               9th grade   1.60  5.249344
## 9577             15 years old Female               9th grade   1.68  5.511811
## 9578             15 years old Female              10th grade     NA        NA
## 9579             16 years old Female              10th grade   1.60  5.249344
## 9580             16 years old Female              11th grade   1.57  5.150919
## 9581             17 years old   Male              12th grade     NA        NA
## 9582             17 years old Female              10th grade   1.70  5.577428
## 9583             14 years old Female               9th grade   1.60  5.249344
## 9584             15 years old   Male               9th grade   1.63  5.347769
## 9585             15 years old Female              10th grade   1.73  5.675853
## 9586             17 years old   Male              11th grade   1.63  5.347769
## 9587             16 years old   Male              11th grade   1.80  5.905512
## 9588             16 years old   Male              12th grade   1.85  6.069554
## 9589             14 years old Female               9th grade   1.65  5.413386
## 9590             15 years old Female               9th grade   1.50  4.921260
## 9591             17 years old   Male              11th grade   1.83  6.003937
## 9592             15 years old   Male               9th grade   1.68  5.511811
## 9593             17 years old   Male              11th grade   1.78  5.839895
## 9594             14 years old Female               9th grade   1.70  5.577428
## 9595             14 years old Female               9th grade   1.70  5.577428
## 9596    18 years old or older   Male              12th grade   1.63  5.347769
## 9597             17 years old Female              11th grade   1.60  5.249344
## 9598    18 years old or older   Male              12th grade   1.80  5.905512
## 9599             17 years old Female              11th grade   1.80  5.905512
## 9600    18 years old or older   Male              12th grade   1.88  6.167979
## 9601    18 years old or older Female              12th grade   1.63  5.347769
## 9602             17 years old Female              11th grade   1.60  5.249344
## 9603    18 years old or older Female              12th grade   1.63  5.347769
## 9604    18 years old or older   Male              12th grade   1.70  5.577428
## 9605    18 years old or older   Male              12th grade   1.83  6.003937
## 9606    18 years old or older   Male              12th grade   1.83  6.003937
## 9607             17 years old Female              12th grade   1.78  5.839895
## 9608    18 years old or older   Male              12th grade   1.90  6.233596
## 9609    18 years old or older   Male              12th grade   1.80  5.905512
## 9610    18 years old or older Female              12th grade   1.60  5.249344
## 9611             17 years old Female              11th grade   1.57  5.150919
## 9612    18 years old or older Female              12th grade   1.63  5.347769
## 9613    18 years old or older   Male              12th grade   1.80  5.905512
## 9614    18 years old or older Female              11th grade   1.60  5.249344
## 9615    18 years old or older Female              12th grade   1.60  5.249344
## 9616    18 years old or older   Male              12th grade   1.78  5.839895
## 9617             17 years old Female              11th grade   1.63  5.347769
## 9618             17 years old   Male              12th grade   1.73  5.675853
## 9619             17 years old Female              11th grade     NA        NA
## 9620             17 years old   Male              12th grade   1.68  5.511811
## 9621    18 years old or older   Male              12th grade   1.85  6.069554
## 9622             16 years old   Male              11th grade   1.73  5.675853
## 9623    18 years old or older Female              12th grade   1.70  5.577428
## 9624    18 years old or older   Male              12th grade   1.90  6.233596
## 9625             16 years old Female              11th grade   1.75  5.741470
## 9626             15 years old   Male               9th grade   1.80  5.905512
## 9627             17 years old   Male              11th grade   1.96  6.430446
## 9628             16 years old   Male               9th grade   1.70  5.577428
## 9629             17 years old   Male              11th grade     NA        NA
## 9630             15 years old Female               9th grade   1.57  5.150919
## 9631             16 years old Female              10th grade   1.60  5.249344
## 9632             15 years old   Male               9th grade   1.85  6.069554
## 9633             17 years old   Male              12th grade   1.83  6.003937
## 9634             16 years old   Male               9th grade   1.65  5.413386
## 9635             16 years old   Male              10th grade   1.68  5.511811
## 9636             17 years old   Male              10th grade   1.85  6.069554
## 9637             15 years old Female               9th grade   1.70  5.577428
## 9638             17 years old   Male              10th grade   1.80  5.905512
## 9639             15 years old   Male               9th grade   1.75  5.741470
## 9640             17 years old   Male              11th grade   1.88  6.167979
## 9641             15 years old   Male               9th grade   1.65  5.413386
## 9642  12 years old or younger Female Ungraded or other grade     NA        NA
## 9643             15 years old Female               9th grade   1.68  5.511811
## 9644             17 years old   Male              11th grade   1.73  5.675853
## 9645             14 years old   Male               9th grade   1.78  5.839895
## 9646             15 years old Female              10th grade   1.60  5.249344
## 9647             14 years old Female               9th grade   1.70  5.577428
## 9648             17 years old   Male              11th grade   1.73  5.675853
## 9649             15 years old   Male               9th grade   1.80  5.905512
## 9650             15 years old   Male               9th grade   1.78  5.839895
## 9651             17 years old Female              11th grade     NA        NA
## 9652             15 years old   Male               9th grade   1.73  5.675853
## 9653             16 years old   Male              10th grade   1.73  5.675853
## 9654             16 years old Female              10th grade   1.52  4.986877
## 9655             15 years old   Male               9th grade   1.83  6.003937
## 9656             17 years old   Male              10th grade   1.80  5.905512
## 9657             16 years old   Male              10th grade   1.83  6.003937
## 9658             14 years old Female               9th grade   1.65  5.413386
## 9659             15 years old   Male               9th grade   1.78  5.839895
## 9660             15 years old Female               9th grade   1.68  5.511811
## 9661             16 years old   Male              10th grade   1.78  5.839895
## 9662             16 years old   Male              10th grade   1.63  5.347769
## 9663             15 years old   Male               9th grade   1.73  5.675853
## 9664             15 years old   Male               9th grade   1.65  5.413386
## 9665             17 years old Female              11th grade   1.63  5.347769
## 9666             15 years old   Male               9th grade   1.78  5.839895
## 9667             17 years old Female              11th grade   1.63  5.347769
## 9668             17 years old   Male              11th grade   1.73  5.675853
## 9669             14 years old   Male               9th grade   1.60  5.249344
## 9670             16 years old Female               9th grade   1.60  5.249344
## 9671             17 years old   Male              11th grade   1.80  5.905512
## 9672             16 years old   Male              10th grade   1.70  5.577428
## 9673             16 years old   Male              10th grade   1.83  6.003937
## 9674             15 years old Female               9th grade   1.63  5.347769
## 9675             15 years old Female              10th grade   1.57  5.150919
## 9676             15 years old Female               9th grade     NA        NA
## 9677             17 years old Female              11th grade   1.65  5.413386
## 9678             17 years old Female              11th grade   1.65  5.413386
## 9679             15 years old Female               9th grade   1.70  5.577428
## 9680             16 years old   Male              10th grade   1.73  5.675853
## 9681             16 years old Female              10th grade   1.65  5.413386
## 9682             16 years old Female               9th grade   1.65  5.413386
## 9683             17 years old   Male              11th grade   1.83  6.003937
## 9684             15 years old   Male               9th grade   1.78  5.839895
## 9685             17 years old   Male              11th grade   1.83  6.003937
## 9686             15 years old Female               9th grade   1.68  5.511811
## 9687             17 years old Female              11th grade   1.52  4.986877
## 9688             17 years old   Male              11th grade     NA        NA
## 9689             14 years old Female               9th grade     NA        NA
## 9690             15 years old   Male               9th grade   1.83  6.003937
## 9691             16 years old   Male              10th grade   1.85  6.069554
## 9692             15 years old Female              10th grade   1.75  5.741470
## 9693             16 years old Female              10th grade   1.68  5.511811
## 9694             16 years old   Male              10th grade   1.90  6.233596
## 9695             16 years old Female              10th grade   1.68  5.511811
## 9696             16 years old Female              10th grade   1.60  5.249344
## 9697             15 years old   Male               9th grade   1.52  4.986877
## 9698             17 years old   Male              10th grade   1.83  6.003937
## 9699             16 years old Female              10th grade   1.68  5.511811
## 9700             16 years old   Male               9th grade   1.80  5.905512
## 9701             16 years old   Male              10th grade   1.83  6.003937
## 9702             15 years old Female               9th grade   1.68  5.511811
## 9703             15 years old   Male               9th grade   1.63  5.347769
## 9704             16 years old   Male              10th grade   1.70  5.577428
## 9705             16 years old Female              10th grade   1.75  5.741470
## 9706             15 years old   Male               9th grade   1.83  6.003937
## 9707             16 years old Female              10th grade   1.57  5.150919
## 9708             16 years old Female              10th grade   1.57  5.150919
## 9709             16 years old   Male              10th grade   1.75  5.741470
## 9710    18 years old or older Female              12th grade   1.65  5.413386
## 9711    18 years old or older   Male              12th grade   1.70  5.577428
## 9712    18 years old or older   Male              12th grade   1.73  5.675853
## 9713    18 years old or older Female              12th grade   1.68  5.511811
## 9714    18 years old or older Female              12th grade   1.68  5.511811
## 9715    18 years old or older Female              12th grade   1.60  5.249344
## 9716    18 years old or older   Male              12th grade   1.73  5.675853
## 9717             17 years old   Male              12th grade   1.78  5.839895
## 9718    18 years old or older Female              12th grade   1.68  5.511811
## 9719    18 years old or older Female              12th grade   1.55  5.085302
## 9720    18 years old or older Female              12th grade   1.80  5.905512
## 9721             15 years old   Male               9th grade   1.73  5.675853
## 9722             15 years old   Male               9th grade   1.73  5.675853
## 9723             15 years old   Male               9th grade   1.85  6.069554
## 9724             16 years old Female              10th grade   1.55  5.085302
## 9725             16 years old   Male              11th grade   1.78  5.839895
## 9726             17 years old   Male              12th grade   1.83  6.003937
## 9727             16 years old   Male              11th grade   1.83  6.003937
## 9728    18 years old or older   Male              12th grade   1.83  6.003937
## 9729             16 years old Female              10th grade   1.65  5.413386
## 9730             14 years old   Male               9th grade     NA        NA
## 9731             15 years old   Male              10th grade   1.68  5.511811
## 9732             17 years old Female              11th grade   1.63  5.347769
## 9733    18 years old or older   Male              12th grade   1.88  6.167979
## 9734             16 years old   Male              10th grade   1.73  5.675853
## 9735             15 years old Female               9th grade   1.78  5.839895
## 9736             15 years old Female               9th grade     NA        NA
## 9737             16 years old Female              10th grade   1.52  4.986877
## 9738             17 years old   Male              11th grade     NA        NA
## 9739             17 years old   Male              12th grade   1.73  5.675853
## 9740    18 years old or older   Male              11th grade   1.88  6.167979
## 9741             17 years old Female              12th grade   1.65  5.413386
## 9742             16 years old Female              11th grade   1.78  5.839895
## 9743             15 years old   Male               9th grade   1.78  5.839895
## 9744             16 years old   Male              11th grade   1.83  6.003937
## 9745             16 years old Female              11th grade   1.68  5.511811
## 9746             17 years old   Male              12th grade   1.83  6.003937
## 9747             14 years old Female               9th grade   1.52  4.986877
## 9748             15 years old   Male               9th grade   1.78  5.839895
## 9749             15 years old   Male              10th grade   1.70  5.577428
## 9750             17 years old Female              11th grade   1.52  4.986877
## 9751             17 years old   Male              12th grade   1.65  5.413386
## 9752             16 years old   Male              11th grade   1.83  6.003937
## 9753    18 years old or older Female              12th grade   1.68  5.511811
## 9754             16 years old   Male              10th grade   1.65  5.413386
## 9755             16 years old   Male              10th grade   1.68  5.511811
## 9756             15 years old   Male               9th grade   1.70  5.577428
## 9757             16 years old   Male              10th grade   1.70  5.577428
## 9758             16 years old Female              11th grade   1.70  5.577428
## 9759             17 years old   Male              12th grade   1.70  5.577428
## 9760             16 years old Female              10th grade   1.73  5.675853
## 9761    18 years old or older Female              12th grade   1.73  5.675853
## 9762             15 years old Female              10th grade   1.57  5.150919
## 9763             15 years old   Male               9th grade   1.85  6.069554
## 9764             14 years old   Male               9th grade   1.80  5.905512
## 9765             16 years old   Male              10th grade   1.75  5.741470
## 9766             16 years old   Male              11th grade   1.83  6.003937
## 9767             17 years old Female              11th grade   1.75  5.741470
## 9768             17 years old Female              12th grade   1.65  5.413386
## 9769             15 years old   Male              10th grade   1.70  5.577428
## 9770             16 years old Female               9th grade   1.55  5.085302
## 9771             15 years old Female               9th grade   1.70  5.577428
## 9772    18 years old or older   Male              12th grade   1.68  5.511811
## 9773             17 years old Female              10th grade   1.73  5.675853
## 9774             14 years old   Male               9th grade   1.85  6.069554
## 9775             16 years old   Male              10th grade   1.57  5.150919
## 9776             17 years old   Male              11th grade   1.78  5.839895
## 9777             17 years old Female              12th grade   1.55  5.085302
## 9778    18 years old or older Female              12th grade   1.57  5.150919
## 9779             16 years old Female              10th grade   1.80  5.905512
## 9780             15 years old   Male               9th grade   1.90  6.233596
## 9781             15 years old Female               9th grade   1.60  5.249344
## 9782             16 years old Female              10th grade   1.60  5.249344
## 9783             16 years old   Male              11th grade     NA        NA
## 9784    18 years old or older   Male                    <NA>   1.78  5.839895
## 9785    18 years old or older   Male              12th grade   1.70  5.577428
## 9786             17 years old   Male              12th grade   1.65  5.413386
## 9787             16 years old Female              10th grade   1.63  5.347769
## 9788             15 years old   Male               9th grade   1.60  5.249344
## 9789             15 years old   Male               9th grade   1.80  5.905512
## 9790             16 years old   Male              10th grade   1.85  6.069554
## 9791             17 years old   Male              11th grade   1.88  6.167979
## 9792             17 years old Female              12th grade   1.68  5.511811
## 9793             16 years old   Male              11th grade   1.73  5.675853
## 9794    18 years old or older   Male              12th grade   1.68  5.511811
## 9795             16 years old   Male              10th grade   1.73  5.675853
## 9796             14 years old Female               9th grade   1.63  5.347769
## 9797             14 years old   Male               9th grade   1.78  5.839895
## 9798             16 years old   Male              10th grade   1.80  5.905512
## 9799             16 years old Female              11th grade   1.63  5.347769
## 9800             17 years old Female              12th grade   1.73  5.675853
## 9801             17 years old Female              11th grade   1.65  5.413386
## 9802             17 years old   Male              12th grade   1.85  6.069554
## 9803             16 years old   Male              10th grade   1.85  6.069554
## 9804             14 years old Female               9th grade   1.70  5.577428
## 9805             14 years old   Male               9th grade   1.83  6.003937
## 9806             16 years old   Male              10th grade     NA        NA
## 9807    18 years old or older   Male              12th grade   1.70  5.577428
## 9808             17 years old   Male              12th grade   1.83  6.003937
## 9809             17 years old Female              12th grade   1.60  5.249344
## 9810             16 years old   Male              10th grade     NA        NA
## 9811             15 years old Female              10th grade   1.65  5.413386
## 9812             15 years old   Male               9th grade   1.80  5.905512
## 9813             17 years old   Male              12th grade   1.63  5.347769
## 9814             17 years old Female              11th grade   1.68  5.511811
## 9815             17 years old Female              12th grade   1.68  5.511811
## 9816             15 years old Female              10th grade   1.63  5.347769
## 9817             15 years old Female               9th grade   1.50  4.921260
## 9818             14 years old Female               9th grade     NA        NA
## 9819             17 years old   Male              12th grade   1.88  6.167979
## 9820             16 years old Female              11th grade   1.65  5.413386
## 9821    18 years old or older   Male              12th grade   1.78  5.839895
## 9822             16 years old Female              10th grade   1.57  5.150919
## 9823             15 years old   Male               9th grade     NA        NA
## 9824             15 years old   Male              10th grade   1.78  5.839895
## 9825             16 years old Female              11th grade   1.60  5.249344
## 9826             17 years old Female              12th grade   1.68  5.511811
## 9827             16 years old   Male              10th grade   1.73  5.675853
## 9828             14 years old   Male               9th grade   1.78  5.839895
## 9829             15 years old Female              10th grade   1.63  5.347769
## 9830             16 years old   Male              11th grade   1.96  6.430446
## 9831    18 years old or older   Male              12th grade   1.78  5.839895
## 9832             16 years old   Male              11th grade   1.90  6.233596
## 9833    18 years old or older   Male              12th grade   1.88  6.167979
## 9834             16 years old   Male              10th grade   1.75  5.741470
## 9835             15 years old   Male               9th grade   1.60  5.249344
## 9836             15 years old Female              10th grade     NA        NA
## 9837             16 years old   Male              10th grade   1.83  6.003937
## 9838             17 years old   Male              11th grade   1.73  5.675853
## 9839    18 years old or older   Male              12th grade   1.60  5.249344
## 9840             17 years old   Male              11th grade   1.80  5.905512
## 9841    18 years old or older   Male              12th grade   1.80  5.905512
## 9842             16 years old   Male              10th grade   1.80  5.905512
## 9843             15 years old   Male               9th grade   1.90  6.233596
## 9844             15 years old   Male               9th grade   1.68  5.511811
## 9845             16 years old Female              10th grade   1.65  5.413386
## 9846             17 years old Female              11th grade   1.57  5.150919
## 9847             17 years old Female              12th grade   1.55  5.085302
## 9848    18 years old or older   Male              12th grade   1.83  6.003937
## 9849             16 years old   Male              10th grade   1.70  5.577428
## 9850             14 years old   Male               9th grade   1.73  5.675853
## 9851             16 years old Female               9th grade     NA        NA
## 9852             16 years old   Male              10th grade   1.63  5.347769
## 9853             17 years old Female              11th grade   1.63  5.347769
## 9854    18 years old or older Female              12th grade   1.55  5.085302
## 9855             17 years old   Male              11th grade   1.65  5.413386
## 9856    18 years old or older   Male              12th grade   1.83  6.003937
## 9857             16 years old Female              10th grade   1.60  5.249344
## 9858             15 years old   Male               9th grade   1.75  5.741470
## 9859             15 years old Female               9th grade   1.45  4.757218
## 9860             15 years old Female              10th grade   1.55  5.085302
## 9861             17 years old Female              11th grade   1.65  5.413386
## 9862             17 years old   Male              11th grade   1.85  6.069554
## 9863    18 years old or older Female              12th grade   1.50  4.921260
## 9864             14 years old Female               9th grade   1.68  5.511811
## 9865             15 years old   Male               9th grade   1.80  5.905512
## 9866             15 years old Female              10th grade   1.65  5.413386
## 9867             16 years old   Male              11th grade   1.80  5.905512
## 9868             16 years old Female              11th grade   1.65  5.413386
## 9869    18 years old or older   Male              12th grade   1.85  6.069554
## 9870             14 years old   Male               9th grade   1.83  6.003937
## 9871             15 years old Female               9th grade   1.73  5.675853
## 9872             15 years old Female               9th grade   1.63  5.347769
## 9873             17 years old   Male              11th grade   1.73  5.675853
## 9874             16 years old Female              11th grade   1.65  5.413386
## 9875             17 years old Female              12th grade   1.70  5.577428
## 9876             16 years old Female              10th grade   1.68  5.511811
## 9877             15 years old   Male               9th grade   1.63  5.347769
## 9878             15 years old Female              10th grade   1.68  5.511811
## 9879             17 years old   Male              12th grade   1.78  5.839895
## 9880             17 years old Female              12th grade   1.73  5.675853
## 9881             17 years old   Male              11th grade   1.63  5.347769
## 9882    18 years old or older Female              12th grade   1.68  5.511811
## 9883             16 years old Female              10th grade     NA        NA
## 9884             15 years old   Male              10th grade   1.78  5.839895
## 9885             15 years old   Male               9th grade   1.78  5.839895
## 9886             15 years old   Male              10th grade   1.75  5.741470
## 9887             16 years old   Male              11th grade   1.78  5.839895
## 9888             17 years old   Male              12th grade   1.83  6.003937
## 9889    18 years old or older Female              12th grade     NA        NA
## 9890             17 years old   Male              12th grade   1.63  5.347769
## 9891             17 years old Female              10th grade   1.55  5.085302
## 9892             14 years old   Male               9th grade   1.65  5.413386
## 9893             15 years old Female               9th grade   1.83  6.003937
## 9894             17 years old   Male              11th grade   1.80  5.905512
## 9895             17 years old   Male              11th grade   1.75  5.741470
## 9896             16 years old Female              11th grade   1.68  5.511811
## 9897             17 years old Female              11th grade   1.70  5.577428
## 9898             17 years old Female              11th grade   1.55  5.085302
## 9899             16 years old Female              11th grade   1.63  5.347769
## 9900             17 years old Female              11th grade   1.63  5.347769
## 9901             17 years old   Male              11th grade   1.83  6.003937
## 9902             17 years old Female              11th grade   1.68  5.511811
## 9903             17 years old Female              11th grade   1.60  5.249344
## 9904             17 years old Female              11th grade   1.63  5.347769
## 9905             16 years old Female              11th grade   1.63  5.347769
## 9906    18 years old or older   Male              12th grade   1.73  5.675853
## 9907    18 years old or older Female              12th grade   1.47  4.822835
## 9908             17 years old Female              12th grade   1.65  5.413386
## 9909    18 years old or older   Male              12th grade   1.73  5.675853
## 9910             17 years old   Male              12th grade   1.73  5.675853
## 9911             16 years old Female              10th grade   1.57  5.150919
## 9912    18 years old or older   Male              12th grade     NA        NA
## 9913             15 years old   Male               9th grade   1.68  5.511811
## 9914             15 years old   Male               9th grade   1.85  6.069554
## 9915             14 years old Female               9th grade   1.70  5.577428
## 9916             14 years old   Male               9th grade   1.68  5.511811
## 9917             15 years old Female               9th grade   1.65  5.413386
## 9918             17 years old   Male              11th grade     NA        NA
## 9919             16 years old   Male              11th grade   1.73  5.675853
## 9920    18 years old or older   Male              12th grade   1.75  5.741470
## 9921             17 years old   Male              12th grade   1.83  6.003937
## 9922             16 years old   Male              10th grade     NA        NA
## 9923             15 years old   Male               9th grade   1.65  5.413386
## 9924             14 years old   Male               9th grade   1.65  5.413386
## 9925             16 years old   Male              10th grade   1.73  5.675853
## 9926             16 years old   Male              11th grade   1.78  5.839895
## 9927             17 years old   Male              12th grade   1.83  6.003937
## 9928    18 years old or older Female              12th grade   1.65  5.413386
## 9929             16 years old   Male              10th grade   1.80  5.905512
## 9930             14 years old Female               9th grade   1.50  4.921260
## 9931             14 years old Female               9th grade     NA        NA
## 9932             17 years old Female              11th grade   1.55  5.085302
## 9933             17 years old Female              11th grade     NA        NA
## 9934             17 years old Female              12th grade   1.63  5.347769
## 9935             17 years old Female              12th grade   1.65  5.413386
## 9936             15 years old Female               9th grade   1.57  5.150919
## 9937             14 years old Female               9th grade   1.57  5.150919
## 9938             16 years old   Male              10th grade   1.83  6.003937
## 9939             17 years old Female              11th grade   1.70  5.577428
## 9940             16 years old   Male              11th grade   1.75  5.741470
## 9941    18 years old or older Female              12th grade   1.63  5.347769
## 9942             17 years old Female              12th grade   1.57  5.150919
## 9943             16 years old   Male              10th grade   1.80  5.905512
## 9944             15 years old Female               9th grade   1.60  5.249344
## 9945             15 years old Female               9th grade   1.60  5.249344
## 9946             16 years old   Male              10th grade   1.80  5.905512
## 9947             16 years old   Male              11th grade   1.88  6.167979
## 9948             16 years old Female              11th grade   1.57  5.150919
## 9949             17 years old Female              12th grade   1.60  5.249344
## 9950             17 years old   Male              12th grade   1.88  6.167979
## 9951             15 years old   Male              10th grade   1.83  6.003937
## 9952             14 years old Female               9th grade   1.65  5.413386
## 9953             15 years old   <NA>               9th grade     NA        NA
## 9954             16 years old   Male              10th grade   1.65  5.413386
## 9955             16 years old Female              11th grade   1.70  5.577428
## 9956             16 years old   Male              11th grade   1.88  6.167979
## 9957    18 years old or older   Male              12th grade   1.80  5.905512
## 9958    18 years old or older Female              12th grade   1.60  5.249344
## 9959             16 years old Female              10th grade   1.68  5.511811
## 9960             14 years old Female               9th grade     NA        NA
## 9961             16 years old   Male              10th grade   1.85  6.069554
## 9962             16 years old   Male              11th grade   1.75  5.741470
## 9963    18 years old or older   Male              12th grade   1.85  6.069554
## 9964             15 years old Female              10th grade     NA        NA
## 9965             14 years old Female               9th grade   1.65  5.413386
## 9966             15 years old Female               9th grade     NA        NA
## 9967             15 years old   Male              10th grade   1.90  6.233596
## 9968             17 years old   Male              11th grade   1.80  5.905512
## 9969             16 years old   Male              11th grade   1.78  5.839895
## 9970    18 years old or older   Male              12th grade   1.83  6.003937
## 9971             16 years old Female              10th grade   1.55  5.085302
## 9972             15 years old   Male               9th grade     NA        NA
## 9973             17 years old Female              11th grade   1.65  5.413386
## 9974             16 years old   Male              11th grade     NA        NA
## 9975    18 years old or older Female              12th grade   1.57  5.150919
## 9976             15 years old Female              10th grade   1.73  5.675853
## 9977             15 years old   Male               9th grade   1.52  4.986877
## 9978             17 years old Female              11th grade   1.68  5.511811
## 9979             16 years old Female              11th grade   1.70  5.577428
## 9980    18 years old or older   Male              12th grade   1.85  6.069554
## 9981    18 years old or older   Male              12th grade   1.78  5.839895
## 9982             16 years old Female              10th grade   1.65  5.413386
## 9983             15 years old Female              10th grade   1.60  5.249344
## 9984             17 years old   Male              11th grade   1.78  5.839895
## 9985             17 years old Female              12th grade   1.60  5.249344
## 9986             15 years old Female              10th grade   1.70  5.577428
## 9987             14 years old Female               9th grade   1.65  5.413386
## 9988             14 years old Female               9th grade     NA        NA
## 9989             17 years old   Male              11th grade   1.75  5.741470
## 9990             16 years old   Male              11th grade   1.75  5.741470
## 9991             17 years old   Male              12th grade   1.70  5.577428
## 9992    18 years old or older Female              12th grade   1.57  5.150919
## 9993             15 years old Female              10th grade   1.68  5.511811
## 9994             14 years old   Male               9th grade   1.85  6.069554
## 9995             15 years old   Male              10th grade   1.70  5.577428
## 9996             16 years old Female              11th grade     NA        NA
## 9997    18 years old or older   Male              12th grade   1.68  5.511811
## 9998    18 years old or older   Male              12th grade   1.80  5.905512
## 9999             15 years old   Male              10th grade   1.65  5.413386
## 10000            14 years old Female               9th grade   1.65  5.413386
## 10001            15 years old Female              10th grade   1.70  5.577428
## 10002            14 years old Female               9th grade   1.63  5.347769
## 10003            17 years old   Male              11th grade   1.88  6.167979
## 10004   18 years old or older Female              12th grade   1.63  5.347769
## 10005            16 years old   Male              10th grade   1.78  5.839895
## 10006            14 years old   Male               9th grade   1.70  5.577428
## 10007            14 years old   Male               9th grade   1.70  5.577428
## 10008            15 years old   Male              10th grade   1.83  6.003937
## 10009            16 years old   Male              11th grade   1.80  5.905512
## 10010   18 years old or older Female              11th grade   1.57  5.150919
## 10011            17 years old   Male              12th grade   1.80  5.905512
## 10012   18 years old or older   Male              12th grade   1.88  6.167979
## 10013            15 years old Female               9th grade   1.60  5.249344
## 10014            15 years old Female              10th grade   1.73  5.675853
## 10015            16 years old Female              11th grade   1.63  5.347769
## 10016   18 years old or older   Male              12th grade   1.80  5.905512
## 10017            15 years old   Male              10th grade   1.75  5.741470
## 10018            14 years old   Male               9th grade   1.68  5.511811
## 10019            15 years old   Male               9th grade   1.78  5.839895
## 10020            17 years old Female              11th grade   1.78  5.839895
## 10021            17 years old   Male              11th grade   1.88  6.167979
## 10022            17 years old   Male              12th grade   1.75  5.741470
## 10023            17 years old Female              12th grade     NA        NA
## 10024            16 years old   Male              10th grade   1.75  5.741470
## 10025            15 years old Female               9th grade   1.70  5.577428
## 10026            16 years old   Male              10th grade   1.75  5.741470
## 10027            17 years old   Male              11th grade   1.80  5.905512
## 10028            17 years old Female              11th grade   1.60  5.249344
## 10029            17 years old   Male              12th grade   1.80  5.905512
## 10030            17 years old   Male              12th grade   1.90  6.233596
## 10031            15 years old Female              10th grade   1.68  5.511811
## 10032            16 years old Female              10th grade   1.63  5.347769
## 10033            14 years old   Male               9th grade   1.68  5.511811
## 10034            15 years old Female              10th grade   1.73  5.675853
## 10035            17 years old   Male              11th grade   1.80  5.905512
## 10036   18 years old or older Female              12th grade   1.68  5.511811
## 10037            17 years old   Male              12th grade   1.78  5.839895
## 10038            17 years old Female              12th grade   1.70  5.577428
## 10039            15 years old   Male              10th grade   1.78  5.839895
## 10040            16 years old   Male              10th grade   1.75  5.741470
## 10041            15 years old Female              10th grade   1.57  5.150919
## 10042            16 years old   Male              10th grade   1.83  6.003937
## 10043            17 years old Female              11th grade   1.63  5.347769
## 10044            17 years old   Male              11th grade   1.88  6.167979
## 10045            17 years old   Male              12th grade     NA        NA
## 10046            17 years old   Male              12th grade   1.78  5.839895
## 10047            16 years old Female              10th grade   1.73  5.675853
## 10048            14 years old Female               9th grade   1.40  4.593176
## 10049            16 years old   Male              10th grade   1.73  5.675853
## 10050            17 years old   Male              11th grade     NA        NA
## 10051            17 years old   Male              11th grade   1.75  5.741470
## 10052   18 years old or older   Male              12th grade   1.80  5.905512
## 10053   18 years old or older   Male              12th grade   1.80  5.905512
## 10054            16 years old   Male              10th grade   1.73  5.675853
## 10055            14 years old   Male               9th grade   1.65  5.413386
## 10056            15 years old   Male               9th grade   1.75  5.741470
## 10057            16 years old   Male              10th grade   1.80  5.905512
## 10058            16 years old   Male              11th grade   1.85  6.069554
## 10059            17 years old   Male              11th grade   1.73  5.675853
## 10060   18 years old or older   Male              12th grade   1.90  6.233596
## 10061            15 years old   Male              10th grade   1.63  5.347769
## 10062            14 years old Female               9th grade   1.60  5.249344
## 10063            15 years old Female               9th grade   1.45  4.757218
## 10064            16 years old   Male              10th grade   1.73  5.675853
## 10065            16 years old   Male              11th grade   1.73  5.675853
## 10066            16 years old Female              11th grade   1.55  5.085302
## 10067            17 years old   Male              12th grade   1.88  6.167979
## 10068   18 years old or older Female              12th grade   1.57  5.150919
## 10069            16 years old Female              10th grade   1.57  5.150919
## 10070            14 years old   <NA>               9th grade     NA        NA
## 10071            15 years old   Male               9th grade   1.80  5.905512
## 10072            17 years old   Male              11th grade   1.63  5.347769
## 10073            17 years old   Male              11th grade   1.70  5.577428
## 10074            17 years old   Male              11th grade   1.70  5.577428
## 10075            17 years old   Male              11th grade   1.96  6.430446
## 10076   18 years old or older   Male              11th grade   1.83  6.003937
## 10077            17 years old Female              12th grade     NA        NA
## 10078            15 years old   Male               9th grade   1.70  5.577428
## 10079            16 years old   Male              11th grade   1.78  5.839895
## 10080   18 years old or older Female Ungraded or other grade   1.55  5.085302
## 10081                    <NA> Female              11th grade     NA        NA
## 10082            17 years old   Male              12th grade   1.70  5.577428
## 10083            15 years old   Male               9th grade   1.83  6.003937
## 10084            17 years old Female              12th grade   1.70  5.577428
## 10085            15 years old   Male               9th grade   1.75  5.741470
## 10086            16 years old Female              11th grade   1.55  5.085302
## 10087            17 years old   Male              12th grade   1.80  5.905512
## 10088            15 years old   Male               9th grade   1.65  5.413386
## 10089            17 years old Female              11th grade   1.52  4.986877
## 10090            16 years old   Male              11th grade   1.60  5.249344
## 10091   18 years old or older   Male              12th grade   1.96  6.430446
## 10092            16 years old   Male              11th grade   1.60  5.249344
## 10093   18 years old or older   <NA>              12th grade     NA        NA
## 10094            17 years old Female              11th grade   1.52  4.986877
## 10095   18 years old or older   Male              12th grade   1.88  6.167979
## 10096            14 years old   Male               9th grade   1.80  5.905512
## 10097   18 years old or older   Male              12th grade   1.70  5.577428
## 10098            16 years old   Male              11th grade   1.78  5.839895
## 10099   18 years old or older   Male              12th grade   1.96  6.430446
## 10100            16 years old   Male              11th grade     NA        NA
## 10101            17 years old   Male              12th grade   1.73  5.675853
## 10102            14 years old Female               9th grade   1.60  5.249344
## 10103            16 years old   Male              11th grade   1.70  5.577428
## 10104            16 years old   Male              11th grade   1.75  5.741470
## 10105   18 years old or older Female              12th grade   1.52  4.986877
## 10106            15 years old   Male               9th grade     NA        NA
## 10107            17 years old Female              11th grade   1.52  4.986877
## 10108   18 years old or older   Male              12th grade   1.68  5.511811
## 10109            15 years old Female               9th grade   1.63  5.347769
## 10110            17 years old Female              11th grade   1.63  5.347769
## 10111            16 years old Female              11th grade   1.60  5.249344
## 10112            15 years old Female              10th grade   1.63  5.347769
## 10113            16 years old Female              10th grade   1.68  5.511811
## 10114            16 years old Female              10th grade   1.60  5.249344
## 10115            15 years old Female              10th grade     NA        NA
## 10116            16 years old Female              11th grade   1.60  5.249344
## 10117            15 years old Female              10th grade   1.60  5.249344
## 10118            16 years old Female              10th grade   1.63  5.347769
## 10119            17 years old   Male              12th grade   1.70  5.577428
## 10120            15 years old   Male               9th grade   1.63  5.347769
## 10121            17 years old Female              11th grade     NA        NA
## 10122            16 years old   Male              10th grade   1.65  5.413386
## 10123            17 years old Female              12th grade     NA        NA
## 10124            16 years old Female              11th grade   1.55  5.085302
## 10125            16 years old Female              10th grade   1.55  5.085302
## 10126            17 years old   Male              11th grade   1.85  6.069554
## 10127            16 years old Female              10th grade   1.68  5.511811
## 10128            14 years old   Male               9th grade   1.68  5.511811
## 10129            15 years old   Male              10th grade   1.80  5.905512
## 10130            15 years old   Male               9th grade   1.85  6.069554
## 10131            15 years old Female               9th grade   1.78  5.839895
## 10132            16 years old Female              11th grade   1.63  5.347769
## 10133            16 years old   Male              11th grade   1.96  6.430446
## 10134            15 years old   Male               9th grade   1.73  5.675853
## 10135            17 years old Female              11th grade     NA        NA
## 10136            17 years old Female              11th grade   1.50  4.921260
## 10137            15 years old Female               9th grade   1.50  4.921260
## 10138            17 years old Female              11th grade   1.63  5.347769
## 10139            16 years old Female              11th grade     NA        NA
## 10140            15 years old Female               9th grade   1.63  5.347769
## 10141            16 years old   Male              10th grade   1.73  5.675853
## 10142            15 years old   Male               9th grade   1.90  6.233596
## 10143            14 years old Female               9th grade   1.57  5.150919
## 10144            16 years old   Male              11th grade     NA        NA
## 10145            17 years old Female              11th grade   1.65  5.413386
## 10146            14 years old   Male               9th grade   1.93  6.332021
## 10147            15 years old   Male              10th grade   1.68  5.511811
## 10148            14 years old Female               9th grade   1.52  4.986877
## 10149            14 years old   Male               9th grade   1.80  5.905512
## 10150            17 years old   Male              11th grade   1.88  6.167979
## 10151            16 years old Female              11th grade     NA        NA
## 10152            15 years old Female               9th grade   1.55  5.085302
## 10153            16 years old Female              11th grade   1.55  5.085302
## 10154            17 years old Female              11th grade   1.40  4.593176
## 10155            15 years old   Male               9th grade   1.65  5.413386
## 10156            14 years old   Male               9th grade   1.78  5.839895
## 10157            14 years old Female               9th grade   1.52  4.986877
## 10158            16 years old   Male              11th grade   1.80  5.905512
## 10159            17 years old Female              11th grade   1.52  4.986877
## 10160            15 years old Female               9th grade   1.75  5.741470
## 10161            15 years old Female              10th grade   1.63  5.347769
## 10162            14 years old   Male               9th grade   1.83  6.003937
## 10163            15 years old Female               9th grade   1.68  5.511811
## 10164            17 years old   Male              11th grade   1.70  5.577428
## 10165            16 years old   Male              11th grade   1.63  5.347769
## 10166            15 years old   Male               9th grade   1.63  5.347769
## 10167            15 years old Female              10th grade   1.68  5.511811
## 10168            15 years old Female               9th grade   1.70  5.577428
## 10169            15 years old   Male               9th grade   1.83  6.003937
## 10170            17 years old Female              11th grade   1.70  5.577428
## 10171            16 years old   Male              11th grade   1.73  5.675853
## 10172            15 years old   Male               9th grade   1.65  5.413386
## 10173            16 years old   Male              10th grade   1.73  5.675853
## 10174            15 years old   Male               9th grade   1.65  5.413386
## 10175            14 years old Female               9th grade   1.75  5.741470
## 10176            16 years old   Male              11th grade   1.80  5.905512
## 10177            17 years old Female              11th grade   1.83  6.003937
## 10178            14 years old Female               9th grade   1.63  5.347769
## 10179            15 years old   Male              10th grade   1.70  5.577428
## 10180            15 years old Female               9th grade   1.63  5.347769
## 10181            15 years old Female               9th grade   1.63  5.347769
## 10182            16 years old   Male              11th grade   1.73  5.675853
## 10183            15 years old Female               9th grade   1.57  5.150919
## 10184            16 years old   Male              10th grade   1.83  6.003937
## 10185            14 years old Female               9th grade   1.63  5.347769
## 10186            15 years old   Male               9th grade   1.80  5.905512
## 10187            16 years old Female              10th grade   1.60  5.249344
## 10188            14 years old   Male               9th grade   1.57  5.150919
## 10189            15 years old   Male               9th grade   1.60  5.249344
## 10190            16 years old Female              11th grade   1.60  5.249344
## 10191            14 years old   Male               9th grade   1.68  5.511811
## 10192            15 years old Female              10th grade   1.57  5.150919
## 10193            15 years old Female               9th grade   1.57  5.150919
## 10194            17 years old Female              11th grade   1.70  5.577428
## 10195            17 years old   Male              11th grade   1.88  6.167979
## 10196            14 years old   Male               9th grade   1.60  5.249344
## 10197            17 years old Female              11th grade   1.52  4.986877
## 10198            17 years old Female              11th grade   1.65  5.413386
## 10199            15 years old Female               9th grade   1.73  5.675853
## 10200            16 years old   Male              10th grade   1.88  6.167979
## 10201            14 years old Female               9th grade   1.57  5.150919
## 10202            15 years old   Male               9th grade   1.88  6.167979
## 10203            16 years old   Male              11th grade   1.85  6.069554
## 10204            14 years old   Male               9th grade   1.73  5.675853
## 10205            15 years old   Male               9th grade   1.80  5.905512
## 10206            17 years old Female              11th grade   1.65  5.413386
## 10207            15 years old Female               9th grade   1.57  5.150919
## 10208            15 years old   Male              10th grade   1.68  5.511811
## 10209            14 years old Female               9th grade   1.75  5.741470
## 10210            15 years old   Male               9th grade   1.75  5.741470
## 10211            17 years old   Male              11th grade   1.70  5.577428
## 10212            14 years old   Male               9th grade   1.63  5.347769
## 10213            15 years old Female              10th grade   1.60  5.249344
## 10214            14 years old   Male               9th grade   1.68  5.511811
## 10215            15 years old   Male               9th grade   1.80  5.905512
## 10216            16 years old Female              11th grade   1.50  4.921260
## 10217            15 years old   Male               9th grade   1.60  5.249344
## 10218            16 years old Female              10th grade     NA        NA
## 10219            15 years old   Male               9th grade   1.73  5.675853
## 10220            15 years old   Male               9th grade   1.70  5.577428
## 10221   18 years old or older   Male              12th grade   1.85  6.069554
## 10222            17 years old   Male              12th grade   1.83  6.003937
## 10223            17 years old   Male              12th grade   1.75  5.741470
## 10224            16 years old Female              10th grade   1.63  5.347769
## 10225            17 years old   Male              12th grade   1.75  5.741470
## 10226            16 years old   Male              10th grade   1.85  6.069554
## 10227            17 years old   Male              12th grade   1.78  5.839895
## 10228            17 years old   Male              12th grade   1.83  6.003937
## 10229            16 years old   Male              10th grade   1.75  5.741470
## 10230            17 years old   Male              12th grade   1.88  6.167979
## 10231   18 years old or older Female              12th grade   1.60  5.249344
## 10232            16 years old   Male              10th grade   1.73  5.675853
## 10233            16 years old Female              10th grade   1.63  5.347769
## 10234   18 years old or older   Male              12th grade   1.83  6.003937
## 10235            17 years old   Male              12th grade   1.80  5.905512
## 10236            17 years old   Male              12th grade   1.78  5.839895
## 10237            16 years old   Male              10th grade   1.75  5.741470
## 10238   18 years old or older Female              12th grade   1.68  5.511811
## 10239   18 years old or older   Male              12th grade   1.68  5.511811
## 10240   18 years old or older Female              12th grade   1.52  4.986877
## 10241            15 years old Female              10th grade   1.52  4.986877
## 10242   18 years old or older Female              12th grade   1.75  5.741470
## 10243 12 years old or younger   Male              12th grade     NA        NA
## 10244            15 years old Female              10th grade   1.63  5.347769
## 10245            17 years old Female              12th grade   1.60  5.249344
## 10246            16 years old Female              10th grade   1.55  5.085302
## 10247   18 years old or older Female              12th grade   1.70  5.577428
## 10248   18 years old or older   Male              12th grade   1.73  5.675853
## 10249   18 years old or older   Male              12th grade   1.85  6.069554
## 10250            15 years old   Male              10th grade   1.75  5.741470
## 10251            15 years old Female              10th grade   1.65  5.413386
## 10252   18 years old or older Female              12th grade   1.63  5.347769
## 10253            17 years old Female              12th grade   1.70  5.577428
## 10254   18 years old or older Female              12th grade   1.70  5.577428
## 10255            16 years old Female              10th grade   1.65  5.413386
## 10256   18 years old or older   Male              12th grade   1.80  5.905512
## 10257            16 years old   Male              10th grade   1.73  5.675853
## 10258            16 years old Female              10th grade   1.65  5.413386
## 10259   18 years old or older Female              12th grade   1.57  5.150919
## 10260   18 years old or older   Male              12th grade   1.88  6.167979
## 10261   18 years old or older Female              12th grade   1.60  5.249344
## 10262            16 years old Female              10th grade   1.63  5.347769
## 10263            17 years old Female              12th grade   1.57  5.150919
## 10264   18 years old or older   Male              12th grade   1.93  6.332021
## 10265   18 years old or older Female              12th grade   1.63  5.347769
## 10266            17 years old Female              12th grade   1.60  5.249344
## 10267            17 years old   Male              12th grade   1.73  5.675853
## 10268            17 years old   Male              12th grade   1.83  6.003937
## 10269   18 years old or older Female              12th grade   1.50  4.921260
## 10270   18 years old or older Female              12th grade   1.68  5.511811
## 10271   18 years old or older   Male              12th grade   1.75  5.741470
## 10272            15 years old   Male              10th grade   1.70  5.577428
## 10273            17 years old Female              12th grade   1.70  5.577428
## 10274   18 years old or older   Male              12th grade   1.83  6.003937
## 10275   18 years old or older   Male              12th grade   1.75  5.741470
## 10276            16 years old   Male              10th grade   1.73  5.675853
## 10277   18 years old or older   Male              12th grade   1.83  6.003937
## 10278            16 years old   Male              10th grade   1.80  5.905512
## 10279            17 years old   Male              11th grade     NA        NA
## 10280            15 years old Female               9th grade   1.52  4.986877
## 10281            16 years old Female              11th grade   1.60  5.249344
## 10282            15 years old Female               9th grade   1.65  5.413386
## 10283            16 years old Female              11th grade   1.55  5.085302
## 10284            15 years old Female               9th grade   1.60  5.249344
## 10285            15 years old   Male               9th grade   1.85  6.069554
## 10286            17 years old   Male              11th grade   1.83  6.003937
## 10287            16 years old   Male               9th grade   1.88  6.167979
## 10288            17 years old   Male              11th grade   1.93  6.332021
## 10289            14 years old Female               9th grade   1.75  5.741470
## 10290            17 years old Female              11th grade   1.75  5.741470
## 10291            14 years old Female               9th grade   1.68  5.511811
## 10292            14 years old   Male               9th grade   1.70  5.577428
## 10293            14 years old Female               9th grade   1.63  5.347769
## 10294            16 years old Female              11th grade   1.73  5.675853
## 10295            14 years old Female               9th grade   1.68  5.511811
## 10296            16 years old Female              11th grade     NA        NA
## 10297            15 years old Female               9th grade   1.75  5.741470
## 10298            16 years old   Male              11th grade   1.80  5.905512
## 10299            14 years old   Male               9th grade   1.85  6.069554
## 10300            17 years old   Male              11th grade   1.88  6.167979
## 10301            15 years old Female               9th grade   1.80  5.905512
## 10302            16 years old Female              11th grade   1.65  5.413386
## 10303            17 years old Female              12th grade   1.65  5.413386
## 10304            15 years old   Male               9th grade   1.60  5.249344
## 10305            14 years old Female               9th grade   1.75  5.741470
## 10306            17 years old Female              12th grade   1.68  5.511811
## 10307   18 years old or older   Male              12th grade   1.83  6.003937
## 10308   18 years old or older Female              12th grade     NA        NA
## 10309            15 years old Female              10th grade   1.60  5.249344
## 10310            17 years old Female              12th grade   1.68  5.511811
## 10311            15 years old Female              10th grade   1.63  5.347769
## 10312   18 years old or older Female              12th grade   1.60  5.249344
## 10313            16 years old Female              10th grade   1.60  5.249344
## 10314            17 years old Female                    <NA>   1.70  5.577428
## 10315            16 years old   Male              10th grade   1.80  5.905512
## 10316   18 years old or older Female              12th grade   1.60  5.249344
## 10317            16 years old Female              10th grade   1.65  5.413386
## 10318            16 years old   Male              10th grade   1.78  5.839895
## 10319            15 years old Female              10th grade   1.75  5.741470
## 10320            16 years old Female              10th grade   1.63  5.347769
## 10321            16 years old Female              10th grade     NA        NA
## 10322   18 years old or older   Male              12th grade   1.98  6.496063
## 10323            15 years old   Male              10th grade   1.75  5.741470
## 10324   18 years old or older Female              12th grade   1.73  5.675853
## 10325            15 years old   Male              10th grade   1.75  5.741470
## 10326            17 years old Female              12th grade   1.75  5.741470
## 10327            15 years old   Male              10th grade   1.83  6.003937
## 10328            17 years old   Male              12th grade   1.83  6.003937
## 10329            16 years old Female              10th grade   1.68  5.511811
## 10330            15 years old Female              10th grade   1.57  5.150919
## 10331            15 years old Female              10th grade   1.50  4.921260
## 10332            17 years old   Male              12th grade   1.90  6.233596
## 10333            15 years old Female              10th grade   1.55  5.085302
## 10334            17 years old   Male              12th grade   1.96  6.430446
## 10335            15 years old   Male              10th grade   1.78  5.839895
## 10336   18 years old or older   Male              12th grade   1.78  5.839895
## 10337            16 years old Female              10th grade   1.63  5.347769
## 10338            17 years old Female              12th grade   1.63  5.347769
## 10339            16 years old Female              10th grade   1.60  5.249344
## 10340            15 years old   Male              10th grade   1.65  5.413386
## 10341            16 years old Female              10th grade   1.57  5.150919
## 10342            17 years old Female              12th grade   1.70  5.577428
## 10343            16 years old   Male              10th grade     NA        NA
## 10344            14 years old   Male               9th grade     NA        NA
## 10345            14 years old Female               9th grade   1.65  5.413386
## 10346            16 years old   Male Ungraded or other grade   1.70  5.577428
## 10347            14 years old Female               9th grade     NA        NA
## 10348            17 years old   Male              11th grade   1.90  6.233596
## 10349            15 years old   Male               9th grade   1.83  6.003937
## 10350            15 years old Female               9th grade   1.68  5.511811
## 10351            17 years old Female              11th grade   1.42  4.658793
## 10352            15 years old Female               9th grade     NA        NA
## 10353            17 years old Female              11th grade   1.52  4.986877
## 10354            16 years old Female               9th grade   1.70  5.577428
## 10355            16 years old Female              11th grade     NA        NA
## 10356            15 years old   Male               9th grade   1.88  6.167979
## 10357            14 years old   Male               9th grade   1.70  5.577428
## 10358            17 years old   Male              11th grade   1.85  6.069554
## 10359            14 years old   Male               9th grade   1.63  5.347769
## 10360            17 years old   Male              11th grade   1.80  5.905512
## 10361            15 years old Female              10th grade   1.63  5.347769
## 10362            14 years old   Male               9th grade   1.65  5.413386
## 10363            17 years old Female              11th grade   1.73  5.675853
## 10364            16 years old   Male              11th grade   1.83  6.003937
## 10365            15 years old   Male              10th grade   1.80  5.905512
## 10366            17 years old   Male              11th grade   1.65  5.413386
## 10367            16 years old Female              10th grade   1.52  4.986877
## 10368            15 years old   Male               9th grade   1.83  6.003937
## 10369            15 years old   Male              10th grade     NA        NA
## 10370            14 years old Female               9th grade     NA        NA
## 10371            17 years old   Male              11th grade   1.68  5.511811
## 10372            15 years old   Male              10th grade   1.68  5.511811
## 10373            16 years old   Male              11th grade   1.78  5.839895
## 10374            14 years old   Male               9th grade   1.73  5.675853
## 10375            17 years old   Male              11th grade   1.60  5.249344
## 10376   18 years old or older Female              12th grade   1.52  4.986877
## 10377            14 years old Female               9th grade   1.52  4.986877
## 10378            15 years old   Male              10th grade   1.75  5.741470
## 10379   18 years old or older Female              11th grade   1.60  5.249344
## 10380            15 years old Female              10th grade   1.55  5.085302
## 10381            17 years old   Male              11th grade   1.63  5.347769
## 10382            16 years old Female              10th grade   1.57  5.150919
## 10383            15 years old Female               9th grade   1.57  5.150919
## 10384            16 years old   Male              11th grade   1.98  6.496063
## 10385            16 years old   Male              10th grade   1.70  5.577428
## 10386            14 years old Female               9th grade   1.60  5.249344
## 10387            15 years old Female               9th grade   1.52  4.986877
## 10388            15 years old Female               9th grade   1.52  4.986877
## 10389            15 years old   Male               9th grade   1.88  6.167979
## 10390            15 years old Female               9th grade   1.60  5.249344
## 10391            15 years old   Male               9th grade   1.70  5.577428
## 10392            15 years old   Male               9th grade   1.65  5.413386
## 10393            14 years old Female               9th grade   1.50  4.921260
## 10394            15 years old   Male               9th grade   1.80  5.905512
## 10395            15 years old   Male              10th grade   1.80  5.905512
## 10396            15 years old Female              10th grade   1.65  5.413386
## 10397            15 years old Female               9th grade     NA        NA
## 10398            15 years old Female               9th grade     NA        NA
## 10399            16 years old Female              10th grade   1.60  5.249344
## 10400            16 years old   Male              10th grade   1.80  5.905512
## 10401            15 years old   Male              10th grade   1.75  5.741470
## 10402            15 years old   Male               9th grade   1.73  5.675853
## 10403            14 years old Female               9th grade   1.57  5.150919
## 10404            16 years old   Male              10th grade   1.78  5.839895
## 10405            16 years old Female              10th grade   1.65  5.413386
## 10406            16 years old   Male              10th grade   1.78  5.839895
## 10407            16 years old   Male              10th grade   1.78  5.839895
## 10408            16 years old Female              10th grade   1.80  5.905512
## 10409            16 years old   Male              10th grade   1.83  6.003937
## 10410            15 years old Female              10th grade     NA        NA
## 10411            16 years old Female              10th grade   1.65  5.413386
## 10412            14 years old Female               9th grade   1.70  5.577428
## 10413            16 years old   Male              10th grade   1.83  6.003937
## 10414            15 years old   Male              10th grade   1.78  5.839895
## 10415            14 years old Female               9th grade   1.57  5.150919
## 10416            14 years old   Male               9th grade   1.75  5.741470
## 10417            15 years old   Male               9th grade   1.73  5.675853
## 10418            15 years old Female              10th grade   1.55  5.085302
## 10419            16 years old   Male                    <NA>   1.83  6.003937
## 10420            14 years old   Male               9th grade   1.75  5.741470
## 10421            16 years old Female              10th grade   1.68  5.511811
## 10422            16 years old   Male              10th grade   1.75  5.741470
## 10423            15 years old   Male               9th grade   1.68  5.511811
## 10424            15 years old   Male               9th grade   1.70  5.577428
## 10425            16 years old Female              10th grade   1.68  5.511811
## 10426            16 years old Female              10th grade   1.57  5.150919
## 10427            15 years old Female              10th grade   1.60  5.249344
## 10428            14 years old   Male               9th grade   1.68  5.511811
## 10429            16 years old   Male              10th grade   1.85  6.069554
## 10430            14 years old   Male               9th grade   1.57  5.150919
## 10431            16 years old   Male              10th grade   1.55  5.085302
## 10432            14 years old   Male               9th grade   1.73  5.675853
## 10433            16 years old Female              10th grade   1.63  5.347769
## 10434            15 years old Female               9th grade   1.55  5.085302
## 10435            16 years old Female              10th grade   1.55  5.085302
## 10436            14 years old Female               9th grade   1.60  5.249344
## 10437            15 years old   Male               9th grade   1.80  5.905512
## 10438            15 years old Female               9th grade     NA        NA
## 10439            16 years old   Male              10th grade   1.85  6.069554
## 10440            14 years old   Male               9th grade   1.63  5.347769
## 10441            16 years old   Male              10th grade   1.90  6.233596
## 10442            16 years old Female              10th grade   1.60  5.249344
## 10443            14 years old Female               9th grade   1.55  5.085302
## 10444            15 years old Female               9th grade   1.68  5.511811
## 10445            16 years old Female              10th grade   1.75  5.741470
## 10446            14 years old Female               9th grade   1.60  5.249344
## 10447            17 years old   Male              11th grade   1.65  5.413386
## 10448            17 years old   Male              11th grade   1.73  5.675853
## 10449            17 years old Female              12th grade   1.57  5.150919
## 10450            17 years old Female              11th grade     NA        NA
## 10451            17 years old   Male              11th grade   1.85  6.069554
## 10452            16 years old   Male              11th grade   1.83  6.003937
## 10453   18 years old or older Female              12th grade   1.73  5.675853
## 10454   18 years old or older   Male              12th grade   1.78  5.839895
## 10455            17 years old   Male              12th grade   1.68  5.511811
## 10456            17 years old Female              11th grade   1.63  5.347769
## 10457            17 years old   Male              12th grade   1.73  5.675853
## 10458            16 years old Female              11th grade   1.60  5.249344
## 10459            17 years old Female              11th grade     NA        NA
## 10460   18 years old or older   Male              12th grade   1.83  6.003937
## 10461            17 years old Female              11th grade     NA        NA
## 10462            17 years old Female              12th grade   1.68  5.511811
## 10463   18 years old or older   Male              12th grade   1.88  6.167979
## 10464   18 years old or older Female              12th grade   1.65  5.413386
## 10465   18 years old or older Female              12th grade   1.68  5.511811
## 10466            17 years old   Male              12th grade   1.78  5.839895
## 10467   18 years old or older   Male              12th grade   1.78  5.839895
## 10468            16 years old Female              10th grade   1.60  5.249344
## 10469            17 years old Female              11th grade   1.78  5.839895
## 10470            17 years old   Male              12th grade   1.65  5.413386
## 10471   18 years old or older Female              12th grade   1.65  5.413386
## 10472            17 years old   Male              11th grade   1.73  5.675853
## 10473            17 years old   Male              11th grade   1.88  6.167979
## 10474            16 years old   Male              11th grade   1.78  5.839895
## 10475   18 years old or older Female              11th grade     NA        NA
## 10476            17 years old Female              11th grade   1.60  5.249344
## 10477            17 years old Female              11th grade   1.65  5.413386
## 10478            16 years old Female              11th grade   1.73  5.675853
## 10479            17 years old   Male              11th grade   1.80  5.905512
## 10480   18 years old or older   Male              12th grade   1.85  6.069554
## 10481   18 years old or older Female              11th grade   1.60  5.249344
## 10482            17 years old   Male              11th grade   1.73  5.675853
## 10483   18 years old or older   Male              12th grade   1.75  5.741470
## 10484            17 years old   Male              11th grade   1.75  5.741470
## 10485   18 years old or older Female              12th grade   1.65  5.413386
## 10486            16 years old Female              11th grade   1.65  5.413386
## 10487   18 years old or older   Male              12th grade   1.70  5.577428
## 10488            17 years old   Male              11th grade   1.78  5.839895
## 10489            17 years old Female              12th grade   1.63  5.347769
## 10490            17 years old   Male              12th grade   1.75  5.741470
## 10491            16 years old   Male              11th grade   1.70  5.577428
## 10492            17 years old   Male              12th grade   1.80  5.905512
## 10493            16 years old Female              11th grade   1.68  5.511811
## 10494            16 years old Female              11th grade   1.52  4.986877
## 10495            17 years old   Male              12th grade   1.80  5.905512
## 10496            16 years old Female              10th grade   1.65  5.413386
## 10497            15 years old Female              10th grade   1.68  5.511811
## 10498            17 years old   Male              10th grade   1.75  5.741470
## 10499            16 years old Female              10th grade   1.68  5.511811
## 10500            16 years old Female              10th grade   1.60  5.249344
## 10501            15 years old   Male              10th grade   1.70  5.577428
## 10502            15 years old Female              10th grade   1.65  5.413386
## 10503            15 years old Female              10th grade   1.63  5.347769
## 10504            17 years old   Male              11th grade   1.90  6.233596
## 10505            15 years old Female              10th grade   1.68  5.511811
## 10506            15 years old Female               9th grade   1.60  5.249344
## 10507            15 years old   Male               9th grade   1.75  5.741470
## 10508            15 years old   Male               9th grade   1.83  6.003937
## 10509            15 years old   Male               9th grade   1.83  6.003937
## 10510            15 years old   Male               9th grade   1.88  6.167979
## 10511            16 years old   Male              10th grade   1.75  5.741470
## 10512            16 years old   Male               9th grade   1.68  5.511811
## 10513            16 years old   Male              10th grade   1.80  5.905512
## 10514            17 years old   Male              11th grade   1.65  5.413386
## 10515            17 years old   Male              11th grade   1.70  5.577428
## 10516            15 years old   Male               9th grade   1.70  5.577428
## 10517            17 years old   Male              10th grade   1.73  5.675853
## 10518            15 years old   Male               9th grade   1.85  6.069554
## 10519            16 years old Female              10th grade   1.55  5.085302
## 10520   18 years old or older Female              12th grade   1.55  5.085302
## 10521            14 years old Female               9th grade   1.55  5.085302
## 10522            16 years old Female              10th grade   1.80  5.905512
## 10523            16 years old Female              10th grade   1.50  4.921260
## 10524            16 years old   Male              10th grade   1.73  5.675853
## 10525            15 years old   Male               9th grade   1.70  5.577428
## 10526            14 years old Female               9th grade     NA        NA
## 10527            15 years old   Male               9th grade   1.75  5.741470
## 10528            17 years old Female              11th grade   1.60  5.249344
## 10529            17 years old Female              12th grade   1.63  5.347769
## 10530            15 years old   <NA>              10th grade     NA        NA
## 10531            17 years old   Male              11th grade   1.73  5.675853
## 10532   18 years old or older   Male              12th grade   1.80  5.905512
## 10533            17 years old   Male              11th grade   1.78  5.839895
## 10534            17 years old Female              11th grade     NA        NA
## 10535   18 years old or older   Male              12th grade   1.96  6.430446
## 10536            17 years old   Male              12th grade   1.80  5.905512
## 10537            17 years old Female              11th grade   1.50  4.921260
## 10538            15 years old   Male               9th grade   1.73  5.675853
## 10539            15 years old   Male              10th grade   1.78  5.839895
## 10540            14 years old Female               9th grade   1.60  5.249344
## 10541            15 years old   Male               9th grade   1.83  6.003937
## 10542            15 years old Female               9th grade   1.63  5.347769
## 10543            15 years old Female               9th grade   1.57  5.150919
## 10544            15 years old Female                    <NA>   1.60  5.249344
## 10545            15 years old   Male              10th grade   1.78  5.839895
## 10546            14 years old   Male               9th grade   1.78  5.839895
## 10547            15 years old   Male               9th grade   1.75  5.741470
## 10548            15 years old Female               9th grade   1.60  5.249344
## 10549            15 years old Female               9th grade   1.65  5.413386
## 10550            14 years old Female               9th grade   1.65  5.413386
## 10551            15 years old Female               9th grade   1.73  5.675853
## 10552            14 years old   Male               9th grade   1.70  5.577428
## 10553            14 years old   Male               9th grade   1.75  5.741470
## 10554            14 years old Female               9th grade   1.55  5.085302
## 10555            14 years old   Male               9th grade   1.68  5.511811
## 10556            17 years old   Male              10th grade   1.80  5.905512
## 10557            16 years old Female              10th grade   1.68  5.511811
## 10558            16 years old Female              11th grade   1.70  5.577428
## 10559   18 years old or older Female              12th grade   1.57  5.150919
## 10560   18 years old or older Female              12th grade   1.60  5.249344
## 10561            16 years old Female              10th grade   1.68  5.511811
## 10562            15 years old Female              10th grade   1.60  5.249344
## 10563            17 years old Female              11th grade   1.70  5.577428
## 10564            16 years old Female              10th grade     NA        NA
## 10565   18 years old or older   Male              12th grade   1.80  5.905512
## 10566            17 years old Female              11th grade   1.60  5.249344
## 10567            16 years old Female              11th grade   1.57  5.150919
## 10568            17 years old   Male              11th grade   1.78  5.839895
## 10569            17 years old Female              11th grade     NA        NA
## 10570            16 years old Female              11th grade     NA        NA
## 10571            17 years old   Male              11th grade   1.90  6.233596
## 10572            17 years old Female              11th grade   1.63  5.347769
## 10573            17 years old Female              11th grade   1.68  5.511811
## 10574            16 years old Female              11th grade   1.78  5.839895
## 10575            16 years old   Male              10th grade     NA        NA
## 10576            16 years old Female              10th grade   1.80  5.905512
## 10577            15 years old Female              10th grade     NA        NA
## 10578            16 years old Female              10th grade   1.63  5.347769
## 10579            15 years old Female              10th grade   1.63  5.347769
## 10580            15 years old Female              10th grade   1.57  5.150919
## 10581            16 years old   Male              10th grade   1.78  5.839895
## 10582            16 years old Female              10th grade   1.60  5.249344
## 10583            16 years old   Male              10th grade   1.70  5.577428
## 10584            16 years old   Male              10th grade   1.80  5.905512
## 10585            15 years old   Male              10th grade   1.83  6.003937
## 10586            15 years old   Male               9th grade   1.73  5.675853
## 10587            14 years old Female               9th grade     NA        NA
## 10588            14 years old Female               9th grade   1.57  5.150919
## 10589            14 years old   Male               9th grade   1.70  5.577428
## 10590            15 years old   Male               9th grade   1.83  6.003937
## 10591            15 years old Female               9th grade   1.47  4.822835
## 10592            15 years old Female               9th grade   1.75  5.741470
## 10593            15 years old Female               9th grade     NA        NA
## 10594            14 years old   Male               9th grade   1.83  6.003937
## 10595            15 years old   Male               9th grade   1.73  5.675853
## 10596            14 years old Female               9th grade     NA        NA
## 10597            14 years old Female               9th grade   1.70  5.577428
## 10598            14 years old   Male               9th grade   1.83  6.003937
## 10599            16 years old   Male               9th grade   1.75  5.741470
## 10600            14 years old Female               9th grade     NA        NA
## 10601            15 years old Female               9th grade   1.52  4.986877
## 10602            16 years old   Male               9th grade   1.85  6.069554
## 10603            15 years old Female               9th grade   1.57  5.150919
## 10604            14 years old   Male               9th grade   1.78  5.839895
## 10605            16 years old   Male               9th grade   1.75  5.741470
## 10606            16 years old   Male               9th grade   1.75  5.741470
## 10607            16 years old Female              10th grade   1.57  5.150919
## 10608            15 years old   Male               9th grade   1.78  5.839895
## 10609            14 years old Female               9th grade   1.65  5.413386
## 10610            14 years old Female               9th grade     NA        NA
## 10611            14 years old Female                    <NA>   1.68  5.511811
## 10612            16 years old Female               9th grade   1.68  5.511811
## 10613            15 years old Female               9th grade   1.83  6.003937
## 10614            14 years old   Male               9th grade     NA        NA
## 10615            15 years old Female               9th grade   1.65  5.413386
## 10616            15 years old Female              10th grade   1.65  5.413386
## 10617            17 years old   Male              10th grade   1.80  5.905512
## 10618            16 years old   Male              10th grade   1.75  5.741470
## 10619            15 years old   Male              10th grade   1.83  6.003937
## 10620            17 years old Female              11th grade   1.63  5.347769
## 10621            15 years old Female              10th grade   1.70  5.577428
## 10622            16 years old Female              10th grade   1.80  5.905512
## 10623   18 years old or older   Male              11th grade   1.90  6.233596
## 10624   18 years old or older   Male              12th grade   1.73  5.675853
## 10625            15 years old Female              10th grade   1.57  5.150919
## 10626            16 years old Female              11th grade   1.50  4.921260
## 10627            17 years old Female              11th grade   1.60  5.249344
## 10628            15 years old Female              10th grade   1.70  5.577428
## 10629            16 years old   Male              11th grade   1.73  5.675853
## 10630            16 years old Female              10th grade   1.68  5.511811
## 10631            15 years old   Male              10th grade   1.75  5.741470
## 10632            16 years old   Male              10th grade   1.73  5.675853
## 10633            16 years old   Male              10th grade   1.83  6.003937
## 10634            15 years old   Male               9th grade   1.65  5.413386
## 10635            15 years old   Male               9th grade   1.78  5.839895
## 10636            17 years old Female              10th grade   1.78  5.839895
## 10637            16 years old   Male              10th grade     NA        NA
## 10638 12 years old or younger Female Ungraded or other grade     NA        NA
## 10639            16 years old Female              10th grade   1.50  4.921260
## 10640            15 years old   Male              10th grade   1.73  5.675853
## 10641            16 years old Female              11th grade   1.57  5.150919
## 10642            14 years old   Male               9th grade     NA        NA
## 10643            16 years old   Male              10th grade   1.85  6.069554
## 10644            16 years old Female              10th grade   1.63  5.347769
## 10645            17 years old   Male              10th grade   1.88  6.167979
## 10646            15 years old Female               9th grade   1.73  5.675853
## 10647            16 years old   Male              10th grade   1.65  5.413386
## 10648            15 years old   Male               9th grade   1.83  6.003937
## 10649            15 years old   Male               9th grade   1.75  5.741470
## 10650            17 years old   Male              10th grade   1.88  6.167979
## 10651            15 years old   Male               9th grade   1.78  5.839895
## 10652            15 years old   Male               9th grade   1.83  6.003937
## 10653            15 years old Female               9th grade   1.57  5.150919
## 10654            14 years old Female               9th grade   1.63  5.347769
## 10655            15 years old Female               9th grade   1.55  5.085302
## 10656            15 years old   Male               9th grade   1.73  5.675853
## 10657            14 years old Female               9th grade   1.70  5.577428
## 10658            16 years old Female              10th grade   1.57  5.150919
## 10659            14 years old Female               9th grade   1.57  5.150919
## 10660            15 years old   Male               9th grade   1.78  5.839895
## 10661            14 years old   Male               9th grade   1.65  5.413386
## 10662            16 years old   Male               9th grade   1.83  6.003937
## 10663            14 years old Female               9th grade   1.73  5.675853
## 10664            14 years old Female               9th grade   1.57  5.150919
## 10665            14 years old Female               9th grade   1.60  5.249344
## 10666            15 years old   Male               9th grade   1.70  5.577428
## 10667            14 years old   Male               9th grade   1.68  5.511811
## 10668            17 years old Female              11th grade   1.52  4.986877
## 10669            15 years old Female              10th grade   1.65  5.413386
## 10670            15 years old Female              10th grade   1.52  4.986877
## 10671            16 years old Female              10th grade   1.63  5.347769
## 10672            16 years old Female              10th grade   1.68  5.511811
## 10673            16 years old   Male              10th grade   1.75  5.741470
## 10674            15 years old   Male              10th grade   1.78  5.839895
## 10675            16 years old   Male              10th grade   1.83  6.003937
## 10676            16 years old Female              10th grade   1.60  5.249344
## 10677            16 years old   Male              10th grade   1.85  6.069554
## 10678            16 years old Female              10th grade   1.68  5.511811
## 10679            17 years old Female              11th grade   1.57  5.150919
## 10680            15 years old Female              10th grade   1.68  5.511811
## 10681            15 years old Female              10th grade   1.60  5.249344
## 10682            15 years old Female              10th grade   1.65  5.413386
## 10683            16 years old Female              10th grade   1.73  5.675853
## 10684            17 years old   Male              11th grade   1.73  5.675853
## 10685            16 years old   Male              10th grade   1.70  5.577428
## 10686            16 years old Female              10th grade     NA        NA
## 10687            17 years old   Male              11th grade   1.78  5.839895
## 10688            17 years old   Male              11th grade   1.78  5.839895
## 10689   18 years old or older   Male              11th grade   1.83  6.003937
## 10690            17 years old Female              11th grade   1.70  5.577428
## 10691            17 years old Female              11th grade   1.73  5.675853
## 10692            17 years old Female              12th grade   1.60  5.249344
## 10693            16 years old   Male              11th grade   1.83  6.003937
## 10694            17 years old Female              12th grade   1.57  5.150919
## 10695            17 years old Female              11th grade   1.63  5.347769
## 10696            16 years old   Male              11th grade   1.63  5.347769
## 10697   18 years old or older   Male              12th grade   1.83  6.003937
## 10698            17 years old Female              12th grade   1.63  5.347769
## 10699   18 years old or older Female              12th grade   1.55  5.085302
## 10700            17 years old   Male              11th grade   1.70  5.577428
## 10701            17 years old Female              11th grade   1.57  5.150919
## 10702   18 years old or older   Male              12th grade   1.88  6.167979
## 10703   18 years old or older   Male              11th grade   1.75  5.741470
## 10704            16 years old Female              11th grade     NA        NA
## 10705            16 years old Female              11th grade   1.70  5.577428
## 10706            17 years old   Male              11th grade   1.73  5.675853
## 10707            16 years old   Male              10th grade   1.98  6.496063
## 10708            16 years old   Male              11th grade   1.88  6.167979
## 10709            14 years old Female               9th grade   1.57  5.150919
## 10710            17 years old   Male              11th grade   1.65  5.413386
## 10711            17 years old Female              12th grade   1.68  5.511811
## 10712   18 years old or older Female              12th grade   1.68  5.511811
## 10713            17 years old   Male              12th grade   1.85  6.069554
## 10714   18 years old or older Female              12th grade   1.60  5.249344
## 10715   18 years old or older   Male              12th grade   1.78  5.839895
## 10716   18 years old or older Female              12th grade   1.65  5.413386
## 10717   18 years old or older Female              12th grade   1.63  5.347769
## 10718   18 years old or older Female              12th grade   1.57  5.150919
## 10719            17 years old Female              12th grade   1.75  5.741470
## 10720   18 years old or older   Male              12th grade   1.93  6.332021
## 10721   18 years old or older   Male              12th grade   1.75  5.741470
## 10722   18 years old or older Female              12th grade   1.73  5.675853
## 10723            17 years old Female              12th grade   1.73  5.675853
## 10724            17 years old Female              12th grade   1.60  5.249344
## 10725            17 years old Female              12th grade   1.60  5.249344
## 10726   18 years old or older Female              12th grade   1.75  5.741470
## 10727   18 years old or older   Male              12th grade   1.78  5.839895
## 10728   18 years old or older   Male              12th grade   1.83  6.003937
## 10729   18 years old or older Female              12th grade   1.55  5.085302
## 10730            17 years old Female              12th grade   1.60  5.249344
## 10731            17 years old Female              12th grade   1.55  5.085302
## 10732   18 years old or older   Male              12th grade   1.78  5.839895
## 10733   18 years old or older Female              12th grade   1.63  5.347769
## 10734            17 years old   Male              12th grade   1.70  5.577428
## 10735            17 years old Female              12th grade   1.73  5.675853
## 10736            17 years old   Male              12th grade   1.90  6.233596
## 10737   18 years old or older Female              12th grade   1.60  5.249344
## 10738            17 years old   Male              12th grade   1.80  5.905512
## 10739            17 years old Female              12th grade   1.55  5.085302
## 10740   18 years old or older   Male              12th grade   1.90  6.233596
## 10741            17 years old Female              12th grade   1.73  5.675853
## 10742   18 years old or older Female              12th grade   1.60  5.249344
## 10743            16 years old Female              11th grade   1.65  5.413386
## 10744            17 years old   Male              11th grade   1.85  6.069554
## 10745            17 years old   Male              11th grade   1.68  5.511811
## 10746            16 years old   Male              11th grade   1.83  6.003937
## 10747            17 years old Female              11th grade     NA        NA
## 10748            16 years old Female              11th grade   1.63  5.347769
## 10749            17 years old   Male              11th grade   1.70  5.577428
## 10750            16 years old Female              10th grade   1.57  5.150919
## 10751            16 years old   Male              10th grade   1.75  5.741470
## 10752            15 years old Female              10th grade     NA        NA
## 10753            15 years old   Male              10th grade   1.63  5.347769
## 10754            16 years old Female              10th grade   1.68  5.511811
## 10755            15 years old   Male              10th grade   2.01  6.594488
## 10756            15 years old Female              10th grade   1.65  5.413386
## 10757            15 years old Female              10th grade   1.60  5.249344
## 10758            16 years old   Male              10th grade   1.78  5.839895
## 10759            16 years old Female              10th grade   1.65  5.413386
## 10760            15 years old Female              10th grade   1.60  5.249344
## 10761            16 years old   Male              10th grade   1.75  5.741470
## 10762            15 years old   Male              10th grade   1.78  5.839895
## 10763            15 years old Female              10th grade   1.60  5.249344
## 10764            15 years old   Male              10th grade   1.80  5.905512
## 10765            15 years old   Male              10th grade     NA        NA
## 10766            16 years old Female              10th grade   1.57  5.150919
## 10767            15 years old   Male              10th grade   1.65  5.413386
## 10768            15 years old   Male              10th grade     NA        NA
## 10769            15 years old Female              10th grade   1.52  4.986877
## 10770            16 years old Female              10th grade   1.60  5.249344
## 10771            15 years old   Male              10th grade   1.78  5.839895
## 10772            15 years old Female              10th grade   1.75  5.741470
## 10773            16 years old Female              10th grade   1.57  5.150919
## 10774            16 years old Female              10th grade   1.63  5.347769
## 10775            15 years old   Male              10th grade   1.88  6.167979
## 10776            16 years old   Male              10th grade   1.80  5.905512
## 10777            15 years old Female              10th grade   1.60  5.249344
## 10778            15 years old   Male              10th grade     NA        NA
## 10779   18 years old or older   Male              12th grade   1.78  5.839895
## 10780            16 years old   Male              10th grade   1.80  5.905512
## 10781            17 years old Female              12th grade   1.57  5.150919
## 10782            15 years old   Male              10th grade   1.85  6.069554
## 10783            16 years old   Male              11th grade   1.75  5.741470
## 10784            17 years old Female              11th grade   1.70  5.577428
## 10785            15 years old   Male              10th grade   1.80  5.905512
## 10786            15 years old   Male              10th grade   1.65  5.413386
## 10787            17 years old Female              11th grade   1.63  5.347769
## 10788   18 years old or older   Male              12th grade   1.83  6.003937
## 10789            16 years old Female              10th grade   1.65  5.413386
## 10790            15 years old   Male              10th grade   1.75  5.741470
## 10791            16 years old   Male              10th grade   1.80  5.905512
## 10792            17 years old   Male              12th grade   1.73  5.675853
## 10793            15 years old Female               9th grade   1.65  5.413386
## 10794            16 years old Female              11th grade   1.47  4.822835
## 10795            15 years old   Male              10th grade   1.70  5.577428
## 10796            15 years old Female              10th grade   1.68  5.511811
## 10797            15 years old   Male              10th grade   1.85  6.069554
## 10798            14 years old Female               9th grade   1.52  4.986877
## 10799            16 years old   Male              11th grade   1.78  5.839895
## 10800            15 years old Female               9th grade     NA        NA
## 10801            16 years old Female              10th grade     NA        NA
## 10802   18 years old or older   Male              12th grade   1.78  5.839895
## 10803            14 years old   Male               9th grade   1.65  5.413386
## 10804            15 years old Female              10th grade     NA        NA
## 10805            15 years old Female              10th grade   1.65  5.413386
## 10806            16 years old Female              10th grade   1.65  5.413386
## 10807            16 years old   Male              10th grade     NA        NA
## 10808            14 years old   Male               9th grade   1.60  5.249344
## 10809            16 years old   Male              10th grade     NA        NA
## 10810            14 years old   Male               9th grade   1.70  5.577428
## 10811            15 years old   Male               9th grade   1.75  5.741470
## 10812            15 years old Female               9th grade   1.60  5.249344
## 10813            16 years old   Male              10th grade   1.83  6.003937
## 10814            17 years old   Male              11th grade   1.80  5.905512
## 10815            15 years old   Male               9th grade   1.75  5.741470
## 10816            16 years old Female              10th grade   1.60  5.249344
## 10817            16 years old Female              11th grade   1.55  5.085302
## 10818            14 years old   Male               9th grade   1.63  5.347769
## 10819            16 years old Female              11th grade   1.65  5.413386
## 10820            17 years old Female              11th grade     NA        NA
## 10821            15 years old Female               9th grade   1.60  5.249344
## 10822            14 years old Female               9th grade     NA        NA
## 10823            14 years old Female               9th grade   1.52  4.986877
## 10824            15 years old Female              10th grade   1.57  5.150919
## 10825            16 years old Female              10th grade     NA        NA
## 10826            16 years old Female              10th grade   1.68  5.511811
## 10827            16 years old Female              10th grade   1.70  5.577428
## 10828            15 years old Female               9th grade     NA        NA
## 10829            15 years old Female               9th grade   1.63  5.347769
## 10830            15 years old Female              10th grade   1.55  5.085302
## 10831            16 years old Female              11th grade   1.60  5.249344
## 10832            15 years old Female              10th grade   1.63  5.347769
## 10833   18 years old or older Female              12th grade     NA        NA
## 10834            17 years old Female              11th grade     NA        NA
## 10835            15 years old Female               9th grade     NA        NA
## 10836            16 years old Female              10th grade   1.68  5.511811
## 10837            15 years old   Male               9th grade   1.75  5.741470
## 10838            17 years old   Male              11th grade   1.73  5.675853
## 10839            14 years old Female               9th grade     NA        NA
## 10840            15 years old   Male               9th grade   1.80  5.905512
## 10841            14 years old   Male               9th grade   1.73  5.675853
## 10842            14 years old Female               9th grade   1.57  5.150919
## 10843            14 years old   Male               9th grade   1.78  5.839895
## 10844            14 years old Female               9th grade   1.60  5.249344
## 10845            15 years old   Male               9th grade   1.80  5.905512
## 10846            14 years old   Male               9th grade   1.63  5.347769
## 10847            14 years old   Male               9th grade   1.83  6.003937
## 10848            14 years old Female               9th grade   1.60  5.249344
## 10849            14 years old Female               9th grade   1.70  5.577428
## 10850            15 years old   Male               9th grade   1.75  5.741470
## 10851            15 years old   Male               9th grade   1.70  5.577428
## 10852            14 years old   Male               9th grade   1.80  5.905512
## 10853            14 years old   Male               9th grade   1.73  5.675853
## 10854            15 years old   Male               9th grade   1.80  5.905512
## 10855            15 years old   Male              10th grade   1.73  5.675853
## 10856            15 years old Female              10th grade   1.65  5.413386
## 10857            15 years old   Male              10th grade   1.85  6.069554
## 10858            15 years old Female              10th grade   1.57  5.150919
## 10859            17 years old Female              10th grade   1.57  5.150919
## 10860            15 years old Female              10th grade   1.57  5.150919
## 10861            16 years old   Male              10th grade     NA        NA
## 10862            15 years old   Male              10th grade   1.83  6.003937
## 10863            15 years old   Male              10th grade   1.78  5.839895
## 10864            16 years old   Male              10th grade   1.83  6.003937
## 10865            16 years old   Male              10th grade   1.85  6.069554
## 10866            15 years old   Male              10th grade     NA        NA
## 10867            15 years old Female              10th grade   1.60  5.249344
## 10868            16 years old   Male              10th grade   1.73  5.675853
## 10869            15 years old   Male              10th grade   1.73  5.675853
## 10870            15 years old   Male              10th grade     NA        NA
## 10871            16 years old Female              11th grade     NA        NA
## 10872            17 years old Female              11th grade   1.57  5.150919
## 10873            16 years old Female              11th grade     NA        NA
## 10874            17 years old   Male              11th grade   1.68  5.511811
## 10875            16 years old Female              11th grade   1.52  4.986877
## 10876            17 years old   Male              11th grade   1.85  6.069554
## 10877            16 years old Female              11th grade   1.55  5.085302
## 10878            16 years old   Male              11th grade   1.70  5.577428
## 10879            16 years old   Male              11th grade   1.60  5.249344
## 10880   18 years old or older   Male              11th grade     NA        NA
## 10881            15 years old   Male              10th grade   1.68  5.511811
## 10882   18 years old or older   Male              12th grade   1.65  5.413386
## 10883            16 years old   Male              11th grade   1.73  5.675853
## 10884            16 years old   Male              11th grade   1.75  5.741470
## 10885            16 years old Female              10th grade   1.63  5.347769
## 10886            15 years old   Male              10th grade   1.83  6.003937
## 10887            16 years old Female              10th grade   1.57  5.150919
## 10888            17 years old   Male              11th grade   1.68  5.511811
## 10889            17 years old   Male              11th grade   1.80  5.905512
## 10890            16 years old Female              11th grade   1.57  5.150919
## 10891            17 years old Female              11th grade   1.55  5.085302
## 10892            16 years old   Male              10th grade   1.68  5.511811
## 10893            16 years old   Male              11th grade   1.65  5.413386
## 10894            15 years old Female              10th grade     NA        NA
## 10895            15 years old   Male              10th grade   1.75  5.741470
## 10896            15 years old Female              10th grade   1.55  5.085302
## 10897            16 years old Female              11th grade   1.70  5.577428
## 10898            16 years old   Male              11th grade   1.75  5.741470
## 10899            17 years old   Male              11th grade   1.75  5.741470
## 10900   18 years old or older Female                    <NA>   1.75  5.741470
## 10901            17 years old   Male              12th grade   1.70  5.577428
## 10902            17 years old Female              12th grade   1.52  4.986877
## 10903            17 years old   Male              12th grade   1.85  6.069554
## 10904            17 years old   Male              12th grade     NA        NA
## 10905            17 years old   Male              12th grade   1.78  5.839895
## 10906            17 years old   Male              12th grade   1.85  6.069554
## 10907   18 years old or older Female              12th grade   1.73  5.675853
## 10908   18 years old or older Female              12th grade   1.63  5.347769
## 10909            17 years old Female              12th grade   1.55  5.085302
## 10910   18 years old or older   Male              12th grade   1.70  5.577428
## 10911   18 years old or older   Male              12th grade     NA        NA
## 10912            17 years old   Male              12th grade   1.68  5.511811
## 10913            17 years old   Male              12th grade     NA        NA
## 10914            17 years old   Male              12th grade   1.73  5.675853
## 10915   18 years old or older   Male              12th grade   1.70  5.577428
## 10916            17 years old   Male              12th grade   1.83  6.003937
## 10917            17 years old Female              12th grade   1.57  5.150919
## 10918            17 years old   Male              12th grade   1.83  6.003937
## 10919            15 years old Female               9th grade   1.60  5.249344
## 10920            15 years old   Male               9th grade   1.57  5.150919
## 10921            15 years old Female               9th grade   1.65  5.413386
## 10922            15 years old Female               9th grade   1.70  5.577428
## 10923            15 years old   Male               9th grade   1.63  5.347769
## 10924            15 years old Female               9th grade   1.75  5.741470
## 10925            15 years old Female               9th grade   1.52  4.986877
## 10926            15 years old Female               9th grade   1.55  5.085302
## 10927            15 years old   Male               9th grade   1.70  5.577428
## 10928            15 years old Female               9th grade   1.68  5.511811
## 10929            15 years old   Male               9th grade   1.70  5.577428
## 10930            14 years old Female               9th grade   1.78  5.839895
## 10931            15 years old   Male               9th grade   1.63  5.347769
## 10932            15 years old   Male               9th grade   1.70  5.577428
## 10933            14 years old Female               9th grade   1.55  5.085302
## 10934            14 years old Female               9th grade     NA        NA
## 10935            15 years old   Male               9th grade   1.65  5.413386
## 10936            14 years old   Male               9th grade   1.63  5.347769
## 10937            15 years old   Male               9th grade   1.78  5.839895
## 10938            14 years old   Male               9th grade   1.73  5.675853
## 10939            16 years old   Male              11th grade   1.88  6.167979
## 10940            17 years old Female              11th grade   1.57  5.150919
## 10941            15 years old   Male              10th grade   1.83  6.003937
## 10942            16 years old Female              11th grade   1.57  5.150919
## 10943            16 years old   Male              11th grade   1.83  6.003937
## 10944            16 years old Female              10th grade   1.80  5.905512
## 10945            16 years old Female              10th grade     NA        NA
## 10946            15 years old   Male              10th grade   1.90  6.233596
## 10947            16 years old Female              11th grade   1.52  4.986877
## 10948            16 years old Female              11th grade     NA        NA
## 10949            16 years old   Male              10th grade   1.68  5.511811
## 10950            15 years old   Male              10th grade   1.85  6.069554
## 10951            16 years old   Male              10th grade   1.70  5.577428
## 10952            15 years old   Male              10th grade   1.80  5.905512
## 10953            15 years old Female              10th grade   1.52  4.986877
## 10954            15 years old Female              10th grade   1.70  5.577428
## 10955            17 years old   Male              12th grade   1.80  5.905512
## 10956            15 years old   Male              10th grade   1.70  5.577428
## 10957            17 years old Female              11th grade   1.73  5.675853
## 10958            16 years old   Male              11th grade   1.63  5.347769
## 10959            15 years old Female              10th grade   1.65  5.413386
## 10960            16 years old Female              10th grade   1.60  5.249344
## 10961            15 years old   Male               9th grade   1.55  5.085302
## 10962            15 years old Female               9th grade   1.68  5.511811
## 10963            14 years old   Male               9th grade   1.73  5.675853
## 10964            14 years old Female               9th grade   1.65  5.413386
## 10965            14 years old Female               9th grade   1.65  5.413386
## 10966            14 years old Female               9th grade   1.65  5.413386
## 10967            15 years old   Male               9th grade   1.65  5.413386
## 10968            15 years old   Male               9th grade   1.63  5.347769
## 10969            14 years old Female               9th grade   1.55  5.085302
## 10970            14 years old Female               9th grade   1.57  5.150919
## 10971            14 years old Female               9th grade     NA        NA
## 10972            15 years old   Male               9th grade   1.78  5.839895
## 10973            14 years old   Male               9th grade   1.60  5.249344
## 10974            14 years old   Male               9th grade   1.73  5.675853
## 10975            14 years old   Male               9th grade   1.73  5.675853
## 10976            14 years old   Male                    <NA>   1.73  5.675853
## 10977            14 years old Female               9th grade   1.60  5.249344
## 10978            15 years old Female               9th grade     NA        NA
## 10979            14 years old Female               9th grade   1.68  5.511811
## 10980            15 years old Female               9th grade   1.70  5.577428
## 10981            15 years old Female               9th grade   1.63  5.347769
## 10982            14 years old Female               9th grade   1.52  4.986877
## 10983            14 years old Female               9th grade   1.50  4.921260
## 10984            15 years old   Male               9th grade   1.65  5.413386
## 10985            14 years old   Male               9th grade   1.68  5.511811
## 10986            14 years old   Male               9th grade   1.73  5.675853
## 10987            14 years old Female               9th grade   1.52  4.986877
## 10988            15 years old   Male               9th grade   1.68  5.511811
## 10989            14 years old   Male               9th grade   1.70  5.577428
## 10990            15 years old Female               9th grade   1.73  5.675853
## 10991            14 years old   Male               9th grade   1.70  5.577428
## 10992            15 years old Female               9th grade     NA        NA
## 10993            14 years old Female               9th grade     NA        NA
## 10994            14 years old Female               9th grade   1.55  5.085302
## 10995            14 years old Female               9th grade   1.63  5.347769
## 10996            14 years old   Male               9th grade   1.73  5.675853
## 10997            15 years old Female               9th grade   1.65  5.413386
## 10998            15 years old Female               9th grade   1.63  5.347769
## 10999            14 years old Female               9th grade   1.57  5.150919
## 11000            15 years old Female               9th grade   1.63  5.347769
## 11001            14 years old Female               9th grade   1.63  5.347769
## 11002            15 years old Female               9th grade   1.52  4.986877
## 11003            15 years old Female               9th grade   1.65  5.413386
## 11004            14 years old Female               9th grade   1.73  5.675853
## 11005                    <NA> Female               9th grade     NA        NA
## 11006            14 years old   Male               9th grade   1.73  5.675853
## 11007            15 years old Female               9th grade   1.55  5.085302
## 11008            14 years old   Male               9th grade   1.68  5.511811
## 11009            14 years old   Male               9th grade   1.75  5.741470
## 11010            15 years old   Male               9th grade   1.83  6.003937
## 11011            15 years old   Male               9th grade   1.68  5.511811
## 11012            14 years old   Male               9th grade   1.65  5.413386
## 11013            14 years old   Male               9th grade   1.73  5.675853
## 11014                    <NA>   Male               9th grade     NA        NA
## 11015            14 years old   Male               9th grade   1.60  5.249344
## 11016            14 years old   Male               9th grade   1.80  5.905512
## 11017            14 years old   Male               9th grade   1.70  5.577428
## 11018            14 years old   Male               9th grade   1.65  5.413386
## 11019            15 years old Female               9th grade   1.57  5.150919
## 11020            14 years old   Male               9th grade   1.68  5.511811
## 11021            14 years old Female               9th grade   1.55  5.085302
## 11022            14 years old Female               9th grade   1.65  5.413386
## 11023            15 years old Female               9th grade   1.65  5.413386
## 11024            16 years old   Male              10th grade   1.75  5.741470
## 11025            16 years old Female              10th grade   1.50  4.921260
## 11026            15 years old Female              10th grade   1.52  4.986877
## 11027            16 years old Female              10th grade   1.60  5.249344
## 11028            15 years old Female              10th grade   1.68  5.511811
## 11029            16 years old   Male              10th grade   1.68  5.511811
## 11030            15 years old   Male              10th grade   1.65  5.413386
## 11031            16 years old Female              10th grade   1.52  4.986877
## 11032            15 years old   Male              10th grade   1.78  5.839895
## 11033            16 years old   Male              10th grade   1.73  5.675853
## 11034            15 years old   Male              10th grade   1.78  5.839895
## 11035            16 years old   Male              10th grade   1.73  5.675853
## 11036            16 years old   Male              10th grade   1.73  5.675853
## 11037            15 years old Female              10th grade   1.57  5.150919
## 11038            15 years old   Male              10th grade   1.78  5.839895
## 11039            16 years old   Male              10th grade   1.75  5.741470
## 11040            16 years old   Male              10th grade   1.78  5.839895
## 11041            16 years old   Male              10th grade   1.70  5.577428
## 11042            15 years old   Male              10th grade   1.80  5.905512
## 11043            15 years old   Male              10th grade   1.70  5.577428
## 11044            16 years old   Male              10th grade   1.75  5.741470
## 11045            16 years old Female              10th grade   1.55  5.085302
## 11046            16 years old Female              10th grade   1.42  4.658793
## 11047            15 years old Female              10th grade   1.50  4.921260
## 11048            15 years old Female              10th grade   1.57  5.150919
## 11049            16 years old Female              10th grade   1.63  5.347769
## 11050            16 years old Female              10th grade   1.65  5.413386
## 11051            15 years old Female              10th grade   1.55  5.085302
## 11052            16 years old   Male              10th grade   1.75  5.741470
## 11053            15 years old Female              10th grade   1.65  5.413386
## 11054            15 years old Female              10th grade     NA        NA
## 11055            15 years old Female              10th grade   1.60  5.249344
## 11056            14 years old Female               9th grade   1.52  4.986877
## 11057            15 years old Female               9th grade   1.45  4.757218
## 11058            14 years old Female               9th grade   1.52  4.986877
## 11059            15 years old Female               9th grade   1.52  4.986877
## 11060            14 years old   Male               9th grade   1.63  5.347769
## 11061            17 years old Female              11th grade   1.52  4.986877
## 11062            16 years old Female              11th grade   1.70  5.577428
## 11063            16 years old Female              11th grade   1.63  5.347769
## 11064            17 years old Female              11th grade   1.52  4.986877
## 11065            16 years old Female              11th grade   1.52  4.986877
## 11066            16 years old Female              11th grade   1.63  5.347769
## 11067            17 years old Female              11th grade   1.65  5.413386
## 11068            16 years old   Male              11th grade   1.65  5.413386
## 11069            16 years old Female              11th grade   1.65  5.413386
## 11070            17 years old Female              11th grade   1.63  5.347769
## 11071            17 years old   Male              11th grade   1.70  5.577428
## 11072            17 years old Female              11th grade   1.52  4.986877
## 11073            14 years old   Male               9th grade   1.55  5.085302
## 11074            15 years old   Male               9th grade   1.70  5.577428
## 11075            14 years old   Male               9th grade   1.83  6.003937
## 11076            14 years old Female               9th grade   1.50  4.921260
## 11077            14 years old Female               9th grade   1.45  4.757218
## 11078            15 years old Female               9th grade   1.50  4.921260
## 11079            15 years old Female               9th grade   1.63  5.347769
## 11080            14 years old   <NA>               9th grade     NA        NA
## 11081            14 years old Female               9th grade   1.52  4.986877
## 11082            14 years old Female               9th grade   1.55  5.085302
## 11083            14 years old Female               9th grade   1.57  5.150919
## 11084            15 years old Female               9th grade   1.57  5.150919
## 11085            14 years old Female               9th grade   1.65  5.413386
## 11086            15 years old Female               9th grade   1.68  5.511811
## 11087            15 years old   Male               9th grade   1.63  5.347769
## 11088            16 years old   Male              10th grade   1.80  5.905512
## 11089            15 years old   Male              10th grade   1.83  6.003937
## 11090            16 years old Female              10th grade   1.55  5.085302
## 11091            17 years old Female              11th grade   1.55  5.085302
## 11092            15 years old Female               9th grade   1.68  5.511811
## 11093            16 years old   Male              10th grade   1.73  5.675853
## 11094            16 years old   Male              10th grade   1.78  5.839895
## 11095            15 years old Female              10th grade   1.70  5.577428
## 11096            15 years old   Male              10th grade   1.63  5.347769
## 11097            16 years old Female              10th grade   1.47  4.822835
## 11098            15 years old Female              10th grade   1.55  5.085302
## 11099            16 years old   Male              10th grade   1.65  5.413386
## 11100            16 years old   Male               9th grade   1.88  6.167979
## 11101            16 years old   Male              10th grade   1.73  5.675853
## 11102            16 years old   Male              10th grade   1.78  5.839895
## 11103            15 years old   Male              10th grade   1.60  5.249344
## 11104            16 years old   Male              10th grade   1.83  6.003937
## 11105            15 years old Female              10th grade   1.65  5.413386
## 11106            15 years old   Male              10th grade   1.73  5.675853
## 11107            16 years old   Male              10th grade   1.75  5.741470
## 11108            16 years old   Male              10th grade   1.90  6.233596
## 11109            15 years old Female              10th grade   1.57  5.150919
## 11110            15 years old   Male              10th grade   1.68  5.511811
## 11111            15 years old   Male              10th grade   1.78  5.839895
## 11112            15 years old   Male              10th grade   1.68  5.511811
## 11113            16 years old   Male              10th grade     NA        NA
## 11114            16 years old Female              10th grade   1.55  5.085302
## 11115            16 years old   Male              10th grade   1.73  5.675853
## 11116            16 years old Female              10th grade   1.65  5.413386
## 11117            15 years old Female              10th grade   1.63  5.347769
## 11118            17 years old Female              11th grade   1.60  5.249344
## 11119            17 years old Female              11th grade   1.63  5.347769
## 11120            17 years old   Male              11th grade   1.85  6.069554
## 11121            17 years old Female              11th grade   1.65  5.413386
## 11122            17 years old Female              11th grade   1.63  5.347769
## 11123            17 years old   Male              11th grade   1.80  5.905512
## 11124            17 years old   Male              11th grade   1.80  5.905512
## 11125            17 years old   Male              11th grade   1.68  5.511811
## 11126            16 years old   Male              11th grade   1.57  5.150919
## 11127            16 years old   Male              10th grade   1.75  5.741470
## 11128            16 years old   Male              10th grade   1.78  5.839895
## 11129            16 years old   Male              10th grade   1.96  6.430446
## 11130            15 years old   Male              10th grade   1.70  5.577428
## 11131            16 years old Female              10th grade   1.57  5.150919
## 11132            16 years old Female              10th grade   1.57  5.150919
## 11133            16 years old Female              10th grade   1.60  5.249344
## 11134            15 years old Female              10th grade   1.50  4.921260
## 11135            16 years old   Male              10th grade   1.68  5.511811
## 11136            16 years old   Male              10th grade   1.85  6.069554
## 11137            15 years old Female               9th grade   1.70  5.577428
## 11138            15 years old Female               9th grade   1.57  5.150919
## 11139            14 years old Female               9th grade   1.57  5.150919
## 11140            15 years old   Male               9th grade   1.57  5.150919
## 11141            15 years old   Male               9th grade   1.68  5.511811
## 11142                    <NA>   Male               9th grade     NA        NA
## 11143            15 years old   Male               9th grade   1.68  5.511811
## 11144            15 years old   Male               9th grade   1.75  5.741470
## 11145            15 years old Female               9th grade   1.68  5.511811
## 11146            17 years old   Male              11th grade   1.83  6.003937
## 11147            17 years old Female              11th grade   1.60  5.249344
## 11148            17 years old Female              11th grade   1.63  5.347769
## 11149            17 years old Female              11th grade   1.70  5.577428
## 11150            16 years old Female              11th grade   1.75  5.741470
## 11151            16 years old   Male              11th grade   1.75  5.741470
## 11152            17 years old   Male              11th grade   1.78  5.839895
## 11153            17 years old   Male              11th grade   1.78  5.839895
## 11154   18 years old or older   Male              12th grade   1.88  6.167979
## 11155   18 years old or older   Male              12th grade   1.85  6.069554
## 11156   18 years old or older   Male              12th grade   1.80  5.905512
## 11157            17 years old Female              12th grade   1.50  4.921260
## 11158            16 years old Female              12th grade   1.65  5.413386
## 11159            17 years old Female              12th grade   1.73  5.675853
## 11160   18 years old or older   Male              12th grade   1.78  5.839895
## 11161            17 years old Female              12th grade   1.63  5.347769
## 11162            17 years old   Male              12th grade   1.78  5.839895
## 11163            17 years old   Male              12th grade   1.83  6.003937
## 11164            17 years old   Male              12th grade   1.88  6.167979
## 11165            17 years old Female              11th grade   1.42  4.658793
## 11166            17 years old Female              11th grade   1.60  5.249344
## 11167            17 years old Female              11th grade   1.63  5.347769
## 11168            16 years old   Male              11th grade   1.80  5.905512
## 11169            17 years old   Male              11th grade   1.96  6.430446
## 11170            16 years old   Male              11th grade   1.70  5.577428
## 11171            17 years old Female              11th grade   1.65  5.413386
## 11172            17 years old Female              11th grade   1.68  5.511811
## 11173            17 years old Female              11th grade   1.50  4.921260
## 11174            16 years old Female              11th grade     NA        NA
## 11175            16 years old   Male              11th grade   1.85  6.069554
## 11176            17 years old   Male              11th grade   1.73  5.675853
## 11177            16 years old   Male              11th grade   1.65  5.413386
## 11178            17 years old   Male              11th grade   1.75  5.741470
## 11179   18 years old or older   Male              12th grade   1.73  5.675853
## 11180            16 years old Female              11th grade   1.50  4.921260
## 11181            16 years old Female              11th grade   1.50  4.921260
## 11182            14 years old Female               9th grade   1.65  5.413386
## 11183            15 years old   Male Ungraded or other grade   1.73  5.675853
## 11184            16 years old Female              10th grade   1.63  5.347769
## 11185            17 years old   Male              11th grade   1.83  6.003937
## 11186            16 years old   Male              10th grade   1.70  5.577428
## 11187            16 years old   Male              10th grade   1.63  5.347769
## 11188            16 years old Female              10th grade   1.52  4.986877
## 11189            17 years old   Male              11th grade   1.70  5.577428
## 11190            17 years old   Male              11th grade     NA        NA
## 11191                    <NA>   Male              11th grade     NA        NA
## 11192            16 years old Female              11th grade   1.50  4.921260
## 11193            17 years old   Male              10th grade   1.73  5.675853
## 11194            16 years old   Male              10th grade   1.73  5.675853
## 11195            17 years old Female              10th grade     NA        NA
## 11196            15 years old   Male               9th grade   1.65  5.413386
## 11197            17 years old Female              11th grade   1.65  5.413386
## 11198            16 years old   Male              11th grade   1.65  5.413386
## 11199            13 years old Female              11th grade   1.60  5.249344
## 11200            13 years old   Male               9th grade   1.88  6.167979
## 11201            15 years old   Male              11th grade   1.80  5.905512
## 11202 12 years old or younger   Male               9th grade   1.65  5.413386
## 11203            13 years old   <NA>              11th grade     NA        NA
## 11204 12 years old or younger Female               9th grade   1.75  5.741470
## 11205            15 years old   Male              10th grade   1.73  5.675853
## 11206            16 years old   Male              11th grade   1.88  6.167979
## 11207            17 years old Female              12th grade   1.60  5.249344
## 11208            16 years old Female              11th grade   1.42  4.658793
## 11209   18 years old or older Female              12th grade   1.75  5.741470
## 11210            16 years old   Male              11th grade   1.65  5.413386
## 11211            16 years old   Male              11th grade   1.75  5.741470
## 11212            15 years old Female              10th grade   1.63  5.347769
## 11213            15 years old   Male              10th grade   1.73  5.675853
## 11214            17 years old Female              10th grade   1.55  5.085302
## 11215            16 years old Female              11th grade   1.57  5.150919
## 11216            13 years old   <NA>               9th grade     NA        NA
## 11217            13 years old   <NA>               9th grade     NA        NA
## 11218            13 years old   <NA>              10th grade     NA        NA
## 11219            16 years old Female               9th grade     NA        NA
## 11220            14 years old   Male               9th grade   1.68  5.511811
## 11221            15 years old   Male              10th grade     NA        NA
## 11222            16 years old   Male              11th grade   1.78  5.839895
## 11223            16 years old   Male              11th grade   1.68  5.511811
## 11224            16 years old   <NA>                    <NA>     NA        NA
## 11225            17 years old   Male               9th grade   1.65  5.413386
## 11226            17 years old   Male              11th grade     NA        NA
## 11227            17 years old Female              11th grade   1.52  4.986877
## 11228            17 years old Female              11th grade   1.60  5.249344
## 11229            16 years old Female              11th grade   1.57  5.150919
## 11230            16 years old Female              11th grade   1.68  5.511811
## 11231            15 years old Female              10th grade   1.57  5.150919
## 11232            16 years old   Male              10th grade   1.75  5.741470
## 11233            16 years old   Male              10th grade   1.65  5.413386
## 11234            16 years old   Male              11th grade   1.80  5.905512
## 11235            15 years old Female               9th grade   1.60  5.249344
## 11236            17 years old Female              11th grade   1.68  5.511811
## 11237            16 years old   Male              11th grade   1.55  5.085302
## 11238            16 years old Female              11th grade   1.57  5.150919
## 11239            14 years old   Male               9th grade   1.80  5.905512
## 11240            17 years old   Male              11th grade   1.75  5.741470
## 11241            17 years old   Male              11th grade   1.80  5.905512
## 11242            17 years old   Male              11th grade   1.70  5.577428
## 11243   18 years old or older Female              11th grade   1.73  5.675853
## 11244            16 years old Female              10th grade   1.55  5.085302
## 11245            16 years old   Male              10th grade   1.80  5.905512
## 11246            14 years old Female               9th grade   1.60  5.249344
## 11247            15 years old Female               9th grade   1.60  5.249344
## 11248            15 years old Female              10th grade   1.57  5.150919
## 11249            15 years old Female               9th grade   1.57  5.150919
## 11250            14 years old Female               9th grade   1.63  5.347769
## 11251            14 years old Female               9th grade   1.63  5.347769
## 11252            15 years old Female               9th grade   1.57  5.150919
## 11253            16 years old Female               9th grade   1.70  5.577428
## 11254 12 years old or younger   Male Ungraded or other grade   1.55  5.085302
## 11255            15 years old Female               9th grade   1.50  4.921260
## 11256            13 years old   <NA> Ungraded or other grade     NA        NA
## 11257            15 years old Female               9th grade   1.52  4.986877
## 11258            17 years old Female              11th grade   1.55  5.085302
## 11259            17 years old Female              12th grade   1.52  4.986877
## 11260   18 years old or older   Male              12th grade   1.68  5.511811
## 11261            17 years old   Male              12th grade   1.73  5.675853
## 11262            16 years old   Male              11th grade   1.68  5.511811
## 11263            14 years old   Male               9th grade   1.68  5.511811
## 11264   18 years old or older Female              11th grade   1.63  5.347769
## 11265            17 years old   Male              11th grade   1.78  5.839895
## 11266            17 years old   Male              11th grade   1.70  5.577428
## 11267   18 years old or older Female              12th grade   1.57  5.150919
## 11268            16 years old   Male              11th grade   1.68  5.511811
## 11269            16 years old Female              11th grade   1.63  5.347769
## 11270            17 years old Female              11th grade   1.68  5.511811
## 11271            16 years old Female              10th grade   1.57  5.150919
## 11272            16 years old   Male              11th grade   1.83  6.003937
## 11273            15 years old Female              10th grade     NA        NA
## 11274   18 years old or older Female              12th grade   1.57  5.150919
## 11275   18 years old or older Female              12th grade   1.65  5.413386
## 11276            15 years old   Male              10th grade   1.68  5.511811
## 11277            16 years old Female              11th grade   1.47  4.822835
## 11278   18 years old or older   Male              12th grade   1.70  5.577428
## 11279            15 years old   Male               9th grade   1.70  5.577428
## 11280            15 years old Female              10th grade   1.70  5.577428
## 11281            16 years old   Male              10th grade   1.68  5.511811
## 11282            15 years old Female              10th grade   1.52  4.986877
## 11283            16 years old   Male              10th grade   1.65  5.413386
## 11284            16 years old Female              10th grade   1.50  4.921260
## 11285            16 years old Female              11th grade   1.68  5.511811
## 11286   18 years old or older Female              12th grade   1.65  5.413386
## 11287            17 years old   Male              12th grade   1.70  5.577428
## 11288            17 years old   Male              12th grade   1.73  5.675853
## 11289            13 years old   <NA>              12th grade     NA        NA
## 11290            15 years old Female              10th grade   1.60  5.249344
## 11291            17 years old   Male              11th grade   1.73  5.675853
## 11292            16 years old   Male              10th grade   1.65  5.413386
## 11293            15 years old   Male              10th grade   1.65  5.413386
## 11294            17 years old Female              11th grade     NA        NA
## 11295            16 years old   Male              10th grade     NA        NA
## 11296            16 years old Female              10th grade   1.57  5.150919
## 11297            17 years old Female              11th grade   1.57  5.150919
## 11298   18 years old or older Female              12th grade   1.55  5.085302
## 11299 12 years old or younger Female               9th grade   1.75  5.741470
## 11300            17 years old   Male              11th grade   1.80  5.905512
## 11301            16 years old   Male              10th grade     NA        NA
## 11302            17 years old   Male              10th grade   1.68  5.511811
## 11303            16 years old Female              10th grade   1.60  5.249344
## 11304            16 years old Female              10th grade   1.50  4.921260
## 11305            16 years old Female              10th grade   1.57  5.150919
## 11306            16 years old Female               9th grade   1.60  5.249344
## 11307            15 years old Female               9th grade   1.55  5.085302
## 11308            16 years old Female              10th grade   1.55  5.085302
## 11309            16 years old Female              10th grade     NA        NA
## 11310            16 years old Female              10th grade   1.52  4.986877
## 11311            16 years old Female              10th grade   1.57  5.150919
## 11312            16 years old Female               9th grade   1.55  5.085302
## 11313            15 years old Female               9th grade     NA        NA
## 11314            15 years old Female              10th grade   1.63  5.347769
## 11315            16 years old Female               9th grade     NA        NA
## 11316            16 years old Female              10th grade     NA        NA
## 11317            17 years old   Male              10th grade   1.70  5.577428
## 11318            17 years old Female              10th grade   1.50  4.921260
## 11319            15 years old Female               9th grade   1.57  5.150919
## 11320            14 years old Female               9th grade   1.52  4.986877
## 11321            15 years old   Male               9th grade   1.83  6.003937
## 11322            15 years old Female               9th grade   1.63  5.347769
## 11323            15 years old Female               9th grade     NA        NA
## 11324            15 years old Female               9th grade   1.60  5.249344
## 11325            15 years old   Male               9th grade   1.63  5.347769
## 11326            15 years old Female               9th grade   1.78  5.839895
## 11327            15 years old   Male               9th grade   1.85  6.069554
## 11328            14 years old Female               9th grade   1.65  5.413386
## 11329            15 years old Female               9th grade   1.57  5.150919
## 11330            14 years old Female                    <NA>   1.60  5.249344
## 11331            14 years old Female               9th grade   1.78  5.839895
## 11332            14 years old   Male               9th grade   1.70  5.577428
## 11333            14 years old Female               9th grade   1.70  5.577428
## 11334            14 years old   Male               9th grade   1.50  4.921260
## 11335            14 years old Female               9th grade   1.65  5.413386
## 11336            15 years old   Male               9th grade   1.90  6.233596
## 11337            14 years old   Male               9th grade   1.68  5.511811
## 11338            14 years old   Male               9th grade   1.75  5.741470
## 11339            14 years old Female               9th grade   1.63  5.347769
## 11340            15 years old Female               9th grade   1.68  5.511811
## 11341            15 years old Female               9th grade   1.60  5.249344
## 11342            14 years old   Male               9th grade   1.83  6.003937
## 11343            15 years old   Male               9th grade   1.63  5.347769
## 11344            15 years old Female               9th grade   1.68  5.511811
## 11345            14 years old   Male               9th grade   1.85  6.069554
## 11346            14 years old Female               9th grade     NA        NA
## 11347            15 years old   Male               9th grade   1.57  5.150919
## 11348            14 years old   Male               9th grade   1.80  5.905512
## 11349            14 years old   Male                    <NA>   1.88  6.167979
## 11350            14 years old   Male               9th grade     NA        NA
## 11351            15 years old Female               9th grade   1.65  5.413386
## 11352            15 years old Female               9th grade   1.63  5.347769
## 11353            14 years old Female               9th grade   1.60  5.249344
## 11354            15 years old Female               9th grade   1.75  5.741470
## 11355            15 years old   Male               9th grade   1.90  6.233596
## 11356            15 years old   Male               9th grade   1.70  5.577428
## 11357            14 years old   Male               9th grade   1.75  5.741470
## 11358            14 years old Female               9th grade   1.70  5.577428
## 11359            14 years old   Male               9th grade   1.83  6.003937
## 11360            15 years old Female               9th grade   1.73  5.675853
## 11361            14 years old   Male               9th grade   1.75  5.741470
## 11362            14 years old   Male               9th grade   1.88  6.167979
## 11363            14 years old Female               9th grade   1.65  5.413386
## 11364            15 years old   Male               9th grade   1.60  5.249344
## 11365            14 years old Female               9th grade   1.75  5.741470
## 11366            14 years old   Male               9th grade   1.80  5.905512
## 11367            14 years old   Male               9th grade   1.65  5.413386
## 11368            15 years old   Male               9th grade   1.83  6.003937
## 11369            14 years old Female               9th grade   1.65  5.413386
## 11370            15 years old Female               9th grade   1.63  5.347769
## 11371            14 years old   Male               9th grade   1.65  5.413386
## 11372            15 years old   Male               9th grade   1.83  6.003937
## 11373            15 years old Female               9th grade   1.60  5.249344
## 11374            14 years old Female               9th grade   1.63  5.347769
## 11375            14 years old   Male               9th grade   1.93  6.332021
## 11376            15 years old   Male               9th grade   1.75  5.741470
## 11377            14 years old   Male               9th grade   1.75  5.741470
## 11378            15 years old   Male               9th grade   1.70  5.577428
## 11379            15 years old Female               9th grade   1.63  5.347769
## 11380            14 years old Female               9th grade   1.55  5.085302
## 11381            14 years old Female               9th grade     NA        NA
## 11382            15 years old Female               9th grade   1.70  5.577428
## 11383            14 years old   <NA>               9th grade     NA        NA
## 11384            14 years old Female               9th grade   1.57  5.150919
## 11385            14 years old Female               9th grade   1.78  5.839895
## 11386            15 years old Female               9th grade   1.73  5.675853
## 11387            14 years old   Male               9th grade   1.78  5.839895
## 11388            14 years old Female               9th grade   1.55  5.085302
## 11389            14 years old   Male               9th grade   1.78  5.839895
## 11390            14 years old Female               9th grade   1.65  5.413386
## 11391            15 years old   Male               9th grade   1.85  6.069554
## 11392                    <NA> Female              10th grade     NA        NA
## 11393            16 years old Female                    <NA>   1.78  5.839895
## 11394                    <NA> Female              10th grade     NA        NA
## 11395            16 years old   Male              10th grade   1.78  5.839895
## 11396            15 years old   Male              10th grade   1.83  6.003937
## 11397            16 years old Female                    <NA>   1.83  6.003937
## 11398            15 years old   Male              10th grade   1.78  5.839895
## 11399            15 years old   Male              10th grade   1.78  5.839895
## 11400            15 years old Female              10th grade   1.52  4.986877
## 11401            15 years old   Male              10th grade   1.83  6.003937
## 11402            16 years old   <NA>              10th grade     NA        NA
## 11403            15 years old   Male              10th grade   1.70  5.577428
## 11404            16 years old Female              10th grade   1.75  5.741470
## 11405            15 years old   Male                    <NA>   1.75  5.741470
## 11406            16 years old Female              10th grade   1.68  5.511811
## 11407                    <NA> Female              10th grade     NA        NA
## 11408            15 years old   Male              10th grade   1.75  5.741470
## 11409            15 years old   Male              10th grade   1.78  5.839895
## 11410            15 years old   Male              10th grade   1.88  6.167979
## 11411            15 years old   Male              10th grade   1.75  5.741470
## 11412            15 years old Female              10th grade   1.63  5.347769
## 11413            15 years old Female              10th grade   1.63  5.347769
## 11414            16 years old   Male              10th grade   1.73  5.675853
## 11415            15 years old Female              10th grade   1.68  5.511811
## 11416            15 years old Female              10th grade   1.70  5.577428
## 11417            15 years old   Male                    <NA>   1.90  6.233596
## 11418            15 years old Female              10th grade   1.63  5.347769
## 11419            15 years old   Male              10th grade   1.78  5.839895
## 11420            15 years old Female              10th grade   1.68  5.511811
## 11421            15 years old   Male              10th grade   1.93  6.332021
## 11422            16 years old   Male              10th grade   1.83  6.003937
## 11423            15 years old Female              10th grade   1.60  5.249344
## 11424            16 years old   Male              10th grade   1.80  5.905512
## 11425            16 years old   Male              10th grade   1.85  6.069554
## 11426            16 years old   Male              10th grade   1.90  6.233596
## 11427            16 years old   Male                    <NA>   1.73  5.675853
## 11428            15 years old Female              10th grade   1.57  5.150919
## 11429            15 years old Female              10th grade   1.60  5.249344
## 11430            16 years old   <NA>              10th grade     NA        NA
## 11431            15 years old Female              10th grade   1.70  5.577428
## 11432            16 years old   Male              10th grade   1.80  5.905512
## 11433            15 years old Female              10th grade   1.57  5.150919
## 11434            15 years old Female              10th grade   1.63  5.347769
## 11435            15 years old Female              10th grade   1.55  5.085302
## 11436            17 years old Female              10th grade   1.63  5.347769
## 11437            16 years old Female              10th grade   1.47  4.822835
## 11438            16 years old Female              10th grade     NA        NA
## 11439            16 years old   Male                    <NA>   1.75  5.741470
## 11440                    <NA>   Male                    <NA>     NA        NA
## 11441            16 years old Female              10th grade     NA        NA
## 11442            15 years old   Male              10th grade   1.80  5.905512
## 11443            16 years old Female              10th grade   1.57  5.150919
## 11444            16 years old   Male              10th grade   1.73  5.675853
## 11445            16 years old Female              10th grade   1.65  5.413386
## 11446            16 years old Female              10th grade   1.70  5.577428
## 11447            16 years old   Male              10th grade   1.80  5.905512
## 11448            15 years old   Male              10th grade   1.88  6.167979
## 11449            16 years old   Male              10th grade     NA        NA
## 11450            16 years old   Male              10th grade   1.85  6.069554
## 11451            16 years old Female              10th grade   1.68  5.511811
## 11452            16 years old   Male              10th grade   1.70  5.577428
## 11453            15 years old Female              10th grade   1.57  5.150919
## 11454            16 years old Female              10th grade     NA        NA
## 11455            16 years old   Male                    <NA>     NA        NA
## 11456            15 years old Female              10th grade     NA        NA
## 11457            16 years old Female                    <NA>   1.75  5.741470
## 11458            15 years old   Male              10th grade   1.83  6.003937
## 11459            17 years old   Male              11th grade   1.65  5.413386
## 11460            16 years old Female              11th grade   1.68  5.511811
## 11461            17 years old Female              11th grade   1.68  5.511811
## 11462            16 years old   Male              11th grade   1.78  5.839895
## 11463            17 years old   Male              11th grade   1.73  5.675853
## 11464            16 years old Female              11th grade   1.60  5.249344
## 11465            16 years old   Male              11th grade   1.78  5.839895
## 11466            17 years old   Male              11th grade   1.85  6.069554
## 11467            17 years old   Male              11th grade   1.73  5.675853
## 11468            17 years old   Male              11th grade   1.78  5.839895
## 11469            16 years old   Male              11th grade   1.88  6.167979
## 11470            17 years old Female              11th grade   1.68  5.511811
## 11471            16 years old Female              11th grade   1.60  5.249344
## 11472            16 years old   Male              11th grade   1.88  6.167979
## 11473            17 years old Female              11th grade   1.73  5.675853
## 11474            17 years old Female              11th grade   1.78  5.839895
## 11475            16 years old   Male              11th grade   1.65  5.413386
## 11476            17 years old Female              11th grade     NA        NA
## 11477            16 years old Female              11th grade   1.68  5.511811
## 11478            16 years old Female              11th grade   1.60  5.249344
## 11479            16 years old Female              11th grade   1.57  5.150919
## 11480            17 years old   Male              11th grade   2.03  6.660105
## 11481            16 years old   Male              11th grade   1.78  5.839895
## 11482            17 years old   Male              11th grade   1.90  6.233596
## 11483            17 years old Female              11th grade   1.63  5.347769
## 11484            16 years old Female              11th grade   1.75  5.741470
## 11485            16 years old Female              11th grade   1.78  5.839895
## 11486            16 years old Female              11th grade   1.68  5.511811
## 11487            17 years old   Male              11th grade     NA        NA
## 11488            16 years old   Male              11th grade   1.78  5.839895
## 11489            17 years old Female              11th grade   1.63  5.347769
## 11490            16 years old Female              11th grade   1.65  5.413386
## 11491            16 years old Female              11th grade     NA        NA
## 11492            17 years old   Male              11th grade     NA        NA
## 11493            17 years old Female              11th grade   1.70  5.577428
## 11494            16 years old   Male              11th grade   1.55  5.085302
## 11495            16 years old Female              11th grade   1.70  5.577428
## 11496            16 years old   Male              11th grade   1.90  6.233596
## 11497            17 years old   Male              11th grade   1.80  5.905512
## 11498            17 years old Female              11th grade   1.80  5.905512
## 11499            16 years old   Male              11th grade   1.70  5.577428
## 11500            16 years old Female              11th grade   1.65  5.413386
## 11501            16 years old   Male              11th grade   1.78  5.839895
## 11502            16 years old   Male              11th grade   1.83  6.003937
## 11503            17 years old   Male                    <NA>   1.73  5.675853
## 11504            17 years old   Male              11th grade   1.70  5.577428
## 11505            16 years old   Male              11th grade   1.96  6.430446
## 11506            17 years old   Male              11th grade   1.78  5.839895
## 11507            16 years old Female              11th grade   1.65  5.413386
## 11508            16 years old   Male                    <NA>   1.75  5.741470
## 11509            17 years old Female              11th grade   1.68  5.511811
## 11510            16 years old   Male              11th grade   1.85  6.069554
## 11511            17 years old   Male              11th grade   1.98  6.496063
## 11512            16 years old Female                    <NA>   1.55  5.085302
## 11513            16 years old Female              11th grade   1.70  5.577428
## 11514            17 years old Female              11th grade   1.68  5.511811
## 11515            17 years old Female              11th grade   1.60  5.249344
## 11516            16 years old Female              11th grade   1.57  5.150919
## 11517            16 years old Female              11th grade   1.63  5.347769
## 11518            16 years old Female              11th grade   1.68  5.511811
## 11519            17 years old   Male              11th grade   1.63  5.347769
## 11520                    <NA>   Male              11th grade     NA        NA
## 11521            17 years old   Male              11th grade   1.70  5.577428
## 11522            16 years old   Male              11th grade   1.88  6.167979
## 11523            16 years old Female              11th grade   1.75  5.741470
## 11524            16 years old   Male              11th grade   1.75  5.741470
## 11525   18 years old or older Female              12th grade   1.65  5.413386
## 11526   18 years old or older   Male              12th grade   1.96  6.430446
## 11527            17 years old Female              12th grade   1.68  5.511811
## 11528            17 years old Female              12th grade   1.60  5.249344
## 11529            17 years old   Male              12th grade     NA        NA
## 11530   18 years old or older Female              12th grade   1.75  5.741470
## 11531   18 years old or older   Male              12th grade   1.83  6.003937
## 11532            17 years old Female              12th grade   1.50  4.921260
## 11533   18 years old or older   Male              12th grade   1.88  6.167979
## 11534   18 years old or older   Male              12th grade   1.96  6.430446
## 11535            17 years old   Male              12th grade   1.80  5.905512
## 11536                    <NA>   Male                    <NA>     NA        NA
## 11537            17 years old   Male              12th grade   1.83  6.003937
## 11538            17 years old   Male              12th grade   1.70  5.577428
## 11539   18 years old or older Female              12th grade   1.70  5.577428
## 11540            17 years old Female              12th grade   1.73  5.675853
## 11541            16 years old Female              12th grade   1.70  5.577428
## 11542   18 years old or older   Male                    <NA>   1.75  5.741470
## 11543   18 years old or older   Male              12th grade   1.75  5.741470
## 11544   18 years old or older Female              12th grade   1.45  4.757218
## 11545            17 years old   Male              12th grade   1.88  6.167979
## 11546            17 years old Female              12th grade   1.70  5.577428
## 11547   18 years old or older   Male              12th grade   1.90  6.233596
## 11548            17 years old   Male              12th grade   1.88  6.167979
## 11549   18 years old or older   Male              12th grade   1.90  6.233596
## 11550   18 years old or older   Male              12th grade   1.85  6.069554
## 11551            17 years old Female              12th grade   1.65  5.413386
## 11552   18 years old or older Female              12th grade   1.78  5.839895
## 11553            17 years old   Male              12th grade   1.83  6.003937
## 11554   18 years old or older Female              12th grade   1.52  4.986877
## 11555            17 years old   Male              11th grade   1.80  5.905512
## 11556   18 years old or older Female              12th grade   1.65  5.413386
## 11557            17 years old Female              12th grade   1.80  5.905512
## 11558            17 years old   Male              12th grade   1.80  5.905512
## 11559            17 years old Female              12th grade   1.65  5.413386
## 11560   18 years old or older   Male              12th grade   1.78  5.839895
## 11561   18 years old or older   Male              12th grade   1.73  5.675853
## 11562   18 years old or older Female              12th grade   1.75  5.741470
## 11563            17 years old Female              12th grade   1.63  5.347769
## 11564            17 years old Female              12th grade   1.73  5.675853
## 11565            17 years old Female              12th grade     NA        NA
## 11566   18 years old or older   Male              12th grade   1.70  5.577428
## 11567            17 years old Female              12th grade   1.55  5.085302
## 11568   18 years old or older Female              12th grade   1.75  5.741470
## 11569            17 years old   Male              12th grade   1.78  5.839895
## 11570            17 years old Female              12th grade   1.68  5.511811
## 11571            17 years old Female              12th grade   1.63  5.347769
## 11572            17 years old Female              12th grade   1.75  5.741470
## 11573   18 years old or older Female              12th grade   1.73  5.675853
## 11574   18 years old or older   Male              12th grade   1.88  6.167979
## 11575            14 years old Female               9th grade   1.55  5.085302
## 11576            14 years old   Male               9th grade   1.60  5.249344
## 11577            14 years old Female               9th grade   1.70  5.577428
## 11578            15 years old Female               9th grade   1.63  5.347769
## 11579            14 years old   Male               9th grade   1.60  5.249344
## 11580            14 years old   Male               9th grade   1.83  6.003937
## 11581            14 years old   Male               9th grade   1.65  5.413386
## 11582            13 years old   Male               9th grade   1.78  5.839895
## 11583            15 years old   Male               9th grade   1.80  5.905512
## 11584            14 years old   Male               9th grade   1.83  6.003937
## 11585            15 years old   Male               9th grade   1.80  5.905512
## 11586            15 years old Female               9th grade   1.68  5.511811
## 11587            15 years old Female               9th grade   1.63  5.347769
## 11588            14 years old   Male               9th grade   1.75  5.741470
## 11589            14 years old Female               9th grade   1.65  5.413386
## 11590            14 years old Female               9th grade   1.60  5.249344
## 11591            15 years old   Male               9th grade   1.73  5.675853
## 11592            15 years old Female               9th grade   1.70  5.577428
## 11593            14 years old Female               9th grade   1.73  5.675853
## 11594                    <NA>   Male               9th grade     NA        NA
## 11595            14 years old   Male               9th grade   1.78  5.839895
## 11596            15 years old Female               9th grade   1.52  4.986877
## 11597            14 years old   Male               9th grade   1.68  5.511811
## 11598            14 years old Female               9th grade   1.75  5.741470
## 11599            15 years old   Male               9th grade   1.78  5.839895
## 11600            14 years old Female               9th grade   1.63  5.347769
## 11601            15 years old Female               9th grade   1.68  5.511811
## 11602            15 years old   Male               9th grade   1.80  5.905512
## 11603            15 years old Female               9th grade   1.68  5.511811
## 11604            15 years old   Male               9th grade   1.78  5.839895
## 11605            15 years old Female               9th grade   1.68  5.511811
## 11606            14 years old Female               9th grade   1.70  5.577428
## 11607            15 years old Female               9th grade   1.73  5.675853
## 11608            14 years old   Male               9th grade   1.68  5.511811
## 11609            15 years old Female               9th grade   1.63  5.347769
## 11610            14 years old Female               9th grade   1.70  5.577428
## 11611            15 years old Female               9th grade   1.60  5.249344
## 11612            14 years old   Male               9th grade   1.83  6.003937
## 11613            15 years old Female               9th grade   1.60  5.249344
## 11614            15 years old   Male               9th grade   1.68  5.511811
## 11615            16 years old   Male               9th grade   1.83  6.003937
## 11616            15 years old Female               9th grade   1.50  4.921260
## 11617            14 years old Female               9th grade   1.68  5.511811
## 11618            14 years old   Male               9th grade   1.65  5.413386
## 11619            15 years old   Male               9th grade   1.73  5.675853
## 11620            14 years old Female               9th grade   1.63  5.347769
## 11621            15 years old   Male               9th grade   1.73  5.675853
## 11622            15 years old Female               9th grade     NA        NA
## 11623            14 years old   Male               9th grade   1.80  5.905512
## 11624            14 years old Female               9th grade   1.70  5.577428
## 11625            14 years old Female               9th grade   1.70  5.577428
## 11626            15 years old Female               9th grade   1.65  5.413386
## 11627            14 years old   Male               9th grade   1.90  6.233596
## 11628            14 years old Female               9th grade   1.57  5.150919
## 11629            14 years old   Male               9th grade     NA        NA
## 11630                    <NA> Female               9th grade     NA        NA
## 11631            15 years old Female               9th grade   1.73  5.675853
## 11632            14 years old Female               9th grade   1.52  4.986877
## 11633            15 years old   Male               9th grade   1.70  5.577428
## 11634            14 years old Female               9th grade     NA        NA
## 11635            14 years old Female               9th grade   1.57  5.150919
## 11636            15 years old   Male               9th grade   1.80  5.905512
## 11637            14 years old   Male               9th grade   1.70  5.577428
## 11638            15 years old   Male               9th grade   1.80  5.905512
## 11639            14 years old Female               9th grade   1.65  5.413386
## 11640            15 years old Female               9th grade   1.60  5.249344
## 11641            14 years old Female               9th grade     NA        NA
## 11642            15 years old   Male               9th grade   1.70  5.577428
## 11643            14 years old   Male               9th grade   1.85  6.069554
## 11644            14 years old   Male               9th grade   1.65  5.413386
## 11645            15 years old Female               9th grade   1.78  5.839895
## 11646            14 years old Female               9th grade   1.68  5.511811
## 11647            16 years old Female              10th grade   1.55  5.085302
## 11648            15 years old Female              10th grade     NA        NA
## 11649            15 years old Female              10th grade     NA        NA
## 11650            16 years old Female                    <NA>   1.65  5.413386
## 11651            15 years old Female              10th grade   1.52  4.986877
## 11652            15 years old Female              10th grade   1.57  5.150919
## 11653            16 years old Female              10th grade     NA        NA
## 11654            15 years old Female              10th grade   1.52  4.986877
## 11655            15 years old Female              10th grade   1.60  5.249344
## 11656            16 years old Female              10th grade   1.57  5.150919
## 11657            15 years old   Male              10th grade   1.78  5.839895
## 11658            15 years old Female              10th grade   1.70  5.577428
## 11659            15 years old   Male              10th grade   1.78  5.839895
## 11660            15 years old Female              10th grade     NA        NA
## 11661            15 years old   Male              10th grade   1.88  6.167979
## 11662            15 years old Female              10th grade   1.65  5.413386
## 11663            15 years old   Male              10th grade     NA        NA
## 11664            15 years old Female              10th grade   1.68  5.511811
## 11665            16 years old Female              10th grade   1.70  5.577428
## 11666            15 years old   Male              10th grade   2.01  6.594488
## 11667            16 years old Female              10th grade   1.57  5.150919
## 11668            15 years old   Male              10th grade   1.55  5.085302
## 11669            16 years old Female              10th grade   1.70  5.577428
## 11670            15 years old Female              10th grade   1.60  5.249344
## 11671            16 years old   Male              10th grade   1.70  5.577428
## 11672            15 years old Female              10th grade   1.57  5.150919
## 11673            16 years old Female              10th grade   1.57  5.150919
## 11674            15 years old Female              10th grade   1.47  4.822835
## 11675            15 years old Female              10th grade   1.73  5.675853
## 11676            17 years old Female              11th grade   1.63  5.347769
## 11677            15 years old   Male              10th grade   1.80  5.905512
## 11678            15 years old Female              10th grade   1.63  5.347769
## 11679            15 years old Female              10th grade   1.55  5.085302
## 11680            16 years old   Male              10th grade   1.68  5.511811
## 11681            15 years old   Male              10th grade   1.80  5.905512
## 11682            16 years old Female              10th grade   1.65  5.413386
## 11683                    <NA>   Male              10th grade     NA        NA
## 11684            16 years old   Male              10th grade   1.88  6.167979
## 11685            15 years old Female              10th grade   1.50  4.921260
## 11686            16 years old Female              10th grade   1.65  5.413386
## 11687            16 years old   Male              10th grade   1.85  6.069554
## 11688            15 years old   Male              10th grade   1.63  5.347769
## 11689            15 years old   Male              10th grade   1.85  6.069554
## 11690            16 years old   <NA>              10th grade     NA        NA
## 11691            15 years old   Male              10th grade   1.88  6.167979
## 11692            15 years old   Male              10th grade   1.80  5.905512
## 11693            14 years old   Male              10th grade   1.83  6.003937
## 11694            15 years old Female              10th grade   1.55  5.085302
## 11695            15 years old   Male              10th grade   1.90  6.233596
## 11696            15 years old Female              10th grade   1.73  5.675853
## 11697            15 years old   Male              10th grade   1.78  5.839895
## 11698            16 years old   Male              10th grade     NA        NA
## 11699            15 years old   Male              10th grade   1.73  5.675853
## 11700            15 years old Female                    <NA>   1.57  5.150919
## 11701            15 years old   Male                    <NA>   1.90  6.233596
## 11702            15 years old   Male              10th grade     NA        NA
## 11703            17 years old   Male              10th grade   1.85  6.069554
## 11704            15 years old Female              10th grade   1.63  5.347769
## 11705            15 years old Female              10th grade   1.60  5.249344
## 11706            16 years old Female              10th grade   1.68  5.511811
## 11707            15 years old Female              10th grade   1.57  5.150919
## 11708            16 years old Female              10th grade   1.60  5.249344
## 11709            16 years old   Male              11th grade   1.68  5.511811
## 11710            16 years old   Male              11th grade   1.75  5.741470
## 11711   18 years old or older   Male              11th grade   1.73  5.675853
## 11712            17 years old Female              11th grade   1.60  5.249344
## 11713            16 years old Female              11th grade   1.57  5.150919
## 11714            16 years old Female              11th grade   1.70  5.577428
## 11715            17 years old Female              11th grade   1.73  5.675853
## 11716            16 years old Female              11th grade   1.52  4.986877
## 11717            17 years old Female              11th grade   1.75  5.741470
## 11718            16 years old   Male              11th grade   1.80  5.905512
## 11719            16 years old Female              11th grade   1.60  5.249344
## 11720            16 years old   Male              11th grade   1.78  5.839895
## 11721            16 years old Female              11th grade   1.78  5.839895
## 11722            17 years old Female              11th grade   1.78  5.839895
## 11723            16 years old   Male              11th grade   1.83  6.003937
## 11724            16 years old   Male              11th grade   1.73  5.675853
## 11725            17 years old Female              11th grade   1.75  5.741470
## 11726            16 years old Female              11th grade   1.60  5.249344
## 11727            16 years old Female              11th grade   1.73  5.675853
## 11728            17 years old Female              11th grade   1.50  4.921260
## 11729            16 years old Female              11th grade   1.68  5.511811
## 11730            17 years old   Male              11th grade   1.65  5.413386
## 11731            16 years old   Male              11th grade   1.78  5.839895
## 11732            16 years old   Male              10th grade   1.78  5.839895
## 11733            16 years old Female              11th grade   1.65  5.413386
## 11734            16 years old Female              11th grade   1.70  5.577428
## 11735            16 years old   Male                    <NA>   1.78  5.839895
## 11736            16 years old   Male                    <NA>   1.75  5.741470
## 11737            16 years old   Male              11th grade   1.68  5.511811
## 11738                    <NA> Female              11th grade     NA        NA
## 11739            17 years old Female              11th grade   1.65  5.413386
## 11740                    <NA>   Male              11th grade     NA        NA
## 11741            16 years old   Male              11th grade   1.78  5.839895
## 11742            17 years old Female              11th grade     NA        NA
## 11743            16 years old Female              11th grade     NA        NA
## 11744                    <NA>   <NA>              11th grade     NA        NA
## 11745            17 years old Female              11th grade   1.73  5.675853
## 11746            17 years old Female              11th grade   1.60  5.249344
## 11747            16 years old Female              11th grade   1.60  5.249344
## 11748            16 years old Female              11th grade     NA        NA
## 11749            17 years old   Male              11th grade   1.80  5.905512
## 11750 12 years old or younger   Male Ungraded or other grade     NA        NA
## 11751            16 years old Female              11th grade   1.63  5.347769
## 11752            16 years old Female              11th grade   1.65  5.413386
## 11753            17 years old   Male              11th grade   1.68  5.511811
## 11754            16 years old Female              11th grade   1.55  5.085302
## 11755            17 years old   Male              11th grade   1.75  5.741470
## 11756            17 years old   Male              11th grade   1.78  5.839895
## 11757            16 years old Female                    <NA>   1.63  5.347769
## 11758            17 years old Female              11th grade   1.60  5.249344
## 11759            16 years old   Male              11th grade   1.78  5.839895
## 11760            16 years old   Male              11th grade     NA        NA
## 11761            17 years old   Male              11th grade   1.85  6.069554
## 11762            16 years old   Male              11th grade   1.78  5.839895
## 11763            17 years old Female              11th grade   1.68  5.511811
## 11764            17 years old   Male              11th grade   1.90  6.233596
## 11765            16 years old   Male              11th grade   1.73  5.675853
## 11766   18 years old or older   Male              11th grade   1.63  5.347769
## 11767            16 years old Female              11th grade     NA        NA
## 11768            16 years old Female              11th grade   1.68  5.511811
## 11769            16 years old Female              11th grade   1.60  5.249344
## 11770            16 years old Female              11th grade   1.75  5.741470
## 11771            17 years old   Male              11th grade   1.83  6.003937
## 11772            17 years old Female              11th grade   1.78  5.839895
## 11773            17 years old   Male              12th grade   1.85  6.069554
## 11774            17 years old   Male              12th grade   1.73  5.675853
## 11775   18 years old or older   Male              12th grade   1.83  6.003937
## 11776            17 years old   Male              12th grade   1.88  6.167979
## 11777            17 years old Female              12th grade   1.68  5.511811
## 11778   18 years old or older   Male              12th grade     NA        NA
## 11779            17 years old   Male              12th grade   1.70  5.577428
## 11780            17 years old   Male              12th grade   1.83  6.003937
## 11781            17 years old Female              12th grade   1.65  5.413386
## 11782   18 years old or older Female              12th grade   1.68  5.511811
## 11783            17 years old Female              12th grade   1.70  5.577428
## 11784   18 years old or older Female              12th grade   1.70  5.577428
## 11785            17 years old Female              12th grade   1.60  5.249344
## 11786   18 years old or older   Male              12th grade   1.78  5.839895
## 11787            17 years old Female              12th grade   1.63  5.347769
## 11788   18 years old or older Female              12th grade   1.83  6.003937
## 11789            17 years old Female              12th grade   1.60  5.249344
## 11790            17 years old Female              12th grade   1.57  5.150919
## 11791            17 years old   Male              12th grade   1.85  6.069554
## 11792   18 years old or older Female              12th grade   1.55  5.085302
## 11793            17 years old Female              12th grade   1.70  5.577428
## 11794   18 years old or older Female              12th grade     NA        NA
## 11795            17 years old Female              12th grade   1.57  5.150919
## 11796            17 years old Female              12th grade   1.63  5.347769
## 11797   18 years old or older   Male              12th grade   1.75  5.741470
## 11798   18 years old or older Female              12th grade   1.68  5.511811
## 11799            17 years old Female              12th grade   1.73  5.675853
## 11800            17 years old   Male              12th grade   1.68  5.511811
## 11801            17 years old Female              12th grade   1.78  5.839895
## 11802            17 years old   Male                    <NA>   1.70  5.577428
## 11803            17 years old   Male              12th grade   1.75  5.741470
## 11804            17 years old Female              12th grade   1.60  5.249344
## 11805   18 years old or older   Male              12th grade   1.93  6.332021
## 11806            17 years old Female              12th grade   1.57  5.150919
## 11807   18 years old or older   Male              12th grade   1.60  5.249344
## 11808            17 years old Female              12th grade   1.63  5.347769
## 11809   18 years old or older Female              12th grade   1.70  5.577428
## 11810            17 years old   Male              12th grade   1.78  5.839895
## 11811            17 years old Female              12th grade   1.68  5.511811
## 11812            14 years old   Male               9th grade   1.73  5.675853
## 11813            14 years old   Male               9th grade   1.70  5.577428
## 11814            14 years old   Male               9th grade   1.75  5.741470
## 11815            14 years old   Male               9th grade   1.73  5.675853
## 11816            15 years old   Male               9th grade   1.65  5.413386
## 11817            15 years old   Male               9th grade   1.68  5.511811
## 11818            15 years old Female               9th grade   1.63  5.347769
## 11819            15 years old   Male               9th grade   1.78  5.839895
## 11820            14 years old Female               9th grade   1.68  5.511811
## 11821            14 years old   Male               9th grade   1.70  5.577428
## 11822            14 years old Female               9th grade   1.63  5.347769
## 11823            14 years old Female               9th grade   1.68  5.511811
## 11824            14 years old   Male               9th grade   1.68  5.511811
## 11825            14 years old   Male               9th grade   1.78  5.839895
## 11826            14 years old Female               9th grade   1.63  5.347769
## 11827            15 years old   Male               9th grade   1.68  5.511811
## 11828            14 years old Female               9th grade   1.63  5.347769
## 11829            14 years old Female               9th grade   1.70  5.577428
## 11830            15 years old   Male                    <NA>   1.80  5.905512
## 11831            15 years old   Male               9th grade   1.83  6.003937
## 11832            14 years old   Male               9th grade   1.70  5.577428
## 11833            15 years old   Male               9th grade   1.65  5.413386
## 11834            15 years old Female               9th grade   1.65  5.413386
## 11835            15 years old Female               9th grade   1.63  5.347769
## 11836            14 years old   Male               9th grade   1.65  5.413386
## 11837            14 years old Female               9th grade   1.50  4.921260
## 11838            14 years old Female               9th grade   1.57  5.150919
## 11839            15 years old   Male               9th grade   1.60  5.249344
## 11840            14 years old   Male               9th grade   1.60  5.249344
## 11841            14 years old Female               9th grade   1.60  5.249344
## 11842            14 years old   Male               9th grade   1.75  5.741470
## 11843            14 years old Female               9th grade   1.83  6.003937
## 11844            14 years old   Male               9th grade   1.65  5.413386
## 11845            15 years old Female                    <NA>   1.73  5.675853
## 11846            15 years old   Male               9th grade   1.75  5.741470
## 11847            14 years old   Male               9th grade   1.75  5.741470
## 11848            15 years old   Male               9th grade   1.75  5.741470
## 11849            15 years old   Male              10th grade   1.80  5.905512
## 11850            15 years old   Male               9th grade   1.68  5.511811
## 11851            15 years old Female               9th grade   1.60  5.249344
## 11852            14 years old Female               9th grade     NA        NA
## 11853            16 years old Female               9th grade   1.60  5.249344
## 11854            15 years old   Male               9th grade   1.73  5.675853
## 11855            14 years old   Male               9th grade   1.75  5.741470
## 11856            14 years old Female               9th grade   1.65  5.413386
## 11857            14 years old   Male               9th grade   1.88  6.167979
## 11858            14 years old   Male               9th grade   1.68  5.511811
## 11859            15 years old   Male               9th grade   1.78  5.839895
## 11860            15 years old   Male               9th grade   1.65  5.413386
## 11861            15 years old Female               9th grade   1.60  5.249344
## 11862            14 years old   Male               9th grade   1.63  5.347769
## 11863            15 years old   Male               9th grade     NA        NA
## 11864            15 years old   Male               9th grade   1.60  5.249344
## 11865            14 years old Female               9th grade   1.57  5.150919
## 11866            15 years old Female               9th grade   1.70  5.577428
## 11867            14 years old   Male               9th grade     NA        NA
## 11868            14 years old Female               9th grade   1.63  5.347769
## 11869            15 years old   Male               9th grade   1.80  5.905512
## 11870            15 years old Female                    <NA>   1.57  5.150919
## 11871            14 years old Female               9th grade   1.73  5.675853
## 11872            15 years old   Male               9th grade   1.68  5.511811
## 11873            15 years old   Male               9th grade   1.83  6.003937
## 11874            14 years old   Male               9th grade   1.70  5.577428
## 11875            15 years old Female               9th grade   1.70  5.577428
## 11876            14 years old   Male               9th grade   1.63  5.347769
## 11877            14 years old Female               9th grade   1.60  5.249344
## 11878            15 years old   Male               9th grade     NA        NA
## 11879            15 years old Female               9th grade   1.70  5.577428
## 11880            15 years old Female               9th grade   1.57  5.150919
## 11881            14 years old Female               9th grade   1.57  5.150919
## 11882            14 years old Female               9th grade   1.60  5.249344
## 11883            15 years old Female               9th grade     NA        NA
## 11884            15 years old   Male               9th grade   1.78  5.839895
## 11885            15 years old Female               9th grade   1.68  5.511811
## 11886            14 years old   Male               9th grade     NA        NA
## 11887            16 years old Female              10th grade   1.63  5.347769
## 11888            15 years old Female              10th grade   1.73  5.675853
## 11889            16 years old   Male              10th grade   1.75  5.741470
## 11890            15 years old Female              10th grade   1.75  5.741470
## 11891            16 years old   Male              10th grade   1.80  5.905512
## 11892            14 years old Female               9th grade     NA        NA
## 11893            14 years old   Male               9th grade   1.85  6.069554
## 11894            14 years old   Male               9th grade   1.80  5.905512
## 11895            15 years old Female              10th grade   1.60  5.249344
## 11896            15 years old Female                    <NA>   1.70  5.577428
## 11897                    <NA> Female                    <NA>     NA        NA
## 11898            15 years old   Male              10th grade   1.63  5.347769
## 11899            16 years old Female              10th grade   1.63  5.347769
## 11900            15 years old   Male              10th grade   1.73  5.675853
## 11901            16 years old   Male              10th grade   1.80  5.905512
## 11902            15 years old   Male              10th grade   1.80  5.905512
## 11903            16 years old   Male              10th grade   1.75  5.741470
## 11904            15 years old   Male              10th grade     NA        NA
## 11905            16 years old Female              10th grade   1.57  5.150919
## 11906            15 years old Female              10th grade   1.65  5.413386
## 11907            15 years old   Male              10th grade   1.70  5.577428
## 11908            15 years old Female              10th grade   1.60  5.249344
## 11909            16 years old Female              10th grade   1.65  5.413386
## 11910            15 years old Female              10th grade   1.47  4.822835
## 11911            16 years old   <NA>              10th grade     NA        NA
## 11912            16 years old   Male              10th grade   1.83  6.003937
## 11913            15 years old   Male              10th grade   1.70  5.577428
## 11914            15 years old   Male              10th grade   1.85  6.069554
## 11915            16 years old Female                    <NA>     NA        NA
## 11916            16 years old Female                    <NA>   1.68  5.511811
## 11917            15 years old   Male              10th grade   1.73  5.675853
## 11918            16 years old   Male              10th grade   1.68  5.511811
## 11919            15 years old   Male                    <NA>     NA        NA
## 11920            15 years old   Male              10th grade   1.73  5.675853
## 11921            15 years old Female              10th grade   1.65  5.413386
## 11922            16 years old Female              10th grade     NA        NA
## 11923            16 years old   Male              10th grade   1.65  5.413386
## 11924            16 years old   Male              10th grade   1.63  5.347769
## 11925            16 years old   Male              10th grade   1.83  6.003937
## 11926            15 years old Female              10th grade   1.70  5.577428
## 11927            16 years old Female              10th grade   1.65  5.413386
## 11928            16 years old   Male              10th grade   1.78  5.839895
## 11929            15 years old   Male              10th grade   1.78  5.839895
## 11930            16 years old   Male              10th grade     NA        NA
## 11931            15 years old   Male              10th grade   1.80  5.905512
## 11932            15 years old Female              10th grade   1.57  5.150919
## 11933            15 years old Female              10th grade   1.60  5.249344
## 11934            16 years old   Male              10th grade   1.80  5.905512
## 11935            15 years old   Male              10th grade   1.78  5.839895
## 11936            15 years old Female              10th grade   1.73  5.675853
## 11937            16 years old   Male              10th grade   1.73  5.675853
## 11938            15 years old   Male              10th grade   1.65  5.413386
## 11939            16 years old Female              10th grade   1.70  5.577428
## 11940            15 years old   Male              10th grade   1.75  5.741470
## 11941            17 years old Female              11th grade   1.70  5.577428
## 11942            17 years old Female              11th grade     NA        NA
## 11943            16 years old   Male              11th grade   1.78  5.839895
## 11944            16 years old   Male              11th grade   1.93  6.332021
## 11945            16 years old   Male              11th grade   1.80  5.905512
## 11946            16 years old Female              11th grade   1.57  5.150919
## 11947            17 years old   Male              11th grade   1.78  5.839895
## 11948            16 years old   Male              11th grade   1.83  6.003937
## 11949            16 years old   Male              11th grade   1.85  6.069554
## 11950            16 years old   Male              11th grade   1.83  6.003937
## 11951            17 years old Female              11th grade   1.73  5.675853
## 11952            17 years old Female              11th grade   1.63  5.347769
## 11953            16 years old   <NA>              11th grade     NA        NA
## 11954            17 years old Female              11th grade   1.73  5.675853
## 11955            16 years old Female              11th grade   1.52  4.986877
## 11956            17 years old Female              11th grade   1.65  5.413386
## 11957            16 years old Female              11th grade     NA        NA
## 11958            16 years old Female              11th grade   1.57  5.150919
## 11959            16 years old Female              11th grade   1.63  5.347769
## 11960            16 years old Female              11th grade   1.68  5.511811
## 11961            17 years old Female              11th grade     NA        NA
## 11962            16 years old   Male              11th grade     NA        NA
## 11963            17 years old Female              11th grade   1.60  5.249344
## 11964            16 years old Female              11th grade   1.63  5.347769
## 11965            16 years old   Male              11th grade   1.83  6.003937
## 11966            16 years old   Male              11th grade   1.65  5.413386
## 11967            16 years old   Male              11th grade   1.83  6.003937
## 11968            17 years old   Male              11th grade   1.90  6.233596
## 11969            17 years old   Male                    <NA>   1.83  6.003937
## 11970            16 years old   Male              11th grade     NA        NA
## 11971            16 years old   Male              11th grade   1.83  6.003937
## 11972            16 years old   Male              11th grade   1.78  5.839895
## 11973   18 years old or older   Male                    <NA>   1.83  6.003937
## 11974            16 years old   Male              11th grade   1.75  5.741470
## 11975            17 years old Female              11th grade   1.60  5.249344
## 11976            17 years old Female              11th grade   1.65  5.413386
## 11977            16 years old Female              11th grade   1.57  5.150919
## 11978            16 years old Female              11th grade   1.52  4.986877
## 11979            17 years old Female              11th grade   1.65  5.413386
## 11980            17 years old Female              11th grade   1.68  5.511811
## 11981            17 years old   Male              11th grade   1.90  6.233596
## 11982            16 years old   Male              11th grade     NA        NA
## 11983            16 years old   Male              11th grade   1.83  6.003937
## 11984            17 years old Female              11th grade   1.57  5.150919
## 11985            16 years old   Male              11th grade   1.80  5.905512
## 11986            16 years old Female              11th grade     NA        NA
## 11987            17 years old Female              11th grade   1.70  5.577428
## 11988            16 years old Female              11th grade   1.68  5.511811
## 11989            16 years old   Male              11th grade   1.85  6.069554
## 11990            17 years old   Male              11th grade   1.80  5.905512
## 11991            16 years old Female              11th grade   1.70  5.577428
## 11992            17 years old   Male              11th grade   1.93  6.332021
## 11993            17 years old Female              11th grade   1.65  5.413386
## 11994            16 years old Female              11th grade   1.73  5.675853
## 11995            16 years old Female              11th grade     NA        NA
## 11996            17 years old Female              11th grade   1.75  5.741470
## 11997   18 years old or older Female              12th grade   1.65  5.413386
## 11998            17 years old Female              12th grade   1.60  5.249344
## 11999   18 years old or older Female              12th grade   1.57  5.150919
## 12000            17 years old Female              12th grade   1.80  5.905512
## 12001            17 years old   Male              12th grade   1.83  6.003937
## 12002            17 years old Female                    <NA>   1.70  5.577428
## 12003            17 years old Female                    <NA>     NA        NA
## 12004            17 years old Female                    <NA>   1.68  5.511811
## 12005   18 years old or older Female              12th grade   1.55  5.085302
## 12006            17 years old Female              12th grade   1.65  5.413386
## 12007   18 years old or older   Male              12th grade   1.75  5.741470
## 12008            17 years old Female              12th grade   1.70  5.577428
## 12009                    <NA>   Male              12th grade     NA        NA
## 12010            17 years old Female              12th grade   1.68  5.511811
## 12011            17 years old Female              12th grade   1.60  5.249344
## 12012            17 years old Female              12th grade   1.55  5.085302
## 12013            17 years old Female              12th grade   1.80  5.905512
## 12014   18 years old or older   Male              12th grade   1.88  6.167979
## 12015            17 years old Female              12th grade     NA        NA
## 12016            17 years old   Male              12th grade   1.85  6.069554
## 12017   18 years old or older Female              12th grade   1.70  5.577428
## 12018   18 years old or older   Male              12th grade   1.73  5.675853
## 12019            17 years old Female              12th grade     NA        NA
## 12020   18 years old or older   Male              12th grade   1.80  5.905512
## 12021            17 years old Female              12th grade   1.65  5.413386
## 12022                    <NA> Female              12th grade     NA        NA
## 12023   18 years old or older   Male              12th grade   1.68  5.511811
## 12024   18 years old or older   Male              12th grade   1.70  5.577428
## 12025            17 years old   Male              12th grade   1.80  5.905512
## 12026   18 years old or older   Male              12th grade   1.73  5.675853
## 12027   18 years old or older Female              12th grade   1.60  5.249344
## 12028            17 years old Female              12th grade   1.73  5.675853
## 12029            17 years old Female              12th grade   1.57  5.150919
## 12030            17 years old   <NA>              12th grade     NA        NA
## 12031            17 years old   Male              12th grade   1.65  5.413386
## 12032   18 years old or older   Male              12th grade   1.78  5.839895
## 12033                    <NA>   Male              12th grade     NA        NA
## 12034   18 years old or older   Male              12th grade   1.83  6.003937
## 12035            16 years old   Male              11th grade   1.83  6.003937
## 12036   18 years old or older   Male              12th grade   1.63  5.347769
## 12037            16 years old   Male              10th grade   1.63  5.347769
## 12038            15 years old   Male               9th grade   1.70  5.577428
## 12039            16 years old Female              10th grade     NA        NA
## 12040            15 years old Female               9th grade     NA        NA
## 12041            15 years old   Male               9th grade   1.88  6.167979
## 12042            16 years old Female              10th grade   1.65  5.413386
## 12043            17 years old Female              12th grade   1.57  5.150919
## 12044            16 years old   <NA>              11th grade     NA        NA
## 12045            17 years old   Male              12th grade   1.88  6.167979
## 12046   18 years old or older Female              12th grade   1.63  5.347769
## 12047            15 years old   Male              10th grade   1.70  5.577428
## 12048            17 years old   Male              12th grade   1.80  5.905512
## 12049   18 years old or older Female              12th grade   1.60  5.249344
## 12050            17 years old Female              11th grade   1.50  4.921260
## 12051            16 years old Female              10th grade   1.78  5.839895
## 12052            16 years old   Male              11th grade   1.78  5.839895
## 12053   18 years old or older   Male              11th grade   1.73  5.675853
## 12054            17 years old Female              11th grade   1.42  4.658793
## 12055   18 years old or older   Male              12th grade   1.68  5.511811
## 12056            16 years old Female              11th grade   1.57  5.150919
## 12057            16 years old Female              10th grade   1.63  5.347769
## 12058            17 years old Female              11th grade   1.65  5.413386
## 12059            16 years old Female              11th grade   1.57  5.150919
## 12060            17 years old   Male              12th grade   1.55  5.085302
## 12061            16 years old Female              11th grade   1.55  5.085302
## 12062            16 years old Female              11th grade   1.57  5.150919
## 12063            16 years old   Male              11th grade   1.80  5.905512
## 12064   18 years old or older   Male              12th grade     NA        NA
## 12065            15 years old   Male              10th grade   1.68  5.511811
## 12066            14 years old Female               9th grade   1.65  5.413386
## 12067            15 years old   Male               9th grade   1.60  5.249344
## 12068            14 years old Female               9th grade     NA        NA
## 12069            14 years old Female               9th grade   1.63  5.347769
## 12070            15 years old Female                    <NA>   1.65  5.413386
## 12071            15 years old   Male               9th grade   1.78  5.839895
## 12072            15 years old Female               9th grade   1.60  5.249344
## 12073            14 years old   Male               9th grade   1.65  5.413386
## 12074            15 years old   Male               9th grade   1.52  4.986877
## 12075            15 years old Female                    <NA>   1.57  5.150919
## 12076            15 years old   Male               9th grade     NA        NA
## 12077            14 years old   Male               9th grade   1.85  6.069554
## 12078            15 years old   Male               9th grade   1.68  5.511811
## 12079            14 years old   Male               9th grade   1.78  5.839895
## 12080            14 years old   <NA>               9th grade     NA        NA
## 12081            14 years old Female               9th grade   1.65  5.413386
## 12082            15 years old   Male               9th grade   1.93  6.332021
## 12083            14 years old   Male               9th grade   1.78  5.839895
## 12084            15 years old   Male               9th grade   1.83  6.003937
## 12085            14 years old Female               9th grade   1.57  5.150919
## 12086            14 years old   Male               9th grade   1.73  5.675853
## 12087            15 years old   Male               9th grade   1.70  5.577428
## 12088            14 years old Female               9th grade   1.65  5.413386
## 12089            15 years old Female               9th grade     NA        NA
## 12090                    <NA> Female               9th grade     NA        NA
## 12091            15 years old Female                    <NA>   1.55  5.085302
## 12092            15 years old   Male               9th grade     NA        NA
## 12093            15 years old   Male               9th grade   1.65  5.413386
## 12094            16 years old   Male               9th grade     NA        NA
## 12095            15 years old Female               9th grade   1.65  5.413386
## 12096            15 years old   Male               9th grade   1.70  5.577428
## 12097            15 years old   Male               9th grade   1.80  5.905512
## 12098            14 years old Female                    <NA>   1.65  5.413386
## 12099            14 years old   Male               9th grade   1.73  5.675853
## 12100            14 years old Female               9th grade   1.63  5.347769
## 12101            15 years old Female                    <NA>     NA        NA
## 12102            14 years old   Male               9th grade   1.70  5.577428
## 12103            14 years old Female                    <NA>   1.52  4.986877
## 12104            15 years old   Male               9th grade   1.68  5.511811
## 12105            14 years old Female                    <NA>   1.70  5.577428
## 12106            14 years old   <NA>               9th grade     NA        NA
## 12107            14 years old Female               9th grade   1.68  5.511811
## 12108            15 years old   Male               9th grade   1.68  5.511811
## 12109            14 years old   Male               9th grade   1.57  5.150919
## 12110            15 years old Female               9th grade   1.63  5.347769
## 12111            15 years old   Male               9th grade   1.65  5.413386
## 12112            14 years old Female               9th grade     NA        NA
## 12113            14 years old   Male               9th grade   1.73  5.675853
## 12114            14 years old Female               9th grade   1.68  5.511811
## 12115            14 years old Female                    <NA>   1.68  5.511811
## 12116            14 years old   Male               9th grade   1.63  5.347769
## 12117            14 years old   Male               9th grade   1.65  5.413386
## 12118            14 years old Female               9th grade   1.60  5.249344
## 12119            15 years old Female               9th grade   1.63  5.347769
## 12120            14 years old Female               9th grade   1.73  5.675853
## 12121            15 years old   Male               9th grade   1.47  4.822835
## 12122            15 years old Female               9th grade   1.70  5.577428
## 12123            14 years old   Male               9th grade   1.73  5.675853
## 12124            14 years old Female               9th grade     NA        NA
## 12125            14 years old Female               9th grade   1.55  5.085302
## 12126            15 years old Female               9th grade   1.55  5.085302
## 12127            14 years old Female               9th grade   1.63  5.347769
## 12128            14 years old Female               9th grade   1.70  5.577428
## 12129            16 years old Female              10th grade   1.57  5.150919
## 12130            15 years old   Male              10th grade   1.75  5.741470
## 12131                    <NA> Female              10th grade     NA        NA
## 12132            15 years old Female              10th grade   1.65  5.413386
## 12133            16 years old Female              10th grade   1.57  5.150919
## 12134            15 years old   Male              10th grade   1.68  5.511811
## 12135            15 years old Female              10th grade   1.68  5.511811
## 12136            15 years old   Male              10th grade   1.68  5.511811
## 12137            15 years old   Male                    <NA>   1.73  5.675853
## 12138                    <NA>   Male                    <NA>     NA        NA
## 12139            15 years old Female              10th grade     NA        NA
## 12140                    <NA>   Male              10th grade     NA        NA
## 12141                    <NA> Female              10th grade     NA        NA
## 12142            15 years old   Male                    <NA>   1.88  6.167979
## 12143                    <NA> Female                    <NA>     NA        NA
## 12144                    <NA> Female              10th grade     NA        NA
## 12145            15 years old Female              10th grade   1.65  5.413386
## 12146            15 years old Female              10th grade   1.83  6.003937
## 12147                    <NA> Female              10th grade     NA        NA
## 12148            15 years old   Male              10th grade   1.75  5.741470
## 12149            15 years old Female              10th grade   1.60  5.249344
## 12150            15 years old Female              10th grade   1.68  5.511811
## 12151            15 years old Female                    <NA>   1.52  4.986877
## 12152            15 years old Female              10th grade   1.60  5.249344
## 12153            15 years old   <NA>              10th grade     NA        NA
## 12154            16 years old Female              10th grade   1.52  4.986877
## 12155                    <NA>   Male              10th grade     NA        NA
## 12156            15 years old   Male              10th grade   1.73  5.675853
## 12157            15 years old   Male              10th grade   1.75  5.741470
## 12158            16 years old   Male              10th grade   1.88  6.167979
## 12159            16 years old   Male              10th grade   1.70  5.577428
## 12160            16 years old   <NA>              10th grade     NA        NA
## 12161            15 years old Female              10th grade   1.57  5.150919
## 12162            15 years old Female              10th grade   1.63  5.347769
## 12163            16 years old Female              10th grade   1.75  5.741470
## 12164                    <NA> Female              10th grade     NA        NA
## 12165                    <NA> Female                    <NA>     NA        NA
## 12166            16 years old Female              10th grade   1.60  5.249344
## 12167            16 years old Female              10th grade     NA        NA
## 12168            16 years old   Male              10th grade   1.70  5.577428
## 12169            15 years old Female              10th grade   1.70  5.577428
## 12170            16 years old Female              11th grade   1.60  5.249344
## 12171            16 years old Female              10th grade   1.60  5.249344
## 12172            15 years old Female              10th grade   1.52  4.986877
## 12173                    <NA>   Male              10th grade     NA        NA
## 12174            15 years old Female              10th grade   1.63  5.347769
## 12175            15 years old Female              10th grade   1.57  5.150919
## 12176            15 years old Female                    <NA>   1.68  5.511811
## 12177            17 years old   Male              10th grade     NA        NA
## 12178                    <NA> Female                    <NA>     NA        NA
## 12179            16 years old Female              10th grade   1.70  5.577428
## 12180            15 years old   Male              10th grade   1.80  5.905512
## 12181            15 years old Female              10th grade   1.57  5.150919
## 12182            16 years old   Male                    <NA>     NA        NA
## 12183            16 years old Female                    <NA>   1.83  6.003937
## 12184            16 years old   Male              10th grade     NA        NA
## 12185            15 years old   Male              10th grade   1.78  5.839895
## 12186            15 years old   Male              10th grade   1.70  5.577428
## 12187            15 years old   Male                    <NA>   1.80  5.905512
## 12188            15 years old   Male              10th grade   1.68  5.511811
## 12189            16 years old   Male              10th grade   1.68  5.511811
## 12190                    <NA>   Male              10th grade     NA        NA
## 12191            15 years old Female              10th grade   1.70  5.577428
## 12192            15 years old   Male                    <NA>   1.83  6.003937
## 12193            15 years old Female              10th grade   1.70  5.577428
## 12194            16 years old   Male              10th grade   1.73  5.675853
## 12195            16 years old   Male              10th grade   1.80  5.905512
## 12196            15 years old   Male              10th grade   1.83  6.003937
## 12197            17 years old Female              11th grade   1.60  5.249344
## 12198            16 years old   Male              11th grade   1.73  5.675853
## 12199            16 years old Female              11th grade   1.55  5.085302
## 12200            17 years old Female              11th grade   1.68  5.511811
## 12201            16 years old   Male              11th grade   1.85  6.069554
## 12202                    <NA>   Male              11th grade     NA        NA
## 12203            16 years old Female              11th grade     NA        NA
## 12204            16 years old Female                    <NA>   1.55  5.085302
## 12205            16 years old Female              11th grade   1.57  5.150919
## 12206            17 years old   Male              11th grade   1.75  5.741470
## 12207            16 years old Female              11th grade   1.65  5.413386
## 12208            17 years old   Male              11th grade     NA        NA
## 12209            16 years old Female              11th grade   1.68  5.511811
## 12210            16 years old   Male                    <NA>   1.75  5.741470
## 12211            16 years old   Male              11th grade   1.78  5.839895
## 12212            17 years old Female              11th grade   1.57  5.150919
## 12213            16 years old Female                    <NA>   1.63  5.347769
## 12214                    <NA>   <NA>                    <NA>     NA        NA
## 12215            16 years old Female              11th grade   1.57  5.150919
## 12216            17 years old Female              11th grade   1.60  5.249344
## 12217            17 years old Female              11th grade   1.63  5.347769
## 12218            17 years old   Male              11th grade   1.65  5.413386
## 12219            17 years old   Male              11th grade   1.80  5.905512
## 12220                    <NA> Female              11th grade     NA        NA
## 12221            17 years old   Male              11th grade   1.73  5.675853
## 12222            17 years old   Male              11th grade   1.80  5.905512
## 12223   18 years old or older Female              11th grade   1.60  5.249344
## 12224            16 years old Female              11th grade   1.68  5.511811
## 12225            17 years old Female              11th grade     NA        NA
## 12226            16 years old Female              11th grade   1.60  5.249344
## 12227            17 years old Female              11th grade   1.70  5.577428
## 12228            17 years old   Male              11th grade   1.90  6.233596
## 12229            16 years old Female              11th grade   1.73  5.675853
## 12230            16 years old   Male              11th grade   1.75  5.741470
## 12231            16 years old Female              11th grade   1.57  5.150919
## 12232            16 years old Female              11th grade   1.57  5.150919
## 12233            16 years old Female              11th grade   1.70  5.577428
## 12234            16 years old   Male              11th grade   1.90  6.233596
## 12235            17 years old   Male              11th grade   1.65  5.413386
## 12236            17 years old   Male              11th grade   1.90  6.233596
## 12237                    <NA> Female              11th grade     NA        NA
## 12238            16 years old   Male              11th grade     NA        NA
## 12239                    <NA>   <NA>                    <NA>     NA        NA
## 12240            16 years old Female                    <NA>   1.47  4.822835
## 12241            17 years old   Male              11th grade   1.83  6.003937
## 12242            17 years old Female              11th grade   1.68  5.511811
## 12243            16 years old Female              11th grade     NA        NA
## 12244            16 years old Female              11th grade   1.63  5.347769
## 12245            17 years old   Male              11th grade   1.73  5.675853
## 12246            17 years old   Male              11th grade   1.70  5.577428
## 12247            16 years old Female              11th grade   1.70  5.577428
## 12248            17 years old   Male              11th grade   1.60  5.249344
## 12249            17 years old Female              11th grade   1.70  5.577428
## 12250            17 years old Female              11th grade   1.60  5.249344
## 12251            17 years old Female              11th grade   1.65  5.413386
## 12252            17 years old Female              11th grade   1.65  5.413386
## 12253            17 years old   Male              11th grade   1.65  5.413386
## 12254            16 years old   Male              11th grade   1.78  5.839895
## 12255            17 years old   Male              11th grade   1.63  5.347769
## 12256            17 years old Female              11th grade     NA        NA
## 12257            17 years old Female              12th grade   1.55  5.085302
## 12258            17 years old   Male                    <NA>   1.85  6.069554
## 12259   18 years old or older Female              12th grade   1.57  5.150919
## 12260   18 years old or older Female              12th grade   1.73  5.675853
## 12261   18 years old or older   Male              12th grade   1.83  6.003937
## 12262 12 years old or younger   Male Ungraded or other grade     NA        NA
## 12263   18 years old or older Female              12th grade   1.70  5.577428
## 12264            17 years old   Male                    <NA>   1.73  5.675853
## 12265   18 years old or older   Male              12th grade   1.88  6.167979
## 12266            17 years old Female              12th grade   1.50  4.921260
## 12267            17 years old Female              12th grade   1.70  5.577428
## 12268            17 years old   Male                    <NA>   1.80  5.905512
## 12269   18 years old or older   Male              12th grade   1.78  5.839895
## 12270                    <NA>   Male              12th grade     NA        NA
## 12271            17 years old   Male              12th grade   1.47  4.822835
## 12272   18 years old or older   Male              12th grade   1.73  5.675853
## 12273   18 years old or older   Male              12th grade   1.96  6.430446
## 12274            17 years old Female                    <NA>     NA        NA
## 12275   18 years old or older Female              12th grade   1.60  5.249344
## 12276   18 years old or older   Male              12th grade   1.68  5.511811
## 12277            17 years old Female              12th grade   1.55  5.085302
## 12278   18 years old or older Female              12th grade   1.52  4.986877
## 12279            17 years old   Male              12th grade   1.80  5.905512
## 12280            17 years old   Male              12th grade   1.80  5.905512
## 12281            17 years old   Male              12th grade   1.85  6.069554
## 12282   18 years old or older   Male                    <NA>   1.68  5.511811
## 12283                    <NA>   Male                    <NA>     NA        NA
## 12284                    <NA> Female                    <NA>     NA        NA
## 12285   18 years old or older Female                    <NA>     NA        NA
## 12286   18 years old or older Female              12th grade   1.63  5.347769
## 12287   18 years old or older   Male                    <NA>   1.78  5.839895
## 12288   18 years old or older   Male              12th grade   1.90  6.233596
## 12289            17 years old Female              12th grade     NA        NA
## 12290            17 years old Female              12th grade   1.50  4.921260
## 12291            17 years old   Male                    <NA>   1.85  6.069554
## 12292            17 years old   Male              12th grade   1.80  5.905512
## 12293            17 years old Female              12th grade   1.65  5.413386
## 12294   18 years old or older   Male              12th grade   1.75  5.741470
## 12295            17 years old Female              12th grade   1.70  5.577428
## 12296            17 years old Female              12th grade   1.60  5.249344
## 12297            17 years old   Male              12th grade   1.70  5.577428
## 12298                    <NA> Female              12th grade     NA        NA
## 12299   18 years old or older Female              12th grade   1.60  5.249344
## 12300   18 years old or older Female              12th grade   1.50  4.921260
## 12301   18 years old or older Female              12th grade     NA        NA
## 12302            17 years old   Male              12th grade   1.45  4.757218
## 12303   18 years old or older Female              12th grade   1.68  5.511811
## 12304            17 years old Female              12th grade   1.57  5.150919
## 12305   18 years old or older   Male              12th grade   1.73  5.675853
## 12306   18 years old or older Female              12th grade   1.57  5.150919
## 12307            17 years old   Male              12th grade   1.83  6.003937
## 12308            17 years old   Male              12th grade   1.80  5.905512
## 12309            17 years old   Male              12th grade     NA        NA
## 12310                    <NA> Female                    <NA>     NA        NA
## 12311                    <NA>   Male                    <NA>     NA        NA
## 12312            17 years old Female              12th grade   1.65  5.413386
## 12313   18 years old or older   Male              12th grade   1.70  5.577428
## 12314   18 years old or older Female                    <NA>   1.70  5.577428
## 12315                    <NA> Female              12th grade     NA        NA
## 12316            17 years old   Male              12th grade   1.80  5.905512
## 12317            17 years old   Male              12th grade   1.78  5.839895
## 12318   18 years old or older   Male              12th grade   1.83  6.003937
## 12319   18 years old or older   Male              12th grade   1.83  6.003937
## 12320   18 years old or older   Male              12th grade   1.73  5.675853
## 12321                    <NA> Female              12th grade     NA        NA
## 12322            17 years old Female                    <NA>     NA        NA
## 12323            17 years old Female              12th grade   1.57  5.150919
## 12324            16 years old   Male              10th grade   1.88  6.167979
## 12325            17 years old Female              11th grade     NA        NA
## 12326            16 years old   Male              10th grade   1.70  5.577428
## 12327            15 years old   Male               9th grade     NA        NA
## 12328            17 years old   Male              11th grade   1.75  5.741470
## 12329            16 years old Female               9th grade   1.63  5.347769
## 12330   18 years old or older   Male               9th grade     NA        NA
## 12331            15 years old Female               9th grade     NA        NA
## 12332            15 years old Female               9th grade     NA        NA
## 12333            16 years old   Male                    <NA>   1.65  5.413386
## 12334            16 years old   Male              10th grade   1.52  4.986877
## 12335            17 years old Female              11th grade     NA        NA
## 12336   18 years old or older   Male              12th grade   1.68  5.511811
## 12337            16 years old   Male              10th grade     NA        NA
## 12338            17 years old Female              11th grade   1.55  5.085302
## 12339   18 years old or older Female              12th grade   1.50  4.921260
## 12340   18 years old or older   Male              12th grade     NA        NA
## 12341            16 years old Female              10th grade     NA        NA
## 12342            13 years old Female               9th grade   1.63  5.347769
## 12343            14 years old   Male               9th grade   1.75  5.741470
## 12344            15 years old   Male               9th grade   1.73  5.675853
## 12345            15 years old Female               9th grade   1.60  5.249344
## 12346            14 years old Female               9th grade     NA        NA
## 12347            15 years old Female               9th grade   1.68  5.511811
## 12348            14 years old Female               9th grade   1.63  5.347769
## 12349            14 years old Female               9th grade   1.55  5.085302
## 12350            15 years old Female               9th grade   1.60  5.249344
## 12351            16 years old   Male               9th grade   1.75  5.741470
## 12352            14 years old Female               9th grade     NA        NA
## 12353            14 years old Female               9th grade   1.50  4.921260
## 12354            14 years old Female               9th grade   1.57  5.150919
## 12355            15 years old Female               9th grade   1.65  5.413386
## 12356            14 years old   Male               9th grade   1.73  5.675853
## 12357            14 years old   Male               9th grade   1.83  6.003937
## 12358            14 years old   Male               9th grade   1.80  5.905512
## 12359            14 years old   Male               9th grade   1.75  5.741470
## 12360            15 years old   Male               9th grade   1.80  5.905512
## 12361            15 years old Female               9th grade   1.60  5.249344
## 12362            14 years old Female               9th grade   1.50  4.921260
## 12363            15 years old Female               9th grade   1.50  4.921260
## 12364            14 years old Female               9th grade     NA        NA
## 12365            15 years old   Male               9th grade   1.73  5.675853
## 12366            14 years old Female               9th grade   1.55  5.085302
## 12367            15 years old   Male               9th grade   1.73  5.675853
## 12368            14 years old Female               9th grade   1.63  5.347769
## 12369            14 years old Female               9th grade   1.63  5.347769
## 12370            14 years old Female               9th grade   1.68  5.511811
## 12371            15 years old   Male               9th grade   1.60  5.249344
## 12372            15 years old   Male               9th grade   1.57  5.150919
## 12373            14 years old   Male               9th grade     NA        NA
## 12374            15 years old Female              10th grade   1.60  5.249344
## 12375            16 years old Female              10th grade   1.57  5.150919
## 12376            15 years old   Male              10th grade     NA        NA
## 12377            16 years old   Male              10th grade   1.75  5.741470
## 12378            16 years old   Male              10th grade   1.93  6.332021
## 12379            15 years old   Male              10th grade   1.60  5.249344
## 12380            15 years old Female              10th grade     NA        NA
## 12381            15 years old   Male              10th grade   1.80  5.905512
## 12382            16 years old   Male              10th grade   1.78  5.839895
## 12383            15 years old Female              10th grade   1.57  5.150919
## 12384            16 years old Female              10th grade   1.52  4.986877
## 12385            15 years old   Male              10th grade   1.90  6.233596
## 12386 12 years old or younger   Male              10th grade     NA        NA
## 12387            17 years old   Male              10th grade   1.75  5.741470
## 12388            16 years old   Male              10th grade   1.68  5.511811
## 12389            16 years old   Male              10th grade   1.83  6.003937
## 12390            15 years old   Male              10th grade   1.78  5.839895
## 12391            15 years old Female              10th grade   1.70  5.577428
## 12392            15 years old   Male              10th grade   1.90  6.233596
## 12393            15 years old Female              10th grade     NA        NA
## 12394            16 years old   Male              10th grade   1.68  5.511811
## 12395            15 years old Female              10th grade   1.57  5.150919
## 12396            16 years old   Male              10th grade   1.85  6.069554
## 12397            16 years old   Male              10th grade   1.63  5.347769
## 12398            15 years old Female              10th grade   1.80  5.905512
## 12399            16 years old Female              10th grade   1.55  5.085302
## 12400            16 years old Female              10th grade     NA        NA
## 12401            16 years old Female              10th grade   1.70  5.577428
## 12402            16 years old Female              10th grade   1.60  5.249344
## 12403            14 years old Female              10th grade   1.57  5.150919
## 12404            17 years old Female              10th grade   1.57  5.150919
## 12405            15 years old Female              10th grade     NA        NA
## 12406            15 years old   Male              10th grade   1.68  5.511811
## 12407            17 years old Female              11th grade   1.65  5.413386
## 12408            17 years old   <NA>              11th grade     NA        NA
## 12409            17 years old Female              11th grade   1.60  5.249344
## 12410            17 years old   Male              11th grade   1.80  5.905512
## 12411            16 years old Female              11th grade   1.60  5.249344
## 12412            17 years old Female              11th grade   1.70  5.577428
## 12413            16 years old   Male              11th grade     NA        NA
## 12414            16 years old   <NA>              11th grade     NA        NA
## 12415   18 years old or older Female              11th grade   1.57  5.150919
## 12416            16 years old   Male              11th grade   1.83  6.003937
## 12417            17 years old Female              11th grade   1.60  5.249344
## 12418   18 years old or older   Male              11th grade   1.78  5.839895
## 12419            17 years old Female              11th grade     NA        NA
## 12420            16 years old Female              11th grade   1.63  5.347769
## 12421            17 years old   Male              11th grade   1.75  5.741470
## 12422            17 years old   Male              11th grade   1.83  6.003937
## 12423            16 years old Female              11th grade   1.70  5.577428
## 12424            17 years old Female              11th grade   1.70  5.577428
## 12425            16 years old Female              11th grade   1.73  5.675853
## 12426            16 years old   Male              11th grade   1.78  5.839895
## 12427            16 years old   Male              11th grade   1.78  5.839895
## 12428            16 years old   Male              11th grade   1.85  6.069554
## 12429            16 years old Female              11th grade   1.55  5.085302
## 12430            17 years old Female              11th grade     NA        NA
## 12431            16 years old Female              11th grade   1.63  5.347769
## 12432            16 years old Female              11th grade   1.65  5.413386
## 12433            16 years old   Male              11th grade   1.83  6.003937
## 12434   18 years old or older Female              12th grade   1.55  5.085302
## 12435            17 years old Female              12th grade   1.57  5.150919
## 12436   18 years old or older   Male              12th grade   1.78  5.839895
## 12437   18 years old or older   Male              12th grade   1.80  5.905512
## 12438   18 years old or older   Male              12th grade   1.68  5.511811
## 12439            17 years old Female              12th grade   1.65  5.413386
## 12440   18 years old or older Female              12th grade   1.65  5.413386
## 12441   18 years old or older Female              12th grade   1.63  5.347769
## 12442            17 years old   Male              12th grade   1.83  6.003937
## 12443   18 years old or older   Male              12th grade   1.85  6.069554
## 12444   18 years old or older Female              12th grade   1.55  5.085302
## 12445   18 years old or older   Male              12th grade   1.70  5.577428
## 12446   18 years old or older   Male              12th grade   1.75  5.741470
## 12447            17 years old Female              12th grade   1.57  5.150919
## 12448            17 years old Female              12th grade   1.63  5.347769
## 12449            14 years old Female               9th grade   1.57  5.150919
## 12450            15 years old Female               9th grade   1.63  5.347769
## 12451            15 years old   Male               9th grade   1.60  5.249344
## 12452            14 years old   Male               9th grade   1.85  6.069554
## 12453            14 years old   Male               9th grade   1.63  5.347769
## 12454            15 years old   Male               9th grade   1.85  6.069554
## 12455            14 years old Female               9th grade   1.50  4.921260
## 12456            15 years old Female               9th grade   1.73  5.675853
## 12457            15 years old   Male               9th grade   1.70  5.577428
## 12458            15 years old Female               9th grade   1.55  5.085302
## 12459            15 years old Female               9th grade   1.63  5.347769
## 12460            14 years old   Male               9th grade   1.80  5.905512
## 12461            15 years old   Male               9th grade   1.68  5.511811
## 12462            15 years old Female               9th grade   1.57  5.150919
## 12463            14 years old Female               9th grade   1.73  5.675853
## 12464            14 years old   Male               9th grade   1.78  5.839895
## 12465            14 years old   Male               9th grade   1.83  6.003937
## 12466            15 years old   Male              10th grade   1.75  5.741470
## 12467            15 years old   Male              10th grade   1.75  5.741470
## 12468            15 years old Female              10th grade   1.70  5.577428
## 12469            16 years old   Male              10th grade   1.60  5.249344
## 12470            16 years old Female              10th grade   1.60  5.249344
## 12471            15 years old Female              10th grade   1.57  5.150919
## 12472            16 years old Female              10th grade   1.60  5.249344
## 12473            16 years old   Male              10th grade   1.78  5.839895
## 12474            15 years old Female              10th grade   1.60  5.249344
## 12475            16 years old Female              10th grade   1.60  5.249344
## 12476            16 years old Female              10th grade   1.60  5.249344
## 12477            16 years old   Male              10th grade     NA        NA
## 12478            16 years old Female              10th grade   1.68  5.511811
## 12479            15 years old Female              10th grade   1.55  5.085302
## 12480            15 years old   Male              10th grade   1.55  5.085302
## 12481            16 years old Female              11th grade   1.78  5.839895
## 12482            17 years old   Male              11th grade   1.73  5.675853
## 12483            16 years old Female              11th grade   1.57  5.150919
## 12484            16 years old Female              11th grade   1.65  5.413386
## 12485            17 years old Female              11th grade   1.63  5.347769
## 12486            17 years old Female              11th grade   1.65  5.413386
## 12487            16 years old Female              11th grade   1.55  5.085302
## 12488            17 years old   Male              11th grade   1.75  5.741470
## 12489            17 years old Female              11th grade     NA        NA
## 12490            16 years old Female              11th grade   1.60  5.249344
## 12491            17 years old Female              11th grade   1.68  5.511811
## 12492            16 years old   Male              11th grade   1.73  5.675853
## 12493            16 years old   Male              11th grade   1.88  6.167979
## 12494            17 years old   Male              11th grade   1.68  5.511811
## 12495            16 years old   Male              11th grade   1.80  5.905512
## 12496            16 years old Female              11th grade   1.68  5.511811
## 12497            16 years old   Male              11th grade     NA        NA
## 12498            17 years old   Male              11th grade   1.83  6.003937
## 12499            17 years old   Male              11th grade     NA        NA
##       weight         Sexual_identity Neg_mental_health
## 1      81.65          Gay or lesbian             Never
## 2         NA Heterosexual (straight)         Sometimes
## 3      74.84                Bisexual            Rarely
## 4         NA Heterosexual (straight)         Sometimes
## 5      56.70 Heterosexual (straight)         Sometimes
## 6      72.58 Heterosexual (straight)              <NA>
## 7      74.84 Heterosexual (straight)         Sometimes
## 8      73.48                Bisexual            Rarely
## 9      61.24                Bisexual         Sometimes
## 10     53.07                Bisexual             Never
## 11     63.50 Heterosexual (straight)             Never
## 12     72.12 Heterosexual (straight)             Never
## 13     65.77 Heterosexual (straight)             Never
## 14    136.08 Heterosexual (straight)             Never
## 15     73.94 Heterosexual (straight)             Never
## 16     97.52                Not sure  Most of the time
## 17    122.47 Heterosexual (straight)             Never
## 18     68.04 Heterosexual (straight)         Sometimes
## 19     49.90                Bisexual         Sometimes
## 20     52.16 Heterosexual (straight)         Sometimes
## 21        NA                Bisexual         Sometimes
## 22    131.54 Heterosexual (straight)         Sometimes
## 23     95.26 Heterosexual (straight)            Rarely
## 24     83.01 Heterosexual (straight)             Never
## 25     59.88                Bisexual            Rarely
## 26     68.04          Gay or lesbian  Most of the time
## 27     47.17          Some other way            Always
## 28     74.84 Heterosexual (straight)             Never
## 29     83.92 Heterosexual (straight)         Sometimes
## 30     74.84 Heterosexual (straight)         Sometimes
## 31     63.50 Heterosexual (straight)            Rarely
## 32     70.31          Some other way            Rarely
## 33     79.38 Heterosexual (straight)             Never
## 34     63.50 Heterosexual (straight)  Most of the time
## 35     62.60                Bisexual            Always
## 36     69.85 Heterosexual (straight)            Rarely
## 37     53.07 Heterosexual (straight)         Sometimes
## 38    111.13 Heterosexual (straight)             Never
## 39    122.47 Heterosexual (straight)            Rarely
## 40     70.31 Heterosexual (straight)             Never
## 41     57.15 Heterosexual (straight)            Rarely
## 42     56.70 Heterosexual (straight)             Never
## 43     44.45 Heterosexual (straight)  Most of the time
## 44     73.48                Bisexual         Sometimes
## 45     79.38 Heterosexual (straight)            Always
## 46     83.92 Heterosexual (straight)            Rarely
## 47     54.89 Heterosexual (straight)            Always
## 48     70.76                Bisexual  Most of the time
## 49     49.90 Heterosexual (straight)  Most of the time
## 50     56.70          Some other way  Most of the time
## 51     53.52                Bisexual             Never
## 52     72.58 Heterosexual (straight)         Sometimes
## 53     99.79 Heterosexual (straight)             Never
## 54     77.11 Heterosexual (straight)            Rarely
## 55     80.74 Heterosexual (straight)            Rarely
## 56     86.18 Heterosexual (straight)            Rarely
## 57        NA Heterosexual (straight)            Rarely
## 58    122.47 Heterosexual (straight)            Rarely
## 59     61.24          Gay or lesbian             Never
## 60        NA          Gay or lesbian            Always
## 61     65.77 Heterosexual (straight)            Rarely
## 62    111.13                Not sure            Rarely
## 63     70.31 Heterosexual (straight)             Never
## 64     65.77          Gay or lesbian         Sometimes
## 65     40.82                Bisexual             Never
## 66     54.43 Heterosexual (straight)            Rarely
## 67     61.24 Heterosexual (straight)         Sometimes
## 68     86.18 Heterosexual (straight)            Rarely
## 69    113.40 Heterosexual (straight)            Always
## 70     61.24 Heterosexual (straight)             Never
## 71     68.04 Heterosexual (straight)         Sometimes
## 72     83.92                Bisexual             Never
## 73     79.38 Heterosexual (straight)  Most of the time
## 74     54.43 Heterosexual (straight)         Sometimes
## 75     90.72 Heterosexual (straight)              <NA>
## 76     56.70 Heterosexual (straight)         Sometimes
## 77     90.72 Heterosexual (straight)             Never
## 78     74.39 Heterosexual (straight)  Most of the time
## 79     46.72          Gay or lesbian            Rarely
## 80     58.51 Heterosexual (straight)         Sometimes
## 81     72.58 Heterosexual (straight)            Rarely
## 82     44.45          Some other way  Most of the time
## 83     81.65                Not sure            Always
## 84     89.81                Bisexual  Most of the time
## 85     70.31 Heterosexual (straight)         Sometimes
## 86     61.69 Heterosexual (straight)         Sometimes
## 87    113.40          Gay or lesbian         Sometimes
## 88     74.84 Heterosexual (straight)             Never
## 89     62.60 Heterosexual (straight)            Rarely
## 90     71.67 Heterosexual (straight)            Rarely
## 91     54.43 Heterosexual (straight)             Never
## 92     67.59 Heterosexual (straight)            Rarely
## 93        NA                Not sure  Most of the time
## 94     63.50 Heterosexual (straight)         Sometimes
## 95     83.92 Heterosexual (straight)  Most of the time
## 96     72.58                Not sure             Never
## 97     66.68 Heterosexual (straight)  Most of the time
## 98     72.58 Heterosexual (straight)             Never
## 99     78.02 Heterosexual (straight)             Never
## 100    74.84 Heterosexual (straight)  Most of the time
## 101    50.80 Heterosexual (straight)            Always
## 102   108.86 Heterosexual (straight)            Rarely
## 103    56.70 Heterosexual (straight)         Sometimes
## 104    79.38 Heterosexual (straight)            Rarely
## 105    72.58 Heterosexual (straight)         Sometimes
## 106    58.97 Heterosexual (straight)         Sometimes
## 107    53.07 Heterosexual (straight)         Sometimes
## 108    66.23                Bisexual  Most of the time
## 109    62.14          Some other way            Always
## 110    83.92 Heterosexual (straight)            Always
## 111    89.81 Heterosexual (straight)            Rarely
## 112    97.52 Heterosexual (straight)         Sometimes
## 113    54.43 Heterosexual (straight)         Sometimes
## 114    72.58                Bisexual  Most of the time
## 115    54.89 Heterosexual (straight)            Rarely
## 116    63.50 Heterosexual (straight)         Sometimes
## 117    77.11 Heterosexual (straight)         Sometimes
## 118    62.60                Bisexual            Always
## 119    68.04                Bisexual            Always
## 120    83.92 Heterosexual (straight)         Sometimes
## 121    88.91                Bisexual            Always
## 122    78.93 Heterosexual (straight)            Always
## 123    49.90 Heterosexual (straight)             Never
## 124    54.89          Some other way         Sometimes
## 125    97.52 Heterosexual (straight)             Never
## 126    71.22 Heterosexual (straight)            Always
## 127    66.23 Heterosexual (straight)            Rarely
## 128    64.86 Heterosexual (straight)             Never
## 129    68.04                Bisexual            Rarely
## 130    68.04          Some other way  Most of the time
## 131    70.31 Heterosexual (straight)             Never
## 132    77.11 Heterosexual (straight)  Most of the time
## 133    48.54 Heterosexual (straight)  Most of the time
## 134    83.92 Heterosexual (straight)         Sometimes
## 135    99.79 Heterosexual (straight)         Sometimes
## 136       NA Heterosexual (straight)             Never
## 137   104.33 Heterosexual (straight)            Rarely
## 138    68.04 Heterosexual (straight)             Never
## 139    56.70 Heterosexual (straight)  Most of the time
## 140    60.33 Heterosexual (straight)             Never
## 141    68.04 Heterosexual (straight)            Rarely
## 142    54.43 Heterosexual (straight)         Sometimes
## 143    68.04 Heterosexual (straight)              <NA>
## 144    56.70 Heterosexual (straight)             Never
## 145   111.13 Heterosexual (straight)             Never
## 146    99.79 Heterosexual (straight)            Rarely
## 147    40.82                Not sure  Most of the time
## 148    61.24 Heterosexual (straight)            Rarely
## 149    97.98          Gay or lesbian            Rarely
## 150    75.30 Heterosexual (straight)             Never
## 151    64.86 Heterosexual (straight)         Sometimes
## 152    86.18 Heterosexual (straight)            Rarely
## 153    60.78 Heterosexual (straight)         Sometimes
## 154    82.56                Bisexual         Sometimes
## 155    70.76 Heterosexual (straight)         Sometimes
## 156   131.54 Heterosexual (straight)  Most of the time
## 157    70.76 Heterosexual (straight)             Never
## 158   127.01 Heterosexual (straight)  Most of the time
## 159       NA          Some other way  Most of the time
## 160    73.03 Heterosexual (straight)            Rarely
## 161       NA Heterosexual (straight)            Rarely
## 162    75.30 Heterosexual (straight)             Never
## 163    79.83                Bisexual            Rarely
## 164   104.33 Heterosexual (straight)  Most of the time
## 165    68.95 Heterosexual (straight)         Sometimes
## 166    66.23 Heterosexual (straight)         Sometimes
## 167    88.45 Heterosexual (straight)             Never
## 168       NA Heterosexual (straight)             Never
## 169    53.52 Heterosexual (straight)            Rarely
## 170       NA                Bisexual         Sometimes
## 171    63.50 Heterosexual (straight)             Never
## 172    88.91 Heterosexual (straight)            Rarely
## 173    77.11 Heterosexual (straight)  Most of the time
## 174    56.70 Heterosexual (straight)  Most of the time
## 175    50.35 Heterosexual (straight)             Never
## 176    58.97 Heterosexual (straight)            Always
## 177    54.43 Heterosexual (straight)            Always
## 178    47.17 Heterosexual (straight)  Most of the time
## 179    64.41          Gay or lesbian         Sometimes
## 180    92.99 Heterosexual (straight)             Never
## 181    52.62                Bisexual             Never
## 182    61.24 Heterosexual (straight)             Never
## 183   172.37 Heterosexual (straight)         Sometimes
## 184    55.79 Heterosexual (straight)            Rarely
## 185    70.76                Bisexual  Most of the time
## 186       NA Heterosexual (straight)             Never
## 187    76.20 Heterosexual (straight)  Most of the time
## 188    52.16 Heterosexual (straight)  Most of the time
## 189    97.52 Heterosexual (straight)            Rarely
## 190    79.38                Not sure  Most of the time
## 191    84.37 Heterosexual (straight)         Sometimes
## 192    77.11                Bisexual         Sometimes
## 193    50.80 Heterosexual (straight)         Sometimes
## 194    68.04                Bisexual  Most of the time
## 195   111.13 Heterosexual (straight)             Never
## 196   102.06 Heterosexual (straight)  Most of the time
## 197    59.88 Heterosexual (straight)            Rarely
## 198    68.49 Heterosexual (straight)            Rarely
## 199    58.97          Some other way         Sometimes
## 200    56.70          Gay or lesbian  Most of the time
## 201    86.18                Bisexual            Always
## 202    86.64          Some other way         Sometimes
## 203    58.97 Heterosexual (straight)         Sometimes
## 204   117.94                Bisexual         Sometimes
## 205    73.94 Heterosexual (straight)         Sometimes
## 206    77.11 Heterosexual (straight)         Sometimes
## 207       NA Heterosexual (straight)  Most of the time
## 208   102.97 Heterosexual (straight)            Rarely
## 209    61.24 Heterosexual (straight)            Rarely
## 210    63.50 Heterosexual (straight)         Sometimes
## 211    68.04 Heterosexual (straight)         Sometimes
## 212    68.04 Heterosexual (straight)             Never
## 213       NA Heterosexual (straight)  Most of the time
## 214    88.45 Heterosexual (straight)             Never
## 215       NA          Gay or lesbian         Sometimes
## 216    87.09 Heterosexual (straight)             Never
## 217    98.88 Heterosexual (straight)            Always
## 218    56.70 Heterosexual (straight)            Rarely
## 219    82.56                Bisexual         Sometimes
## 220    59.42 Heterosexual (straight)            Always
## 221    73.03                Not sure             Never
## 222    58.97 Heterosexual (straight)            Always
## 223   107.05 Heterosexual (straight)  Most of the time
## 224    72.58 Heterosexual (straight)             Never
## 225    54.43 Heterosexual (straight)             Never
## 226    61.24          Gay or lesbian            Rarely
## 227    86.18 Heterosexual (straight)             Never
## 228   114.31 Heterosexual (straight)         Sometimes
## 229    61.24 Heterosexual (straight)  Most of the time
## 230    71.22 Heterosexual (straight)             Never
## 231    72.12                Not sure            Always
## 232    54.89          Gay or lesbian  Most of the time
## 233    63.50 Heterosexual (straight)              <NA>
## 234    63.50 Heterosexual (straight)            Always
## 235    49.90 Heterosexual (straight)             Never
## 236    92.53                Bisexual             Never
## 237    52.16 Heterosexual (straight)  Most of the time
## 238    85.28          Gay or lesbian         Sometimes
## 239    58.06 Heterosexual (straight)             Never
## 240    61.24 Heterosexual (straight)            Rarely
## 241    68.04                Bisexual  Most of the time
## 242    68.04                Bisexual             Never
## 243    48.54                Not sure             Never
## 244    62.14 Heterosexual (straight)         Sometimes
## 245    53.98 Heterosexual (straight)         Sometimes
## 246    85.73          Gay or lesbian         Sometimes
## 247    61.24 Heterosexual (straight)             Never
## 248    61.24 Heterosexual (straight)         Sometimes
## 249    56.70 Heterosexual (straight)         Sometimes
## 250    54.43 Heterosexual (straight)             Never
## 251    55.34 Heterosexual (straight)              <NA>
## 252    60.78 Heterosexual (straight)            Rarely
## 253   147.42 Heterosexual (straight)            Rarely
## 254    58.97 Heterosexual (straight)            Rarely
## 255    56.70 Heterosexual (straight)            Rarely
## 256       NA Heterosexual (straight)         Sometimes
## 257       NA Heterosexual (straight)            Rarely
## 258    54.43          Some other way            Always
## 259    90.72 Heterosexual (straight)             Never
## 260       NA Heterosexual (straight)            Rarely
## 261    61.24 Heterosexual (straight)  Most of the time
## 262    54.43 Heterosexual (straight)  Most of the time
## 263    49.90 Heterosexual (straight)         Sometimes
## 264    50.80 Heterosexual (straight)         Sometimes
## 265       NA Heterosexual (straight)              <NA>
## 266    58.97 Heterosexual (straight)             Never
## 267    65.77 Heterosexual (straight)            Rarely
## 268   106.60 Heterosexual (straight)  Most of the time
## 269    61.24 Heterosexual (straight)            Rarely
## 270    81.65 Heterosexual (straight)             Never
## 271       NA                Not sure         Sometimes
## 272    81.65 Heterosexual (straight)         Sometimes
## 273       NA                Bisexual         Sometimes
## 274    52.16 Heterosexual (straight)         Sometimes
## 275    81.65                Bisexual  Most of the time
## 276    68.04 Heterosexual (straight)            Rarely
## 277    58.97 Heterosexual (straight)  Most of the time
## 278   131.54 Heterosexual (straight)            Rarely
## 279    67.13                Bisexual         Sometimes
## 280    84.37 Heterosexual (straight)              <NA>
## 281    89.36 Heterosexual (straight)              <NA>
## 282    55.79 Heterosexual (straight)            Rarely
## 283    72.58                Bisexual  Most of the time
## 284       NA                Bisexual  Most of the time
## 285    63.05 Heterosexual (straight)             Never
## 286    74.84 Heterosexual (straight)             Never
## 287    88.45 Heterosexual (straight)         Sometimes
## 288    58.97 Heterosexual (straight)         Sometimes
## 289    61.24                Bisexual            Always
## 290    61.24 Heterosexual (straight)            Always
## 291    72.58 Heterosexual (straight)             Never
## 292    63.50 Heterosexual (straight)            Always
## 293    65.77 Heterosexual (straight)             Never
## 294   104.33 Heterosexual (straight)         Sometimes
## 295    54.89 Heterosexual (straight)            Rarely
## 296    66.68 Heterosexual (straight)             Never
## 297    54.43 Heterosexual (straight)  Most of the time
## 298    81.19 Heterosexual (straight)            Rarely
## 299   124.74 Heterosexual (straight)         Sometimes
## 300    59.42 Heterosexual (straight)             Never
## 301    70.31 Heterosexual (straight)  Most of the time
## 302       NA Heterosexual (straight)         Sometimes
## 303    53.98 Heterosexual (straight)             Never
## 304    81.65 Heterosexual (straight)  Most of the time
## 305    62.60 Heterosexual (straight)             Never
## 306    87.09 Heterosexual (straight)         Sometimes
## 307   113.40 Heterosexual (straight)         Sometimes
## 308    50.80 Heterosexual (straight)         Sometimes
## 309    46.27                Bisexual         Sometimes
## 310    82.10 Heterosexual (straight)            Rarely
## 311    61.24                Bisexual         Sometimes
## 312    40.82 Heterosexual (straight)            Rarely
## 313    97.98          Gay or lesbian         Sometimes
## 314       NA Heterosexual (straight)              <NA>
## 315       NA                Bisexual  Most of the time
## 316    79.38 Heterosexual (straight)         Sometimes
## 317    92.99 Heterosexual (straight)              <NA>
## 318    68.04                Not sure         Sometimes
## 319    66.23 Heterosexual (straight)             Never
## 320    86.18 Heterosexual (straight)         Sometimes
## 321    53.07                Bisexual  Most of the time
## 322       NA                Not sure         Sometimes
## 323    49.44 Heterosexual (straight)            Rarely
## 324    49.90 Heterosexual (straight)            Rarely
## 325       NA Heterosexual (straight)  Most of the time
## 326    49.90 Heterosexual (straight)            Rarely
## 327    68.04 Heterosexual (straight)             Never
## 328    63.05 Heterosexual (straight)              <NA>
## 329       NA                Bisexual         Sometimes
## 330       NA                Bisexual            Always
## 331    62.60                Bisexual            Rarely
## 332    67.59 Heterosexual (straight)            Rarely
## 333       NA Heterosexual (straight)            Rarely
## 334    88.91                Not sure             Never
## 335   108.41 Heterosexual (straight)            Rarely
## 336    56.70 Heterosexual (straight)            Always
## 337    52.16 Heterosexual (straight)  Most of the time
## 338    54.43 Heterosexual (straight)         Sometimes
## 339    79.38 Heterosexual (straight)            Always
## 340    68.04 Heterosexual (straight)  Most of the time
## 341    61.24 Heterosexual (straight)             Never
## 342   108.86 Heterosexual (straight)            Rarely
## 343       NA Heterosexual (straight)            Rarely
## 344    58.51 Heterosexual (straight)            Rarely
## 345    67.13 Heterosexual (straight)             Never
## 346    82.56                Bisexual         Sometimes
## 347   101.15 Heterosexual (straight)            Rarely
## 348    62.14 Heterosexual (straight)              <NA>
## 349    72.12                Bisexual             Never
## 350    68.04 Heterosexual (straight)            Always
## 351    49.90                Bisexual  Most of the time
## 352    49.90 Heterosexual (straight)             Never
## 353    42.18                Not sure  Most of the time
## 354    58.97 Heterosexual (straight)            Rarely
## 355    96.62 Heterosexual (straight)            Rarely
## 356    79.38 Heterosexual (straight)            Rarely
## 357    61.24                Bisexual         Sometimes
## 358    44.45          Some other way            Always
## 359    54.43 Heterosexual (straight)  Most of the time
## 360   113.40 Heterosexual (straight)  Most of the time
## 361    58.97 Heterosexual (straight)  Most of the time
## 362    54.43 Heterosexual (straight)            Rarely
## 363    56.70 Heterosexual (straight)             Never
## 364    52.62 Heterosexual (straight)         Sometimes
## 365    74.84 Heterosexual (straight)            Rarely
## 366    83.92                Not sure  Most of the time
## 367    76.20 Heterosexual (straight)            Rarely
## 368    47.17 Heterosexual (straight)  Most of the time
## 369    56.70 Heterosexual (straight)            Rarely
## 370    79.38 Heterosexual (straight)  Most of the time
## 371    49.90 Heterosexual (straight)            Rarely
## 372    60.78 Heterosexual (straight)  Most of the time
## 373    83.92 Heterosexual (straight)         Sometimes
## 374    83.46          Some other way         Sometimes
## 375    52.16                Bisexual  Most of the time
## 376    47.63 Heterosexual (straight)  Most of the time
## 377    56.25                Not sure  Most of the time
## 378    45.36 Heterosexual (straight)  Most of the time
## 379    49.90 Heterosexual (straight)         Sometimes
## 380    56.70 Heterosexual (straight)         Sometimes
## 381    52.62 Heterosexual (straight)  Most of the time
## 382    65.32 Heterosexual (straight)             Never
## 383    68.04 Heterosexual (straight)            Always
## 384    57.61 Heterosexual (straight)         Sometimes
## 385    57.61 Heterosexual (straight)             Never
## 386    56.70 Heterosexual (straight)  Most of the time
## 387    48.99 Heterosexual (straight)         Sometimes
## 388    72.58 Heterosexual (straight)            Rarely
## 389    56.70 Heterosexual (straight)            Rarely
## 390    70.31 Heterosexual (straight)            Rarely
## 391    63.50 Heterosexual (straight)             Never
## 392    81.65 Heterosexual (straight)         Sometimes
## 393    48.54 Heterosexual (straight)  Most of the time
## 394    68.04 Heterosexual (straight)         Sometimes
## 395    72.58 Heterosexual (straight)            Rarely
## 396       NA Heterosexual (straight)            Rarely
## 397    78.02 Heterosexual (straight)            Rarely
## 398    58.06 Heterosexual (straight)         Sometimes
## 399    77.11 Heterosexual (straight)             Never
## 400    74.84 Heterosexual (straight)         Sometimes
## 401    58.06 Heterosexual (straight)         Sometimes
## 402    51.26 Heterosexual (straight)            Always
## 403    86.18 Heterosexual (straight)             Never
## 404    61.69 Heterosexual (straight)             Never
## 405    61.24 Heterosexual (straight)         Sometimes
## 406    87.09 Heterosexual (straight)  Most of the time
## 407    72.58 Heterosexual (straight)             Never
## 408    58.97 Heterosexual (straight)  Most of the time
## 409    68.95 Heterosexual (straight)            Rarely
## 410    54.43                Bisexual            Rarely
## 411    70.31 Heterosexual (straight)         Sometimes
## 412    70.31 Heterosexual (straight)         Sometimes
## 413    68.04 Heterosexual (straight)         Sometimes
## 414    83.01 Heterosexual (straight)             Never
## 415    66.23 Heterosexual (straight)         Sometimes
## 416    64.86 Heterosexual (straight)            Rarely
## 417   117.94 Heterosexual (straight)         Sometimes
## 418    54.43 Heterosexual (straight)            Rarely
## 419    61.24 Heterosexual (straight)            Rarely
## 420    65.77 Heterosexual (straight)            Rarely
## 421    52.16 Heterosexual (straight)  Most of the time
## 422    60.33 Heterosexual (straight)            Rarely
## 423    83.92 Heterosexual (straight)         Sometimes
## 424    65.32 Heterosexual (straight)         Sometimes
## 425    58.97 Heterosexual (straight)             Never
## 426    77.11          Gay or lesbian  Most of the time
## 427    58.97 Heterosexual (straight)            Rarely
## 428    54.43 Heterosexual (straight)            Rarely
## 429    50.80 Heterosexual (straight)         Sometimes
## 430    69.40                Not sure         Sometimes
## 431    99.79 Heterosexual (straight)             Never
## 432    74.84 Heterosexual (straight)         Sometimes
## 433    72.58 Heterosexual (straight)            Rarely
## 434    58.97 Heterosexual (straight)            Rarely
## 435    68.04 Heterosexual (straight)            Rarely
## 436    74.84 Heterosexual (straight)         Sometimes
## 437    79.38 Heterosexual (straight)            Always
## 438    77.11 Heterosexual (straight)         Sometimes
## 439    61.24 Heterosexual (straight)            Rarely
## 440   104.33 Heterosexual (straight)  Most of the time
## 441    68.95          Gay or lesbian              <NA>
## 442    61.24 Heterosexual (straight)         Sometimes
## 443       NA          Gay or lesbian  Most of the time
## 444    97.52 Heterosexual (straight)         Sometimes
## 445    68.95 Heterosexual (straight)             Never
## 446    67.13 Heterosexual (straight)            Rarely
## 447    56.70 Heterosexual (straight)            Rarely
## 448    79.38 Heterosexual (straight)             Never
## 449    70.76                Bisexual  Most of the time
## 450    56.70 Heterosexual (straight)         Sometimes
## 451       NA Heterosexual (straight)         Sometimes
## 452    58.97                Bisexual         Sometimes
## 453    40.82 Heterosexual (straight)            Rarely
## 454    56.25 Heterosexual (straight)         Sometimes
## 455    49.44 Heterosexual (straight)            Rarely
## 456    72.58 Heterosexual (straight)            Rarely
## 457    85.73 Heterosexual (straight)             Never
## 458    90.72 Heterosexual (straight)             Never
## 459    87.54 Heterosexual (straight)             Never
## 460    77.11 Heterosexual (straight)             Never
## 461    86.18 Heterosexual (straight)             Never
## 462   104.33          Some other way            Always
## 463    97.98 Heterosexual (straight)             Never
## 464    61.24 Heterosexual (straight)             Never
## 465    83.92 Heterosexual (straight)             Never
## 466    70.31 Heterosexual (straight)             Never
## 467    77.11 Heterosexual (straight)         Sometimes
## 468    89.36 Heterosexual (straight)             Never
## 469   113.40 Heterosexual (straight)             Never
## 470    63.50 Heterosexual (straight)  Most of the time
## 471    57.61 Heterosexual (straight)            Rarely
## 472    52.16 Heterosexual (straight)            Rarely
## 473    49.90 Heterosexual (straight)         Sometimes
## 474    52.16 Heterosexual (straight)            Rarely
## 475    46.72 Heterosexual (straight)  Most of the time
## 476    81.65 Heterosexual (straight)             Never
## 477    68.04                Bisexual  Most of the time
## 478    64.86 Heterosexual (straight)            Rarely
## 479       NA Heterosexual (straight)             Never
## 480       NA          Gay or lesbian            Always
## 481    65.77 Heterosexual (straight)            Rarely
## 482    81.65 Heterosexual (straight)         Sometimes
## 483    62.60          Gay or lesbian         Sometimes
## 484    48.08 Heterosexual (straight)         Sometimes
## 485    47.63 Heterosexual (straight)            Rarely
## 486    79.38 Heterosexual (straight)              <NA>
## 487       NA                Bisexual             Never
## 488    61.24 Heterosexual (straight)            Rarely
## 489    68.04 Heterosexual (straight)             Never
## 490    86.18 Heterosexual (straight)             Never
## 491    96.62 Heterosexual (straight)         Sometimes
## 492       NA Heterosexual (straight)             Never
## 493   120.20 Heterosexual (straight)         Sometimes
## 494       NA Heterosexual (straight)         Sometimes
## 495    81.65 Heterosexual (straight)  Most of the time
## 496    63.50          Gay or lesbian  Most of the time
## 497    65.77 Heterosexual (straight)         Sometimes
## 498    68.04                Bisexual  Most of the time
## 499   127.01 Heterosexual (straight)         Sometimes
## 500       NA          Gay or lesbian             Never
## 501    61.24 Heterosexual (straight)         Sometimes
## 502       NA                Bisexual            Rarely
## 503    43.09                Not sure         Sometimes
## 504    58.51 Heterosexual (straight)              <NA>
## 505    71.22 Heterosexual (straight)         Sometimes
## 506    45.36 Heterosexual (straight)             Never
## 507    56.70 Heterosexual (straight)         Sometimes
## 508    54.43 Heterosexual (straight)         Sometimes
## 509    61.24 Heterosexual (straight)            Rarely
## 510    63.50          Gay or lesbian            Always
## 511    63.50 Heterosexual (straight)             Never
## 512    44.45          Some other way         Sometimes
## 513    58.97 Heterosexual (straight)              <NA>
## 514   117.94 Heterosexual (straight)            Rarely
## 515    63.50 Heterosexual (straight)             Never
## 516    99.79                Bisexual         Sometimes
## 517    61.24          Gay or lesbian            Always
## 518    74.84 Heterosexual (straight)             Never
## 519   104.33          Gay or lesbian         Sometimes
## 520    68.04 Heterosexual (straight)            Rarely
## 521    72.58          Gay or lesbian  Most of the time
## 522    67.59 Heterosexual (straight)            Rarely
## 523    54.43 Heterosexual (straight)            Always
## 524       NA Heterosexual (straight)             Never
## 525    99.79 Heterosexual (straight)            Rarely
## 526    99.79 Heterosexual (straight)             Never
## 527    97.52          Some other way         Sometimes
## 528    53.52 Heterosexual (straight)            Rarely
## 529    72.58 Heterosexual (straight)  Most of the time
## 530    63.50                Bisexual         Sometimes
## 531    68.04          Some other way  Most of the time
## 532    61.24 Heterosexual (straight)         Sometimes
## 533    65.77 Heterosexual (straight)  Most of the time
## 534       NA Heterosexual (straight)            Rarely
## 535    74.84 Heterosexual (straight)              <NA>
## 536    67.13 Heterosexual (straight)            Rarely
## 537    60.78 Heterosexual (straight)         Sometimes
## 538    54.89          Some other way         Sometimes
## 539    58.97 Heterosexual (straight)            Rarely
## 540    70.31                Not sure            Rarely
## 541    63.50 Heterosexual (straight)            Rarely
## 542    61.24 Heterosexual (straight)            Always
## 543    72.58 Heterosexual (straight)            Rarely
## 544    56.25 Heterosexual (straight)              <NA>
## 545    68.04                Bisexual         Sometimes
## 546    58.97 Heterosexual (straight)  Most of the time
## 547    83.92 Heterosexual (straight)  Most of the time
## 548    64.41 Heterosexual (straight)         Sometimes
## 549    52.16                Bisexual  Most of the time
## 550    47.63 Heterosexual (straight)            Always
## 551       NA Heterosexual (straight)              <NA>
## 552    54.43                Not sure            Always
## 553   102.97 Heterosexual (straight)  Most of the time
## 554    68.04 Heterosexual (straight)             Never
## 555    57.15          Some other way         Sometimes
## 556    95.26 Heterosexual (straight)  Most of the time
## 557    74.84 Heterosexual (straight)             Never
## 558       NA Heterosexual (straight)         Sometimes
## 559    52.16 Heterosexual (straight)              <NA>
## 560    59.88          Some other way         Sometimes
## 561    53.52                Not sure         Sometimes
## 562       NA Heterosexual (straight)             Never
## 563    63.50 Heterosexual (straight)         Sometimes
## 564       NA Heterosexual (straight)         Sometimes
## 565    48.54                Not sure  Most of the time
## 566    56.70 Heterosexual (straight)  Most of the time
## 567    56.70 Heterosexual (straight)             Never
## 568    63.50 Heterosexual (straight)             Never
## 569    61.24 Heterosexual (straight)            Rarely
## 570    92.99 Heterosexual (straight)              <NA>
## 571    83.92 Heterosexual (straight)            Rarely
## 572       NA Heterosexual (straight)  Most of the time
## 573    82.56 Heterosexual (straight)            Rarely
## 574    50.80 Heterosexual (straight)              <NA>
## 575    94.35                Bisexual  Most of the time
## 576   105.24 Heterosexual (straight)             Never
## 577       NA                Bisexual            Always
## 578    77.11          Some other way            Rarely
## 579    88.45 Heterosexual (straight)         Sometimes
## 580       NA Heterosexual (straight)         Sometimes
## 581    44.45 Heterosexual (straight)  Most of the time
## 582    77.11 Heterosexual (straight)            Rarely
## 583    72.58 Heterosexual (straight)  Most of the time
## 584    63.50 Heterosexual (straight)         Sometimes
## 585    90.72 Heterosexual (straight)             Never
## 586    79.38          Some other way  Most of the time
## 587   104.33 Heterosexual (straight)             Never
## 588    90.72 Heterosexual (straight)         Sometimes
## 589    90.72          Gay or lesbian  Most of the time
## 590    76.20 Heterosexual (straight)              <NA>
## 591    63.96 Heterosexual (straight)  Most of the time
## 592    68.95 Heterosexual (straight)              <NA>
## 593    42.64 Heterosexual (straight)  Most of the time
## 594    46.27                Not sure         Sometimes
## 595    52.16                Not sure         Sometimes
## 596       NA Heterosexual (straight)             Never
## 597    58.97 Heterosexual (straight)         Sometimes
## 598    79.38 Heterosexual (straight)  Most of the time
## 599   127.01 Heterosexual (straight)             Never
## 600    93.90 Heterosexual (straight)            Always
## 601    83.92 Heterosexual (straight)              <NA>
## 602    44.45 Heterosexual (straight)         Sometimes
## 603    71.22          Some other way            Always
## 604    48.99 Heterosexual (straight)             Never
## 605       NA Heterosexual (straight)            Always
## 606    52.16 Heterosexual (straight)         Sometimes
## 607    52.16 Heterosexual (straight)  Most of the time
## 608    72.58 Heterosexual (straight)         Sometimes
## 609    65.77 Heterosexual (straight)         Sometimes
## 610    65.77          Gay or lesbian         Sometimes
## 611    58.06 Heterosexual (straight)            Always
## 612    86.18 Heterosexual (straight)             Never
## 613       NA                Bisexual              <NA>
## 614    70.31 Heterosexual (straight)         Sometimes
## 615    61.24          Some other way              <NA>
## 616       NA          Some other way         Sometimes
## 617    70.31 Heterosexual (straight)  Most of the time
## 618    63.50                Not sure            Always
## 619    65.77          Some other way            Rarely
## 620    52.16 Heterosexual (straight)            Rarely
## 621    72.58                Not sure         Sometimes
## 622    72.58 Heterosexual (straight)             Never
## 623    62.60 Heterosexual (straight)         Sometimes
## 624       NA Heterosexual (straight)  Most of the time
## 625       NA Heterosexual (straight)         Sometimes
## 626    70.31 Heterosexual (straight)  Most of the time
## 627    58.97 Heterosexual (straight)             Never
## 628    60.78 Heterosexual (straight)             Never
## 629    72.58 Heterosexual (straight)             Never
## 630    79.38 Heterosexual (straight)         Sometimes
## 631    58.06 Heterosexual (straight)            Rarely
## 632    50.35                Bisexual            Always
## 633    72.58 Heterosexual (straight)         Sometimes
## 634    68.04 Heterosexual (straight)         Sometimes
## 635       NA Heterosexual (straight)         Sometimes
## 636    52.16 Heterosexual (straight)             Never
## 637    49.90 Heterosexual (straight)            Rarely
## 638    53.07 Heterosexual (straight)         Sometimes
## 639    47.17 Heterosexual (straight)  Most of the time
## 640    55.79                Bisexual  Most of the time
## 641    97.52 Heterosexual (straight)  Most of the time
## 642    48.54 Heterosexual (straight)            Rarely
## 643    90.72          Some other way            Always
## 644    55.79 Heterosexual (straight)         Sometimes
## 645    58.97 Heterosexual (straight)             Never
## 646    66.23 Heterosexual (straight)             Never
## 647    81.65 Heterosexual (straight)  Most of the time
## 648    51.71 Heterosexual (straight)         Sometimes
## 649    80.74 Heterosexual (straight)            Rarely
## 650    71.67 Heterosexual (straight)         Sometimes
## 651    83.46 Heterosexual (straight)            Rarely
## 652    54.43 Heterosexual (straight)         Sometimes
## 653    65.77 Heterosexual (straight)             Never
## 654    63.50                Bisexual  Most of the time
## 655    74.84 Heterosexual (straight)            Rarely
## 656    54.43 Heterosexual (straight)             Never
## 657    81.65          Some other way  Most of the time
## 658       NA Heterosexual (straight)              <NA>
## 659    66.68 Heterosexual (straight)  Most of the time
## 660    52.16 Heterosexual (straight)            Rarely
## 661       NA Heterosexual (straight)            Rarely
## 662    49.90 Heterosexual (straight)            Rarely
## 663    43.09                Not sure  Most of the time
## 664    65.77 Heterosexual (straight)             Never
## 665    52.16 Heterosexual (straight)              <NA>
## 666   127.01 Heterosexual (straight)  Most of the time
## 667    58.97 Heterosexual (straight)  Most of the time
## 668    58.97 Heterosexual (straight)             Never
## 669   117.94 Heterosexual (straight)             Never
## 670    65.77 Heterosexual (straight)  Most of the time
## 671    63.50 Heterosexual (straight)  Most of the time
## 672    65.77 Heterosexual (straight)            Rarely
## 673    68.95 Heterosexual (straight)  Most of the time
## 674    90.72 Heterosexual (straight)            Rarely
## 675   113.40 Heterosexual (straight)            Rarely
## 676    63.50 Heterosexual (straight)             Never
## 677    79.83 Heterosexual (straight)  Most of the time
## 678    58.97 Heterosexual (straight)            Rarely
## 679    78.93 Heterosexual (straight)            Rarely
## 680    90.72 Heterosexual (straight)            Always
## 681    51.26                Bisexual         Sometimes
## 682    47.63 Heterosexual (straight)             Never
## 683    81.65                Bisexual  Most of the time
## 684    59.42 Heterosexual (straight)         Sometimes
## 685    49.44 Heterosexual (straight)  Most of the time
## 686    56.70 Heterosexual (straight)             Never
## 687    65.77                Bisexual         Sometimes
## 688    54.43 Heterosexual (straight)  Most of the time
## 689    72.58 Heterosexual (straight)            Rarely
## 690    58.97 Heterosexual (straight)             Never
## 691       NA                Bisexual  Most of the time
## 692       NA Heterosexual (straight)             Never
## 693    70.31                Bisexual            Always
## 694    68.04 Heterosexual (straight)            Rarely
## 695       NA Heterosexual (straight)         Sometimes
## 696    74.84                Not sure  Most of the time
## 697    63.50 Heterosexual (straight)         Sometimes
## 698   106.60 Heterosexual (straight)            Rarely
## 699    90.72 Heterosexual (straight)             Never
## 700    57.61 Heterosexual (straight)            Rarely
## 701    72.58 Heterosexual (straight)            Rarely
## 702    83.01 Heterosexual (straight)         Sometimes
## 703    90.27 Heterosexual (straight)             Never
## 704    84.37 Heterosexual (straight)            Always
## 705    53.07 Heterosexual (straight)            Rarely
## 706    52.16                Not sure         Sometimes
## 707    91.17 Heterosexual (straight)            Rarely
## 708    63.50 Heterosexual (straight)         Sometimes
## 709    78.02 Heterosexual (straight)            Rarely
## 710    99.79 Heterosexual (straight)             Never
## 711    49.90                Bisexual         Sometimes
## 712    73.94          Some other way             Never
## 713    48.08                Bisexual         Sometimes
## 714    73.03 Heterosexual (straight)            Rarely
## 715    72.58 Heterosexual (straight)             Never
## 716    54.89          Some other way            Always
## 717    90.72 Heterosexual (straight)             Never
## 718    74.84          Some other way  Most of the time
## 719    61.24 Heterosexual (straight)  Most of the time
## 720    63.50 Heterosexual (straight)         Sometimes
## 721    90.72          Some other way            Always
## 722    52.16 Heterosexual (straight)              <NA>
## 723    90.72 Heterosexual (straight)            Rarely
## 724    45.81 Heterosexual (straight)            Rarely
## 725    51.71 Heterosexual (straight)         Sometimes
## 726    47.63                Bisexual         Sometimes
## 727    81.65 Heterosexual (straight)         Sometimes
## 728    54.43                Bisexual  Most of the time
## 729    54.43 Heterosexual (straight)            Rarely
## 730    77.11                Not sure            Rarely
## 731   102.06          Some other way  Most of the time
## 732    65.32          Some other way         Sometimes
## 733    61.24 Heterosexual (straight)         Sometimes
## 734       NA Heterosexual (straight)  Most of the time
## 735    58.97 Heterosexual (straight)            Rarely
## 736    56.70 Heterosexual (straight)  Most of the time
## 737    55.34 Heterosexual (straight)             Never
## 738    70.31 Heterosexual (straight)         Sometimes
## 739       NA                Bisexual         Sometimes
## 740    97.52 Heterosexual (straight)             Never
## 741    61.69          Gay or lesbian            Rarely
## 742       NA Heterosexual (straight)         Sometimes
## 743   104.33 Heterosexual (straight)            Rarely
## 744    77.11 Heterosexual (straight)             Never
## 745    63.50 Heterosexual (straight)         Sometimes
## 746    55.79 Heterosexual (straight)         Sometimes
## 747    54.43 Heterosexual (straight)         Sometimes
## 748   102.06                Bisexual         Sometimes
## 749       NA Heterosexual (straight)  Most of the time
## 750    68.04                Bisexual         Sometimes
## 751    77.11 Heterosexual (straight)         Sometimes
## 752    58.97                Bisexual            Rarely
## 753    62.14 Heterosexual (straight)  Most of the time
## 754    70.76          Some other way  Most of the time
## 755    81.65 Heterosexual (straight)            Rarely
## 756    72.58          Gay or lesbian  Most of the time
## 757       NA Heterosexual (straight)            Rarely
## 758    92.99 Heterosexual (straight)             Never
## 759    97.52 Heterosexual (straight)            Rarely
## 760    68.04                Not sure         Sometimes
## 761    83.92 Heterosexual (straight)            Always
## 762    49.44 Heterosexual (straight)            Always
## 763    88.45 Heterosexual (straight)            Rarely
## 764    77.11 Heterosexual (straight)            Rarely
## 765    75.75 Heterosexual (straight)            Rarely
## 766    63.50                Bisexual  Most of the time
## 767    74.84                Bisexual         Sometimes
## 768    86.18 Heterosexual (straight)         Sometimes
## 769    97.52 Heterosexual (straight)         Sometimes
## 770    85.28 Heterosexual (straight)         Sometimes
## 771   115.67 Heterosexual (straight)            Rarely
## 772    63.50                Bisexual            Always
## 773    58.97                Bisexual         Sometimes
## 774    48.54 Heterosexual (straight)         Sometimes
## 775    65.77 Heterosexual (straight)            Rarely
## 776    62.60 Heterosexual (straight)         Sometimes
## 777    61.24          Gay or lesbian            Rarely
## 778    69.85          Gay or lesbian            Rarely
## 779    88.45 Heterosexual (straight)  Most of the time
## 780    63.50                Bisexual         Sometimes
## 781       NA                Bisexual              <NA>
## 782       NA                Bisexual         Sometimes
## 783       NA          Gay or lesbian             Never
## 784       NA                Bisexual         Sometimes
## 785       NA                Bisexual              <NA>
## 786       NA                Bisexual              <NA>
## 787       NA                Bisexual         Sometimes
## 788       NA          Some other way         Sometimes
## 789       NA          Gay or lesbian         Sometimes
## 790       NA          Some other way         Sometimes
## 791       NA                Bisexual              <NA>
## 792       NA          Gay or lesbian         Sometimes
## 793       NA                Bisexual            Always
## 794       NA                Not sure              <NA>
## 795       NA                Bisexual              <NA>
## 796       NA                Not sure              <NA>
## 797       NA          Gay or lesbian              <NA>
## 798       NA          Gay or lesbian         Sometimes
## 799       NA                Bisexual              <NA>
## 800       NA                Bisexual             Never
## 801       NA                Bisexual            Always
## 802       NA                Not sure            Always
## 803       NA                Bisexual              <NA>
## 804       NA                Bisexual              <NA>
## 805       NA          Gay or lesbian              <NA>
## 806       NA          Gay or lesbian             Never
## 807       NA                Bisexual         Sometimes
## 808       NA                Bisexual              <NA>
## 809       NA          Some other way            Always
## 810    58.97 Heterosexual (straight)  Most of the time
## 811    92.99 Heterosexual (straight)            Rarely
## 812    66.68                Bisexual            Always
## 813    62.60 Heterosexual (straight)  Most of the time
## 814   111.13 Heterosexual (straight)            Always
## 815    57.61 Heterosexual (straight)  Most of the time
## 816    61.69 Heterosexual (straight)             Never
## 817   103.87 Heterosexual (straight)             Never
## 818    53.52          Gay or lesbian         Sometimes
## 819    92.99 Heterosexual (straight)            Always
## 820    83.92 Heterosexual (straight)  Most of the time
## 821    52.16 Heterosexual (straight)            Always
## 822    65.77 Heterosexual (straight)            Rarely
## 823    56.70                Bisexual  Most of the time
## 824    65.32 Heterosexual (straight)             Never
## 825    57.15 Heterosexual (straight)         Sometimes
## 826    63.50 Heterosexual (straight)  Most of the time
## 827    77.11 Heterosexual (straight)         Sometimes
## 828    53.07                Bisexual  Most of the time
## 829    90.72 Heterosexual (straight)         Sometimes
## 830    56.70 Heterosexual (straight)         Sometimes
## 831    49.90 Heterosexual (straight)         Sometimes
## 832    68.04 Heterosexual (straight)            Rarely
## 833    68.04 Heterosexual (straight)            Rarely
## 834       NA Heterosexual (straight)             Never
## 835    54.43 Heterosexual (straight)         Sometimes
## 836    79.38 Heterosexual (straight)         Sometimes
## 837    48.54 Heterosexual (straight)         Sometimes
## 838    74.84 Heterosexual (straight)            Always
## 839       NA Heterosexual (straight)            Rarely
## 840    63.05 Heterosexual (straight)         Sometimes
## 841    49.90 Heterosexual (straight)            Rarely
## 842       NA                Bisexual            Always
## 843    68.04 Heterosexual (straight)         Sometimes
## 844    90.72 Heterosexual (straight)            Rarely
## 845    60.78 Heterosexual (straight)            Rarely
## 846    56.70                Bisexual  Most of the time
## 847    73.94 Heterosexual (straight)            Rarely
## 848    70.31 Heterosexual (straight)            Rarely
## 849       NA          Some other way            Rarely
## 850    70.31                Bisexual         Sometimes
## 851    52.16 Heterosexual (straight)            Rarely
## 852    54.43 Heterosexual (straight)            Rarely
## 853    68.04 Heterosexual (straight)         Sometimes
## 854    44.00                Bisexual  Most of the time
## 855    77.11 Heterosexual (straight)         Sometimes
## 856    74.84 Heterosexual (straight)         Sometimes
## 857    58.51 Heterosexual (straight)         Sometimes
## 858    58.97 Heterosexual (straight)            Always
## 859    65.77 Heterosexual (straight)         Sometimes
## 860    78.02 Heterosexual (straight)             Never
## 861    90.27          Some other way         Sometimes
## 862   116.12                Not sure  Most of the time
## 863    76.20 Heterosexual (straight)            Rarely
## 864    54.43 Heterosexual (straight)            Rarely
## 865    58.97 Heterosexual (straight)         Sometimes
## 866    53.98 Heterosexual (straight)  Most of the time
## 867    47.63 Heterosexual (straight)            Rarely
## 868    58.97 Heterosexual (straight)         Sometimes
## 869    68.04 Heterosexual (straight)         Sometimes
## 870    48.08                Bisexual            Rarely
## 871    49.90                Not sure            Always
## 872    61.24 Heterosexual (straight)             Never
## 873       NA                Bisexual         Sometimes
## 874    52.16          Gay or lesbian             Never
## 875       NA Heterosexual (straight)  Most of the time
## 876    54.43          Gay or lesbian         Sometimes
## 877    72.58 Heterosexual (straight)             Never
## 878    68.04                Not sure              <NA>
## 879    79.38 Heterosexual (straight)             Never
## 880    60.78 Heterosexual (straight)            Rarely
## 881       NA Heterosexual (straight)         Sometimes
## 882    94.80          Gay or lesbian  Most of the time
## 883    77.11 Heterosexual (straight)         Sometimes
## 884    89.81 Heterosexual (straight)             Never
## 885    99.79 Heterosexual (straight)            Rarely
## 886       NA Heterosexual (straight)         Sometimes
## 887   108.86          Some other way  Most of the time
## 888    63.50 Heterosexual (straight)         Sometimes
## 889    68.04 Heterosexual (straight)             Never
## 890    51.26 Heterosexual (straight)             Never
## 891    56.70                Not sure            Always
## 892       NA                Bisexual         Sometimes
## 893    63.50 Heterosexual (straight)            Always
## 894       NA          Some other way            Always
## 895    39.01 Heterosexual (straight)            Rarely
## 896       NA          Some other way  Most of the time
## 897    60.78 Heterosexual (straight)             Never
## 898    61.69 Heterosexual (straight)             Never
## 899       NA          Some other way            Always
## 900    63.50 Heterosexual (straight)  Most of the time
## 901    49.90 Heterosexual (straight)             Never
## 902    68.04                Bisexual  Most of the time
## 903    43.09 Heterosexual (straight)            Rarely
## 904    70.31 Heterosexual (straight)         Sometimes
## 905    79.38 Heterosexual (straight)            Rarely
## 906       NA Heterosexual (straight)             Never
## 907    63.50 Heterosexual (straight)            Rarely
## 908    83.92 Heterosexual (straight)  Most of the time
## 909    54.43 Heterosexual (straight)             Never
## 910    55.34 Heterosexual (straight)             Never
## 911    56.70 Heterosexual (straight)            Always
## 912    81.65                Bisexual            Rarely
## 913    48.08 Heterosexual (straight)         Sometimes
## 914    64.86 Heterosexual (straight)         Sometimes
## 915   141.52          Some other way         Sometimes
## 916    54.43 Heterosexual (straight)  Most of the time
## 917    69.85                Bisexual  Most of the time
## 918    68.04 Heterosexual (straight)            Always
## 919    72.58 Heterosexual (straight)             Never
## 920       NA Heterosexual (straight)            Rarely
## 921    55.79 Heterosexual (straight)            Rarely
## 922    80.74 Heterosexual (straight)  Most of the time
## 923    58.97 Heterosexual (straight)         Sometimes
## 924    76.66 Heterosexual (straight)             Never
## 925   104.33 Heterosexual (straight)            Rarely
## 926    57.15 Heterosexual (straight)             Never
## 927    66.23          Some other way            Always
## 928       NA Heterosexual (straight)         Sometimes
## 929    85.28 Heterosexual (straight)  Most of the time
## 930    77.57                Bisexual             Never
## 931       NA Heterosexual (straight)         Sometimes
## 932   113.40 Heterosexual (straight)              <NA>
## 933    61.24                Bisexual  Most of the time
## 934    68.04          Some other way  Most of the time
## 935       NA Heterosexual (straight)             Never
## 936   102.06 Heterosexual (straight)         Sometimes
## 937       NA Heterosexual (straight)            Rarely
## 938    58.97 Heterosexual (straight)             Never
## 939    81.65 Heterosexual (straight)         Sometimes
## 940   136.08                Not sure            Always
## 941    47.17 Heterosexual (straight)             Never
## 942    52.16 Heterosexual (straight)            Rarely
## 943    84.37 Heterosexual (straight)            Rarely
## 944    49.90 Heterosexual (straight)            Rarely
## 945    65.77 Heterosexual (straight)             Never
## 946       NA Heterosexual (straight)             Never
## 947    46.27                Bisexual            Always
## 948    79.38 Heterosexual (straight)         Sometimes
## 949    58.97 Heterosexual (straight)         Sometimes
## 950    83.92                Not sure         Sometimes
## 951       NA Heterosexual (straight)             Never
## 952    55.79 Heterosexual (straight)  Most of the time
## 953    44.91                Bisexual            Rarely
## 954    54.43 Heterosexual (straight)            Rarely
## 955    77.11          Gay or lesbian             Never
## 956    71.22 Heterosexual (straight)         Sometimes
## 957    49.90 Heterosexual (straight)             Never
## 958    83.92                Bisexual            Always
## 959    74.84 Heterosexual (straight)            Rarely
## 960    83.01 Heterosexual (straight)         Sometimes
## 961    54.43                Bisexual            Rarely
## 962    58.97 Heterosexual (straight)             Never
## 963    58.97 Heterosexual (straight)  Most of the time
## 964    81.65 Heterosexual (straight)         Sometimes
## 965    55.79 Heterosexual (straight)         Sometimes
## 966    68.04 Heterosexual (straight)              <NA>
## 967    45.36 Heterosexual (straight)             Never
## 968   111.13 Heterosexual (straight)            Always
## 969    90.72 Heterosexual (straight)             Never
## 970    59.42 Heterosexual (straight)         Sometimes
## 971    52.16 Heterosexual (straight)            Rarely
## 972    76.66 Heterosexual (straight)            Rarely
## 973       NA Heterosexual (straight)             Never
## 974       NA Heterosexual (straight)              <NA>
## 975    63.50 Heterosexual (straight)  Most of the time
## 976   100.70 Heterosexual (straight)              <NA>
## 977    62.60 Heterosexual (straight)         Sometimes
## 978    70.31 Heterosexual (straight)             Never
## 979    56.70 Heterosexual (straight)             Never
## 980    90.72                Bisexual             Never
## 981    45.36 Heterosexual (straight)            Rarely
## 982    58.97 Heterosexual (straight)              <NA>
## 983    43.09 Heterosexual (straight)         Sometimes
## 984    81.65 Heterosexual (straight)         Sometimes
## 985    61.24 Heterosexual (straight)            Rarely
## 986    78.02 Heterosexual (straight)         Sometimes
## 987    63.50 Heterosexual (straight)             Never
## 988    84.82          Gay or lesbian         Sometimes
## 989    56.70 Heterosexual (straight)         Sometimes
## 990    56.70 Heterosexual (straight)            Rarely
## 991   122.47 Heterosexual (straight)             Never
## 992    56.70                Bisexual         Sometimes
## 993    84.82                Bisexual         Sometimes
## 994    54.43          Some other way  Most of the time
## 995    63.50                Bisexual  Most of the time
## 996       NA                Bisexual            Always
## 997    65.77 Heterosexual (straight)             Never
## 998    90.72 Heterosexual (straight)            Always
## 999       NA                Not sure         Sometimes
## 1000   63.50 Heterosexual (straight)  Most of the time
## 1001      NA Heterosexual (straight)  Most of the time
## 1002   69.40 Heterosexual (straight)             Never
## 1003   54.43 Heterosexual (straight)             Never
## 1004      NA Heterosexual (straight)            Rarely
## 1005   65.77 Heterosexual (straight)         Sometimes
## 1006   71.67 Heterosexual (straight)            Rarely
## 1007  103.87 Heterosexual (straight)            Always
## 1008   55.34                Not sure  Most of the time
## 1009   77.11                Not sure  Most of the time
## 1010  104.33 Heterosexual (straight)         Sometimes
## 1011      NA          Some other way            Always
## 1012   47.63 Heterosexual (straight)             Never
## 1013   87.09 Heterosexual (straight)         Sometimes
## 1014   49.90 Heterosexual (straight)  Most of the time
## 1015      NA Heterosexual (straight)         Sometimes
## 1016      NA Heterosexual (straight)            Rarely
## 1017   98.88                Bisexual             Never
## 1018   61.24 Heterosexual (straight)  Most of the time
## 1019   61.24 Heterosexual (straight)         Sometimes
## 1020   72.58 Heterosexual (straight)             Never
## 1021   70.31 Heterosexual (straight)             Never
## 1022   58.97 Heterosexual (straight)            Always
## 1023   90.72                Bisexual  Most of the time
## 1024   58.97 Heterosexual (straight)         Sometimes
## 1025      NA                Bisexual              <NA>
## 1026   52.16          Gay or lesbian  Most of the time
## 1027   54.43 Heterosexual (straight)         Sometimes
## 1028   79.38 Heterosexual (straight)             Never
## 1029   68.04 Heterosexual (straight)             Never
## 1030      NA Heterosexual (straight)             Never
## 1031  113.40                Not sure         Sometimes
## 1032   48.99                Not sure  Most of the time
## 1033   58.97 Heterosexual (straight)         Sometimes
## 1034   56.70                Bisexual         Sometimes
## 1035   72.58 Heterosexual (straight)             Never
## 1036   72.58 Heterosexual (straight)         Sometimes
## 1037   54.43 Heterosexual (straight)            Rarely
## 1038   79.38                Bisexual  Most of the time
## 1039   81.65 Heterosexual (straight)             Never
## 1040   95.26 Heterosexual (straight)  Most of the time
## 1041   52.16 Heterosexual (straight)         Sometimes
## 1042   59.88 Heterosexual (straight)         Sometimes
## 1043   73.48 Heterosexual (straight)         Sometimes
## 1044   96.16 Heterosexual (straight)         Sometimes
## 1045      NA Heterosexual (straight)         Sometimes
## 1046      NA          Some other way         Sometimes
## 1047   54.43 Heterosexual (straight)            Always
## 1048      NA                Bisexual  Most of the time
## 1049   84.82 Heterosexual (straight)             Never
## 1050   62.14 Heterosexual (straight)  Most of the time
## 1051   49.90 Heterosexual (straight)  Most of the time
## 1052   81.65 Heterosexual (straight)            Rarely
## 1053   68.04 Heterosexual (straight)         Sometimes
## 1054   56.70 Heterosexual (straight)             Never
## 1055      NA Heterosexual (straight)         Sometimes
## 1056      NA                Not sure             Never
## 1057   74.84 Heterosexual (straight)            Rarely
## 1058   46.27 Heterosexual (straight)              <NA>
## 1059   44.45 Heterosexual (straight)              <NA>
## 1060   58.51 Heterosexual (straight)            Rarely
## 1061   37.20 Heterosexual (straight)         Sometimes
## 1062      NA Heterosexual (straight)             Never
## 1063   71.67 Heterosexual (straight)             Never
## 1064   56.25                Bisexual         Sometimes
## 1065  136.08 Heterosexual (straight)  Most of the time
## 1066   75.75 Heterosexual (straight)             Never
## 1067   58.97 Heterosexual (straight)             Never
## 1068  108.86 Heterosexual (straight)            Rarely
## 1069  136.08 Heterosexual (straight)         Sometimes
## 1070      NA Heterosexual (straight)         Sometimes
## 1071   61.24 Heterosexual (straight)  Most of the time
## 1072   62.60 Heterosexual (straight)         Sometimes
## 1073   56.70 Heterosexual (straight)         Sometimes
## 1074   68.04 Heterosexual (straight)         Sometimes
## 1075      NA          Some other way         Sometimes
## 1076   44.45 Heterosexual (straight)         Sometimes
## 1077   81.65 Heterosexual (straight)            Rarely
## 1078   80.29 Heterosexual (straight)  Most of the time
## 1079   52.16 Heterosexual (straight)             Never
## 1080   72.58 Heterosexual (straight)             Never
## 1081  102.06 Heterosexual (straight)             Never
## 1082   65.77 Heterosexual (straight)  Most of the time
## 1083   88.45 Heterosexual (straight)            Rarely
## 1084   51.71 Heterosexual (straight)            Rarely
## 1085   72.58                Not sure            Rarely
## 1086   49.90 Heterosexual (straight)  Most of the time
## 1087   45.36                Bisexual         Sometimes
## 1088   67.59 Heterosexual (straight)  Most of the time
## 1089      NA          Some other way             Never
## 1090      NA          Gay or lesbian            Always
## 1091      NA Heterosexual (straight)              <NA>
## 1092      NA                Not sure         Sometimes
## 1093      NA Heterosexual (straight)         Sometimes
## 1094   72.58          Some other way  Most of the time
## 1095   61.24 Heterosexual (straight)            Rarely
## 1096   56.70                Bisexual  Most of the time
## 1097   62.60                Not sure  Most of the time
## 1098   58.51 Heterosexual (straight)            Rarely
## 1099   55.79          Gay or lesbian  Most of the time
## 1100   54.89 Heterosexual (straight)            Always
## 1101   95.26 Heterosexual (straight)  Most of the time
## 1102   51.26 Heterosexual (straight)            Rarely
## 1103   63.50 Heterosexual (straight)         Sometimes
## 1104   65.32 Heterosexual (straight)         Sometimes
## 1105   51.26 Heterosexual (straight)         Sometimes
## 1106   44.45 Heterosexual (straight)         Sometimes
## 1107  106.60 Heterosexual (straight)            Rarely
## 1108   58.97 Heterosexual (straight)            Rarely
## 1109   92.99                Bisexual  Most of the time
## 1110   56.70                Not sure         Sometimes
## 1111   62.60 Heterosexual (straight)             Never
## 1112   85.73 Heterosexual (straight)            Always
## 1113   45.36 Heterosexual (straight)            Rarely
## 1114   95.26 Heterosexual (straight)            Rarely
## 1115   48.99                Bisexual  Most of the time
## 1116   58.97 Heterosexual (straight)         Sometimes
## 1117      NA Heterosexual (straight)            Rarely
## 1118   61.24 Heterosexual (straight)            Rarely
## 1119   79.38 Heterosexual (straight)         Sometimes
## 1120   81.65                Not sure         Sometimes
## 1121  127.01 Heterosexual (straight)            Always
## 1122      NA          Some other way            Rarely
## 1123   52.16 Heterosexual (straight)         Sometimes
## 1124   58.97                Bisexual            Always
## 1125   54.43 Heterosexual (straight)            Rarely
## 1126   63.50 Heterosexual (straight)         Sometimes
## 1127  108.86 Heterosexual (straight)         Sometimes
## 1128   69.40 Heterosexual (straight)         Sometimes
## 1129  106.60                Bisexual            Always
## 1130   54.43 Heterosexual (straight)         Sometimes
## 1131   56.70 Heterosexual (straight)         Sometimes
## 1132   49.90 Heterosexual (straight)             Never
## 1133      NA Heterosexual (straight)            Rarely
## 1134   47.63                Bisexual  Most of the time
## 1135   75.75                Bisexual         Sometimes
## 1136   72.58 Heterosexual (straight)            Rarely
## 1137   63.50 Heterosexual (straight)         Sometimes
## 1138   79.38 Heterosexual (straight)  Most of the time
## 1139   61.24 Heterosexual (straight)            Rarely
## 1140   63.50 Heterosexual (straight)  Most of the time
## 1141   54.43          Gay or lesbian         Sometimes
## 1142   65.32 Heterosexual (straight)  Most of the time
## 1143   63.50 Heterosexual (straight)            Rarely
## 1144   43.09          Some other way  Most of the time
## 1145   72.58 Heterosexual (straight)         Sometimes
## 1146   89.81 Heterosexual (straight)         Sometimes
## 1147   81.19 Heterosexual (straight)            Always
## 1148   81.65 Heterosexual (straight)             Never
## 1149   78.02          Some other way  Most of the time
## 1150   87.54 Heterosexual (straight)            Rarely
## 1151      NA                Not sure            Rarely
## 1152      NA                Bisexual         Sometimes
## 1153   49.44 Heterosexual (straight)         Sometimes
## 1154   67.13 Heterosexual (straight)             Never
## 1155   65.77 Heterosexual (straight)            Rarely
## 1156   72.58 Heterosexual (straight)            Rarely
## 1157   63.50 Heterosexual (straight)            Rarely
## 1158      NA                Not sure  Most of the time
## 1159   58.97 Heterosexual (straight)            Rarely
## 1160   38.56 Heterosexual (straight)            Rarely
## 1161   63.50 Heterosexual (straight)            Always
## 1162  102.06 Heterosexual (straight)         Sometimes
## 1163   81.65 Heterosexual (straight)            Rarely
## 1164   66.23 Heterosexual (straight)            Rarely
## 1165   61.24 Heterosexual (straight)         Sometimes
## 1166   54.43          Gay or lesbian         Sometimes
## 1167   74.84                Bisexual  Most of the time
## 1168   97.07 Heterosexual (straight)            Rarely
## 1169   74.84 Heterosexual (straight)         Sometimes
## 1170      NA Heterosexual (straight)            Rarely
## 1171   70.76 Heterosexual (straight)         Sometimes
## 1172   49.90 Heterosexual (straight)         Sometimes
## 1173   74.84                Bisexual  Most of the time
## 1174  108.86 Heterosexual (straight)             Never
## 1175   74.84 Heterosexual (straight)            Always
## 1176   58.06                Bisexual            Always
## 1177   52.16 Heterosexual (straight)            Rarely
## 1178   52.16                Bisexual         Sometimes
## 1179   65.77                Bisexual         Sometimes
## 1180   66.68                Not sure            Rarely
## 1181   61.24 Heterosexual (straight)            Rarely
## 1182   66.23 Heterosexual (straight)            Rarely
## 1183   58.97 Heterosexual (straight)         Sometimes
## 1184      NA                Not sure  Most of the time
## 1185   63.50 Heterosexual (straight)            Always
## 1186   54.43 Heterosexual (straight)         Sometimes
## 1187      NA Heterosexual (straight)             Never
## 1188   61.24 Heterosexual (straight)            Rarely
## 1189      NA Heterosexual (straight)              <NA>
## 1190   52.16 Heterosexual (straight)  Most of the time
## 1191   66.23 Heterosexual (straight)         Sometimes
## 1192   49.90 Heterosexual (straight)  Most of the time
## 1193   74.84 Heterosexual (straight)             Never
## 1194   61.24          Gay or lesbian  Most of the time
## 1195      NA Heterosexual (straight)            Rarely
## 1196   63.50          Some other way         Sometimes
## 1197   64.41 Heterosexual (straight)            Rarely
## 1198   72.58 Heterosexual (straight)            Rarely
## 1199   52.62          Some other way         Sometimes
## 1200   40.82          Some other way         Sometimes
## 1201   53.52 Heterosexual (straight)             Never
## 1202   64.41 Heterosexual (straight)         Sometimes
## 1203   64.41 Heterosexual (straight)            Rarely
## 1204      NA                Bisexual            Rarely
## 1205   63.50                Bisexual  Most of the time
## 1206   68.04                Bisexual         Sometimes
## 1207   72.58 Heterosexual (straight)             Never
## 1208   49.90 Heterosexual (straight)         Sometimes
## 1209  102.06 Heterosexual (straight)             Never
## 1210   52.16          Gay or lesbian  Most of the time
## 1211   97.52                Not sure  Most of the time
## 1212   76.66 Heterosexual (straight)         Sometimes
## 1213   70.31 Heterosexual (straight)            Rarely
## 1214   52.16 Heterosexual (straight)            Rarely
## 1215   52.16 Heterosexual (straight)         Sometimes
## 1216   77.11                Bisexual  Most of the time
## 1217   40.82 Heterosexual (straight)              <NA>
## 1218   70.31 Heterosexual (straight)            Rarely
## 1219      NA          Gay or lesbian  Most of the time
## 1220   40.37 Heterosexual (straight)            Rarely
## 1221   63.96 Heterosexual (straight)             Never
## 1222   68.04 Heterosexual (straight)            Rarely
## 1223   63.50                Bisexual            Rarely
## 1224   51.71 Heterosexual (straight)  Most of the time
## 1225   54.43                Bisexual            Always
## 1226   49.90 Heterosexual (straight)            Rarely
## 1227   61.24 Heterosexual (straight)            Rarely
## 1228   52.16                Bisexual            Always
## 1229   45.81 Heterosexual (straight)  Most of the time
## 1230   49.90          Some other way         Sometimes
## 1231   54.89 Heterosexual (straight)  Most of the time
## 1232   48.99                Bisexual            Always
## 1233   52.16 Heterosexual (straight)         Sometimes
## 1234   71.67 Heterosexual (straight)  Most of the time
## 1235      NA Heterosexual (straight)         Sometimes
## 1236   56.70                Bisexual  Most of the time
## 1237   51.71                Not sure  Most of the time
## 1238   58.06          Gay or lesbian  Most of the time
## 1239   52.16 Heterosexual (straight)            Rarely
## 1240   94.35 Heterosexual (straight)             Never
## 1241   72.58                Bisexual         Sometimes
## 1242   74.84 Heterosexual (straight)         Sometimes
## 1243   54.43 Heterosexual (straight)  Most of the time
## 1244   43.09          Some other way  Most of the time
## 1245   70.31 Heterosexual (straight)  Most of the time
## 1246   49.90 Heterosexual (straight)             Never
## 1247   67.59          Some other way         Sometimes
## 1248      NA Heterosexual (straight)  Most of the time
## 1249   49.90          Some other way            Always
## 1250   72.58 Heterosexual (straight)  Most of the time
## 1251   54.43 Heterosexual (straight)         Sometimes
## 1252   47.63          Gay or lesbian  Most of the time
## 1253   74.84 Heterosexual (straight)            Rarely
## 1254   65.77                Bisexual         Sometimes
## 1255   45.36 Heterosexual (straight)         Sometimes
## 1256   54.43 Heterosexual (straight)         Sometimes
## 1257   95.26 Heterosexual (straight)         Sometimes
## 1258   94.80 Heterosexual (straight)            Rarely
## 1259   54.89 Heterosexual (straight)             Never
## 1260   63.50 Heterosexual (straight)         Sometimes
## 1261   62.60 Heterosexual (straight)         Sometimes
## 1262   53.07 Heterosexual (straight)            Rarely
## 1263   47.63          Some other way            Rarely
## 1264   60.78 Heterosexual (straight)         Sometimes
## 1265  108.86 Heterosexual (straight)             Never
## 1266   83.92 Heterosexual (straight)             Never
## 1267   71.67 Heterosexual (straight)         Sometimes
## 1268      NA                Bisexual              <NA>
## 1269   45.81                Not sure            Rarely
## 1270   77.57                Not sure             Never
## 1271   52.16 Heterosexual (straight)         Sometimes
## 1272   90.72 Heterosexual (straight)         Sometimes
## 1273  108.86 Heterosexual (straight)             Never
## 1274   36.29 Heterosexual (straight)         Sometimes
## 1275   51.26 Heterosexual (straight)         Sometimes
## 1276   67.13 Heterosexual (straight)             Never
## 1277   52.16 Heterosexual (straight)            Always
## 1278   61.69 Heterosexual (straight)         Sometimes
## 1279   52.16 Heterosexual (straight)         Sometimes
## 1280   57.15 Heterosexual (straight)         Sometimes
## 1281   56.70                Bisexual  Most of the time
## 1282      NA Heterosexual (straight)              <NA>
## 1283   58.97                Not sure         Sometimes
## 1284      NA Heterosexual (straight)             Never
## 1285      NA Heterosexual (straight)             Never
## 1286   61.69                Not sure            Rarely
## 1287   62.60                Bisexual  Most of the time
## 1288      NA          Some other way  Most of the time
## 1289   79.38          Gay or lesbian         Sometimes
## 1290   70.31 Heterosexual (straight)            Rarely
## 1291   55.34 Heterosexual (straight)         Sometimes
## 1292   61.24 Heterosexual (straight)            Rarely
## 1293   86.18 Heterosexual (straight)            Rarely
## 1294   88.45 Heterosexual (straight)            Rarely
## 1295   52.16 Heterosexual (straight)         Sometimes
## 1296   46.27                Not sure  Most of the time
## 1297   54.43 Heterosexual (straight)            Rarely
## 1298      NA Heterosexual (straight)         Sometimes
## 1299   45.81 Heterosexual (straight)         Sometimes
## 1300   77.11 Heterosexual (straight)            Always
## 1301   94.35 Heterosexual (straight)  Most of the time
## 1302   64.41 Heterosexual (straight)            Rarely
## 1303   58.97 Heterosexual (straight)            Rarely
## 1304  132.45 Heterosexual (straight)         Sometimes
## 1305   58.06 Heterosexual (straight)              <NA>
## 1306   56.70 Heterosexual (straight)             Never
## 1307   63.50                Bisexual  Most of the time
## 1308   58.97 Heterosexual (straight)         Sometimes
## 1309   75.30 Heterosexual (straight)            Rarely
## 1310   53.52                Bisexual            Rarely
## 1311   46.27                Bisexual             Never
## 1312   41.73 Heterosexual (straight)         Sometimes
## 1313   77.11                Bisexual            Always
## 1314   83.46 Heterosexual (straight)  Most of the time
## 1315   43.09 Heterosexual (straight)            Always
## 1316   44.00 Heterosexual (straight)         Sometimes
## 1317      NA Heterosexual (straight)            Rarely
## 1318   85.73 Heterosexual (straight)  Most of the time
## 1319   72.58 Heterosexual (straight)             Never
## 1320      NA Heterosexual (straight)  Most of the time
## 1321   40.82 Heterosexual (straight)         Sometimes
## 1322   83.92 Heterosexual (straight)            Always
## 1323   77.11 Heterosexual (straight)             Never
## 1324   90.72 Heterosexual (straight)            Always
## 1325   62.14 Heterosexual (straight)            Rarely
## 1326   45.36 Heterosexual (straight)         Sometimes
## 1327   58.97                Bisexual            Rarely
## 1328   68.04 Heterosexual (straight)         Sometimes
## 1329   57.61 Heterosexual (straight)  Most of the time
## 1330   43.09 Heterosexual (straight)         Sometimes
## 1331      NA                Bisexual  Most of the time
## 1332      NA Heterosexual (straight)            Rarely
## 1333   65.77                Bisexual  Most of the time
## 1334   47.63 Heterosexual (straight)            Rarely
## 1335   64.86 Heterosexual (straight)         Sometimes
## 1336   41.28 Heterosexual (straight)  Most of the time
## 1337   44.00                Not sure            Always
## 1338   52.16 Heterosexual (straight)              <NA>
## 1339   61.24 Heterosexual (straight)             Never
## 1340   66.23 Heterosexual (straight)              <NA>
## 1341   63.96 Heterosexual (straight)             Never
## 1342   52.16 Heterosexual (straight)         Sometimes
## 1343   64.41 Heterosexual (straight)  Most of the time
## 1344   64.86 Heterosexual (straight)         Sometimes
## 1345   90.72 Heterosexual (straight)            Rarely
## 1346   61.24 Heterosexual (straight)         Sometimes
## 1347   58.06 Heterosexual (straight)            Always
## 1348   52.16 Heterosexual (straight)             Never
## 1349   43.09 Heterosexual (straight)             Never
## 1350   55.79 Heterosexual (straight)         Sometimes
## 1351   63.50                Bisexual         Sometimes
## 1352   45.36 Heterosexual (straight)            Rarely
## 1353   61.24 Heterosexual (straight)            Rarely
## 1354      NA Heterosexual (straight)            Rarely
## 1355   72.58                Bisexual         Sometimes
## 1356      NA          Gay or lesbian         Sometimes
## 1357   70.31 Heterosexual (straight)         Sometimes
## 1358   54.43 Heterosexual (straight)         Sometimes
## 1359   81.65 Heterosexual (straight)             Never
## 1360   68.04 Heterosexual (straight)         Sometimes
## 1361   49.90 Heterosexual (straight)         Sometimes
## 1362   55.79 Heterosexual (straight)         Sometimes
## 1363   43.09 Heterosexual (straight)  Most of the time
## 1364   68.04 Heterosexual (straight)         Sometimes
## 1365   52.16 Heterosexual (straight)             Never
## 1366   58.97 Heterosexual (straight)             Never
## 1367   44.45 Heterosexual (straight)         Sometimes
## 1368   80.29 Heterosexual (straight)            Rarely
## 1369   79.38 Heterosexual (straight)            Rarely
## 1370   54.43 Heterosexual (straight)         Sometimes
## 1371   68.04                Bisexual         Sometimes
## 1372   56.70 Heterosexual (straight)         Sometimes
## 1373   74.84                Bisexual         Sometimes
## 1374   52.16 Heterosexual (straight)         Sometimes
## 1375   55.79 Heterosexual (straight)            Rarely
## 1376   49.90                Bisexual  Most of the time
## 1377   74.84 Heterosexual (straight)            Rarely
## 1378   79.38 Heterosexual (straight)         Sometimes
## 1379      NA Heterosexual (straight)  Most of the time
## 1380   68.04 Heterosexual (straight)         Sometimes
## 1381   63.50          Some other way              <NA>
## 1382  102.06 Heterosexual (straight)         Sometimes
## 1383   47.63 Heterosexual (straight)  Most of the time
## 1384   47.63 Heterosexual (straight)         Sometimes
## 1385      NA Heterosexual (straight)             Never
## 1386   99.79 Heterosexual (straight)            Rarely
## 1387   74.84 Heterosexual (straight)         Sometimes
## 1388   63.50 Heterosexual (straight)             Never
## 1389   58.51 Heterosexual (straight)            Rarely
## 1390   65.77 Heterosexual (straight)             Never
## 1391   45.36          Gay or lesbian  Most of the time
## 1392   54.89                Bisexual         Sometimes
## 1393      NA Heterosexual (straight)         Sometimes
## 1394   61.24                Bisexual            Rarely
## 1395   45.36 Heterosexual (straight)  Most of the time
## 1396   54.43                Not sure            Rarely
## 1397   48.99 Heterosexual (straight)             Never
## 1398   66.23 Heterosexual (straight)            Rarely
## 1399   47.17 Heterosexual (straight)            Rarely
## 1400   54.43 Heterosexual (straight)         Sometimes
## 1401   61.24                Not sure            Rarely
## 1402   61.24 Heterosexual (straight)         Sometimes
## 1403   83.92 Heterosexual (straight)  Most of the time
## 1404   81.65 Heterosexual (straight)         Sometimes
## 1405   38.56 Heterosexual (straight)             Never
## 1406   47.63 Heterosexual (straight)         Sometimes
## 1407   58.06 Heterosexual (straight)         Sometimes
## 1408      NA                Not sure  Most of the time
## 1409   53.52 Heterosexual (straight)         Sometimes
## 1410   63.50 Heterosexual (straight)            Rarely
## 1411   52.16 Heterosexual (straight)            Rarely
## 1412   58.51 Heterosexual (straight)  Most of the time
## 1413   56.70 Heterosexual (straight)         Sometimes
## 1414   79.38                Bisexual            Always
## 1415   67.59 Heterosexual (straight)         Sometimes
## 1416   67.13 Heterosexual (straight)         Sometimes
## 1417   61.24 Heterosexual (straight)            Rarely
## 1418   53.52 Heterosexual (straight)         Sometimes
## 1419   68.04          Gay or lesbian         Sometimes
## 1420   59.88 Heterosexual (straight)         Sometimes
## 1421   63.50                Not sure         Sometimes
## 1422   47.63 Heterosexual (straight)         Sometimes
## 1423   50.80 Heterosexual (straight)             Never
## 1424   61.24 Heterosexual (straight)         Sometimes
## 1425      NA Heterosexual (straight)              <NA>
## 1426   63.50 Heterosexual (straight)         Sometimes
## 1427   49.90 Heterosexual (straight)            Rarely
## 1428   52.62 Heterosexual (straight)  Most of the time
## 1429   63.50 Heterosexual (straight)         Sometimes
## 1430   56.70                Bisexual            Always
## 1431   51.71 Heterosexual (straight)            Rarely
## 1432      NA Heterosexual (straight)  Most of the time
## 1433   43.09 Heterosexual (straight)         Sometimes
## 1434   70.31 Heterosexual (straight)             Never
## 1435   99.79                Bisexual            Always
## 1436   61.24 Heterosexual (straight)            Rarely
## 1437   81.65 Heterosexual (straight)             Never
## 1438   63.50                Bisexual            Always
## 1439   58.97                Not sure         Sometimes
## 1440   59.88 Heterosexual (straight)            Rarely
## 1441   72.58 Heterosexual (straight)  Most of the time
## 1442   63.50                Bisexual         Sometimes
## 1443   77.11 Heterosexual (straight)         Sometimes
## 1444   43.55 Heterosexual (straight)              <NA>
## 1445   86.18          Some other way            Always
## 1446   43.09 Heterosexual (straight)  Most of the time
## 1447   76.20                Bisexual         Sometimes
## 1448   57.15 Heterosexual (straight)         Sometimes
## 1449   81.65 Heterosexual (straight)              <NA>
## 1450      NA Heterosexual (straight)         Sometimes
## 1451   56.70          Some other way         Sometimes
## 1452   56.70                Bisexual  Most of the time
## 1453   69.85 Heterosexual (straight)            Always
## 1454   77.57 Heterosexual (straight)         Sometimes
## 1455   51.26 Heterosexual (straight)            Rarely
## 1456   74.84 Heterosexual (straight)            Rarely
## 1457   69.40 Heterosexual (straight)            Rarely
## 1458   81.65                Bisexual  Most of the time
## 1459      NA Heterosexual (straight)         Sometimes
## 1460   48.54                Not sure  Most of the time
## 1461   53.52 Heterosexual (straight)            Rarely
## 1462   90.72          Gay or lesbian            Always
## 1463   46.27                Bisexual         Sometimes
## 1464   68.04                Bisexual  Most of the time
## 1465   50.35 Heterosexual (straight)         Sometimes
## 1466      NA Heterosexual (straight)              <NA>
## 1467   72.58 Heterosexual (straight)         Sometimes
## 1468   54.43 Heterosexual (straight)             Never
## 1469   83.92 Heterosexual (straight)  Most of the time
## 1470   58.51 Heterosexual (straight)         Sometimes
## 1471   41.28          Some other way  Most of the time
## 1472      NA Heterosexual (straight)              <NA>
## 1473  122.47 Heterosexual (straight)            Always
## 1474   52.16 Heterosexual (straight)         Sometimes
## 1475   61.24 Heterosexual (straight)  Most of the time
## 1476   83.92 Heterosexual (straight)         Sometimes
## 1477   52.16 Heterosexual (straight)         Sometimes
## 1478   86.18 Heterosexual (straight)         Sometimes
## 1479      NA Heterosexual (straight)             Never
## 1480   72.58 Heterosexual (straight)            Rarely
## 1481      NA Heterosexual (straight)         Sometimes
## 1482   49.44 Heterosexual (straight)         Sometimes
## 1483   56.70                Not sure  Most of the time
## 1484      NA Heterosexual (straight)              <NA>
## 1485   95.71 Heterosexual (straight)            Rarely
## 1486   54.43 Heterosexual (straight)  Most of the time
## 1487   65.77 Heterosexual (straight)         Sometimes
## 1488   62.60 Heterosexual (straight)             Never
## 1489      NA                Not sure         Sometimes
## 1490   90.72 Heterosexual (straight)         Sometimes
## 1491      NA                Not sure  Most of the time
## 1492   58.51 Heterosexual (straight)         Sometimes
## 1493   49.90 Heterosexual (straight)         Sometimes
## 1494   52.62 Heterosexual (straight)            Rarely
## 1495   57.15                Bisexual  Most of the time
## 1496      NA Heterosexual (straight)             Never
## 1497   88.45 Heterosexual (straight)             Never
## 1498   58.51          Some other way         Sometimes
## 1499   68.04 Heterosexual (straight)            Rarely
## 1500      NA Heterosexual (straight)         Sometimes
## 1501   56.70                Bisexual  Most of the time
## 1502   54.43 Heterosexual (straight)         Sometimes
## 1503      NA Heterosexual (straight)         Sometimes
## 1504   57.15 Heterosexual (straight)         Sometimes
## 1505   47.63 Heterosexual (straight)            Rarely
## 1506   61.24 Heterosexual (straight)         Sometimes
## 1507   54.43 Heterosexual (straight)         Sometimes
## 1508   72.58 Heterosexual (straight)            Rarely
## 1509      NA Heterosexual (straight)             Never
## 1510      NA                Bisexual         Sometimes
## 1511   48.54                Bisexual         Sometimes
## 1512   56.70 Heterosexual (straight)  Most of the time
## 1513   57.61 Heterosexual (straight)             Never
## 1514   44.45 Heterosexual (straight)            Rarely
## 1515   52.16                Bisexual            Rarely
## 1516   72.58                Not sure            Rarely
## 1517      NA Heterosexual (straight)            Rarely
## 1518   68.04 Heterosexual (straight)  Most of the time
## 1519   54.43 Heterosexual (straight)            Rarely
## 1520   47.63                Bisexual         Sometimes
## 1521   55.79                Bisexual         Sometimes
## 1522   51.26 Heterosexual (straight)  Most of the time
## 1523   54.43 Heterosexual (straight)  Most of the time
## 1524      NA                Bisexual            Always
## 1525   68.04 Heterosexual (straight)             Never
## 1526   56.25          Some other way         Sometimes
## 1527   68.95          Gay or lesbian  Most of the time
## 1528   54.43                Bisexual         Sometimes
## 1529   63.50 Heterosexual (straight)         Sometimes
## 1530   49.44                Bisexual  Most of the time
## 1531  117.94 Heterosexual (straight)  Most of the time
## 1532   47.17 Heterosexual (straight)  Most of the time
## 1533   54.43                Bisexual  Most of the time
## 1534   74.84 Heterosexual (straight)         Sometimes
## 1535   70.31 Heterosexual (straight)             Never
## 1536   60.33                Bisexual  Most of the time
## 1537   73.94 Heterosexual (straight)            Rarely
## 1538   63.50                Bisexual            Always
## 1539   72.58                Bisexual  Most of the time
## 1540   90.72 Heterosexual (straight)         Sometimes
## 1541  111.13 Heterosexual (straight)             Never
## 1542   52.16 Heterosexual (straight)         Sometimes
## 1543   36.29 Heterosexual (straight)            Rarely
## 1544   68.04 Heterosexual (straight)             Never
## 1545   89.81 Heterosexual (straight)  Most of the time
## 1546      NA Heterosexual (straight)         Sometimes
## 1547   44.00                Bisexual  Most of the time
## 1548   63.50 Heterosexual (straight)            Rarely
## 1549   61.24                Bisexual         Sometimes
## 1550   49.90 Heterosexual (straight)         Sometimes
## 1551   49.90 Heterosexual (straight)            Always
## 1552   54.43 Heterosexual (straight)         Sometimes
## 1553   86.18                Bisexual         Sometimes
## 1554   71.22                Not sure            Rarely
## 1555   97.52 Heterosexual (straight)              <NA>
## 1556   68.04 Heterosexual (straight)         Sometimes
## 1557   61.24                Bisexual            Rarely
## 1558   58.97                Bisexual         Sometimes
## 1559   63.50 Heterosexual (straight)             Never
## 1560      NA                Bisexual  Most of the time
## 1561      NA          Gay or lesbian            Always
## 1562   62.60          Some other way         Sometimes
## 1563   54.43 Heterosexual (straight)            Rarely
## 1564   77.11 Heterosexual (straight)            Always
## 1565   58.97 Heterosexual (straight)         Sometimes
## 1566   58.97          Some other way         Sometimes
## 1567   49.90 Heterosexual (straight)  Most of the time
## 1568   70.31                Bisexual            Always
## 1569   54.43 Heterosexual (straight)            Rarely
## 1570   79.38 Heterosexual (straight)            Rarely
## 1571   63.50 Heterosexual (straight)             Never
## 1572   58.97 Heterosexual (straight)         Sometimes
## 1573  108.86 Heterosexual (straight)         Sometimes
## 1574   74.84 Heterosexual (straight)            Always
## 1575   90.72 Heterosexual (straight)            Rarely
## 1576   49.90                Bisexual         Sometimes
## 1577   59.88                Not sure            Rarely
## 1578   83.92 Heterosexual (straight)            Rarely
## 1579   52.16 Heterosexual (straight)  Most of the time
## 1580   91.63 Heterosexual (straight)             Never
## 1581      NA                Bisexual         Sometimes
## 1582  111.13 Heterosexual (straight)             Never
## 1583   86.18 Heterosexual (straight)         Sometimes
## 1584   63.50                Bisexual  Most of the time
## 1585   50.80                Bisexual         Sometimes
## 1586   61.24 Heterosexual (straight)            Rarely
## 1587   49.90 Heterosexual (straight)             Never
## 1588   54.43 Heterosexual (straight)         Sometimes
## 1589   68.04 Heterosexual (straight)             Never
## 1590   58.97          Some other way  Most of the time
## 1591   49.90 Heterosexual (straight)            Rarely
## 1592   72.12 Heterosexual (straight)            Rarely
## 1593   49.90 Heterosexual (straight)         Sometimes
## 1594   68.04 Heterosexual (straight)            Rarely
## 1595   72.58                Bisexual         Sometimes
## 1596   58.06 Heterosexual (straight)  Most of the time
## 1597   49.90 Heterosexual (straight)  Most of the time
## 1598   44.45 Heterosexual (straight)            Rarely
## 1599   44.45                Not sure            Rarely
## 1600   88.45 Heterosexual (straight)  Most of the time
## 1601   72.58                Not sure         Sometimes
## 1602   57.15 Heterosexual (straight)  Most of the time
## 1603   54.43 Heterosexual (straight)             Never
## 1604   37.65                Bisexual             Never
## 1605   90.72                Bisexual         Sometimes
## 1606      NA Heterosexual (straight)         Sometimes
## 1607   57.15 Heterosexual (straight)            Rarely
## 1608   88.45 Heterosexual (straight)  Most of the time
## 1609   72.58 Heterosexual (straight)         Sometimes
## 1610   70.76 Heterosexual (straight)            Rarely
## 1611   70.76 Heterosexual (straight)            Rarely
## 1612   68.04 Heterosexual (straight)         Sometimes
## 1613   79.38 Heterosexual (straight)            Rarely
## 1614   48.08 Heterosexual (straight)            Always
## 1615   68.04 Heterosexual (straight)             Never
## 1616   90.72 Heterosexual (straight)         Sometimes
## 1617   83.92 Heterosexual (straight)         Sometimes
## 1618   47.63 Heterosexual (straight)  Most of the time
## 1619      NA Heterosexual (straight)             Never
## 1620   53.98                Bisexual  Most of the time
## 1621   77.11 Heterosexual (straight)            Rarely
## 1622   51.71 Heterosexual (straight)  Most of the time
## 1623   58.97 Heterosexual (straight)             Never
## 1624   47.63 Heterosexual (straight)            Rarely
## 1625   53.07 Heterosexual (straight)            Rarely
## 1626   74.84 Heterosexual (straight)  Most of the time
## 1627   67.13 Heterosexual (straight)  Most of the time
## 1628   60.33 Heterosexual (straight)  Most of the time
## 1629      NA          Some other way         Sometimes
## 1630   53.07 Heterosexual (straight)            Rarely
## 1631   61.24 Heterosexual (straight)  Most of the time
## 1632   56.70          Some other way  Most of the time
## 1633   62.14 Heterosexual (straight)         Sometimes
## 1634   81.65                Bisexual  Most of the time
## 1635   69.40                Bisexual            Rarely
## 1636   70.31 Heterosexual (straight)            Rarely
## 1637   61.24 Heterosexual (straight)            Rarely
## 1638   55.34          Gay or lesbian            Always
## 1639   56.70 Heterosexual (straight)            Rarely
## 1640   49.90 Heterosexual (straight)  Most of the time
## 1641   53.07 Heterosexual (straight)         Sometimes
## 1642   71.22 Heterosexual (straight)            Rarely
## 1643   70.31 Heterosexual (straight)         Sometimes
## 1644      NA Heterosexual (straight)  Most of the time
## 1645   56.25                Bisexual  Most of the time
## 1646   63.05 Heterosexual (straight)  Most of the time
## 1647   53.07          Gay or lesbian  Most of the time
## 1648   72.58 Heterosexual (straight)             Never
## 1649      NA Heterosexual (straight)              <NA>
## 1650   81.65 Heterosexual (straight)             Never
## 1651   56.70 Heterosexual (straight)  Most of the time
## 1652   85.28          Some other way         Sometimes
## 1653   58.97 Heterosexual (straight)  Most of the time
## 1654      NA Heterosexual (straight)            Rarely
## 1655      NA Heterosexual (straight)            Always
## 1656   52.16 Heterosexual (straight)  Most of the time
## 1657   65.77          Gay or lesbian              <NA>
## 1658   58.06 Heterosexual (straight)         Sometimes
## 1659   68.04                Bisexual  Most of the time
## 1660   61.24                Bisexual  Most of the time
## 1661   68.04          Gay or lesbian            Always
## 1662   86.18 Heterosexual (straight)              <NA>
## 1663      NA          Some other way  Most of the time
## 1664   52.16          Some other way         Sometimes
## 1665   50.35 Heterosexual (straight)  Most of the time
## 1666   57.15 Heterosexual (straight)            Always
## 1667   54.43 Heterosexual (straight)  Most of the time
## 1668   65.77 Heterosexual (straight)         Sometimes
## 1669   74.84 Heterosexual (straight)         Sometimes
## 1670   58.97                Not sure  Most of the time
## 1671   93.90                Bisexual  Most of the time
## 1672   92.99 Heterosexual (straight)            Rarely
## 1673      NA Heterosexual (straight)             Never
## 1674   65.77 Heterosexual (straight)  Most of the time
## 1675   63.50          Some other way            Always
## 1676      NA          Some other way  Most of the time
## 1677      NA          Some other way            Always
## 1678   52.16                Bisexual  Most of the time
## 1679  141.52          Some other way  Most of the time
## 1680   45.36                Not sure  Most of the time
## 1681   51.71 Heterosexual (straight)  Most of the time
## 1682   62.14 Heterosexual (straight)            Rarely
## 1683      NA Heterosexual (straight)              <NA>
## 1684      NA          Some other way            Always
## 1685   43.09          Some other way  Most of the time
## 1686   63.96          Gay or lesbian            Always
## 1687   56.70 Heterosexual (straight)             Never
## 1688   56.25                Bisexual  Most of the time
## 1689  104.33 Heterosexual (straight)             Never
## 1690   68.04 Heterosexual (straight)  Most of the time
## 1691   54.43                Not sure  Most of the time
## 1692   46.72 Heterosexual (straight)         Sometimes
## 1693   49.90 Heterosexual (straight)         Sometimes
## 1694   68.04                Not sure  Most of the time
## 1695   54.43 Heterosexual (straight)  Most of the time
## 1696   81.65                Bisexual         Sometimes
## 1697   58.97 Heterosexual (straight)            Rarely
## 1698   99.79 Heterosexual (straight)            Rarely
## 1699   49.90 Heterosexual (straight)            Rarely
## 1700      NA Heterosexual (straight)         Sometimes
## 1701   83.01 Heterosexual (straight)         Sometimes
## 1702  101.61 Heterosexual (straight)  Most of the time
## 1703  115.21 Heterosexual (straight)            Rarely
## 1704   46.72                Bisexual            Always
## 1705      NA                Not sure  Most of the time
## 1706   77.11          Some other way            Always
## 1707   64.86                Bisexual  Most of the time
## 1708   75.75 Heterosexual (straight)  Most of the time
## 1709  142.88                Not sure            Always
## 1710   44.00 Heterosexual (straight)             Never
## 1711   81.65 Heterosexual (straight)            Rarely
## 1712      NA          Some other way  Most of the time
## 1713   54.43 Heterosexual (straight)         Sometimes
## 1714      NA                Bisexual         Sometimes
## 1715   52.16 Heterosexual (straight)            Rarely
## 1716   59.88                Bisexual         Sometimes
## 1717      NA Heterosexual (straight)            Rarely
## 1718   61.24 Heterosexual (straight)         Sometimes
## 1719   49.90 Heterosexual (straight)  Most of the time
## 1720   88.45 Heterosexual (straight)             Never
## 1721   59.42 Heterosexual (straight)  Most of the time
## 1722   58.97                Bisexual         Sometimes
## 1723   72.58 Heterosexual (straight)            Rarely
## 1724   63.50                Bisexual  Most of the time
## 1725      NA                Not sure            Rarely
## 1726   58.06 Heterosexual (straight)         Sometimes
## 1727   47.63 Heterosexual (straight)         Sometimes
## 1728      NA Heterosexual (straight)         Sometimes
## 1729   56.25 Heterosexual (straight)             Never
## 1730   86.18 Heterosexual (straight)  Most of the time
## 1731   86.18                Bisexual            Always
## 1732   47.63                Bisexual            Rarely
## 1733   77.11 Heterosexual (straight)             Never
## 1734      NA                Not sure              <NA>
## 1735   51.26                Bisexual         Sometimes
## 1736   63.50          Gay or lesbian  Most of the time
## 1737   61.24 Heterosexual (straight)            Rarely
## 1738   63.50 Heterosexual (straight)  Most of the time
## 1739   58.97                Bisexual            Rarely
## 1740   58.97 Heterosexual (straight)  Most of the time
## 1741   79.38 Heterosexual (straight)            Rarely
## 1742   65.77 Heterosexual (straight)            Rarely
## 1743   99.79          Some other way         Sometimes
## 1744   47.63 Heterosexual (straight)  Most of the time
## 1745   86.18 Heterosexual (straight)         Sometimes
## 1746   44.45                Not sure            Rarely
## 1747   58.97 Heterosexual (straight)         Sometimes
## 1748   60.33                Bisexual         Sometimes
## 1749   61.69 Heterosexual (straight)  Most of the time
## 1750   99.79 Heterosexual (straight)            Rarely
## 1751   53.52                Not sure         Sometimes
## 1752   54.43 Heterosexual (straight)         Sometimes
## 1753      NA Heterosexual (straight)         Sometimes
## 1754   50.80                Bisexual             Never
## 1755   72.58          Gay or lesbian            Rarely
## 1756   53.52                Bisexual            Rarely
## 1757   90.72                Not sure            Rarely
## 1758  122.47                Bisexual         Sometimes
## 1759   90.72                Not sure         Sometimes
## 1760   72.58 Heterosexual (straight)             Never
## 1761   61.69                Not sure         Sometimes
## 1762   52.16                Not sure         Sometimes
## 1763   57.15 Heterosexual (straight)             Never
## 1764   58.06                Bisexual  Most of the time
## 1765   70.76 Heterosexual (straight)             Never
## 1766   43.55 Heterosexual (straight)         Sometimes
## 1767   49.44 Heterosexual (straight)             Never
## 1768   45.36                Bisexual         Sometimes
## 1769   73.48                Bisexual  Most of the time
## 1770   74.84 Heterosexual (straight)            Rarely
## 1771   48.08                Bisexual         Sometimes
## 1772   68.04 Heterosexual (straight)         Sometimes
## 1773   65.77 Heterosexual (straight)            Rarely
## 1774   43.09                Not sure  Most of the time
## 1775   54.43                Bisexual            Always
## 1776   57.15 Heterosexual (straight)         Sometimes
## 1777   77.11          Some other way         Sometimes
## 1778   45.36 Heterosexual (straight)            Rarely
## 1779   58.06 Heterosexual (straight)         Sometimes
## 1780   47.63 Heterosexual (straight)  Most of the time
## 1781   61.24 Heterosexual (straight)  Most of the time
## 1782   93.90 Heterosexual (straight)            Rarely
## 1783   39.92 Heterosexual (straight)            Always
## 1784   52.16          Gay or lesbian         Sometimes
## 1785  108.86 Heterosexual (straight)            Rarely
## 1786   90.72 Heterosexual (straight)         Sometimes
## 1787   45.36 Heterosexual (straight)             Never
## 1788      NA Heterosexual (straight)            Rarely
## 1789   56.70 Heterosexual (straight)         Sometimes
## 1790   62.60                Bisexual         Sometimes
## 1791   45.36 Heterosexual (straight)             Never
## 1792   83.92 Heterosexual (straight)         Sometimes
## 1793      NA          Some other way  Most of the time
## 1794   58.97 Heterosexual (straight)              <NA>
## 1795   70.76 Heterosexual (straight)            Rarely
## 1796      NA Heterosexual (straight)            Rarely
## 1797  126.10 Heterosexual (straight)             Never
## 1798   90.72          Some other way  Most of the time
## 1799   57.15 Heterosexual (straight)  Most of the time
## 1800   65.77 Heterosexual (straight)            Rarely
## 1801   86.18                Bisexual  Most of the time
## 1802   62.60          Gay or lesbian            Always
## 1803   83.92          Some other way  Most of the time
## 1804   58.97 Heterosexual (straight)            Rarely
## 1805   58.97 Heterosexual (straight)            Rarely
## 1806   63.50 Heterosexual (straight)            Rarely
## 1807   58.97          Gay or lesbian  Most of the time
## 1808      NA Heterosexual (straight)              <NA>
## 1809   63.50 Heterosexual (straight)  Most of the time
## 1810   63.50 Heterosexual (straight)         Sometimes
## 1811   47.63                Not sure            Always
## 1812   68.04          Gay or lesbian         Sometimes
## 1813   46.72                Bisexual         Sometimes
## 1814      NA                Bisexual         Sometimes
## 1815   54.43 Heterosexual (straight)            Rarely
## 1816   58.97 Heterosexual (straight)         Sometimes
## 1817      NA Heterosexual (straight)             Never
## 1818   79.83 Heterosexual (straight)  Most of the time
## 1819   57.61 Heterosexual (straight)             Never
## 1820      NA Heterosexual (straight)              <NA>
## 1821   63.50          Gay or lesbian         Sometimes
## 1822   63.50 Heterosexual (straight)         Sometimes
## 1823   60.33 Heterosexual (straight)         Sometimes
## 1824   45.36 Heterosexual (straight)         Sometimes
## 1825   75.30 Heterosexual (straight)  Most of the time
## 1826   49.90 Heterosexual (straight)            Always
## 1827   34.93                Bisexual         Sometimes
## 1828   54.43          Some other way  Most of the time
## 1829   90.72 Heterosexual (straight)            Rarely
## 1830   47.17 Heterosexual (straight)            Rarely
## 1831   53.07 Heterosexual (straight)            Rarely
## 1832   72.58 Heterosexual (straight)              <NA>
## 1833   50.35 Heterosexual (straight)         Sometimes
## 1834      NA Heterosexual (straight)             Never
## 1835   83.92 Heterosexual (straight)            Rarely
## 1836   99.79 Heterosexual (straight)         Sometimes
## 1837   61.69                Bisexual            Always
## 1838   43.55 Heterosexual (straight)         Sometimes
## 1839   79.38 Heterosexual (straight)  Most of the time
## 1840   68.95 Heterosexual (straight)            Always
## 1841   40.82 Heterosexual (straight)            Always
## 1842   56.70 Heterosexual (straight)             Never
## 1843   51.71          Some other way            Always
## 1844   56.70 Heterosexual (straight)         Sometimes
## 1845   54.43 Heterosexual (straight)              <NA>
## 1846   79.38                Not sure  Most of the time
## 1847   72.58 Heterosexual (straight)            Rarely
## 1848   54.43 Heterosexual (straight)         Sometimes
## 1849   72.58 Heterosexual (straight)         Sometimes
## 1850   57.15                Bisexual            Always
## 1851      NA Heterosexual (straight)            Rarely
## 1852      NA Heterosexual (straight)              <NA>
## 1853   70.31 Heterosexual (straight)            Rarely
## 1854   56.70                Bisexual             Never
## 1855   68.04 Heterosexual (straight)            Always
## 1856   72.58 Heterosexual (straight)            Rarely
## 1857   70.31 Heterosexual (straight)  Most of the time
## 1858   72.58 Heterosexual (straight)             Never
## 1859      NA                Bisexual              <NA>
## 1860   53.52 Heterosexual (straight)              <NA>
## 1861      NA                Not sure             Never
## 1862   52.16 Heterosexual (straight)  Most of the time
## 1863   63.50 Heterosexual (straight)         Sometimes
## 1864   71.67 Heterosexual (straight)            Always
## 1865   63.50 Heterosexual (straight)             Never
## 1866   54.43 Heterosexual (straight)         Sometimes
## 1867      NA Heterosexual (straight)            Rarely
## 1868   52.16 Heterosexual (straight)             Never
## 1869   54.43                Bisexual  Most of the time
## 1870   49.90 Heterosexual (straight)         Sometimes
## 1871   66.68 Heterosexual (straight)            Always
## 1872   49.90 Heterosexual (straight)         Sometimes
## 1873   72.58 Heterosexual (straight)            Always
## 1874   43.09 Heterosexual (straight)  Most of the time
## 1875      NA                Not sure  Most of the time
## 1876   70.31 Heterosexual (straight)             Never
## 1877      NA                Bisexual            Always
## 1878   52.16 Heterosexual (straight)             Never
## 1879   54.43                Not sure         Sometimes
## 1880  104.33 Heterosexual (straight)             Never
## 1881   45.36 Heterosexual (straight)         Sometimes
## 1882   61.24 Heterosexual (straight)         Sometimes
## 1883   74.84 Heterosexual (straight)             Never
## 1884   46.27 Heterosexual (straight)            Rarely
## 1885      NA          Some other way            Always
## 1886   63.50 Heterosexual (straight)            Always
## 1887      NA Heterosexual (straight)             Never
## 1888   56.70 Heterosexual (straight)         Sometimes
## 1889   55.34 Heterosexual (straight)  Most of the time
## 1890   53.98 Heterosexual (straight)            Always
## 1891   61.24 Heterosexual (straight)            Rarely
## 1892   67.59                Bisexual         Sometimes
## 1893   65.77 Heterosexual (straight)             Never
## 1894   70.31 Heterosexual (straight)             Never
## 1895   99.79 Heterosexual (straight)         Sometimes
## 1896   61.24                Bisexual              <NA>
## 1897   68.04 Heterosexual (straight)  Most of the time
## 1898   52.62 Heterosexual (straight)         Sometimes
## 1899   47.63 Heterosexual (straight)         Sometimes
## 1900   56.70 Heterosexual (straight)         Sometimes
## 1901   68.04 Heterosexual (straight)            Rarely
## 1902   47.63 Heterosexual (straight)  Most of the time
## 1903   63.50 Heterosexual (straight)            Rarely
## 1904   46.72 Heterosexual (straight)  Most of the time
## 1905   61.24                Not sure            Rarely
## 1906   45.36          Gay or lesbian         Sometimes
## 1907   43.09                Not sure            Always
## 1908   88.91 Heterosexual (straight)         Sometimes
## 1909      NA                Not sure            Rarely
## 1910   75.75 Heterosexual (straight)            Rarely
## 1911   57.61 Heterosexual (straight)             Never
## 1912   54.43 Heterosexual (straight)             Never
## 1913   56.70 Heterosexual (straight)         Sometimes
## 1914   50.80          Gay or lesbian  Most of the time
## 1915   64.41 Heterosexual (straight)            Rarely
## 1916   58.97 Heterosexual (straight)         Sometimes
## 1917      NA Heterosexual (straight)            Rarely
## 1918   72.58 Heterosexual (straight)             Never
## 1919   52.62                Not sure         Sometimes
## 1920      NA Heterosexual (straight)         Sometimes
## 1921      NA          Some other way         Sometimes
## 1922   82.56 Heterosexual (straight)             Never
## 1923   49.90          Some other way            Always
## 1924   78.93 Heterosexual (straight)            Rarely
## 1925   65.77                Bisexual         Sometimes
## 1926   86.18 Heterosexual (straight)  Most of the time
## 1927   58.97                Bisexual  Most of the time
## 1928   56.70 Heterosexual (straight)         Sometimes
## 1929   63.50 Heterosexual (straight)         Sometimes
## 1930   61.24 Heterosexual (straight)         Sometimes
## 1931   65.77 Heterosexual (straight)             Never
## 1932   81.65          Gay or lesbian         Sometimes
## 1933   58.97 Heterosexual (straight)            Rarely
## 1934   63.50 Heterosexual (straight)         Sometimes
## 1935   59.88 Heterosexual (straight)             Never
## 1936   68.04 Heterosexual (straight)            Rarely
## 1937   78.02 Heterosexual (straight)         Sometimes
## 1938  104.33 Heterosexual (straight)         Sometimes
## 1939   70.31 Heterosexual (straight)  Most of the time
## 1940   71.67 Heterosexual (straight)            Rarely
## 1941   52.16 Heterosexual (straight)            Rarely
## 1942   65.77 Heterosexual (straight)            Rarely
## 1943   56.70 Heterosexual (straight)  Most of the time
## 1944   63.50 Heterosexual (straight)             Never
## 1945   54.43 Heterosexual (straight)            Rarely
## 1946   72.58 Heterosexual (straight)         Sometimes
## 1947   88.45 Heterosexual (straight)         Sometimes
## 1948   56.70                Bisexual         Sometimes
## 1949   81.65 Heterosexual (straight)         Sometimes
## 1950   83.01 Heterosexual (straight)         Sometimes
## 1951   73.94 Heterosexual (straight)            Rarely
## 1952   65.77 Heterosexual (straight)            Always
## 1953      NA Heterosexual (straight)         Sometimes
## 1954      NA Heterosexual (straight)         Sometimes
## 1955   52.62 Heterosexual (straight)  Most of the time
## 1956   74.84                Bisexual            Always
## 1957   54.43 Heterosexual (straight)             Never
## 1958      NA          Some other way            Always
## 1959      NA Heterosexual (straight)             Never
## 1960   54.43 Heterosexual (straight)         Sometimes
## 1961   50.80 Heterosexual (straight)         Sometimes
## 1962   48.54 Heterosexual (straight)  Most of the time
## 1963   74.84 Heterosexual (straight)         Sometimes
## 1964   45.36                Bisexual            Always
## 1965   56.70 Heterosexual (straight)             Never
## 1966   60.78 Heterosexual (straight)         Sometimes
## 1967   68.04 Heterosexual (straight)            Rarely
## 1968      NA                Bisexual            Rarely
## 1969   54.43 Heterosexual (straight)  Most of the time
## 1970   47.63                Not sure  Most of the time
## 1971      NA Heterosexual (straight)  Most of the time
## 1972   54.43 Heterosexual (straight)             Never
## 1973   55.79 Heterosexual (straight)  Most of the time
## 1974      NA Heterosexual (straight)             Never
## 1975   65.77 Heterosexual (straight)            Rarely
## 1976      NA Heterosexual (straight)         Sometimes
## 1977   45.36 Heterosexual (straight)         Sometimes
## 1978   61.24 Heterosexual (straight)  Most of the time
## 1979   65.77 Heterosexual (straight)            Rarely
## 1980   86.18 Heterosexual (straight)             Never
## 1981   74.84 Heterosexual (straight)            Rarely
## 1982   45.36 Heterosexual (straight)            Rarely
## 1983   65.77 Heterosexual (straight)            Rarely
## 1984   72.58 Heterosexual (straight)  Most of the time
## 1985   45.36 Heterosexual (straight)            Rarely
## 1986   65.77                Bisexual         Sometimes
## 1987  101.61 Heterosexual (straight)         Sometimes
## 1988   42.64          Gay or lesbian  Most of the time
## 1989   56.70                Not sure         Sometimes
## 1990   58.97 Heterosexual (straight)         Sometimes
## 1991  124.29                Bisexual  Most of the time
## 1992   54.43 Heterosexual (straight)             Never
## 1993   61.24 Heterosexual (straight)             Never
## 1994  104.33                Bisexual  Most of the time
## 1995   54.89                Bisexual  Most of the time
## 1996   92.53 Heterosexual (straight)  Most of the time
## 1997   45.36                Bisexual  Most of the time
## 1998   77.11 Heterosexual (straight)            Rarely
## 1999   79.38 Heterosexual (straight)         Sometimes
## 2000      NA                Bisexual         Sometimes
## 2001   72.58 Heterosexual (straight)         Sometimes
## 2002   50.80 Heterosexual (straight)         Sometimes
## 2003   83.92 Heterosexual (straight)  Most of the time
## 2004   53.52                Bisexual            Rarely
## 2005   49.90 Heterosexual (straight)  Most of the time
## 2006   58.97 Heterosexual (straight)             Never
## 2007   53.07 Heterosexual (straight)         Sometimes
## 2008   56.70                Bisexual  Most of the time
## 2009   70.31 Heterosexual (straight)         Sometimes
## 2010   60.78          Some other way  Most of the time
## 2011   74.84 Heterosexual (straight)             Never
## 2012   81.19                Not sure            Always
## 2013   58.06          Gay or lesbian  Most of the time
## 2014   56.70 Heterosexual (straight)  Most of the time
## 2015   77.57 Heterosexual (straight)            Rarely
## 2016   70.31 Heterosexual (straight)             Never
## 2017   52.16          Gay or lesbian  Most of the time
## 2018   90.72                Not sure         Sometimes
## 2019   71.67                Bisexual         Sometimes
## 2020   55.79                Bisexual  Most of the time
## 2021   48.08 Heterosexual (straight)         Sometimes
## 2022   57.61 Heterosexual (straight)  Most of the time
## 2023   54.89 Heterosexual (straight)         Sometimes
## 2024   53.52 Heterosexual (straight)            Always
## 2025   74.84 Heterosexual (straight)  Most of the time
## 2026   95.26 Heterosexual (straight)         Sometimes
## 2027   76.20 Heterosexual (straight)         Sometimes
## 2028   64.41 Heterosexual (straight)            Rarely
## 2029   65.77                Bisexual  Most of the time
## 2030   50.35          Some other way         Sometimes
## 2031   65.77 Heterosexual (straight)  Most of the time
## 2032   48.99 Heterosexual (straight)         Sometimes
## 2033   77.11 Heterosexual (straight)            Rarely
## 2034   68.04                Bisexual         Sometimes
## 2035  111.13 Heterosexual (straight)            Rarely
## 2036   45.36 Heterosexual (straight)         Sometimes
## 2037   88.45 Heterosexual (straight)         Sometimes
## 2038   74.84 Heterosexual (straight)         Sometimes
## 2039   49.44                Not sure  Most of the time
## 2040   42.64                Bisexual  Most of the time
## 2041   60.33 Heterosexual (straight)         Sometimes
## 2042   55.34 Heterosexual (straight)  Most of the time
## 2043   58.97 Heterosexual (straight)  Most of the time
## 2044   79.38 Heterosexual (straight)  Most of the time
## 2045   54.43 Heterosexual (straight)            Rarely
## 2046   77.11 Heterosexual (straight)            Always
## 2047   64.41                Not sure             Never
## 2048   52.16 Heterosexual (straight)             Never
## 2049   81.65 Heterosexual (straight)            Rarely
## 2050   48.99 Heterosexual (straight)            Rarely
## 2051   56.70                Bisexual  Most of the time
## 2052   61.24                Bisexual            Always
## 2053   46.72                Bisexual  Most of the time
## 2054   81.65 Heterosexual (straight)            Always
## 2055   48.54                Bisexual         Sometimes
## 2056      NA                Bisexual         Sometimes
## 2057   61.24 Heterosexual (straight)  Most of the time
## 2058   72.58 Heterosexual (straight)             Never
## 2059   54.43 Heterosexual (straight)         Sometimes
## 2060   73.48 Heterosexual (straight)         Sometimes
## 2061   72.58 Heterosexual (straight)         Sometimes
## 2062   65.77 Heterosexual (straight)  Most of the time
## 2063   83.92          Gay or lesbian  Most of the time
## 2064   68.04 Heterosexual (straight)         Sometimes
## 2065   58.97 Heterosexual (straight)            Always
## 2066   56.70 Heterosexual (straight)         Sometimes
## 2067   45.36                Bisexual            Rarely
## 2068   58.97 Heterosexual (straight)             Never
## 2069   54.43                Bisexual  Most of the time
## 2070   61.24          Gay or lesbian         Sometimes
## 2071   68.04                Bisexual         Sometimes
## 2072      NA                Not sure            Rarely
## 2073   61.24 Heterosexual (straight)         Sometimes
## 2074   90.72 Heterosexual (straight)            Rarely
## 2075   81.65          Gay or lesbian         Sometimes
## 2076   68.04                Bisexual         Sometimes
## 2077   58.97 Heterosexual (straight)            Rarely
## 2078   58.97 Heterosexual (straight)  Most of the time
## 2079   95.26 Heterosexual (straight)            Rarely
## 2080   53.52 Heterosexual (straight)  Most of the time
## 2081   65.77 Heterosexual (straight)             Never
## 2082   56.70          Gay or lesbian              <NA>
## 2083   61.69          Some other way            Always
## 2084   55.34 Heterosexual (straight)         Sometimes
## 2085   52.16 Heterosexual (straight)  Most of the time
## 2086   54.89                Bisexual  Most of the time
## 2087   63.05 Heterosexual (straight)             Never
## 2088   45.36                Bisexual         Sometimes
## 2089   54.43                Not sure  Most of the time
## 2090   49.44 Heterosexual (straight)         Sometimes
## 2091      NA Heterosexual (straight)             Never
## 2092   59.88                Bisexual  Most of the time
## 2093   56.70                Not sure  Most of the time
## 2094      NA                Bisexual         Sometimes
## 2095   99.79                Bisexual         Sometimes
## 2096   57.61 Heterosexual (straight)            Rarely
## 2097   46.27 Heterosexual (straight)  Most of the time
## 2098   51.26                Bisexual  Most of the time
## 2099   52.16 Heterosexual (straight)             Never
## 2100   53.07 Heterosexual (straight)            Rarely
## 2101   70.76                Bisexual  Most of the time
## 2102   58.06                Bisexual  Most of the time
## 2103   60.78 Heterosexual (straight)         Sometimes
## 2104  113.40 Heterosexual (straight)             Never
## 2105      NA Heterosexual (straight)         Sometimes
## 2106      NA                Not sure  Most of the time
## 2107   58.97 Heterosexual (straight)         Sometimes
## 2108   46.27 Heterosexual (straight)  Most of the time
## 2109   52.16                Bisexual         Sometimes
## 2110      NA Heterosexual (straight)         Sometimes
## 2111   63.50 Heterosexual (straight)         Sometimes
## 2112   45.36          Some other way            Always
## 2113   90.72 Heterosexual (straight)            Rarely
## 2114   56.70 Heterosexual (straight)         Sometimes
## 2115   49.90 Heterosexual (straight)  Most of the time
## 2116   65.77                Not sure            Rarely
## 2117   63.50          Gay or lesbian         Sometimes
## 2118      NA Heterosexual (straight)              <NA>
## 2119   40.82 Heterosexual (straight)         Sometimes
## 2120   53.52 Heterosexual (straight)  Most of the time
## 2121   71.67                Bisexual         Sometimes
## 2122   83.01 Heterosexual (straight)            Rarely
## 2123   54.43 Heterosexual (straight)             Never
## 2124   67.13 Heterosexual (straight)            Rarely
## 2125   54.43 Heterosexual (straight)            Always
## 2126   42.64          Some other way            Rarely
## 2127   58.97 Heterosexual (straight)  Most of the time
## 2128   47.63 Heterosexual (straight)         Sometimes
## 2129   54.43 Heterosexual (straight)         Sometimes
## 2130   45.81 Heterosexual (straight)  Most of the time
## 2131   83.92 Heterosexual (straight)            Always
## 2132   68.95 Heterosexual (straight)         Sometimes
## 2133   68.04          Some other way  Most of the time
## 2134   45.36 Heterosexual (straight)  Most of the time
## 2135   64.41                Not sure  Most of the time
## 2136   46.27 Heterosexual (straight)         Sometimes
## 2137   54.43 Heterosexual (straight)            Rarely
## 2138   44.45 Heterosexual (straight)  Most of the time
## 2139   72.58 Heterosexual (straight)         Sometimes
## 2140   65.77 Heterosexual (straight)            Rarely
## 2141   56.70 Heterosexual (straight)            Rarely
## 2142   54.43                Bisexual         Sometimes
## 2143   54.43          Some other way  Most of the time
## 2144   67.13 Heterosexual (straight)  Most of the time
## 2145   56.70 Heterosexual (straight)  Most of the time
## 2146   48.54 Heterosexual (straight)         Sometimes
## 2147  111.13 Heterosexual (straight)            Always
## 2148   54.43          Gay or lesbian  Most of the time
## 2149   75.75 Heterosexual (straight)            Rarely
## 2150   68.04 Heterosexual (straight)         Sometimes
## 2151   58.51 Heterosexual (straight)         Sometimes
## 2152      NA                Bisexual            Rarely
## 2153   81.65                Bisexual         Sometimes
## 2154   56.70          Some other way             Never
## 2155   56.70 Heterosexual (straight)            Rarely
## 2156   76.20 Heterosexual (straight)         Sometimes
## 2157   58.97 Heterosexual (straight)  Most of the time
## 2158   68.04          Gay or lesbian            Rarely
## 2159   78.02 Heterosexual (straight)            Rarely
## 2160   86.18 Heterosexual (straight)            Rarely
## 2161   77.11 Heterosexual (straight)             Never
## 2162      NA Heterosexual (straight)             Never
## 2163   52.16 Heterosexual (straight)         Sometimes
## 2164  108.86          Some other way  Most of the time
## 2165   86.18 Heterosexual (straight)         Sometimes
## 2166  108.86 Heterosexual (straight)            Rarely
## 2167  113.40 Heterosexual (straight)             Never
## 2168  120.66                Bisexual            Always
## 2169   65.77 Heterosexual (straight)            Rarely
## 2170   39.46 Heterosexual (straight)         Sometimes
## 2171   45.36          Gay or lesbian            Always
## 2172      NA                Bisexual  Most of the time
## 2173   81.65 Heterosexual (straight)  Most of the time
## 2174   56.70 Heterosexual (straight)         Sometimes
## 2175   92.99 Heterosexual (straight)            Always
## 2176   81.65 Heterosexual (straight)              <NA>
## 2177   68.04 Heterosexual (straight)         Sometimes
## 2178  149.69 Heterosexual (straight)            Rarely
## 2179   58.06 Heterosexual (straight)         Sometimes
## 2180   91.17 Heterosexual (straight)         Sometimes
## 2181   61.69          Gay or lesbian         Sometimes
## 2182   53.52 Heterosexual (straight)         Sometimes
## 2183   56.70 Heterosexual (straight)         Sometimes
## 2184   56.70 Heterosexual (straight)  Most of the time
## 2185      NA Heterosexual (straight)             Never
## 2186   68.04 Heterosexual (straight)         Sometimes
## 2187   61.24 Heterosexual (straight)         Sometimes
## 2188   52.16 Heterosexual (straight)  Most of the time
## 2189   61.24                Bisexual         Sometimes
## 2190   45.36 Heterosexual (straight)            Rarely
## 2191   58.97          Gay or lesbian            Always
## 2192   77.11 Heterosexual (straight)            Rarely
## 2193   73.94 Heterosexual (straight)  Most of the time
## 2194   54.43 Heterosexual (straight)         Sometimes
## 2195   64.41          Gay or lesbian            Rarely
## 2196   49.90 Heterosexual (straight)         Sometimes
## 2197   90.72 Heterosexual (straight)  Most of the time
## 2198   62.60          Gay or lesbian  Most of the time
## 2199   54.43 Heterosexual (straight)  Most of the time
## 2200   76.20 Heterosexual (straight)         Sometimes
## 2201   78.47 Heterosexual (straight)            Rarely
## 2202   72.58          Some other way            Rarely
## 2203   72.12 Heterosexual (straight)         Sometimes
## 2204   68.04 Heterosexual (straight)            Rarely
## 2205   65.77 Heterosexual (straight)  Most of the time
## 2206   58.97 Heterosexual (straight)         Sometimes
## 2207      NA Heterosexual (straight)            Rarely
## 2208   65.77 Heterosexual (straight)            Rarely
## 2209   90.72 Heterosexual (straight)         Sometimes
## 2210   58.97          Gay or lesbian         Sometimes
## 2211   83.92                Not sure  Most of the time
## 2212   75.30 Heterosexual (straight)  Most of the time
## 2213   70.31 Heterosexual (straight)         Sometimes
## 2214  142.43          Gay or lesbian  Most of the time
## 2215   67.59 Heterosexual (straight)         Sometimes
## 2216   64.41 Heterosexual (straight)         Sometimes
## 2217   72.58                Bisexual  Most of the time
## 2218   68.04 Heterosexual (straight)              <NA>
## 2219   83.92 Heterosexual (straight)             Never
## 2220   58.97 Heterosexual (straight)  Most of the time
## 2221   79.38 Heterosexual (straight)            Rarely
## 2222   61.24 Heterosexual (straight)            Rarely
## 2223   53.52 Heterosexual (straight)            Rarely
## 2224   57.61 Heterosexual (straight)            Rarely
## 2225   48.54 Heterosexual (straight)         Sometimes
## 2226   58.97 Heterosexual (straight)         Sometimes
## 2227   45.36 Heterosexual (straight)            Rarely
## 2228   56.25 Heterosexual (straight)             Never
## 2229   43.55          Some other way         Sometimes
## 2230   54.43 Heterosexual (straight)            Rarely
## 2231   31.75 Heterosexual (straight)            Rarely
## 2232   65.77 Heterosexual (straight)             Never
## 2233   99.79          Some other way  Most of the time
## 2234   56.70 Heterosexual (straight)  Most of the time
## 2235   72.58 Heterosexual (straight)  Most of the time
## 2236   61.69 Heterosexual (straight)            Rarely
## 2237      NA Heterosexual (straight)  Most of the time
## 2238   57.15 Heterosexual (straight)            Rarely
## 2239   72.58 Heterosexual (straight)         Sometimes
## 2240      NA Heterosexual (straight)             Never
## 2241   54.43          Gay or lesbian            Always
## 2242   43.09 Heterosexual (straight)         Sometimes
## 2243   49.90 Heterosexual (straight)             Never
## 2244   77.11 Heterosexual (straight)  Most of the time
## 2245   61.24 Heterosexual (straight)            Rarely
## 2246   46.27                Bisexual         Sometimes
## 2247   77.57 Heterosexual (straight)  Most of the time
## 2248      NA Heterosexual (straight)         Sometimes
## 2249   52.16 Heterosexual (straight)             Never
## 2250   56.25 Heterosexual (straight)            Rarely
## 2251   54.43 Heterosexual (straight)         Sometimes
## 2252   55.34 Heterosexual (straight)         Sometimes
## 2253      NA Heterosexual (straight)         Sometimes
## 2254   68.04 Heterosexual (straight)            Rarely
## 2255   76.20 Heterosexual (straight)             Never
## 2256   92.99 Heterosexual (straight)            Rarely
## 2257   61.24          Gay or lesbian            Always
## 2258      NA Heterosexual (straight)             Never
## 2259   59.42 Heterosexual (straight)             Never
## 2260   58.97 Heterosexual (straight)             Never
## 2261   70.76                Bisexual            Rarely
## 2262  104.33                Not sure         Sometimes
## 2263  113.40 Heterosexual (straight)            Rarely
## 2264   49.90 Heterosexual (straight)             Never
## 2265   68.04 Heterosexual (straight)            Rarely
## 2266   43.09 Heterosexual (straight)         Sometimes
## 2267  113.40 Heterosexual (straight)            Always
## 2268   74.84 Heterosexual (straight)  Most of the time
## 2269   65.77 Heterosexual (straight)             Never
## 2270   61.24 Heterosexual (straight)             Never
## 2271   55.34                Bisexual  Most of the time
## 2272   58.97 Heterosexual (straight)            Always
## 2273   56.70 Heterosexual (straight)         Sometimes
## 2274   65.77 Heterosexual (straight)  Most of the time
## 2275   72.58                Bisexual         Sometimes
## 2276   56.70 Heterosexual (straight)            Always
## 2277      NA Heterosexual (straight)         Sometimes
## 2278  103.87 Heterosexual (straight)         Sometimes
## 2279   74.84                Bisexual  Most of the time
## 2280   63.50 Heterosexual (straight)  Most of the time
## 2281   58.97 Heterosexual (straight)         Sometimes
## 2282   77.57 Heterosexual (straight)             Never
## 2283   68.04 Heterosexual (straight)         Sometimes
## 2284   44.45                Bisexual  Most of the time
## 2285   62.60                Not sure            Rarely
## 2286   81.65 Heterosexual (straight)         Sometimes
## 2287   97.52 Heterosexual (straight)             Never
## 2288   53.98 Heterosexual (straight)         Sometimes
## 2289   93.90 Heterosexual (straight)         Sometimes
## 2290      NA Heterosexual (straight)  Most of the time
## 2291   63.50 Heterosexual (straight)             Never
## 2292  108.86 Heterosexual (straight)            Rarely
## 2293   51.71 Heterosexual (straight)         Sometimes
## 2294   73.94                Not sure  Most of the time
## 2295   68.95                Not sure            Rarely
## 2296   68.04 Heterosexual (straight)  Most of the time
## 2297   78.93 Heterosexual (straight)            Rarely
## 2298   93.90          Some other way  Most of the time
## 2299   68.95 Heterosexual (straight)            Rarely
## 2300   42.64 Heterosexual (straight)  Most of the time
## 2301      NA Heterosexual (straight)             Never
## 2302   49.90 Heterosexual (straight)  Most of the time
## 2303   54.43 Heterosexual (straight)            Rarely
## 2304   49.90                Not sure  Most of the time
## 2305   74.84 Heterosexual (straight)            Rarely
## 2306   48.99 Heterosexual (straight)         Sometimes
## 2307   64.41 Heterosexual (straight)         Sometimes
## 2308   56.70 Heterosexual (straight)            Rarely
## 2309   70.31          Gay or lesbian            Always
## 2310   58.97 Heterosexual (straight)         Sometimes
## 2311   68.04 Heterosexual (straight)             Never
## 2312   74.84 Heterosexual (straight)            Rarely
## 2313   68.95 Heterosexual (straight)             Never
## 2314   54.43 Heterosexual (straight)         Sometimes
## 2315      NA                Bisexual            Always
## 2316   75.30 Heterosexual (straight)         Sometimes
## 2317   49.90 Heterosexual (straight)            Always
## 2318  140.62 Heterosexual (straight)            Rarely
## 2319   54.43 Heterosexual (straight)         Sometimes
## 2320   72.58 Heterosexual (straight)         Sometimes
## 2321   65.77 Heterosexual (straight)            Rarely
## 2322   86.18 Heterosexual (straight)            Rarely
## 2323   58.97 Heterosexual (straight)         Sometimes
## 2324   72.58 Heterosexual (straight)            Rarely
## 2325   80.74                Bisexual  Most of the time
## 2326   77.11 Heterosexual (straight)         Sometimes
## 2327   83.92 Heterosexual (straight)             Never
## 2328   78.47 Heterosexual (straight)         Sometimes
## 2329   81.65 Heterosexual (straight)            Rarely
## 2330      NA          Some other way  Most of the time
## 2331   81.65 Heterosexual (straight)            Rarely
## 2332   63.50 Heterosexual (straight)            Rarely
## 2333  115.67                Bisexual  Most of the time
## 2334   79.38 Heterosexual (straight)              <NA>
## 2335   72.58                Bisexual             Never
## 2336   65.77 Heterosexual (straight)             Never
## 2337   52.16 Heterosexual (straight)         Sometimes
## 2338   58.97 Heterosexual (straight)         Sometimes
## 2339   48.08 Heterosexual (straight)            Rarely
## 2340   58.97 Heterosexual (straight)             Never
## 2341   74.84 Heterosexual (straight)             Never
## 2342   47.63 Heterosexual (straight)  Most of the time
## 2343      NA                Bisexual  Most of the time
## 2344   65.77 Heterosexual (straight)         Sometimes
## 2345   54.43 Heterosexual (straight)         Sometimes
## 2346   68.49 Heterosexual (straight)         Sometimes
## 2347   85.73 Heterosexual (straight)         Sometimes
## 2348   81.65 Heterosexual (straight)             Never
## 2349   68.04                Bisexual            Always
## 2350      NA Heterosexual (straight)              <NA>
## 2351  104.33                Not sure  Most of the time
## 2352      NA Heterosexual (straight)         Sometimes
## 2353   33.57 Heterosexual (straight)         Sometimes
## 2354   58.06 Heterosexual (straight)         Sometimes
## 2355   63.50 Heterosexual (straight)  Most of the time
## 2356   86.18 Heterosexual (straight)             Never
## 2357      NA Heterosexual (straight)             Never
## 2358   65.77 Heterosexual (straight)            Rarely
## 2359   54.43 Heterosexual (straight)             Never
## 2360   62.14 Heterosexual (straight)         Sometimes
## 2361   81.65 Heterosexual (straight)         Sometimes
## 2362   40.82                Bisexual            Always
## 2363   77.11 Heterosexual (straight)         Sometimes
## 2364   99.79 Heterosexual (straight)             Never
## 2365   86.18 Heterosexual (straight)  Most of the time
## 2366   63.50 Heterosexual (straight)            Rarely
## 2367   95.26 Heterosexual (straight)             Never
## 2368   97.07                Bisexual         Sometimes
## 2369   72.58 Heterosexual (straight)            Rarely
## 2370   58.97 Heterosexual (straight)         Sometimes
## 2371   70.31                Bisexual  Most of the time
## 2372   65.77                Bisexual  Most of the time
## 2373   86.18                Bisexual            Always
## 2374   41.28 Heterosexual (straight)         Sometimes
## 2375   90.72 Heterosexual (straight)         Sometimes
## 2376   83.92 Heterosexual (straight)  Most of the time
## 2377   74.84 Heterosexual (straight)  Most of the time
## 2378      NA                Bisexual            Rarely
## 2379   45.36          Gay or lesbian         Sometimes
## 2380   72.58 Heterosexual (straight)         Sometimes
## 2381   59.88                Bisexual         Sometimes
## 2382   81.65 Heterosexual (straight)         Sometimes
## 2383   60.78 Heterosexual (straight)  Most of the time
## 2384   48.99 Heterosexual (straight)         Sometimes
## 2385   81.65 Heterosexual (straight)             Never
## 2386   88.45 Heterosexual (straight)             Never
## 2387   86.18 Heterosexual (straight)         Sometimes
## 2388  130.18 Heterosexual (straight)         Sometimes
## 2389      NA Heterosexual (straight)             Never
## 2390   53.98 Heterosexual (straight)             Never
## 2391  106.60          Gay or lesbian             Never
## 2392   43.55                Not sure  Most of the time
## 2393   57.15 Heterosexual (straight)         Sometimes
## 2394   70.31 Heterosexual (straight)            Rarely
## 2395      NA                Bisexual  Most of the time
## 2396   79.38 Heterosexual (straight)            Rarely
## 2397  104.33 Heterosexual (straight)         Sometimes
## 2398   84.82 Heterosexual (straight)         Sometimes
## 2399  104.33 Heterosexual (straight)            Rarely
## 2400   51.26 Heterosexual (straight)         Sometimes
## 2401  108.86 Heterosexual (straight)            Rarely
## 2402   68.04 Heterosexual (straight)            Rarely
## 2403   77.57 Heterosexual (straight)             Never
## 2404   65.32 Heterosexual (straight)  Most of the time
## 2405   90.72 Heterosexual (straight)         Sometimes
## 2406   67.13 Heterosexual (straight)            Rarely
## 2407   54.43 Heterosexual (straight)             Never
## 2408   50.35 Heterosexual (straight)  Most of the time
## 2409   68.04 Heterosexual (straight)             Never
## 2410  129.28 Heterosexual (straight)            Always
## 2411   50.80                Bisexual            Always
## 2412   63.50 Heterosexual (straight)            Rarely
## 2413   65.77                Bisexual         Sometimes
## 2414      NA Heterosexual (straight)         Sometimes
## 2415   61.24 Heterosexual (straight)         Sometimes
## 2416   68.04 Heterosexual (straight)         Sometimes
## 2417   52.16 Heterosexual (straight)            Rarely
## 2418   81.65 Heterosexual (straight)             Never
## 2419   57.15          Some other way  Most of the time
## 2420   56.70 Heterosexual (straight)            Rarely
## 2421      NA Heterosexual (straight)         Sometimes
## 2422   83.92 Heterosexual (straight)            Rarely
## 2423   54.43 Heterosexual (straight)             Never
## 2424   73.94 Heterosexual (straight)            Always
## 2425   92.99 Heterosexual (straight)             Never
## 2426   68.04 Heterosexual (straight)  Most of the time
## 2427      NA          Gay or lesbian            Rarely
## 2428   92.99                Bisexual         Sometimes
## 2429   68.04 Heterosexual (straight)  Most of the time
## 2430   45.36                Bisexual         Sometimes
## 2431  150.14 Heterosexual (straight)         Sometimes
## 2432   54.43 Heterosexual (straight)         Sometimes
## 2433   88.91 Heterosexual (straight)            Rarely
## 2434   49.90                Bisexual            Always
## 2435   58.06 Heterosexual (straight)            Rarely
## 2436   45.36 Heterosexual (straight)             Never
## 2437   48.08 Heterosexual (straight)  Most of the time
## 2438   81.19 Heterosexual (straight)  Most of the time
## 2439  120.20                Bisexual         Sometimes
## 2440   68.95 Heterosexual (straight)            Always
## 2441   78.02 Heterosexual (straight)  Most of the time
## 2442  104.33                Bisexual  Most of the time
## 2443   68.04 Heterosexual (straight)         Sometimes
## 2444   58.97                Not sure  Most of the time
## 2445      NA Heterosexual (straight)             Never
## 2446   58.97 Heterosexual (straight)            Rarely
## 2447   73.03 Heterosexual (straight)             Never
## 2448   58.97          Gay or lesbian  Most of the time
## 2449   52.16                Bisexual  Most of the time
## 2450   99.79 Heterosexual (straight)             Never
## 2451   89.36 Heterosexual (straight)            Rarely
## 2452   62.14 Heterosexual (straight)         Sometimes
## 2453      NA Heterosexual (straight)             Never
## 2454   79.38 Heterosexual (straight)             Never
## 2455   47.17                Not sure  Most of the time
## 2456   54.43 Heterosexual (straight)  Most of the time
## 2457   63.50          Some other way  Most of the time
## 2458   53.98 Heterosexual (straight)            Rarely
## 2459      NA                Bisexual  Most of the time
## 2460      NA          Gay or lesbian             Never
## 2461   81.65 Heterosexual (straight)             Never
## 2462   62.14          Gay or lesbian         Sometimes
## 2463   71.67          Gay or lesbian             Never
## 2464   54.43 Heterosexual (straight)             Never
## 2465   56.70 Heterosexual (straight)            Always
## 2466   82.56                Bisexual            Always
## 2467   71.67                Bisexual  Most of the time
## 2468   72.58 Heterosexual (straight)  Most of the time
## 2469   54.43 Heterosexual (straight)             Never
## 2470   63.50 Heterosexual (straight)             Never
## 2471  129.28 Heterosexual (straight)            Always
## 2472   58.97          Gay or lesbian         Sometimes
## 2473   58.06 Heterosexual (straight)            Rarely
## 2474   40.82 Heterosexual (straight)            Rarely
## 2475      NA                Not sure         Sometimes
## 2476   54.43 Heterosexual (straight)            Rarely
## 2477   82.56                Bisexual  Most of the time
## 2478   48.99 Heterosexual (straight)            Rarely
## 2479   49.90                Not sure         Sometimes
## 2480   72.58 Heterosexual (straight)             Never
## 2481   50.80                Bisexual         Sometimes
## 2482  158.76                Bisexual            Always
## 2483   61.69 Heterosexual (straight)            Always
## 2484   61.24 Heterosexual (straight)            Rarely
## 2485   61.24 Heterosexual (straight)         Sometimes
## 2486   63.50          Gay or lesbian         Sometimes
## 2487   72.12                Not sure             Never
## 2488   81.65 Heterosexual (straight)         Sometimes
## 2489   54.43 Heterosexual (straight)            Rarely
## 2490   89.81 Heterosexual (straight)              <NA>
## 2491   83.92 Heterosexual (straight)            Rarely
## 2492   45.36                Not sure            Always
## 2493      NA Heterosexual (straight)            Rarely
## 2494   65.77 Heterosexual (straight)            Rarely
## 2495   58.97 Heterosexual (straight)            Always
## 2496   79.38 Heterosexual (straight)             Never
## 2497   58.97 Heterosexual (straight)            Always
## 2498   68.04 Heterosexual (straight)  Most of the time
## 2499   72.58 Heterosexual (straight)  Most of the time
## 2500  139.71 Heterosexual (straight)             Never
## 2501      NA Heterosexual (straight)  Most of the time
## 2502   86.64 Heterosexual (straight)             Never
## 2503   61.69 Heterosexual (straight)            Rarely
## 2504   52.16 Heterosexual (straight)         Sometimes
## 2505   56.70 Heterosexual (straight)            Rarely
## 2506      NA Heterosexual (straight)              <NA>
## 2507   74.84                Bisexual  Most of the time
## 2508   56.70 Heterosexual (straight)         Sometimes
## 2509   49.90 Heterosexual (straight)         Sometimes
## 2510   52.16 Heterosexual (straight)            Rarely
## 2511   62.60 Heterosexual (straight)             Never
## 2512   83.92 Heterosexual (straight)  Most of the time
## 2513   86.18 Heterosexual (straight)            Rarely
## 2514   90.72 Heterosexual (straight)            Rarely
## 2515   63.96 Heterosexual (straight)         Sometimes
## 2516   99.79 Heterosexual (straight)            Rarely
## 2517   56.70 Heterosexual (straight)            Rarely
## 2518   63.50 Heterosexual (straight)             Never
## 2519   54.43          Gay or lesbian  Most of the time
## 2520      NA Heterosexual (straight)         Sometimes
## 2521  108.86 Heterosexual (straight)            Rarely
## 2522   51.71 Heterosexual (straight)            Rarely
## 2523   68.04 Heterosexual (straight)         Sometimes
## 2524   61.24 Heterosexual (straight)         Sometimes
## 2525   70.76 Heterosexual (straight)            Rarely
## 2526   68.04          Some other way            Always
## 2527   54.43          Gay or lesbian            Always
## 2528   54.89 Heterosexual (straight)  Most of the time
## 2529   84.37                Bisexual         Sometimes
## 2530  143.34                Not sure         Sometimes
## 2531   73.94 Heterosexual (straight)         Sometimes
## 2532  102.06 Heterosexual (straight)         Sometimes
## 2533   68.04 Heterosexual (straight)            Rarely
## 2534   56.70 Heterosexual (straight)         Sometimes
## 2535      NA Heterosexual (straight)         Sometimes
## 2536   68.04 Heterosexual (straight)             Never
## 2537   90.72 Heterosexual (straight)             Never
## 2538   49.90 Heterosexual (straight)         Sometimes
## 2539   77.11 Heterosexual (straight)         Sometimes
## 2540   53.52 Heterosexual (straight)              <NA>
## 2541      NA Heterosexual (straight)  Most of the time
## 2542      NA Heterosexual (straight)         Sometimes
## 2543   65.77                Bisexual         Sometimes
## 2544  104.33 Heterosexual (straight)            Rarely
## 2545   72.58 Heterosexual (straight)         Sometimes
## 2546   71.22 Heterosexual (straight)            Always
## 2547   61.24 Heterosexual (straight)         Sometimes
## 2548   54.43 Heterosexual (straight)             Never
## 2549  101.15                Bisexual         Sometimes
## 2550   54.43 Heterosexual (straight)  Most of the time
## 2551      NA Heterosexual (straight)             Never
## 2552   90.72                Bisexual            Always
## 2553   61.24 Heterosexual (straight)            Always
## 2554   98.43 Heterosexual (straight)             Never
## 2555   65.77 Heterosexual (straight)         Sometimes
## 2556   77.11                Bisexual         Sometimes
## 2557   77.11 Heterosexual (straight)            Always
## 2558  117.94 Heterosexual (straight)         Sometimes
## 2559   90.72 Heterosexual (straight)         Sometimes
## 2560   79.38 Heterosexual (straight)             Never
## 2561   58.97                Bisexual            Always
## 2562   65.77 Heterosexual (straight)            Rarely
## 2563      NA Heterosexual (straight)             Never
## 2564   68.04                Bisexual  Most of the time
## 2565   54.43 Heterosexual (straight)         Sometimes
## 2566   65.77 Heterosexual (straight)         Sometimes
## 2567   62.60                Bisexual            Always
## 2568   53.52 Heterosexual (straight)             Never
## 2569   63.50 Heterosexual (straight)             Never
## 2570   54.43                Bisexual            Always
## 2571   73.48 Heterosexual (straight)         Sometimes
## 2572   99.79                Bisexual         Sometimes
## 2573   65.77                Bisexual         Sometimes
## 2574   90.72          Some other way         Sometimes
## 2575   86.18 Heterosexual (straight)  Most of the time
## 2576   58.97 Heterosexual (straight)            Rarely
## 2577   77.11 Heterosexual (straight)         Sometimes
## 2578  104.33          Some other way         Sometimes
## 2579   65.77          Some other way            Always
## 2580   65.77 Heterosexual (straight)         Sometimes
## 2581   72.58 Heterosexual (straight)  Most of the time
## 2582   59.88 Heterosexual (straight)         Sometimes
## 2583   59.88 Heterosexual (straight)         Sometimes
## 2584   49.90 Heterosexual (straight)            Rarely
## 2585   52.16 Heterosexual (straight)            Rarely
## 2586   61.24                Not sure  Most of the time
## 2587   83.92 Heterosexual (straight)            Always
## 2588   52.16          Some other way            Rarely
## 2589   58.97 Heterosexual (straight)  Most of the time
## 2590   64.41          Some other way         Sometimes
## 2591   51.71 Heterosexual (straight)         Sometimes
## 2592   45.36 Heterosexual (straight)  Most of the time
## 2593   72.58          Some other way              <NA>
## 2594   61.24 Heterosexual (straight)  Most of the time
## 2595   88.45                Not sure            Rarely
## 2596   90.72 Heterosexual (straight)         Sometimes
## 2597   72.58 Heterosexual (straight)             Never
## 2598   58.97 Heterosexual (straight)         Sometimes
## 2599  129.28                Bisexual            Rarely
## 2600   60.78 Heterosexual (straight)            Rarely
## 2601   65.77 Heterosexual (straight)            Rarely
## 2602   37.20 Heterosexual (straight)            Always
## 2603   56.70 Heterosexual (straight)            Rarely
## 2604   59.42                Bisexual            Rarely
## 2605   68.04 Heterosexual (straight)            Always
## 2606   42.18          Gay or lesbian         Sometimes
## 2607   77.11 Heterosexual (straight)         Sometimes
## 2608   72.58 Heterosexual (straight)         Sometimes
## 2609   68.04                Bisexual             Never
## 2610  113.40 Heterosexual (straight)            Always
## 2611      NA Heterosexual (straight)            Rarely
## 2612   77.57          Some other way  Most of the time
## 2613   77.11 Heterosexual (straight)  Most of the time
## 2614   95.26          Gay or lesbian         Sometimes
## 2615   68.04                Not sure  Most of the time
## 2616   63.50 Heterosexual (straight)         Sometimes
## 2617   86.18          Gay or lesbian         Sometimes
## 2618  124.74 Heterosexual (straight)         Sometimes
## 2619   47.63 Heterosexual (straight)            Rarely
## 2620   86.64          Some other way  Most of the time
## 2621   39.92 Heterosexual (straight)         Sometimes
## 2622   47.63 Heterosexual (straight)         Sometimes
## 2623  115.67 Heterosexual (straight)         Sometimes
## 2624   98.43                Bisexual             Never
## 2625   63.50 Heterosexual (straight)         Sometimes
## 2626   51.71                Not sure  Most of the time
## 2627   63.50 Heterosexual (straight)         Sometimes
## 2628   83.01 Heterosexual (straight)            Rarely
## 2629   55.79                Bisexual             Never
## 2630   54.43          Gay or lesbian         Sometimes
## 2631   68.95 Heterosexual (straight)             Never
## 2632   65.32 Heterosexual (straight)             Never
## 2633   59.88 Heterosexual (straight)         Sometimes
## 2634  117.03 Heterosexual (straight)         Sometimes
## 2635   63.50 Heterosexual (straight)            Rarely
## 2636   80.29                Not sure         Sometimes
## 2637   70.76 Heterosexual (straight)         Sometimes
## 2638   98.43                Bisexual  Most of the time
## 2639  104.33                Bisexual         Sometimes
## 2640   52.62 Heterosexual (straight)         Sometimes
## 2641   76.66 Heterosexual (straight)             Never
## 2642   56.70 Heterosexual (straight)         Sometimes
## 2643   63.50 Heterosexual (straight)             Never
## 2644   78.47                Bisexual         Sometimes
## 2645      NA                Bisexual         Sometimes
## 2646   45.36 Heterosexual (straight)            Rarely
## 2647   63.50 Heterosexual (straight)            Rarely
## 2648   54.43 Heterosexual (straight)  Most of the time
## 2649   54.43 Heterosexual (straight)            Rarely
## 2650   53.07 Heterosexual (straight)         Sometimes
## 2651   49.44 Heterosexual (straight)         Sometimes
## 2652      NA Heterosexual (straight)            Always
## 2653   48.54 Heterosexual (straight)             Never
## 2654      NA                Bisexual         Sometimes
## 2655   72.58 Heterosexual (straight)         Sometimes
## 2656   49.90 Heterosexual (straight)         Sometimes
## 2657   90.27                Bisexual         Sometimes
## 2658   56.70          Some other way         Sometimes
## 2659   71.67                Not sure         Sometimes
## 2660      NA Heterosexual (straight)            Rarely
## 2661   79.38 Heterosexual (straight)         Sometimes
## 2662   47.17 Heterosexual (straight)         Sometimes
## 2663   51.71 Heterosexual (straight)            Rarely
## 2664  132.00 Heterosexual (straight)             Never
## 2665   68.04 Heterosexual (straight)         Sometimes
## 2666   54.43                Not sure         Sometimes
## 2667   68.04                Bisexual            Rarely
## 2668   62.60 Heterosexual (straight)         Sometimes
## 2669   77.11 Heterosexual (straight)         Sometimes
## 2670   71.67 Heterosexual (straight)  Most of the time
## 2671   74.84                Not sure  Most of the time
## 2672   68.04 Heterosexual (straight)            Always
## 2673   63.50          Some other way         Sometimes
## 2674  107.05          Gay or lesbian         Sometimes
## 2675   52.16 Heterosexual (straight)         Sometimes
## 2676   48.99          Gay or lesbian  Most of the time
## 2677   56.70          Gay or lesbian            Always
## 2678   43.09 Heterosexual (straight)             Never
## 2679   53.98                Not sure  Most of the time
## 2680   56.70 Heterosexual (straight)            Rarely
## 2681   48.99 Heterosexual (straight)         Sometimes
## 2682   91.17 Heterosexual (straight)             Never
## 2683  106.60 Heterosexual (straight)         Sometimes
## 2684   38.56          Some other way             Never
## 2685   53.07          Gay or lesbian  Most of the time
## 2686   69.85 Heterosexual (straight)  Most of the time
## 2687   54.43 Heterosexual (straight)            Always
## 2688   72.58          Gay or lesbian            Always
## 2689   99.79                Bisexual         Sometimes
## 2690   90.72                Bisexual             Never
## 2691   58.97 Heterosexual (straight)             Never
## 2692   72.58 Heterosexual (straight)              <NA>
## 2693   63.50 Heterosexual (straight)            Rarely
## 2694   99.79 Heterosexual (straight)            Rarely
## 2695   57.61 Heterosexual (straight)         Sometimes
## 2696   76.20 Heterosexual (straight)         Sometimes
## 2697  108.86 Heterosexual (straight)              <NA>
## 2698   53.98 Heterosexual (straight)  Most of the time
## 2699   54.43                Bisexual  Most of the time
## 2700   81.65                Bisexual         Sometimes
## 2701   63.05 Heterosexual (straight)            Always
## 2702   68.04                Bisexual            Rarely
## 2703   44.91                Bisexual  Most of the time
## 2704   49.90                Bisexual         Sometimes
## 2705   59.88                Not sure  Most of the time
## 2706   56.70 Heterosexual (straight)             Never
## 2707   82.56 Heterosexual (straight)         Sometimes
## 2708   92.99 Heterosexual (straight)            Rarely
## 2709  104.33 Heterosexual (straight)            Always
## 2710   63.50          Some other way            Always
## 2711   90.27 Heterosexual (straight)         Sometimes
## 2712   40.82 Heterosexual (straight)            Rarely
## 2713   68.04          Some other way  Most of the time
## 2714   74.84 Heterosexual (straight)             Never
## 2715   40.37                Not sure         Sometimes
## 2716  117.94                Bisexual             Never
## 2717   49.90 Heterosexual (straight)  Most of the time
## 2718   54.43 Heterosexual (straight)             Never
## 2719   68.04                Bisexual  Most of the time
## 2720   90.72          Some other way  Most of the time
## 2721      NA Heterosexual (straight)         Sometimes
## 2722   81.65 Heterosexual (straight)         Sometimes
## 2723   65.77                Bisexual         Sometimes
## 2724  108.86 Heterosexual (straight)            Always
## 2725  104.33 Heterosexual (straight)            Rarely
## 2726  117.94                Bisexual  Most of the time
## 2727   54.43 Heterosexual (straight)             Never
## 2728   68.04                Not sure         Sometimes
## 2729   64.41 Heterosexual (straight)  Most of the time
## 2730   63.50 Heterosexual (straight)            Rarely
## 2731   78.93 Heterosexual (straight)              <NA>
## 2732   78.02                Bisexual         Sometimes
## 2733   70.31 Heterosexual (straight)             Never
## 2734   57.61 Heterosexual (straight)         Sometimes
## 2735   74.84 Heterosexual (straight)         Sometimes
## 2736   48.99                Not sure         Sometimes
## 2737   86.18 Heterosexual (straight)            Always
## 2738   74.39 Heterosexual (straight)  Most of the time
## 2739   66.23                Not sure            Always
## 2740   52.16 Heterosexual (straight)         Sometimes
## 2741   44.45                Bisexual  Most of the time
## 2742   49.90 Heterosexual (straight)         Sometimes
## 2743   79.38 Heterosexual (straight)             Never
## 2744   60.33 Heterosexual (straight)         Sometimes
## 2745   49.90 Heterosexual (straight)             Never
## 2746   95.26 Heterosexual (straight)             Never
## 2747   88.00 Heterosexual (straight)            Always
## 2748   55.34          Gay or lesbian         Sometimes
## 2749   57.15 Heterosexual (straight)              <NA>
## 2750   58.97 Heterosexual (straight)             Never
## 2751   49.90 Heterosexual (straight)             Never
## 2752   76.20 Heterosexual (straight)             Never
## 2753   61.69 Heterosexual (straight)         Sometimes
## 2754   56.25 Heterosexual (straight)  Most of the time
## 2755   34.02 Heterosexual (straight)         Sometimes
## 2756   49.90                Bisexual  Most of the time
## 2757   56.70 Heterosexual (straight)            Rarely
## 2758   40.82 Heterosexual (straight)             Never
## 2759   74.84 Heterosexual (straight)         Sometimes
## 2760   70.76 Heterosexual (straight)            Rarely
## 2761   47.63                Bisexual  Most of the time
## 2762   47.63          Some other way             Never
## 2763   61.24                Bisexual  Most of the time
## 2764   40.82 Heterosexual (straight)            Rarely
## 2765   58.97 Heterosexual (straight)  Most of the time
## 2766   52.16                Not sure         Sometimes
## 2767   71.67                Bisexual         Sometimes
## 2768  116.58 Heterosexual (straight)         Sometimes
## 2769   84.37 Heterosexual (straight)         Sometimes
## 2770   77.11          Gay or lesbian             Never
## 2771   65.77          Some other way  Most of the time
## 2772   56.70 Heterosexual (straight)              <NA>
## 2773      NA          Some other way  Most of the time
## 2774   54.43 Heterosexual (straight)             Never
## 2775   65.77 Heterosexual (straight)            Rarely
## 2776   55.79 Heterosexual (straight)         Sometimes
## 2777   54.43 Heterosexual (straight)  Most of the time
## 2778   68.04          Gay or lesbian            Rarely
## 2779   68.04 Heterosexual (straight)  Most of the time
## 2780   92.08 Heterosexual (straight)         Sometimes
## 2781   54.43                Bisexual         Sometimes
## 2782   65.77 Heterosexual (straight)  Most of the time
## 2783   83.92                Bisexual            Always
## 2784   67.59                Bisexual         Sometimes
## 2785  115.67                Bisexual  Most of the time
## 2786   64.86          Some other way            Always
## 2787   86.18 Heterosexual (straight)             Never
## 2788   72.58 Heterosexual (straight)             Never
## 2789   61.69                Bisexual  Most of the time
## 2790   72.58 Heterosexual (straight)             Never
## 2791   95.26 Heterosexual (straight)             Never
## 2792   43.55          Some other way  Most of the time
## 2793  113.40 Heterosexual (straight)            Rarely
## 2794   90.72          Gay or lesbian         Sometimes
## 2795   67.59          Gay or lesbian            Rarely
## 2796   63.50 Heterosexual (straight)            Rarely
## 2797   55.79 Heterosexual (straight)            Rarely
## 2798   52.16 Heterosexual (straight)  Most of the time
## 2799   63.50 Heterosexual (straight)             Never
## 2800   47.63 Heterosexual (straight)         Sometimes
## 2801   95.26 Heterosexual (straight)            Rarely
## 2802   49.90                Not sure            Rarely
## 2803   48.99 Heterosexual (straight)  Most of the time
## 2804   77.11 Heterosexual (straight)            Rarely
## 2805      NA Heterosexual (straight)  Most of the time
## 2806   58.97 Heterosexual (straight)            Always
## 2807   61.24 Heterosexual (straight)             Never
## 2808   77.11 Heterosexual (straight)         Sometimes
## 2809   54.43 Heterosexual (straight)  Most of the time
## 2810   55.79 Heterosexual (straight)             Never
## 2811   88.45 Heterosexual (straight)            Rarely
## 2812   68.95 Heterosexual (straight)             Never
## 2813   99.79 Heterosexual (straight)            Rarely
## 2814   74.84 Heterosexual (straight)         Sometimes
## 2815  106.60 Heterosexual (straight)            Rarely
## 2816   78.02 Heterosexual (straight)         Sometimes
## 2817   52.16 Heterosexual (straight)            Rarely
## 2818   69.85                Bisexual         Sometimes
## 2819   54.43 Heterosexual (straight)         Sometimes
## 2820  108.86 Heterosexual (straight)         Sometimes
## 2821   49.90 Heterosexual (straight)         Sometimes
## 2822   54.43 Heterosexual (straight)         Sometimes
## 2823      NA Heterosexual (straight)  Most of the time
## 2824   68.04 Heterosexual (straight)            Rarely
## 2825   74.84                Not sure            Rarely
## 2826      NA Heterosexual (straight)         Sometimes
## 2827   81.19 Heterosexual (straight)             Never
## 2828   59.88          Gay or lesbian              <NA>
## 2829   61.24          Gay or lesbian  Most of the time
## 2830   76.20 Heterosexual (straight)            Always
## 2831   58.97 Heterosexual (straight)             Never
## 2832   74.84 Heterosexual (straight)             Never
## 2833   54.43 Heterosexual (straight)             Never
## 2834   78.93                Bisexual         Sometimes
## 2835   48.99 Heterosexual (straight)            Always
## 2836   59.88 Heterosexual (straight)             Never
## 2837   58.51 Heterosexual (straight)         Sometimes
## 2838   92.53 Heterosexual (straight)             Never
## 2839   57.61          Gay or lesbian  Most of the time
## 2840   52.16          Gay or lesbian            Rarely
## 2841   52.16 Heterosexual (straight)            Always
## 2842   68.04 Heterosexual (straight)         Sometimes
## 2843   52.62                Bisexual         Sometimes
## 2844   58.97                Bisexual  Most of the time
## 2845   68.04                Bisexual  Most of the time
## 2846      NA          Some other way            Always
## 2847   47.63 Heterosexual (straight)         Sometimes
## 2848   46.72 Heterosexual (straight)            Always
## 2849   90.72 Heterosexual (straight)             Never
## 2850   49.90 Heterosexual (straight)         Sometimes
## 2851   58.97                Bisexual              <NA>
## 2852      NA                Not sure             Never
## 2853   58.97                Bisexual  Most of the time
## 2854   56.70 Heterosexual (straight)         Sometimes
## 2855      NA Heterosexual (straight)  Most of the time
## 2856   92.99 Heterosexual (straight)             Never
## 2857      NA Heterosexual (straight)         Sometimes
## 2858   90.72 Heterosexual (straight)            Rarely
## 2859   56.70 Heterosexual (straight)         Sometimes
## 2860   54.43 Heterosexual (straight)         Sometimes
## 2861   47.63                Bisexual         Sometimes
## 2862   52.16 Heterosexual (straight)            Rarely
## 2863   83.01 Heterosexual (straight)         Sometimes
## 2864   53.07 Heterosexual (straight)         Sometimes
## 2865   65.77 Heterosexual (straight)             Never
## 2866      NA                Not sure             Never
## 2867   81.65          Some other way            Always
## 2868   68.04                Bisexual  Most of the time
## 2869   44.00                Bisexual            Always
## 2870   58.97 Heterosexual (straight)         Sometimes
## 2871   56.70 Heterosexual (straight)         Sometimes
## 2872   79.83                Bisexual            Always
## 2873   48.08 Heterosexual (straight)         Sometimes
## 2874   88.45 Heterosexual (straight)         Sometimes
## 2875   73.48 Heterosexual (straight)             Never
## 2876   44.00 Heterosexual (straight)         Sometimes
## 2877   79.83 Heterosexual (straight)             Never
## 2878   83.01                Bisexual  Most of the time
## 2879   61.69 Heterosexual (straight)            Always
## 2880   58.97          Some other way         Sometimes
## 2881   52.62 Heterosexual (straight)  Most of the time
## 2882   48.08                Bisexual         Sometimes
## 2883   77.57 Heterosexual (straight)  Most of the time
## 2884   65.32 Heterosexual (straight)            Always
## 2885   80.74 Heterosexual (straight)             Never
## 2886   56.70 Heterosexual (straight)            Rarely
## 2887  100.70 Heterosexual (straight)             Never
## 2888      NA          Gay or lesbian            Always
## 2889   63.50 Heterosexual (straight)         Sometimes
## 2890   68.04 Heterosexual (straight)         Sometimes
## 2891   53.07 Heterosexual (straight)            Always
## 2892      NA          Gay or lesbian            Always
## 2893   47.63 Heterosexual (straight)            Rarely
## 2894  117.94 Heterosexual (straight)  Most of the time
## 2895   70.31 Heterosexual (straight)         Sometimes
## 2896   60.78                Not sure         Sometimes
## 2897   81.65 Heterosexual (straight)  Most of the time
## 2898   56.70 Heterosexual (straight)            Rarely
## 2899   58.06 Heterosexual (straight)  Most of the time
## 2900   56.70          Some other way            Always
## 2901   45.36 Heterosexual (straight)             Never
## 2902   52.16 Heterosexual (straight)         Sometimes
## 2903   58.97 Heterosexual (straight)         Sometimes
## 2904   79.83 Heterosexual (straight)              <NA>
## 2905   53.07          Some other way  Most of the time
## 2906   58.97 Heterosexual (straight)  Most of the time
## 2907   45.36 Heterosexual (straight)            Rarely
## 2908   80.29 Heterosexual (straight)         Sometimes
## 2909   86.18 Heterosexual (straight)             Never
## 2910   56.70 Heterosexual (straight)             Never
## 2911   68.04 Heterosexual (straight)            Rarely
## 2912   74.84 Heterosexual (straight)             Never
## 2913  111.13 Heterosexual (straight)             Never
## 2914   63.50 Heterosexual (straight)            Rarely
## 2915   74.84          Some other way            Always
## 2916   70.31          Some other way  Most of the time
## 2917   45.81 Heterosexual (straight)         Sometimes
## 2918   63.96 Heterosexual (straight)         Sometimes
## 2919   99.79 Heterosexual (straight)         Sometimes
## 2920   68.04 Heterosexual (straight)         Sometimes
## 2921   58.97                Bisexual         Sometimes
## 2922   61.24 Heterosexual (straight)             Never
## 2923   66.23          Some other way  Most of the time
## 2924   54.43 Heterosexual (straight)         Sometimes
## 2925   52.16 Heterosexual (straight)  Most of the time
## 2926   62.14 Heterosexual (straight)         Sometimes
## 2927   70.31 Heterosexual (straight)         Sometimes
## 2928   48.99 Heterosexual (straight)            Always
## 2929   70.31 Heterosexual (straight)             Never
## 2930   71.67 Heterosexual (straight)         Sometimes
## 2931   58.97 Heterosexual (straight)              <NA>
## 2932   74.84 Heterosexual (straight)             Never
## 2933  117.94 Heterosexual (straight)             Never
## 2934   72.58 Heterosexual (straight)            Rarely
## 2935   68.04                Bisexual         Sometimes
## 2936   58.51 Heterosexual (straight)         Sometimes
## 2937   54.43 Heterosexual (straight)            Rarely
## 2938   47.63 Heterosexual (straight)         Sometimes
## 2939   59.88 Heterosexual (straight)             Never
## 2940   61.24          Gay or lesbian            Always
## 2941   73.48 Heterosexual (straight)         Sometimes
## 2942   80.74 Heterosexual (straight)  Most of the time
## 2943   65.77 Heterosexual (straight)         Sometimes
## 2944   56.70 Heterosexual (straight)             Never
## 2945   61.24                Bisexual  Most of the time
## 2946   83.92 Heterosexual (straight)             Never
## 2947   59.88                Not sure  Most of the time
## 2948   54.43 Heterosexual (straight)             Never
## 2949   74.84 Heterosexual (straight)         Sometimes
## 2950   61.24 Heterosexual (straight)         Sometimes
## 2951   58.51 Heterosexual (straight)  Most of the time
## 2952   40.82          Some other way            Always
## 2953   67.59 Heterosexual (straight)         Sometimes
## 2954   49.90          Some other way            Always
## 2955   52.16                Bisexual  Most of the time
## 2956   90.72          Some other way  Most of the time
## 2957   47.63          Gay or lesbian            Rarely
## 2958   40.82 Heterosexual (straight)  Most of the time
## 2959   83.46 Heterosexual (straight)            Rarely
## 2960   74.84 Heterosexual (straight)              <NA>
## 2961   74.84 Heterosexual (straight)             Never
## 2962  140.16                Not sure            Always
## 2963   47.63 Heterosexual (straight)            Always
## 2964   61.24 Heterosexual (straight)             Never
## 2965   74.84 Heterosexual (straight)             Never
## 2966   92.53          Gay or lesbian         Sometimes
## 2967   88.45 Heterosexual (straight)            Rarely
## 2968   68.04 Heterosexual (straight)            Rarely
## 2969   72.58 Heterosexual (straight)            Rarely
## 2970   52.16 Heterosexual (straight)            Rarely
## 2971   46.72                Bisexual            Always
## 2972   61.24          Some other way            Rarely
## 2973   47.17 Heterosexual (straight)         Sometimes
## 2974   60.33 Heterosexual (straight)             Never
## 2975   43.55 Heterosexual (straight)  Most of the time
## 2976   53.52 Heterosexual (straight)            Rarely
## 2977   58.06 Heterosexual (straight)         Sometimes
## 2978   81.65                Not sure            Always
## 2979   76.20 Heterosexual (straight)  Most of the time
## 2980   65.77                Not sure            Always
## 2981      NA                Not sure  Most of the time
## 2982   52.16 Heterosexual (straight)             Never
## 2983   63.50 Heterosexual (straight)             Never
## 2984   63.50 Heterosexual (straight)         Sometimes
## 2985   65.77 Heterosexual (straight)             Never
## 2986   68.95 Heterosexual (straight)         Sometimes
## 2987   61.24 Heterosexual (straight)            Rarely
## 2988   58.97                Bisexual              <NA>
## 2989   48.08 Heterosexual (straight)         Sometimes
## 2990   72.58 Heterosexual (straight)         Sometimes
## 2991   50.80 Heterosexual (straight)            Rarely
## 2992   71.22 Heterosexual (straight)            Rarely
## 2993   43.09 Heterosexual (straight)            Rarely
## 2994      NA          Gay or lesbian            Always
## 2995   43.55                Bisexual            Always
## 2996  106.14 Heterosexual (straight)         Sometimes
## 2997   48.99 Heterosexual (straight)         Sometimes
## 2998   58.97 Heterosexual (straight)             Never
## 2999   88.00          Some other way  Most of the time
## 3000   65.77 Heterosexual (straight)             Never
## 3001   83.92 Heterosexual (straight)            Rarely
## 3002      NA Heterosexual (straight)             Never
## 3003   43.09 Heterosexual (straight)  Most of the time
## 3004   65.77                Bisexual  Most of the time
## 3005      NA Heterosexual (straight)  Most of the time
## 3006   43.55 Heterosexual (straight)            Rarely
## 3007      NA Heterosexual (straight)  Most of the time
## 3008   88.45                Not sure             Never
## 3009   81.65          Gay or lesbian            Rarely
## 3010      NA          Gay or lesbian         Sometimes
## 3011   54.43 Heterosexual (straight)            Always
## 3012   52.16 Heterosexual (straight)         Sometimes
## 3013   56.70 Heterosexual (straight)            Rarely
## 3014   67.13                Bisexual  Most of the time
## 3015   61.24 Heterosexual (straight)            Rarely
## 3016   72.58 Heterosexual (straight)            Rarely
## 3017   52.16 Heterosexual (straight)         Sometimes
## 3018   48.54 Heterosexual (straight)            Always
## 3019      NA Heterosexual (straight)         Sometimes
## 3020   72.58 Heterosexual (straight)             Never
## 3021   77.11 Heterosexual (straight)             Never
## 3022   77.11 Heterosexual (straight)             Never
## 3023   74.39                Bisexual  Most of the time
## 3024   77.11 Heterosexual (straight)  Most of the time
## 3025      NA Heterosexual (straight)            Rarely
## 3026   52.16 Heterosexual (straight)         Sometimes
## 3027   63.50 Heterosexual (straight)            Always
## 3028   95.71                Bisexual  Most of the time
## 3029   58.97 Heterosexual (straight)  Most of the time
## 3030   99.79          Some other way  Most of the time
## 3031   68.95 Heterosexual (straight)            Rarely
## 3032   62.14 Heterosexual (straight)         Sometimes
## 3033   74.84          Gay or lesbian         Sometimes
## 3034      NA Heterosexual (straight)            Rarely
## 3035   43.55                Bisexual         Sometimes
## 3036   56.70 Heterosexual (straight)  Most of the time
## 3037   71.22                Bisexual            Always
## 3038   65.77 Heterosexual (straight)         Sometimes
## 3039  132.45 Heterosexual (straight)         Sometimes
## 3040   37.65 Heterosexual (straight)         Sometimes
## 3041   56.70 Heterosexual (straight)  Most of the time
## 3042   65.77 Heterosexual (straight)             Never
## 3043   60.33 Heterosexual (straight)         Sometimes
## 3044   77.11 Heterosexual (straight)            Rarely
## 3045   66.23 Heterosexual (straight)            Rarely
## 3046   90.72 Heterosexual (straight)             Never
## 3047   58.97          Gay or lesbian         Sometimes
## 3048   68.04 Heterosexual (straight)  Most of the time
## 3049   77.11 Heterosexual (straight)             Never
## 3050   58.97 Heterosexual (straight)  Most of the time
## 3051   79.38 Heterosexual (straight)  Most of the time
## 3052      NA Heterosexual (straight)  Most of the time
## 3053  158.76          Some other way            Always
## 3054  111.13 Heterosexual (straight)             Never
## 3055   77.11 Heterosexual (straight)         Sometimes
## 3056   86.18 Heterosexual (straight)             Never
## 3057   54.89                Bisexual  Most of the time
## 3058   54.43 Heterosexual (straight)             Never
## 3059   56.70 Heterosexual (straight)         Sometimes
## 3060   83.92 Heterosexual (straight)            Rarely
## 3061   64.86                Not sure            Rarely
## 3062  102.06 Heterosexual (straight)  Most of the time
## 3063   58.97 Heterosexual (straight)         Sometimes
## 3064   54.43                Bisexual            Always
## 3065   68.04 Heterosexual (straight)         Sometimes
## 3066   47.63          Some other way            Always
## 3067   54.43 Heterosexual (straight)         Sometimes
## 3068   56.70          Gay or lesbian  Most of the time
## 3069   95.26 Heterosexual (straight)  Most of the time
## 3070   61.24                Bisexual         Sometimes
## 3071  131.54 Heterosexual (straight)            Rarely
## 3072   56.70 Heterosexual (straight)         Sometimes
## 3073   56.70 Heterosexual (straight)            Rarely
## 3074   68.04 Heterosexual (straight)            Always
## 3075   88.91 Heterosexual (straight)             Never
## 3076   65.77 Heterosexual (straight)            Rarely
## 3077   90.72 Heterosexual (straight)         Sometimes
## 3078   65.77                Bisexual  Most of the time
## 3079   64.86 Heterosexual (straight)  Most of the time
## 3080   90.72                Bisexual         Sometimes
## 3081   49.90 Heterosexual (straight)            Rarely
## 3082   47.63 Heterosexual (straight)         Sometimes
## 3083   65.77 Heterosexual (straight)  Most of the time
## 3084   81.65 Heterosexual (straight)            Rarely
## 3085   61.24 Heterosexual (straight)         Sometimes
## 3086  104.33          Gay or lesbian            Always
## 3087   54.89 Heterosexual (straight)            Rarely
## 3088   83.46 Heterosexual (straight)             Never
## 3089   52.62 Heterosexual (straight)            Always
## 3090   99.79 Heterosexual (straight)  Most of the time
## 3091   63.50 Heterosexual (straight)         Sometimes
## 3092   61.24 Heterosexual (straight)  Most of the time
## 3093   56.70                Bisexual            Always
## 3094   65.77 Heterosexual (straight)            Rarely
## 3095      NA Heterosexual (straight)              <NA>
## 3096   53.07 Heterosexual (straight)         Sometimes
## 3097   50.35          Gay or lesbian         Sometimes
## 3098      NA Heterosexual (straight)             Never
## 3099   72.58 Heterosexual (straight)         Sometimes
## 3100   68.04 Heterosexual (straight)             Never
## 3101   56.70 Heterosexual (straight)             Never
## 3102   56.25                Bisexual             Never
## 3103   65.77          Some other way         Sometimes
## 3104   58.97 Heterosexual (straight)         Sometimes
## 3105   48.54 Heterosexual (straight)             Never
## 3106   63.50 Heterosexual (straight)         Sometimes
## 3107   54.43 Heterosexual (straight)            Always
## 3108   78.02 Heterosexual (straight)         Sometimes
## 3109   75.75                Bisexual            Always
## 3110   52.16 Heterosexual (straight)         Sometimes
## 3111   90.72 Heterosexual (straight)            Rarely
## 3112   72.58 Heterosexual (straight)            Rarely
## 3113   72.58 Heterosexual (straight)         Sometimes
## 3114   79.38 Heterosexual (straight)            Rarely
## 3115   56.70 Heterosexual (straight)            Always
## 3116   58.97 Heterosexual (straight)             Never
## 3117   62.14 Heterosexual (straight)            Always
## 3118   65.77                Bisexual            Rarely
## 3119   65.77 Heterosexual (straight)            Rarely
## 3120      NA Heterosexual (straight)             Never
## 3121   93.44 Heterosexual (straight)            Rarely
## 3122   70.31 Heterosexual (straight)             Never
## 3123   69.85 Heterosexual (straight)         Sometimes
## 3124  113.40 Heterosexual (straight)         Sometimes
## 3125   70.31 Heterosexual (straight)            Rarely
## 3126   49.90 Heterosexual (straight)         Sometimes
## 3127      NA Heterosexual (straight)  Most of the time
## 3128   68.04 Heterosexual (straight)  Most of the time
## 3129   50.80 Heterosexual (straight)             Never
## 3130  104.33 Heterosexual (straight)         Sometimes
## 3131   80.74 Heterosexual (straight)             Never
## 3132   62.60 Heterosexual (straight)             Never
## 3133   49.90          Gay or lesbian         Sometimes
## 3134   49.44 Heterosexual (straight)            Rarely
## 3135      NA          Some other way  Most of the time
## 3136   58.97 Heterosexual (straight)         Sometimes
## 3137   68.04 Heterosexual (straight)            Rarely
## 3138   53.52                Not sure  Most of the time
## 3139   81.65 Heterosexual (straight)            Always
## 3140   68.49 Heterosexual (straight)            Rarely
## 3141   64.41 Heterosexual (straight)             Never
## 3142   66.23                Bisexual             Never
## 3143   68.04 Heterosexual (straight)         Sometimes
## 3144   74.84 Heterosexual (straight)             Never
## 3145  102.06 Heterosexual (straight)             Never
## 3146   68.95 Heterosexual (straight)         Sometimes
## 3147   59.88 Heterosexual (straight)         Sometimes
## 3148   68.04 Heterosexual (straight)            Rarely
## 3149   56.70                Bisexual  Most of the time
## 3150   72.58 Heterosexual (straight)             Never
## 3151   49.90 Heterosexual (straight)            Always
## 3152   68.04                Bisexual  Most of the time
## 3153  122.47 Heterosexual (straight)             Never
## 3154   76.20 Heterosexual (straight)             Never
## 3155   71.22 Heterosexual (straight)             Never
## 3156   78.93 Heterosexual (straight)             Never
## 3157   79.38 Heterosexual (straight)         Sometimes
## 3158   49.90                Bisexual  Most of the time
## 3159   54.43 Heterosexual (straight)         Sometimes
## 3160   91.17          Some other way  Most of the time
## 3161   50.80 Heterosexual (straight)         Sometimes
## 3162   70.31          Gay or lesbian  Most of the time
## 3163   56.70 Heterosexual (straight)             Never
## 3164   58.97                Bisexual            Always
## 3165   64.41 Heterosexual (straight)             Never
## 3166   61.24 Heterosexual (straight)            Rarely
## 3167   97.52 Heterosexual (straight)         Sometimes
## 3168   61.24 Heterosexual (straight)            Always
## 3169   67.13 Heterosexual (straight)  Most of the time
## 3170   54.43 Heterosexual (straight)  Most of the time
## 3171   66.23 Heterosexual (straight)         Sometimes
## 3172   61.24 Heterosexual (straight)             Never
## 3173   68.04 Heterosexual (straight)            Always
## 3174   86.18 Heterosexual (straight)  Most of the time
## 3175   97.52 Heterosexual (straight)             Never
## 3176   77.11 Heterosexual (straight)  Most of the time
## 3177   86.18 Heterosexual (straight)             Never
## 3178      NA                Bisexual         Sometimes
## 3179   53.52                Bisexual         Sometimes
## 3180   72.58                Bisexual  Most of the time
## 3181   43.55                Not sure            Rarely
## 3182   49.90 Heterosexual (straight)         Sometimes
## 3183   56.70 Heterosexual (straight)  Most of the time
## 3184   68.95 Heterosexual (straight)             Never
## 3185   80.29                Not sure            Always
## 3186   63.50 Heterosexual (straight)             Never
## 3187   76.66 Heterosexual (straight)            Rarely
## 3188   74.84 Heterosexual (straight)  Most of the time
## 3189   70.31          Some other way            Rarely
## 3190   77.11 Heterosexual (straight)            Rarely
## 3191  102.06 Heterosexual (straight)             Never
## 3192   58.97 Heterosexual (straight)  Most of the time
## 3193   83.01 Heterosexual (straight)  Most of the time
## 3194   69.40 Heterosexual (straight)             Never
## 3195   99.79                Bisexual         Sometimes
## 3196   67.13 Heterosexual (straight)             Never
## 3197   70.31 Heterosexual (straight)            Always
## 3198   63.96 Heterosexual (straight)  Most of the time
## 3199   68.04 Heterosexual (straight)            Rarely
## 3200   52.16                Bisexual            Always
## 3201   56.70 Heterosexual (straight)  Most of the time
## 3202   67.13 Heterosexual (straight)             Never
## 3203   68.04          Some other way            Always
## 3204      NA Heterosexual (straight)            Rarely
## 3205   79.38 Heterosexual (straight)            Rarely
## 3206   58.97 Heterosexual (straight)         Sometimes
## 3207   61.24 Heterosexual (straight)            Rarely
## 3208   67.13 Heterosexual (straight)            Always
## 3209   40.82 Heterosexual (straight)             Never
## 3210  107.96 Heterosexual (straight)             Never
## 3211   63.50 Heterosexual (straight)            Rarely
## 3212   56.70 Heterosexual (straight)         Sometimes
## 3213   68.04 Heterosexual (straight)            Rarely
## 3214   44.45 Heterosexual (straight)            Rarely
## 3215   47.63 Heterosexual (straight)  Most of the time
## 3216  111.13 Heterosexual (straight)            Rarely
## 3217   68.04 Heterosexual (straight)  Most of the time
## 3218   72.58 Heterosexual (straight)             Never
## 3219   61.24 Heterosexual (straight)            Rarely
## 3220   73.48 Heterosexual (straight)         Sometimes
## 3221   61.24 Heterosexual (straight)             Never
## 3222   99.79 Heterosexual (straight)            Rarely
## 3223   63.50 Heterosexual (straight)            Rarely
## 3224   63.50 Heterosexual (straight)         Sometimes
## 3225   97.07                Bisexual            Rarely
## 3226      NA Heterosexual (straight)            Rarely
## 3227   52.16 Heterosexual (straight)            Rarely
## 3228   56.70 Heterosexual (straight)         Sometimes
## 3229   51.26 Heterosexual (straight)         Sometimes
## 3230   45.36 Heterosexual (straight)            Rarely
## 3231      NA Heterosexual (straight)             Never
## 3232   56.70 Heterosexual (straight)  Most of the time
## 3233   72.58 Heterosexual (straight)             Never
## 3234   72.58 Heterosexual (straight)             Never
## 3235   49.90 Heterosexual (straight)         Sometimes
## 3236   58.97 Heterosexual (straight)  Most of the time
## 3237      NA Heterosexual (straight)  Most of the time
## 3238   80.74 Heterosexual (straight)            Rarely
## 3239   63.50 Heterosexual (straight)  Most of the time
## 3240   70.76 Heterosexual (straight)  Most of the time
## 3241   51.71 Heterosexual (straight)  Most of the time
## 3242   48.99 Heterosexual (straight)         Sometimes
## 3243   66.68 Heterosexual (straight)            Rarely
## 3244      NA Heterosexual (straight)         Sometimes
## 3245   63.50 Heterosexual (straight)         Sometimes
## 3246   54.43 Heterosexual (straight)  Most of the time
## 3247   52.62 Heterosexual (straight)            Rarely
## 3248      NA Heterosexual (straight)            Rarely
## 3249   94.35 Heterosexual (straight)            Always
## 3250   49.90 Heterosexual (straight)  Most of the time
## 3251   65.77 Heterosexual (straight)             Never
## 3252   54.43 Heterosexual (straight)  Most of the time
## 3253   99.79 Heterosexual (straight)            Rarely
## 3254   72.58 Heterosexual (straight)             Never
## 3255   99.79 Heterosexual (straight)            Always
## 3256   58.51 Heterosexual (straight)            Rarely
## 3257   97.52 Heterosexual (straight)             Never
## 3258   68.04 Heterosexual (straight)         Sometimes
## 3259   56.70 Heterosexual (straight)  Most of the time
## 3260   55.34                Bisexual  Most of the time
## 3261   63.50 Heterosexual (straight)  Most of the time
## 3262   52.16 Heterosexual (straight)         Sometimes
## 3263   95.26 Heterosexual (straight)             Never
## 3264   58.97 Heterosexual (straight)  Most of the time
## 3265   56.70 Heterosexual (straight)  Most of the time
## 3266   74.84 Heterosexual (straight)         Sometimes
## 3267  101.61 Heterosexual (straight)         Sometimes
## 3268  104.33 Heterosexual (straight)         Sometimes
## 3269   88.45 Heterosexual (straight)            Rarely
## 3270   68.04                Bisexual            Always
## 3271   77.11 Heterosexual (straight)             Never
## 3272   56.70 Heterosexual (straight)  Most of the time
## 3273      NA Heterosexual (straight)             Never
## 3274   60.78 Heterosexual (straight)            Rarely
## 3275   83.92 Heterosexual (straight)            Rarely
## 3276   53.07 Heterosexual (straight)         Sometimes
## 3277   63.50 Heterosexual (straight)  Most of the time
## 3278   63.50 Heterosexual (straight)             Never
## 3279   63.50 Heterosexual (straight)             Never
## 3280   54.43 Heterosexual (straight)            Always
## 3281   47.63                Bisexual         Sometimes
## 3282  122.47 Heterosexual (straight)            Rarely
## 3283   69.85 Heterosexual (straight)            Always
## 3284  104.33 Heterosexual (straight)            Rarely
## 3285   78.47 Heterosexual (straight)            Rarely
## 3286   65.77 Heterosexual (straight)         Sometimes
## 3287   63.50 Heterosexual (straight)  Most of the time
## 3288   74.84 Heterosexual (straight)            Rarely
## 3289   70.31 Heterosexual (straight)         Sometimes
## 3290  113.40 Heterosexual (straight)         Sometimes
## 3291   74.84 Heterosexual (straight)            Rarely
## 3292   72.58 Heterosexual (straight)            Rarely
## 3293   54.43 Heterosexual (straight)            Rarely
## 3294   88.45 Heterosexual (straight)         Sometimes
## 3295   79.38                Bisexual  Most of the time
## 3296   63.50 Heterosexual (straight)         Sometimes
## 3297   68.04 Heterosexual (straight)         Sometimes
## 3298   47.63 Heterosexual (straight)  Most of the time
## 3299   47.63 Heterosexual (straight)         Sometimes
## 3300   52.16 Heterosexual (straight)         Sometimes
## 3301   70.76 Heterosexual (straight)  Most of the time
## 3302   71.22 Heterosexual (straight)            Rarely
## 3303   63.50                Bisexual            Rarely
## 3304      NA Heterosexual (straight)         Sometimes
## 3305   93.44 Heterosexual (straight)         Sometimes
## 3306   58.97                Not sure  Most of the time
## 3307   53.07 Heterosexual (straight)            Rarely
## 3308   49.90 Heterosexual (straight)         Sometimes
## 3309   90.72 Heterosexual (straight)         Sometimes
## 3310   68.04 Heterosexual (straight)            Rarely
## 3311   80.74 Heterosexual (straight)             Never
## 3312   56.70 Heterosexual (straight)         Sometimes
## 3313   52.16 Heterosexual (straight)         Sometimes
## 3314   54.43 Heterosexual (straight)             Never
## 3315   72.58 Heterosexual (straight)         Sometimes
## 3316      NA Heterosexual (straight)            Always
## 3317   68.04 Heterosexual (straight)             Never
## 3318   54.43 Heterosexual (straight)         Sometimes
## 3319   52.16 Heterosexual (straight)         Sometimes
## 3320   74.84 Heterosexual (straight)         Sometimes
## 3321   65.77 Heterosexual (straight)             Never
## 3322   65.77 Heterosexual (straight)            Rarely
## 3323   72.58 Heterosexual (straight)         Sometimes
## 3324   96.62          Gay or lesbian            Always
## 3325   62.60 Heterosexual (straight)            Rarely
## 3326   65.32 Heterosexual (straight)            Rarely
## 3327   77.11 Heterosexual (straight)  Most of the time
## 3328   79.38          Some other way            Always
## 3329   49.90 Heterosexual (straight)             Never
## 3330   49.90 Heterosexual (straight)  Most of the time
## 3331   77.11 Heterosexual (straight)         Sometimes
## 3332   53.07 Heterosexual (straight)         Sometimes
## 3333   61.24 Heterosexual (straight)         Sometimes
## 3334   65.77 Heterosexual (straight)         Sometimes
## 3335   97.52 Heterosexual (straight)            Rarely
## 3336   68.04 Heterosexual (straight)         Sometimes
## 3337   56.70 Heterosexual (straight)            Always
## 3338   58.97 Heterosexual (straight)         Sometimes
## 3339   48.99 Heterosexual (straight)  Most of the time
## 3340   58.97 Heterosexual (straight)             Never
## 3341   68.04 Heterosexual (straight)  Most of the time
## 3342   61.24 Heterosexual (straight)             Never
## 3343   74.84 Heterosexual (straight)         Sometimes
## 3344   54.43 Heterosexual (straight)            Always
## 3345   58.97 Heterosexual (straight)            Rarely
## 3346   65.77 Heterosexual (straight)         Sometimes
## 3347   58.97 Heterosexual (straight)         Sometimes
## 3348   70.31 Heterosexual (straight)         Sometimes
## 3349  117.94 Heterosexual (straight)         Sometimes
## 3350   79.38          Some other way              <NA>
## 3351   68.04 Heterosexual (straight)            Always
## 3352   74.84 Heterosexual (straight)  Most of the time
## 3353   69.85 Heterosexual (straight)            Rarely
## 3354   83.92                Not sure         Sometimes
## 3355      NA Heterosexual (straight)            Rarely
## 3356   54.43 Heterosexual (straight)             Never
## 3357   62.60 Heterosexual (straight)            Rarely
## 3358   62.14 Heterosexual (straight)             Never
## 3359   61.24 Heterosexual (straight)         Sometimes
## 3360   65.77 Heterosexual (straight)            Always
## 3361   58.97 Heterosexual (straight)  Most of the time
## 3362   58.51 Heterosexual (straight)            Rarely
## 3363   54.43 Heterosexual (straight)            Rarely
## 3364   65.77 Heterosexual (straight)             Never
## 3365   57.61 Heterosexual (straight)  Most of the time
## 3366   56.70 Heterosexual (straight)         Sometimes
## 3367   62.14 Heterosexual (straight)             Never
## 3368   63.50 Heterosexual (straight)            Rarely
## 3369   70.31 Heterosexual (straight)         Sometimes
## 3370   73.94 Heterosexual (straight)            Rarely
## 3371  115.67 Heterosexual (straight)             Never
## 3372   81.65 Heterosexual (straight)         Sometimes
## 3373   97.07                Bisexual         Sometimes
## 3374   56.70 Heterosexual (straight)         Sometimes
## 3375   95.26 Heterosexual (straight)  Most of the time
## 3376   72.58 Heterosexual (straight)         Sometimes
## 3377   79.38 Heterosexual (straight)            Rarely
## 3378   72.58 Heterosexual (straight)            Rarely
## 3379   52.16 Heterosexual (straight)              <NA>
## 3380   54.43 Heterosexual (straight)  Most of the time
## 3381   72.58 Heterosexual (straight)         Sometimes
## 3382   58.97 Heterosexual (straight)         Sometimes
## 3383   68.04 Heterosexual (straight)  Most of the time
## 3384   46.72                Bisexual  Most of the time
## 3385   70.31 Heterosexual (straight)            Rarely
## 3386      NA Heterosexual (straight)             Never
## 3387      NA Heterosexual (straight)         Sometimes
## 3388   49.44 Heterosexual (straight)  Most of the time
## 3389   51.71 Heterosexual (straight)         Sometimes
## 3390      NA Heterosexual (straight)         Sometimes
## 3391   49.90 Heterosexual (straight)            Always
## 3392      NA Heterosexual (straight)            Rarely
## 3393      NA Heterosexual (straight)         Sometimes
## 3394      NA Heterosexual (straight)              <NA>
## 3395   61.69 Heterosexual (straight)         Sometimes
## 3396   63.50 Heterosexual (straight)            Rarely
## 3397   77.11 Heterosexual (straight)         Sometimes
## 3398   77.11 Heterosexual (straight)            Rarely
## 3399      NA Heterosexual (straight)            Rarely
## 3400   65.77 Heterosexual (straight)            Always
## 3401   81.65 Heterosexual (straight)             Never
## 3402   72.58 Heterosexual (straight)             Never
## 3403   63.50 Heterosexual (straight)             Never
## 3404   81.65 Heterosexual (straight)            Rarely
## 3405   56.70 Heterosexual (straight)             Never
## 3406   61.24 Heterosexual (straight)         Sometimes
## 3407      NA Heterosexual (straight)  Most of the time
## 3408   58.97          Gay or lesbian            Rarely
## 3409   74.84          Some other way            Always
## 3410   54.43 Heterosexual (straight)              <NA>
## 3411   45.36 Heterosexual (straight)             Never
## 3412   70.31 Heterosexual (straight)         Sometimes
## 3413   71.67 Heterosexual (straight)             Never
## 3414   72.58 Heterosexual (straight)  Most of the time
## 3415   72.58 Heterosexual (straight)            Rarely
## 3416   62.14 Heterosexual (straight)         Sometimes
## 3417   63.96 Heterosexual (straight)            Rarely
## 3418   68.04 Heterosexual (straight)            Rarely
## 3419   52.16 Heterosexual (straight)             Never
## 3420   49.44 Heterosexual (straight)  Most of the time
## 3421   64.41 Heterosexual (straight)             Never
## 3422   83.46 Heterosexual (straight)         Sometimes
## 3423   99.79 Heterosexual (straight)            Rarely
## 3424   86.18 Heterosexual (straight)         Sometimes
## 3425   72.58 Heterosexual (straight)            Rarely
## 3426   77.11 Heterosexual (straight)         Sometimes
## 3427  129.73                Bisexual            Rarely
## 3428   99.79 Heterosexual (straight)            Rarely
## 3429      NA Heterosexual (straight)  Most of the time
## 3430   74.84          Some other way  Most of the time
## 3431   58.97 Heterosexual (straight)         Sometimes
## 3432   86.18 Heterosexual (straight)            Always
## 3433  126.10 Heterosexual (straight)  Most of the time
## 3434   65.77 Heterosexual (straight)         Sometimes
## 3435      NA Heterosexual (straight)  Most of the time
## 3436   68.04 Heterosexual (straight)            Rarely
## 3437  104.33                Bisexual            Always
## 3438   81.65 Heterosexual (straight)            Always
## 3439   90.27 Heterosexual (straight)  Most of the time
## 3440   58.97 Heterosexual (straight)  Most of the time
## 3441   63.50 Heterosexual (straight)  Most of the time
## 3442   58.97 Heterosexual (straight)         Sometimes
## 3443   53.98 Heterosexual (straight)            Rarely
## 3444   56.70          Gay or lesbian            Always
## 3445  120.20 Heterosexual (straight)             Never
## 3446   80.29 Heterosexual (straight)  Most of the time
## 3447   88.00 Heterosexual (straight)  Most of the time
## 3448   61.24 Heterosexual (straight)            Always
## 3449   53.52 Heterosexual (straight)  Most of the time
## 3450   86.18          Some other way            Always
## 3451   72.58 Heterosexual (straight)             Never
## 3452   97.52 Heterosexual (straight)             Never
## 3453   78.93 Heterosexual (straight)            Rarely
## 3454   70.31 Heterosexual (straight)         Sometimes
## 3455   54.43 Heterosexual (straight)         Sometimes
## 3456   52.62                Not sure            Always
## 3457   61.69 Heterosexual (straight)         Sometimes
## 3458   73.03 Heterosexual (straight)             Never
## 3459   81.65 Heterosexual (straight)             Never
## 3460   56.70 Heterosexual (straight)            Rarely
## 3461   54.43 Heterosexual (straight)             Never
## 3462   66.23 Heterosexual (straight)  Most of the time
## 3463   74.84 Heterosexual (straight)             Never
## 3464   97.52 Heterosexual (straight)            Rarely
## 3465   52.16                Bisexual  Most of the time
## 3466   99.79                Bisexual         Sometimes
## 3467   65.77                Bisexual            Rarely
## 3468   90.27 Heterosexual (straight)            Rarely
## 3469   72.58 Heterosexual (straight)         Sometimes
## 3470      NA Heterosexual (straight)  Most of the time
## 3471   95.26 Heterosexual (straight)         Sometimes
## 3472  125.19 Heterosexual (straight)            Always
## 3473   72.58 Heterosexual (straight)         Sometimes
## 3474   54.43          Gay or lesbian  Most of the time
## 3475   74.84 Heterosexual (straight)         Sometimes
## 3476   61.24 Heterosexual (straight)             Never
## 3477   56.25 Heterosexual (straight)  Most of the time
## 3478   61.24 Heterosexual (straight)         Sometimes
## 3479   81.65 Heterosexual (straight)         Sometimes
## 3480   58.97 Heterosexual (straight)            Always
## 3481   52.16 Heterosexual (straight)            Rarely
## 3482   92.99 Heterosexual (straight)  Most of the time
## 3483   54.43 Heterosexual (straight)  Most of the time
## 3484   75.75 Heterosexual (straight)         Sometimes
## 3485      NA                Bisexual  Most of the time
## 3486   90.72 Heterosexual (straight)  Most of the time
## 3487  136.08                Bisexual  Most of the time
## 3488   49.90 Heterosexual (straight)  Most of the time
## 3489   71.67 Heterosexual (straight)         Sometimes
## 3490   72.58          Some other way  Most of the time
## 3491   68.49          Some other way  Most of the time
## 3492   74.84 Heterosexual (straight)            Always
## 3493   63.05 Heterosexual (straight)         Sometimes
## 3494   36.29 Heterosexual (straight)            Rarely
## 3495   70.31 Heterosexual (straight)            Rarely
## 3496   61.24 Heterosexual (straight)         Sometimes
## 3497   68.04                Not sure         Sometimes
## 3498   64.41 Heterosexual (straight)            Always
## 3499   47.63 Heterosexual (straight)  Most of the time
## 3500   56.70                Bisexual  Most of the time
## 3501   67.13 Heterosexual (straight)         Sometimes
## 3502   50.80 Heterosexual (straight)             Never
## 3503   54.43                Bisexual  Most of the time
## 3504   71.22 Heterosexual (straight)              <NA>
## 3505   81.65                Bisexual  Most of the time
## 3506   70.31 Heterosexual (straight)         Sometimes
## 3507   81.65 Heterosexual (straight)  Most of the time
## 3508   90.72 Heterosexual (straight)  Most of the time
## 3509   72.58 Heterosexual (straight)  Most of the time
## 3510   46.72          Gay or lesbian            Rarely
## 3511   58.97 Heterosexual (straight)  Most of the time
## 3512   65.77          Some other way            Always
## 3513   65.77 Heterosexual (straight)         Sometimes
## 3514   52.16          Gay or lesbian  Most of the time
## 3515   59.42 Heterosexual (straight)  Most of the time
## 3516   61.24 Heterosexual (straight)            Rarely
## 3517   47.17 Heterosexual (straight)             Never
## 3518   68.04 Heterosexual (straight)              <NA>
## 3519   58.97                Bisexual            Always
## 3520   92.08 Heterosexual (straight)  Most of the time
## 3521   88.45          Gay or lesbian  Most of the time
## 3522   72.58 Heterosexual (straight)            Rarely
## 3523   90.72 Heterosexual (straight)            Rarely
## 3524   52.16 Heterosexual (straight)            Rarely
## 3525   39.46 Heterosexual (straight)            Always
## 3526      NA Heterosexual (straight)  Most of the time
## 3527   65.77 Heterosexual (straight)         Sometimes
## 3528   69.40 Heterosexual (straight)            Rarely
## 3529   68.04 Heterosexual (straight)             Never
## 3530   61.24 Heterosexual (straight)  Most of the time
## 3531   52.16 Heterosexual (straight)         Sometimes
## 3532      NA Heterosexual (straight)         Sometimes
## 3533      NA Heterosexual (straight)            Always
## 3534   45.81 Heterosexual (straight)         Sometimes
## 3535   72.58 Heterosexual (straight)         Sometimes
## 3536   92.99 Heterosexual (straight)  Most of the time
## 3537   71.67 Heterosexual (straight)             Never
## 3538   56.70 Heterosexual (straight)             Never
## 3539   76.20 Heterosexual (straight)             Never
## 3540   69.85 Heterosexual (straight)            Rarely
## 3541   45.36                Bisexual            Always
## 3542   73.48 Heterosexual (straight)            Rarely
## 3543      NA Heterosexual (straight)  Most of the time
## 3544   54.43 Heterosexual (straight)            Rarely
## 3545   46.27 Heterosexual (straight)  Most of the time
## 3546   81.65 Heterosexual (straight)  Most of the time
## 3547   68.04 Heterosexual (straight)             Never
## 3548   97.52 Heterosexual (straight)            Rarely
## 3549   68.49 Heterosexual (straight)            Rarely
## 3550   77.11 Heterosexual (straight)             Never
## 3551   49.90 Heterosexual (straight)            Rarely
## 3552   58.97 Heterosexual (straight)              <NA>
## 3553   65.77 Heterosexual (straight)  Most of the time
## 3554   49.90 Heterosexual (straight)            Rarely
## 3555   54.43 Heterosexual (straight)  Most of the time
## 3556   86.18 Heterosexual (straight)         Sometimes
## 3557   56.25                Bisexual         Sometimes
## 3558  120.20                Bisexual             Never
## 3559   63.50 Heterosexual (straight)  Most of the time
## 3560   86.18 Heterosexual (straight)         Sometimes
## 3561      NA Heterosexual (straight)         Sometimes
## 3562   49.44 Heterosexual (straight)         Sometimes
## 3563   77.11          Gay or lesbian         Sometimes
## 3564   70.31 Heterosexual (straight)             Never
## 3565   58.97 Heterosexual (straight)             Never
## 3566   49.90 Heterosexual (straight)  Most of the time
## 3567   58.97 Heterosexual (straight)         Sometimes
## 3568   61.24                Bisexual  Most of the time
## 3569      NA Heterosexual (straight)         Sometimes
## 3570   72.58 Heterosexual (straight)             Never
## 3571   86.18 Heterosexual (straight)         Sometimes
## 3572   63.50 Heterosexual (straight)            Always
## 3573   88.45 Heterosexual (straight)             Never
## 3574   63.50 Heterosexual (straight)            Rarely
## 3575   79.38 Heterosexual (straight)            Rarely
## 3576   77.11                Not sure             Never
## 3577   56.70 Heterosexual (straight)  Most of the time
## 3578   49.90                Bisexual  Most of the time
## 3579   77.11 Heterosexual (straight)         Sometimes
## 3580   90.72 Heterosexual (straight)  Most of the time
## 3581   60.33 Heterosexual (straight)         Sometimes
## 3582   58.97 Heterosexual (straight)  Most of the time
## 3583   58.97 Heterosexual (straight)  Most of the time
## 3584      NA Heterosexual (straight)         Sometimes
## 3585   54.43 Heterosexual (straight)            Rarely
## 3586   63.50 Heterosexual (straight)  Most of the time
## 3587   92.99          Some other way            Rarely
## 3588   81.65 Heterosexual (straight)            Rarely
## 3589   61.24 Heterosexual (straight)             Never
## 3590   48.99                Bisexual  Most of the time
## 3591   61.24 Heterosexual (straight)  Most of the time
## 3592   79.38 Heterosexual (straight)         Sometimes
## 3593   49.90 Heterosexual (straight)         Sometimes
## 3594   81.65 Heterosexual (straight)             Never
## 3595   49.44                Bisexual  Most of the time
## 3596   64.41                Bisexual  Most of the time
## 3597   97.52 Heterosexual (straight)         Sometimes
## 3598   70.31                Bisexual  Most of the time
## 3599   63.50 Heterosexual (straight)         Sometimes
## 3600      NA          Some other way            Always
## 3601   44.45 Heterosexual (straight)  Most of the time
## 3602   88.91 Heterosexual (straight)  Most of the time
## 3603  104.33 Heterosexual (straight)            Rarely
## 3604   74.84 Heterosexual (straight)         Sometimes
## 3605   58.06 Heterosexual (straight)            Rarely
## 3606   88.45 Heterosexual (straight)             Never
## 3607   68.04 Heterosexual (straight)  Most of the time
## 3608   83.92 Heterosexual (straight)            Always
## 3609   57.61                Bisexual  Most of the time
## 3610   49.90          Some other way            Rarely
## 3611  120.20 Heterosexual (straight)            Always
## 3612   65.77                Bisexual            Rarely
## 3613   47.17          Some other way            Always
## 3614   51.26                Not sure            Always
## 3615   61.24 Heterosexual (straight)         Sometimes
## 3616   78.02 Heterosexual (straight)            Rarely
## 3617   58.97 Heterosexual (straight)         Sometimes
## 3618   44.45 Heterosexual (straight)            Always
## 3619   58.51 Heterosexual (straight)            Rarely
## 3620   49.44 Heterosexual (straight)            Rarely
## 3621   52.16 Heterosexual (straight)            Always
## 3622   61.69 Heterosexual (straight)            Always
## 3623   61.69 Heterosexual (straight)         Sometimes
## 3624   99.79          Some other way  Most of the time
## 3625   70.31 Heterosexual (straight)            Rarely
## 3626   81.65                Not sure  Most of the time
## 3627   77.11 Heterosexual (straight)         Sometimes
## 3628   79.38 Heterosexual (straight)         Sometimes
## 3629      NA Heterosexual (straight)            Always
## 3630   56.70                Bisexual  Most of the time
## 3631   45.36 Heterosexual (straight)         Sometimes
## 3632   49.90 Heterosexual (straight)            Rarely
## 3633  112.49 Heterosexual (straight)            Rarely
## 3634   76.20                Bisexual            Rarely
## 3635   67.59 Heterosexual (straight)            Rarely
## 3636      NA Heterosexual (straight)             Never
## 3637   74.84 Heterosexual (straight)  Most of the time
## 3638   79.83 Heterosexual (straight)            Rarely
## 3639   62.60 Heterosexual (straight)  Most of the time
## 3640   95.26 Heterosexual (straight)            Rarely
## 3641   69.85 Heterosexual (straight)         Sometimes
## 3642   72.58 Heterosexual (straight)             Never
## 3643   71.22 Heterosexual (straight)            Rarely
## 3644   57.15 Heterosexual (straight)         Sometimes
## 3645   65.77 Heterosexual (straight)         Sometimes
## 3646   56.70 Heterosexual (straight)             Never
## 3647   72.58 Heterosexual (straight)             Never
## 3648   70.31 Heterosexual (straight)            Rarely
## 3649   74.39 Heterosexual (straight)         Sometimes
## 3650   81.65 Heterosexual (straight)            Rarely
## 3651   89.36 Heterosexual (straight)         Sometimes
## 3652   58.97 Heterosexual (straight)         Sometimes
## 3653   58.97 Heterosexual (straight)         Sometimes
## 3654      NA Heterosexual (straight)         Sometimes
## 3655   68.04                Bisexual            Always
## 3656   58.97 Heterosexual (straight)         Sometimes
## 3657   52.16 Heterosexual (straight)            Rarely
## 3658   83.92 Heterosexual (straight)  Most of the time
## 3659   72.58          Some other way         Sometimes
## 3660   74.84 Heterosexual (straight)             Never
## 3661   54.43          Gay or lesbian         Sometimes
## 3662   90.72 Heterosexual (straight)  Most of the time
## 3663   86.18          Some other way  Most of the time
## 3664   55.34 Heterosexual (straight)             Never
## 3665   63.50 Heterosexual (straight)            Rarely
## 3666   64.41 Heterosexual (straight)            Rarely
## 3667   58.97 Heterosexual (straight)             Never
## 3668   55.79 Heterosexual (straight)            Rarely
## 3669   77.11 Heterosexual (straight)            Rarely
## 3670   74.84 Heterosexual (straight)              <NA>
## 3671   92.99 Heterosexual (straight)  Most of the time
## 3672   77.11 Heterosexual (straight)         Sometimes
## 3673  102.06                Not sure            Always
## 3674   86.18 Heterosexual (straight)            Rarely
## 3675   51.26 Heterosexual (straight)         Sometimes
## 3676  106.60 Heterosexual (straight)            Rarely
## 3677   65.77 Heterosexual (straight)             Never
## 3678   77.11 Heterosexual (straight)             Never
## 3679   83.92                Not sure         Sometimes
## 3680   45.36          Some other way         Sometimes
## 3681   92.53 Heterosexual (straight)            Rarely
## 3682      NA Heterosexual (straight)            Rarely
## 3683   43.09          Gay or lesbian         Sometimes
## 3684   59.88                Bisexual         Sometimes
## 3685      NA          Gay or lesbian              <NA>
## 3686      NA Heterosexual (straight)             Never
## 3687      NA Heterosexual (straight)             Never
## 3688   88.45 Heterosexual (straight)            Rarely
## 3689   97.52 Heterosexual (straight)            Rarely
## 3690   86.18 Heterosexual (straight)            Rarely
## 3691   61.24 Heterosexual (straight)         Sometimes
## 3692   67.13 Heterosexual (straight)         Sometimes
## 3693   70.31 Heterosexual (straight)         Sometimes
## 3694   65.77 Heterosexual (straight)         Sometimes
## 3695   56.70 Heterosexual (straight)            Rarely
## 3696   81.65 Heterosexual (straight)  Most of the time
## 3697   61.24          Some other way         Sometimes
## 3698   65.77 Heterosexual (straight)  Most of the time
## 3699   79.38 Heterosexual (straight)         Sometimes
## 3700   97.52 Heterosexual (straight)             Never
## 3701  102.06 Heterosexual (straight)         Sometimes
## 3702   74.39 Heterosexual (straight)         Sometimes
## 3703   84.82 Heterosexual (straight)            Rarely
## 3704   71.67                Not sure            Rarely
## 3705   81.65 Heterosexual (straight)  Most of the time
## 3706   54.43 Heterosexual (straight)             Never
## 3707   77.11 Heterosexual (straight)  Most of the time
## 3708   68.04 Heterosexual (straight)             Never
## 3709      NA                Not sure              <NA>
## 3710   65.77                Bisexual         Sometimes
## 3711   86.18 Heterosexual (straight)             Never
## 3712   68.49 Heterosexual (straight)            Rarely
## 3713   88.45 Heterosexual (straight)  Most of the time
## 3714   63.50 Heterosexual (straight)            Rarely
## 3715   65.77 Heterosexual (straight)            Rarely
## 3716   65.77 Heterosexual (straight)         Sometimes
## 3717   99.79 Heterosexual (straight)            Rarely
## 3718   49.90 Heterosexual (straight)             Never
## 3719   58.97 Heterosexual (straight)            Rarely
## 3720   71.67 Heterosexual (straight)             Never
## 3721   77.11 Heterosexual (straight)            Rarely
## 3722   54.43 Heterosexual (straight)  Most of the time
## 3723   81.65 Heterosexual (straight)            Rarely
## 3724   88.45 Heterosexual (straight)             Never
## 3725   99.79 Heterosexual (straight)            Rarely
## 3726   75.75 Heterosexual (straight)             Never
## 3727   88.45 Heterosexual (straight)            Rarely
## 3728      NA Heterosexual (straight)             Never
## 3729   61.24 Heterosexual (straight)         Sometimes
## 3730      NA                Bisexual              <NA>
## 3731   80.74 Heterosexual (straight)             Never
## 3732  102.06 Heterosexual (straight)            Always
## 3733   68.04 Heterosexual (straight)            Rarely
## 3734   83.01 Heterosexual (straight)         Sometimes
## 3735   84.37 Heterosexual (straight)         Sometimes
## 3736   96.62 Heterosexual (straight)         Sometimes
## 3737   61.24 Heterosexual (straight)             Never
## 3738   65.77 Heterosexual (straight)             Never
## 3739   58.97 Heterosexual (straight)             Never
## 3740   72.58 Heterosexual (straight)            Rarely
## 3741   58.97 Heterosexual (straight)         Sometimes
## 3742   79.38 Heterosexual (straight)             Never
## 3743   65.77 Heterosexual (straight)  Most of the time
## 3744   73.03 Heterosexual (straight)             Never
## 3745   80.29 Heterosexual (straight)            Rarely
## 3746   70.31 Heterosexual (straight)             Never
## 3747   63.50 Heterosexual (straight)             Never
## 3748   75.75 Heterosexual (straight)         Sometimes
## 3749   59.88 Heterosexual (straight)             Never
## 3750   58.97 Heterosexual (straight)             Never
## 3751   61.24 Heterosexual (straight)             Never
## 3752   77.11 Heterosexual (straight)            Rarely
## 3753      NA Heterosexual (straight)             Never
## 3754   56.70 Heterosexual (straight)             Never
## 3755   72.58 Heterosexual (straight)            Rarely
## 3756   73.94                Bisexual  Most of the time
## 3757   60.33                Bisexual         Sometimes
## 3758   78.02 Heterosexual (straight)         Sometimes
## 3759   87.09 Heterosexual (straight)            Rarely
## 3760   63.50 Heterosexual (straight)         Sometimes
## 3761   94.35 Heterosexual (straight)         Sometimes
## 3762  112.49 Heterosexual (straight)         Sometimes
## 3763   54.43 Heterosexual (straight)             Never
## 3764   81.65 Heterosexual (straight)            Rarely
## 3765   65.32 Heterosexual (straight)         Sometimes
## 3766   61.24 Heterosexual (straight)             Never
## 3767   77.11 Heterosexual (straight)         Sometimes
## 3768   88.45 Heterosexual (straight)         Sometimes
## 3769   79.38 Heterosexual (straight)             Never
## 3770   72.58 Heterosexual (straight)  Most of the time
## 3771   81.65 Heterosexual (straight)  Most of the time
## 3772  147.42 Heterosexual (straight)         Sometimes
## 3773   88.45 Heterosexual (straight)  Most of the time
## 3774   65.77 Heterosexual (straight)         Sometimes
## 3775   72.58 Heterosexual (straight)             Never
## 3776   58.97 Heterosexual (straight)            Always
## 3777   87.09 Heterosexual (straight)            Rarely
## 3778   68.04 Heterosexual (straight)            Rarely
## 3779   86.18                Not sure         Sometimes
## 3780  113.40 Heterosexual (straight)            Rarely
## 3781   56.70          Gay or lesbian  Most of the time
## 3782   72.12 Heterosexual (straight)  Most of the time
## 3783   52.16 Heterosexual (straight)            Rarely
## 3784   79.38          Gay or lesbian  Most of the time
## 3785  104.33 Heterosexual (straight)  Most of the time
## 3786   92.99                Bisexual         Sometimes
## 3787   49.44 Heterosexual (straight)  Most of the time
## 3788   61.69 Heterosexual (straight)         Sometimes
## 3789   58.97 Heterosexual (straight)             Never
## 3790   55.34 Heterosexual (straight)  Most of the time
## 3791   47.63 Heterosexual (straight)            Rarely
## 3792   99.79 Heterosexual (straight)         Sometimes
## 3793   58.97 Heterosexual (straight)  Most of the time
## 3794   81.65 Heterosexual (straight)            Rarely
## 3795   71.67                Bisexual         Sometimes
## 3796   54.43 Heterosexual (straight)         Sometimes
## 3797   81.65 Heterosexual (straight)  Most of the time
## 3798   52.16 Heterosexual (straight)         Sometimes
## 3799   56.70 Heterosexual (straight)  Most of the time
## 3800      NA                Not sure             Never
## 3801   86.18 Heterosexual (straight)            Rarely
## 3802   74.84 Heterosexual (straight)             Never
## 3803   58.97 Heterosexual (straight)            Always
## 3804   97.07 Heterosexual (straight)            Rarely
## 3805   53.98 Heterosexual (straight)         Sometimes
## 3806   61.24 Heterosexual (straight)         Sometimes
## 3807   53.98 Heterosexual (straight)         Sometimes
## 3808   74.84                Bisexual  Most of the time
## 3809   63.50 Heterosexual (straight)            Rarely
## 3810   95.26 Heterosexual (straight)         Sometimes
## 3811   58.97 Heterosexual (straight)             Never
## 3812   43.55 Heterosexual (straight)         Sometimes
## 3813   70.31 Heterosexual (straight)            Rarely
## 3814   60.33 Heterosexual (straight)         Sometimes
## 3815   44.00                Bisexual  Most of the time
## 3816   52.16 Heterosexual (straight)  Most of the time
## 3817   68.04 Heterosexual (straight)             Never
## 3818   83.92 Heterosexual (straight)  Most of the time
## 3819   90.72 Heterosexual (straight)             Never
## 3820   68.95                Bisexual            Rarely
## 3821   73.48 Heterosexual (straight)         Sometimes
## 3822   58.06 Heterosexual (straight)             Never
## 3823   95.26 Heterosexual (straight)         Sometimes
## 3824  117.94 Heterosexual (straight)            Rarely
## 3825   69.40 Heterosexual (straight)  Most of the time
## 3826   77.11 Heterosexual (straight)            Rarely
## 3827   71.22 Heterosexual (straight)         Sometimes
## 3828   65.77 Heterosexual (straight)         Sometimes
## 3829   49.90 Heterosexual (straight)            Rarely
## 3830   61.24          Some other way            Rarely
## 3831   43.09          Gay or lesbian  Most of the time
## 3832   63.50 Heterosexual (straight)             Never
## 3833   82.56 Heterosexual (straight)            Rarely
## 3834   86.18 Heterosexual (straight)  Most of the time
## 3835   70.31                Bisexual  Most of the time
## 3836   49.90 Heterosexual (straight)             Never
## 3837   62.60                Bisexual         Sometimes
## 3838   81.65                Bisexual  Most of the time
## 3839   62.14 Heterosexual (straight)             Never
## 3840   48.99          Gay or lesbian             Never
## 3841   57.15 Heterosexual (straight)  Most of the time
## 3842   76.20 Heterosexual (straight)            Rarely
## 3843      NA Heterosexual (straight)             Never
## 3844   63.50 Heterosexual (straight)            Rarely
## 3845   61.24 Heterosexual (straight)            Rarely
## 3846  104.33          Some other way            Rarely
## 3847   47.17          Gay or lesbian            Always
## 3848  147.42 Heterosexual (straight)         Sometimes
## 3849   44.45          Some other way         Sometimes
## 3850   41.73 Heterosexual (straight)            Always
## 3851   63.50 Heterosexual (straight)            Rarely
## 3852      NA Heterosexual (straight)         Sometimes
## 3853   82.56 Heterosexual (straight)  Most of the time
## 3854   44.91 Heterosexual (straight)            Always
## 3855  107.96 Heterosexual (straight)             Never
## 3856  100.25 Heterosexual (straight)            Rarely
## 3857   57.15 Heterosexual (straight)            Rarely
## 3858   63.50 Heterosexual (straight)            Always
## 3859      NA                Bisexual              <NA>
## 3860   54.43          Some other way  Most of the time
## 3861   72.58 Heterosexual (straight)         Sometimes
## 3862      NA Heterosexual (straight)             Never
## 3863   58.97 Heterosexual (straight)         Sometimes
## 3864   64.86 Heterosexual (straight)         Sometimes
## 3865   52.16 Heterosexual (straight)         Sometimes
## 3866   68.04 Heterosexual (straight)             Never
## 3867   52.16 Heterosexual (straight)             Never
## 3868   75.75 Heterosexual (straight)            Rarely
## 3869   54.43 Heterosexual (straight)            Rarely
## 3870   76.20 Heterosexual (straight)            Rarely
## 3871  106.60 Heterosexual (straight)  Most of the time
## 3872  111.13 Heterosexual (straight)            Always
## 3873   79.38 Heterosexual (straight)            Rarely
## 3874   49.90 Heterosexual (straight)         Sometimes
## 3875   68.04 Heterosexual (straight)            Rarely
## 3876   91.17 Heterosexual (straight)            Always
## 3877   83.92 Heterosexual (straight)            Rarely
## 3878   63.50 Heterosexual (straight)         Sometimes
## 3879   81.65 Heterosexual (straight)         Sometimes
## 3880   54.43 Heterosexual (straight)         Sometimes
## 3881   70.31 Heterosexual (straight)         Sometimes
## 3882   77.11                Not sure              <NA>
## 3883   79.38 Heterosexual (straight)            Rarely
## 3884   65.77 Heterosexual (straight)         Sometimes
## 3885   70.31 Heterosexual (straight)             Never
## 3886   61.24 Heterosexual (straight)            Rarely
## 3887   58.97 Heterosexual (straight)         Sometimes
## 3888   49.90 Heterosexual (straight)         Sometimes
## 3889   56.70                Not sure  Most of the time
## 3890   68.04 Heterosexual (straight)            Rarely
## 3891   61.24 Heterosexual (straight)            Always
## 3892   50.80 Heterosexual (straight)            Rarely
## 3893   65.77 Heterosexual (straight)         Sometimes
## 3894   65.77 Heterosexual (straight)             Never
## 3895   72.58 Heterosexual (straight)         Sometimes
## 3896   75.75 Heterosexual (straight)  Most of the time
## 3897  108.86 Heterosexual (straight)  Most of the time
## 3898   77.11 Heterosexual (straight)         Sometimes
## 3899      NA Heterosexual (straight)         Sometimes
## 3900   63.50 Heterosexual (straight)  Most of the time
## 3901   49.44                Bisexual         Sometimes
## 3902   52.16 Heterosexual (straight)         Sometimes
## 3903   51.71                Bisexual  Most of the time
## 3904   68.04 Heterosexual (straight)         Sometimes
## 3905   48.99 Heterosexual (straight)  Most of the time
## 3906   54.89 Heterosexual (straight)         Sometimes
## 3907   92.99 Heterosexual (straight)             Never
## 3908   61.24 Heterosexual (straight)             Never
## 3909   63.05 Heterosexual (straight)  Most of the time
## 3910   75.75 Heterosexual (straight)         Sometimes
## 3911      NA                Bisexual            Always
## 3912   53.98 Heterosexual (straight)         Sometimes
## 3913   58.97 Heterosexual (straight)              <NA>
## 3914   45.81 Heterosexual (straight)         Sometimes
## 3915   70.76 Heterosexual (straight)         Sometimes
## 3916   49.44 Heterosexual (straight)  Most of the time
## 3917   79.38 Heterosexual (straight)             Never
## 3918   54.89 Heterosexual (straight)            Rarely
## 3919   74.84 Heterosexual (straight)             Never
## 3920   65.77 Heterosexual (straight)         Sometimes
## 3921   49.90 Heterosexual (straight)         Sometimes
## 3922   83.92          Some other way  Most of the time
## 3923   58.97 Heterosexual (straight)             Never
## 3924   79.38 Heterosexual (straight)  Most of the time
## 3925   81.65 Heterosexual (straight)         Sometimes
## 3926   58.97 Heterosexual (straight)            Rarely
## 3927   61.24 Heterosexual (straight)            Rarely
## 3928   54.43 Heterosexual (straight)         Sometimes
## 3929  113.40 Heterosexual (straight)             Never
## 3930   49.90 Heterosexual (straight)            Rarely
## 3931   70.31 Heterosexual (straight)  Most of the time
## 3932   83.92 Heterosexual (straight)         Sometimes
## 3933   52.16                Bisexual  Most of the time
## 3934   63.50 Heterosexual (straight)            Rarely
## 3935   58.97 Heterosexual (straight)            Rarely
## 3936   56.70 Heterosexual (straight)            Rarely
## 3937   69.40 Heterosexual (straight)             Never
## 3938   81.65 Heterosexual (straight)  Most of the time
## 3939   83.92 Heterosexual (straight)            Rarely
## 3940   61.24 Heterosexual (straight)             Never
## 3941   61.24 Heterosexual (straight)             Never
## 3942   58.97 Heterosexual (straight)  Most of the time
## 3943      NA Heterosexual (straight)  Most of the time
## 3944   64.86          Gay or lesbian  Most of the time
## 3945   68.04 Heterosexual (straight)            Rarely
## 3946   67.59 Heterosexual (straight)         Sometimes
## 3947   58.06 Heterosexual (straight)            Rarely
## 3948   79.38 Heterosexual (straight)             Never
## 3949   68.04 Heterosexual (straight)            Rarely
## 3950   74.84                Not sure  Most of the time
## 3951   54.43 Heterosexual (straight)         Sometimes
## 3952   62.60 Heterosexual (straight)         Sometimes
## 3953   45.81 Heterosexual (straight)            Rarely
## 3954   55.79 Heterosexual (straight)         Sometimes
## 3955   81.65 Heterosexual (straight)         Sometimes
## 3956   56.70 Heterosexual (straight)         Sometimes
## 3957   54.43 Heterosexual (straight)  Most of the time
## 3958   54.43 Heterosexual (straight)         Sometimes
## 3959   54.43 Heterosexual (straight)            Rarely
## 3960   40.82 Heterosexual (straight)         Sometimes
## 3961   56.25 Heterosexual (straight)  Most of the time
## 3962  108.86 Heterosexual (straight)            Rarely
## 3963   71.22                Bisexual             Never
## 3964  113.40 Heterosexual (straight)  Most of the time
## 3965   58.97 Heterosexual (straight)              <NA>
## 3966   68.04          Some other way            Always
## 3967   57.15 Heterosexual (straight)  Most of the time
## 3968   64.86 Heterosexual (straight)             Never
## 3969      NA Heterosexual (straight)  Most of the time
## 3970   79.38 Heterosexual (straight)             Never
## 3971   68.04 Heterosexual (straight)  Most of the time
## 3972   81.65 Heterosexual (straight)            Always
## 3973      NA Heterosexual (straight)              <NA>
## 3974   83.92                Bisexual  Most of the time
## 3975   92.99 Heterosexual (straight)         Sometimes
## 3976   72.58 Heterosexual (straight)         Sometimes
## 3977   74.84 Heterosexual (straight)            Rarely
## 3978   54.43 Heterosexual (straight)         Sometimes
## 3979   65.77 Heterosexual (straight)  Most of the time
## 3980   83.01          Some other way            Rarely
## 3981   79.38 Heterosexual (straight)             Never
## 3982   95.26 Heterosexual (straight)  Most of the time
## 3983   95.26                Bisexual  Most of the time
## 3984   61.24 Heterosexual (straight)            Always
## 3985   61.24 Heterosexual (straight)         Sometimes
## 3986  131.54 Heterosexual (straight)  Most of the time
## 3987   44.91                Bisexual            Always
## 3988   46.27 Heterosexual (straight)              <NA>
## 3989   52.16 Heterosexual (straight)  Most of the time
## 3990   42.18 Heterosexual (straight)         Sometimes
## 3991   72.58                Bisexual         Sometimes
## 3992   61.24 Heterosexual (straight)  Most of the time
## 3993   49.90                Bisexual            Always
## 3994   56.70 Heterosexual (straight)             Never
## 3995   63.50 Heterosexual (straight)         Sometimes
## 3996   53.52 Heterosexual (straight)              <NA>
## 3997   65.77 Heterosexual (straight)         Sometimes
## 3998   57.61 Heterosexual (straight)             Never
## 3999   70.31 Heterosexual (straight)  Most of the time
## 4000   59.88 Heterosexual (straight)            Rarely
## 4001   61.24 Heterosexual (straight)            Rarely
## 4002   68.04 Heterosexual (straight)              <NA>
## 4003   77.11 Heterosexual (straight)            Rarely
## 4004   70.31 Heterosexual (straight)            Rarely
## 4005      NA                Not sure         Sometimes
## 4006   65.77                Not sure  Most of the time
## 4007   58.06 Heterosexual (straight)              <NA>
## 4008   58.97 Heterosexual (straight)         Sometimes
## 4009   55.34 Heterosexual (straight)         Sometimes
## 4010   56.70 Heterosexual (straight)  Most of the time
## 4011  113.40 Heterosexual (straight)            Rarely
## 4012   77.11 Heterosexual (straight)            Always
## 4013      NA          Gay or lesbian         Sometimes
## 4014   53.98 Heterosexual (straight)         Sometimes
## 4015  108.86                Bisexual         Sometimes
## 4016   49.90                Not sure  Most of the time
## 4017   54.43 Heterosexual (straight)         Sometimes
## 4018   54.89          Gay or lesbian         Sometimes
## 4019   40.82 Heterosexual (straight)            Rarely
## 4020   45.36 Heterosexual (straight)  Most of the time
## 4021   56.70 Heterosexual (straight)            Rarely
## 4022  104.33 Heterosexual (straight)            Rarely
## 4023   51.71 Heterosexual (straight)            Rarely
## 4024   77.57          Some other way              <NA>
## 4025      NA Heterosexual (straight)         Sometimes
## 4026  102.06                Not sure         Sometimes
## 4027   72.58 Heterosexual (straight)         Sometimes
## 4028   48.54 Heterosexual (straight)             Never
## 4029   47.63 Heterosexual (straight)            Rarely
## 4030  102.06                Not sure         Sometimes
## 4031   68.04 Heterosexual (straight)             Never
## 4032   61.69 Heterosexual (straight)              <NA>
## 4033   68.95 Heterosexual (straight)             Never
## 4034   78.47                Bisexual  Most of the time
## 4035   58.97 Heterosexual (straight)  Most of the time
## 4036   56.70 Heterosexual (straight)             Never
## 4037      NA Heterosexual (straight)            Rarely
## 4038      NA Heterosexual (straight)         Sometimes
## 4039   58.97 Heterosexual (straight)            Always
## 4040   83.92 Heterosexual (straight)             Never
## 4041   71.22 Heterosexual (straight)             Never
## 4042   43.09          Some other way              <NA>
## 4043  111.13 Heterosexual (straight)         Sometimes
## 4044   53.52                Bisexual  Most of the time
## 4045      NA          Gay or lesbian              <NA>
## 4046   69.40 Heterosexual (straight)  Most of the time
## 4047   65.77 Heterosexual (straight)         Sometimes
## 4048   49.90 Heterosexual (straight)            Rarely
## 4049   79.38 Heterosexual (straight)  Most of the time
## 4050  108.86 Heterosexual (straight)              <NA>
## 4051   67.13                Not sure  Most of the time
## 4052   71.22 Heterosexual (straight)         Sometimes
## 4053   89.81 Heterosexual (straight)  Most of the time
## 4054   90.72 Heterosexual (straight)         Sometimes
## 4055   54.43                Bisexual            Always
## 4056   70.31 Heterosexual (straight)         Sometimes
## 4057   63.50 Heterosexual (straight)  Most of the time
## 4058   76.66 Heterosexual (straight)              <NA>
## 4059   58.06 Heterosexual (straight)            Rarely
## 4060   95.26                Bisexual  Most of the time
## 4061  127.92 Heterosexual (straight)              <NA>
## 4062   61.24 Heterosexual (straight)             Never
## 4063  124.74 Heterosexual (straight)         Sometimes
## 4064   44.45                Bisexual  Most of the time
## 4065   48.99 Heterosexual (straight)            Rarely
## 4066   63.50 Heterosexual (straight)         Sometimes
## 4067   95.26 Heterosexual (straight)            Rarely
## 4068   63.50 Heterosexual (straight)  Most of the time
## 4069   58.97 Heterosexual (straight)              <NA>
## 4070  104.33 Heterosexual (straight)  Most of the time
## 4071   54.43 Heterosexual (straight)         Sometimes
## 4072   83.92 Heterosexual (straight)             Never
## 4073   86.18 Heterosexual (straight)  Most of the time
## 4074   74.84 Heterosexual (straight)            Always
## 4075  140.62 Heterosexual (straight)         Sometimes
## 4076   71.67 Heterosexual (straight)         Sometimes
## 4077   61.24 Heterosexual (straight)            Rarely
## 4078      NA          Gay or lesbian            Always
## 4079      NA          Gay or lesbian            Rarely
## 4080   86.18 Heterosexual (straight)             Never
## 4081   66.23 Heterosexual (straight)  Most of the time
## 4082   48.99 Heterosexual (straight)         Sometimes
## 4083   68.49 Heterosexual (straight)         Sometimes
## 4084   58.51          Some other way         Sometimes
## 4085   74.84          Some other way            Rarely
## 4086   79.38                Bisexual              <NA>
## 4087   74.84 Heterosexual (straight)            Rarely
## 4088   58.06 Heterosexual (straight)             Never
## 4089      NA Heterosexual (straight)            Rarely
## 4090   45.36 Heterosexual (straight)  Most of the time
## 4091   58.06          Some other way              <NA>
## 4092   71.22 Heterosexual (straight)             Never
## 4093   73.94 Heterosexual (straight)            Rarely
## 4094   46.72 Heterosexual (straight)             Never
## 4095   48.99 Heterosexual (straight)  Most of the time
## 4096   58.97 Heterosexual (straight)         Sometimes
## 4097   41.28 Heterosexual (straight)  Most of the time
## 4098   55.79 Heterosexual (straight)              <NA>
## 4099   66.68 Heterosexual (straight)             Never
## 4100  136.08 Heterosexual (straight)              <NA>
## 4101   61.24 Heterosexual (straight)  Most of the time
## 4102   59.88 Heterosexual (straight)             Never
## 4103   50.80 Heterosexual (straight)  Most of the time
## 4104   94.35 Heterosexual (straight)            Rarely
## 4105   61.24 Heterosexual (straight)              <NA>
## 4106   65.77 Heterosexual (straight)             Never
## 4107   54.89 Heterosexual (straight)  Most of the time
## 4108   56.25 Heterosexual (straight)  Most of the time
## 4109   39.92 Heterosexual (straight)  Most of the time
## 4110   58.97 Heterosexual (straight)         Sometimes
## 4111   65.77 Heterosexual (straight)             Never
## 4112   68.04 Heterosexual (straight)  Most of the time
## 4113   63.05 Heterosexual (straight)         Sometimes
## 4114      NA Heterosexual (straight)              <NA>
## 4115   53.52 Heterosexual (straight)             Never
## 4116   68.04 Heterosexual (straight)  Most of the time
## 4117   55.79 Heterosexual (straight)             Never
## 4118   68.49                Bisexual         Sometimes
## 4119   72.58 Heterosexual (straight)            Rarely
## 4120      NA Heterosexual (straight)             Never
## 4121   58.06 Heterosexual (straight)              <NA>
## 4122   56.70 Heterosexual (straight)  Most of the time
## 4123   86.18 Heterosexual (straight)              <NA>
## 4124   51.26 Heterosexual (straight)  Most of the time
## 4125   58.97          Some other way  Most of the time
## 4126   82.56                Bisexual         Sometimes
## 4127  102.06 Heterosexual (straight)  Most of the time
## 4128   72.58 Heterosexual (straight)              <NA>
## 4129   90.72 Heterosexual (straight)         Sometimes
## 4130   43.09 Heterosexual (straight)         Sometimes
## 4131  106.60 Heterosexual (straight)             Never
## 4132   55.79                Not sure            Always
## 4133   59.88 Heterosexual (straight)         Sometimes
## 4134   54.43 Heterosexual (straight)            Always
## 4135   56.70 Heterosexual (straight)            Rarely
## 4136   72.58 Heterosexual (straight)            Rarely
## 4137   86.18                Bisexual         Sometimes
## 4138   77.11 Heterosexual (straight)            Rarely
## 4139   61.24 Heterosexual (straight)         Sometimes
## 4140   61.69 Heterosexual (straight)             Never
## 4141   67.13 Heterosexual (straight)            Always
## 4142   63.50                Bisexual  Most of the time
## 4143   56.70 Heterosexual (straight)         Sometimes
## 4144   61.24 Heterosexual (straight)         Sometimes
## 4145   89.81                Bisexual  Most of the time
## 4146   72.58 Heterosexual (straight)             Never
## 4147   68.04 Heterosexual (straight)            Always
## 4148   50.80 Heterosexual (straight)            Always
## 4149   71.67 Heterosexual (straight)  Most of the time
## 4150   79.38 Heterosexual (straight)         Sometimes
## 4151   82.56 Heterosexual (straight)         Sometimes
## 4152      NA Heterosexual (straight)              <NA>
## 4153  110.22 Heterosexual (straight)             Never
## 4154   63.50 Heterosexual (straight)            Rarely
## 4155   67.13 Heterosexual (straight)             Never
## 4156   43.09 Heterosexual (straight)  Most of the time
## 4157      NA Heterosexual (straight)  Most of the time
## 4158   79.38 Heterosexual (straight)            Rarely
## 4159   56.70 Heterosexual (straight)             Never
## 4160   45.36 Heterosexual (straight)         Sometimes
## 4161   68.04 Heterosexual (straight)  Most of the time
## 4162   63.50 Heterosexual (straight)         Sometimes
## 4163   54.43                Bisexual         Sometimes
## 4164   61.24 Heterosexual (straight)         Sometimes
## 4165   86.18 Heterosexual (straight)         Sometimes
## 4166   54.43 Heterosexual (straight)  Most of the time
## 4167      NA          Gay or lesbian  Most of the time
## 4168   63.50 Heterosexual (straight)            Rarely
## 4169   54.43 Heterosexual (straight)            Rarely
## 4170      NA Heterosexual (straight)         Sometimes
## 4171   77.11 Heterosexual (straight)            Rarely
## 4172   65.77 Heterosexual (straight)         Sometimes
## 4173   68.04 Heterosexual (straight)             Never
## 4174   63.50 Heterosexual (straight)             Never
## 4175   91.17 Heterosexual (straight)            Rarely
## 4176   65.77 Heterosexual (straight)            Rarely
## 4177   86.18 Heterosexual (straight)         Sometimes
## 4178      NA Heterosexual (straight)            Rarely
## 4179   58.97 Heterosexual (straight)  Most of the time
## 4180   38.56 Heterosexual (straight)            Rarely
## 4181   63.50 Heterosexual (straight)              <NA>
## 4182      NA Heterosexual (straight)  Most of the time
## 4183   77.11 Heterosexual (straight)             Never
## 4184   61.24 Heterosexual (straight)         Sometimes
## 4185   95.26 Heterosexual (straight)         Sometimes
## 4186      NA                Not sure            Always
## 4187   63.50 Heterosexual (straight)            Rarely
## 4188   49.90          Gay or lesbian  Most of the time
## 4189   99.79 Heterosexual (straight)            Rarely
## 4190   56.70 Heterosexual (straight)            Rarely
## 4191   65.77 Heterosexual (straight)            Always
## 4192   95.26 Heterosexual (straight)         Sometimes
## 4193   95.26                Not sure            Always
## 4194      NA Heterosexual (straight)             Never
## 4195   83.92 Heterosexual (straight)            Always
## 4196   45.36 Heterosexual (straight)             Never
## 4197   52.16 Heterosexual (straight)         Sometimes
## 4198   63.50 Heterosexual (straight)         Sometimes
## 4199   48.08 Heterosexual (straight)            Rarely
## 4200   61.24                Bisexual  Most of the time
## 4201   97.52 Heterosexual (straight)  Most of the time
## 4202   57.15 Heterosexual (straight)  Most of the time
## 4203   68.04 Heterosexual (straight)             Never
## 4204      NA                Bisexual  Most of the time
## 4205   49.90 Heterosexual (straight)         Sometimes
## 4206   81.65 Heterosexual (straight)         Sometimes
## 4207   57.15 Heterosexual (straight)            Rarely
## 4208   47.63 Heterosexual (straight)  Most of the time
## 4209   54.43 Heterosexual (straight)  Most of the time
## 4210   68.04 Heterosexual (straight)             Never
## 4211   51.26 Heterosexual (straight)         Sometimes
## 4212   74.84 Heterosexual (straight)             Never
## 4213   49.44 Heterosexual (straight)  Most of the time
## 4214   54.43 Heterosexual (straight)         Sometimes
## 4215   74.39 Heterosexual (straight)         Sometimes
## 4216   58.97 Heterosexual (straight)             Never
## 4217      NA Heterosexual (straight)  Most of the time
## 4218   72.58 Heterosexual (straight)              <NA>
## 4219   90.72                Bisexual            Rarely
## 4220      NA Heterosexual (straight)              <NA>
## 4221      NA Heterosexual (straight)            Rarely
## 4222   58.97 Heterosexual (straight)            Rarely
## 4223   57.61 Heterosexual (straight)  Most of the time
## 4224   81.65 Heterosexual (straight)             Never
## 4225   58.97 Heterosexual (straight)            Rarely
## 4226   72.58                Bisexual  Most of the time
## 4227   79.38 Heterosexual (straight)            Always
## 4228   54.43 Heterosexual (straight)             Never
## 4229   77.11 Heterosexual (straight)              <NA>
## 4230   80.29 Heterosexual (straight)         Sometimes
## 4231   63.50 Heterosexual (straight)              <NA>
## 4232   98.43                Bisexual            Always
## 4233   52.16 Heterosexual (straight)            Rarely
## 4234   54.43 Heterosexual (straight)             Never
## 4235   61.24                Bisexual              <NA>
## 4236   70.31 Heterosexual (straight)             Never
## 4237   72.58 Heterosexual (straight)             Never
## 4238   90.72                Bisexual  Most of the time
## 4239   54.43 Heterosexual (straight)              <NA>
## 4240   58.97                Bisexual              <NA>
## 4241   42.18                Bisexual  Most of the time
## 4242   52.62                Bisexual            Always
## 4243   61.69                Bisexual             Never
## 4244   58.97 Heterosexual (straight)  Most of the time
## 4245   64.86 Heterosexual (straight)             Never
## 4246      NA Heterosexual (straight)             Never
## 4247   58.51 Heterosexual (straight)         Sometimes
## 4248   58.06                Bisexual         Sometimes
## 4249      NA                Not sure         Sometimes
## 4250   72.58 Heterosexual (straight)            Rarely
## 4251   54.43 Heterosexual (straight)         Sometimes
## 4252   63.50 Heterosexual (straight)             Never
## 4253   45.36 Heterosexual (straight)         Sometimes
## 4254   65.77 Heterosexual (straight)         Sometimes
## 4255   46.72                Not sure            Always
## 4256   86.18 Heterosexual (straight)         Sometimes
## 4257   70.31 Heterosexual (straight)         Sometimes
## 4258   70.31 Heterosexual (straight)         Sometimes
## 4259   77.11                Bisexual            Always
## 4260   70.31 Heterosexual (straight)            Rarely
## 4261   44.00 Heterosexual (straight)             Never
## 4262   56.70 Heterosexual (straight)             Never
## 4263   54.43 Heterosexual (straight)         Sometimes
## 4264   65.77 Heterosexual (straight)             Never
## 4265   83.92                Not sure  Most of the time
## 4266   59.88 Heterosexual (straight)         Sometimes
## 4267      NA Heterosexual (straight)         Sometimes
## 4268   47.63 Heterosexual (straight)             Never
## 4269   61.24 Heterosexual (straight)  Most of the time
## 4270   61.24 Heterosexual (straight)  Most of the time
## 4271   77.11 Heterosexual (straight)             Never
## 4272   58.97 Heterosexual (straight)             Never
## 4273   52.16 Heterosexual (straight)            Always
## 4274   63.50 Heterosexual (straight)         Sometimes
## 4275   58.97 Heterosexual (straight)         Sometimes
## 4276   65.77 Heterosexual (straight)  Most of the time
## 4277   56.70 Heterosexual (straight)         Sometimes
## 4278   73.03 Heterosexual (straight)            Rarely
## 4279   50.80 Heterosexual (straight)             Never
## 4280   59.88 Heterosexual (straight)  Most of the time
## 4281   49.90 Heterosexual (straight)         Sometimes
## 4282   80.74 Heterosexual (straight)  Most of the time
## 4283   94.80 Heterosexual (straight)            Rarely
## 4284   70.31 Heterosexual (straight)         Sometimes
## 4285   72.58 Heterosexual (straight)             Never
## 4286   56.70 Heterosexual (straight)         Sometimes
## 4287   60.78 Heterosexual (straight)         Sometimes
## 4288   65.77 Heterosexual (straight)             Never
## 4289   56.70 Heterosexual (straight)             Never
## 4290   61.24 Heterosexual (straight)            Rarely
## 4291   68.04 Heterosexual (straight)            Rarely
## 4292   58.97 Heterosexual (straight)            Rarely
## 4293      NA Heterosexual (straight)             Never
## 4294   57.61                Bisexual  Most of the time
## 4295   68.04 Heterosexual (straight)             Never
## 4296   54.43                Bisexual         Sometimes
## 4297   70.31 Heterosexual (straight)         Sometimes
## 4298   56.70                Not sure  Most of the time
## 4299   48.99          Some other way            Rarely
## 4300   64.41 Heterosexual (straight)             Never
## 4301   71.67 Heterosexual (straight)         Sometimes
## 4302   56.70 Heterosexual (straight)         Sometimes
## 4303   61.24 Heterosexual (straight)  Most of the time
## 4304   62.60 Heterosexual (straight)         Sometimes
## 4305   61.69 Heterosexual (straight)         Sometimes
## 4306   61.24 Heterosexual (straight)  Most of the time
## 4307   47.63 Heterosexual (straight)         Sometimes
## 4308   64.41 Heterosexual (straight)         Sometimes
## 4309   58.06          Some other way         Sometimes
## 4310   56.70 Heterosexual (straight)         Sometimes
## 4311   77.11 Heterosexual (straight)            Rarely
## 4312   49.90 Heterosexual (straight)            Rarely
## 4313   58.97 Heterosexual (straight)             Never
## 4314   57.61 Heterosexual (straight)            Rarely
## 4315   65.77 Heterosexual (straight)  Most of the time
## 4316   54.43 Heterosexual (straight)         Sometimes
## 4317   58.97 Heterosexual (straight)            Rarely
## 4318   58.51 Heterosexual (straight)  Most of the time
## 4319   63.50                Not sure  Most of the time
## 4320   62.60 Heterosexual (straight)         Sometimes
## 4321   56.70 Heterosexual (straight)            Rarely
## 4322   62.60 Heterosexual (straight)            Rarely
## 4323   58.97 Heterosexual (straight)         Sometimes
## 4324   59.42 Heterosexual (straight)         Sometimes
## 4325   86.18 Heterosexual (straight)            Always
## 4326   58.97 Heterosexual (straight)         Sometimes
## 4327   90.72 Heterosexual (straight)         Sometimes
## 4328   47.63 Heterosexual (straight)         Sometimes
## 4329   61.24 Heterosexual (straight)            Always
## 4330   72.58 Heterosexual (straight)         Sometimes
## 4331   71.22 Heterosexual (straight)         Sometimes
## 4332   85.73 Heterosexual (straight)            Always
## 4333   92.99 Heterosexual (straight)             Never
## 4334   81.65 Heterosexual (straight)         Sometimes
## 4335   66.68 Heterosexual (straight)             Never
## 4336   68.04 Heterosexual (straight)  Most of the time
## 4337   48.54 Heterosexual (straight)         Sometimes
## 4338   52.16                Not sure            Always
## 4339  108.86 Heterosexual (straight)         Sometimes
## 4340   77.11 Heterosexual (straight)         Sometimes
## 4341   74.84 Heterosexual (straight)             Never
## 4342   73.94          Some other way            Always
## 4343   54.89 Heterosexual (straight)  Most of the time
## 4344   61.24 Heterosexual (straight)            Rarely
## 4345  122.47 Heterosexual (straight)             Never
## 4346   51.26 Heterosexual (straight)            Rarely
## 4347   86.18 Heterosexual (straight)             Never
## 4348      NA Heterosexual (straight)         Sometimes
## 4349   48.54 Heterosexual (straight)  Most of the time
## 4350  145.15 Heterosexual (straight)  Most of the time
## 4351  110.22 Heterosexual (straight)         Sometimes
## 4352   61.24 Heterosexual (straight)             Never
## 4353   63.50 Heterosexual (straight)  Most of the time
## 4354   90.72 Heterosexual (straight)            Rarely
## 4355  113.40 Heterosexual (straight)         Sometimes
## 4356      NA          Some other way  Most of the time
## 4357      NA Heterosexual (straight)            Always
## 4358  101.61          Some other way         Sometimes
## 4359  138.35 Heterosexual (straight)            Rarely
## 4360   55.79 Heterosexual (straight)             Never
## 4361   52.16 Heterosexual (straight)             Never
## 4362   86.18 Heterosexual (straight)            Rarely
## 4363   48.99 Heterosexual (straight)         Sometimes
## 4364   48.99 Heterosexual (straight)            Rarely
## 4365   65.77          Gay or lesbian             Never
## 4366   61.24 Heterosexual (straight)            Rarely
## 4367   72.58 Heterosexual (straight)             Never
## 4368  104.33 Heterosexual (straight)            Rarely
## 4369   37.65 Heterosexual (straight)             Never
## 4370   56.70 Heterosexual (straight)         Sometimes
## 4371   45.81 Heterosexual (straight)         Sometimes
## 4372   63.50 Heterosexual (straight)            Rarely
## 4373   50.80 Heterosexual (straight)  Most of the time
## 4374  109.77 Heterosexual (straight)            Rarely
## 4375   92.99 Heterosexual (straight)            Rarely
## 4376   77.57                Bisexual  Most of the time
## 4377   77.11 Heterosexual (straight)         Sometimes
## 4378   86.18 Heterosexual (straight)             Never
## 4379   56.70 Heterosexual (straight)         Sometimes
## 4380      NA Heterosexual (straight)         Sometimes
## 4381  113.40 Heterosexual (straight)  Most of the time
## 4382   72.58 Heterosexual (straight)  Most of the time
## 4383  124.74 Heterosexual (straight)         Sometimes
## 4384   47.63          Some other way  Most of the time
## 4385   70.31 Heterosexual (straight)             Never
## 4386      NA Heterosexual (straight)  Most of the time
## 4387   68.04 Heterosexual (straight)  Most of the time
## 4388   79.38 Heterosexual (straight)            Rarely
## 4389   74.84 Heterosexual (straight)         Sometimes
## 4390   72.58 Heterosexual (straight)            Rarely
## 4391      NA          Some other way         Sometimes
## 4392   42.18 Heterosexual (straight)         Sometimes
## 4393   49.90 Heterosexual (straight)         Sometimes
## 4394      NA Heterosexual (straight)             Never
## 4395   81.65 Heterosexual (straight)            Rarely
## 4396   52.62          Gay or lesbian  Most of the time
## 4397   61.24                Bisexual            Always
## 4398   61.24 Heterosexual (straight)  Most of the time
## 4399   64.86 Heterosexual (straight)             Never
## 4400  104.33 Heterosexual (straight)  Most of the time
## 4401   95.26 Heterosexual (straight)  Most of the time
## 4402   86.18 Heterosexual (straight)            Rarely
## 4403   44.00 Heterosexual (straight)  Most of the time
## 4404   54.43                Bisexual            Rarely
## 4405   83.92 Heterosexual (straight)         Sometimes
## 4406   81.65 Heterosexual (straight)             Never
## 4407  113.40 Heterosexual (straight)  Most of the time
## 4408   76.66 Heterosexual (straight)            Always
## 4409   95.26 Heterosexual (straight)         Sometimes
## 4410  121.11                Bisexual  Most of the time
## 4411      NA          Some other way  Most of the time
## 4412   83.92                Bisexual         Sometimes
## 4413   49.90 Heterosexual (straight)         Sometimes
## 4414   54.89 Heterosexual (straight)         Sometimes
## 4415   88.45 Heterosexual (straight)             Never
## 4416   65.77 Heterosexual (straight)             Never
## 4417   59.88 Heterosexual (straight)  Most of the time
## 4418   72.58 Heterosexual (straight)  Most of the time
## 4419   52.16                Bisexual  Most of the time
## 4420   63.96 Heterosexual (straight)            Rarely
## 4421   77.57          Gay or lesbian            Always
## 4422      NA                Bisexual         Sometimes
## 4423   65.77 Heterosexual (straight)            Always
## 4424   79.83 Heterosexual (straight)            Always
## 4425   45.81          Some other way  Most of the time
## 4426   96.62 Heterosexual (straight)         Sometimes
## 4427   65.32          Some other way         Sometimes
## 4428   83.46 Heterosexual (straight)  Most of the time
## 4429   73.94 Heterosexual (straight)  Most of the time
## 4430   58.97 Heterosexual (straight)            Rarely
## 4431   74.84 Heterosexual (straight)            Rarely
## 4432   61.24 Heterosexual (straight)         Sometimes
## 4433   81.65                Bisexual  Most of the time
## 4434   48.08 Heterosexual (straight)  Most of the time
## 4435   58.97 Heterosexual (straight)             Never
## 4436   58.97 Heterosexual (straight)            Rarely
## 4437   90.72          Some other way            Always
## 4438   68.04 Heterosexual (straight)         Sometimes
## 4439   57.61 Heterosexual (straight)            Rarely
## 4440   79.83 Heterosexual (straight)         Sometimes
## 4441   54.43                Bisexual  Most of the time
## 4442  102.06 Heterosexual (straight)            Rarely
## 4443  106.60 Heterosexual (straight)  Most of the time
## 4444   49.44 Heterosexual (straight)  Most of the time
## 4445   68.04 Heterosexual (straight)             Never
## 4446   77.11 Heterosexual (straight)         Sometimes
## 4447   78.47 Heterosexual (straight)         Sometimes
## 4448   73.94 Heterosexual (straight)            Rarely
## 4449      NA          Gay or lesbian            Rarely
## 4450   68.04 Heterosexual (straight)         Sometimes
## 4451   97.98 Heterosexual (straight)            Rarely
## 4452   73.94 Heterosexual (straight)             Never
## 4453   63.50 Heterosexual (straight)         Sometimes
## 4454   81.65 Heterosexual (straight)            Rarely
## 4455   97.52          Some other way  Most of the time
## 4456   79.83 Heterosexual (straight)             Never
## 4457   56.70 Heterosexual (straight)            Rarely
## 4458   61.69 Heterosexual (straight)  Most of the time
## 4459   74.84 Heterosexual (straight)            Rarely
## 4460   53.98 Heterosexual (straight)             Never
## 4461   82.56 Heterosexual (straight)            Rarely
## 4462   70.31 Heterosexual (straight)            Rarely
## 4463      NA Heterosexual (straight)            Always
## 4464   58.06 Heterosexual (straight)             Never
## 4465   76.20 Heterosexual (straight)            Rarely
## 4466   74.84 Heterosexual (straight)             Never
## 4467      NA          Gay or lesbian  Most of the time
## 4468   68.04 Heterosexual (straight)             Never
## 4469   58.97 Heterosexual (straight)         Sometimes
## 4470   53.98 Heterosexual (straight)         Sometimes
## 4471   77.11 Heterosexual (straight)            Rarely
## 4472   56.70                Bisexual              <NA>
## 4473   72.58 Heterosexual (straight)            Rarely
## 4474   63.50 Heterosexual (straight)  Most of the time
## 4475   73.94 Heterosexual (straight)            Rarely
## 4476   45.81 Heterosexual (straight)             Never
## 4477   94.35          Some other way  Most of the time
## 4478      NA Heterosexual (straight)  Most of the time
## 4479   44.00          Gay or lesbian            Always
## 4480   44.91                Bisexual            Rarely
## 4481   61.24 Heterosexual (straight)         Sometimes
## 4482      NA Heterosexual (straight)             Never
## 4483   61.24 Heterosexual (straight)         Sometimes
## 4484   55.79 Heterosexual (straight)  Most of the time
## 4485   72.58 Heterosexual (straight)            Always
## 4486   70.31 Heterosexual (straight)             Never
## 4487   88.00 Heterosexual (straight)              <NA>
## 4488   58.97 Heterosexual (straight)  Most of the time
## 4489   65.77                Bisexual            Rarely
## 4490  124.74 Heterosexual (straight)         Sometimes
## 4491   52.62 Heterosexual (straight)         Sometimes
## 4492   47.63                Not sure            Rarely
## 4493   61.24 Heterosexual (straight)              <NA>
## 4494   68.04 Heterosexual (straight)            Rarely
## 4495   68.04          Some other way  Most of the time
## 4496   93.44 Heterosexual (straight)            Rarely
## 4497   70.31                Not sure  Most of the time
## 4498   64.86 Heterosexual (straight)         Sometimes
## 4499   54.43 Heterosexual (straight)  Most of the time
## 4500   63.50 Heterosexual (straight)            Rarely
## 4501   49.90 Heterosexual (straight)         Sometimes
## 4502   65.77 Heterosexual (straight)         Sometimes
## 4503   79.38 Heterosexual (straight)  Most of the time
## 4504   83.92 Heterosexual (straight)         Sometimes
## 4505   88.45 Heterosexual (straight)            Rarely
## 4506   63.50 Heterosexual (straight)            Rarely
## 4507   55.34 Heterosexual (straight)            Rarely
## 4508   68.95 Heterosexual (straight)            Rarely
## 4509   95.26 Heterosexual (straight)  Most of the time
## 4510   68.04 Heterosexual (straight)            Rarely
## 4511   56.70 Heterosexual (straight)         Sometimes
## 4512   64.41                Bisexual  Most of the time
## 4513   67.59 Heterosexual (straight)             Never
## 4514   58.97 Heterosexual (straight)         Sometimes
## 4515   47.63 Heterosexual (straight)         Sometimes
## 4516   58.97 Heterosexual (straight)         Sometimes
## 4517   49.90 Heterosexual (straight)            Rarely
## 4518   72.58 Heterosexual (straight)         Sometimes
## 4519   46.27 Heterosexual (straight)         Sometimes
## 4520   63.50 Heterosexual (straight)            Rarely
## 4521   55.79 Heterosexual (straight)         Sometimes
## 4522   63.50 Heterosexual (straight)             Never
## 4523   86.18 Heterosexual (straight)            Always
## 4524   56.70 Heterosexual (straight)  Most of the time
## 4525   68.04          Some other way  Most of the time
## 4526   65.77                Bisexual            Always
## 4527   72.58 Heterosexual (straight)            Rarely
## 4528   65.77 Heterosexual (straight)         Sometimes
## 4529   47.63 Heterosexual (straight)         Sometimes
## 4530  106.60 Heterosexual (straight)             Never
## 4531   68.04 Heterosexual (straight)            Always
## 4532   62.14 Heterosexual (straight)            Rarely
## 4533  120.20 Heterosexual (straight)            Rarely
## 4534   58.97 Heterosexual (straight)             Never
## 4535   81.65          Some other way  Most of the time
## 4536   77.11 Heterosexual (straight)             Never
## 4537   62.60          Some other way  Most of the time
## 4538   99.79                Not sure            Rarely
## 4539   63.05          Gay or lesbian             Never
## 4540   56.70 Heterosexual (straight)            Rarely
## 4541   57.61 Heterosexual (straight)  Most of the time
## 4542   49.90 Heterosexual (straight)         Sometimes
## 4543   54.89 Heterosexual (straight)         Sometimes
## 4544   63.50                Bisexual  Most of the time
## 4545   72.58 Heterosexual (straight)             Never
## 4546   79.38          Some other way            Always
## 4547   69.40 Heterosexual (straight)         Sometimes
## 4548   73.03 Heterosexual (straight)         Sometimes
## 4549   69.85 Heterosexual (straight)         Sometimes
## 4550   95.26 Heterosexual (straight)            Rarely
## 4551   45.36                Not sure  Most of the time
## 4552   63.50 Heterosexual (straight)  Most of the time
## 4553   61.24                Bisexual  Most of the time
## 4554   49.90                Bisexual            Always
## 4555   54.43          Gay or lesbian  Most of the time
## 4556   79.38                Not sure  Most of the time
## 4557   51.71                Bisexual         Sometimes
## 4558   68.04          Gay or lesbian  Most of the time
## 4559   82.56 Heterosexual (straight)             Never
## 4560   72.58 Heterosexual (straight)         Sometimes
## 4561   68.04 Heterosexual (straight)            Rarely
## 4562   67.13 Heterosexual (straight)            Rarely
## 4563   58.97 Heterosexual (straight)            Rarely
## 4564   65.77 Heterosexual (straight)  Most of the time
## 4565   59.88 Heterosexual (straight)            Rarely
## 4566   63.50                Not sure  Most of the time
## 4567   63.50 Heterosexual (straight)  Most of the time
## 4568   52.62 Heterosexual (straight)            Always
## 4569   72.58 Heterosexual (straight)         Sometimes
## 4570   54.43                Bisexual  Most of the time
## 4571   54.43                Bisexual         Sometimes
## 4572   72.58          Some other way  Most of the time
## 4573   59.88          Some other way         Sometimes
## 4574   54.43          Gay or lesbian  Most of the time
## 4575   87.54                Not sure  Most of the time
## 4576   63.50                Not sure  Most of the time
## 4577   68.04                Not sure         Sometimes
## 4578   58.97          Gay or lesbian  Most of the time
## 4579  117.94          Gay or lesbian  Most of the time
## 4580   63.50                Bisexual  Most of the time
## 4581   61.24          Gay or lesbian         Sometimes
## 4582   77.11          Some other way         Sometimes
## 4583   74.39          Some other way            Always
## 4584   77.11                Not sure  Most of the time
## 4585   49.90 Heterosexual (straight)  Most of the time
## 4586   61.24          Gay or lesbian  Most of the time
## 4587   56.70                Bisexual  Most of the time
## 4588   63.50 Heterosexual (straight)         Sometimes
## 4589      NA          Some other way         Sometimes
## 4590   88.45 Heterosexual (straight)  Most of the time
## 4591   56.70                Bisexual         Sometimes
## 4592   54.43                Bisexual  Most of the time
## 4593      NA                Bisexual  Most of the time
## 4594   86.18          Some other way         Sometimes
## 4595   52.16          Gay or lesbian         Sometimes
## 4596   70.31                Bisexual         Sometimes
## 4597   65.77 Heterosexual (straight)         Sometimes
## 4598   58.06                Bisexual            Always
## 4599  108.86 Heterosexual (straight)            Rarely
## 4600   83.92 Heterosexual (straight)         Sometimes
## 4601   68.04 Heterosexual (straight)            Rarely
## 4602   81.65                Bisexual             Never
## 4603   68.95 Heterosexual (straight)  Most of the time
## 4604   81.65 Heterosexual (straight)         Sometimes
## 4605   59.42 Heterosexual (straight)             Never
## 4606      NA Heterosexual (straight)             Never
## 4607   74.84                Bisexual         Sometimes
## 4608   78.47 Heterosexual (straight)         Sometimes
## 4609  108.86 Heterosexual (straight)         Sometimes
## 4610   99.79                Bisexual  Most of the time
## 4611   68.04 Heterosexual (straight)            Rarely
## 4612   89.81                Bisexual         Sometimes
## 4613   53.52 Heterosexual (straight)            Rarely
## 4614   52.16 Heterosexual (straight)            Always
## 4615   84.82 Heterosexual (straight)            Rarely
## 4616   69.85 Heterosexual (straight)            Always
## 4617   63.50 Heterosexual (straight)         Sometimes
## 4618  104.33 Heterosexual (straight)         Sometimes
## 4619   49.90 Heterosexual (straight)            Always
## 4620   83.01 Heterosexual (straight)            Rarely
## 4621  143.79 Heterosexual (straight)             Never
## 4622   69.85 Heterosexual (straight)             Never
## 4623   78.47 Heterosexual (straight)         Sometimes
## 4624   56.25 Heterosexual (straight)             Never
## 4625  101.61 Heterosexual (straight)         Sometimes
## 4626   56.70 Heterosexual (straight)            Rarely
## 4627   82.56                Bisexual            Rarely
## 4628      NA Heterosexual (straight)         Sometimes
## 4629   67.13 Heterosexual (straight)         Sometimes
## 4630      NA Heterosexual (straight)         Sometimes
## 4631   68.04 Heterosexual (straight)         Sometimes
## 4632   95.26 Heterosexual (straight)         Sometimes
## 4633   76.20 Heterosexual (straight)  Most of the time
## 4634  101.15 Heterosexual (straight)         Sometimes
## 4635   61.69 Heterosexual (straight)  Most of the time
## 4636   56.70 Heterosexual (straight)            Rarely
## 4637  127.01 Heterosexual (straight)             Never
## 4638   44.45          Gay or lesbian         Sometimes
## 4639  158.76 Heterosexual (straight)            Rarely
## 4640   53.98 Heterosexual (straight)            Rarely
## 4641   49.90 Heterosexual (straight)         Sometimes
## 4642   88.45 Heterosexual (straight)         Sometimes
## 4643   83.92 Heterosexual (straight)             Never
## 4644   68.04 Heterosexual (straight)             Never
## 4645   78.47 Heterosexual (straight)             Never
## 4646   49.90 Heterosexual (straight)  Most of the time
## 4647   95.26 Heterosexual (straight)         Sometimes
## 4648   83.92 Heterosexual (straight)             Never
## 4649      NA Heterosexual (straight)            Always
## 4650   72.58 Heterosexual (straight)         Sometimes
## 4651   46.27                Bisexual              <NA>
## 4652   63.50          Some other way  Most of the time
## 4653   71.22 Heterosexual (straight)             Never
## 4654  130.18                Bisexual  Most of the time
## 4655   65.32 Heterosexual (straight)            Rarely
## 4656   83.92 Heterosexual (straight)             Never
## 4657  104.33 Heterosexual (straight)            Rarely
## 4658   73.03 Heterosexual (straight)            Always
## 4659   53.98                Bisexual            Always
## 4660   79.38 Heterosexual (straight)             Never
## 4661   56.70 Heterosexual (straight)             Never
## 4662   55.34 Heterosexual (straight)            Rarely
## 4663   68.04 Heterosexual (straight)  Most of the time
## 4664   84.37 Heterosexual (straight)             Never
## 4665   80.74          Some other way         Sometimes
## 4666      NA Heterosexual (straight)         Sometimes
## 4667   52.16                Not sure         Sometimes
## 4668   74.39 Heterosexual (straight)            Rarely
## 4669   81.65 Heterosexual (straight)             Never
## 4670  115.67                Bisexual            Rarely
## 4671  103.42 Heterosexual (straight)             Never
## 4672   81.65          Gay or lesbian  Most of the time
## 4673   47.63 Heterosexual (straight)  Most of the time
## 4674   76.20 Heterosexual (straight)            Always
## 4675   58.97 Heterosexual (straight)  Most of the time
## 4676   72.58 Heterosexual (straight)         Sometimes
## 4677      NA          Some other way  Most of the time
## 4678   98.43 Heterosexual (straight)         Sometimes
## 4679   92.99                Bisexual  Most of the time
## 4680   88.45 Heterosexual (straight)             Never
## 4681   90.72 Heterosexual (straight)             Never
## 4682   98.88          Some other way         Sometimes
## 4683   99.79                Bisexual  Most of the time
## 4684   68.04          Some other way            Always
## 4685   78.93 Heterosexual (straight)             Never
## 4686   74.84 Heterosexual (straight)         Sometimes
## 4687   43.09 Heterosexual (straight)         Sometimes
## 4688   64.41 Heterosexual (straight)            Always
## 4689  102.06 Heterosexual (straight)         Sometimes
## 4690   68.04                Not sure  Most of the time
## 4691   63.50 Heterosexual (straight)             Never
## 4692   63.96 Heterosexual (straight)            Rarely
## 4693   64.41 Heterosexual (straight)            Rarely
## 4694   90.72 Heterosexual (straight)             Never
## 4695   72.58 Heterosexual (straight)            Rarely
## 4696   55.79          Gay or lesbian         Sometimes
## 4697   70.31 Heterosexual (straight)            Rarely
## 4698   63.50 Heterosexual (straight)  Most of the time
## 4699   70.31 Heterosexual (straight)            Rarely
## 4700   82.56 Heterosexual (straight)         Sometimes
## 4701  121.11 Heterosexual (straight)            Rarely
## 4702   54.43 Heterosexual (straight)             Never
## 4703   74.84 Heterosexual (straight)            Rarely
## 4704   74.84 Heterosexual (straight)            Rarely
## 4705   72.58 Heterosexual (straight)         Sometimes
## 4706   61.24 Heterosexual (straight)             Never
## 4707   71.67 Heterosexual (straight)            Rarely
## 4708   69.40 Heterosexual (straight)            Rarely
## 4709   68.04 Heterosexual (straight)         Sometimes
## 4710   66.68 Heterosexual (straight)         Sometimes
## 4711   65.77 Heterosexual (straight)             Never
## 4712   99.79 Heterosexual (straight)         Sometimes
## 4713   99.79 Heterosexual (straight)            Rarely
## 4714  102.06                Not sure         Sometimes
## 4715   50.80 Heterosexual (straight)  Most of the time
## 4716  104.33          Gay or lesbian         Sometimes
## 4717   73.48                Bisexual              <NA>
## 4718   63.50 Heterosexual (straight)  Most of the time
## 4719   49.90 Heterosexual (straight)         Sometimes
## 4720   90.72                Bisexual  Most of the time
## 4721   71.67 Heterosexual (straight)            Rarely
## 4722      NA Heterosexual (straight)             Never
## 4723   61.24 Heterosexual (straight)         Sometimes
## 4724   63.50 Heterosexual (straight)            Rarely
## 4725   70.31 Heterosexual (straight)         Sometimes
## 4726   54.43 Heterosexual (straight)         Sometimes
## 4727   58.97 Heterosexual (straight)         Sometimes
## 4728      NA          Gay or lesbian            Always
## 4729      NA Heterosexual (straight)         Sometimes
## 4730   49.90 Heterosexual (straight)         Sometimes
## 4731   89.81 Heterosexual (straight)            Always
## 4732   49.90 Heterosexual (straight)  Most of the time
## 4733   45.36          Some other way  Most of the time
## 4734   65.32 Heterosexual (straight)         Sometimes
## 4735   76.66 Heterosexual (straight)             Never
## 4736   51.26 Heterosexual (straight)  Most of the time
## 4737   64.41 Heterosexual (straight)         Sometimes
## 4738   80.74                Bisexual  Most of the time
## 4739   72.58 Heterosexual (straight)            Rarely
## 4740   72.58 Heterosexual (straight)         Sometimes
## 4741   65.77 Heterosexual (straight)         Sometimes
## 4742   81.65                Not sure  Most of the time
## 4743   43.09                Bisexual             Never
## 4744   61.24 Heterosexual (straight)  Most of the time
## 4745   79.38 Heterosexual (straight)             Never
## 4746   66.23 Heterosexual (straight)  Most of the time
## 4747   78.93 Heterosexual (straight)            Rarely
## 4748   59.88 Heterosexual (straight)  Most of the time
## 4749   72.58 Heterosexual (straight)             Never
## 4750   77.11 Heterosexual (straight)         Sometimes
## 4751   58.97 Heterosexual (straight)            Rarely
## 4752      NA                Not sure         Sometimes
## 4753   55.34                Bisexual            Always
## 4754   50.35          Gay or lesbian            Always
## 4755   54.43 Heterosexual (straight)  Most of the time
## 4756   58.97                Bisexual  Most of the time
## 4757   77.11 Heterosexual (straight)            Rarely
## 4758   72.58 Heterosexual (straight)         Sometimes
## 4759      NA Heterosexual (straight)         Sometimes
## 4760   90.72 Heterosexual (straight)            Rarely
## 4761   65.77 Heterosexual (straight)         Sometimes
## 4762   51.71 Heterosexual (straight)         Sometimes
## 4763   58.97                Not sure  Most of the time
## 4764   58.97 Heterosexual (straight)             Never
## 4765   63.50 Heterosexual (straight)            Rarely
## 4766   61.24 Heterosexual (straight)  Most of the time
## 4767      NA Heterosexual (straight)  Most of the time
## 4768   72.58          Gay or lesbian         Sometimes
## 4769   61.24 Heterosexual (straight)            Rarely
## 4770   87.09 Heterosexual (straight)             Never
## 4771   45.36 Heterosexual (straight)         Sometimes
## 4772   90.72 Heterosexual (straight)         Sometimes
## 4773      NA Heterosexual (straight)            Rarely
## 4774   96.16 Heterosexual (straight)  Most of the time
## 4775  108.86          Gay or lesbian  Most of the time
## 4776   53.07 Heterosexual (straight)  Most of the time
## 4777   59.88 Heterosexual (straight)  Most of the time
## 4778   52.16 Heterosexual (straight)            Rarely
## 4779   79.38 Heterosexual (straight)             Never
## 4780   54.43 Heterosexual (straight)         Sometimes
## 4781   73.48 Heterosexual (straight)             Never
## 4782   49.90 Heterosexual (straight)  Most of the time
## 4783   63.50 Heterosexual (straight)             Never
## 4784   61.24 Heterosexual (straight)            Rarely
## 4785   54.43 Heterosexual (straight)  Most of the time
## 4786   54.43                Bisexual         Sometimes
## 4787   58.06 Heterosexual (straight)            Rarely
## 4788   48.99 Heterosexual (straight)  Most of the time
## 4789   68.04 Heterosexual (straight)         Sometimes
## 4790   52.16                Bisexual         Sometimes
## 4791   78.02 Heterosexual (straight)            Rarely
## 4792   58.97 Heterosexual (straight)  Most of the time
## 4793   74.84 Heterosexual (straight)            Rarely
## 4794   61.24 Heterosexual (straight)         Sometimes
## 4795   58.06 Heterosexual (straight)             Never
## 4796      NA          Gay or lesbian  Most of the time
## 4797   81.65                Bisexual         Sometimes
## 4798   58.97 Heterosexual (straight)         Sometimes
## 4799   58.97          Some other way  Most of the time
## 4800   61.24          Gay or lesbian  Most of the time
## 4801   52.16 Heterosexual (straight)         Sometimes
## 4802   70.31 Heterosexual (straight)  Most of the time
## 4803   71.22 Heterosexual (straight)  Most of the time
## 4804   47.63                Bisexual            Always
## 4805   49.90 Heterosexual (straight)         Sometimes
## 4806   67.13 Heterosexual (straight)            Rarely
## 4807   86.18 Heterosexual (straight)  Most of the time
## 4808   45.81          Some other way            Always
## 4809   60.78 Heterosexual (straight)            Rarely
## 4810   99.79 Heterosexual (straight)         Sometimes
## 4811   56.70                Bisexual         Sometimes
## 4812   61.24 Heterosexual (straight)         Sometimes
## 4813  136.08 Heterosexual (straight)            Always
## 4814   63.50 Heterosexual (straight)             Never
## 4815   79.38 Heterosexual (straight)  Most of the time
## 4816   83.92 Heterosexual (straight)             Never
## 4817   54.43 Heterosexual (straight)  Most of the time
## 4818   45.36 Heterosexual (straight)  Most of the time
## 4819   63.96 Heterosexual (straight)  Most of the time
## 4820   95.26 Heterosexual (straight)         Sometimes
## 4821  107.05 Heterosexual (straight)            Rarely
## 4822   68.04                Bisexual         Sometimes
## 4823   61.24 Heterosexual (straight)         Sometimes
## 4824   54.43 Heterosexual (straight)            Always
## 4825   77.11 Heterosexual (straight)  Most of the time
## 4826   61.69 Heterosexual (straight)            Rarely
## 4827   52.16                Bisexual  Most of the time
## 4828   65.77 Heterosexual (straight)         Sometimes
## 4829   62.60 Heterosexual (straight)         Sometimes
## 4830   54.43 Heterosexual (straight)             Never
## 4831   48.99                Bisexual            Rarely
## 4832   72.58 Heterosexual (straight)            Rarely
## 4833   71.22 Heterosexual (straight)         Sometimes
## 4834   63.50 Heterosexual (straight)         Sometimes
## 4835   65.77 Heterosexual (straight)             Never
## 4836   51.26 Heterosexual (straight)             Never
## 4837   59.88                Bisexual            Always
## 4838   90.72 Heterosexual (straight)  Most of the time
## 4839  127.01 Heterosexual (straight)         Sometimes
## 4840   63.50 Heterosexual (straight)             Never
## 4841   68.04 Heterosexual (straight)            Rarely
## 4842   97.98          Some other way  Most of the time
## 4843  111.13 Heterosexual (straight)            Rarely
## 4844   70.31 Heterosexual (straight)         Sometimes
## 4845   68.04 Heterosexual (straight)            Rarely
## 4846   58.97 Heterosexual (straight)            Rarely
## 4847   61.24 Heterosexual (straight)  Most of the time
## 4848   43.55 Heterosexual (straight)             Never
## 4849   54.43 Heterosexual (straight)            Rarely
## 4850   64.41 Heterosexual (straight)         Sometimes
## 4851   63.50 Heterosexual (straight)            Always
## 4852   81.65                Bisexual            Always
## 4853  136.08 Heterosexual (straight)  Most of the time
## 4854   72.58 Heterosexual (straight)            Always
## 4855   78.93 Heterosexual (straight)            Rarely
## 4856      NA Heterosexual (straight)  Most of the time
## 4857   83.92 Heterosexual (straight)            Rarely
## 4858  108.86 Heterosexual (straight)            Rarely
## 4859   90.72 Heterosexual (straight)  Most of the time
## 4860   63.50 Heterosexual (straight)            Rarely
## 4861      NA Heterosexual (straight)         Sometimes
## 4862      NA Heterosexual (straight)         Sometimes
## 4863   58.97 Heterosexual (straight)            Rarely
## 4864   88.45 Heterosexual (straight)             Never
## 4865   67.59 Heterosexual (straight)             Never
## 4866   86.18 Heterosexual (straight)             Never
## 4867   58.06                Bisexual         Sometimes
## 4868   52.16 Heterosexual (straight)             Never
## 4869   49.90 Heterosexual (straight)            Rarely
## 4870   68.04 Heterosexual (straight)            Always
## 4871   93.44 Heterosexual (straight)            Rarely
## 4872   56.70 Heterosexual (straight)  Most of the time
## 4873   90.72 Heterosexual (straight)         Sometimes
## 4874   79.38 Heterosexual (straight)            Rarely
## 4875   64.86 Heterosexual (straight)            Rarely
## 4876   51.26          Some other way         Sometimes
## 4877   74.84 Heterosexual (straight)             Never
## 4878   58.06 Heterosexual (straight)         Sometimes
## 4879   48.99 Heterosexual (straight)         Sometimes
## 4880   63.50 Heterosexual (straight)              <NA>
## 4881   63.50 Heterosexual (straight)             Never
## 4882   57.61          Some other way  Most of the time
## 4883      NA          Some other way         Sometimes
## 4884  106.60 Heterosexual (straight)            Rarely
## 4885   45.36 Heterosexual (straight)            Rarely
## 4886   47.63 Heterosexual (straight)  Most of the time
## 4887   58.97 Heterosexual (straight)            Rarely
## 4888   51.71 Heterosexual (straight)            Rarely
## 4889      NA                Not sure            Rarely
## 4890   63.50 Heterosexual (straight)            Always
## 4891   61.69 Heterosexual (straight)            Rarely
## 4892   99.79 Heterosexual (straight)            Rarely
## 4893   65.77 Heterosexual (straight)         Sometimes
## 4894  108.86 Heterosexual (straight)         Sometimes
## 4895   56.70 Heterosexual (straight)         Sometimes
## 4896      NA Heterosexual (straight)         Sometimes
## 4897   54.43                Bisexual  Most of the time
## 4898   58.97 Heterosexual (straight)             Never
## 4899   62.60 Heterosexual (straight)             Never
## 4900   65.77 Heterosexual (straight)         Sometimes
## 4901   63.50 Heterosexual (straight)         Sometimes
## 4902  108.86 Heterosexual (straight)             Never
## 4903   90.72 Heterosexual (straight)  Most of the time
## 4904   50.80 Heterosexual (straight)            Rarely
## 4905   48.54 Heterosexual (straight)  Most of the time
## 4906   48.99 Heterosexual (straight)         Sometimes
## 4907   50.80          Some other way            Always
## 4908   49.90 Heterosexual (straight)            Rarely
## 4909   58.97                Not sure  Most of the time
## 4910   68.04                Bisexual  Most of the time
## 4911   79.38          Some other way  Most of the time
## 4912   56.70 Heterosexual (straight)            Rarely
## 4913   57.15 Heterosexual (straight)         Sometimes
## 4914   70.31 Heterosexual (straight)  Most of the time
## 4915   79.38 Heterosexual (straight)            Rarely
## 4916   74.84 Heterosexual (straight)  Most of the time
## 4917   79.38 Heterosexual (straight)             Never
## 4918  104.33                Bisexual         Sometimes
## 4919   58.97 Heterosexual (straight)  Most of the time
## 4920   68.04 Heterosexual (straight)         Sometimes
## 4921   68.04          Gay or lesbian         Sometimes
## 4922   67.59 Heterosexual (straight)            Rarely
## 4923   69.85 Heterosexual (straight)            Rarely
## 4924   92.08 Heterosexual (straight)             Never
## 4925   44.00 Heterosexual (straight)  Most of the time
## 4926   58.97                Not sure  Most of the time
## 4927   61.24 Heterosexual (straight)  Most of the time
## 4928   68.04 Heterosexual (straight)  Most of the time
## 4929   81.65                Bisexual         Sometimes
## 4930   68.04 Heterosexual (straight)         Sometimes
## 4931   63.50                Not sure  Most of the time
## 4932   59.88 Heterosexual (straight)            Rarely
## 4933   81.65          Gay or lesbian            Always
## 4934   68.04                Bisexual            Always
## 4935   63.50 Heterosexual (straight)  Most of the time
## 4936   97.98 Heterosexual (straight)            Rarely
## 4937   60.33                Not sure  Most of the time
## 4938   61.69 Heterosexual (straight)         Sometimes
## 4939   56.70 Heterosexual (straight)  Most of the time
## 4940   52.16 Heterosexual (straight)            Rarely
## 4941   78.02 Heterosexual (straight)            Rarely
## 4942   71.22 Heterosexual (straight)            Rarely
## 4943      NA Heterosexual (straight)  Most of the time
## 4944   52.16 Heterosexual (straight)            Rarely
## 4945   85.73 Heterosexual (straight)  Most of the time
## 4946      NA Heterosexual (straight)              <NA>
## 4947   49.90 Heterosexual (straight)            Rarely
## 4948   61.24          Gay or lesbian         Sometimes
## 4949   86.18 Heterosexual (straight)            Rarely
## 4950   63.50 Heterosexual (straight)         Sometimes
## 4951   41.28          Some other way            Always
## 4952   70.31 Heterosexual (straight)         Sometimes
## 4953   44.45 Heterosexual (straight)  Most of the time
## 4954   65.77 Heterosexual (straight)            Rarely
## 4955   43.55 Heterosexual (straight)            Always
## 4956   56.70 Heterosexual (straight)            Rarely
## 4957   51.71 Heterosexual (straight)            Rarely
## 4958   55.34 Heterosexual (straight)         Sometimes
## 4959   97.52 Heterosexual (straight)  Most of the time
## 4960   68.95 Heterosexual (straight)            Always
## 4961  102.06                Bisexual         Sometimes
## 4962   65.77 Heterosexual (straight)         Sometimes
## 4963   68.04 Heterosexual (straight)         Sometimes
## 4964   63.50 Heterosexual (straight)         Sometimes
## 4965   72.58 Heterosexual (straight)            Rarely
## 4966      NA                Bisexual  Most of the time
## 4967   55.79 Heterosexual (straight)  Most of the time
## 4968   81.65          Some other way            Always
## 4969   52.16          Some other way  Most of the time
## 4970   56.70                Bisexual  Most of the time
## 4971   48.08 Heterosexual (straight)            Always
## 4972   67.59 Heterosexual (straight)             Never
## 4973  122.47          Gay or lesbian         Sometimes
## 4974   61.69                Bisexual  Most of the time
## 4975      NA                Bisexual              <NA>
## 4976   70.31 Heterosexual (straight)            Rarely
## 4977   72.58 Heterosexual (straight)         Sometimes
## 4978   97.52 Heterosexual (straight)            Rarely
## 4979   79.38                Not sure         Sometimes
## 4980   80.74 Heterosexual (straight)            Always
## 4981   57.15 Heterosexual (straight)         Sometimes
## 4982   77.11 Heterosexual (straight)            Rarely
## 4983   75.75 Heterosexual (straight)             Never
## 4984   81.65 Heterosexual (straight)            Rarely
## 4985   74.84 Heterosexual (straight)         Sometimes
## 4986   90.72 Heterosexual (straight)         Sometimes
## 4987   83.92 Heterosexual (straight)  Most of the time
## 4988   61.69 Heterosexual (straight)              <NA>
## 4989   63.50 Heterosexual (straight)            Always
## 4990   69.85                Bisexual  Most of the time
## 4991   57.15 Heterosexual (straight)  Most of the time
## 4992   86.18 Heterosexual (straight)         Sometimes
## 4993      NA                Bisexual              <NA>
## 4994   61.24 Heterosexual (straight)         Sometimes
## 4995   63.96 Heterosexual (straight)  Most of the time
## 4996   90.72          Some other way         Sometimes
## 4997   60.33 Heterosexual (straight)  Most of the time
## 4998   59.88 Heterosexual (straight)  Most of the time
## 4999   68.04 Heterosexual (straight)  Most of the time
## 5000   74.84 Heterosexual (straight)         Sometimes
## 5001   63.50 Heterosexual (straight)            Rarely
## 5002   79.38 Heterosexual (straight)         Sometimes
## 5003   74.84 Heterosexual (straight)            Always
## 5004   86.18          Gay or lesbian            Always
## 5005  102.06                Bisexual            Always
## 5006   92.99 Heterosexual (straight)            Rarely
## 5007   80.74 Heterosexual (straight)            Rarely
## 5008   78.02 Heterosexual (straight)            Rarely
## 5009   68.95          Some other way  Most of the time
## 5010   99.79 Heterosexual (straight)             Never
## 5011   63.50 Heterosexual (straight)            Rarely
## 5012   78.02 Heterosexual (straight)             Never
## 5013   78.47          Gay or lesbian         Sometimes
## 5014   70.76 Heterosexual (straight)         Sometimes
## 5015      NA Heterosexual (straight)            Rarely
## 5016   57.15 Heterosexual (straight)            Rarely
## 5017   70.31 Heterosexual (straight)  Most of the time
## 5018   64.41                Not sure  Most of the time
## 5019   93.44 Heterosexual (straight)  Most of the time
## 5020   56.70                Bisexual         Sometimes
## 5021  108.86 Heterosexual (straight)         Sometimes
## 5022   56.25 Heterosexual (straight)  Most of the time
## 5023   52.16 Heterosexual (straight)            Rarely
## 5024   52.16 Heterosexual (straight)            Rarely
## 5025  106.60 Heterosexual (straight)             Never
## 5026   76.20 Heterosexual (straight)  Most of the time
## 5027  127.01 Heterosexual (straight)             Never
## 5028   54.43 Heterosexual (straight)            Rarely
## 5029   72.58 Heterosexual (straight)         Sometimes
## 5030   58.51 Heterosexual (straight)         Sometimes
## 5031   61.24 Heterosexual (straight)            Rarely
## 5032   74.84 Heterosexual (straight)         Sometimes
## 5033   49.90 Heterosexual (straight)  Most of the time
## 5034   53.52 Heterosexual (straight)  Most of the time
## 5035   99.79                Not sure         Sometimes
## 5036      NA                Not sure  Most of the time
## 5037   68.49 Heterosexual (straight)            Always
## 5038   55.79                Bisexual  Most of the time
## 5039   90.72 Heterosexual (straight)         Sometimes
## 5040   76.20 Heterosexual (straight)         Sometimes
## 5041   95.26 Heterosexual (straight)             Never
## 5042   72.58 Heterosexual (straight)             Never
## 5043      NA Heterosexual (straight)            Rarely
## 5044   61.24 Heterosexual (straight)            Rarely
## 5045   74.84 Heterosexual (straight)            Rarely
## 5046   63.50 Heterosexual (straight)         Sometimes
## 5047   90.72 Heterosexual (straight)            Rarely
## 5048   75.30 Heterosexual (straight)            Always
## 5049   61.24          Some other way  Most of the time
## 5050   47.63 Heterosexual (straight)            Always
## 5051   73.48 Heterosexual (straight)  Most of the time
## 5052      NA Heterosexual (straight)             Never
## 5053   58.97 Heterosexual (straight)         Sometimes
## 5054   58.97 Heterosexual (straight)             Never
## 5055   86.18                Bisexual  Most of the time
## 5056   92.99 Heterosexual (straight)             Never
## 5057   72.58 Heterosexual (straight)         Sometimes
## 5058  122.47 Heterosexual (straight)            Rarely
## 5059   57.15 Heterosexual (straight)         Sometimes
## 5060   45.36 Heterosexual (straight)            Rarely
## 5061   68.04 Heterosexual (straight)  Most of the time
## 5062   70.76 Heterosexual (straight)            Rarely
## 5063   68.04 Heterosexual (straight)            Always
## 5064   75.75 Heterosexual (straight)  Most of the time
## 5065   86.18 Heterosexual (straight)  Most of the time
## 5066   60.33                Bisexual  Most of the time
## 5067   61.24 Heterosexual (straight)         Sometimes
## 5068   49.90                Bisexual  Most of the time
## 5069   56.70 Heterosexual (straight)            Rarely
## 5070   70.31 Heterosexual (straight)  Most of the time
## 5071   56.70                Not sure  Most of the time
## 5072      NA Heterosexual (straight)  Most of the time
## 5073   86.18 Heterosexual (straight)             Never
## 5074   72.58 Heterosexual (straight)  Most of the time
## 5075   51.71 Heterosexual (straight)            Rarely
## 5076      NA Heterosexual (straight)            Always
## 5077   57.61 Heterosexual (straight)  Most of the time
## 5078   61.24                Not sure         Sometimes
## 5079   66.23 Heterosexual (straight)            Always
## 5080   79.38 Heterosexual (straight)             Never
## 5081   89.81                Not sure  Most of the time
## 5082   83.92 Heterosexual (straight)            Rarely
## 5083   58.97 Heterosexual (straight)  Most of the time
## 5084   64.41 Heterosexual (straight)            Always
## 5085   75.75 Heterosexual (straight)            Always
## 5086   65.77 Heterosexual (straight)             Never
## 5087   97.52 Heterosexual (straight)         Sometimes
## 5088  116.12                Bisexual  Most of the time
## 5089   45.36 Heterosexual (straight)            Always
## 5090   68.04 Heterosexual (straight)             Never
## 5091   65.32                Bisexual            Rarely
## 5092   58.97 Heterosexual (straight)  Most of the time
## 5093   61.24 Heterosexual (straight)         Sometimes
## 5094   95.26 Heterosexual (straight)         Sometimes
## 5095   74.84          Gay or lesbian  Most of the time
## 5096  104.33                Not sure  Most of the time
## 5097   90.72                Bisexual  Most of the time
## 5098   81.65 Heterosexual (straight)         Sometimes
## 5099   52.62 Heterosexual (straight)         Sometimes
## 5100   56.70                Not sure  Most of the time
## 5101   97.52 Heterosexual (straight)            Rarely
## 5102  120.66                Bisexual            Rarely
## 5103   58.97 Heterosexual (straight)  Most of the time
## 5104   61.24 Heterosexual (straight)  Most of the time
## 5105   49.90 Heterosexual (straight)  Most of the time
## 5106   70.31                Not sure         Sometimes
## 5107   68.04 Heterosexual (straight)            Rarely
## 5108   88.91          Gay or lesbian         Sometimes
## 5109   68.04 Heterosexual (straight)             Never
## 5110   61.24 Heterosexual (straight)  Most of the time
## 5111      NA                Not sure         Sometimes
## 5112   65.77 Heterosexual (straight)  Most of the time
## 5113  154.22          Some other way            Always
## 5114   82.56 Heterosexual (straight)         Sometimes
## 5115   68.04 Heterosexual (straight)         Sometimes
## 5116      NA Heterosexual (straight)             Never
## 5117   83.92 Heterosexual (straight)  Most of the time
## 5118  104.33 Heterosexual (straight)            Rarely
## 5119   68.04 Heterosexual (straight)             Never
## 5120   44.45                Not sure  Most of the time
## 5121   65.77 Heterosexual (straight)         Sometimes
## 5122  117.94 Heterosexual (straight)         Sometimes
## 5123   61.24 Heterosexual (straight)            Rarely
## 5124   54.43 Heterosexual (straight)            Rarely
## 5125   63.50 Heterosexual (straight)         Sometimes
## 5126   53.52 Heterosexual (straight)            Rarely
## 5127   68.04 Heterosexual (straight)         Sometimes
## 5128      NA Heterosexual (straight)            Rarely
## 5129   58.06 Heterosexual (straight)            Rarely
## 5130   68.04                Bisexual         Sometimes
## 5131   74.84 Heterosexual (straight)             Never
## 5132   72.58 Heterosexual (straight)            Rarely
## 5133  102.06 Heterosexual (straight)             Never
## 5134   65.77 Heterosexual (straight)            Rarely
## 5135   54.43 Heterosexual (straight)  Most of the time
## 5136   57.15 Heterosexual (straight)         Sometimes
## 5137   61.24 Heterosexual (straight)             Never
## 5138   56.25 Heterosexual (straight)              <NA>
## 5139  100.70 Heterosexual (straight)  Most of the time
## 5140  127.46 Heterosexual (straight)            Rarely
## 5141   68.04 Heterosexual (straight)            Always
## 5142   68.04 Heterosexual (straight)            Rarely
## 5143   81.65 Heterosexual (straight)            Rarely
## 5144   45.36 Heterosexual (straight)         Sometimes
## 5145   55.34 Heterosexual (straight)            Rarely
## 5146   44.45 Heterosexual (straight)         Sometimes
## 5147   59.42                Not sure  Most of the time
## 5148   63.50 Heterosexual (straight)         Sometimes
## 5149   79.38 Heterosexual (straight)         Sometimes
## 5150   52.16 Heterosexual (straight)            Always
## 5151   61.24 Heterosexual (straight)            Rarely
## 5152   52.16                Not sure         Sometimes
## 5153   63.50 Heterosexual (straight)            Rarely
## 5154   58.97 Heterosexual (straight)             Never
## 5155   70.31 Heterosexual (straight)            Rarely
## 5156   56.70 Heterosexual (straight)            Rarely
## 5157   70.31 Heterosexual (straight)            Rarely
## 5158   67.59          Gay or lesbian         Sometimes
## 5159   97.52          Gay or lesbian  Most of the time
## 5160   77.11 Heterosexual (straight)            Always
## 5161   56.70 Heterosexual (straight)         Sometimes
## 5162   77.11                Bisexual  Most of the time
## 5163   65.77 Heterosexual (straight)  Most of the time
## 5164      NA Heterosexual (straight)              <NA>
## 5165   71.22 Heterosexual (straight)              <NA>
## 5166   64.41                Not sure            Always
## 5167   81.65 Heterosexual (straight)         Sometimes
## 5168   49.90                Bisexual  Most of the time
## 5169   79.38 Heterosexual (straight)             Never
## 5170   54.43 Heterosexual (straight)         Sometimes
## 5171   74.39 Heterosexual (straight)              <NA>
## 5172   61.24 Heterosexual (straight)            Rarely
## 5173   61.24 Heterosexual (straight)             Never
## 5174   88.91 Heterosexual (straight)            Rarely
## 5175   81.65                Bisexual  Most of the time
## 5176   69.40 Heterosexual (straight)         Sometimes
## 5177   64.86 Heterosexual (straight)         Sometimes
## 5178   72.58 Heterosexual (straight)         Sometimes
## 5179   86.18 Heterosexual (straight)  Most of the time
## 5180   58.97 Heterosexual (straight)  Most of the time
## 5181   65.77 Heterosexual (straight)         Sometimes
## 5182   88.91                Not sure         Sometimes
## 5183   68.04 Heterosexual (straight)         Sometimes
## 5184   55.34          Gay or lesbian         Sometimes
## 5185   63.50 Heterosexual (straight)  Most of the time
## 5186   65.77 Heterosexual (straight)  Most of the time
## 5187   99.79 Heterosexual (straight)  Most of the time
## 5188   53.52                Bisexual  Most of the time
## 5189   59.88 Heterosexual (straight)         Sometimes
## 5190   71.67 Heterosexual (straight)  Most of the time
## 5191   53.98 Heterosexual (straight)         Sometimes
## 5192   45.81 Heterosexual (straight)             Never
## 5193   58.97 Heterosexual (straight)         Sometimes
## 5194   54.89 Heterosexual (straight)            Rarely
## 5195   61.24 Heterosexual (straight)         Sometimes
## 5196   56.70                Not sure         Sometimes
## 5197   59.88 Heterosexual (straight)             Never
## 5198   48.08 Heterosexual (straight)         Sometimes
## 5199   76.20 Heterosexual (straight)            Rarely
## 5200   88.91                Not sure  Most of the time
## 5201   61.24 Heterosexual (straight)  Most of the time
## 5202   62.14 Heterosexual (straight)  Most of the time
## 5203   66.68                Not sure            Always
## 5204  102.06 Heterosexual (straight)            Rarely
## 5205   51.71 Heterosexual (straight)         Sometimes
## 5206   54.43 Heterosexual (straight)         Sometimes
## 5207   53.07 Heterosexual (straight)  Most of the time
## 5208   72.58                Bisexual            Always
## 5209   88.45 Heterosexual (straight)         Sometimes
## 5210   54.43 Heterosexual (straight)         Sometimes
## 5211   62.60                Bisexual  Most of the time
## 5212   88.45 Heterosexual (straight)             Never
## 5213   63.50 Heterosexual (straight)         Sometimes
## 5214  106.60 Heterosexual (straight)            Rarely
## 5215   56.70 Heterosexual (straight)            Rarely
## 5216   47.63                Bisexual  Most of the time
## 5217   63.50 Heterosexual (straight)  Most of the time
## 5218   65.77 Heterosexual (straight)         Sometimes
## 5219   63.50 Heterosexual (straight)         Sometimes
## 5220   65.77 Heterosexual (straight)         Sometimes
## 5221   54.43 Heterosexual (straight)  Most of the time
## 5222   47.17 Heterosexual (straight)            Rarely
## 5223   77.11 Heterosexual (straight)            Rarely
## 5224   54.43 Heterosexual (straight)         Sometimes
## 5225   65.32                Bisexual             Never
## 5226   63.50 Heterosexual (straight)             Never
## 5227   86.18 Heterosexual (straight)         Sometimes
## 5228   44.00 Heterosexual (straight)         Sometimes
## 5229   74.84 Heterosexual (straight)             Never
## 5230   74.84 Heterosexual (straight)         Sometimes
## 5231   65.32 Heterosexual (straight)            Rarely
## 5232   56.70 Heterosexual (straight)  Most of the time
## 5233   49.90 Heterosexual (straight)         Sometimes
## 5234   62.14 Heterosexual (straight)  Most of the time
## 5235   79.38 Heterosexual (straight)             Never
## 5236   52.16 Heterosexual (straight)  Most of the time
## 5237   58.97 Heterosexual (straight)         Sometimes
## 5238  109.77 Heterosexual (straight)  Most of the time
## 5239   54.43 Heterosexual (straight)  Most of the time
## 5240   80.74 Heterosexual (straight)         Sometimes
## 5241   91.17 Heterosexual (straight)  Most of the time
## 5242   79.38          Some other way            Always
## 5243   72.58 Heterosexual (straight)         Sometimes
## 5244   65.77                Bisexual            Rarely
## 5245   80.74 Heterosexual (straight)         Sometimes
## 5246   68.04                Not sure         Sometimes
## 5247   53.07 Heterosexual (straight)         Sometimes
## 5248   77.11 Heterosexual (straight)         Sometimes
## 5249   77.11 Heterosexual (straight)  Most of the time
## 5250   40.82                Not sure  Most of the time
## 5251   86.18                Bisexual            Always
## 5252   78.93 Heterosexual (straight)  Most of the time
## 5253   65.77 Heterosexual (straight)         Sometimes
## 5254      NA          Some other way         Sometimes
## 5255   68.04                Bisexual         Sometimes
## 5256   50.80                Not sure         Sometimes
## 5257   48.99 Heterosexual (straight)  Most of the time
## 5258   66.68 Heterosexual (straight)  Most of the time
## 5259   61.24 Heterosexual (straight)         Sometimes
## 5260   77.11 Heterosexual (straight)             Never
## 5261   58.97 Heterosexual (straight)  Most of the time
## 5262   65.77 Heterosexual (straight)         Sometimes
## 5263   61.24 Heterosexual (straight)  Most of the time
## 5264      NA Heterosexual (straight)            Rarely
## 5265   81.65 Heterosexual (straight)             Never
## 5266   56.70 Heterosexual (straight)         Sometimes
## 5267   58.97          Some other way            Always
## 5268   72.58 Heterosexual (straight)            Rarely
## 5269      NA          Some other way            Rarely
## 5270   68.04 Heterosexual (straight)  Most of the time
## 5271   63.50 Heterosexual (straight)            Rarely
## 5272   65.77 Heterosexual (straight)            Rarely
## 5273   74.84 Heterosexual (straight)            Rarely
## 5274   54.43 Heterosexual (straight)         Sometimes
## 5275   60.78 Heterosexual (straight)         Sometimes
## 5276   88.45 Heterosexual (straight)            Rarely
## 5277   47.63 Heterosexual (straight)         Sometimes
## 5278   44.00                Bisexual  Most of the time
## 5279   69.40          Gay or lesbian  Most of the time
## 5280   65.77 Heterosexual (straight)         Sometimes
## 5281   54.43 Heterosexual (straight)  Most of the time
## 5282   88.45 Heterosexual (straight)         Sometimes
## 5283   58.97          Some other way         Sometimes
## 5284   86.18          Gay or lesbian         Sometimes
## 5285   52.16          Gay or lesbian            Rarely
## 5286   72.58 Heterosexual (straight)         Sometimes
## 5287   49.90 Heterosexual (straight)            Rarely
## 5288   68.04 Heterosexual (straight)         Sometimes
## 5289   47.63 Heterosexual (straight)  Most of the time
## 5290   88.45          Gay or lesbian             Never
## 5291   56.70 Heterosexual (straight)            Rarely
## 5292   52.16 Heterosexual (straight)            Always
## 5293   86.18 Heterosexual (straight)  Most of the time
## 5294   61.24          Some other way         Sometimes
## 5295   56.70 Heterosexual (straight)  Most of the time
## 5296   74.39 Heterosexual (straight)            Rarely
## 5297      NA Heterosexual (straight)  Most of the time
## 5298   56.70          Some other way  Most of the time
## 5299   74.84 Heterosexual (straight)         Sometimes
## 5300   61.24                Bisexual         Sometimes
## 5301   71.22 Heterosexual (straight)            Rarely
## 5302   68.04 Heterosexual (straight)         Sometimes
## 5303   58.06 Heterosexual (straight)            Rarely
## 5304   54.43                Not sure  Most of the time
## 5305   43.09                Bisexual            Always
## 5306   90.72 Heterosexual (straight)            Rarely
## 5307   70.31 Heterosexual (straight)            Rarely
## 5308   81.65 Heterosexual (straight)            Rarely
## 5309   67.13 Heterosexual (straight)         Sometimes
## 5310   49.90 Heterosexual (straight)            Always
## 5311   81.65 Heterosexual (straight)         Sometimes
## 5312   87.09 Heterosexual (straight)         Sometimes
## 5313   67.13                Bisexual         Sometimes
## 5314   81.65 Heterosexual (straight)         Sometimes
## 5315   79.38 Heterosexual (straight)         Sometimes
## 5316   67.13 Heterosexual (straight)            Rarely
## 5317   61.69                Not sure            Rarely
## 5318      NA                Bisexual         Sometimes
## 5319   56.70                Bisexual  Most of the time
## 5320   56.70                Bisexual         Sometimes
## 5321   83.01                Bisexual            Always
## 5322   65.77                Bisexual         Sometimes
## 5323   65.77 Heterosexual (straight)            Rarely
## 5324   52.16 Heterosexual (straight)         Sometimes
## 5325   77.11 Heterosexual (straight)             Never
## 5326   63.50                Bisexual  Most of the time
## 5327   74.84 Heterosexual (straight)            Rarely
## 5328   76.20 Heterosexual (straight)             Never
## 5329   52.16 Heterosexual (straight)         Sometimes
## 5330   58.06                Bisexual         Sometimes
## 5331   68.04 Heterosexual (straight)         Sometimes
## 5332   79.38 Heterosexual (straight)            Rarely
## 5333   62.60 Heterosexual (straight)         Sometimes
## 5334   68.04 Heterosexual (straight)         Sometimes
## 5335   52.16 Heterosexual (straight)            Rarely
## 5336   56.70                Not sure  Most of the time
## 5337   54.89 Heterosexual (straight)  Most of the time
## 5338   57.15 Heterosexual (straight)         Sometimes
## 5339   95.26 Heterosexual (straight)         Sometimes
## 5340   72.58          Some other way         Sometimes
## 5341  108.86 Heterosexual (straight)  Most of the time
## 5342   79.38 Heterosexual (straight)            Rarely
## 5343   72.58 Heterosexual (straight)  Most of the time
## 5344   51.71                Bisexual            Always
## 5345   58.97 Heterosexual (straight)             Never
## 5346   48.54 Heterosexual (straight)         Sometimes
## 5347   54.43 Heterosexual (straight)            Rarely
## 5348   55.79 Heterosexual (straight)            Rarely
## 5349   72.58 Heterosexual (straight)             Never
## 5350   50.35                Bisexual            Rarely
## 5351   53.07          Some other way         Sometimes
## 5352  104.33 Heterosexual (straight)            Rarely
## 5353   97.52 Heterosexual (straight)            Rarely
## 5354   65.77 Heterosexual (straight)             Never
## 5355   35.38                Bisexual            Always
## 5356   58.97 Heterosexual (straight)         Sometimes
## 5357  106.14 Heterosexual (straight)            Rarely
## 5358   52.16 Heterosexual (straight)             Never
## 5359   86.18 Heterosexual (straight)            Rarely
## 5360   81.65          Some other way            Rarely
## 5361   52.16                Bisexual              <NA>
## 5362   63.05 Heterosexual (straight)         Sometimes
## 5363   54.43                Not sure  Most of the time
## 5364   86.18 Heterosexual (straight)         Sometimes
## 5365   77.11 Heterosexual (straight)         Sometimes
## 5366   68.04 Heterosexual (straight)            Rarely
## 5367   63.50 Heterosexual (straight)            Rarely
## 5368   48.08 Heterosexual (straight)         Sometimes
## 5369      NA Heterosexual (straight)         Sometimes
## 5370   70.31 Heterosexual (straight)            Rarely
## 5371   50.80 Heterosexual (straight)         Sometimes
## 5372  102.06                Bisexual         Sometimes
## 5373   54.43 Heterosexual (straight)         Sometimes
## 5374   86.18 Heterosexual (straight)         Sometimes
## 5375   90.72 Heterosexual (straight)             Never
## 5376   81.65 Heterosexual (straight)              <NA>
## 5377   49.44 Heterosexual (straight)  Most of the time
## 5378   81.65 Heterosexual (straight)         Sometimes
## 5379   62.14 Heterosexual (straight)            Rarely
## 5380      NA Heterosexual (straight)  Most of the time
## 5381   53.52 Heterosexual (straight)         Sometimes
## 5382   52.16 Heterosexual (straight)            Rarely
## 5383   68.04          Gay or lesbian            Always
## 5384   53.52 Heterosexual (straight)  Most of the time
## 5385   70.31 Heterosexual (straight)  Most of the time
## 5386   58.97 Heterosexual (straight)             Never
## 5387   81.65 Heterosexual (straight)            Rarely
## 5388   54.43 Heterosexual (straight)            Rarely
## 5389   52.16 Heterosexual (straight)            Always
## 5390   90.72 Heterosexual (straight)            Rarely
## 5391   63.50 Heterosexual (straight)         Sometimes
## 5392      NA          Some other way  Most of the time
## 5393  113.40 Heterosexual (straight)            Always
## 5394   64.86 Heterosexual (straight)             Never
## 5395   60.78 Heterosexual (straight)  Most of the time
## 5396   46.72                Not sure  Most of the time
## 5397  111.13 Heterosexual (straight)         Sometimes
## 5398   61.24                Not sure  Most of the time
## 5399   60.78          Gay or lesbian            Rarely
## 5400   65.77 Heterosexual (straight)         Sometimes
## 5401   90.72 Heterosexual (straight)            Rarely
## 5402   95.26 Heterosexual (straight)            Always
## 5403   63.50 Heterosexual (straight)         Sometimes
## 5404  106.60 Heterosexual (straight)            Always
## 5405   61.24                Bisexual            Always
## 5406  104.33 Heterosexual (straight)         Sometimes
## 5407   72.58 Heterosexual (straight)         Sometimes
## 5408   81.65                Bisexual  Most of the time
## 5409   65.77 Heterosexual (straight)         Sometimes
## 5410      NA                Bisexual             Never
## 5411   56.70 Heterosexual (straight)  Most of the time
## 5412  101.61                Not sure         Sometimes
## 5413      NA Heterosexual (straight)             Never
## 5414   83.92                Bisexual            Rarely
## 5415   68.04 Heterosexual (straight)             Never
## 5416   73.94                Bisexual            Always
## 5417   47.17                Bisexual  Most of the time
## 5418   56.70 Heterosexual (straight)         Sometimes
## 5419   49.90 Heterosexual (straight)            Always
## 5420   51.71 Heterosexual (straight)  Most of the time
## 5421   67.13 Heterosexual (straight)             Never
## 5422   48.54                Not sure            Always
## 5423   52.16 Heterosexual (straight)             Never
## 5424   77.11 Heterosexual (straight)             Never
## 5425   49.44 Heterosexual (straight)         Sometimes
## 5426   74.84 Heterosexual (straight)         Sometimes
## 5427   65.77 Heterosexual (straight)             Never
## 5428   58.97 Heterosexual (straight)         Sometimes
## 5429      NA Heterosexual (straight)             Never
## 5430   63.96 Heterosexual (straight)  Most of the time
## 5431   87.54 Heterosexual (straight)            Always
## 5432   83.92 Heterosexual (straight)         Sometimes
## 5433   81.65 Heterosexual (straight)         Sometimes
## 5434   45.36 Heterosexual (straight)         Sometimes
## 5435   58.97 Heterosexual (straight)         Sometimes
## 5436   81.65 Heterosexual (straight)             Never
## 5437   74.84 Heterosexual (straight)            Rarely
## 5438   50.35          Some other way  Most of the time
## 5439   58.97 Heterosexual (straight)            Rarely
## 5440   74.84 Heterosexual (straight)             Never
## 5441   65.77 Heterosexual (straight)  Most of the time
## 5442   95.26 Heterosexual (straight)             Never
## 5443   89.81 Heterosexual (straight)             Never
## 5444   43.09                Not sure         Sometimes
## 5445   58.51 Heterosexual (straight)             Never
## 5446   54.43 Heterosexual (straight)         Sometimes
## 5447   86.18                Bisexual            Always
## 5448   76.20 Heterosexual (straight)             Never
## 5449   66.23 Heterosexual (straight)         Sometimes
## 5450   52.16 Heterosexual (straight)            Rarely
## 5451   58.97 Heterosexual (straight)  Most of the time
## 5452   56.70 Heterosexual (straight)            Rarely
## 5453   58.51 Heterosexual (straight)  Most of the time
## 5454   72.58 Heterosexual (straight)  Most of the time
## 5455   83.92 Heterosexual (straight)            Rarely
## 5456      NA Heterosexual (straight)            Rarely
## 5457   99.34 Heterosexual (straight)  Most of the time
## 5458      NA          Gay or lesbian             Never
## 5459   54.43 Heterosexual (straight)         Sometimes
## 5460  115.67 Heterosexual (straight)            Rarely
## 5461   56.70 Heterosexual (straight)            Rarely
## 5462   68.95 Heterosexual (straight)            Rarely
## 5463   53.52 Heterosexual (straight)             Never
## 5464   67.59 Heterosexual (straight)         Sometimes
## 5465   53.52 Heterosexual (straight)            Always
## 5466   98.43 Heterosexual (straight)         Sometimes
## 5467   51.26 Heterosexual (straight)            Rarely
## 5468   86.18 Heterosexual (straight)         Sometimes
## 5469   64.86 Heterosexual (straight)  Most of the time
## 5470   59.42 Heterosexual (straight)            Rarely
## 5471   68.95                Not sure  Most of the time
## 5472   61.24 Heterosexual (straight)            Rarely
## 5473   50.80 Heterosexual (straight)  Most of the time
## 5474   52.16 Heterosexual (straight)             Never
## 5475   45.36 Heterosexual (straight)             Never
## 5476   68.04                Bisexual            Always
## 5477   67.13 Heterosexual (straight)  Most of the time
## 5478   48.99                Bisexual  Most of the time
## 5479   57.15 Heterosexual (straight)         Sometimes
## 5480  108.86 Heterosexual (straight)             Never
## 5481   49.90 Heterosexual (straight)            Rarely
## 5482   58.06 Heterosexual (straight)             Never
## 5483   81.65 Heterosexual (straight)            Rarely
## 5484   50.80                Bisexual  Most of the time
## 5485      NA          Some other way  Most of the time
## 5486   89.81 Heterosexual (straight)         Sometimes
## 5487   61.24          Some other way            Rarely
## 5488   70.31                Bisexual         Sometimes
## 5489   74.84                Bisexual  Most of the time
## 5490   56.70          Some other way  Most of the time
## 5491  131.54                Not sure         Sometimes
## 5492   48.54 Heterosexual (straight)         Sometimes
## 5493   49.90 Heterosexual (straight)            Always
## 5494   54.89 Heterosexual (straight)         Sometimes
## 5495   71.67 Heterosexual (straight)            Rarely
## 5496   54.43 Heterosexual (straight)             Never
## 5497   79.38 Heterosexual (straight)         Sometimes
## 5498   70.31 Heterosexual (straight)         Sometimes
## 5499   90.72 Heterosexual (straight)            Rarely
## 5500   65.77 Heterosexual (straight)  Most of the time
## 5501   79.38 Heterosexual (straight)         Sometimes
## 5502   68.04 Heterosexual (straight)             Never
## 5503   72.58 Heterosexual (straight)         Sometimes
## 5504  122.02 Heterosexual (straight)  Most of the time
## 5505   61.24 Heterosexual (straight)         Sometimes
## 5506   63.50 Heterosexual (straight)            Rarely
## 5507   68.04 Heterosexual (straight)  Most of the time
## 5508   68.49                Bisexual         Sometimes
## 5509   52.16                Not sure  Most of the time
## 5510   80.74 Heterosexual (straight)         Sometimes
## 5511   65.77 Heterosexual (straight)  Most of the time
## 5512   81.65 Heterosexual (straight)  Most of the time
## 5513   81.65 Heterosexual (straight)         Sometimes
## 5514   79.38 Heterosexual (straight)  Most of the time
## 5515   63.50 Heterosexual (straight)            Rarely
## 5516   49.90 Heterosexual (straight)             Never
## 5517      NA                Bisexual            Always
## 5518      NA Heterosexual (straight)         Sometimes
## 5519   44.91          Some other way  Most of the time
## 5520   56.70 Heterosexual (straight)             Never
## 5521   58.06 Heterosexual (straight)             Never
## 5522   63.50 Heterosexual (straight)            Rarely
## 5523   52.16 Heterosexual (straight)             Never
## 5524   90.72 Heterosexual (straight)            Rarely
## 5525   54.43                Bisexual  Most of the time
## 5526   50.35 Heterosexual (straight)            Always
## 5527   72.58 Heterosexual (straight)         Sometimes
## 5528   50.80 Heterosexual (straight)  Most of the time
## 5529   72.58 Heterosexual (straight)         Sometimes
## 5530   75.75 Heterosexual (straight)  Most of the time
## 5531      NA Heterosexual (straight)  Most of the time
## 5532   81.65                Bisexual         Sometimes
## 5533   63.50 Heterosexual (straight)  Most of the time
## 5534   49.90 Heterosexual (straight)             Never
## 5535   56.70                Bisexual         Sometimes
## 5536   45.36                Bisexual         Sometimes
## 5537   43.55                Bisexual  Most of the time
## 5538   63.50 Heterosexual (straight)            Rarely
## 5539   72.58 Heterosexual (straight)  Most of the time
## 5540   88.45                Bisexual  Most of the time
## 5541   71.67 Heterosexual (straight)  Most of the time
## 5542   45.36 Heterosexual (straight)         Sometimes
## 5543  117.94          Gay or lesbian  Most of the time
## 5544   54.43 Heterosexual (straight)             Never
## 5545   58.97                Bisexual              <NA>
## 5546   48.54          Some other way  Most of the time
## 5547   56.25                Bisexual         Sometimes
## 5548   58.97                Bisexual            Rarely
## 5549   99.79 Heterosexual (straight)            Rarely
## 5550   82.56 Heterosexual (straight)  Most of the time
## 5551   52.16 Heterosexual (straight)             Never
## 5552   70.31 Heterosexual (straight)         Sometimes
## 5553   48.54                Bisexual  Most of the time
## 5554   61.24                Bisexual  Most of the time
## 5555   62.14                Bisexual  Most of the time
## 5556      NA                Bisexual            Always
## 5557   54.43          Some other way              <NA>
## 5558   92.08          Some other way         Sometimes
## 5559   54.43 Heterosexual (straight)            Rarely
## 5560  102.06                Not sure         Sometimes
## 5561   63.50 Heterosexual (straight)            Rarely
## 5562      NA Heterosexual (straight)         Sometimes
## 5563   52.62 Heterosexual (straight)            Rarely
## 5564   45.36 Heterosexual (straight)            Rarely
## 5565   54.43 Heterosexual (straight)         Sometimes
## 5566   56.70 Heterosexual (straight)             Never
## 5567   64.86                Not sure  Most of the time
## 5568   80.74 Heterosexual (straight)            Rarely
## 5569   62.60                Bisexual  Most of the time
## 5570  113.40                Not sure         Sometimes
## 5571   54.43                Not sure         Sometimes
## 5572   61.24 Heterosexual (straight)  Most of the time
## 5573   52.16 Heterosexual (straight)         Sometimes
## 5574   58.97 Heterosexual (straight)            Rarely
## 5575   62.60 Heterosexual (straight)            Rarely
## 5576   51.71                Bisexual  Most of the time
## 5577   57.61 Heterosexual (straight)            Always
## 5578   49.90          Some other way            Always
## 5579   56.70                Bisexual            Always
## 5580   56.70                Bisexual             Never
## 5581   88.45 Heterosexual (straight)             Never
## 5582   79.38 Heterosexual (straight)         Sometimes
## 5583   90.72 Heterosexual (straight)             Never
## 5584   72.58 Heterosexual (straight)         Sometimes
## 5585   77.11 Heterosexual (straight)             Never
## 5586   70.31 Heterosexual (straight)             Never
## 5587   59.88 Heterosexual (straight)            Rarely
## 5588   84.37 Heterosexual (straight)  Most of the time
## 5589   54.43 Heterosexual (straight)            Rarely
## 5590   74.84 Heterosexual (straight)  Most of the time
## 5591  125.19 Heterosexual (straight)             Never
## 5592   60.33                Not sure  Most of the time
## 5593   52.16 Heterosexual (straight)            Always
## 5594   43.09 Heterosexual (straight)         Sometimes
## 5595  131.54 Heterosexual (straight)         Sometimes
## 5596   48.54 Heterosexual (straight)         Sometimes
## 5597   90.72 Heterosexual (straight)            Rarely
## 5598   70.76 Heterosexual (straight)             Never
## 5599   50.35 Heterosexual (straight)         Sometimes
## 5600   54.43 Heterosexual (straight)             Never
## 5601  111.13 Heterosexual (straight)            Rarely
## 5602      NA Heterosexual (straight)         Sometimes
## 5603   72.58                Not sure         Sometimes
## 5604   68.04 Heterosexual (straight)         Sometimes
## 5605   61.24 Heterosexual (straight)  Most of the time
## 5606   63.50 Heterosexual (straight)         Sometimes
## 5607   98.43 Heterosexual (straight)             Never
## 5608   75.75          Gay or lesbian         Sometimes
## 5609   56.70 Heterosexual (straight)         Sometimes
## 5610   53.98                Bisexual            Always
## 5611   49.90 Heterosexual (straight)         Sometimes
## 5612   68.04 Heterosexual (straight)              <NA>
## 5613   72.58 Heterosexual (straight)         Sometimes
## 5614      NA Heterosexual (straight)         Sometimes
## 5615   61.69                Not sure         Sometimes
## 5616   47.63 Heterosexual (straight)            Rarely
## 5617   63.50                Not sure            Rarely
## 5618   57.61 Heterosexual (straight)         Sometimes
## 5619   69.40 Heterosexual (straight)  Most of the time
## 5620   61.24                Bisexual         Sometimes
## 5621   57.61                Not sure  Most of the time
## 5622   86.18 Heterosexual (straight)  Most of the time
## 5623   62.60 Heterosexual (straight)             Never
## 5624  104.33 Heterosexual (straight)  Most of the time
## 5625   70.31 Heterosexual (straight)            Always
## 5626      NA Heterosexual (straight)         Sometimes
## 5627   90.72 Heterosexual (straight)  Most of the time
## 5628   49.90 Heterosexual (straight)  Most of the time
## 5629   68.04                Bisexual            Rarely
## 5630   59.42                Not sure  Most of the time
## 5631      NA Heterosexual (straight)         Sometimes
## 5632   65.77 Heterosexual (straight)         Sometimes
## 5633   58.97 Heterosexual (straight)         Sometimes
## 5634   72.58          Gay or lesbian            Always
## 5635      NA          Gay or lesbian            Always
## 5636   44.91 Heterosexual (straight)         Sometimes
## 5637   54.43 Heterosexual (straight)            Rarely
## 5638   66.68          Gay or lesbian         Sometimes
## 5639   49.90 Heterosexual (straight)  Most of the time
## 5640   53.07                Not sure              <NA>
## 5641   54.43 Heterosexual (straight)            Rarely
## 5642   53.98 Heterosexual (straight)            Rarely
## 5643   47.63 Heterosexual (straight)             Never
## 5644   49.90 Heterosexual (straight)             Never
## 5645   52.16 Heterosexual (straight)         Sometimes
## 5646   49.90 Heterosexual (straight)            Rarely
## 5647   48.08 Heterosexual (straight)            Rarely
## 5648   86.18 Heterosexual (straight)         Sometimes
## 5649   57.61                Not sure  Most of the time
## 5650   57.15 Heterosexual (straight)         Sometimes
## 5651   59.88                Not sure         Sometimes
## 5652   65.77 Heterosexual (straight)            Rarely
## 5653   57.15                Bisexual  Most of the time
## 5654   61.24                Bisexual            Rarely
## 5655   72.58 Heterosexual (straight)         Sometimes
## 5656   56.70 Heterosexual (straight)             Never
## 5657   81.65 Heterosexual (straight)            Rarely
## 5658   54.43                Bisexual  Most of the time
## 5659  122.47 Heterosexual (straight)            Rarely
## 5660   52.16 Heterosexual (straight)            Rarely
## 5661   72.58 Heterosexual (straight)             Never
## 5662   49.90 Heterosexual (straight)            Rarely
## 5663   45.36 Heterosexual (straight)         Sometimes
## 5664   47.63 Heterosexual (straight)  Most of the time
## 5665   78.47 Heterosexual (straight)             Never
## 5666   67.13          Gay or lesbian         Sometimes
## 5667   54.43 Heterosexual (straight)             Never
## 5668   64.41 Heterosexual (straight)         Sometimes
## 5669   76.20 Heterosexual (straight)            Rarely
## 5670   97.07                Bisexual         Sometimes
## 5671   52.16 Heterosexual (straight)  Most of the time
## 5672   58.97 Heterosexual (straight)            Rarely
## 5673   64.86 Heterosexual (straight)  Most of the time
## 5674   63.50                Not sure  Most of the time
## 5675   52.16 Heterosexual (straight)         Sometimes
## 5676   45.36                Bisexual  Most of the time
## 5677   56.70 Heterosexual (straight)         Sometimes
## 5678   61.24 Heterosexual (straight)         Sometimes
## 5679   58.97 Heterosexual (straight)  Most of the time
## 5680   89.36 Heterosexual (straight)            Rarely
## 5681   70.31 Heterosexual (straight)             Never
## 5682   78.02 Heterosexual (straight)             Never
## 5683  134.72 Heterosexual (straight)            Rarely
## 5684      NA                Bisexual            Always
## 5685      NA Heterosexual (straight)             Never
## 5686      NA Heterosexual (straight)              <NA>
## 5687  106.14 Heterosexual (straight)  Most of the time
## 5688   47.63 Heterosexual (straight)            Rarely
## 5689   77.11 Heterosexual (straight)             Never
## 5690      NA Heterosexual (straight)            Rarely
## 5691   48.08 Heterosexual (straight)  Most of the time
## 5692   83.46 Heterosexual (straight)            Rarely
## 5693   44.00 Heterosexual (straight)            Always
## 5694   77.57 Heterosexual (straight)  Most of the time
## 5695   77.11 Heterosexual (straight)         Sometimes
## 5696   63.50 Heterosexual (straight)  Most of the time
## 5697   83.92 Heterosexual (straight)         Sometimes
## 5698   77.11 Heterosexual (straight)  Most of the time
## 5699   56.70                Bisexual         Sometimes
## 5700   58.97 Heterosexual (straight)             Never
## 5701   74.84 Heterosexual (straight)  Most of the time
## 5702   68.04 Heterosexual (straight)             Never
## 5703   65.77 Heterosexual (straight)  Most of the time
## 5704  140.62 Heterosexual (straight)            Rarely
## 5705   54.43 Heterosexual (straight)         Sometimes
## 5706   62.60 Heterosexual (straight)             Never
## 5707   86.18 Heterosexual (straight)         Sometimes
## 5708  115.67 Heterosexual (straight)         Sometimes
## 5709   75.75                Bisexual            Always
## 5710   49.90 Heterosexual (straight)            Always
## 5711   63.50 Heterosexual (straight)         Sometimes
## 5712   70.31 Heterosexual (straight)             Never
## 5713  167.38 Heterosexual (straight)         Sometimes
## 5714   63.50 Heterosexual (straight)            Always
## 5715   83.92 Heterosexual (straight)            Rarely
## 5716   77.11 Heterosexual (straight)            Rarely
## 5717   40.82 Heterosexual (straight)             Never
## 5718  106.60 Heterosexual (straight)         Sometimes
## 5719   54.43 Heterosexual (straight)             Never
## 5720      NA                Bisexual  Most of the time
## 5721   80.74                Bisexual         Sometimes
## 5722   62.14                Not sure            Always
## 5723   81.65          Some other way         Sometimes
## 5724   95.26 Heterosexual (straight)            Always
## 5725   99.79 Heterosexual (straight)         Sometimes
## 5726   54.89 Heterosexual (straight)         Sometimes
## 5727   64.41 Heterosexual (straight)         Sometimes
## 5728   66.68 Heterosexual (straight)            Rarely
## 5729   81.19 Heterosexual (straight)            Rarely
## 5730   56.70 Heterosexual (straight)            Rarely
## 5731   59.88 Heterosexual (straight)         Sometimes
## 5732   61.24 Heterosexual (straight)  Most of the time
## 5733   58.97 Heterosexual (straight)         Sometimes
## 5734   66.68 Heterosexual (straight)         Sometimes
## 5735   88.45 Heterosexual (straight)            Always
## 5736   65.77                Bisexual            Always
## 5737      NA Heterosexual (straight)            Always
## 5738      NA          Some other way  Most of the time
## 5739  117.94 Heterosexual (straight)         Sometimes
## 5740   65.77 Heterosexual (straight)             Never
## 5741   58.97 Heterosexual (straight)            Rarely
## 5742   61.24 Heterosexual (straight)  Most of the time
## 5743      NA Heterosexual (straight)            Always
## 5744   54.43 Heterosexual (straight)  Most of the time
## 5745   99.79 Heterosexual (straight)            Always
## 5746   91.63 Heterosexual (straight)         Sometimes
## 5747      NA Heterosexual (straight)         Sometimes
## 5748   58.97 Heterosexual (straight)         Sometimes
## 5749  122.47 Heterosexual (straight)  Most of the time
## 5750  112.95 Heterosexual (straight)            Rarely
## 5751   70.31 Heterosexual (straight)         Sometimes
## 5752   58.97 Heterosexual (straight)  Most of the time
## 5753   63.50          Some other way            Always
## 5754   77.11          Some other way         Sometimes
## 5755   65.77 Heterosexual (straight)         Sometimes
## 5756   54.89 Heterosexual (straight)         Sometimes
## 5757   90.72 Heterosexual (straight)            Rarely
## 5758      NA Heterosexual (straight)         Sometimes
## 5759   53.07 Heterosexual (straight)             Never
## 5760  111.13 Heterosexual (straight)             Never
## 5761   54.43                Not sure  Most of the time
## 5762   88.45 Heterosexual (straight)             Never
## 5763   79.38 Heterosexual (straight)            Always
## 5764   99.79 Heterosexual (straight)         Sometimes
## 5765   84.82 Heterosexual (straight)  Most of the time
## 5766   66.68 Heterosexual (straight)            Rarely
## 5767  117.94 Heterosexual (straight)         Sometimes
## 5768   58.97 Heterosexual (straight)             Never
## 5769   54.43 Heterosexual (straight)  Most of the time
## 5770   74.84                Bisexual            Rarely
## 5771   53.52 Heterosexual (straight)            Rarely
## 5772   59.88                Bisexual         Sometimes
## 5773   58.51 Heterosexual (straight)         Sometimes
## 5774   67.13 Heterosexual (straight)            Rarely
## 5775   53.07                Bisexual         Sometimes
## 5776   63.50 Heterosexual (straight)             Never
## 5777   54.43 Heterosexual (straight)  Most of the time
## 5778   82.10                Not sure            Rarely
## 5779   81.65                Bisexual              <NA>
## 5780   45.36          Some other way  Most of the time
## 5781   58.97 Heterosexual (straight)  Most of the time
## 5782   70.31 Heterosexual (straight)            Rarely
## 5783   68.04 Heterosexual (straight)            Rarely
## 5784   47.63 Heterosexual (straight)  Most of the time
## 5785   44.00 Heterosexual (straight)            Rarely
## 5786      NA          Some other way  Most of the time
## 5787  104.33                Bisexual  Most of the time
## 5788  110.22 Heterosexual (straight)         Sometimes
## 5789   72.58 Heterosexual (straight)             Never
## 5790  117.94 Heterosexual (straight)            Rarely
## 5791   83.92 Heterosexual (straight)             Never
## 5792  129.28 Heterosexual (straight)         Sometimes
## 5793   68.04 Heterosexual (straight)            Rarely
## 5794  104.33 Heterosexual (straight)         Sometimes
## 5795   72.58 Heterosexual (straight)            Rarely
## 5796   63.50 Heterosexual (straight)            Rarely
## 5797   58.06                Not sure         Sometimes
## 5798  109.77 Heterosexual (straight)         Sometimes
## 5799   57.61                Not sure  Most of the time
## 5800   54.43 Heterosexual (straight)             Never
## 5801   67.59 Heterosexual (straight)         Sometimes
## 5802   73.94 Heterosexual (straight)  Most of the time
## 5803   49.90          Gay or lesbian         Sometimes
## 5804   53.52                Bisexual            Rarely
## 5805      NA                Bisexual         Sometimes
## 5806   83.92                Bisexual              <NA>
## 5807   81.65 Heterosexual (straight)             Never
## 5808   68.04                Not sure         Sometimes
## 5809      NA Heterosexual (straight)            Rarely
## 5810   46.27 Heterosexual (straight)         Sometimes
## 5811   56.70 Heterosexual (straight)            Rarely
## 5812   54.43 Heterosexual (straight)             Never
## 5813   61.24 Heterosexual (straight)         Sometimes
## 5814      NA Heterosexual (straight)              <NA>
## 5815   77.11          Some other way              <NA>
## 5816   79.38 Heterosexual (straight)             Never
## 5817   58.06 Heterosexual (straight)              <NA>
## 5818   85.73 Heterosexual (straight)         Sometimes
## 5819   82.56 Heterosexual (straight)              <NA>
## 5820   65.77 Heterosexual (straight)              <NA>
## 5821   58.97 Heterosexual (straight)             Never
## 5822   65.77 Heterosexual (straight)              <NA>
## 5823   54.89 Heterosexual (straight)         Sometimes
## 5824   58.97 Heterosexual (straight)  Most of the time
## 5825   90.72 Heterosexual (straight)  Most of the time
## 5826   51.26 Heterosexual (straight)              <NA>
## 5827   63.50 Heterosexual (straight)             Never
## 5828   71.22 Heterosexual (straight)            Rarely
## 5829   79.38                Bisexual              <NA>
## 5830   58.51                Bisexual             Never
## 5831   96.62 Heterosexual (straight)            Rarely
## 5832      NA Heterosexual (straight)            Rarely
## 5833   77.11 Heterosexual (straight)              <NA>
## 5834      NA                Bisexual         Sometimes
## 5835   88.45 Heterosexual (straight)         Sometimes
## 5836   63.50                Not sure         Sometimes
## 5837   95.26                Not sure         Sometimes
## 5838      NA Heterosexual (straight)              <NA>
## 5839   58.97 Heterosexual (straight)              <NA>
## 5840   59.42                Not sure         Sometimes
## 5841   65.77 Heterosexual (straight)             Never
## 5842   56.70                Not sure  Most of the time
## 5843   79.38 Heterosexual (straight)             Never
## 5844   58.97 Heterosexual (straight)            Rarely
## 5845   63.50 Heterosexual (straight)            Rarely
## 5846   77.11 Heterosexual (straight)            Rarely
## 5847   70.31 Heterosexual (straight)              <NA>
## 5848   86.18 Heterosexual (straight)            Always
## 5849   62.60 Heterosexual (straight)  Most of the time
## 5850   54.43 Heterosexual (straight)  Most of the time
## 5851   54.43 Heterosexual (straight)  Most of the time
## 5852   76.20 Heterosexual (straight)         Sometimes
## 5853   58.97          Some other way              <NA>
## 5854   79.38 Heterosexual (straight)              <NA>
## 5855   56.70 Heterosexual (straight)              <NA>
## 5856   48.08 Heterosexual (straight)  Most of the time
## 5857   81.65 Heterosexual (straight)              <NA>
## 5858   81.65                Not sure  Most of the time
## 5859  104.33 Heterosexual (straight)            Rarely
## 5860   61.24 Heterosexual (straight)  Most of the time
## 5861   72.58                Not sure              <NA>
## 5862   45.36 Heterosexual (straight)         Sometimes
## 5863   81.65 Heterosexual (straight)             Never
## 5864   83.92 Heterosexual (straight)  Most of the time
## 5865   59.88                Bisexual            Always
## 5866   65.77 Heterosexual (straight)             Never
## 5867      NA Heterosexual (straight)              <NA>
## 5868   49.90          Some other way         Sometimes
## 5869   73.48 Heterosexual (straight)         Sometimes
## 5870   74.84 Heterosexual (straight)            Rarely
## 5871   63.50 Heterosexual (straight)  Most of the time
## 5872   58.97 Heterosexual (straight)         Sometimes
## 5873  113.40 Heterosexual (straight)             Never
## 5874   63.50                Not sure         Sometimes
## 5875   72.58 Heterosexual (straight)  Most of the time
## 5876   61.24 Heterosexual (straight)  Most of the time
## 5877   54.43 Heterosexual (straight)            Rarely
## 5878   54.43 Heterosexual (straight)         Sometimes
## 5879      NA                Bisexual  Most of the time
## 5880   74.84 Heterosexual (straight)  Most of the time
## 5881   57.61 Heterosexual (straight)         Sometimes
## 5882   98.88 Heterosexual (straight)            Rarely
## 5883      NA Heterosexual (straight)         Sometimes
## 5884  115.67 Heterosexual (straight)         Sometimes
## 5885   77.11 Heterosexual (straight)             Never
## 5886      NA          Some other way            Always
## 5887   44.45          Some other way  Most of the time
## 5888   63.50 Heterosexual (straight)  Most of the time
## 5889   56.25 Heterosexual (straight)            Always
## 5890   72.12 Heterosexual (straight)  Most of the time
## 5891      NA Heterosexual (straight)  Most of the time
## 5892   71.22          Some other way            Always
## 5893  104.33          Some other way            Always
## 5894   58.97          Some other way         Sometimes
## 5895   99.79                Not sure  Most of the time
## 5896   52.16 Heterosexual (straight)         Sometimes
## 5897  138.80 Heterosexual (straight)            Always
## 5898   52.16 Heterosexual (straight)  Most of the time
## 5899      NA Heterosexual (straight)             Never
## 5900   61.24          Gay or lesbian         Sometimes
## 5901   56.70 Heterosexual (straight)         Sometimes
## 5902   77.11 Heterosexual (straight)         Sometimes
## 5903   60.78 Heterosexual (straight)         Sometimes
## 5904   76.20 Heterosexual (straight)         Sometimes
## 5905   64.86 Heterosexual (straight)  Most of the time
## 5906   63.50 Heterosexual (straight)             Never
## 5907   65.32                Not sure  Most of the time
## 5908   61.24 Heterosexual (straight)            Rarely
## 5909   58.97 Heterosexual (straight)         Sometimes
## 5910   74.84 Heterosexual (straight)            Rarely
## 5911   58.97                Bisexual         Sometimes
## 5912   58.97 Heterosexual (straight)            Always
## 5913   48.08 Heterosexual (straight)         Sometimes
## 5914   61.24                Bisexual  Most of the time
## 5915      NA Heterosexual (straight)            Always
## 5916   58.97 Heterosexual (straight)  Most of the time
## 5917   79.38                Bisexual         Sometimes
## 5918   44.45          Gay or lesbian            Always
## 5919   62.60 Heterosexual (straight)            Rarely
## 5920  104.33 Heterosexual (straight)             Never
## 5921   67.59 Heterosexual (straight)         Sometimes
## 5922   62.60 Heterosexual (straight)            Always
## 5923      NA Heterosexual (straight)             Never
## 5924   68.04                Bisexual  Most of the time
## 5925   58.97                Bisexual  Most of the time
## 5926   81.65 Heterosexual (straight)         Sometimes
## 5927   61.24 Heterosexual (straight)  Most of the time
## 5928   72.58 Heterosexual (straight)         Sometimes
## 5929  154.68 Heterosexual (straight)  Most of the time
## 5930   99.79 Heterosexual (straight)         Sometimes
## 5931  100.70                Not sure         Sometimes
## 5932   57.15 Heterosexual (straight)  Most of the time
## 5933   92.99                Not sure         Sometimes
## 5934   81.65 Heterosexual (straight)            Rarely
## 5935   95.26                Bisexual            Always
## 5936   65.77 Heterosexual (straight)  Most of the time
## 5937   86.18 Heterosexual (straight)  Most of the time
## 5938   63.50 Heterosexual (straight)            Always
## 5939  104.33 Heterosexual (straight)  Most of the time
## 5940   81.65 Heterosexual (straight)            Always
## 5941   97.98                Bisexual         Sometimes
## 5942  101.61                Not sure             Never
## 5943   90.72          Some other way  Most of the time
## 5944   63.96 Heterosexual (straight)  Most of the time
## 5945   63.50                Not sure            Always
## 5946   38.56 Heterosexual (straight)            Rarely
## 5947   77.11                Bisexual         Sometimes
## 5948   69.40 Heterosexual (straight)            Rarely
## 5949   64.86 Heterosexual (straight)            Rarely
## 5950   86.18 Heterosexual (straight)            Rarely
## 5951   81.65 Heterosexual (straight)  Most of the time
## 5952   71.22 Heterosexual (straight)  Most of the time
## 5953   61.24 Heterosexual (straight)             Never
## 5954   74.84 Heterosexual (straight)         Sometimes
## 5955   90.72 Heterosexual (straight)            Rarely
## 5956   49.90 Heterosexual (straight)            Rarely
## 5957   61.24 Heterosexual (straight)  Most of the time
## 5958   55.79                Bisexual            Rarely
## 5959   55.79                Not sure  Most of the time
## 5960   72.58 Heterosexual (straight)  Most of the time
## 5961   97.98 Heterosexual (straight)         Sometimes
## 5962   49.90                Bisexual         Sometimes
## 5963   54.43 Heterosexual (straight)  Most of the time
## 5964   68.04          Some other way  Most of the time
## 5965   95.26 Heterosexual (straight)            Rarely
## 5966   63.50                Bisexual            Always
## 5967   73.03 Heterosexual (straight)            Rarely
## 5968   72.58 Heterosexual (straight)         Sometimes
## 5969   76.66                Bisexual  Most of the time
## 5970   65.77                Bisexual            Rarely
## 5971   63.50 Heterosexual (straight)  Most of the time
## 5972      NA Heterosexual (straight)         Sometimes
## 5973   47.63                Not sure         Sometimes
## 5974      NA          Gay or lesbian            Rarely
## 5975   68.95 Heterosexual (straight)            Rarely
## 5976      NA Heterosexual (straight)            Rarely
## 5977   53.07 Heterosexual (straight)            Rarely
## 5978   63.50                Bisexual         Sometimes
## 5979   70.76 Heterosexual (straight)  Most of the time
## 5980  128.37 Heterosexual (straight)         Sometimes
## 5981   81.65          Gay or lesbian  Most of the time
## 5982   86.18 Heterosexual (straight)            Always
## 5983   58.97 Heterosexual (straight)  Most of the time
## 5984   81.19 Heterosexual (straight)             Never
## 5985   58.97 Heterosexual (straight)         Sometimes
## 5986   47.17 Heterosexual (straight)  Most of the time
## 5987   58.06                Bisexual  Most of the time
## 5988   56.70                Not sure         Sometimes
## 5989   65.77 Heterosexual (straight)         Sometimes
## 5990   45.36 Heterosexual (straight)         Sometimes
## 5991   97.52 Heterosexual (straight)            Rarely
## 5992   86.18 Heterosexual (straight)         Sometimes
## 5993   49.44                Bisexual            Always
## 5994      NA                Bisexual         Sometimes
## 5995   72.58 Heterosexual (straight)             Never
## 5996   97.52 Heterosexual (straight)  Most of the time
## 5997   55.79 Heterosexual (straight)  Most of the time
## 5998   83.92 Heterosexual (straight)             Never
## 5999   58.97 Heterosexual (straight)         Sometimes
## 6000   79.38 Heterosexual (straight)             Never
## 6001   72.58 Heterosexual (straight)              <NA>
## 6002   59.88                Bisexual         Sometimes
## 6003   56.70                Bisexual            Always
## 6004   74.39 Heterosexual (straight)             Never
## 6005   60.78 Heterosexual (straight)            Rarely
## 6006   58.97                Bisexual         Sometimes
## 6007   63.50 Heterosexual (straight)            Rarely
## 6008   46.27 Heterosexual (straight)         Sometimes
## 6009   86.18 Heterosexual (straight)            Rarely
## 6010   45.36 Heterosexual (straight)            Rarely
## 6011   68.04          Some other way  Most of the time
## 6012   77.11 Heterosexual (straight)            Rarely
## 6013   56.70 Heterosexual (straight)            Always
## 6014   54.89 Heterosexual (straight)            Rarely
## 6015   76.20 Heterosexual (straight)            Rarely
## 6016  127.01 Heterosexual (straight)         Sometimes
## 6017      NA Heterosexual (straight)  Most of the time
## 6018  100.70          Some other way            Always
## 6019   86.18 Heterosexual (straight)             Never
## 6020   67.59 Heterosexual (straight)            Always
## 6021   92.99 Heterosexual (straight)             Never
## 6022   99.79 Heterosexual (straight)             Never
## 6023   92.99 Heterosexual (straight)            Rarely
## 6024   63.05          Some other way             Never
## 6025   54.43                Bisexual         Sometimes
## 6026      NA Heterosexual (straight)              <NA>
## 6027   68.04                Bisexual             Never
## 6028   69.85 Heterosexual (straight)            Rarely
## 6029   58.97 Heterosexual (straight)            Always
## 6030   88.91 Heterosexual (straight)             Never
## 6031   99.34 Heterosexual (straight)         Sometimes
## 6032   86.18 Heterosexual (straight)             Never
## 6033   80.29 Heterosexual (straight)         Sometimes
## 6034   52.16          Gay or lesbian  Most of the time
## 6035   49.90 Heterosexual (straight)  Most of the time
## 6036   61.24 Heterosexual (straight)            Rarely
## 6037  102.51 Heterosexual (straight)         Sometimes
## 6038   90.72 Heterosexual (straight)            Always
## 6039   54.43                Bisexual         Sometimes
## 6040   51.71 Heterosexual (straight)            Rarely
## 6041   88.91 Heterosexual (straight)         Sometimes
## 6042   86.18 Heterosexual (straight)            Rarely
## 6043  112.49 Heterosexual (straight)            Rarely
## 6044   99.79 Heterosexual (straight)            Rarely
## 6045   70.76                Bisexual  Most of the time
## 6046   60.33 Heterosexual (straight)            Rarely
## 6047   68.04 Heterosexual (straight)             Never
## 6048   56.70                Bisexual         Sometimes
## 6049   84.82 Heterosexual (straight)            Rarely
## 6050   49.90 Heterosexual (straight)         Sometimes
## 6051   58.97 Heterosexual (straight)         Sometimes
## 6052   58.97 Heterosexual (straight)              <NA>
## 6053   58.97 Heterosexual (straight)            Always
## 6054  104.33                Bisexual  Most of the time
## 6055   57.61                Bisexual  Most of the time
## 6056      NA Heterosexual (straight)             Never
## 6057   63.50          Gay or lesbian  Most of the time
## 6058   69.40 Heterosexual (straight)            Rarely
## 6059  161.48 Heterosexual (straight)            Rarely
## 6060   91.17                Bisexual  Most of the time
## 6061   59.88 Heterosexual (straight)         Sometimes
## 6062   90.72 Heterosexual (straight)            Rarely
## 6063   68.04 Heterosexual (straight)             Never
## 6064   69.40 Heterosexual (straight)  Most of the time
## 6065  102.51 Heterosexual (straight)  Most of the time
## 6066   43.09 Heterosexual (straight)            Rarely
## 6067   52.16 Heterosexual (straight)         Sometimes
## 6068   60.33                Not sure  Most of the time
## 6069      NA Heterosexual (straight)            Rarely
## 6070   54.43 Heterosexual (straight)             Never
## 6071      NA Heterosexual (straight)             Never
## 6072   54.89 Heterosexual (straight)         Sometimes
## 6073   54.43 Heterosexual (straight)            Rarely
## 6074   58.97 Heterosexual (straight)  Most of the time
## 6075   95.26 Heterosexual (straight)            Rarely
## 6076   51.26 Heterosexual (straight)  Most of the time
## 6077   80.74 Heterosexual (straight)             Never
## 6078   57.15 Heterosexual (straight)             Never
## 6079   58.97 Heterosexual (straight)             Never
## 6080   74.84 Heterosexual (straight)  Most of the time
## 6081   49.90 Heterosexual (straight)         Sometimes
## 6082   60.33          Gay or lesbian  Most of the time
## 6083   49.90 Heterosexual (straight)            Rarely
## 6084      NA                Not sure  Most of the time
## 6085  124.74 Heterosexual (straight)            Rarely
## 6086  106.60 Heterosexual (straight)              <NA>
## 6087   72.58 Heterosexual (straight)              <NA>
## 6088   68.04 Heterosexual (straight)            Rarely
## 6089   62.60 Heterosexual (straight)         Sometimes
## 6090   76.66 Heterosexual (straight)             Never
## 6091      NA                Bisexual  Most of the time
## 6092   63.50                Not sure            Always
## 6093   81.65 Heterosexual (straight)            Rarely
## 6094   49.90                Not sure            Always
## 6095   61.24 Heterosexual (straight)            Always
## 6096   79.83                Bisexual  Most of the time
## 6097   87.54 Heterosexual (straight)             Never
## 6098  116.12 Heterosexual (straight)            Always
## 6099   49.44                Bisexual             Never
## 6100   49.90 Heterosexual (straight)         Sometimes
## 6101      NA Heterosexual (straight)             Never
## 6102   54.43                Bisexual            Always
## 6103      NA                Not sure  Most of the time
## 6104   97.07 Heterosexual (straight)         Sometimes
## 6105   81.65 Heterosexual (straight)            Rarely
## 6106   54.43                Bisexual              <NA>
## 6107   62.60 Heterosexual (straight)  Most of the time
## 6108   68.95 Heterosexual (straight)         Sometimes
## 6109   49.44 Heterosexual (straight)         Sometimes
## 6110   60.33                Bisexual         Sometimes
## 6111   72.58                Not sure            Always
## 6112   68.95 Heterosexual (straight)              <NA>
## 6113   68.04 Heterosexual (straight)         Sometimes
## 6114   45.81 Heterosexual (straight)         Sometimes
## 6115   93.44          Gay or lesbian         Sometimes
## 6116   57.15 Heterosexual (straight)             Never
## 6117   61.24                Bisexual            Rarely
## 6118   68.04 Heterosexual (straight)             Never
## 6119   70.31 Heterosexual (straight)            Rarely
## 6120   77.11 Heterosexual (straight)             Never
## 6121      NA                Bisexual  Most of the time
## 6122   58.97 Heterosexual (straight)            Rarely
## 6123   59.88                Bisexual            Always
## 6124   76.20 Heterosexual (straight)              <NA>
## 6125   83.92 Heterosexual (straight)             Never
## 6126   56.70 Heterosexual (straight)              <NA>
## 6127   61.24 Heterosexual (straight)             Never
## 6128  111.13 Heterosexual (straight)             Never
## 6129   97.52 Heterosexual (straight)             Never
## 6130   63.50 Heterosexual (straight)  Most of the time
## 6131  102.06 Heterosexual (straight)            Rarely
## 6132   90.72 Heterosexual (straight)         Sometimes
## 6133      NA                Bisexual             Never
## 6134   52.16 Heterosexual (straight)            Rarely
## 6135   45.36 Heterosexual (straight)            Always
## 6136   58.97 Heterosexual (straight)             Never
## 6137      NA          Gay or lesbian             Never
## 6138   53.52 Heterosexual (straight)  Most of the time
## 6139   68.04 Heterosexual (straight)              <NA>
## 6140   61.24 Heterosexual (straight)         Sometimes
## 6141      NA Heterosexual (straight)             Never
## 6142   54.43 Heterosexual (straight)            Rarely
## 6143   80.74 Heterosexual (straight)             Never
## 6144   68.04 Heterosexual (straight)            Always
## 6145      NA Heterosexual (straight)             Never
## 6146   90.72 Heterosexual (straight)              <NA>
## 6147   71.67 Heterosexual (straight)            Rarely
## 6148   48.99 Heterosexual (straight)  Most of the time
## 6149   61.24 Heterosexual (straight)  Most of the time
## 6150   68.04 Heterosexual (straight)         Sometimes
## 6151   52.16 Heterosexual (straight)         Sometimes
## 6152   76.66 Heterosexual (straight)            Always
## 6153   68.04 Heterosexual (straight)             Never
## 6154   72.58 Heterosexual (straight)         Sometimes
## 6155   86.18 Heterosexual (straight)  Most of the time
## 6156  107.05 Heterosexual (straight)         Sometimes
## 6157   58.06                Not sure            Always
## 6158   62.14                Bisexual         Sometimes
## 6159      NA                Bisexual  Most of the time
## 6160      NA Heterosexual (straight)         Sometimes
## 6161   50.80                Bisexual         Sometimes
## 6162   84.37 Heterosexual (straight)             Never
## 6163   54.43 Heterosexual (straight)              <NA>
## 6164   81.65 Heterosexual (straight)         Sometimes
## 6165      NA Heterosexual (straight)         Sometimes
## 6166   82.56 Heterosexual (straight)             Never
## 6167   58.97 Heterosexual (straight)         Sometimes
## 6168   74.84 Heterosexual (straight)            Rarely
## 6169   86.18 Heterosexual (straight)             Never
## 6170   82.10 Heterosexual (straight)         Sometimes
## 6171   55.34                Not sure         Sometimes
## 6172  156.49 Heterosexual (straight)         Sometimes
## 6173   58.06                Bisexual            Always
## 6174   97.52 Heterosexual (straight)              <NA>
## 6175  107.50 Heterosexual (straight)            Rarely
## 6176   68.04 Heterosexual (straight)         Sometimes
## 6177   54.43          Some other way  Most of the time
## 6178   53.98 Heterosexual (straight)            Always
## 6179   84.82 Heterosexual (straight)            Rarely
## 6180   53.52                Bisexual  Most of the time
## 6181   93.90 Heterosexual (straight)  Most of the time
## 6182   60.33                Bisexual         Sometimes
## 6183   44.91          Some other way            Always
## 6184   63.50 Heterosexual (straight)  Most of the time
## 6185   56.25 Heterosexual (straight)  Most of the time
## 6186   97.52 Heterosexual (straight)         Sometimes
## 6187   69.85 Heterosexual (straight)         Sometimes
## 6188   52.62 Heterosexual (straight)         Sometimes
## 6189   63.96 Heterosexual (straight)            Rarely
## 6190   40.82 Heterosexual (straight)         Sometimes
## 6191  113.40 Heterosexual (straight)            Rarely
## 6192      NA Heterosexual (straight)         Sometimes
## 6193   72.58 Heterosexual (straight)         Sometimes
## 6194   83.92 Heterosexual (straight)            Rarely
## 6195   66.68                Not sure  Most of the time
## 6196   72.58          Gay or lesbian              <NA>
## 6197   72.58                Bisexual            Always
## 6198   71.22 Heterosexual (straight)         Sometimes
## 6199   39.01 Heterosexual (straight)  Most of the time
## 6200  113.40 Heterosexual (straight)         Sometimes
## 6201   61.24 Heterosexual (straight)         Sometimes
## 6202   58.97 Heterosexual (straight)              <NA>
## 6203  127.01 Heterosexual (straight)         Sometimes
## 6204   63.50 Heterosexual (straight)         Sometimes
## 6205   92.99 Heterosexual (straight)             Never
## 6206  111.13 Heterosexual (straight)             Never
## 6207   72.58 Heterosexual (straight)  Most of the time
## 6208   56.70 Heterosexual (straight)         Sometimes
## 6209   71.22 Heterosexual (straight)            Rarely
## 6210  113.40 Heterosexual (straight)            Rarely
## 6211   54.43 Heterosexual (straight)  Most of the time
## 6212      NA                Bisexual            Always
## 6213   74.84 Heterosexual (straight)            Rarely
## 6214   54.43 Heterosexual (straight)  Most of the time
## 6215   92.99                Bisexual  Most of the time
## 6216  113.40 Heterosexual (straight)              <NA>
## 6217   68.04                Bisexual  Most of the time
## 6218   61.24 Heterosexual (straight)             Never
## 6219      NA                Not sure              <NA>
## 6220   81.19 Heterosexual (straight)            Rarely
## 6221   94.80 Heterosexual (straight)              <NA>
## 6222      NA Heterosexual (straight)            Always
## 6223   73.48 Heterosexual (straight)  Most of the time
## 6224   63.50 Heterosexual (straight)            Rarely
## 6225  104.78 Heterosexual (straight)  Most of the time
## 6226   57.15 Heterosexual (straight)              <NA>
## 6227   94.35          Gay or lesbian  Most of the time
## 6228   58.97 Heterosexual (straight)             Never
## 6229   72.58 Heterosexual (straight)         Sometimes
## 6230  104.33 Heterosexual (straight)             Never
## 6231   58.97 Heterosexual (straight)            Rarely
## 6232  121.11 Heterosexual (straight)         Sometimes
## 6233   72.58                Bisexual         Sometimes
## 6234   83.92 Heterosexual (straight)              <NA>
## 6235   95.26 Heterosexual (straight)              <NA>
## 6236   56.25 Heterosexual (straight)              <NA>
## 6237   58.97 Heterosexual (straight)         Sometimes
## 6238   58.97 Heterosexual (straight)         Sometimes
## 6239   74.84 Heterosexual (straight)              <NA>
## 6240   68.95 Heterosexual (straight)            Rarely
## 6241      NA Heterosexual (straight)             Never
## 6242   88.45 Heterosexual (straight)         Sometimes
## 6243   49.90 Heterosexual (straight)              <NA>
## 6244  113.40                Bisexual            Always
## 6245   95.26 Heterosexual (straight)             Never
## 6246   58.97 Heterosexual (straight)            Rarely
## 6247   97.07 Heterosexual (straight)             Never
## 6248   68.04 Heterosexual (straight)             Never
## 6249      NA Heterosexual (straight)             Never
## 6250   68.04 Heterosexual (straight)            Rarely
## 6251   50.80 Heterosexual (straight)             Never
## 6252   79.38 Heterosexual (straight)            Rarely
## 6253      NA Heterosexual (straight)         Sometimes
## 6254      NA Heterosexual (straight)              <NA>
## 6255   61.24 Heterosexual (straight)             Never
## 6256   81.65 Heterosexual (straight)            Rarely
## 6257      NA Heterosexual (straight)            Always
## 6258   49.90 Heterosexual (straight)  Most of the time
## 6259   61.24 Heterosexual (straight)             Never
## 6260      NA Heterosexual (straight)         Sometimes
## 6261   52.16 Heterosexual (straight)         Sometimes
## 6262   59.88 Heterosexual (straight)              <NA>
## 6263   55.79 Heterosexual (straight)         Sometimes
## 6264      NA Heterosexual (straight)             Never
## 6265      NA                Bisexual            Always
## 6266   53.52 Heterosexual (straight)  Most of the time
## 6267   56.70 Heterosexual (straight)              <NA>
## 6268   77.11 Heterosexual (straight)  Most of the time
## 6269   54.43 Heterosexual (straight)         Sometimes
## 6270   95.26 Heterosexual (straight)            Rarely
## 6271   45.36                Not sure         Sometimes
## 6272   54.43 Heterosexual (straight)             Never
## 6273      NA Heterosexual (straight)  Most of the time
## 6274      NA Heterosexual (straight)             Never
## 6275      NA Heterosexual (straight)         Sometimes
## 6276   66.68 Heterosexual (straight)            Always
## 6277      NA Heterosexual (straight)         Sometimes
## 6278   58.97          Some other way         Sometimes
## 6279   68.04 Heterosexual (straight)         Sometimes
## 6280   69.85 Heterosexual (straight)            Rarely
## 6281   99.79 Heterosexual (straight)            Rarely
## 6282   54.43 Heterosexual (straight)              <NA>
## 6283   70.31          Gay or lesbian              <NA>
## 6284  113.40 Heterosexual (straight)              <NA>
## 6285   77.11 Heterosexual (straight)         Sometimes
## 6286   58.97          Gay or lesbian             Never
## 6287   88.45 Heterosexual (straight)         Sometimes
## 6288   88.45 Heterosexual (straight)             Never
## 6289   72.58 Heterosexual (straight)             Never
## 6290   77.11 Heterosexual (straight)            Rarely
## 6291   61.24 Heterosexual (straight)            Rarely
## 6292   81.65                Bisexual         Sometimes
## 6293   98.43 Heterosexual (straight)         Sometimes
## 6294      NA Heterosexual (straight)            Rarely
## 6295   68.04                Not sure         Sometimes
## 6296   64.41 Heterosexual (straight)              <NA>
## 6297   90.72 Heterosexual (straight)             Never
## 6298   86.18 Heterosexual (straight)             Never
## 6299   71.67 Heterosexual (straight)  Most of the time
## 6300      NA Heterosexual (straight)             Never
## 6301   49.90 Heterosexual (straight)             Never
## 6302   58.97 Heterosexual (straight)         Sometimes
## 6303      NA Heterosexual (straight)             Never
## 6304      NA Heterosexual (straight)             Never
## 6305   50.80 Heterosexual (straight)            Rarely
## 6306   65.77 Heterosexual (straight)         Sometimes
## 6307   81.19                Bisexual         Sometimes
## 6308   54.43 Heterosexual (straight)         Sometimes
## 6309   81.65                Bisexual  Most of the time
## 6310  117.94 Heterosexual (straight)  Most of the time
## 6311   52.16 Heterosexual (straight)  Most of the time
## 6312   88.45 Heterosexual (straight)            Rarely
## 6313   69.40          Gay or lesbian         Sometimes
## 6314   53.52                Bisexual         Sometimes
## 6315   53.98 Heterosexual (straight)            Rarely
## 6316      NA Heterosexual (straight)  Most of the time
## 6317   90.72 Heterosexual (straight)            Always
## 6318      NA Heterosexual (straight)             Never
## 6319      NA                Bisexual  Most of the time
## 6320   58.97 Heterosexual (straight)            Rarely
## 6321   46.27 Heterosexual (straight)             Never
## 6322   53.52 Heterosexual (straight)         Sometimes
## 6323   85.28 Heterosexual (straight)            Always
## 6324   54.43                Bisexual             Never
## 6325  111.59 Heterosexual (straight)            Rarely
## 6326   83.92                Not sure         Sometimes
## 6327   63.50 Heterosexual (straight)         Sometimes
## 6328   63.50 Heterosexual (straight)         Sometimes
## 6329   95.26 Heterosexual (straight)         Sometimes
## 6330   52.16 Heterosexual (straight)            Always
## 6331  106.60 Heterosexual (straight)  Most of the time
## 6332   53.52 Heterosexual (straight)         Sometimes
## 6333      NA          Gay or lesbian  Most of the time
## 6334   66.23 Heterosexual (straight)            Rarely
## 6335   88.45 Heterosexual (straight)             Never
## 6336   68.04 Heterosexual (straight)             Never
## 6337      NA                Bisexual         Sometimes
## 6338   88.45 Heterosexual (straight)            Always
## 6339   61.24 Heterosexual (straight)             Never
## 6340   65.77 Heterosexual (straight)         Sometimes
## 6341      NA Heterosexual (straight)  Most of the time
## 6342   88.45 Heterosexual (straight)             Never
## 6343   86.18          Gay or lesbian            Always
## 6344      NA                Not sure         Sometimes
## 6345   92.99                Not sure  Most of the time
## 6346   67.13          Some other way            Always
## 6347   50.80 Heterosexual (straight)             Never
## 6348   49.90 Heterosexual (straight)            Always
## 6349   45.36 Heterosexual (straight)         Sometimes
## 6350   63.96 Heterosexual (straight)            Rarely
## 6351   54.43 Heterosexual (straight)         Sometimes
## 6352   54.43 Heterosexual (straight)             Never
## 6353   38.56                Bisexual         Sometimes
## 6354   61.24 Heterosexual (straight)  Most of the time
## 6355   52.62 Heterosexual (straight)  Most of the time
## 6356   81.65 Heterosexual (straight)            Always
## 6357   61.69 Heterosexual (straight)  Most of the time
## 6358   69.40 Heterosexual (straight)  Most of the time
## 6359  158.76 Heterosexual (straight)         Sometimes
## 6360   53.07 Heterosexual (straight)            Rarely
## 6361   49.90 Heterosexual (straight)         Sometimes
## 6362   61.24                Bisexual            Rarely
## 6363   51.26 Heterosexual (straight)         Sometimes
## 6364   56.70                Bisexual             Never
## 6365   95.26                Bisexual  Most of the time
## 6366   70.31                Bisexual  Most of the time
## 6367      NA                Bisexual  Most of the time
## 6368   90.72 Heterosexual (straight)         Sometimes
## 6369   56.70 Heterosexual (straight)  Most of the time
## 6370   70.31 Heterosexual (straight)            Rarely
## 6371   45.81                Bisexual             Never
## 6372   99.79 Heterosexual (straight)            Rarely
## 6373   47.63 Heterosexual (straight)  Most of the time
## 6374   70.31 Heterosexual (straight)  Most of the time
## 6375   50.35                Bisexual            Rarely
## 6376   61.24 Heterosexual (straight)             Never
## 6377   72.58 Heterosexual (straight)            Rarely
## 6378   53.52          Gay or lesbian  Most of the time
## 6379  127.01 Heterosexual (straight)  Most of the time
## 6380   56.70 Heterosexual (straight)         Sometimes
## 6381  111.13 Heterosexual (straight)  Most of the time
## 6382   88.45                Bisexual         Sometimes
## 6383  104.33 Heterosexual (straight)             Never
## 6384   43.09 Heterosexual (straight)             Never
## 6385   49.90                Not sure  Most of the time
## 6386   53.52                Not sure            Rarely
## 6387   99.79 Heterosexual (straight)         Sometimes
## 6388   75.75 Heterosexual (straight)             Never
## 6389   79.83 Heterosexual (straight)         Sometimes
## 6390   74.84 Heterosexual (straight)             Never
## 6391   57.61                Not sure            Rarely
## 6392   58.51 Heterosexual (straight)              <NA>
## 6393   71.22 Heterosexual (straight)             Never
## 6394   64.41 Heterosexual (straight)  Most of the time
## 6395   50.80                Bisexual            Always
## 6396   54.43                Bisexual             Never
## 6397   49.90 Heterosexual (straight)  Most of the time
## 6398  113.40 Heterosexual (straight)            Rarely
## 6399   51.26          Some other way            Always
## 6400   60.78                Bisexual  Most of the time
## 6401   45.36          Some other way  Most of the time
## 6402   62.60 Heterosexual (straight)            Rarely
## 6403   58.97                Not sure  Most of the time
## 6404  136.08 Heterosexual (straight)             Never
## 6405   43.09 Heterosexual (straight)             Never
## 6406   57.15 Heterosexual (straight)  Most of the time
## 6407   72.58 Heterosexual (straight)            Rarely
## 6408   42.18                Bisexual            Always
## 6409   56.25 Heterosexual (straight)             Never
## 6410  104.33                Not sure            Rarely
## 6411   57.61 Heterosexual (straight)            Rarely
## 6412   71.67 Heterosexual (straight)         Sometimes
## 6413   50.80 Heterosexual (straight)            Always
## 6414   79.38 Heterosexual (straight)  Most of the time
## 6415   72.58 Heterosexual (straight)             Never
## 6416  118.84 Heterosexual (straight)              <NA>
## 6417   61.24                Not sure            Rarely
## 6418   65.77 Heterosexual (straight)         Sometimes
## 6419   92.99 Heterosexual (straight)            Rarely
## 6420   57.15 Heterosexual (straight)         Sometimes
## 6421      NA Heterosexual (straight)             Never
## 6422   99.79 Heterosexual (straight)            Always
## 6423   61.24 Heterosexual (straight)            Always
## 6424   74.84 Heterosexual (straight)  Most of the time
## 6425   65.77 Heterosexual (straight)            Rarely
## 6426      NA Heterosexual (straight)              <NA>
## 6427  108.86 Heterosexual (straight)         Sometimes
## 6428   55.79 Heterosexual (straight)             Never
## 6429   77.11 Heterosexual (straight)         Sometimes
## 6430   59.88 Heterosexual (straight)            Rarely
## 6431   99.79 Heterosexual (straight)             Never
## 6432      NA Heterosexual (straight)             Never
## 6433   63.50 Heterosexual (straight)         Sometimes
## 6434      NA                Not sure              <NA>
## 6435   69.85 Heterosexual (straight)            Rarely
## 6436   90.72 Heterosexual (straight)              <NA>
## 6437   58.97 Heterosexual (straight)            Rarely
## 6438   71.67 Heterosexual (straight)             Never
## 6439   99.34 Heterosexual (straight)         Sometimes
## 6440   45.36                Bisexual            Always
## 6441  149.69 Heterosexual (straight)             Never
## 6442   90.72          Gay or lesbian         Sometimes
## 6443   43.09          Some other way  Most of the time
## 6444   54.43 Heterosexual (straight)         Sometimes
## 6445   95.26 Heterosexual (straight)  Most of the time
## 6446   81.65 Heterosexual (straight)             Never
## 6447   72.12 Heterosexual (straight)  Most of the time
## 6448   95.26 Heterosexual (straight)         Sometimes
## 6449   54.89 Heterosexual (straight)         Sometimes
## 6450   68.04 Heterosexual (straight)             Never
## 6451      NA Heterosexual (straight)             Never
## 6452   74.84 Heterosexual (straight)            Rarely
## 6453   93.90 Heterosexual (straight)         Sometimes
## 6454  130.64          Gay or lesbian  Most of the time
## 6455   90.72 Heterosexual (straight)            Rarely
## 6456  103.42 Heterosexual (straight)            Rarely
## 6457  117.94 Heterosexual (straight)             Never
## 6458   77.11 Heterosexual (straight)         Sometimes
## 6459   74.39 Heterosexual (straight)              <NA>
## 6460   46.27 Heterosexual (straight)  Most of the time
## 6461      NA                Not sure  Most of the time
## 6462   68.04                Bisexual         Sometimes
## 6463   61.69                Not sure            Rarely
## 6464   50.80          Some other way         Sometimes
## 6465   86.18 Heterosexual (straight)            Rarely
## 6466   45.36                Bisexual             Never
## 6467   86.18 Heterosexual (straight)             Never
## 6468   76.20 Heterosexual (straight)         Sometimes
## 6469   70.31 Heterosexual (straight)              <NA>
## 6470   51.71 Heterosexual (straight)  Most of the time
## 6471   68.95                Not sure            Always
## 6472   77.11                Bisexual  Most of the time
## 6473   58.97 Heterosexual (straight)  Most of the time
## 6474   53.98 Heterosexual (straight)         Sometimes
## 6475   89.36 Heterosexual (straight)         Sometimes
## 6476      NA          Some other way            Always
## 6477   74.84                Bisexual            Always
## 6478   66.68 Heterosexual (straight)            Rarely
## 6479   49.90 Heterosexual (straight)            Always
## 6480   70.31 Heterosexual (straight)            Rarely
## 6481   63.96 Heterosexual (straight)            Rarely
## 6482   68.04 Heterosexual (straight)             Never
## 6483   97.52 Heterosexual (straight)             Never
## 6484   62.60 Heterosexual (straight)             Never
## 6485   52.16 Heterosexual (straight)            Rarely
## 6486   83.92 Heterosexual (straight)         Sometimes
## 6487   83.92 Heterosexual (straight)  Most of the time
## 6488   79.38 Heterosexual (straight)         Sometimes
## 6489   60.33 Heterosexual (straight)  Most of the time
## 6490   51.71                Not sure            Always
## 6491   99.79 Heterosexual (straight)         Sometimes
## 6492      NA Heterosexual (straight)              <NA>
## 6493   72.58          Gay or lesbian              <NA>
## 6494   56.70 Heterosexual (straight)             Never
## 6495   87.54          Some other way         Sometimes
## 6496   52.16          Some other way  Most of the time
## 6497   49.90 Heterosexual (straight)         Sometimes
## 6498   62.60 Heterosexual (straight)  Most of the time
## 6499   81.65 Heterosexual (straight)             Never
## 6500   78.93 Heterosexual (straight)            Rarely
## 6501   72.58          Gay or lesbian            Rarely
## 6502   65.77 Heterosexual (straight)             Never
## 6503   58.97 Heterosexual (straight)  Most of the time
## 6504   68.49 Heterosexual (straight)             Never
## 6505   39.01 Heterosexual (straight)             Never
## 6506   73.94 Heterosexual (straight)  Most of the time
## 6507   58.97 Heterosexual (straight)             Never
## 6508      NA Heterosexual (straight)         Sometimes
## 6509   46.72 Heterosexual (straight)             Never
## 6510      NA                Bisexual  Most of the time
## 6511   55.79 Heterosexual (straight)             Never
## 6512   74.84 Heterosexual (straight)             Never
## 6513   63.50 Heterosexual (straight)             Never
## 6514   49.44 Heterosexual (straight)            Always
## 6515   53.52 Heterosexual (straight)            Rarely
## 6516   63.50                Bisexual         Sometimes
## 6517   79.38 Heterosexual (straight)             Never
## 6518   58.97 Heterosexual (straight)         Sometimes
## 6519   74.84 Heterosexual (straight)            Rarely
## 6520   58.97 Heterosexual (straight)            Always
## 6521   40.82 Heterosexual (straight)            Rarely
## 6522   49.90 Heterosexual (straight)         Sometimes
## 6523   86.18 Heterosexual (straight)            Rarely
## 6524   52.16 Heterosexual (straight)            Rarely
## 6525   86.18 Heterosexual (straight)            Always
## 6526      NA                Bisexual             Never
## 6527   83.92 Heterosexual (straight)             Never
## 6528   96.16 Heterosexual (straight)             Never
## 6529   51.71          Some other way  Most of the time
## 6530   68.04 Heterosexual (straight)  Most of the time
## 6531   49.90 Heterosexual (straight)            Rarely
## 6532   61.69 Heterosexual (straight)             Never
## 6533   61.24          Gay or lesbian            Always
## 6534   81.65          Some other way         Sometimes
## 6535   57.15          Gay or lesbian            Rarely
## 6536   49.90 Heterosexual (straight)             Never
## 6537   51.71 Heterosexual (straight)         Sometimes
## 6538   58.97 Heterosexual (straight)            Rarely
## 6539   52.16 Heterosexual (straight)  Most of the time
## 6540   72.58 Heterosexual (straight)            Always
## 6541  113.40          Some other way  Most of the time
## 6542  122.47 Heterosexual (straight)             Never
## 6543   42.64 Heterosexual (straight)            Rarely
## 6544   77.11 Heterosexual (straight)         Sometimes
## 6545   58.97 Heterosexual (straight)         Sometimes
## 6546   72.58 Heterosexual (straight)              <NA>
## 6547   83.01 Heterosexual (straight)            Rarely
## 6548  102.06 Heterosexual (straight)             Never
## 6549   72.58 Heterosexual (straight)             Never
## 6550   81.65 Heterosexual (straight)             Never
## 6551   63.50 Heterosexual (straight)            Rarely
## 6552   55.34 Heterosexual (straight)         Sometimes
## 6553   62.60 Heterosexual (straight)  Most of the time
## 6554   74.84 Heterosexual (straight)            Rarely
## 6555   49.90 Heterosexual (straight)            Rarely
## 6556   54.43 Heterosexual (straight)            Always
## 6557   54.43 Heterosexual (straight)            Rarely
## 6558   68.04 Heterosexual (straight)             Never
## 6559   40.82 Heterosexual (straight)             Never
## 6560      NA                Not sure         Sometimes
## 6561      NA Heterosexual (straight)              <NA>
## 6562   86.18 Heterosexual (straight)            Rarely
## 6563   59.88 Heterosexual (straight)              <NA>
## 6564   81.65 Heterosexual (straight)         Sometimes
## 6565   72.58 Heterosexual (straight)              <NA>
## 6566   49.90 Heterosexual (straight)  Most of the time
## 6567   95.26 Heterosexual (straight)            Rarely
## 6568   50.35                Not sure  Most of the time
## 6569   49.90 Heterosexual (straight)             Never
## 6570      NA Heterosexual (straight)            Rarely
## 6571   89.36 Heterosexual (straight)  Most of the time
## 6572   83.01 Heterosexual (straight)         Sometimes
## 6573   49.90 Heterosexual (straight)         Sometimes
## 6574   40.37 Heterosexual (straight)         Sometimes
## 6575   56.70 Heterosexual (straight)            Rarely
## 6576   71.67 Heterosexual (straight)            Rarely
## 6577      NA Heterosexual (straight)         Sometimes
## 6578   56.70 Heterosexual (straight)            Rarely
## 6579   81.19          Some other way            Always
## 6580   58.06 Heterosexual (straight)            Rarely
## 6581      NA Heterosexual (straight)             Never
## 6582   77.11 Heterosexual (straight)  Most of the time
## 6583   59.88 Heterosexual (straight)             Never
## 6584   74.84 Heterosexual (straight)  Most of the time
## 6585   57.61 Heterosexual (straight)         Sometimes
## 6586   82.10 Heterosexual (straight)             Never
## 6587      NA                Not sure              <NA>
## 6588   61.24 Heterosexual (straight)             Never
## 6589      NA Heterosexual (straight)              <NA>
## 6590   77.11 Heterosexual (straight)            Rarely
## 6591   65.32 Heterosexual (straight)  Most of the time
## 6592   57.15                Bisexual              <NA>
## 6593   53.52 Heterosexual (straight)         Sometimes
## 6594      NA                Not sure              <NA>
## 6595   67.59 Heterosexual (straight)         Sometimes
## 6596   58.97 Heterosexual (straight)              <NA>
## 6597      NA          Gay or lesbian            Always
## 6598  112.95                Bisexual             Never
## 6599      NA Heterosexual (straight)            Always
## 6600   74.39                Not sure         Sometimes
## 6601   48.99 Heterosexual (straight)            Rarely
## 6602   67.13 Heterosexual (straight)            Rarely
## 6603      NA Heterosexual (straight)            Rarely
## 6604   68.04 Heterosexual (straight)             Never
## 6605      NA                Bisexual  Most of the time
## 6606   41.73                Bisexual             Never
## 6607   92.08 Heterosexual (straight)            Rarely
## 6608   49.44 Heterosexual (straight)            Always
## 6609  104.33 Heterosexual (straight)         Sometimes
## 6610   74.84          Some other way  Most of the time
## 6611   58.97 Heterosexual (straight)             Never
## 6612   54.43 Heterosexual (straight)  Most of the time
## 6613   57.61 Heterosexual (straight)            Rarely
## 6614   44.91                Bisexual  Most of the time
## 6615   60.78 Heterosexual (straight)             Never
## 6616   65.77 Heterosexual (straight)             Never
## 6617   60.33                Bisexual         Sometimes
## 6618   82.56 Heterosexual (straight)            Rarely
## 6619   53.07 Heterosexual (straight)            Always
## 6620   53.98 Heterosexual (straight)         Sometimes
## 6621   99.34                Bisexual            Rarely
## 6622   90.72          Gay or lesbian            Always
## 6623   86.18                Bisexual  Most of the time
## 6624   56.70 Heterosexual (straight)            Rarely
## 6625      NA Heterosexual (straight)             Never
## 6626      NA Heterosexual (straight)  Most of the time
## 6627   95.26 Heterosexual (straight)  Most of the time
## 6628   86.18 Heterosexual (straight)            Always
## 6629   57.15 Heterosexual (straight)         Sometimes
## 6630   79.38                Not sure         Sometimes
## 6631   54.43 Heterosexual (straight)             Never
## 6632   63.05                Not sure            Rarely
## 6633   60.78 Heterosexual (straight)         Sometimes
## 6634   54.43 Heterosexual (straight)            Rarely
## 6635   52.16 Heterosexual (straight)            Rarely
## 6636   63.96 Heterosexual (straight)            Rarely
## 6637   63.50 Heterosexual (straight)             Never
## 6638      NA Heterosexual (straight)             Never
## 6639  176.90                Not sure            Always
## 6640   87.09 Heterosexual (straight)         Sometimes
## 6641   58.97 Heterosexual (straight)         Sometimes
## 6642   54.43                Bisexual  Most of the time
## 6643   65.77                Bisexual  Most of the time
## 6644   54.43 Heterosexual (straight)  Most of the time
## 6645   81.65                Bisexual         Sometimes
## 6646   57.15 Heterosexual (straight)         Sometimes
## 6647   77.11 Heterosexual (straight)             Never
## 6648   63.50 Heterosexual (straight)             Never
## 6649   54.43 Heterosexual (straight)            Rarely
## 6650   60.78 Heterosexual (straight)         Sometimes
## 6651   74.84 Heterosexual (straight)         Sometimes
## 6652   57.61 Heterosexual (straight)             Never
## 6653      NA Heterosexual (straight)              <NA>
## 6654   58.06 Heterosexual (straight)             Never
## 6655   54.43 Heterosexual (straight)         Sometimes
## 6656   54.43          Some other way  Most of the time
## 6657      NA Heterosexual (straight)            Always
## 6658   56.70 Heterosexual (straight)         Sometimes
## 6659   92.99 Heterosexual (straight)  Most of the time
## 6660   52.16                Bisexual         Sometimes
## 6661      NA                Not sure         Sometimes
## 6662   53.52 Heterosexual (straight)            Rarely
## 6663   54.43 Heterosexual (straight)             Never
## 6664   63.50                Not sure  Most of the time
## 6665   72.58                Bisexual         Sometimes
## 6666   58.97 Heterosexual (straight)         Sometimes
## 6667   90.72 Heterosexual (straight)             Never
## 6668   58.97 Heterosexual (straight)         Sometimes
## 6669      NA                Not sure         Sometimes
## 6670   49.90          Gay or lesbian         Sometimes
## 6671   65.32 Heterosexual (straight)              <NA>
## 6672   70.76                Not sure         Sometimes
## 6673   85.73 Heterosexual (straight)         Sometimes
## 6674   79.38 Heterosexual (straight)             Never
## 6675   81.65 Heterosexual (straight)  Most of the time
## 6676   54.43 Heterosexual (straight)  Most of the time
## 6677   40.82 Heterosexual (straight)         Sometimes
## 6678  117.03 Heterosexual (straight)              <NA>
## 6679   65.77 Heterosexual (straight)  Most of the time
## 6680      NA          Gay or lesbian         Sometimes
## 6681   84.37 Heterosexual (straight)            Rarely
## 6682   53.98 Heterosexual (straight)            Always
## 6683   57.61 Heterosexual (straight)         Sometimes
## 6684   54.43 Heterosexual (straight)  Most of the time
## 6685      NA Heterosexual (straight)            Always
## 6686   50.35 Heterosexual (straight)  Most of the time
## 6687   90.72          Gay or lesbian             Never
## 6688   52.16 Heterosexual (straight)            Rarely
## 6689   88.45 Heterosexual (straight)         Sometimes
## 6690   54.43 Heterosexual (straight)            Always
## 6691   45.36 Heterosexual (straight)  Most of the time
## 6692   74.39 Heterosexual (straight)            Rarely
## 6693   54.43 Heterosexual (straight)  Most of the time
## 6694   54.43 Heterosexual (straight)         Sometimes
## 6695   60.33          Some other way            Rarely
## 6696   74.84 Heterosexual (straight)  Most of the time
## 6697   79.38 Heterosexual (straight)            Rarely
## 6698   63.50 Heterosexual (straight)         Sometimes
## 6699      NA Heterosexual (straight)  Most of the time
## 6700      NA Heterosexual (straight)            Always
## 6701   53.52 Heterosexual (straight)  Most of the time
## 6702   52.16 Heterosexual (straight)         Sometimes
## 6703  108.86 Heterosexual (straight)         Sometimes
## 6704   68.04 Heterosexual (straight)             Never
## 6705   77.11 Heterosexual (straight)         Sometimes
## 6706   46.72 Heterosexual (straight)            Always
## 6707   42.64                Bisexual            Always
## 6708   51.71          Gay or lesbian             Never
## 6709      NA                Not sure              <NA>
## 6710  111.13 Heterosexual (straight)             Never
## 6711   74.84 Heterosexual (straight)         Sometimes
## 6712   60.78 Heterosexual (straight)         Sometimes
## 6713   63.50 Heterosexual (straight)         Sometimes
## 6714   81.65          Gay or lesbian  Most of the time
## 6715   61.24                Bisexual  Most of the time
## 6716   83.92 Heterosexual (straight)            Rarely
## 6717   68.04 Heterosexual (straight)             Never
## 6718   58.97 Heterosexual (straight)            Rarely
## 6719   66.68 Heterosexual (straight)            Rarely
## 6720   70.31                Bisexual            Always
## 6721  108.86 Heterosexual (straight)            Rarely
## 6722      NA                Bisexual         Sometimes
## 6723   93.44 Heterosexual (straight)            Rarely
## 6724   70.76                Bisexual         Sometimes
## 6725  136.08          Gay or lesbian  Most of the time
## 6726   72.12 Heterosexual (straight)         Sometimes
## 6727   58.97                Bisexual            Rarely
## 6728   58.97                Bisexual            Always
## 6729   81.65 Heterosexual (straight)  Most of the time
## 6730   54.43          Gay or lesbian            Always
## 6731      NA Heterosexual (straight)         Sometimes
## 6732  138.35          Some other way            Always
## 6733   54.43 Heterosexual (straight)  Most of the time
## 6734      NA Heterosexual (straight)         Sometimes
## 6735   48.99 Heterosexual (straight)            Rarely
## 6736   70.31 Heterosexual (straight)             Never
## 6737  122.47 Heterosexual (straight)            Rarely
## 6738   56.70 Heterosexual (straight)            Rarely
## 6739   72.58 Heterosexual (straight)         Sometimes
## 6740   47.17 Heterosexual (straight)            Rarely
## 6741   50.35          Some other way         Sometimes
## 6742   58.06          Gay or lesbian             Never
## 6743   90.72 Heterosexual (straight)            Rarely
## 6744   43.09 Heterosexual (straight)         Sometimes
## 6745   61.24 Heterosexual (straight)  Most of the time
## 6746   74.84 Heterosexual (straight)  Most of the time
## 6747   49.90 Heterosexual (straight)         Sometimes
## 6748   58.97 Heterosexual (straight)  Most of the time
## 6749   63.50 Heterosexual (straight)            Rarely
## 6750   62.60 Heterosexual (straight)            Rarely
## 6751   49.44 Heterosexual (straight)  Most of the time
## 6752   83.01 Heterosexual (straight)             Never
## 6753  113.40 Heterosexual (straight)            Always
## 6754      NA Heterosexual (straight)  Most of the time
## 6755   65.77 Heterosexual (straight)            Rarely
## 6756   52.16 Heterosexual (straight)            Rarely
## 6757   62.14                Not sure  Most of the time
## 6758      NA Heterosexual (straight)             Never
## 6759   39.46                Bisexual  Most of the time
## 6760   61.24 Heterosexual (straight)             Never
## 6761   54.43 Heterosexual (straight)            Rarely
## 6762   43.09 Heterosexual (straight)             Never
## 6763   59.88 Heterosexual (straight)         Sometimes
## 6764   81.65 Heterosexual (straight)             Never
## 6765   95.26                Bisexual            Rarely
## 6766   70.31 Heterosexual (straight)  Most of the time
## 6767   63.50                Not sure             Never
## 6768   48.08 Heterosexual (straight)             Never
## 6769   61.24                Not sure             Never
## 6770   61.24 Heterosexual (straight)            Rarely
## 6771   44.45 Heterosexual (straight)  Most of the time
## 6772   73.48 Heterosexual (straight)  Most of the time
## 6773   64.41 Heterosexual (straight)            Always
## 6774      NA Heterosexual (straight)         Sometimes
## 6775   62.60 Heterosexual (straight)             Never
## 6776   62.60 Heterosexual (straight)         Sometimes
## 6777      NA Heterosexual (straight)         Sometimes
## 6778   48.99                Not sure  Most of the time
## 6779   62.60 Heterosexual (straight)            Rarely
## 6780   53.98 Heterosexual (straight)             Never
## 6781   63.50 Heterosexual (straight)            Rarely
## 6782   48.08 Heterosexual (straight)         Sometimes
## 6783   47.63 Heterosexual (straight)  Most of the time
## 6784  104.33 Heterosexual (straight)         Sometimes
## 6785   83.92 Heterosexual (straight)             Never
## 6786   54.43                Bisexual            Always
## 6787   51.71 Heterosexual (straight)            Rarely
## 6788   68.04 Heterosexual (straight)  Most of the time
## 6789   83.92                Bisexual  Most of the time
## 6790   64.41 Heterosexual (straight)            Rarely
## 6791   64.86 Heterosexual (straight)         Sometimes
## 6792   63.50 Heterosexual (straight)             Never
## 6793   65.77 Heterosexual (straight)            Rarely
## 6794   65.77                Bisexual  Most of the time
## 6795   68.04 Heterosexual (straight)            Rarely
## 6796   99.79                Bisexual  Most of the time
## 6797   72.58                Not sure            Always
## 6798   58.06 Heterosexual (straight)         Sometimes
## 6799   64.41                Not sure         Sometimes
## 6800   65.77 Heterosexual (straight)         Sometimes
## 6801   54.43 Heterosexual (straight)             Never
## 6802   54.43 Heterosexual (straight)  Most of the time
## 6803   68.04 Heterosexual (straight)  Most of the time
## 6804   53.52 Heterosexual (straight)         Sometimes
## 6805   54.43 Heterosexual (straight)            Rarely
## 6806   57.61 Heterosexual (straight)            Rarely
## 6807   68.04                Bisexual         Sometimes
## 6808   76.20 Heterosexual (straight)         Sometimes
## 6809   63.05 Heterosexual (straight)            Always
## 6810   54.43 Heterosexual (straight)            Rarely
## 6811   49.90 Heterosexual (straight)            Rarely
## 6812   61.24 Heterosexual (straight)             Never
## 6813   57.15 Heterosexual (straight)             Never
## 6814      NA Heterosexual (straight)              <NA>
## 6815   61.24 Heterosexual (straight)            Rarely
## 6816   53.52                Bisexual         Sometimes
## 6817   80.74 Heterosexual (straight)         Sometimes
## 6818      NA Heterosexual (straight)         Sometimes
## 6819   74.84 Heterosexual (straight)            Rarely
## 6820   74.84 Heterosexual (straight)            Rarely
## 6821   68.04 Heterosexual (straight)              <NA>
## 6822   95.26 Heterosexual (straight)  Most of the time
## 6823      NA                Bisexual            Rarely
## 6824   68.04 Heterosexual (straight)  Most of the time
## 6825   61.24 Heterosexual (straight)              <NA>
## 6826   76.20 Heterosexual (straight)            Rarely
## 6827   72.58                Not sure  Most of the time
## 6828      NA Heterosexual (straight)            Always
## 6829   79.83 Heterosexual (straight)         Sometimes
## 6830   56.70 Heterosexual (straight)            Rarely
## 6831      NA          Some other way             Never
## 6832   46.72 Heterosexual (straight)  Most of the time
## 6833   65.77          Gay or lesbian         Sometimes
## 6834   68.04 Heterosexual (straight)             Never
## 6835   96.16 Heterosexual (straight)            Rarely
## 6836   65.77 Heterosexual (straight)  Most of the time
## 6837   74.84 Heterosexual (straight)         Sometimes
## 6838   52.62 Heterosexual (straight)             Never
## 6839   53.52 Heterosexual (straight)  Most of the time
## 6840   57.15 Heterosexual (straight)         Sometimes
## 6841   56.70 Heterosexual (straight)  Most of the time
## 6842   91.63 Heterosexual (straight)            Rarely
## 6843   60.78 Heterosexual (straight)         Sometimes
## 6844   52.16 Heterosexual (straight)         Sometimes
## 6845   77.11 Heterosexual (straight)            Rarely
## 6846   63.50 Heterosexual (straight)         Sometimes
## 6847   61.24 Heterosexual (straight)         Sometimes
## 6848   72.58 Heterosexual (straight)            Rarely
## 6849   63.50                Bisexual         Sometimes
## 6850   56.70                Not sure            Always
## 6851   56.70          Gay or lesbian         Sometimes
## 6852   87.54 Heterosexual (straight)         Sometimes
## 6853      NA Heterosexual (straight)         Sometimes
## 6854   52.16                Bisexual         Sometimes
## 6855   70.31                Bisexual         Sometimes
## 6856   46.27                Bisexual         Sometimes
## 6857   63.50 Heterosexual (straight)  Most of the time
## 6858   53.52                Not sure  Most of the time
## 6859   61.24 Heterosexual (straight)            Rarely
## 6860   67.13 Heterosexual (straight)  Most of the time
## 6861   56.70 Heterosexual (straight)            Rarely
## 6862   61.24 Heterosexual (straight)            Rarely
## 6863   52.16                Bisexual  Most of the time
## 6864   63.50 Heterosexual (straight)  Most of the time
## 6865   51.26 Heterosexual (straight)            Rarely
## 6866   72.58 Heterosexual (straight)         Sometimes
## 6867   68.95 Heterosexual (straight)             Never
## 6868   83.92          Some other way            Always
## 6869  127.01 Heterosexual (straight)             Never
## 6870   59.88                Not sure            Rarely
## 6871   47.63 Heterosexual (straight)  Most of the time
## 6872   59.88 Heterosexual (straight)         Sometimes
## 6873   48.08                Not sure         Sometimes
## 6874   54.43 Heterosexual (straight)            Rarely
## 6875   70.31                Not sure  Most of the time
## 6876   65.77                Bisexual         Sometimes
## 6877   54.43 Heterosexual (straight)             Never
## 6878   63.50 Heterosexual (straight)             Never
## 6879   56.70                Bisexual             Never
## 6880   56.70 Heterosexual (straight)         Sometimes
## 6881  113.40 Heterosexual (straight)         Sometimes
## 6882   70.31 Heterosexual (straight)            Rarely
## 6883   71.67 Heterosexual (straight)         Sometimes
## 6884   54.43 Heterosexual (straight)            Rarely
## 6885      NA Heterosexual (straight)         Sometimes
## 6886   52.16 Heterosexual (straight)         Sometimes
## 6887   49.90 Heterosexual (straight)             Never
## 6888   74.84 Heterosexual (straight)             Never
## 6889      NA Heterosexual (straight)            Rarely
## 6890   78.47 Heterosexual (straight)            Rarely
## 6891      NA Heterosexual (straight)             Never
## 6892   49.90 Heterosexual (straight)            Rarely
## 6893   51.71                Bisexual  Most of the time
## 6894   78.47 Heterosexual (straight)            Rarely
## 6895   47.17 Heterosexual (straight)         Sometimes
## 6896   57.61 Heterosexual (straight)         Sometimes
## 6897   60.33 Heterosexual (straight)            Rarely
## 6898   63.50          Some other way         Sometimes
## 6899   54.43 Heterosexual (straight)         Sometimes
## 6900   61.24 Heterosexual (straight)  Most of the time
## 6901      NA Heterosexual (straight)         Sometimes
## 6902   58.97 Heterosexual (straight)             Never
## 6903  108.86 Heterosexual (straight)             Never
## 6904   81.65 Heterosexual (straight)            Rarely
## 6905   58.97 Heterosexual (straight)         Sometimes
## 6906   68.04 Heterosexual (straight)             Never
## 6907   75.75 Heterosexual (straight)         Sometimes
## 6908   63.50 Heterosexual (straight)            Rarely
## 6909   44.45 Heterosexual (straight)  Most of the time
## 6910   56.70 Heterosexual (straight)            Rarely
## 6911   61.24                Not sure            Always
## 6912   66.23 Heterosexual (straight)         Sometimes
## 6913   68.04 Heterosexual (straight)            Rarely
## 6914   65.77 Heterosexual (straight)         Sometimes
## 6915   45.36 Heterosexual (straight)         Sometimes
## 6916   66.23                Bisexual         Sometimes
## 6917      NA Heterosexual (straight)         Sometimes
## 6918   68.04 Heterosexual (straight)            Always
## 6919   52.16 Heterosexual (straight)         Sometimes
## 6920   68.04                Bisexual         Sometimes
## 6921   70.31 Heterosexual (straight)            Rarely
## 6922  180.99 Heterosexual (straight)              <NA>
## 6923  111.13 Heterosexual (straight)         Sometimes
## 6924   68.95 Heterosexual (straight)         Sometimes
## 6925   64.41          Some other way         Sometimes
## 6926   44.00 Heterosexual (straight)  Most of the time
## 6927   68.95                Bisexual         Sometimes
## 6928   68.04 Heterosexual (straight)             Never
## 6929   62.14          Some other way            Always
## 6930   94.35 Heterosexual (straight)         Sometimes
## 6931   49.90                Bisexual         Sometimes
## 6932   63.50 Heterosexual (straight)         Sometimes
## 6933      NA Heterosexual (straight)             Never
## 6934   70.76 Heterosexual (straight)            Rarely
## 6935   57.15                Bisexual  Most of the time
## 6936  104.33                Bisexual            Rarely
## 6937   54.89          Gay or lesbian  Most of the time
## 6938   83.46 Heterosexual (straight)            Rarely
## 6939   54.43                Not sure  Most of the time
## 6940   70.76 Heterosexual (straight)            Rarely
## 6941      NA Heterosexual (straight)            Rarely
## 6942   77.11 Heterosexual (straight)             Never
## 6943   40.82                Not sure            Always
## 6944   68.04 Heterosexual (straight)            Rarely
## 6945   62.14                Bisexual            Rarely
## 6946  108.86                Bisexual            Always
## 6947   61.24 Heterosexual (straight)             Never
## 6948   57.61          Some other way            Always
## 6949   68.04                Bisexual  Most of the time
## 6950   58.06 Heterosexual (straight)         Sometimes
## 6951   69.40          Gay or lesbian            Rarely
## 6952   52.16 Heterosexual (straight)         Sometimes
## 6953      NA                Not sure            Rarely
## 6954   95.26 Heterosexual (straight)  Most of the time
## 6955   60.33 Heterosexual (straight)            Rarely
## 6956   74.39 Heterosexual (straight)             Never
## 6957   78.93 Heterosexual (straight)            Rarely
## 6958   54.43 Heterosexual (straight)         Sometimes
## 6959   80.29                Bisexual            Rarely
## 6960   61.24 Heterosexual (straight)            Always
## 6961   74.84 Heterosexual (straight)            Rarely
## 6962   50.80 Heterosexual (straight)         Sometimes
## 6963   61.24 Heterosexual (straight)  Most of the time
## 6964   58.97 Heterosexual (straight)         Sometimes
## 6965   40.82 Heterosexual (straight)         Sometimes
## 6966   72.58 Heterosexual (straight)         Sometimes
## 6967   58.97          Gay or lesbian             Never
## 6968   58.97 Heterosexual (straight)         Sometimes
## 6969   51.26          Some other way            Always
## 6970   87.09          Some other way  Most of the time
## 6971   77.11 Heterosexual (straight)         Sometimes
## 6972   62.60          Some other way         Sometimes
## 6973   51.26          Gay or lesbian  Most of the time
## 6974   66.68 Heterosexual (straight)  Most of the time
## 6975   66.23          Gay or lesbian         Sometimes
## 6976   65.77                Not sure            Always
## 6977   71.22 Heterosexual (straight)             Never
## 6978   61.24 Heterosexual (straight)         Sometimes
## 6979   54.43 Heterosexual (straight)             Never
## 6980      NA                Bisexual         Sometimes
## 6981   81.19                Bisexual  Most of the time
## 6982      NA Heterosexual (straight)            Rarely
## 6983   47.17 Heterosexual (straight)            Rarely
## 6984   65.77 Heterosexual (straight)         Sometimes
## 6985   58.06                Bisexual              <NA>
## 6986   61.24          Some other way            Always
## 6987   56.70                Not sure         Sometimes
## 6988   68.04          Gay or lesbian             Never
## 6989   70.31 Heterosexual (straight)            Rarely
## 6990   57.61                Not sure         Sometimes
## 6991  111.13          Some other way         Sometimes
## 6992   46.72 Heterosexual (straight)            Always
## 6993      NA Heterosexual (straight)         Sometimes
## 6994   74.84          Gay or lesbian         Sometimes
## 6995   56.70          Gay or lesbian  Most of the time
## 6996   59.88 Heterosexual (straight)            Rarely
## 6997  122.93          Some other way  Most of the time
## 6998   72.12 Heterosexual (straight)         Sometimes
## 6999   77.11 Heterosexual (straight)             Never
## 7000   58.97 Heterosexual (straight)         Sometimes
## 7001   58.51 Heterosexual (straight)         Sometimes
## 7002   69.40                Bisexual         Sometimes
## 7003   56.25          Gay or lesbian            Rarely
## 7004   63.50 Heterosexual (straight)         Sometimes
## 7005   59.42                Not sure         Sometimes
## 7006   47.63 Heterosexual (straight)            Rarely
## 7007   60.78                Bisexual         Sometimes
## 7008   64.41 Heterosexual (straight)            Rarely
## 7009   74.84 Heterosexual (straight)            Rarely
## 7010   79.38                Bisexual         Sometimes
## 7011   74.39                Bisexual  Most of the time
## 7012   57.61          Some other way              <NA>
## 7013   43.09 Heterosexual (straight)         Sometimes
## 7014   60.78                Bisexual            Always
## 7015   58.51                Bisexual  Most of the time
## 7016   38.56 Heterosexual (straight)         Sometimes
## 7017      NA Heterosexual (straight)  Most of the time
## 7018   92.08 Heterosexual (straight)            Rarely
## 7019   55.79                Bisexual  Most of the time
## 7020   56.70 Heterosexual (straight)  Most of the time
## 7021   57.15          Some other way         Sometimes
## 7022   58.06 Heterosexual (straight)         Sometimes
## 7023      NA          Some other way  Most of the time
## 7024   78.02          Some other way         Sometimes
## 7025   52.16 Heterosexual (straight)            Rarely
## 7026   90.27                Not sure         Sometimes
## 7027   58.97                Bisexual            Rarely
## 7028   54.43                Not sure         Sometimes
## 7029   63.50 Heterosexual (straight)         Sometimes
## 7030   56.70                Not sure  Most of the time
## 7031   71.67          Some other way            Always
## 7032   58.06 Heterosexual (straight)            Rarely
## 7033   49.90 Heterosexual (straight)            Rarely
## 7034   52.62                Bisexual         Sometimes
## 7035   59.42 Heterosexual (straight)  Most of the time
## 7036   64.86                Not sure         Sometimes
## 7037   77.11 Heterosexual (straight)            Rarely
## 7038   81.65 Heterosexual (straight)            Rarely
## 7039   56.70 Heterosexual (straight)         Sometimes
## 7040   56.70 Heterosexual (straight)         Sometimes
## 7041   67.13 Heterosexual (straight)         Sometimes
## 7042   86.18 Heterosexual (straight)  Most of the time
## 7043   70.76                Bisexual         Sometimes
## 7044   59.88 Heterosexual (straight)         Sometimes
## 7045   55.34          Gay or lesbian            Always
## 7046   58.51 Heterosexual (straight)            Rarely
## 7047   81.65          Gay or lesbian         Sometimes
## 7048   53.52                Bisexual  Most of the time
## 7049      NA Heterosexual (straight)             Never
## 7050   83.92 Heterosexual (straight)            Rarely
## 7051   70.31 Heterosexual (straight)  Most of the time
## 7052      NA                Bisexual  Most of the time
## 7053   44.91                Not sure         Sometimes
## 7054   58.97          Some other way            Always
## 7055   46.72          Gay or lesbian  Most of the time
## 7056   71.67 Heterosexual (straight)            Rarely
## 7057      NA          Some other way         Sometimes
## 7058   58.06 Heterosexual (straight)            Rarely
## 7059   44.91 Heterosexual (straight)  Most of the time
## 7060   68.04 Heterosexual (straight)         Sometimes
## 7061   54.43 Heterosexual (straight)             Never
## 7062   58.06 Heterosexual (straight)            Rarely
## 7063   62.14 Heterosexual (straight)            Rarely
## 7064   60.33 Heterosexual (straight)            Rarely
## 7065   72.58 Heterosexual (straight)         Sometimes
## 7066   54.43 Heterosexual (straight)             Never
## 7067   72.58 Heterosexual (straight)         Sometimes
## 7068   53.98                Bisexual         Sometimes
## 7069   61.24 Heterosexual (straight)         Sometimes
## 7070   87.09 Heterosexual (straight)            Rarely
## 7071   72.58 Heterosexual (straight)         Sometimes
## 7072   87.09 Heterosexual (straight)            Rarely
## 7073   56.70 Heterosexual (straight)         Sometimes
## 7074   78.47 Heterosexual (straight)         Sometimes
## 7075   72.58                Not sure         Sometimes
## 7076  106.60 Heterosexual (straight)  Most of the time
## 7077   65.77                Bisexual         Sometimes
## 7078   81.65 Heterosexual (straight)            Rarely
## 7079   63.50 Heterosexual (straight)            Always
## 7080   54.43 Heterosexual (straight)            Rarely
## 7081   58.97 Heterosexual (straight)  Most of the time
## 7082   54.43          Some other way            Always
## 7083   74.84 Heterosexual (straight)             Never
## 7084   55.34 Heterosexual (straight)         Sometimes
## 7085   70.31 Heterosexual (straight)            Always
## 7086   45.36 Heterosexual (straight)            Rarely
## 7087   64.86 Heterosexual (straight)             Never
## 7088   56.70 Heterosexual (straight)         Sometimes
## 7089      NA          Gay or lesbian  Most of the time
## 7090   56.70 Heterosexual (straight)         Sometimes
## 7091   70.31          Some other way         Sometimes
## 7092   58.06                Not sure            Always
## 7093   54.43          Gay or lesbian             Never
## 7094      NA                Not sure  Most of the time
## 7095   50.35 Heterosexual (straight)            Rarely
## 7096  108.86 Heterosexual (straight)            Rarely
## 7097   49.90                Bisexual  Most of the time
## 7098   54.43                Not sure         Sometimes
## 7099      NA Heterosexual (straight)  Most of the time
## 7100      NA Heterosexual (straight)         Sometimes
## 7101   68.04 Heterosexual (straight)  Most of the time
## 7102   61.24 Heterosexual (straight)            Rarely
## 7103   70.31 Heterosexual (straight)         Sometimes
## 7104   50.80 Heterosexual (straight)  Most of the time
## 7105   58.97                Bisexual         Sometimes
## 7106   49.90 Heterosexual (straight)  Most of the time
## 7107   48.99                Bisexual         Sometimes
## 7108   68.04 Heterosexual (straight)         Sometimes
## 7109   49.44 Heterosexual (straight)            Rarely
## 7110   68.04 Heterosexual (straight)             Never
## 7111   63.50 Heterosexual (straight)         Sometimes
## 7112      NA Heterosexual (straight)         Sometimes
## 7113   47.17 Heterosexual (straight)              <NA>
## 7114   81.65          Some other way  Most of the time
## 7115   56.70 Heterosexual (straight)            Rarely
## 7116   74.39 Heterosexual (straight)            Rarely
## 7117   62.60 Heterosexual (straight)            Rarely
## 7118      NA Heterosexual (straight)            Rarely
## 7119   68.04 Heterosexual (straight)             Never
## 7120   49.90                Bisexual            Rarely
## 7121   68.04 Heterosexual (straight)            Rarely
## 7122   50.80 Heterosexual (straight)  Most of the time
## 7123   61.24 Heterosexual (straight)             Never
## 7124   54.43                Not sure         Sometimes
## 7125   79.38 Heterosexual (straight)         Sometimes
## 7126   73.94 Heterosexual (straight)             Never
## 7127   49.90 Heterosexual (straight)            Rarely
## 7128   54.43 Heterosexual (straight)            Rarely
## 7129   51.71 Heterosexual (straight)         Sometimes
## 7130   47.63                Bisexual  Most of the time
## 7131   56.25 Heterosexual (straight)             Never
## 7132   45.36 Heterosexual (straight)         Sometimes
## 7133   54.43                Not sure  Most of the time
## 7134      NA Heterosexual (straight)  Most of the time
## 7135   56.70 Heterosexual (straight)             Never
## 7136   63.50 Heterosexual (straight)            Always
## 7137   61.24 Heterosexual (straight)         Sometimes
## 7138   72.58 Heterosexual (straight)            Rarely
## 7139   47.63 Heterosexual (straight)  Most of the time
## 7140   54.43          Some other way         Sometimes
## 7141   45.36 Heterosexual (straight)         Sometimes
## 7142   67.59 Heterosexual (straight)             Never
## 7143   54.43 Heterosexual (straight)            Rarely
## 7144   74.39 Heterosexual (straight)            Rarely
## 7145   58.97 Heterosexual (straight)             Never
## 7146   48.54 Heterosexual (straight)            Always
## 7147   58.97 Heterosexual (straight)         Sometimes
## 7148   61.24          Gay or lesbian  Most of the time
## 7149   86.18 Heterosexual (straight)         Sometimes
## 7150   70.31 Heterosexual (straight)         Sometimes
## 7151   56.70 Heterosexual (straight)            Rarely
## 7152   58.97 Heterosexual (straight)            Rarely
## 7153   68.04 Heterosexual (straight)            Rarely
## 7154   48.99 Heterosexual (straight)            Always
## 7155   62.60 Heterosexual (straight)             Never
## 7156   68.04 Heterosexual (straight)            Rarely
## 7157   65.77 Heterosexual (straight)            Rarely
## 7158   63.50 Heterosexual (straight)            Rarely
## 7159   49.90 Heterosexual (straight)         Sometimes
## 7160   58.97 Heterosexual (straight)         Sometimes
## 7161   68.95 Heterosexual (straight)            Rarely
## 7162   74.84 Heterosexual (straight)         Sometimes
## 7163   58.97 Heterosexual (straight)         Sometimes
## 7164   58.51 Heterosexual (straight)            Rarely
## 7165   70.31 Heterosexual (straight)            Rarely
## 7166   65.77 Heterosexual (straight)            Rarely
## 7167   66.68 Heterosexual (straight)  Most of the time
## 7168  108.86          Some other way            Always
## 7169   61.24 Heterosexual (straight)            Always
## 7170   73.03          Gay or lesbian         Sometimes
## 7171   37.20 Heterosexual (straight)            Rarely
## 7172   70.31 Heterosexual (straight)            Rarely
## 7173   74.84                Not sure         Sometimes
## 7174   70.31 Heterosexual (straight)            Rarely
## 7175   68.04 Heterosexual (straight)            Rarely
## 7176   70.31 Heterosexual (straight)            Rarely
## 7177   58.97 Heterosexual (straight)         Sometimes
## 7178   68.04 Heterosexual (straight)         Sometimes
## 7179   68.04 Heterosexual (straight)         Sometimes
## 7180   90.72 Heterosexual (straight)             Never
## 7181   67.13 Heterosexual (straight)             Never
## 7182   62.60                Not sure         Sometimes
## 7183  113.40 Heterosexual (straight)         Sometimes
## 7184   53.52 Heterosexual (straight)         Sometimes
## 7185   58.97 Heterosexual (straight)             Never
## 7186   44.91          Some other way  Most of the time
## 7187   52.16 Heterosexual (straight)  Most of the time
## 7188   54.89 Heterosexual (straight)             Never
## 7189   63.50 Heterosexual (straight)  Most of the time
## 7190   43.09 Heterosexual (straight)            Rarely
## 7191   54.43                Bisexual              <NA>
## 7192   48.08 Heterosexual (straight)         Sometimes
## 7193      NA Heterosexual (straight)         Sometimes
## 7194   61.24 Heterosexual (straight)            Rarely
## 7195   44.45 Heterosexual (straight)  Most of the time
## 7196   52.16 Heterosexual (straight)         Sometimes
## 7197   63.05 Heterosexual (straight)         Sometimes
## 7198   65.77 Heterosexual (straight)             Never
## 7199   68.04                Not sure  Most of the time
## 7200   45.36 Heterosexual (straight)         Sometimes
## 7201   68.04          Gay or lesbian         Sometimes
## 7202   69.40 Heterosexual (straight)             Never
## 7203   43.55 Heterosexual (straight)         Sometimes
## 7204   74.84 Heterosexual (straight)         Sometimes
## 7205   45.36                Bisexual              <NA>
## 7206   63.50 Heterosexual (straight)             Never
## 7207   72.12          Gay or lesbian            Rarely
## 7208   72.58          Some other way         Sometimes
## 7209   86.18 Heterosexual (straight)            Rarely
## 7210   49.90 Heterosexual (straight)         Sometimes
## 7211   95.71 Heterosexual (straight)              <NA>
## 7212   61.24 Heterosexual (straight)             Never
## 7213   47.63 Heterosexual (straight)         Sometimes
## 7214   79.38 Heterosexual (straight)            Rarely
## 7215   61.24 Heterosexual (straight)             Never
## 7216   64.41                Bisexual             Never
## 7217  135.17 Heterosexual (straight)              <NA>
## 7218   76.66 Heterosexual (straight)         Sometimes
## 7219  136.08 Heterosexual (straight)             Never
## 7220   52.16                Bisexual         Sometimes
## 7221   95.26 Heterosexual (straight)         Sometimes
## 7222   63.50 Heterosexual (straight)             Never
## 7223   64.41 Heterosexual (straight)            Rarely
## 7224   70.31                Bisexual  Most of the time
## 7225      NA Heterosexual (straight)            Rarely
## 7226   52.16 Heterosexual (straight)             Never
## 7227   54.43 Heterosexual (straight)         Sometimes
## 7228   95.26                Bisexual             Never
## 7229   60.33 Heterosexual (straight)  Most of the time
## 7230   63.96 Heterosexual (straight)              <NA>
## 7231   79.38 Heterosexual (straight)            Rarely
## 7232   99.79          Some other way            Rarely
## 7233  108.41 Heterosexual (straight)             Never
## 7234   54.43 Heterosexual (straight)             Never
## 7235   97.52 Heterosexual (straight)            Rarely
## 7236   81.65 Heterosexual (straight)            Rarely
## 7237   68.04 Heterosexual (straight)            Always
## 7238   58.97 Heterosexual (straight)            Rarely
## 7239   85.73                Not sure            Always
## 7240   65.77 Heterosexual (straight)         Sometimes
## 7241   51.71 Heterosexual (straight)            Always
## 7242   44.91 Heterosexual (straight)            Rarely
## 7243   58.97 Heterosexual (straight)            Rarely
## 7244   48.08 Heterosexual (straight)         Sometimes
## 7245   48.99                Not sure            Always
## 7246   52.16                Bisexual            Rarely
## 7247   47.63 Heterosexual (straight)         Sometimes
## 7248   43.09                Bisexual         Sometimes
## 7249   53.07 Heterosexual (straight)         Sometimes
## 7250   73.48 Heterosexual (straight)            Rarely
## 7251   58.97 Heterosexual (straight)             Never
## 7252      NA          Gay or lesbian            Always
## 7253   54.89                Bisexual            Always
## 7254   77.11 Heterosexual (straight)             Never
## 7255   50.80                Bisexual            Rarely
## 7256   77.11 Heterosexual (straight)            Rarely
## 7257   84.37 Heterosexual (straight)            Rarely
## 7258   58.06 Heterosexual (straight)            Rarely
## 7259   54.43 Heterosexual (straight)             Never
## 7260   75.30                Bisexual         Sometimes
## 7261   58.97 Heterosexual (straight)  Most of the time
## 7262   54.43 Heterosexual (straight)            Rarely
## 7263   65.77 Heterosexual (straight)         Sometimes
## 7264   84.37 Heterosexual (straight)         Sometimes
## 7265   56.70 Heterosexual (straight)            Rarely
## 7266   58.97                Bisexual  Most of the time
## 7267   54.43 Heterosexual (straight)         Sometimes
## 7268   70.31                Not sure            Rarely
## 7269   63.50 Heterosexual (straight)         Sometimes
## 7270   81.65 Heterosexual (straight)             Never
## 7271   62.60          Gay or lesbian         Sometimes
## 7272   52.62                Bisexual  Most of the time
## 7273      NA                Bisexual  Most of the time
## 7274   97.52 Heterosexual (straight)            Rarely
## 7275   52.16 Heterosexual (straight)         Sometimes
## 7276   74.84 Heterosexual (straight)  Most of the time
## 7277   44.00          Gay or lesbian  Most of the time
## 7278      NA Heterosexual (straight)  Most of the time
## 7279   53.52 Heterosexual (straight)             Never
## 7280   90.72 Heterosexual (straight)             Never
## 7281   40.37                Bisexual            Rarely
## 7282   47.63                Bisexual            Rarely
## 7283   54.43 Heterosexual (straight)  Most of the time
## 7284   52.62 Heterosexual (straight)  Most of the time
## 7285   67.59                Bisexual         Sometimes
## 7286   77.11                Bisexual         Sometimes
## 7287   60.33 Heterosexual (straight)            Rarely
## 7288   41.73          Gay or lesbian         Sometimes
## 7289   53.52 Heterosexual (straight)            Rarely
## 7290   65.77 Heterosexual (straight)  Most of the time
## 7291   47.63 Heterosexual (straight)            Rarely
## 7292  108.86 Heterosexual (straight)            Rarely
## 7293   72.58 Heterosexual (straight)            Rarely
## 7294   60.78 Heterosexual (straight)            Always
## 7295   50.80 Heterosexual (straight)  Most of the time
## 7296   54.43                Not sure            Always
## 7297   65.77 Heterosexual (straight)         Sometimes
## 7298   81.65 Heterosexual (straight)  Most of the time
## 7299   90.72 Heterosexual (straight)  Most of the time
## 7300   99.79                Not sure  Most of the time
## 7301   57.15 Heterosexual (straight)  Most of the time
## 7302   81.65 Heterosexual (straight)            Rarely
## 7303  112.49                Not sure            Rarely
## 7304   79.83 Heterosexual (straight)         Sometimes
## 7305   63.50                Bisexual            Always
## 7306   74.84 Heterosexual (straight)         Sometimes
## 7307   44.45 Heterosexual (straight)              <NA>
## 7308   92.99 Heterosexual (straight)  Most of the time
## 7309   49.90                Not sure         Sometimes
## 7310   58.97 Heterosexual (straight)            Rarely
## 7311   63.50 Heterosexual (straight)            Always
## 7312   67.13          Some other way            Always
## 7313   64.41 Heterosexual (straight)  Most of the time
## 7314   65.77                Bisexual  Most of the time
## 7315   49.44 Heterosexual (straight)  Most of the time
## 7316   97.52 Heterosexual (straight)             Never
## 7317      NA Heterosexual (straight)  Most of the time
## 7318   90.72 Heterosexual (straight)            Rarely
## 7319  108.86 Heterosexual (straight)            Always
## 7320   81.65 Heterosexual (straight)  Most of the time
## 7321   58.06 Heterosexual (straight)  Most of the time
## 7322   58.06 Heterosexual (straight)             Never
## 7323   72.58 Heterosexual (straight)              <NA>
## 7324      NA Heterosexual (straight)             Never
## 7325   69.40 Heterosexual (straight)            Rarely
## 7326   54.43 Heterosexual (straight)             Never
## 7327  111.13 Heterosexual (straight)         Sometimes
## 7328      NA                Bisexual  Most of the time
## 7329   61.24 Heterosexual (straight)             Never
## 7330   49.44                Bisexual              <NA>
## 7331   63.50 Heterosexual (straight)            Rarely
## 7332   79.38 Heterosexual (straight)  Most of the time
## 7333  108.41 Heterosexual (straight)         Sometimes
## 7334   83.92 Heterosexual (straight)  Most of the time
## 7335   74.84                Not sure         Sometimes
## 7336   75.30          Gay or lesbian            Always
## 7337   63.05 Heterosexual (straight)         Sometimes
## 7338   54.43 Heterosexual (straight)            Rarely
## 7339   50.35 Heterosexual (straight)            Rarely
## 7340   68.04 Heterosexual (straight)             Never
## 7341   53.52          Gay or lesbian            Always
## 7342   92.99 Heterosexual (straight)         Sometimes
## 7343   79.38 Heterosexual (straight)             Never
## 7344  124.74 Heterosexual (straight)             Never
## 7345   95.26 Heterosexual (straight)         Sometimes
## 7346   55.79 Heterosexual (straight)            Rarely
## 7347   75.30 Heterosexual (straight)            Always
## 7348      NA Heterosexual (straight)            Rarely
## 7349   75.30 Heterosexual (straight)             Never
## 7350   49.90 Heterosexual (straight)             Never
## 7351   79.38 Heterosexual (straight)              <NA>
## 7352   90.72                Bisexual  Most of the time
## 7353   72.58 Heterosexual (straight)            Rarely
## 7354   53.07 Heterosexual (straight)  Most of the time
## 7355  113.40 Heterosexual (straight)              <NA>
## 7356   68.04                Not sure         Sometimes
## 7357  113.40 Heterosexual (straight)             Never
## 7358   53.07 Heterosexual (straight)  Most of the time
## 7359   58.97 Heterosexual (straight)         Sometimes
## 7360   74.84          Gay or lesbian            Always
## 7361   62.14 Heterosexual (straight)              <NA>
## 7362  111.13 Heterosexual (straight)             Never
## 7363   77.11 Heterosexual (straight)             Never
## 7364   45.36 Heterosexual (straight)            Rarely
## 7365   62.60 Heterosexual (straight)            Rarely
## 7366   54.43 Heterosexual (straight)            Rarely
## 7367   81.65 Heterosexual (straight)            Always
## 7368   61.24 Heterosexual (straight)            Rarely
## 7369   83.92 Heterosexual (straight)         Sometimes
## 7370   52.62          Gay or lesbian  Most of the time
## 7371      NA Heterosexual (straight)             Never
## 7372   81.65 Heterosexual (straight)             Never
## 7373   72.58 Heterosexual (straight)            Rarely
## 7374   63.50                Bisexual            Rarely
## 7375   75.30 Heterosexual (straight)              <NA>
## 7376   65.32 Heterosexual (straight)         Sometimes
## 7377   89.81                Bisexual            Always
## 7378   73.94                Bisexual         Sometimes
## 7379   61.24 Heterosexual (straight)             Never
## 7380   60.78 Heterosexual (straight)             Never
## 7381   65.77 Heterosexual (straight)            Always
## 7382      NA Heterosexual (straight)            Rarely
## 7383   80.74 Heterosexual (straight)            Rarely
## 7384   64.41 Heterosexual (straight)             Never
## 7385   86.18 Heterosexual (straight)             Never
## 7386   46.27                Bisexual         Sometimes
## 7387  113.40 Heterosexual (straight)             Never
## 7388   66.68 Heterosexual (straight)             Never
## 7389   60.78 Heterosexual (straight)            Rarely
## 7390  119.75 Heterosexual (straight)             Never
## 7391  130.64 Heterosexual (straight)            Always
## 7392   54.43                Bisexual         Sometimes
## 7393   79.38          Some other way            Always
## 7394      NA Heterosexual (straight)         Sometimes
## 7395   83.92 Heterosexual (straight)  Most of the time
## 7396  107.05 Heterosexual (straight)            Rarely
## 7397   88.45 Heterosexual (straight)             Never
## 7398   56.70 Heterosexual (straight)         Sometimes
## 7399   77.11          Gay or lesbian         Sometimes
## 7400   56.70 Heterosexual (straight)  Most of the time
## 7401   81.65 Heterosexual (straight)         Sometimes
## 7402   61.24 Heterosexual (straight)             Never
## 7403   74.84 Heterosexual (straight)            Rarely
## 7404   52.16          Gay or lesbian             Never
## 7405   54.43 Heterosexual (straight)  Most of the time
## 7406   61.24 Heterosexual (straight)             Never
## 7407  104.33 Heterosexual (straight)         Sometimes
## 7408   71.22 Heterosexual (straight)  Most of the time
## 7409  172.37 Heterosexual (straight)             Never
## 7410  102.06 Heterosexual (straight)  Most of the time
## 7411   54.43 Heterosexual (straight)         Sometimes
## 7412   58.97 Heterosexual (straight)             Never
## 7413   56.70 Heterosexual (straight)            Rarely
## 7414   85.28 Heterosexual (straight)         Sometimes
## 7415   72.58 Heterosexual (straight)             Never
## 7416   74.84 Heterosexual (straight)            Rarely
## 7417   68.04 Heterosexual (straight)             Never
## 7418   61.69 Heterosexual (straight)            Rarely
## 7419   58.97 Heterosexual (straight)             Never
## 7420   63.50 Heterosexual (straight)            Rarely
## 7421   52.62 Heterosexual (straight)         Sometimes
## 7422  108.86 Heterosexual (straight)            Rarely
## 7423   36.74 Heterosexual (straight)  Most of the time
## 7424   61.69 Heterosexual (straight)             Never
## 7425   65.77 Heterosexual (straight)            Always
## 7426   66.23 Heterosexual (straight)            Rarely
## 7427   70.31 Heterosexual (straight)         Sometimes
## 7428   61.24 Heterosexual (straight)            Rarely
## 7429   68.04          Some other way              <NA>
## 7430   53.52 Heterosexual (straight)         Sometimes
## 7431   68.95 Heterosexual (straight)              <NA>
## 7432   52.16 Heterosexual (straight)            Rarely
## 7433   55.79 Heterosexual (straight)             Never
## 7434   61.24 Heterosexual (straight)  Most of the time
## 7435   68.04 Heterosexual (straight)             Never
## 7436   99.79 Heterosexual (straight)         Sometimes
## 7437      NA Heterosexual (straight)            Rarely
## 7438   94.35 Heterosexual (straight)             Never
## 7439   53.07 Heterosexual (straight)            Always
## 7440      NA Heterosexual (straight)              <NA>
## 7441   56.70 Heterosexual (straight)         Sometimes
## 7442   48.08          Gay or lesbian         Sometimes
## 7443   63.50 Heterosexual (straight)            Rarely
## 7444   86.18 Heterosexual (straight)         Sometimes
## 7445  127.01 Heterosexual (straight)            Rarely
## 7446   52.16 Heterosexual (straight)            Rarely
## 7447  104.33 Heterosexual (straight)         Sometimes
## 7448   77.11 Heterosexual (straight)             Never
## 7449   81.65 Heterosexual (straight)         Sometimes
## 7450   81.65 Heterosexual (straight)         Sometimes
## 7451   96.16 Heterosexual (straight)         Sometimes
## 7452  131.54 Heterosexual (straight)            Rarely
## 7453      NA          Some other way            Always
## 7454   63.50 Heterosexual (straight)             Never
## 7455   54.43 Heterosexual (straight)            Always
## 7456      NA                Bisexual         Sometimes
## 7457   77.11          Some other way            Always
## 7458   58.97 Heterosexual (straight)            Rarely
## 7459   79.38 Heterosexual (straight)         Sometimes
## 7460   56.70 Heterosexual (straight)             Never
## 7461   95.26 Heterosexual (straight)              <NA>
## 7462   79.38                Bisexual  Most of the time
## 7463  140.62 Heterosexual (straight)            Rarely
## 7464      NA          Gay or lesbian              <NA>
## 7465   79.38 Heterosexual (straight)  Most of the time
## 7466      NA Heterosexual (straight)             Never
## 7467   97.07 Heterosexual (straight)  Most of the time
## 7468   72.58 Heterosexual (straight)             Never
## 7469      NA          Gay or lesbian         Sometimes
## 7470   58.97 Heterosexual (straight)         Sometimes
## 7471   55.34 Heterosexual (straight)            Rarely
## 7472   74.84 Heterosexual (straight)         Sometimes
## 7473   61.24 Heterosexual (straight)            Always
## 7474   90.72 Heterosexual (straight)            Rarely
## 7475   52.62 Heterosexual (straight)         Sometimes
## 7476   63.50                Not sure  Most of the time
## 7477  127.01 Heterosexual (straight)             Never
## 7478  113.40 Heterosexual (straight)            Rarely
## 7479   58.97 Heterosexual (straight)         Sometimes
## 7480   77.11                Not sure         Sometimes
## 7481   82.56 Heterosexual (straight)             Never
## 7482   43.09 Heterosexual (straight)            Rarely
## 7483      NA Heterosexual (straight)            Always
## 7484   48.54 Heterosexual (straight)            Always
## 7485   45.81 Heterosexual (straight)            Rarely
## 7486   54.89 Heterosexual (straight)         Sometimes
## 7487   83.92 Heterosexual (straight)              <NA>
## 7488   69.40 Heterosexual (straight)            Rarely
## 7489  127.01 Heterosexual (straight)             Never
## 7490   79.38 Heterosexual (straight)            Rarely
## 7491   57.15 Heterosexual (straight)         Sometimes
## 7492      NA Heterosexual (straight)             Never
## 7493   79.83 Heterosexual (straight)         Sometimes
## 7494   55.79 Heterosexual (straight)            Rarely
## 7495   81.65 Heterosexual (straight)             Never
## 7496   65.77 Heterosexual (straight)            Rarely
## 7497   54.43                Bisexual         Sometimes
## 7498   74.39 Heterosexual (straight)             Never
## 7499  149.69 Heterosexual (straight)         Sometimes
## 7500   65.77 Heterosexual (straight)  Most of the time
## 7501   68.04 Heterosexual (straight)             Never
## 7502   53.98 Heterosexual (straight)            Always
## 7503   70.31 Heterosexual (straight)         Sometimes
## 7504   92.99 Heterosexual (straight)            Rarely
## 7505   79.38                Bisexual  Most of the time
## 7506   61.24 Heterosexual (straight)             Never
## 7507   68.95 Heterosexual (straight)  Most of the time
## 7508   54.43 Heterosexual (straight)            Always
## 7509   74.84 Heterosexual (straight)            Rarely
## 7510   86.18 Heterosexual (straight)            Always
## 7511   61.24 Heterosexual (straight)             Never
## 7512   52.62 Heterosexual (straight)  Most of the time
## 7513   54.43 Heterosexual (straight)  Most of the time
## 7514   86.18 Heterosexual (straight)             Never
## 7515   53.07 Heterosexual (straight)         Sometimes
## 7516   49.90 Heterosexual (straight)         Sometimes
## 7517   71.67 Heterosexual (straight)            Rarely
## 7518   58.06          Some other way            Always
## 7519   63.50 Heterosexual (straight)         Sometimes
## 7520  161.03 Heterosexual (straight)  Most of the time
## 7521   61.69                Not sure            Always
## 7522   68.04                Bisexual  Most of the time
## 7523   52.16                Bisexual  Most of the time
## 7524   51.26 Heterosexual (straight)  Most of the time
## 7525  106.60 Heterosexual (straight)         Sometimes
## 7526   68.04                Bisexual  Most of the time
## 7527      NA                Not sure         Sometimes
## 7528   49.90 Heterosexual (straight)         Sometimes
## 7529  122.47 Heterosexual (straight)            Always
## 7530   89.36 Heterosexual (straight)  Most of the time
## 7531   51.71 Heterosexual (straight)            Always
## 7532   83.92 Heterosexual (straight)  Most of the time
## 7533      NA Heterosexual (straight)  Most of the time
## 7534   62.14                Bisexual             Never
## 7535   54.43 Heterosexual (straight)  Most of the time
## 7536   58.51 Heterosexual (straight)  Most of the time
## 7537   67.59 Heterosexual (straight)            Rarely
## 7538  104.33 Heterosexual (straight)             Never
## 7539   58.97 Heterosexual (straight)  Most of the time
## 7540  108.86                Bisexual            Always
## 7541   81.65 Heterosexual (straight)              <NA>
## 7542   61.69 Heterosexual (straight)            Always
## 7543   88.45 Heterosexual (straight)            Rarely
## 7544   58.97                Not sure  Most of the time
## 7545   69.85 Heterosexual (straight)             Never
## 7546   44.45 Heterosexual (straight)         Sometimes
## 7547   63.50 Heterosexual (straight)         Sometimes
## 7548   54.43 Heterosexual (straight)            Always
## 7549   65.77 Heterosexual (straight)  Most of the time
## 7550   48.08 Heterosexual (straight)             Never
## 7551      NA                Bisexual         Sometimes
## 7552   68.04 Heterosexual (straight)         Sometimes
## 7553   58.97 Heterosexual (straight)            Always
## 7554   97.52 Heterosexual (straight)            Rarely
## 7555      NA                Bisexual            Always
## 7556   98.43 Heterosexual (straight)         Sometimes
## 7557   81.65 Heterosexual (straight)            Rarely
## 7558   48.99 Heterosexual (straight)            Rarely
## 7559   53.98 Heterosexual (straight)  Most of the time
## 7560   72.58 Heterosexual (straight)            Always
## 7561  113.40                Bisexual         Sometimes
## 7562  115.21 Heterosexual (straight)  Most of the time
## 7563   74.84          Some other way            Always
## 7564   72.58 Heterosexual (straight)            Always
## 7565   78.93 Heterosexual (straight)             Never
## 7566   96.62          Some other way         Sometimes
## 7567   72.58 Heterosexual (straight)  Most of the time
## 7568   48.54 Heterosexual (straight)             Never
## 7569   91.17 Heterosexual (straight)            Rarely
## 7570   80.74 Heterosexual (straight)             Never
## 7571   68.04 Heterosexual (straight)            Rarely
## 7572   56.70 Heterosexual (straight)            Always
## 7573   79.38                Bisexual         Sometimes
## 7574   72.58 Heterosexual (straight)  Most of the time
## 7575   66.23                Bisexual  Most of the time
## 7576   97.98          Some other way            Always
## 7577   90.27                Bisexual  Most of the time
## 7578   58.06                Not sure            Always
## 7579      NA Heterosexual (straight)         Sometimes
## 7580   61.24                Bisexual         Sometimes
## 7581   54.43 Heterosexual (straight)            Rarely
## 7582   76.20 Heterosexual (straight)             Never
## 7583   54.43 Heterosexual (straight)         Sometimes
## 7584   49.90          Some other way         Sometimes
## 7585   46.72                Bisexual         Sometimes
## 7586   79.38 Heterosexual (straight)            Rarely
## 7587   68.04          Some other way            Rarely
## 7588   52.16 Heterosexual (straight)         Sometimes
## 7589   51.71                Bisexual            Always
## 7590   79.38 Heterosexual (straight)             Never
## 7591   81.65                Bisexual         Sometimes
## 7592   44.45                Bisexual            Always
## 7593      NA Heterosexual (straight)         Sometimes
## 7594   60.33                Bisexual  Most of the time
## 7595   65.77 Heterosexual (straight)         Sometimes
## 7596   52.16          Gay or lesbian         Sometimes
## 7597   65.77                Bisexual  Most of the time
## 7598   73.94 Heterosexual (straight)            Rarely
## 7599   63.50                Bisexual  Most of the time
## 7600   79.38 Heterosexual (straight)            Rarely
## 7601   77.11 Heterosexual (straight)             Never
## 7602   72.58 Heterosexual (straight)             Never
## 7603   59.88          Some other way            Always
## 7604   74.84 Heterosexual (straight)  Most of the time
## 7605   63.50 Heterosexual (straight)            Always
## 7606   76.66 Heterosexual (straight)             Never
## 7607   88.91 Heterosexual (straight)         Sometimes
## 7608   68.04 Heterosexual (straight)             Never
## 7609   44.00                Bisexual  Most of the time
## 7610   70.31 Heterosexual (straight)         Sometimes
## 7611   56.70 Heterosexual (straight)  Most of the time
## 7612   55.79                Bisexual            Rarely
## 7613   63.50 Heterosexual (straight)            Always
## 7614  117.94 Heterosexual (straight)         Sometimes
## 7615  106.60 Heterosexual (straight)            Rarely
## 7616   57.61          Gay or lesbian         Sometimes
## 7617   80.29 Heterosexual (straight)            Rarely
## 7618   54.43          Some other way  Most of the time
## 7619   60.78 Heterosexual (straight)  Most of the time
## 7620   99.79          Gay or lesbian  Most of the time
## 7621   54.43 Heterosexual (straight)            Rarely
## 7622   50.35 Heterosexual (straight)            Rarely
## 7623   68.04 Heterosexual (straight)  Most of the time
## 7624   64.86                Bisexual            Always
## 7625   49.90          Some other way            Always
## 7626   67.13          Gay or lesbian         Sometimes
## 7627   52.16 Heterosexual (straight)             Never
## 7628   96.62 Heterosexual (straight)            Rarely
## 7629   50.35 Heterosexual (straight)         Sometimes
## 7630   78.93 Heterosexual (straight)  Most of the time
## 7631   52.16                Bisexual            Rarely
## 7632   61.24 Heterosexual (straight)  Most of the time
## 7633   48.99 Heterosexual (straight)  Most of the time
## 7634   61.24 Heterosexual (straight)         Sometimes
## 7635   54.89 Heterosexual (straight)         Sometimes
## 7636   74.84 Heterosexual (straight)            Rarely
## 7637   79.38 Heterosexual (straight)             Never
## 7638   79.38 Heterosexual (straight)  Most of the time
## 7639   94.35 Heterosexual (straight)            Rarely
## 7640   63.96                Bisexual            Rarely
## 7641   68.04 Heterosexual (straight)            Rarely
## 7642      NA Heterosexual (straight)            Rarely
## 7643   60.33 Heterosexual (straight)         Sometimes
## 7644   68.04 Heterosexual (straight)            Rarely
## 7645   58.97 Heterosexual (straight)            Rarely
## 7646   65.32 Heterosexual (straight)         Sometimes
## 7647  122.47                Not sure            Rarely
## 7648   54.43 Heterosexual (straight)            Always
## 7649   37.20 Heterosexual (straight)         Sometimes
## 7650   56.25 Heterosexual (straight)             Never
## 7651   56.25                Bisexual  Most of the time
## 7652   56.70 Heterosexual (straight)            Rarely
## 7653   80.74 Heterosexual (straight)            Always
## 7654   56.70 Heterosexual (straight)            Rarely
## 7655   86.18 Heterosexual (straight)         Sometimes
## 7656   81.65                Bisexual            Always
## 7657   81.65 Heterosexual (straight)         Sometimes
## 7658   61.24 Heterosexual (straight)         Sometimes
## 7659  102.06                Bisexual            Always
## 7660   65.77 Heterosexual (straight)         Sometimes
## 7661   43.09 Heterosexual (straight)  Most of the time
## 7662   90.72 Heterosexual (straight)            Always
## 7663  113.40 Heterosexual (straight)         Sometimes
## 7664   58.97                Bisexual  Most of the time
## 7665   83.92 Heterosexual (straight)            Rarely
## 7666   58.51                Not sure         Sometimes
## 7667   58.97 Heterosexual (straight)             Never
## 7668   46.72 Heterosexual (straight)            Rarely
## 7669   74.84 Heterosexual (straight)            Rarely
## 7670   70.31 Heterosexual (straight)  Most of the time
## 7671   45.36                Bisexual            Always
## 7672   65.77 Heterosexual (straight)         Sometimes
## 7673   61.24 Heterosexual (straight)             Never
## 7674   64.41 Heterosexual (straight)            Rarely
## 7675   61.69          Gay or lesbian  Most of the time
## 7676   70.31 Heterosexual (straight)  Most of the time
## 7677   56.25                Not sure            Always
## 7678   57.61 Heterosexual (straight)            Rarely
## 7679   48.99 Heterosexual (straight)            Rarely
## 7680   47.63                Not sure  Most of the time
## 7681   68.04 Heterosexual (straight)  Most of the time
## 7682   54.43          Some other way            Always
## 7683   58.97 Heterosexual (straight)         Sometimes
## 7684   73.48 Heterosexual (straight)  Most of the time
## 7685   70.31 Heterosexual (straight)         Sometimes
## 7686   58.97 Heterosexual (straight)         Sometimes
## 7687  104.33 Heterosexual (straight)            Rarely
## 7688   61.24                Bisexual            Always
## 7689      NA Heterosexual (straight)             Never
## 7690  108.86 Heterosexual (straight)             Never
## 7691   52.16 Heterosexual (straight)  Most of the time
## 7692   70.31 Heterosexual (straight)         Sometimes
## 7693   53.52          Some other way  Most of the time
## 7694  114.31 Heterosexual (straight)         Sometimes
## 7695   81.65 Heterosexual (straight)              <NA>
## 7696  108.86 Heterosexual (straight)             Never
## 7697   62.14 Heterosexual (straight)         Sometimes
## 7698  104.33                Bisexual         Sometimes
## 7699   95.26                Bisexual            Always
## 7700      NA Heterosexual (straight)            Always
## 7701   88.45 Heterosexual (straight)         Sometimes
## 7702  111.13 Heterosexual (straight)  Most of the time
## 7703   68.04                Bisexual         Sometimes
## 7704   81.65                Bisexual  Most of the time
## 7705   54.43                Bisexual         Sometimes
## 7706   56.25 Heterosexual (straight)            Rarely
## 7707   64.86 Heterosexual (straight)  Most of the time
## 7708   77.11 Heterosexual (straight)             Never
## 7709   86.18                Bisexual            Always
## 7710  102.06                Bisexual             Never
## 7711   52.62 Heterosexual (straight)  Most of the time
## 7712  102.06 Heterosexual (straight)  Most of the time
## 7713   52.62 Heterosexual (straight)            Rarely
## 7714   78.02                Bisexual             Never
## 7715   63.50          Some other way  Most of the time
## 7716   61.24 Heterosexual (straight)            Rarely
## 7717   65.77 Heterosexual (straight)            Rarely
## 7718   48.08 Heterosexual (straight)  Most of the time
## 7719   48.08 Heterosexual (straight)  Most of the time
## 7720   58.97 Heterosexual (straight)         Sometimes
## 7721   58.97 Heterosexual (straight)            Always
## 7722   79.83                Bisexual         Sometimes
## 7723   65.77 Heterosexual (straight)         Sometimes
## 7724   95.71 Heterosexual (straight)            Rarely
## 7725   68.04 Heterosexual (straight)            Rarely
## 7726   77.11                Bisexual  Most of the time
## 7727   63.50 Heterosexual (straight)            Rarely
## 7728   81.65                Bisexual         Sometimes
## 7729  104.33 Heterosexual (straight)  Most of the time
## 7730   54.43                Not sure  Most of the time
## 7731   92.99                Bisexual         Sometimes
## 7732   62.60 Heterosexual (straight)            Rarely
## 7733   40.82                Bisexual         Sometimes
## 7734   86.18 Heterosexual (straight)         Sometimes
## 7735   90.72 Heterosexual (straight)  Most of the time
## 7736   65.32 Heterosexual (straight)            Always
## 7737   53.98                Bisexual  Most of the time
## 7738   86.18          Gay or lesbian            Always
## 7739   51.71                Bisexual  Most of the time
## 7740   43.09 Heterosexual (straight)            Rarely
## 7741   79.38                Bisexual         Sometimes
## 7742   45.36 Heterosexual (straight)         Sometimes
## 7743   54.89 Heterosexual (straight)            Rarely
## 7744   62.60 Heterosexual (straight)         Sometimes
## 7745   51.71                Bisexual         Sometimes
## 7746   86.18 Heterosexual (straight)             Never
## 7747   99.79                Bisexual  Most of the time
## 7748   61.24 Heterosexual (straight)            Rarely
## 7749   79.38 Heterosexual (straight)             Never
## 7750   56.70 Heterosexual (straight)            Rarely
## 7751   68.95 Heterosexual (straight)         Sometimes
## 7752  144.24 Heterosexual (straight)         Sometimes
## 7753   61.69 Heterosexual (straight)             Never
## 7754   56.70 Heterosexual (straight)  Most of the time
## 7755   65.77                Not sure         Sometimes
## 7756   48.54 Heterosexual (straight)  Most of the time
## 7757   56.70                Bisexual  Most of the time
## 7758   83.01                Bisexual  Most of the time
## 7759      NA Heterosexual (straight)         Sometimes
## 7760   81.65 Heterosexual (straight)         Sometimes
## 7761   58.97                Bisexual            Always
## 7762      NA                Not sure             Never
## 7763   58.51          Gay or lesbian            Always
## 7764  109.77                Bisexual  Most of the time
## 7765   73.03 Heterosexual (straight)  Most of the time
## 7766   52.16 Heterosexual (straight)            Rarely
## 7767   92.99 Heterosexual (straight)         Sometimes
## 7768   85.73                Not sure            Rarely
## 7769  106.60 Heterosexual (straight)         Sometimes
## 7770   86.18 Heterosexual (straight)            Rarely
## 7771   58.97 Heterosexual (straight)         Sometimes
## 7772   59.42 Heterosexual (straight)         Sometimes
## 7773   99.79 Heterosexual (straight)  Most of the time
## 7774   54.43 Heterosexual (straight)  Most of the time
## 7775   74.84 Heterosexual (straight)         Sometimes
## 7776   54.43 Heterosexual (straight)         Sometimes
## 7777   63.50                Bisexual            Rarely
## 7778   49.90 Heterosexual (straight)            Rarely
## 7779   73.94 Heterosexual (straight)            Rarely
## 7780      NA Heterosexual (straight)  Most of the time
## 7781   56.70 Heterosexual (straight)            Rarely
## 7782   58.06 Heterosexual (straight)  Most of the time
## 7783   77.11 Heterosexual (straight)  Most of the time
## 7784   90.72 Heterosexual (straight)         Sometimes
## 7785   85.28 Heterosexual (straight)            Rarely
## 7786   47.63                Bisexual  Most of the time
## 7787   72.58 Heterosexual (straight)         Sometimes
## 7788   62.60 Heterosexual (straight)  Most of the time
## 7789   95.26 Heterosexual (straight)         Sometimes
## 7790  112.49                Bisexual  Most of the time
## 7791   63.50 Heterosexual (straight)  Most of the time
## 7792   68.04 Heterosexual (straight)         Sometimes
## 7793   70.31 Heterosexual (straight)             Never
## 7794   62.60 Heterosexual (straight)            Rarely
## 7795   65.77 Heterosexual (straight)  Most of the time
## 7796   61.69                Not sure  Most of the time
## 7797  131.09                Bisexual  Most of the time
## 7798   65.77 Heterosexual (straight)             Never
## 7799  131.54 Heterosexual (straight)  Most of the time
## 7800   77.11                Bisexual            Rarely
## 7801   86.18 Heterosexual (straight)              <NA>
## 7802   47.63          Some other way  Most of the time
## 7803  115.67                Bisexual         Sometimes
## 7804   72.58 Heterosexual (straight)            Rarely
## 7805   55.79                Bisexual         Sometimes
## 7806   74.84 Heterosexual (straight)             Never
## 7807   61.24 Heterosexual (straight)            Rarely
## 7808   53.52 Heterosexual (straight)         Sometimes
## 7809   53.98 Heterosexual (straight)         Sometimes
## 7810   57.61 Heterosexual (straight)  Most of the time
## 7811      NA Heterosexual (straight)         Sometimes
## 7812   63.50 Heterosexual (straight)         Sometimes
## 7813   79.38                Bisexual            Rarely
## 7814   81.65 Heterosexual (straight)            Always
## 7815   45.36 Heterosexual (straight)  Most of the time
## 7816   66.23 Heterosexual (straight)            Rarely
## 7817   54.43 Heterosexual (straight)         Sometimes
## 7818   57.61 Heterosexual (straight)             Never
## 7819   52.16 Heterosexual (straight)              <NA>
## 7820   68.04 Heterosexual (straight)         Sometimes
## 7821   83.92 Heterosexual (straight)            Rarely
## 7822   56.70 Heterosexual (straight)         Sometimes
## 7823   73.94 Heterosexual (straight)         Sometimes
## 7824   94.35 Heterosexual (straight)            Always
## 7825   68.04 Heterosexual (straight)         Sometimes
## 7826   79.38 Heterosexual (straight)  Most of the time
## 7827   77.11 Heterosexual (straight)            Rarely
## 7828   69.85 Heterosexual (straight)  Most of the time
## 7829   63.50                Not sure         Sometimes
## 7830   90.72          Some other way         Sometimes
## 7831   54.43 Heterosexual (straight)         Sometimes
## 7832   74.84 Heterosexual (straight)         Sometimes
## 7833   65.77 Heterosexual (straight)             Never
## 7834  105.24 Heterosexual (straight)  Most of the time
## 7835   49.44 Heterosexual (straight)         Sometimes
## 7836   78.47                Bisexual         Sometimes
## 7837   68.04                Bisexual         Sometimes
## 7838   81.65                Bisexual         Sometimes
## 7839   72.58 Heterosexual (straight)            Rarely
## 7840   68.04          Gay or lesbian            Always
## 7841  106.60 Heterosexual (straight)            Always
## 7842   70.31 Heterosexual (straight)             Never
## 7843   96.62                Not sure  Most of the time
## 7844  116.58 Heterosexual (straight)  Most of the time
## 7845   74.84 Heterosexual (straight)            Rarely
## 7846   58.51                Bisexual            Always
## 7847   48.08 Heterosexual (straight)  Most of the time
## 7848   77.11 Heterosexual (straight)         Sometimes
## 7849   69.85 Heterosexual (straight)             Never
## 7850   79.38          Gay or lesbian         Sometimes
## 7851      NA                Not sure         Sometimes
## 7852  117.94 Heterosexual (straight)  Most of the time
## 7853   58.97                Bisexual  Most of the time
## 7854   77.11                Bisexual  Most of the time
## 7855   52.16 Heterosexual (straight)         Sometimes
## 7856   68.04                Bisexual  Most of the time
## 7857   66.68 Heterosexual (straight)            Rarely
## 7858   79.38                Bisexual         Sometimes
## 7859   65.77 Heterosexual (straight)            Rarely
## 7860   69.85 Heterosexual (straight)  Most of the time
## 7861  111.13 Heterosexual (straight)             Never
## 7862   62.60          Gay or lesbian             Never
## 7863   74.84 Heterosexual (straight)              <NA>
## 7864   68.04                Bisexual         Sometimes
## 7865  122.47 Heterosexual (straight)             Never
## 7866   80.29 Heterosexual (straight)         Sometimes
## 7867   45.36          Some other way  Most of the time
## 7868   49.44                Bisexual         Sometimes
## 7869   48.99 Heterosexual (straight)         Sometimes
## 7870   88.45 Heterosexual (straight)         Sometimes
## 7871   64.41                Bisexual  Most of the time
## 7872   49.90 Heterosexual (straight)         Sometimes
## 7873   54.43 Heterosexual (straight)         Sometimes
## 7874   50.35                Bisexual         Sometimes
## 7875   61.69 Heterosexual (straight)            Always
## 7876   63.05 Heterosexual (straight)            Rarely
## 7877   67.13 Heterosexual (straight)             Never
## 7878   61.24 Heterosexual (straight)         Sometimes
## 7879   63.50 Heterosexual (straight)            Rarely
## 7880   84.37 Heterosexual (straight)            Rarely
## 7881   53.07 Heterosexual (straight)             Never
## 7882   83.92 Heterosexual (straight)             Never
## 7883   58.97 Heterosexual (straight)         Sometimes
## 7884   72.58                Bisexual            Always
## 7885   49.90          Some other way         Sometimes
## 7886   77.11 Heterosexual (straight)  Most of the time
## 7887      NA Heterosexual (straight)            Rarely
## 7888   72.58 Heterosexual (straight)         Sometimes
## 7889   47.63 Heterosexual (straight)            Rarely
## 7890   54.43 Heterosexual (straight)         Sometimes
## 7891   54.43          Some other way            Always
## 7892   75.30 Heterosexual (straight)             Never
## 7893   89.36 Heterosexual (straight)  Most of the time
## 7894   52.16 Heterosexual (straight)             Never
## 7895   45.36 Heterosexual (straight)            Always
## 7896   46.72 Heterosexual (straight)            Rarely
## 7897   54.43                Bisexual         Sometimes
## 7898   86.18 Heterosexual (straight)         Sometimes
## 7899   61.24 Heterosexual (straight)         Sometimes
## 7900   67.13 Heterosexual (straight)            Rarely
## 7901      NA Heterosexual (straight)             Never
## 7902   74.84                Bisexual  Most of the time
## 7903   78.02 Heterosexual (straight)  Most of the time
## 7904  113.40 Heterosexual (straight)            Rarely
## 7905   53.52 Heterosexual (straight)            Rarely
## 7906   63.50          Gay or lesbian            Always
## 7907   64.86 Heterosexual (straight)  Most of the time
## 7908   46.72 Heterosexual (straight)  Most of the time
## 7909  111.13 Heterosexual (straight)         Sometimes
## 7910   64.41 Heterosexual (straight)            Rarely
## 7911   54.43 Heterosexual (straight)            Rarely
## 7912   90.72                Bisexual            Always
## 7913   64.86 Heterosexual (straight)            Rarely
## 7914   71.67 Heterosexual (straight)             Never
## 7915   50.80 Heterosexual (straight)             Never
## 7916   69.85 Heterosexual (straight)             Never
## 7917   56.70 Heterosexual (straight)             Never
## 7918   88.45 Heterosexual (straight)         Sometimes
## 7919   67.13 Heterosexual (straight)            Rarely
## 7920   74.84 Heterosexual (straight)         Sometimes
## 7921   87.54          Some other way  Most of the time
## 7922   95.26 Heterosexual (straight)             Never
## 7923   88.45 Heterosexual (straight)            Rarely
## 7924   90.72 Heterosexual (straight)             Never
## 7925   99.79 Heterosexual (straight)            Rarely
## 7926   77.11 Heterosexual (straight)            Rarely
## 7927   95.26 Heterosexual (straight)            Rarely
## 7928   51.26 Heterosexual (straight)            Always
## 7929  102.06 Heterosexual (straight)            Rarely
## 7930   76.20 Heterosexual (straight)  Most of the time
## 7931  106.60 Heterosexual (straight)  Most of the time
## 7932      NA                Not sure            Rarely
## 7933  160.12 Heterosexual (straight)  Most of the time
## 7934   63.50 Heterosexual (straight)             Never
## 7935  100.25 Heterosexual (straight)         Sometimes
## 7936   95.26 Heterosexual (straight)            Always
## 7937   74.39 Heterosexual (straight)            Rarely
## 7938   71.67 Heterosexual (straight)         Sometimes
## 7939   88.91                Not sure  Most of the time
## 7940   63.50 Heterosexual (straight)            Rarely
## 7941   62.14 Heterosexual (straight)  Most of the time
## 7942   45.81 Heterosexual (straight)            Rarely
## 7943   49.44 Heterosexual (straight)         Sometimes
## 7944   86.18 Heterosexual (straight)  Most of the time
## 7945   83.01 Heterosexual (straight)             Never
## 7946   48.99 Heterosexual (straight)  Most of the time
## 7947   81.65 Heterosexual (straight)         Sometimes
## 7948   81.65 Heterosexual (straight)             Never
## 7949   68.04                Bisexual            Always
## 7950   74.84 Heterosexual (straight)         Sometimes
## 7951   70.31 Heterosexual (straight)            Rarely
## 7952   71.67 Heterosexual (straight)            Rarely
## 7953   68.04 Heterosexual (straight)         Sometimes
## 7954   91.17 Heterosexual (straight)             Never
## 7955  113.40                Bisexual            Always
## 7956  108.86 Heterosexual (straight)             Never
## 7957   40.82 Heterosexual (straight)         Sometimes
## 7958   72.58 Heterosexual (straight)             Never
## 7959   97.52 Heterosexual (straight)  Most of the time
## 7960   58.51 Heterosexual (straight)         Sometimes
## 7961   61.24 Heterosexual (straight)         Sometimes
## 7962   54.43 Heterosexual (straight)         Sometimes
## 7963   49.90 Heterosexual (straight)         Sometimes
## 7964  110.22 Heterosexual (straight)             Never
## 7965   47.63 Heterosexual (straight)         Sometimes
## 7966   74.84 Heterosexual (straight)         Sometimes
## 7967   73.48 Heterosexual (straight)            Always
## 7968      NA Heterosexual (straight)            Rarely
## 7969   83.92 Heterosexual (straight)            Always
## 7970   68.04 Heterosexual (straight)         Sometimes
## 7971   82.56                Bisexual            Always
## 7972   77.11 Heterosexual (straight)            Rarely
## 7973   86.18 Heterosexual (straight)             Never
## 7974   61.24 Heterosexual (straight)             Never
## 7975   56.70 Heterosexual (straight)            Rarely
## 7976   62.60 Heterosexual (straight)             Never
## 7977   72.58 Heterosexual (straight)              <NA>
## 7978   86.18                Bisexual  Most of the time
## 7979  141.98 Heterosexual (straight)         Sometimes
## 7980   67.59                Bisexual  Most of the time
## 7981  108.41                Bisexual  Most of the time
## 7982   56.70          Gay or lesbian  Most of the time
## 7983   61.24 Heterosexual (straight)  Most of the time
## 7984   54.43 Heterosexual (straight)             Never
## 7985   91.17 Heterosexual (straight)            Always
## 7986  104.33 Heterosexual (straight)            Rarely
## 7987   54.43 Heterosexual (straight)  Most of the time
## 7988  127.01 Heterosexual (straight)  Most of the time
## 7989   79.38 Heterosexual (straight)            Rarely
## 7990  113.40          Gay or lesbian  Most of the time
## 7991   61.24 Heterosexual (straight)            Rarely
## 7992   99.79                Bisexual  Most of the time
## 7993   61.69 Heterosexual (straight)         Sometimes
## 7994   88.00 Heterosexual (straight)         Sometimes
## 7995   45.36                Bisexual         Sometimes
## 7996   61.24 Heterosexual (straight)             Never
## 7997   70.31 Heterosexual (straight)  Most of the time
## 7998   68.04 Heterosexual (straight)            Rarely
## 7999   52.16 Heterosexual (straight)         Sometimes
## 8000   81.65 Heterosexual (straight)             Never
## 8001   68.04 Heterosexual (straight)             Never
## 8002   84.82 Heterosexual (straight)  Most of the time
## 8003   58.06 Heterosexual (straight)  Most of the time
## 8004   63.50                Bisexual  Most of the time
## 8005   95.26                Not sure         Sometimes
## 8006   49.90                Not sure             Never
## 8007   51.26 Heterosexual (straight)         Sometimes
## 8008   64.41          Gay or lesbian            Always
## 8009  129.28                Bisexual         Sometimes
## 8010   40.82 Heterosexual (straight)         Sometimes
## 8011   74.84 Heterosexual (straight)             Never
## 8012   70.31                Bisexual            Rarely
## 8013   63.96 Heterosexual (straight)  Most of the time
## 8014   52.16 Heterosexual (straight)         Sometimes
## 8015      NA Heterosexual (straight)         Sometimes
## 8016   58.97                Bisexual  Most of the time
## 8017   68.04 Heterosexual (straight)         Sometimes
## 8018   58.97 Heterosexual (straight)              <NA>
## 8019   45.36                Bisexual  Most of the time
## 8020  176.45                Not sure            Always
## 8021   97.52          Some other way         Sometimes
## 8022      NA                Not sure  Most of the time
## 8023   52.16 Heterosexual (straight)             Never
## 8024   70.31 Heterosexual (straight)  Most of the time
## 8025   56.70 Heterosexual (straight)            Rarely
## 8026   52.62 Heterosexual (straight)            Rarely
## 8027   69.85                Bisexual              <NA>
## 8028   63.96 Heterosexual (straight)         Sometimes
## 8029   63.50                Bisexual  Most of the time
## 8030   54.43                Bisexual  Most of the time
## 8031      NA Heterosexual (straight)         Sometimes
## 8032   72.58 Heterosexual (straight)         Sometimes
## 8033   84.37 Heterosexual (straight)  Most of the time
## 8034   55.79          Some other way  Most of the time
## 8035   31.30 Heterosexual (straight)         Sometimes
## 8036   83.92 Heterosexual (straight)            Always
## 8037   77.11                Bisexual  Most of the time
## 8038   64.86 Heterosexual (straight)            Rarely
## 8039   84.82 Heterosexual (straight)         Sometimes
## 8040   57.15                Bisexual  Most of the time
## 8041   64.86          Gay or lesbian         Sometimes
## 8042   74.84 Heterosexual (straight)         Sometimes
## 8043  117.94 Heterosexual (straight)             Never
## 8044   68.04 Heterosexual (straight)         Sometimes
## 8045   47.63                Bisexual            Always
## 8046   74.84 Heterosexual (straight)  Most of the time
## 8047   54.43          Some other way         Sometimes
## 8048   65.77 Heterosexual (straight)            Rarely
## 8049   56.70 Heterosexual (straight)         Sometimes
## 8050   72.58          Gay or lesbian            Rarely
## 8051   77.11 Heterosexual (straight)            Always
## 8052   81.65                Not sure         Sometimes
## 8053   79.83          Some other way         Sometimes
## 8054   59.88                Bisexual  Most of the time
## 8055   76.66                Bisexual            Always
## 8056   54.43 Heterosexual (straight)  Most of the time
## 8057   89.81 Heterosexual (straight)         Sometimes
## 8058   79.38 Heterosexual (straight)  Most of the time
## 8059   81.65                Bisexual  Most of the time
## 8060   74.84 Heterosexual (straight)         Sometimes
## 8061   67.59 Heterosexual (straight)            Always
## 8062   58.97 Heterosexual (straight)             Never
## 8063   63.50 Heterosexual (straight)            Rarely
## 8064   81.65 Heterosexual (straight)  Most of the time
## 8065   77.11 Heterosexual (straight)             Never
## 8066   63.50 Heterosexual (straight)            Always
## 8067   81.19                Not sure            Rarely
## 8068      NA Heterosexual (straight)         Sometimes
## 8069   63.50 Heterosexual (straight)             Never
## 8070   61.24                Not sure  Most of the time
## 8071   99.79                Bisexual  Most of the time
## 8072   58.97 Heterosexual (straight)  Most of the time
## 8073   98.88          Some other way         Sometimes
## 8074   55.79 Heterosexual (straight)  Most of the time
## 8075   49.90 Heterosexual (straight)  Most of the time
## 8076      NA                Bisexual            Rarely
## 8077   61.24 Heterosexual (straight)  Most of the time
## 8078  133.36 Heterosexual (straight)             Never
## 8079   63.50 Heterosexual (straight)             Never
## 8080   99.79                Bisexual  Most of the time
## 8081      NA          Some other way         Sometimes
## 8082  104.33 Heterosexual (straight)            Rarely
## 8083   52.16                Bisexual  Most of the time
## 8084   61.24 Heterosexual (straight)            Rarely
## 8085  102.06 Heterosexual (straight)         Sometimes
## 8086   96.16 Heterosexual (straight)         Sometimes
## 8087   69.40 Heterosexual (straight)         Sometimes
## 8088  117.94 Heterosexual (straight)            Rarely
## 8089   75.30 Heterosexual (straight)         Sometimes
## 8090  106.60 Heterosexual (straight)            Rarely
## 8091  121.11 Heterosexual (straight)            Rarely
## 8092   95.26                Bisexual            Rarely
## 8093   85.28 Heterosexual (straight)            Rarely
## 8094   83.92 Heterosexual (straight)         Sometimes
## 8095   74.39                Bisexual            Always
## 8096   58.97 Heterosexual (straight)  Most of the time
## 8097   68.95          Gay or lesbian            Always
## 8098   65.77 Heterosexual (straight)         Sometimes
## 8099   68.04 Heterosexual (straight)            Always
## 8100  124.74 Heterosexual (straight)             Never
## 8101   49.90                Bisexual            Always
## 8102   68.95 Heterosexual (straight)            Rarely
## 8103   89.81          Gay or lesbian            Rarely
## 8104   53.52 Heterosexual (straight)  Most of the time
## 8105   86.18 Heterosexual (straight)         Sometimes
## 8106   65.77                Bisexual         Sometimes
## 8107   86.18 Heterosexual (straight)             Never
## 8108   61.69 Heterosexual (straight)             Never
## 8109      NA Heterosexual (straight)             Never
## 8110   58.97 Heterosexual (straight)         Sometimes
## 8111      NA                Bisexual            Rarely
## 8112   61.24 Heterosexual (straight)         Sometimes
## 8113      NA Heterosexual (straight)             Never
## 8114   65.77 Heterosexual (straight)  Most of the time
## 8115   73.94 Heterosexual (straight)  Most of the time
## 8116   95.26 Heterosexual (straight)         Sometimes
## 8117  113.40 Heterosexual (straight)         Sometimes
## 8118   44.91          Some other way  Most of the time
## 8119   68.04 Heterosexual (straight)            Rarely
## 8120      NA Heterosexual (straight)            Rarely
## 8121   46.72 Heterosexual (straight)         Sometimes
## 8122   56.70                Bisexual            Always
## 8123   54.43 Heterosexual (straight)         Sometimes
## 8124   68.04 Heterosexual (straight)             Never
## 8125      NA                Not sure  Most of the time
## 8126      NA          Some other way              <NA>
## 8127   97.52 Heterosexual (straight)         Sometimes
## 8128   66.68 Heterosexual (straight)            Rarely
## 8129      NA                Bisexual  Most of the time
## 8130  127.01                Bisexual  Most of the time
## 8131      NA                Bisexual             Never
## 8132   71.22 Heterosexual (straight)            Rarely
## 8133   63.50 Heterosexual (straight)         Sometimes
## 8134   72.58 Heterosexual (straight)         Sometimes
## 8135   56.25 Heterosexual (straight)         Sometimes
## 8136   62.60 Heterosexual (straight)  Most of the time
## 8137   49.90 Heterosexual (straight)         Sometimes
## 8138   61.24 Heterosexual (straight)            Rarely
## 8139   72.58          Gay or lesbian  Most of the time
## 8140   54.89 Heterosexual (straight)         Sometimes
## 8141  104.33                Bisexual         Sometimes
## 8142   48.08 Heterosexual (straight)  Most of the time
## 8143   36.29          Some other way              <NA>
## 8144   52.16          Gay or lesbian  Most of the time
## 8145  108.86 Heterosexual (straight)            Rarely
## 8146   80.74 Heterosexual (straight)            Rarely
## 8147   72.58 Heterosexual (straight)         Sometimes
## 8148   63.50 Heterosexual (straight)             Never
## 8149   86.18 Heterosexual (straight)         Sometimes
## 8150   96.62 Heterosexual (straight)         Sometimes
## 8151   65.77 Heterosexual (straight)         Sometimes
## 8152   90.72 Heterosexual (straight)  Most of the time
## 8153   52.16                Not sure            Rarely
## 8154   65.77 Heterosexual (straight)            Rarely
## 8155   53.52 Heterosexual (straight)  Most of the time
## 8156   65.77 Heterosexual (straight)         Sometimes
## 8157   90.72 Heterosexual (straight)  Most of the time
## 8158   63.50 Heterosexual (straight)  Most of the time
## 8159   54.43                Bisexual            Rarely
## 8160  107.96 Heterosexual (straight)  Most of the time
## 8161   58.51 Heterosexual (straight)            Rarely
## 8162   83.92 Heterosexual (straight)            Rarely
## 8163  127.01 Heterosexual (straight)         Sometimes
## 8164   58.97 Heterosexual (straight)            Rarely
## 8165   63.50 Heterosexual (straight)             Never
## 8166   49.90 Heterosexual (straight)            Rarely
## 8167   84.37                Not sure             Never
## 8168   64.41 Heterosexual (straight)            Rarely
## 8169   69.85                Bisexual            Rarely
## 8170  113.40 Heterosexual (straight)  Most of the time
## 8171   81.65 Heterosexual (straight)            Rarely
## 8172   59.42 Heterosexual (straight)            Rarely
## 8173   65.77 Heterosexual (straight)         Sometimes
## 8174   65.77 Heterosexual (straight)  Most of the time
## 8175      NA Heterosexual (straight)            Rarely
## 8176   63.50 Heterosexual (straight)         Sometimes
## 8177      NA Heterosexual (straight)  Most of the time
## 8178   90.72                Not sure  Most of the time
## 8179   59.42 Heterosexual (straight)            Rarely
## 8180  104.33 Heterosexual (straight)         Sometimes
## 8181   60.78                Bisexual  Most of the time
## 8182   62.60          Gay or lesbian            Rarely
## 8183   65.77 Heterosexual (straight)             Never
## 8184  113.85 Heterosexual (straight)            Rarely
## 8185   77.11                Bisexual  Most of the time
## 8186   66.23          Gay or lesbian            Always
## 8187   52.16 Heterosexual (straight)             Never
## 8188   73.94 Heterosexual (straight)         Sometimes
## 8189   68.95 Heterosexual (straight)             Never
## 8190   53.52                Bisexual  Most of the time
## 8191   49.90 Heterosexual (straight)         Sometimes
## 8192   50.35 Heterosexual (straight)            Rarely
## 8193  124.74 Heterosexual (straight)            Rarely
## 8194   81.65 Heterosexual (straight)         Sometimes
## 8195   48.08 Heterosexual (straight)              <NA>
## 8196  115.67                Bisexual         Sometimes
## 8197   45.36 Heterosexual (straight)             Never
## 8198   63.50 Heterosexual (straight)         Sometimes
## 8199   70.31 Heterosexual (straight)             Never
## 8200   90.72          Some other way            Rarely
## 8201   51.26                Bisexual  Most of the time
## 8202   56.70 Heterosexual (straight)         Sometimes
## 8203   68.04 Heterosexual (straight)             Never
## 8204   61.24 Heterosexual (straight)         Sometimes
## 8205   83.92 Heterosexual (straight)  Most of the time
## 8206   72.58 Heterosexual (straight)            Rarely
## 8207   99.79 Heterosexual (straight)  Most of the time
## 8208   83.92 Heterosexual (straight)             Never
## 8209   58.97 Heterosexual (straight)  Most of the time
## 8210   72.58 Heterosexual (straight)         Sometimes
## 8211   53.07 Heterosexual (straight)         Sometimes
## 8212   86.18          Gay or lesbian  Most of the time
## 8213   45.36 Heterosexual (straight)         Sometimes
## 8214   57.61 Heterosexual (straight)         Sometimes
## 8215   52.16 Heterosexual (straight)         Sometimes
## 8216   70.31 Heterosexual (straight)            Rarely
## 8217   68.04 Heterosexual (straight)  Most of the time
## 8218   79.38          Some other way             Never
## 8219   74.84 Heterosexual (straight)  Most of the time
## 8220   55.79                Bisexual  Most of the time
## 8221      NA                Bisexual         Sometimes
## 8222   86.18 Heterosexual (straight)             Never
## 8223   68.04 Heterosexual (straight)            Rarely
## 8224   65.77 Heterosexual (straight)  Most of the time
## 8225   52.62 Heterosexual (straight)            Rarely
## 8226   90.72 Heterosexual (straight)             Never
## 8227   77.11                Bisexual         Sometimes
## 8228   42.18 Heterosexual (straight)  Most of the time
## 8229  111.13 Heterosexual (straight)         Sometimes
## 8230   83.46 Heterosexual (straight)             Never
## 8231   81.65 Heterosexual (straight)            Always
## 8232   70.31 Heterosexual (straight)         Sometimes
## 8233   79.38 Heterosexual (straight)  Most of the time
## 8234   56.70 Heterosexual (straight)  Most of the time
## 8235   81.65          Some other way  Most of the time
## 8236   69.40                Bisexual         Sometimes
## 8237   66.68 Heterosexual (straight)            Rarely
## 8238   59.42                Not sure         Sometimes
## 8239   58.97 Heterosexual (straight)            Rarely
## 8240   53.07 Heterosexual (straight)            Rarely
## 8241   81.65 Heterosexual (straight)            Rarely
## 8242   56.70 Heterosexual (straight)  Most of the time
## 8243   82.10 Heterosexual (straight)            Rarely
## 8244   57.61 Heterosexual (straight)  Most of the time
## 8245   46.72 Heterosexual (straight)  Most of the time
## 8246   79.38 Heterosexual (straight)         Sometimes
## 8247   82.56 Heterosexual (straight)  Most of the time
## 8248   90.72                Bisexual  Most of the time
## 8249   65.77                Bisexual            Always
## 8250   62.60 Heterosexual (straight)         Sometimes
## 8251   62.60 Heterosexual (straight)  Most of the time
## 8252   47.63 Heterosexual (straight)         Sometimes
## 8253   63.50 Heterosexual (straight)            Rarely
## 8254   72.58 Heterosexual (straight)  Most of the time
## 8255   54.43 Heterosexual (straight)         Sometimes
## 8256   68.04 Heterosexual (straight)            Rarely
## 8257   58.97 Heterosexual (straight)         Sometimes
## 8258   68.04 Heterosexual (straight)  Most of the time
## 8259   65.77                Bisexual            Always
## 8260   45.36                Bisexual  Most of the time
## 8261   81.65 Heterosexual (straight)  Most of the time
## 8262   54.43 Heterosexual (straight)         Sometimes
## 8263   72.58          Gay or lesbian  Most of the time
## 8264   53.52 Heterosexual (straight)            Always
## 8265   51.71                Bisexual         Sometimes
## 8266   58.97 Heterosexual (straight)            Always
## 8267   56.70 Heterosexual (straight)  Most of the time
## 8268   65.77 Heterosexual (straight)  Most of the time
## 8269   81.65 Heterosexual (straight)            Rarely
## 8270   56.70 Heterosexual (straight)         Sometimes
## 8271   79.38 Heterosexual (straight)             Never
## 8272   52.16 Heterosexual (straight)             Never
## 8273   54.43 Heterosexual (straight)         Sometimes
## 8274   77.11 Heterosexual (straight)             Never
## 8275   63.05 Heterosexual (straight)  Most of the time
## 8276   52.16                Not sure            Rarely
## 8277   44.45                Not sure         Sometimes
## 8278   98.88 Heterosexual (straight)         Sometimes
## 8279  122.93 Heterosexual (straight)         Sometimes
## 8280   63.50 Heterosexual (straight)         Sometimes
## 8281   55.34 Heterosexual (straight)  Most of the time
## 8282   68.04 Heterosexual (straight)             Never
## 8283   74.39                Not sure              <NA>
## 8284   61.24          Gay or lesbian            Always
## 8285   61.69 Heterosexual (straight)             Never
## 8286   79.38 Heterosexual (straight)            Rarely
## 8287   59.42 Heterosexual (straight)            Rarely
## 8288  127.01 Heterosexual (straight)            Rarely
## 8289   49.90                Bisexual         Sometimes
## 8290   72.58          Gay or lesbian  Most of the time
## 8291  129.28 Heterosexual (straight)  Most of the time
## 8292   47.63 Heterosexual (straight)         Sometimes
## 8293   61.24 Heterosexual (straight)            Rarely
## 8294   56.70 Heterosexual (straight)             Never
## 8295   61.24 Heterosexual (straight)  Most of the time
## 8296   58.06 Heterosexual (straight)  Most of the time
## 8297   93.44                Bisexual         Sometimes
## 8298      NA                Bisexual         Sometimes
## 8299   47.63 Heterosexual (straight)            Rarely
## 8300   61.24 Heterosexual (straight)            Rarely
## 8301  121.56                Bisexual         Sometimes
## 8302   42.18                Bisexual         Sometimes
## 8303   54.43 Heterosexual (straight)             Never
## 8304   74.84 Heterosexual (straight)         Sometimes
## 8305   61.24                Bisexual  Most of the time
## 8306   56.70 Heterosexual (straight)  Most of the time
## 8307  151.96 Heterosexual (straight)            Rarely
## 8308   90.72 Heterosexual (straight)         Sometimes
## 8309  104.33 Heterosexual (straight)             Never
## 8310   61.24 Heterosexual (straight)  Most of the time
## 8311   68.04 Heterosexual (straight)  Most of the time
## 8312      NA Heterosexual (straight)            Always
## 8313   63.50 Heterosexual (straight)            Rarely
## 8314   86.18                Not sure            Always
## 8315   63.50 Heterosexual (straight)            Rarely
## 8316  104.33 Heterosexual (straight)            Always
## 8317   94.35                Bisexual  Most of the time
## 8318   68.04 Heterosexual (straight)            Rarely
## 8319   72.58 Heterosexual (straight)  Most of the time
## 8320   65.77                Bisexual         Sometimes
## 8321   56.70                Bisexual            Always
## 8322   68.04                Bisexual            Always
## 8323  106.14                Not sure         Sometimes
## 8324   56.70                Bisexual  Most of the time
## 8325   47.63 Heterosexual (straight)  Most of the time
## 8326      NA                Not sure            Rarely
## 8327  104.33 Heterosexual (straight)  Most of the time
## 8328   81.65                Bisexual  Most of the time
## 8329   63.05 Heterosexual (straight)            Always
## 8330   97.52 Heterosexual (straight)         Sometimes
## 8331   73.94 Heterosexual (straight)             Never
## 8332   56.70 Heterosexual (straight)         Sometimes
## 8333   79.38 Heterosexual (straight)  Most of the time
## 8334   57.15                Bisexual         Sometimes
## 8335   97.52 Heterosexual (straight)         Sometimes
## 8336   87.09 Heterosexual (straight)         Sometimes
## 8337   54.43 Heterosexual (straight)         Sometimes
## 8338   61.24 Heterosexual (straight)            Rarely
## 8339   56.25 Heterosexual (straight)  Most of the time
## 8340   70.31 Heterosexual (straight)            Always
## 8341   72.58 Heterosexual (straight)  Most of the time
## 8342   62.14                Bisexual  Most of the time
## 8343   49.90 Heterosexual (straight)  Most of the time
## 8344   86.18 Heterosexual (straight)  Most of the time
## 8345   49.90                Bisexual  Most of the time
## 8346   52.16 Heterosexual (straight)  Most of the time
## 8347      NA                Bisexual            Always
## 8348   90.72                Not sure            Always
## 8349   74.84 Heterosexual (straight)  Most of the time
## 8350   79.38 Heterosexual (straight)         Sometimes
## 8351   60.33 Heterosexual (straight)             Never
## 8352  131.09 Heterosexual (straight)             Never
## 8353   55.34 Heterosexual (straight)            Rarely
## 8354   48.54          Some other way            Always
## 8355   58.97 Heterosexual (straight)            Rarely
## 8356  115.21          Some other way         Sometimes
## 8357   88.45 Heterosexual (straight)         Sometimes
## 8358   74.84                Bisexual            Always
## 8359   69.85 Heterosexual (straight)            Rarely
## 8360   90.72 Heterosexual (straight)  Most of the time
## 8361   90.72 Heterosexual (straight)             Never
## 8362   61.24                Bisexual            Always
## 8363   48.08                Bisexual            Always
## 8364   80.74                Not sure  Most of the time
## 8365   77.11 Heterosexual (straight)             Never
## 8366   47.63 Heterosexual (straight)         Sometimes
## 8367   72.58 Heterosexual (straight)            Rarely
## 8368   95.26 Heterosexual (straight)             Never
## 8369   72.58 Heterosexual (straight)  Most of the time
## 8370   72.12                Not sure         Sometimes
## 8371   92.08 Heterosexual (straight)         Sometimes
## 8372  100.25 Heterosexual (straight)            Always
## 8373   45.36 Heterosexual (straight)            Always
## 8374   88.45 Heterosexual (straight)            Rarely
## 8375   47.17 Heterosexual (straight)         Sometimes
## 8376   52.16                Bisexual         Sometimes
## 8377   58.97 Heterosexual (straight)         Sometimes
## 8378   44.45                Bisexual  Most of the time
## 8379   77.11 Heterosexual (straight)         Sometimes
## 8380  144.70 Heterosexual (straight)            Rarely
## 8381   72.58 Heterosexual (straight)             Never
## 8382   68.04 Heterosexual (straight)         Sometimes
## 8383  109.77 Heterosexual (straight)         Sometimes
## 8384   72.58                Not sure            Always
## 8385   74.84 Heterosexual (straight)            Rarely
## 8386   38.56                Bisexual         Sometimes
## 8387   97.98 Heterosexual (straight)         Sometimes
## 8388   53.52 Heterosexual (straight)            Rarely
## 8389   73.48 Heterosexual (straight)            Rarely
## 8390   57.15                Bisexual  Most of the time
## 8391   38.56                Bisexual  Most of the time
## 8392   61.24 Heterosexual (straight)  Most of the time
## 8393   86.18                Not sure            Always
## 8394   54.43 Heterosexual (straight)         Sometimes
## 8395   49.90 Heterosexual (straight)            Rarely
## 8396   61.24 Heterosexual (straight)  Most of the time
## 8397   81.65 Heterosexual (straight)         Sometimes
## 8398   86.18 Heterosexual (straight)         Sometimes
## 8399   68.04 Heterosexual (straight)            Rarely
## 8400   58.97 Heterosexual (straight)            Rarely
## 8401   53.07                Bisexual            Always
## 8402   56.70 Heterosexual (straight)  Most of the time
## 8403   81.65 Heterosexual (straight)         Sometimes
## 8404   58.06 Heterosexual (straight)            Rarely
## 8405   92.53 Heterosexual (straight)         Sometimes
## 8406  108.86          Gay or lesbian         Sometimes
## 8407   70.31          Some other way         Sometimes
## 8408   65.77 Heterosexual (straight)  Most of the time
## 8409   49.90                Bisexual  Most of the time
## 8410   59.88 Heterosexual (straight)         Sometimes
## 8411   89.81 Heterosexual (straight)  Most of the time
## 8412   76.20 Heterosexual (straight)            Rarely
## 8413   47.63 Heterosexual (straight)            Rarely
## 8414   49.90                Bisexual         Sometimes
## 8415   65.77 Heterosexual (straight)            Rarely
## 8416   54.43                Bisexual            Always
## 8417   78.02          Gay or lesbian  Most of the time
## 8418      NA                Not sure         Sometimes
## 8419   88.00                Bisexual  Most of the time
## 8420   53.98 Heterosexual (straight)             Never
## 8421   44.45 Heterosexual (straight)             Never
## 8422   43.09 Heterosexual (straight)         Sometimes
## 8423   77.11 Heterosexual (straight)  Most of the time
## 8424      NA Heterosexual (straight)  Most of the time
## 8425   83.92 Heterosexual (straight)             Never
## 8426   68.04 Heterosexual (straight)            Rarely
## 8427   50.35 Heterosexual (straight)  Most of the time
## 8428   63.50 Heterosexual (straight)            Rarely
## 8429   54.43 Heterosexual (straight)            Always
## 8430   83.92                Bisexual            Always
## 8431   67.59 Heterosexual (straight)  Most of the time
## 8432   74.84 Heterosexual (straight)  Most of the time
## 8433   93.90                Bisexual            Always
## 8434   89.81                Not sure            Always
## 8435   68.04 Heterosexual (straight)             Never
## 8436   70.76 Heterosexual (straight)         Sometimes
## 8437   54.43 Heterosexual (straight)         Sometimes
## 8438  140.62 Heterosexual (straight)  Most of the time
## 8439   50.80                Bisexual         Sometimes
## 8440   58.97 Heterosexual (straight)            Always
## 8441   52.16 Heterosexual (straight)  Most of the time
## 8442      NA                Bisexual         Sometimes
## 8443   63.50 Heterosexual (straight)         Sometimes
## 8444   44.00 Heterosexual (straight)            Rarely
## 8445   72.58                Bisexual  Most of the time
## 8446   51.26 Heterosexual (straight)  Most of the time
## 8447   69.85                Bisexual  Most of the time
## 8448  131.54 Heterosexual (straight)            Always
## 8449   56.70 Heterosexual (straight)         Sometimes
## 8450   79.38 Heterosexual (straight)             Never
## 8451   86.18 Heterosexual (straight)             Never
## 8452   68.04 Heterosexual (straight)            Rarely
## 8453   74.84 Heterosexual (straight)            Rarely
## 8454   72.58 Heterosexual (straight)         Sometimes
## 8455   53.98 Heterosexual (straight)  Most of the time
## 8456   77.11 Heterosexual (straight)         Sometimes
## 8457   73.03 Heterosexual (straight)            Rarely
## 8458  122.47 Heterosexual (straight)            Rarely
## 8459      NA                Not sure  Most of the time
## 8460   72.58 Heterosexual (straight)         Sometimes
## 8461   81.65 Heterosexual (straight)            Rarely
## 8462  102.51                Bisexual            Rarely
## 8463   68.04 Heterosexual (straight)         Sometimes
## 8464   83.46 Heterosexual (straight)            Rarely
## 8465   63.05 Heterosexual (straight)            Rarely
## 8466   52.16 Heterosexual (straight)         Sometimes
## 8467  108.86 Heterosexual (straight)         Sometimes
## 8468   64.41 Heterosexual (straight)  Most of the time
## 8469   52.16 Heterosexual (straight)         Sometimes
## 8470   85.28                Not sure         Sometimes
## 8471   61.24 Heterosexual (straight)         Sometimes
## 8472   52.16 Heterosexual (straight)         Sometimes
## 8473   73.03 Heterosexual (straight)             Never
## 8474   61.24 Heterosexual (straight)            Rarely
## 8475  117.94 Heterosexual (straight)         Sometimes
## 8476   58.97 Heterosexual (straight)         Sometimes
## 8477      NA Heterosexual (straight)  Most of the time
## 8478   83.92 Heterosexual (straight)             Never
## 8479   52.16 Heterosexual (straight)         Sometimes
## 8480   82.10 Heterosexual (straight)  Most of the time
## 8481   65.77 Heterosexual (straight)         Sometimes
## 8482  180.99 Heterosexual (straight)            Always
## 8483   66.23 Heterosexual (straight)             Never
## 8484  106.60 Heterosexual (straight)             Never
## 8485      NA          Some other way  Most of the time
## 8486   44.45 Heterosexual (straight)         Sometimes
## 8487  100.70 Heterosexual (straight)            Always
## 8488   92.99 Heterosexual (straight)  Most of the time
## 8489   58.06          Some other way             Never
## 8490   53.07                Not sure         Sometimes
## 8491   56.70 Heterosexual (straight)         Sometimes
## 8492   38.56 Heterosexual (straight)  Most of the time
## 8493      NA          Gay or lesbian         Sometimes
## 8494   70.31 Heterosexual (straight)             Never
## 8495   63.50                Bisexual            Rarely
## 8496      NA Heterosexual (straight)            Rarely
## 8497   61.24                Bisexual            Always
## 8498      NA Heterosexual (straight)         Sometimes
## 8499   56.70                Bisexual  Most of the time
## 8500      NA Heterosexual (straight)             Never
## 8501   65.32 Heterosexual (straight)  Most of the time
## 8502  107.05 Heterosexual (straight)            Rarely
## 8503      NA                Bisexual         Sometimes
## 8504   76.66 Heterosexual (straight)         Sometimes
## 8505   95.26                Not sure              <NA>
## 8506   79.38 Heterosexual (straight)         Sometimes
## 8507   86.18                Bisexual            Rarely
## 8508   75.30                Bisexual  Most of the time
## 8509  104.33                Bisexual         Sometimes
## 8510   81.65 Heterosexual (straight)         Sometimes
## 8511   52.16 Heterosexual (straight)            Rarely
## 8512   63.50                Bisexual  Most of the time
## 8513   73.94 Heterosexual (straight)             Never
## 8514      NA                Not sure             Never
## 8515   52.16                Bisexual         Sometimes
## 8516  127.01 Heterosexual (straight)         Sometimes
## 8517   52.62 Heterosexual (straight)         Sometimes
## 8518   80.74 Heterosexual (straight)         Sometimes
## 8519   63.50 Heterosexual (straight)         Sometimes
## 8520   91.63                Bisexual         Sometimes
## 8521  104.33 Heterosexual (straight)         Sometimes
## 8522   95.26          Some other way  Most of the time
## 8523   76.66 Heterosexual (straight)         Sometimes
## 8524   49.90 Heterosexual (straight)         Sometimes
## 8525   65.77 Heterosexual (straight)             Never
## 8526   56.70 Heterosexual (straight)  Most of the time
## 8527   61.24 Heterosexual (straight)            Rarely
## 8528  117.94 Heterosexual (straight)         Sometimes
## 8529   61.24 Heterosexual (straight)            Always
## 8530   62.60 Heterosexual (straight)             Never
## 8531  117.94 Heterosexual (straight)         Sometimes
## 8532   45.81                Bisexual         Sometimes
## 8533   56.70                Bisexual         Sometimes
## 8534  108.86 Heterosexual (straight)         Sometimes
## 8535   80.74 Heterosexual (straight)         Sometimes
## 8536   83.92 Heterosexual (straight)  Most of the time
## 8537   50.80 Heterosexual (straight)            Rarely
## 8538   86.18 Heterosexual (straight)         Sometimes
## 8539   74.84 Heterosexual (straight)  Most of the time
## 8540   95.26 Heterosexual (straight)            Rarely
## 8541   40.82 Heterosexual (straight)             Never
## 8542   71.22 Heterosexual (straight)            Rarely
## 8543   54.43 Heterosexual (straight)             Never
## 8544      NA Heterosexual (straight)         Sometimes
## 8545   48.54 Heterosexual (straight)            Rarely
## 8546  161.48 Heterosexual (straight)             Never
## 8547   61.24 Heterosexual (straight)            Rarely
## 8548   65.77 Heterosexual (straight)         Sometimes
## 8549   49.90 Heterosexual (straight)            Always
## 8550   88.00 Heterosexual (straight)         Sometimes
## 8551   45.36 Heterosexual (straight)            Rarely
## 8552   61.24 Heterosexual (straight)         Sometimes
## 8553   45.36 Heterosexual (straight)  Most of the time
## 8554   86.18 Heterosexual (straight)            Rarely
## 8555   63.50 Heterosexual (straight)  Most of the time
## 8556   81.65 Heterosexual (straight)            Rarely
## 8557   63.50 Heterosexual (straight)         Sometimes
## 8558   90.72 Heterosexual (straight)            Rarely
## 8559   99.79                Not sure            Rarely
## 8560   52.16 Heterosexual (straight)  Most of the time
## 8561   74.84 Heterosexual (straight)            Rarely
## 8562   81.65 Heterosexual (straight)  Most of the time
## 8563   49.90 Heterosexual (straight)  Most of the time
## 8564   54.43 Heterosexual (straight)             Never
## 8565   79.38 Heterosexual (straight)             Never
## 8566   80.74 Heterosexual (straight)         Sometimes
## 8567   59.88 Heterosexual (straight)  Most of the time
## 8568   92.99 Heterosexual (straight)         Sometimes
## 8569   70.31 Heterosexual (straight)         Sometimes
## 8570   69.40 Heterosexual (straight)            Rarely
## 8571   73.94 Heterosexual (straight)  Most of the time
## 8572   56.70                Bisexual  Most of the time
## 8573   89.36 Heterosexual (straight)             Never
## 8574   56.70 Heterosexual (straight)            Always
## 8575   76.20 Heterosexual (straight)  Most of the time
## 8576   77.11 Heterosexual (straight)             Never
## 8577   50.35 Heterosexual (straight)         Sometimes
## 8578   77.11 Heterosexual (straight)            Rarely
## 8579   68.04                Bisexual  Most of the time
## 8580   58.97 Heterosexual (straight)            Rarely
## 8581   68.04 Heterosexual (straight)             Never
## 8582   94.35 Heterosexual (straight)             Never
## 8583   81.65 Heterosexual (straight)         Sometimes
## 8584   83.92 Heterosexual (straight)            Always
## 8585   57.15 Heterosexual (straight)              <NA>
## 8586   58.97                Bisexual  Most of the time
## 8587      NA                Not sure  Most of the time
## 8588   65.77 Heterosexual (straight)             Never
## 8589   99.79 Heterosexual (straight)            Always
## 8590  123.83                Bisexual         Sometimes
## 8591      NA          Gay or lesbian             Never
## 8592   50.80 Heterosexual (straight)         Sometimes
## 8593   81.65 Heterosexual (straight)         Sometimes
## 8594   77.11 Heterosexual (straight)             Never
## 8595   77.11 Heterosexual (straight)            Rarely
## 8596   84.82 Heterosexual (straight)         Sometimes
## 8597  113.40 Heterosexual (straight)  Most of the time
## 8598  122.47 Heterosexual (straight)         Sometimes
## 8599   55.79 Heterosexual (straight)         Sometimes
## 8600   79.38                Not sure  Most of the time
## 8601   86.18 Heterosexual (straight)             Never
## 8602   50.35 Heterosexual (straight)             Never
## 8603   95.26 Heterosexual (straight)            Rarely
## 8604   61.24 Heterosexual (straight)             Never
## 8605   52.16 Heterosexual (straight)         Sometimes
## 8606   83.46 Heterosexual (straight)             Never
## 8607   83.92 Heterosexual (straight)  Most of the time
## 8608   51.26 Heterosexual (straight)            Always
## 8609   40.82          Gay or lesbian             Never
## 8610   58.97                Bisexual  Most of the time
## 8611   75.30 Heterosexual (straight)            Always
## 8612   81.65 Heterosexual (straight)             Never
## 8613   77.11 Heterosexual (straight)  Most of the time
## 8614  104.33 Heterosexual (straight)             Never
## 8615   68.04 Heterosexual (straight)         Sometimes
## 8616   54.43 Heterosexual (straight)         Sometimes
## 8617   65.32 Heterosexual (straight)  Most of the time
## 8618  140.62 Heterosexual (straight)         Sometimes
## 8619  113.40 Heterosexual (straight)  Most of the time
## 8620   81.65 Heterosexual (straight)             Never
## 8621   48.99                Bisexual  Most of the time
## 8622   99.79 Heterosexual (straight)         Sometimes
## 8623   99.79                Bisexual  Most of the time
## 8624   77.11 Heterosexual (straight)         Sometimes
## 8625   56.70 Heterosexual (straight)         Sometimes
## 8626   54.43 Heterosexual (straight)            Rarely
## 8627   54.43                Not sure         Sometimes
## 8628   47.63                Bisexual         Sometimes
## 8629   58.97                Not sure            Rarely
## 8630   82.56 Heterosexual (straight)            Rarely
## 8631   72.58 Heterosexual (straight)  Most of the time
## 8632   76.20 Heterosexual (straight)             Never
## 8633      NA                Bisexual         Sometimes
## 8634   67.13 Heterosexual (straight)            Rarely
## 8635   72.58 Heterosexual (straight)         Sometimes
## 8636   58.97 Heterosexual (straight)            Rarely
## 8637   81.65 Heterosexual (straight)             Never
## 8638   58.97 Heterosexual (straight)            Rarely
## 8639   61.24 Heterosexual (straight)            Rarely
## 8640  106.60                Bisexual            Rarely
## 8641  122.47 Heterosexual (straight)            Rarely
## 8642   68.04 Heterosexual (straight)  Most of the time
## 8643   81.65 Heterosexual (straight)            Rarely
## 8644   72.58 Heterosexual (straight)         Sometimes
## 8645   67.13 Heterosexual (straight)         Sometimes
## 8646   63.50 Heterosexual (straight)             Never
## 8647   49.90 Heterosexual (straight)         Sometimes
## 8648   58.97 Heterosexual (straight)            Rarely
## 8649   70.31 Heterosexual (straight)         Sometimes
## 8650      NA                Bisexual            Always
## 8651      NA                Bisexual  Most of the time
## 8652   54.43 Heterosexual (straight)             Never
## 8653      NA Heterosexual (straight)            Rarely
## 8654   85.28          Gay or lesbian  Most of the time
## 8655   45.36 Heterosexual (straight)            Always
## 8656   65.77 Heterosexual (straight)              <NA>
## 8657      NA                Bisexual         Sometimes
## 8658      NA          Gay or lesbian            Always
## 8659   63.50 Heterosexual (straight)  Most of the time
## 8660   53.98 Heterosexual (straight)            Always
## 8661   45.36                Bisexual            Always
## 8662   61.24 Heterosexual (straight)             Never
## 8663      NA                Bisexual            Rarely
## 8664      NA Heterosexual (straight)              <NA>
## 8665      NA                Bisexual         Sometimes
## 8666   56.70 Heterosexual (straight)  Most of the time
## 8667      NA Heterosexual (straight)            Rarely
## 8668      NA                Bisexual         Sometimes
## 8669      NA Heterosexual (straight)              <NA>
## 8670   54.43                Bisexual         Sometimes
## 8671   62.60 Heterosexual (straight)              <NA>
## 8672      NA Heterosexual (straight)         Sometimes
## 8673   45.36 Heterosexual (straight)         Sometimes
## 8674   54.43 Heterosexual (straight)             Never
## 8675      NA                Bisexual            Always
## 8676   51.71 Heterosexual (straight)            Rarely
## 8677   87.54                Bisexual            Always
## 8678   56.25 Heterosexual (straight)            Rarely
## 8679   74.84 Heterosexual (straight)         Sometimes
## 8680   58.97 Heterosexual (straight)            Rarely
## 8681   76.20 Heterosexual (straight)             Never
## 8682   72.58                Not sure         Sometimes
## 8683  106.60 Heterosexual (straight)         Sometimes
## 8684      NA Heterosexual (straight)              <NA>
## 8685   52.16 Heterosexual (straight)  Most of the time
## 8686   76.66 Heterosexual (straight)  Most of the time
## 8687      NA          Some other way  Most of the time
## 8688      NA Heterosexual (straight)             Never
## 8689   56.70          Gay or lesbian         Sometimes
## 8690   61.24 Heterosexual (straight)            Rarely
## 8691  109.77                Bisexual            Always
## 8692   43.09                Bisexual            Always
## 8693   63.50 Heterosexual (straight)         Sometimes
## 8694   83.92 Heterosexual (straight)  Most of the time
## 8695      NA Heterosexual (straight)  Most of the time
## 8696   65.77                Bisexual         Sometimes
## 8697   56.70 Heterosexual (straight)            Rarely
## 8698   40.82                Not sure  Most of the time
## 8699      NA Heterosexual (straight)            Rarely
## 8700   96.62 Heterosexual (straight)            Rarely
## 8701   47.63 Heterosexual (straight)             Never
## 8702   56.70 Heterosexual (straight)         Sometimes
## 8703   69.40 Heterosexual (straight)  Most of the time
## 8704   63.50 Heterosexual (straight)         Sometimes
## 8705   67.13                Bisexual  Most of the time
## 8706  108.41 Heterosexual (straight)  Most of the time
## 8707  104.33 Heterosexual (straight)         Sometimes
## 8708   56.70                Bisexual             Never
## 8709   52.16 Heterosexual (straight)             Never
## 8710   68.04          Some other way  Most of the time
## 8711   55.79 Heterosexual (straight)             Never
## 8712   65.77                Not sure  Most of the time
## 8713   50.35                Bisexual            Always
## 8714   49.90                Bisexual  Most of the time
## 8715   45.36 Heterosexual (straight)             Never
## 8716   52.16          Some other way            Rarely
## 8717      NA Heterosexual (straight)         Sometimes
## 8718  113.40          Gay or lesbian            Always
## 8719   78.47 Heterosexual (straight)            Rarely
## 8720   71.22 Heterosexual (straight)            Rarely
## 8721   63.50 Heterosexual (straight)         Sometimes
## 8722  111.59 Heterosexual (straight)            Rarely
## 8723   72.58                Bisexual  Most of the time
## 8724   68.04 Heterosexual (straight)  Most of the time
## 8725   79.38 Heterosexual (straight)         Sometimes
## 8726  117.94                Not sure  Most of the time
## 8727   55.34 Heterosexual (straight)            Rarely
## 8728   63.50                Not sure         Sometimes
## 8729      NA Heterosexual (straight)         Sometimes
## 8730   61.24                Bisexual         Sometimes
## 8731   88.45 Heterosexual (straight)            Rarely
## 8732      NA Heterosexual (straight)         Sometimes
## 8733   92.99 Heterosexual (straight)            Rarely
## 8734   54.43 Heterosexual (straight)             Never
## 8735  102.06 Heterosexual (straight)         Sometimes
## 8736   68.04 Heterosexual (straight)            Rarely
## 8737   61.24 Heterosexual (straight)         Sometimes
## 8738  133.81 Heterosexual (straight)            Always
## 8739   72.58                Bisexual  Most of the time
## 8740   63.50 Heterosexual (straight)  Most of the time
## 8741   86.18                Not sure            Rarely
## 8742   88.45 Heterosexual (straight)            Rarely
## 8743   92.99 Heterosexual (straight)            Rarely
## 8744   83.01 Heterosexual (straight)             Never
## 8745   63.50 Heterosexual (straight)             Never
## 8746   99.79 Heterosexual (straight)            Rarely
## 8747      NA          Some other way  Most of the time
## 8748   56.70 Heterosexual (straight)            Always
## 8749   93.44 Heterosexual (straight)             Never
## 8750   54.43 Heterosexual (straight)  Most of the time
## 8751   72.12 Heterosexual (straight)         Sometimes
## 8752   86.18 Heterosexual (straight)            Rarely
## 8753   68.04 Heterosexual (straight)             Never
## 8754   83.46 Heterosexual (straight)  Most of the time
## 8755   68.04 Heterosexual (straight)            Rarely
## 8756   56.70 Heterosexual (straight)            Rarely
## 8757   63.50 Heterosexual (straight)  Most of the time
## 8758  112.95 Heterosexual (straight)  Most of the time
## 8759   48.08 Heterosexual (straight)  Most of the time
## 8760   74.84                Bisexual  Most of the time
## 8761  111.13                Not sure            Rarely
## 8762      NA Heterosexual (straight)            Rarely
## 8763  117.48 Heterosexual (straight)            Rarely
## 8764      NA          Some other way             Never
## 8765   58.97                Not sure            Rarely
## 8766   54.43                Bisexual            Always
## 8767   68.04 Heterosexual (straight)         Sometimes
## 8768   86.18 Heterosexual (straight)            Rarely
## 8769   97.52 Heterosexual (straight)             Never
## 8770  127.01 Heterosexual (straight)         Sometimes
## 8771   70.31 Heterosexual (straight)             Never
## 8772   63.50 Heterosexual (straight)             Never
## 8773   56.70 Heterosexual (straight)             Never
## 8774   58.51 Heterosexual (straight)         Sometimes
## 8775   63.50 Heterosexual (straight)  Most of the time
## 8776   81.65 Heterosexual (straight)         Sometimes
## 8777   63.50 Heterosexual (straight)  Most of the time
## 8778   49.90          Gay or lesbian  Most of the time
## 8779      NA Heterosexual (straight)              <NA>
## 8780   56.70                Not sure         Sometimes
## 8781   68.95                Bisexual  Most of the time
## 8782   65.77 Heterosexual (straight)  Most of the time
## 8783   63.50 Heterosexual (straight)  Most of the time
## 8784   90.72 Heterosexual (straight)              <NA>
## 8785   44.45 Heterosexual (straight)         Sometimes
## 8786   62.14 Heterosexual (straight)             Never
## 8787   47.63 Heterosexual (straight)         Sometimes
## 8788   53.52 Heterosexual (straight)            Always
## 8789   60.78 Heterosexual (straight)              <NA>
## 8790   61.24 Heterosexual (straight)         Sometimes
## 8791   90.72 Heterosexual (straight)         Sometimes
## 8792   86.18 Heterosexual (straight)            Always
## 8793   58.97 Heterosexual (straight)         Sometimes
## 8794   56.70 Heterosexual (straight)            Rarely
## 8795   69.85 Heterosexual (straight)         Sometimes
## 8796   49.90          Gay or lesbian         Sometimes
## 8797   74.84          Some other way         Sometimes
## 8798      NA          Gay or lesbian  Most of the time
## 8799   65.77                Bisexual  Most of the time
## 8800   58.51 Heterosexual (straight)         Sometimes
## 8801   45.81                Not sure              <NA>
## 8802   80.74                Bisexual  Most of the time
## 8803   81.65 Heterosexual (straight)             Never
## 8804      NA          Some other way            Always
## 8805   63.96                Bisexual         Sometimes
## 8806   56.25                Bisexual            Rarely
## 8807   70.31 Heterosexual (straight)  Most of the time
## 8808   65.32 Heterosexual (straight)            Rarely
## 8809  136.08 Heterosexual (straight)            Rarely
## 8810   88.45 Heterosexual (straight)  Most of the time
## 8811   72.58 Heterosexual (straight)             Never
## 8812   90.72                Bisexual  Most of the time
## 8813   70.31 Heterosexual (straight)             Never
## 8814  112.95                Bisexual  Most of the time
## 8815   97.52 Heterosexual (straight)         Sometimes
## 8816   54.43 Heterosexual (straight)            Rarely
## 8817   68.04                Not sure  Most of the time
## 8818      NA Heterosexual (straight)             Never
## 8819   69.85                Bisexual         Sometimes
## 8820  108.86                Bisexual  Most of the time
## 8821  102.06                Not sure  Most of the time
## 8822   49.90 Heterosexual (straight)  Most of the time
## 8823      NA Heterosexual (straight)         Sometimes
## 8824   70.31 Heterosexual (straight)             Never
## 8825  113.40 Heterosexual (straight)  Most of the time
## 8826   50.35 Heterosexual (straight)  Most of the time
## 8827   49.90 Heterosexual (straight)  Most of the time
## 8828   44.91                Bisexual            Always
## 8829   63.50 Heterosexual (straight)         Sometimes
## 8830   48.99 Heterosexual (straight)         Sometimes
## 8831   52.16 Heterosexual (straight)  Most of the time
## 8832   43.09 Heterosexual (straight)             Never
## 8833   90.72 Heterosexual (straight)            Rarely
## 8834  111.13 Heterosexual (straight)            Rarely
## 8835   61.24                Not sure            Rarely
## 8836   63.50                Bisexual         Sometimes
## 8837   49.90          Gay or lesbian             Never
## 8838   47.63                Not sure  Most of the time
## 8839   73.48 Heterosexual (straight)         Sometimes
## 8840   44.00                Bisexual  Most of the time
## 8841   52.16                Not sure            Always
## 8842   55.34 Heterosexual (straight)  Most of the time
## 8843   91.63 Heterosexual (straight)         Sometimes
## 8844   63.50 Heterosexual (straight)         Sometimes
## 8845  106.60 Heterosexual (straight)         Sometimes
## 8846   49.90 Heterosexual (straight)  Most of the time
## 8847   78.47 Heterosexual (straight)            Rarely
## 8848   88.45 Heterosexual (straight)  Most of the time
## 8849   99.79 Heterosexual (straight)         Sometimes
## 8850   86.18 Heterosexual (straight)         Sometimes
## 8851   90.72 Heterosexual (straight)             Never
## 8852   58.97 Heterosexual (straight)             Never
## 8853   65.77          Gay or lesbian         Sometimes
## 8854   52.62 Heterosexual (straight)  Most of the time
## 8855   74.84 Heterosexual (straight)            Rarely
## 8856  104.33          Gay or lesbian  Most of the time
## 8857   72.58          Some other way         Sometimes
## 8858   49.90 Heterosexual (straight)         Sometimes
## 8859   88.91 Heterosexual (straight)             Never
## 8860   86.18                Bisexual            Rarely
## 8861   89.81                Not sure  Most of the time
## 8862  106.60                Bisexual  Most of the time
## 8863   58.97                Bisexual            Always
## 8864   61.69                Bisexual            Rarely
## 8865   56.70 Heterosexual (straight)            Always
## 8866   56.70 Heterosexual (straight)            Always
## 8867   54.43 Heterosexual (straight)            Always
## 8868   68.04 Heterosexual (straight)            Rarely
## 8869   61.24 Heterosexual (straight)  Most of the time
## 8870   68.04 Heterosexual (straight)  Most of the time
## 8871   47.63          Gay or lesbian            Always
## 8872   48.99                Not sure  Most of the time
## 8873   56.70 Heterosexual (straight)            Rarely
## 8874   86.18 Heterosexual (straight)             Never
## 8875   49.90                Not sure  Most of the time
## 8876   49.90                Not sure            Always
## 8877   99.79 Heterosexual (straight)         Sometimes
## 8878   56.70                Bisexual  Most of the time
## 8879   68.04          Some other way            Always
## 8880   79.38                Bisexual  Most of the time
## 8881   54.43                Bisexual  Most of the time
## 8882   79.38 Heterosexual (straight)              <NA>
## 8883   67.13                Bisexual            Always
## 8884   85.28 Heterosexual (straight)         Sometimes
## 8885   48.99 Heterosexual (straight)  Most of the time
## 8886   81.65 Heterosexual (straight)  Most of the time
## 8887   68.04 Heterosexual (straight)         Sometimes
## 8888   51.71 Heterosexual (straight)             Never
## 8889   72.58 Heterosexual (straight)            Rarely
## 8890   60.78 Heterosexual (straight)  Most of the time
## 8891   74.84          Some other way         Sometimes
## 8892   65.77                Bisexual  Most of the time
## 8893   97.52 Heterosexual (straight)         Sometimes
## 8894   94.35 Heterosexual (straight)            Rarely
## 8895   74.84 Heterosexual (straight)            Rarely
## 8896   67.13 Heterosexual (straight)            Rarely
## 8897   55.34 Heterosexual (straight)         Sometimes
## 8898   65.77 Heterosexual (straight)            Rarely
## 8899   61.24 Heterosexual (straight)            Rarely
## 8900   52.16 Heterosexual (straight)  Most of the time
## 8901   54.89 Heterosexual (straight)         Sometimes
## 8902   61.24 Heterosexual (straight)            Rarely
## 8903   56.70 Heterosexual (straight)         Sometimes
## 8904   67.13 Heterosexual (straight)  Most of the time
## 8905   68.04 Heterosexual (straight)         Sometimes
## 8906   63.50 Heterosexual (straight)  Most of the time
## 8907  129.28 Heterosexual (straight)            Always
## 8908   72.58 Heterosexual (straight)            Rarely
## 8909   77.11 Heterosexual (straight)            Rarely
## 8910   56.70 Heterosexual (straight)             Never
## 8911      NA          Some other way            Always
## 8912   56.70 Heterosexual (straight)         Sometimes
## 8913   48.08 Heterosexual (straight)            Always
## 8914   99.79                Not sure  Most of the time
## 8915   60.78          Gay or lesbian  Most of the time
## 8916   68.04                Not sure         Sometimes
## 8917   51.71                Bisexual         Sometimes
## 8918   66.23 Heterosexual (straight)             Never
## 8919   68.04 Heterosexual (straight)         Sometimes
## 8920   65.77 Heterosexual (straight)            Rarely
## 8921  117.03                Bisexual         Sometimes
## 8922   72.58 Heterosexual (straight)             Never
## 8923   86.18 Heterosexual (straight)            Rarely
## 8924  117.94                Bisexual  Most of the time
## 8925   52.16 Heterosexual (straight)            Rarely
## 8926   52.16 Heterosexual (straight)  Most of the time
## 8927   47.63                Bisexual  Most of the time
## 8928   68.04 Heterosexual (straight)             Never
## 8929   54.43                Bisexual         Sometimes
## 8930  135.63 Heterosexual (straight)             Never
## 8931  115.67          Some other way         Sometimes
## 8932   54.43                Not sure  Most of the time
## 8933   86.18 Heterosexual (straight)         Sometimes
## 8934   56.70 Heterosexual (straight)  Most of the time
## 8935   74.84 Heterosexual (straight)            Rarely
## 8936   56.70 Heterosexual (straight)  Most of the time
## 8937   77.11 Heterosexual (straight)            Rarely
## 8938   69.40                Bisexual            Always
## 8939   84.37                Not sure         Sometimes
## 8940   94.80 Heterosexual (straight)            Rarely
## 8941   81.65 Heterosexual (straight)  Most of the time
## 8942   86.18 Heterosexual (straight)            Rarely
## 8943   74.84                Not sure         Sometimes
## 8944   61.24 Heterosexual (straight)         Sometimes
## 8945   49.90 Heterosexual (straight)             Never
## 8946   71.67 Heterosexual (straight)         Sometimes
## 8947   78.02 Heterosexual (straight)         Sometimes
## 8948      NA Heterosexual (straight)            Rarely
## 8949   59.42                Not sure  Most of the time
## 8950   44.00                Bisexual  Most of the time
## 8951   53.98 Heterosexual (straight)            Rarely
## 8952  106.60 Heterosexual (straight)  Most of the time
## 8953  154.22 Heterosexual (straight)  Most of the time
## 8954   87.54 Heterosexual (straight)             Never
## 8955   70.76 Heterosexual (straight)             Never
## 8956   58.97 Heterosexual (straight)  Most of the time
## 8957   43.09          Some other way  Most of the time
## 8958   49.90 Heterosexual (straight)  Most of the time
## 8959   72.58                Bisexual  Most of the time
## 8960   70.31 Heterosexual (straight)            Rarely
## 8961   54.43 Heterosexual (straight)             Never
## 8962   49.44 Heterosexual (straight)            Always
## 8963   47.63 Heterosexual (straight)         Sometimes
## 8964   77.11                Bisexual  Most of the time
## 8965   58.06                Bisexual         Sometimes
## 8966      NA Heterosexual (straight)             Never
## 8967   72.58                Bisexual         Sometimes
## 8968   95.26 Heterosexual (straight)  Most of the time
## 8969   58.97                Bisexual         Sometimes
## 8970   47.63                Bisexual         Sometimes
## 8971   72.58 Heterosexual (straight)         Sometimes
## 8972   57.15          Some other way  Most of the time
## 8973  103.42 Heterosexual (straight)  Most of the time
## 8974   58.97 Heterosexual (straight)         Sometimes
## 8975   49.90 Heterosexual (straight)            Rarely
## 8976   75.75 Heterosexual (straight)            Always
## 8977   63.50 Heterosexual (straight)         Sometimes
## 8978   61.24 Heterosexual (straight)  Most of the time
## 8979   74.84 Heterosexual (straight)            Always
## 8980   92.99 Heterosexual (straight)            Rarely
## 8981   65.32 Heterosexual (straight)         Sometimes
## 8982   81.65 Heterosexual (straight)  Most of the time
## 8983   54.43          Gay or lesbian  Most of the time
## 8984   61.24 Heterosexual (straight)         Sometimes
## 8985   90.72 Heterosexual (straight)             Never
## 8986   49.90 Heterosexual (straight)            Rarely
## 8987   57.61 Heterosexual (straight)         Sometimes
## 8988   61.24 Heterosexual (straight)  Most of the time
## 8989   65.77 Heterosexual (straight)         Sometimes
## 8990   72.58 Heterosexual (straight)            Rarely
## 8991   54.43                Bisexual         Sometimes
## 8992  130.64                Bisexual            Rarely
## 8993   76.66 Heterosexual (straight)            Rarely
## 8994   56.70          Some other way         Sometimes
## 8995   81.19                Bisexual  Most of the time
## 8996   57.61 Heterosexual (straight)            Rarely
## 8997   69.40 Heterosexual (straight)         Sometimes
## 8998  106.14 Heterosexual (straight)            Always
## 8999   74.84 Heterosexual (straight)             Never
## 9000  120.20 Heterosexual (straight)            Rarely
## 9001      NA Heterosexual (straight)  Most of the time
## 9002   61.24 Heterosexual (straight)  Most of the time
## 9003   49.90 Heterosexual (straight)  Most of the time
## 9004   54.89 Heterosexual (straight)         Sometimes
## 9005   60.78                Not sure         Sometimes
## 9006   83.92 Heterosexual (straight)             Never
## 9007   68.04                Not sure  Most of the time
## 9008   54.89 Heterosexual (straight)         Sometimes
## 9009   58.97          Some other way         Sometimes
## 9010   76.20 Heterosexual (straight)            Rarely
## 9011   47.63 Heterosexual (straight)             Never
## 9012   77.11 Heterosexual (straight)         Sometimes
## 9013   95.26                Bisexual            Always
## 9014   76.66 Heterosexual (straight)         Sometimes
## 9015   46.72 Heterosexual (straight)  Most of the time
## 9016   97.52                Bisexual            Rarely
## 9017   49.90 Heterosexual (straight)  Most of the time
## 9018   81.65 Heterosexual (straight)         Sometimes
## 9019   65.77                Bisexual            Always
## 9020   54.43 Heterosexual (straight)         Sometimes
## 9021   87.54 Heterosexual (straight)            Always
## 9022   40.82 Heterosexual (straight)         Sometimes
## 9023   62.60 Heterosexual (straight)  Most of the time
## 9024   59.88 Heterosexual (straight)              <NA>
## 9025   58.97 Heterosexual (straight)         Sometimes
## 9026   61.24 Heterosexual (straight)             Never
## 9027  114.31 Heterosexual (straight)             Never
## 9028   90.72                Not sure         Sometimes
## 9029   74.84 Heterosexual (straight)            Rarely
## 9030   79.38 Heterosexual (straight)  Most of the time
## 9031   78.47 Heterosexual (straight)         Sometimes
## 9032   81.65                Bisexual            Always
## 9033  106.60          Gay or lesbian            Rarely
## 9034   49.90 Heterosexual (straight)              <NA>
## 9035  104.33 Heterosexual (straight)             Never
## 9036   66.68 Heterosexual (straight)            Always
## 9037   70.31 Heterosexual (straight)             Never
## 9038   63.50                Bisexual  Most of the time
## 9039   54.43                Not sure            Always
## 9040   67.13 Heterosexual (straight)              <NA>
## 9041   93.90 Heterosexual (straight)            Rarely
## 9042   68.04 Heterosexual (straight)             Never
## 9043   86.18 Heterosexual (straight)  Most of the time
## 9044      NA Heterosexual (straight)             Never
## 9045  104.33                Bisexual             Never
## 9046   70.31 Heterosexual (straight)            Rarely
## 9047   65.77                Bisexual  Most of the time
## 9048   70.31 Heterosexual (straight)            Always
## 9049  139.71 Heterosexual (straight)             Never
## 9050   38.56 Heterosexual (straight)            Always
## 9051   81.65          Some other way  Most of the time
## 9052   79.38 Heterosexual (straight)         Sometimes
## 9053   74.84 Heterosexual (straight)             Never
## 9054   65.77 Heterosexual (straight)            Rarely
## 9055   54.43 Heterosexual (straight)              <NA>
## 9056   67.13 Heterosexual (straight)            Always
## 9057   58.97                Bisexual  Most of the time
## 9058  127.01 Heterosexual (straight)  Most of the time
## 9059   82.10 Heterosexual (straight)            Always
## 9060   76.20 Heterosexual (straight)  Most of the time
## 9061   92.99 Heterosexual (straight)  Most of the time
## 9062   81.65 Heterosexual (straight)            Always
## 9063   52.16 Heterosexual (straight)            Rarely
## 9064      NA Heterosexual (straight)  Most of the time
## 9065   54.43          Some other way  Most of the time
## 9066   86.18 Heterosexual (straight)            Rarely
## 9067  103.87 Heterosexual (straight)             Never
## 9068   65.77 Heterosexual (straight)         Sometimes
## 9069   58.06                Bisexual            Rarely
## 9070   71.22 Heterosexual (straight)             Never
## 9071  122.02 Heterosexual (straight)            Rarely
## 9072   45.36                Bisexual  Most of the time
## 9073   70.31 Heterosexual (straight)            Always
## 9074   72.58 Heterosexual (straight)             Never
## 9075   56.70 Heterosexual (straight)             Never
## 9076   53.52 Heterosexual (straight)         Sometimes
## 9077   97.52 Heterosexual (straight)         Sometimes
## 9078   55.79 Heterosexual (straight)         Sometimes
## 9079   75.75 Heterosexual (straight)  Most of the time
## 9080   72.58 Heterosexual (straight)         Sometimes
## 9081   71.67 Heterosexual (straight)            Rarely
## 9082  113.40 Heterosexual (straight)            Rarely
## 9083   63.50 Heterosexual (straight)            Rarely
## 9084   88.45 Heterosexual (straight)  Most of the time
## 9085   54.43 Heterosexual (straight)            Always
## 9086   70.76 Heterosexual (straight)  Most of the time
## 9087   79.38 Heterosexual (straight)            Rarely
## 9088   58.06                Bisexual              <NA>
## 9089   58.97 Heterosexual (straight)            Rarely
## 9090   61.24 Heterosexual (straight)            Rarely
## 9091   56.70 Heterosexual (straight)  Most of the time
## 9092   54.43          Some other way  Most of the time
## 9093   76.20 Heterosexual (straight)            Rarely
## 9094   56.70 Heterosexual (straight)            Rarely
## 9095   65.77 Heterosexual (straight)             Never
## 9096   77.11 Heterosexual (straight)         Sometimes
## 9097   90.72 Heterosexual (straight)         Sometimes
## 9098   44.45 Heterosexual (straight)            Always
## 9099   58.51 Heterosexual (straight)            Rarely
## 9100   61.24 Heterosexual (straight)         Sometimes
## 9101  105.69 Heterosexual (straight)             Never
## 9102   68.04                Bisexual         Sometimes
## 9103   58.97          Gay or lesbian  Most of the time
## 9104   52.16 Heterosexual (straight)  Most of the time
## 9105   62.60 Heterosexual (straight)         Sometimes
## 9106   68.04          Some other way            Always
## 9107   40.82 Heterosexual (straight)            Always
## 9108   92.99 Heterosexual (straight)             Never
## 9109   61.24 Heterosexual (straight)            Rarely
## 9110   58.97                Bisexual  Most of the time
## 9111   81.65                Not sure         Sometimes
## 9112   85.28 Heterosexual (straight)            Rarely
## 9113   74.84 Heterosexual (straight)         Sometimes
## 9114   63.50 Heterosexual (straight)         Sometimes
## 9115   45.36          Gay or lesbian            Always
## 9116   40.82 Heterosexual (straight)            Rarely
## 9117   68.04 Heterosexual (straight)            Rarely
## 9118   52.16 Heterosexual (straight)         Sometimes
## 9119   56.70 Heterosexual (straight)            Rarely
## 9120   61.24          Gay or lesbian             Never
## 9121   67.13 Heterosexual (straight)             Never
## 9122   45.36 Heterosexual (straight)         Sometimes
## 9123   60.78 Heterosexual (straight)  Most of the time
## 9124   54.43 Heterosexual (straight)  Most of the time
## 9125   79.38 Heterosexual (straight)             Never
## 9126   44.45 Heterosexual (straight)  Most of the time
## 9127   43.09 Heterosexual (straight)         Sometimes
## 9128   63.50          Some other way  Most of the time
## 9129   72.58 Heterosexual (straight)         Sometimes
## 9130   87.09 Heterosexual (straight)         Sometimes
## 9131   55.79 Heterosexual (straight)         Sometimes
## 9132   68.04 Heterosexual (straight)  Most of the time
## 9133   78.02          Gay or lesbian  Most of the time
## 9134   63.50 Heterosexual (straight)         Sometimes
## 9135      NA Heterosexual (straight)              <NA>
## 9136   62.60 Heterosexual (straight)         Sometimes
## 9137   74.84 Heterosexual (straight)            Rarely
## 9138   71.22 Heterosexual (straight)            Rarely
## 9139  106.60 Heterosexual (straight)         Sometimes
## 9140  109.77 Heterosexual (straight)  Most of the time
## 9141   83.92 Heterosexual (straight)  Most of the time
## 9142   90.72 Heterosexual (straight)         Sometimes
## 9143   58.97 Heterosexual (straight)         Sometimes
## 9144   89.81          Gay or lesbian         Sometimes
## 9145   62.60                Bisexual            Always
## 9146   46.27 Heterosexual (straight)         Sometimes
## 9147      NA Heterosexual (straight)         Sometimes
## 9148  145.15 Heterosexual (straight)            Rarely
## 9149   63.50 Heterosexual (straight)  Most of the time
## 9150      NA                Bisexual             Never
## 9151   95.26 Heterosexual (straight)            Rarely
## 9152   65.77 Heterosexual (straight)         Sometimes
## 9153   36.29 Heterosexual (straight)            Rarely
## 9154   78.47 Heterosexual (straight)         Sometimes
## 9155   50.80 Heterosexual (straight)            Always
## 9156   65.77 Heterosexual (straight)             Never
## 9157   65.32 Heterosexual (straight)         Sometimes
## 9158   84.82 Heterosexual (straight)             Never
## 9159   44.45 Heterosexual (straight)            Rarely
## 9160   81.65 Heterosexual (straight)            Rarely
## 9161   81.65 Heterosexual (straight)         Sometimes
## 9162   68.04 Heterosexual (straight)            Always
## 9163   68.04 Heterosexual (straight)  Most of the time
## 9164   63.50 Heterosexual (straight)            Rarely
## 9165   65.77 Heterosexual (straight)             Never
## 9166   56.70 Heterosexual (straight)             Never
## 9167   43.09 Heterosexual (straight)         Sometimes
## 9168   82.56 Heterosexual (straight)         Sometimes
## 9169   63.50 Heterosexual (straight)            Rarely
## 9170   69.85 Heterosexual (straight)  Most of the time
## 9171   68.04 Heterosexual (straight)            Rarely
## 9172   54.43 Heterosexual (straight)            Always
## 9173   68.04 Heterosexual (straight)  Most of the time
## 9174      NA                Bisexual             Never
## 9175      NA Heterosexual (straight)            Always
## 9176   50.35 Heterosexual (straight)         Sometimes
## 9177   70.31 Heterosexual (straight)  Most of the time
## 9178  104.33 Heterosexual (straight)            Rarely
## 9179      NA Heterosexual (straight)            Always
## 9180   46.72 Heterosexual (straight)  Most of the time
## 9181   72.12 Heterosexual (straight)         Sometimes
## 9182   81.65 Heterosexual (straight)            Rarely
## 9183   46.27 Heterosexual (straight)  Most of the time
## 9184  136.08 Heterosexual (straight)             Never
## 9185   54.43 Heterosexual (straight)         Sometimes
## 9186   59.88 Heterosexual (straight)         Sometimes
## 9187   65.77          Some other way  Most of the time
## 9188   68.95                Bisexual         Sometimes
## 9189   43.09 Heterosexual (straight)             Never
## 9190   74.84 Heterosexual (straight)             Never
## 9191   56.70 Heterosexual (straight)         Sometimes
## 9192   54.43 Heterosexual (straight)            Always
## 9193   63.50 Heterosexual (straight)             Never
## 9194   65.77 Heterosexual (straight)         Sometimes
## 9195  119.30 Heterosexual (straight)         Sometimes
## 9196   95.26 Heterosexual (straight)  Most of the time
## 9197   47.17          Some other way  Most of the time
## 9198      NA                Bisexual            Always
## 9199   70.31 Heterosexual (straight)  Most of the time
## 9200   69.40 Heterosexual (straight)            Rarely
## 9201  110.22 Heterosexual (straight)         Sometimes
## 9202   72.58 Heterosexual (straight)             Never
## 9203  113.40                Not sure            Always
## 9204  119.30 Heterosexual (straight)  Most of the time
## 9205   83.92 Heterosexual (straight)             Never
## 9206   68.95                Not sure  Most of the time
## 9207   83.92 Heterosexual (straight)  Most of the time
## 9208   81.65                Bisexual  Most of the time
## 9209      NA          Gay or lesbian            Always
## 9210   96.62 Heterosexual (straight)            Rarely
## 9211   83.92 Heterosexual (straight)  Most of the time
## 9212   97.52          Some other way         Sometimes
## 9213   54.89 Heterosexual (straight)         Sometimes
## 9214   52.16 Heterosexual (straight)            Rarely
## 9215   77.57 Heterosexual (straight)            Rarely
## 9216   63.50 Heterosexual (straight)             Never
## 9217  104.33 Heterosexual (straight)             Never
## 9218   61.24 Heterosexual (straight)             Never
## 9219   90.72 Heterosexual (straight)             Never
## 9220   55.34 Heterosexual (straight)             Never
## 9221   90.72 Heterosexual (straight)         Sometimes
## 9222   72.58 Heterosexual (straight)             Never
## 9223   83.01 Heterosexual (straight)             Never
## 9224   79.83 Heterosexual (straight)         Sometimes
## 9225   92.99 Heterosexual (straight)         Sometimes
## 9226   83.92 Heterosexual (straight)            Always
## 9227   86.18 Heterosexual (straight)            Rarely
## 9228   88.00 Heterosexual (straight)         Sometimes
## 9229  122.47 Heterosexual (straight)         Sometimes
## 9230      NA                Not sure             Never
## 9231   67.13 Heterosexual (straight)  Most of the time
## 9232   88.45 Heterosexual (straight)            Rarely
## 9233  108.86 Heterosexual (straight)         Sometimes
## 9234   72.58 Heterosexual (straight)         Sometimes
## 9235   61.24 Heterosexual (straight)            Rarely
## 9236   79.83 Heterosexual (straight)  Most of the time
## 9237   67.13 Heterosexual (straight)            Rarely
## 9238   72.58 Heterosexual (straight)             Never
## 9239  102.06 Heterosexual (straight)              <NA>
## 9240   81.65                Bisexual            Always
## 9241   88.45 Heterosexual (straight)             Never
## 9242   54.43          Some other way            Always
## 9243   61.24 Heterosexual (straight)              <NA>
## 9244   56.70          Some other way         Sometimes
## 9245   65.77 Heterosexual (straight)            Rarely
## 9246  104.33                Bisexual            Always
## 9247   72.58                Bisexual         Sometimes
## 9248   74.84 Heterosexual (straight)             Never
## 9249   82.56                Not sure            Rarely
## 9250   61.24                Bisexual            Always
## 9251   70.31 Heterosexual (straight)         Sometimes
## 9252   83.92 Heterosexual (straight)         Sometimes
## 9253   43.09          Some other way  Most of the time
## 9254   63.50 Heterosexual (straight)             Never
## 9255   54.43 Heterosexual (straight)         Sometimes
## 9256   94.80 Heterosexual (straight)            Rarely
## 9257   90.72 Heterosexual (straight)         Sometimes
## 9258   45.36 Heterosexual (straight)         Sometimes
## 9259   63.05 Heterosexual (straight)         Sometimes
## 9260   63.50 Heterosexual (straight)  Most of the time
## 9261   50.80          Some other way  Most of the time
## 9262   86.18 Heterosexual (straight)            Rarely
## 9263   68.04 Heterosexual (straight)            Rarely
## 9264   88.45 Heterosexual (straight)         Sometimes
## 9265   81.65                Not sure         Sometimes
## 9266   55.34 Heterosexual (straight)            Always
## 9267   70.76 Heterosexual (straight)             Never
## 9268   81.65 Heterosexual (straight)         Sometimes
## 9269      NA                Not sure  Most of the time
## 9270   63.50 Heterosexual (straight)  Most of the time
## 9271   60.78 Heterosexual (straight)         Sometimes
## 9272   68.04 Heterosexual (straight)         Sometimes
## 9273   52.16 Heterosexual (straight)  Most of the time
## 9274   97.52 Heterosexual (straight)         Sometimes
## 9275   69.85 Heterosexual (straight)             Never
## 9276   54.43                Bisexual  Most of the time
## 9277   54.43                Bisexual  Most of the time
## 9278   90.72 Heterosexual (straight)  Most of the time
## 9279      NA                Bisexual  Most of the time
## 9280   49.90 Heterosexual (straight)  Most of the time
## 9281   54.43 Heterosexual (straight)  Most of the time
## 9282   61.24 Heterosexual (straight)         Sometimes
## 9283   53.98 Heterosexual (straight)         Sometimes
## 9284   43.09                Bisexual             Never
## 9285   72.58 Heterosexual (straight)            Rarely
## 9286      NA Heterosexual (straight)            Rarely
## 9287   53.98 Heterosexual (straight)             Never
## 9288   77.11 Heterosexual (straight)         Sometimes
## 9289   61.24 Heterosexual (straight)             Never
## 9290   86.18 Heterosexual (straight)             Never
## 9291   81.65 Heterosexual (straight)             Never
## 9292  106.60 Heterosexual (straight)         Sometimes
## 9293   65.77 Heterosexual (straight)  Most of the time
## 9294   68.04          Gay or lesbian            Rarely
## 9295   68.04 Heterosexual (straight)         Sometimes
## 9296  102.06 Heterosexual (straight)            Rarely
## 9297      NA Heterosexual (straight)            Rarely
## 9298  102.06 Heterosexual (straight)            Rarely
## 9299   63.50 Heterosexual (straight)         Sometimes
## 9300   81.65 Heterosexual (straight)            Rarely
## 9301   44.00          Some other way            Always
## 9302   70.31 Heterosexual (straight)            Rarely
## 9303   58.97                Bisexual         Sometimes
## 9304   88.45 Heterosexual (straight)  Most of the time
## 9305   61.24 Heterosexual (straight)  Most of the time
## 9306      NA Heterosexual (straight)         Sometimes
## 9307   90.72 Heterosexual (straight)  Most of the time
## 9308   86.18                Not sure            Always
## 9309   83.92 Heterosexual (straight)         Sometimes
## 9310  119.30 Heterosexual (straight)  Most of the time
## 9311      NA Heterosexual (straight)            Always
## 9312   90.72 Heterosexual (straight)         Sometimes
## 9313  122.47 Heterosexual (straight)            Always
## 9314   90.72                Bisexual         Sometimes
## 9315      NA                Bisexual  Most of the time
## 9316   58.97 Heterosexual (straight)            Always
## 9317      NA Heterosexual (straight)            Rarely
## 9318   72.58 Heterosexual (straight)            Rarely
## 9319   58.97 Heterosexual (straight)  Most of the time
## 9320   95.26 Heterosexual (straight)         Sometimes
## 9321   65.77 Heterosexual (straight)            Rarely
## 9322   54.43 Heterosexual (straight)         Sometimes
## 9323   49.90 Heterosexual (straight)            Rarely
## 9324   46.72                Not sure         Sometimes
## 9325   80.74 Heterosexual (straight)  Most of the time
## 9326   68.04 Heterosexual (straight)            Rarely
## 9327   58.97 Heterosexual (straight)            Always
## 9328   68.04 Heterosexual (straight)  Most of the time
## 9329   56.70 Heterosexual (straight)  Most of the time
## 9330   63.50 Heterosexual (straight)         Sometimes
## 9331   53.98 Heterosexual (straight)         Sometimes
## 9332   81.65 Heterosexual (straight)         Sometimes
## 9333   67.13 Heterosexual (straight)  Most of the time
## 9334  131.09 Heterosexual (straight)  Most of the time
## 9335      NA Heterosexual (straight)             Never
## 9336   56.70 Heterosexual (straight)            Rarely
## 9337   63.50 Heterosexual (straight)            Rarely
## 9338  104.33 Heterosexual (straight)  Most of the time
## 9339   54.43 Heterosexual (straight)         Sometimes
## 9340   56.70 Heterosexual (straight)         Sometimes
## 9341   68.04 Heterosexual (straight)  Most of the time
## 9342   71.67 Heterosexual (straight)  Most of the time
## 9343   49.90 Heterosexual (straight)  Most of the time
## 9344   79.38 Heterosexual (straight)             Never
## 9345   52.16 Heterosexual (straight)  Most of the time
## 9346   86.18                Bisexual            Always
## 9347   68.04 Heterosexual (straight)         Sometimes
## 9348   73.48 Heterosexual (straight)            Always
## 9349   55.79 Heterosexual (straight)            Always
## 9350      NA Heterosexual (straight)  Most of the time
## 9351   63.50 Heterosexual (straight)              <NA>
## 9352   70.31 Heterosexual (straight)            Rarely
## 9353   49.90                Not sure         Sometimes
## 9354  100.70 Heterosexual (straight)            Rarely
## 9355   47.63 Heterosexual (straight)             Never
## 9356   66.68 Heterosexual (straight)            Rarely
## 9357   59.88 Heterosexual (straight)             Never
## 9358   63.50 Heterosexual (straight)  Most of the time
## 9359   35.38                Bisexual            Always
## 9360   52.62                Bisexual         Sometimes
## 9361   41.73 Heterosexual (straight)             Never
## 9362   52.16 Heterosexual (straight)         Sometimes
## 9363   55.34 Heterosexual (straight)            Rarely
## 9364  102.06 Heterosexual (straight)            Rarely
## 9365   95.26 Heterosexual (straight)  Most of the time
## 9366   58.97 Heterosexual (straight)            Rarely
## 9367      NA Heterosexual (straight)         Sometimes
## 9368      NA Heterosexual (straight)            Rarely
## 9369   77.11 Heterosexual (straight)             Never
## 9370   79.38 Heterosexual (straight)            Rarely
## 9371   49.90                Not sure         Sometimes
## 9372   81.65 Heterosexual (straight)  Most of the time
## 9373   73.94 Heterosexual (straight)            Rarely
## 9374   52.16 Heterosexual (straight)  Most of the time
## 9375   54.43 Heterosexual (straight)         Sometimes
## 9376      NA Heterosexual (straight)         Sometimes
## 9377   63.50 Heterosexual (straight)         Sometimes
## 9378   35.38                Bisexual         Sometimes
## 9379   63.50                Bisexual            Rarely
## 9380   53.07 Heterosexual (straight)            Rarely
## 9381   47.63 Heterosexual (straight)            Rarely
## 9382   47.63 Heterosexual (straight)         Sometimes
## 9383   52.16                Bisexual         Sometimes
## 9384   75.75          Gay or lesbian  Most of the time
## 9385   94.35 Heterosexual (straight)             Never
## 9386   58.97 Heterosexual (straight)         Sometimes
## 9387   72.58 Heterosexual (straight)             Never
## 9388   52.16 Heterosexual (straight)         Sometimes
## 9389      NA                Not sure            Rarely
## 9390   63.50 Heterosexual (straight)            Always
## 9391   45.36 Heterosexual (straight)  Most of the time
## 9392   92.99 Heterosexual (straight)             Never
## 9393  103.42 Heterosexual (straight)         Sometimes
## 9394   58.06 Heterosexual (straight)         Sometimes
## 9395   71.22 Heterosexual (straight)             Never
## 9396   61.24 Heterosexual (straight)            Rarely
## 9397   58.97                Bisexual            Always
## 9398   77.11 Heterosexual (straight)             Never
## 9399   58.97                Bisexual  Most of the time
## 9400   44.45                Bisexual         Sometimes
## 9401   63.96 Heterosexual (straight)         Sometimes
## 9402   83.46 Heterosexual (straight)         Sometimes
## 9403      NA Heterosexual (straight)         Sometimes
## 9404   64.86                Bisexual  Most of the time
## 9405   72.58 Heterosexual (straight)             Never
## 9406   68.04 Heterosexual (straight)            Rarely
## 9407   98.88          Some other way         Sometimes
## 9408   46.27 Heterosexual (straight)            Rarely
## 9409   72.58 Heterosexual (straight)         Sometimes
## 9410   70.31                Bisexual  Most of the time
## 9411   78.47 Heterosexual (straight)             Never
## 9412   81.65          Gay or lesbian            Always
## 9413      NA Heterosexual (straight)  Most of the time
## 9414   81.65 Heterosexual (straight)  Most of the time
## 9415   81.65 Heterosexual (straight)            Rarely
## 9416   56.70                Not sure         Sometimes
## 9417   58.97 Heterosexual (straight)            Rarely
## 9418   87.09 Heterosexual (straight)         Sometimes
## 9419   63.50 Heterosexual (straight)            Rarely
## 9420  102.06 Heterosexual (straight)         Sometimes
## 9421   99.79 Heterosexual (straight)             Never
## 9422   97.98 Heterosexual (straight)  Most of the time
## 9423   62.60 Heterosexual (straight)  Most of the time
## 9424   63.50 Heterosexual (straight)         Sometimes
## 9425   68.04                Bisexual         Sometimes
## 9426   72.12 Heterosexual (straight)            Rarely
## 9427   63.50                Bisexual         Sometimes
## 9428   61.24 Heterosexual (straight)  Most of the time
## 9429   81.65 Heterosexual (straight)             Never
## 9430  103.87 Heterosexual (straight)            Rarely
## 9431   95.26 Heterosexual (straight)            Rarely
## 9432  128.37 Heterosexual (straight)             Never
## 9433   90.72 Heterosexual (straight)             Never
## 9434   74.84 Heterosexual (straight)            Rarely
## 9435   68.04 Heterosexual (straight)             Never
## 9436   79.38 Heterosexual (straight)            Rarely
## 9437   65.77 Heterosexual (straight)             Never
## 9438   60.33 Heterosexual (straight)             Never
## 9439   53.07 Heterosexual (straight)             Never
## 9440   63.50 Heterosexual (straight)             Never
## 9441   58.97 Heterosexual (straight)         Sometimes
## 9442      NA                Not sure             Never
## 9443   52.62 Heterosexual (straight)         Sometimes
## 9444   89.81 Heterosexual (straight)              <NA>
## 9445   81.65                Bisexual         Sometimes
## 9446   99.79 Heterosexual (straight)             Never
## 9447   64.86 Heterosexual (straight)             Never
## 9448   53.07 Heterosexual (straight)         Sometimes
## 9449   76.20 Heterosexual (straight)             Never
## 9450   58.97 Heterosexual (straight)             Never
## 9451   63.50 Heterosexual (straight)         Sometimes
## 9452   68.04 Heterosexual (straight)            Always
## 9453   52.16 Heterosexual (straight)             Never
## 9454   52.16 Heterosexual (straight)  Most of the time
## 9455   80.74 Heterosexual (straight)            Rarely
## 9456   83.92                Bisexual         Sometimes
## 9457   54.43                Bisexual  Most of the time
## 9458      NA                Bisexual            Rarely
## 9459   52.16 Heterosexual (straight)             Never
## 9460      NA                Bisexual  Most of the time
## 9461   46.72 Heterosexual (straight)             Never
## 9462   56.70 Heterosexual (straight)            Rarely
## 9463   79.38 Heterosexual (straight)             Never
## 9464   65.77 Heterosexual (straight)            Rarely
## 9465   70.31 Heterosexual (straight)             Never
## 9466   81.65 Heterosexual (straight)             Never
## 9467   65.77 Heterosexual (straight)         Sometimes
## 9468   92.08 Heterosexual (straight)         Sometimes
## 9469   90.72          Gay or lesbian            Rarely
## 9470   64.41 Heterosexual (straight)             Never
## 9471   74.84 Heterosexual (straight)         Sometimes
## 9472   90.72 Heterosexual (straight)             Never
## 9473   51.26                Bisexual  Most of the time
## 9474   96.16 Heterosexual (straight)             Never
## 9475  145.15 Heterosexual (straight)             Never
## 9476   70.76          Gay or lesbian         Sometimes
## 9477   63.05                Bisexual         Sometimes
## 9478   80.29          Some other way  Most of the time
## 9479      NA Heterosexual (straight)         Sometimes
## 9480   81.65 Heterosexual (straight)            Rarely
## 9481   64.86 Heterosexual (straight)         Sometimes
## 9482   84.37 Heterosexual (straight)            Rarely
## 9483   86.18 Heterosexual (straight)         Sometimes
## 9484   77.11 Heterosexual (straight)         Sometimes
## 9485   78.47          Some other way            Always
## 9486   55.34 Heterosexual (straight)             Never
## 9487      NA Heterosexual (straight)              <NA>
## 9488   61.24 Heterosexual (straight)            Rarely
## 9489   77.11 Heterosexual (straight)             Never
## 9490   65.77 Heterosexual (straight)             Never
## 9491  106.60 Heterosexual (straight)         Sometimes
## 9492   43.55                Bisexual            Always
## 9493   54.43 Heterosexual (straight)  Most of the time
## 9494      NA Heterosexual (straight)         Sometimes
## 9495   58.97 Heterosexual (straight)  Most of the time
## 9496   71.67 Heterosexual (straight)            Always
## 9497   86.18                Bisexual  Most of the time
## 9498   68.95 Heterosexual (straight)            Rarely
## 9499  113.40 Heterosexual (straight)            Rarely
## 9500   78.02          Gay or lesbian            Rarely
## 9501   52.16 Heterosexual (straight)             Never
## 9502   89.81 Heterosexual (straight)  Most of the time
## 9503   52.16 Heterosexual (straight)            Always
## 9504   89.81 Heterosexual (straight)            Always
## 9505   63.50 Heterosexual (straight)             Never
## 9506      NA Heterosexual (straight)            Always
## 9507   43.09                Bisexual         Sometimes
## 9508   81.65 Heterosexual (straight)             Never
## 9509   81.65 Heterosexual (straight)         Sometimes
## 9510      NA Heterosexual (straight)  Most of the time
## 9511   70.76          Some other way         Sometimes
## 9512   63.50                Not sure            Always
## 9513   81.65 Heterosexual (straight)  Most of the time
## 9514   65.77 Heterosexual (straight)         Sometimes
## 9515      NA Heterosexual (straight)            Always
## 9516   79.38 Heterosexual (straight)         Sometimes
## 9517   63.50                Bisexual         Sometimes
## 9518   65.77 Heterosexual (straight)  Most of the time
## 9519  103.87                Bisexual            Always
## 9520      NA          Some other way            Always
## 9521   42.64                Bisexual  Most of the time
## 9522      NA Heterosexual (straight)             Never
## 9523  106.60 Heterosexual (straight)            Rarely
## 9524   63.50 Heterosexual (straight)             Never
## 9525   84.82 Heterosexual (straight)             Never
## 9526   73.48 Heterosexual (straight)            Rarely
## 9527   75.75 Heterosexual (straight)             Never
## 9528   59.88 Heterosexual (straight)             Never
## 9529   47.63                Bisexual  Most of the time
## 9530   59.42 Heterosexual (straight)             Never
## 9531   65.77 Heterosexual (straight)             Never
## 9532   51.26 Heterosexual (straight)         Sometimes
## 9533   63.50 Heterosexual (straight)         Sometimes
## 9534      NA Heterosexual (straight)         Sometimes
## 9535   83.92 Heterosexual (straight)            Rarely
## 9536   61.24 Heterosexual (straight)             Never
## 9537   54.43 Heterosexual (straight)             Never
## 9538   68.04 Heterosexual (straight)              <NA>
## 9539   72.58 Heterosexual (straight)             Never
## 9540   64.41 Heterosexual (straight)            Rarely
## 9541   56.70 Heterosexual (straight)         Sometimes
## 9542  127.01                Bisexual            Always
## 9543      NA          Gay or lesbian  Most of the time
## 9544  108.86 Heterosexual (straight)            Rarely
## 9545   79.38 Heterosexual (straight)  Most of the time
## 9546   66.23 Heterosexual (straight)             Never
## 9547   61.69                Not sure            Rarely
## 9548   41.28 Heterosexual (straight)            Always
## 9549   77.11 Heterosexual (straight)             Never
## 9550      NA Heterosexual (straight)            Rarely
## 9551   92.99 Heterosexual (straight)            Rarely
## 9552   79.38          Gay or lesbian  Most of the time
## 9553   49.90                Not sure         Sometimes
## 9554   47.17 Heterosexual (straight)            Rarely
## 9555  112.04 Heterosexual (straight)  Most of the time
## 9556   47.63 Heterosexual (straight)         Sometimes
## 9557   83.92 Heterosexual (straight)  Most of the time
## 9558   56.70 Heterosexual (straight)            Rarely
## 9559   86.18 Heterosexual (straight)             Never
## 9560   74.84 Heterosexual (straight)            Rarely
## 9561   38.56 Heterosexual (straight)            Rarely
## 9562  101.61 Heterosexual (straight)             Never
## 9563   53.98 Heterosexual (straight)             Never
## 9564   72.12 Heterosexual (straight)              <NA>
## 9565   61.24 Heterosexual (straight)  Most of the time
## 9566   58.97 Heterosexual (straight)            Rarely
## 9567   72.58                Not sure            Always
## 9568   58.51 Heterosexual (straight)  Most of the time
## 9569   74.84 Heterosexual (straight)         Sometimes
## 9570   70.31 Heterosexual (straight)            Rarely
## 9571   61.69 Heterosexual (straight)         Sometimes
## 9572      NA Heterosexual (straight)             Never
## 9573   77.11 Heterosexual (straight)            Rarely
## 9574   79.38 Heterosexual (straight)  Most of the time
## 9575   83.92                Bisexual            Always
## 9576   44.45 Heterosexual (straight)         Sometimes
## 9577   80.29                Bisexual  Most of the time
## 9578      NA                Not sure             Never
## 9579   63.50 Heterosexual (straight)             Never
## 9580  104.33 Heterosexual (straight)            Rarely
## 9581      NA          Gay or lesbian  Most of the time
## 9582   74.84 Heterosexual (straight)         Sometimes
## 9583   70.76 Heterosexual (straight)         Sometimes
## 9584   95.26 Heterosexual (straight)             Never
## 9585   45.36 Heterosexual (straight)         Sometimes
## 9586   58.97 Heterosexual (straight)         Sometimes
## 9587   74.84 Heterosexual (straight)             Never
## 9588   92.08 Heterosexual (straight)            Rarely
## 9589   63.50          Gay or lesbian         Sometimes
## 9590   68.04                Bisexual             Never
## 9591   78.93 Heterosexual (straight)            Rarely
## 9592   52.16 Heterosexual (straight)            Rarely
## 9593   61.24 Heterosexual (straight)            Rarely
## 9594   63.50          Gay or lesbian         Sometimes
## 9595   58.97 Heterosexual (straight)  Most of the time
## 9596   56.70 Heterosexual (straight)            Rarely
## 9597   86.18 Heterosexual (straight)            Rarely
## 9598   63.50 Heterosexual (straight)             Never
## 9599  116.12 Heterosexual (straight)         Sometimes
## 9600   70.31 Heterosexual (straight)            Rarely
## 9601   49.90                Bisexual         Sometimes
## 9602   61.24          Gay or lesbian  Most of the time
## 9603   63.50 Heterosexual (straight)         Sometimes
## 9604   78.02                Bisexual  Most of the time
## 9605   56.70          Gay or lesbian  Most of the time
## 9606   76.66 Heterosexual (straight)             Never
## 9607   63.50 Heterosexual (straight)            Rarely
## 9608  124.74                Bisexual  Most of the time
## 9609   72.58 Heterosexual (straight)  Most of the time
## 9610   55.79                Bisexual         Sometimes
## 9611   54.43 Heterosexual (straight)  Most of the time
## 9612  122.47          Some other way         Sometimes
## 9613   90.72 Heterosexual (straight)  Most of the time
## 9614   55.34                Bisexual         Sometimes
## 9615   68.04 Heterosexual (straight)  Most of the time
## 9616   56.70 Heterosexual (straight)  Most of the time
## 9617   69.85                Bisexual  Most of the time
## 9618   63.50                Bisexual  Most of the time
## 9619      NA          Some other way  Most of the time
## 9620   72.58 Heterosexual (straight)            Rarely
## 9621   63.50 Heterosexual (straight)  Most of the time
## 9622   99.79                Not sure  Most of the time
## 9623   68.04 Heterosexual (straight)         Sometimes
## 9624   90.72 Heterosexual (straight)            Rarely
## 9625   63.50                Not sure         Sometimes
## 9626   95.26 Heterosexual (straight)            Rarely
## 9627   95.26 Heterosexual (straight)  Most of the time
## 9628   58.97 Heterosexual (straight)            Rarely
## 9629      NA Heterosexual (straight)            Rarely
## 9630   35.38 Heterosexual (straight)         Sometimes
## 9631   50.80 Heterosexual (straight)         Sometimes
## 9632   56.70 Heterosexual (straight)  Most of the time
## 9633  120.20 Heterosexual (straight)         Sometimes
## 9634   52.16 Heterosexual (straight)             Never
## 9635   61.24          Some other way             Never
## 9636   79.38                Bisexual         Sometimes
## 9637   70.31 Heterosexual (straight)  Most of the time
## 9638   94.35 Heterosexual (straight)            Rarely
## 9639   83.92 Heterosexual (straight)            Rarely
## 9640   68.04                Bisexual         Sometimes
## 9641   72.58                Not sure            Rarely
## 9642      NA Heterosexual (straight)            Always
## 9643   48.54 Heterosexual (straight)         Sometimes
## 9644   65.77 Heterosexual (straight)            Rarely
## 9645   88.45 Heterosexual (straight)             Never
## 9646   48.54 Heterosexual (straight)            Rarely
## 9647   90.72                Not sure         Sometimes
## 9648   74.84 Heterosexual (straight)            Rarely
## 9649   65.77 Heterosexual (straight)         Sometimes
## 9650   55.79 Heterosexual (straight)            Rarely
## 9651      NA Heterosexual (straight)            Rarely
## 9652   58.97 Heterosexual (straight)            Rarely
## 9653   49.90                Bisexual  Most of the time
## 9654   50.80                Bisexual         Sometimes
## 9655   86.64 Heterosexual (straight)         Sometimes
## 9656   61.24 Heterosexual (straight)            Always
## 9657   65.77                Bisexual         Sometimes
## 9658   52.16          Gay or lesbian  Most of the time
## 9659   72.58 Heterosexual (straight)         Sometimes
## 9660   76.20                Bisexual  Most of the time
## 9661   63.50 Heterosexual (straight)            Rarely
## 9662   57.15                Bisexual  Most of the time
## 9663   58.97 Heterosexual (straight)             Never
## 9664   46.72 Heterosexual (straight)             Never
## 9665  136.08 Heterosexual (straight)  Most of the time
## 9666   58.97 Heterosexual (straight)         Sometimes
## 9667   52.16 Heterosexual (straight)         Sometimes
## 9668   68.04 Heterosexual (straight)            Always
## 9669   47.63 Heterosexual (straight)            Rarely
## 9670   50.80 Heterosexual (straight)            Always
## 9671  122.47 Heterosexual (straight)            Rarely
## 9672  106.60 Heterosexual (straight)            Rarely
## 9673   70.31                Bisexual         Sometimes
## 9674   54.43                Bisexual            Rarely
## 9675   74.84 Heterosexual (straight)            Rarely
## 9676      NA Heterosexual (straight)         Sometimes
## 9677   66.23 Heterosexual (straight)            Rarely
## 9678   81.65 Heterosexual (straight)            Rarely
## 9679   52.16 Heterosexual (straight)            Always
## 9680   68.04 Heterosexual (straight)  Most of the time
## 9681   53.52                Bisexual  Most of the time
## 9682   61.24                Bisexual  Most of the time
## 9683   97.52 Heterosexual (straight)            Rarely
## 9684   90.72                Bisexual            Rarely
## 9685   61.24 Heterosexual (straight)         Sometimes
## 9686   61.24          Some other way  Most of the time
## 9687   49.90 Heterosexual (straight)            Rarely
## 9688      NA          Gay or lesbian         Sometimes
## 9689      NA          Gay or lesbian         Sometimes
## 9690   72.58 Heterosexual (straight)         Sometimes
## 9691   81.65 Heterosexual (straight)             Never
## 9692   79.38                Bisexual  Most of the time
## 9693   60.33 Heterosexual (straight)  Most of the time
## 9694   63.50 Heterosexual (straight)         Sometimes
## 9695   52.16                Not sure         Sometimes
## 9696   56.70                Bisexual  Most of the time
## 9697   43.09 Heterosexual (straight)         Sometimes
## 9698   88.00 Heterosexual (straight)         Sometimes
## 9699   86.18 Heterosexual (straight)         Sometimes
## 9700  111.59 Heterosexual (straight)         Sometimes
## 9701   65.77 Heterosexual (straight)              <NA>
## 9702   58.97 Heterosexual (straight)  Most of the time
## 9703   45.36 Heterosexual (straight)             Never
## 9704   85.73          Some other way            Rarely
## 9705   56.70          Some other way         Sometimes
## 9706   61.24 Heterosexual (straight)         Sometimes
## 9707   61.69          Some other way         Sometimes
## 9708   77.11                Bisexual  Most of the time
## 9709   58.97 Heterosexual (straight)  Most of the time
## 9710   58.06                Bisexual         Sometimes
## 9711   69.40 Heterosexual (straight)            Always
## 9712  111.13 Heterosexual (straight)            Always
## 9713   65.77                Bisexual         Sometimes
## 9714   53.98 Heterosexual (straight)  Most of the time
## 9715   60.78 Heterosexual (straight)            Rarely
## 9716   81.65 Heterosexual (straight)            Rarely
## 9717  116.12 Heterosexual (straight)             Never
## 9718   49.90                Bisexual         Sometimes
## 9719   48.99 Heterosexual (straight)            Rarely
## 9720   62.60 Heterosexual (straight)            Always
## 9721   84.37 Heterosexual (straight)            Rarely
## 9722   56.70 Heterosexual (straight)  Most of the time
## 9723   72.58 Heterosexual (straight)             Never
## 9724   50.35 Heterosexual (straight)         Sometimes
## 9725   79.38 Heterosexual (straight)            Rarely
## 9726   79.38 Heterosexual (straight)             Never
## 9727   90.72                Bisexual  Most of the time
## 9728   88.45 Heterosexual (straight)            Rarely
## 9729   72.58 Heterosexual (straight)            Rarely
## 9730      NA Heterosexual (straight)  Most of the time
## 9731   56.70 Heterosexual (straight)            Rarely
## 9732   88.45 Heterosexual (straight)            Always
## 9733   92.99 Heterosexual (straight)            Rarely
## 9734  113.40 Heterosexual (straight)            Rarely
## 9735  145.15 Heterosexual (straight)  Most of the time
## 9736      NA Heterosexual (straight)         Sometimes
## 9737   58.51 Heterosexual (straight)  Most of the time
## 9738      NA Heterosexual (straight)             Never
## 9739   63.50          Gay or lesbian         Sometimes
## 9740   77.11 Heterosexual (straight)  Most of the time
## 9741   63.50 Heterosexual (straight)            Rarely
## 9742   65.77 Heterosexual (straight)         Sometimes
## 9743   58.97          Gay or lesbian         Sometimes
## 9744   70.31 Heterosexual (straight)         Sometimes
## 9745   58.97 Heterosexual (straight)             Never
## 9746   72.58                Bisexual  Most of the time
## 9747   49.90 Heterosexual (straight)            Rarely
## 9748   90.72 Heterosexual (straight)            Rarely
## 9749   54.89 Heterosexual (straight)         Sometimes
## 9750   44.91 Heterosexual (straight)  Most of the time
## 9751   61.24                Bisexual  Most of the time
## 9752   68.04 Heterosexual (straight)         Sometimes
## 9753   58.97 Heterosexual (straight)         Sometimes
## 9754   61.24 Heterosexual (straight)            Rarely
## 9755   63.50 Heterosexual (straight)         Sometimes
## 9756   49.90 Heterosexual (straight)            Rarely
## 9757  113.40 Heterosexual (straight)             Never
## 9758   74.84 Heterosexual (straight)  Most of the time
## 9759  104.33                Bisexual            Always
## 9760   90.72 Heterosexual (straight)            Always
## 9761   74.84          Gay or lesbian         Sometimes
## 9762   49.90                Not sure  Most of the time
## 9763  101.15 Heterosexual (straight)  Most of the time
## 9764   95.26 Heterosexual (straight)  Most of the time
## 9765   58.97 Heterosexual (straight)            Rarely
## 9766   83.92 Heterosexual (straight)             Never
## 9767   61.24 Heterosexual (straight)  Most of the time
## 9768   56.70 Heterosexual (straight)            Rarely
## 9769   53.07 Heterosexual (straight)  Most of the time
## 9770   96.62          Some other way  Most of the time
## 9771   52.16 Heterosexual (straight)         Sometimes
## 9772   61.24                Not sure  Most of the time
## 9773   90.72 Heterosexual (straight)            Always
## 9774   95.26 Heterosexual (straight)            Rarely
## 9775   47.63 Heterosexual (straight)            Rarely
## 9776  111.13 Heterosexual (straight)            Always
## 9777   56.70                Bisexual  Most of the time
## 9778  113.40          Some other way  Most of the time
## 9779   70.31                Bisexual            Rarely
## 9780   86.18 Heterosexual (straight)  Most of the time
## 9781   58.97 Heterosexual (straight)         Sometimes
## 9782   56.70 Heterosexual (straight)            Rarely
## 9783      NA          Gay or lesbian            Rarely
## 9784   70.76 Heterosexual (straight)         Sometimes
## 9785   68.95 Heterosexual (straight)  Most of the time
## 9786   92.99 Heterosexual (straight)         Sometimes
## 9787   57.15                Bisexual  Most of the time
## 9788   52.16 Heterosexual (straight)  Most of the time
## 9789   63.50 Heterosexual (straight)            Rarely
## 9790   90.72 Heterosexual (straight)            Rarely
## 9791   92.99 Heterosexual (straight)            Rarely
## 9792   56.70 Heterosexual (straight)         Sometimes
## 9793   49.90 Heterosexual (straight)             Never
## 9794  129.28 Heterosexual (straight)         Sometimes
## 9795   68.04 Heterosexual (straight)            Rarely
## 9796   67.13 Heterosexual (straight)            Always
## 9797   53.52 Heterosexual (straight)             Never
## 9798   86.18          Some other way  Most of the time
## 9799   55.34          Gay or lesbian  Most of the time
## 9800   77.11          Some other way         Sometimes
## 9801   81.65                Bisexual         Sometimes
## 9802  110.22 Heterosexual (straight)            Rarely
## 9803   83.92 Heterosexual (straight)            Rarely
## 9804   58.97 Heterosexual (straight)         Sometimes
## 9805   61.24 Heterosexual (straight)             Never
## 9806      NA Heterosexual (straight)             Never
## 9807   65.77 Heterosexual (straight)             Never
## 9808   83.92 Heterosexual (straight)             Never
## 9809   59.88 Heterosexual (straight)            Always
## 9810      NA Heterosexual (straight)              <NA>
## 9811   58.97 Heterosexual (straight)  Most of the time
## 9812   86.18 Heterosexual (straight)         Sometimes
## 9813   63.50 Heterosexual (straight)  Most of the time
## 9814   79.38 Heterosexual (straight)            Rarely
## 9815   65.77 Heterosexual (straight)  Most of the time
## 9816   54.43 Heterosexual (straight)            Rarely
## 9817   40.82 Heterosexual (straight)         Sometimes
## 9818      NA Heterosexual (straight)            Rarely
## 9819   54.43 Heterosexual (straight)            Always
## 9820   49.90          Some other way            Always
## 9821  158.76 Heterosexual (straight)  Most of the time
## 9822   54.43 Heterosexual (straight)         Sometimes
## 9823      NA Heterosexual (straight)             Never
## 9824   70.31 Heterosexual (straight)         Sometimes
## 9825   63.50 Heterosexual (straight)         Sometimes
## 9826   63.50 Heterosexual (straight)         Sometimes
## 9827   67.13 Heterosexual (straight)            Rarely
## 9828   65.77 Heterosexual (straight)              <NA>
## 9829   51.71 Heterosexual (straight)         Sometimes
## 9830   72.58 Heterosexual (straight)             Never
## 9831   68.04 Heterosexual (straight)            Rarely
## 9832  124.74 Heterosexual (straight)            Rarely
## 9833   71.67 Heterosexual (straight)             Never
## 9834   63.05 Heterosexual (straight)            Rarely
## 9835   51.71 Heterosexual (straight)  Most of the time
## 9836      NA Heterosexual (straight)              <NA>
## 9837   81.65 Heterosexual (straight)             Never
## 9838   61.24 Heterosexual (straight)  Most of the time
## 9839   43.09 Heterosexual (straight)            Rarely
## 9840   68.04 Heterosexual (straight)         Sometimes
## 9841   90.72 Heterosexual (straight)            Always
## 9842   86.18 Heterosexual (straight)             Never
## 9843   77.11 Heterosexual (straight)  Most of the time
## 9844   68.04 Heterosexual (straight)  Most of the time
## 9845   68.04 Heterosexual (straight)         Sometimes
## 9846   60.78 Heterosexual (straight)            Rarely
## 9847   58.06 Heterosexual (straight)            Always
## 9848   86.18 Heterosexual (straight)         Sometimes
## 9849   56.70                Bisexual            Rarely
## 9850   68.04 Heterosexual (straight)  Most of the time
## 9851      NA Heterosexual (straight)  Most of the time
## 9852   45.36          Gay or lesbian         Sometimes
## 9853   63.50 Heterosexual (straight)         Sometimes
## 9854   47.17          Gay or lesbian            Always
## 9855   55.79 Heterosexual (straight)            Rarely
## 9856   99.79          Gay or lesbian  Most of the time
## 9857   72.58          Some other way            Rarely
## 9858  113.40 Heterosexual (straight)         Sometimes
## 9859   37.65          Gay or lesbian              <NA>
## 9860   58.97 Heterosexual (straight)         Sometimes
## 9861   61.24 Heterosexual (straight)         Sometimes
## 9862   65.77 Heterosexual (straight)            Rarely
## 9863   44.45 Heterosexual (straight)         Sometimes
## 9864   52.16 Heterosexual (straight)            Rarely
## 9865   95.26 Heterosexual (straight)            Rarely
## 9866   68.04          Gay or lesbian         Sometimes
## 9867   72.58 Heterosexual (straight)            Rarely
## 9868   52.16 Heterosexual (straight)            Rarely
## 9869   85.73 Heterosexual (straight)            Rarely
## 9870   65.77                Not sure         Sometimes
## 9871   45.36                Not sure         Sometimes
## 9872   45.36 Heterosexual (straight)         Sometimes
## 9873  158.76 Heterosexual (straight)            Rarely
## 9874   77.11                Bisexual  Most of the time
## 9875   58.97 Heterosexual (straight)         Sometimes
## 9876   63.50 Heterosexual (straight)         Sometimes
## 9877   58.97                Bisexual  Most of the time
## 9878   49.90 Heterosexual (straight)         Sometimes
## 9879   53.52 Heterosexual (straight)            Always
## 9880   97.52                Not sure            Always
## 9881   52.16 Heterosexual (straight)         Sometimes
## 9882   53.52          Gay or lesbian            Always
## 9883      NA                Not sure  Most of the time
## 9884   68.95 Heterosexual (straight)             Never
## 9885   60.78 Heterosexual (straight)            Rarely
## 9886   61.24                Not sure         Sometimes
## 9887   70.31 Heterosexual (straight)            Rarely
## 9888   72.58 Heterosexual (straight)         Sometimes
## 9889      NA          Some other way            Rarely
## 9890   76.20 Heterosexual (straight)             Never
## 9891   52.62          Gay or lesbian         Sometimes
## 9892   71.22 Heterosexual (straight)  Most of the time
## 9893   83.01 Heterosexual (straight)         Sometimes
## 9894   83.92                Bisexual  Most of the time
## 9895   64.86 Heterosexual (straight)         Sometimes
## 9896   54.43                Bisexual  Most of the time
## 9897   58.97          Gay or lesbian            Rarely
## 9898   52.16          Some other way  Most of the time
## 9899   52.16 Heterosexual (straight)         Sometimes
## 9900   52.16 Heterosexual (straight)             Never
## 9901   61.69                Bisexual  Most of the time
## 9902   58.97 Heterosexual (straight)         Sometimes
## 9903   56.70 Heterosexual (straight)  Most of the time
## 9904   61.24 Heterosexual (straight)         Sometimes
## 9905   68.04 Heterosexual (straight)         Sometimes
## 9906   81.65 Heterosexual (straight)  Most of the time
## 9907   46.72 Heterosexual (straight)  Most of the time
## 9908   99.79 Heterosexual (straight)         Sometimes
## 9909   88.45 Heterosexual (straight)         Sometimes
## 9910   62.60 Heterosexual (straight)            Rarely
## 9911   52.62          Some other way         Sometimes
## 9912      NA Heterosexual (straight)         Sometimes
## 9913   72.58 Heterosexual (straight)  Most of the time
## 9914   63.50                Bisexual  Most of the time
## 9915   81.65          Gay or lesbian  Most of the time
## 9916   56.70 Heterosexual (straight)            Rarely
## 9917   58.06 Heterosexual (straight)            Rarely
## 9918      NA Heterosexual (straight)            Always
## 9919   68.04          Gay or lesbian  Most of the time
## 9920   61.24 Heterosexual (straight)             Never
## 9921   95.26 Heterosexual (straight)            Rarely
## 9922      NA Heterosexual (straight)             Never
## 9923   53.52 Heterosexual (straight)            Rarely
## 9924   81.65          Gay or lesbian         Sometimes
## 9925   56.70 Heterosexual (straight)              <NA>
## 9926   90.72 Heterosexual (straight)  Most of the time
## 9927   72.58 Heterosexual (straight)             Never
## 9928   61.24 Heterosexual (straight)            Rarely
## 9929   68.04 Heterosexual (straight)         Sometimes
## 9930   44.00                Not sure            Always
## 9931      NA                Bisexual         Sometimes
## 9932   48.99 Heterosexual (straight)  Most of the time
## 9933      NA                Not sure         Sometimes
## 9934  104.33                Bisexual            Always
## 9935   67.13                Not sure         Sometimes
## 9936   53.52                Bisexual            Always
## 9937   63.50 Heterosexual (straight)            Rarely
## 9938   52.62 Heterosexual (straight)         Sometimes
## 9939   81.65 Heterosexual (straight)  Most of the time
## 9940   70.31 Heterosexual (straight)            Rarely
## 9941   47.63 Heterosexual (straight)  Most of the time
## 9942   68.04                Bisexual         Sometimes
## 9943   68.04 Heterosexual (straight)             Never
## 9944   52.62                Not sure         Sometimes
## 9945   58.97 Heterosexual (straight)  Most of the time
## 9946   88.45 Heterosexual (straight)         Sometimes
## 9947   86.18          Some other way         Sometimes
## 9948   81.65 Heterosexual (straight)            Rarely
## 9949   72.58                Bisexual  Most of the time
## 9950   97.52 Heterosexual (straight)            Rarely
## 9951  101.15 Heterosexual (straight)         Sometimes
## 9952   79.38 Heterosexual (straight)            Rarely
## 9953      NA          Some other way            Always
## 9954   66.68 Heterosexual (straight)            Rarely
## 9955   68.04          Some other way         Sometimes
## 9956  104.33 Heterosexual (straight)            Rarely
## 9957   68.04 Heterosexual (straight)             Never
## 9958   54.89 Heterosexual (straight)         Sometimes
## 9959   63.50                Bisexual         Sometimes
## 9960      NA                Not sure  Most of the time
## 9961   83.92 Heterosexual (straight)            Rarely
## 9962   59.88 Heterosexual (straight)             Never
## 9963   61.24 Heterosexual (straight)             Never
## 9964      NA          Some other way         Sometimes
## 9965   52.16                Bisexual  Most of the time
## 9966      NA                Bisexual  Most of the time
## 9967   74.84 Heterosexual (straight)             Never
## 9968   63.96 Heterosexual (straight)         Sometimes
## 9969   58.97 Heterosexual (straight)         Sometimes
## 9970   95.26 Heterosexual (straight)            Rarely
## 9971   54.43 Heterosexual (straight)  Most of the time
## 9972      NA Heterosexual (straight)         Sometimes
## 9973   55.79                Bisexual            Always
## 9974      NA Heterosexual (straight)         Sometimes
## 9975   50.80 Heterosexual (straight)         Sometimes
## 9976   81.65 Heterosexual (straight)         Sometimes
## 9977   78.02 Heterosexual (straight)            Rarely
## 9978   60.33 Heterosexual (straight)            Rarely
## 9979   69.40                Bisexual  Most of the time
## 9980   81.65 Heterosexual (straight)            Rarely
## 9981   81.65 Heterosexual (straight)            Rarely
## 9982   70.31 Heterosexual (straight)            Rarely
## 9983   52.62          Some other way  Most of the time
## 9984   94.80 Heterosexual (straight)            Rarely
## 9985   48.54                Bisexual  Most of the time
## 9986   59.88 Heterosexual (straight)         Sometimes
## 9987   57.15                Bisexual            Always
## 9988      NA Heterosexual (straight)         Sometimes
## 9989   68.95 Heterosexual (straight)            Rarely
## 9990   77.11 Heterosexual (straight)         Sometimes
## 9991   63.50 Heterosexual (straight)            Rarely
## 9992   65.77 Heterosexual (straight)         Sometimes
## 9993   65.77                Bisexual         Sometimes
## 9994   97.52 Heterosexual (straight)         Sometimes
## 9995   86.18 Heterosexual (straight)         Sometimes
## 9996      NA          Gay or lesbian  Most of the time
## 9997   81.65 Heterosexual (straight)              <NA>
## 9998   68.04                Bisexual  Most of the time
## 9999   58.51 Heterosexual (straight)            Rarely
## 10000  47.63 Heterosexual (straight)            Rarely
## 10001  58.97                Not sure  Most of the time
## 10002  59.88                Bisexual  Most of the time
## 10003  95.26 Heterosexual (straight)  Most of the time
## 10004  53.98                Bisexual            Always
## 10005  49.44                Bisexual            Rarely
## 10006  58.97 Heterosexual (straight)            Rarely
## 10007  54.43 Heterosexual (straight)            Rarely
## 10008  72.58 Heterosexual (straight)            Rarely
## 10009 138.35 Heterosexual (straight)  Most of the time
## 10010  61.24 Heterosexual (straight)            Rarely
## 10011  74.84 Heterosexual (straight)              <NA>
## 10012  77.11 Heterosexual (straight)         Sometimes
## 10013  49.90          Gay or lesbian         Sometimes
## 10014  56.70 Heterosexual (straight)            Always
## 10015  61.24 Heterosexual (straight)         Sometimes
## 10016  74.84 Heterosexual (straight)             Never
## 10017  82.56 Heterosexual (straight)             Never
## 10018  86.18 Heterosexual (straight)             Never
## 10019  64.86 Heterosexual (straight)         Sometimes
## 10020  83.92 Heterosexual (straight)         Sometimes
## 10021  68.04 Heterosexual (straight)            Always
## 10022  72.58 Heterosexual (straight)            Rarely
## 10023     NA                Bisexual  Most of the time
## 10024  81.65                Bisexual  Most of the time
## 10025  52.16                Bisexual            Always
## 10026  52.16 Heterosexual (straight)  Most of the time
## 10027  65.77 Heterosexual (straight)  Most of the time
## 10028  58.97 Heterosexual (straight)            Always
## 10029  65.77 Heterosexual (straight)             Never
## 10030  70.31 Heterosexual (straight)            Rarely
## 10031  65.77 Heterosexual (straight)            Rarely
## 10032  63.50          Some other way              <NA>
## 10033  88.91 Heterosexual (straight)            Rarely
## 10034  62.60 Heterosexual (straight)         Sometimes
## 10035  58.97 Heterosexual (straight)             Never
## 10036  68.04                Bisexual  Most of the time
## 10037  68.04 Heterosexual (straight)         Sometimes
## 10038  54.89                Not sure  Most of the time
## 10039  68.04 Heterosexual (straight)            Always
## 10040  68.04 Heterosexual (straight)            Rarely
## 10041  54.43 Heterosexual (straight)         Sometimes
## 10042  74.84          Some other way             Never
## 10043  80.74 Heterosexual (straight)  Most of the time
## 10044 121.56 Heterosexual (straight)             Never
## 10045     NA Heterosexual (straight)         Sometimes
## 10046  70.31 Heterosexual (straight)            Rarely
## 10047  71.67                Bisexual            Always
## 10048  34.02                Not sure         Sometimes
## 10049  63.50 Heterosexual (straight)         Sometimes
## 10050     NA Heterosexual (straight)             Never
## 10051 127.01 Heterosexual (straight)         Sometimes
## 10052  65.77 Heterosexual (straight)              <NA>
## 10053 108.86 Heterosexual (straight)             Never
## 10054  56.70 Heterosexual (straight)            Rarely
## 10055  53.07 Heterosexual (straight)            Rarely
## 10056  61.24 Heterosexual (straight)            Rarely
## 10057  84.37 Heterosexual (straight)         Sometimes
## 10058  84.82 Heterosexual (straight)  Most of the time
## 10059  54.43 Heterosexual (straight)         Sometimes
## 10060  95.26 Heterosexual (straight)  Most of the time
## 10061  72.58 Heterosexual (straight)             Never
## 10062  47.63 Heterosexual (straight)         Sometimes
## 10063  38.56 Heterosexual (straight)             Never
## 10064  81.65 Heterosexual (straight)  Most of the time
## 10065  70.31 Heterosexual (straight)  Most of the time
## 10066  57.61 Heterosexual (straight)             Never
## 10067  83.92 Heterosexual (straight)             Never
## 10068  63.50 Heterosexual (straight)  Most of the time
## 10069  45.36 Heterosexual (straight)  Most of the time
## 10070     NA          Gay or lesbian         Sometimes
## 10071  52.16 Heterosexual (straight)             Never
## 10072  43.55 Heterosexual (straight)  Most of the time
## 10073  72.58 Heterosexual (straight)             Never
## 10074  54.43 Heterosexual (straight)            Always
## 10075  95.26 Heterosexual (straight)         Sometimes
## 10076  65.77 Heterosexual (straight)             Never
## 10077     NA Heterosexual (straight)  Most of the time
## 10078  97.52 Heterosexual (straight)              <NA>
## 10079  48.54 Heterosexual (straight)             Never
## 10080  45.36                Bisexual            Always
## 10081     NA Heterosexual (straight)             Never
## 10082  68.49 Heterosexual (straight)         Sometimes
## 10083 117.94 Heterosexual (straight)            Rarely
## 10084  61.24 Heterosexual (straight)            Rarely
## 10085  68.04 Heterosexual (straight)         Sometimes
## 10086  59.88 Heterosexual (straight)  Most of the time
## 10087  77.11 Heterosexual (straight)              <NA>
## 10088  45.36 Heterosexual (straight)             Never
## 10089  44.00 Heterosexual (straight)         Sometimes
## 10090  58.97 Heterosexual (straight)  Most of the time
## 10091  88.45 Heterosexual (straight)             Never
## 10092  74.84 Heterosexual (straight)            Rarely
## 10093     NA                Bisexual  Most of the time
## 10094  49.90 Heterosexual (straight)            Rarely
## 10095  99.79                Not sure            Always
## 10096  90.27 Heterosexual (straight)         Sometimes
## 10097  61.69 Heterosexual (straight)         Sometimes
## 10098  59.88 Heterosexual (straight)             Never
## 10099  82.10 Heterosexual (straight)             Never
## 10100     NA Heterosexual (straight)            Rarely
## 10101  88.45                Bisexual  Most of the time
## 10102  61.24 Heterosexual (straight)            Always
## 10103  63.96 Heterosexual (straight)         Sometimes
## 10104  86.18 Heterosexual (straight)         Sometimes
## 10105  65.77                Bisexual         Sometimes
## 10106     NA Heterosexual (straight)            Rarely
## 10107  43.09 Heterosexual (straight)              <NA>
## 10108  62.60 Heterosexual (straight)             Never
## 10109  88.00 Heterosexual (straight)            Rarely
## 10110  87.54                Bisexual  Most of the time
## 10111  54.43                Bisexual             Never
## 10112  54.43                Bisexual  Most of the time
## 10113  54.43                Bisexual         Sometimes
## 10114  79.38 Heterosexual (straight)  Most of the time
## 10115     NA          Some other way            Always
## 10116  49.90          Some other way  Most of the time
## 10117  45.36 Heterosexual (straight)         Sometimes
## 10118  58.06 Heterosexual (straight)            Always
## 10119  82.56          Gay or lesbian  Most of the time
## 10120  58.97 Heterosexual (straight)             Never
## 10121     NA                Not sure            Rarely
## 10122  70.76 Heterosexual (straight)            Rarely
## 10123     NA Heterosexual (straight)         Sometimes
## 10124  53.07          Some other way         Sometimes
## 10125  47.63 Heterosexual (straight)  Most of the time
## 10126  97.52 Heterosexual (straight)            Rarely
## 10127  65.77 Heterosexual (straight)  Most of the time
## 10128  88.00 Heterosexual (straight)  Most of the time
## 10129  92.99 Heterosexual (straight)            Rarely
## 10130  84.37 Heterosexual (straight)             Never
## 10131  73.94 Heterosexual (straight)            Always
## 10132  52.16                Bisexual            Always
## 10133 149.69 Heterosexual (straight)            Always
## 10134  57.15 Heterosexual (straight)            Rarely
## 10135     NA Heterosexual (straight)            Always
## 10136  44.45          Some other way         Sometimes
## 10137  37.65                Bisexual         Sometimes
## 10138  65.77                Not sure         Sometimes
## 10139     NA Heterosexual (straight)            Rarely
## 10140  59.88 Heterosexual (straight)            Rarely
## 10141  65.77 Heterosexual (straight)             Never
## 10142 140.62 Heterosexual (straight)         Sometimes
## 10143  55.34 Heterosexual (straight)         Sometimes
## 10144     NA                Bisexual  Most of the time
## 10145  72.58 Heterosexual (straight)         Sometimes
## 10146  90.72                Bisexual         Sometimes
## 10147  56.70 Heterosexual (straight)  Most of the time
## 10148  54.43 Heterosexual (straight)            Rarely
## 10149  88.45 Heterosexual (straight)  Most of the time
## 10150  88.91 Heterosexual (straight)         Sometimes
## 10151     NA Heterosexual (straight)  Most of the time
## 10152  55.34 Heterosexual (straight)  Most of the time
## 10153  61.24                Bisexual            Always
## 10154  61.24                Bisexual            Always
## 10155  54.43 Heterosexual (straight)             Never
## 10156  59.88 Heterosexual (straight)            Always
## 10157  54.43 Heterosexual (straight)  Most of the time
## 10158  96.16 Heterosexual (straight)            Rarely
## 10159  49.90 Heterosexual (straight)             Never
## 10160 124.74 Heterosexual (straight)            Always
## 10161  58.51 Heterosexual (straight)  Most of the time
## 10162  73.48 Heterosexual (straight)            Rarely
## 10163  65.77 Heterosexual (straight)         Sometimes
## 10164  61.69 Heterosexual (straight)            Rarely
## 10165  49.90 Heterosexual (straight)             Never
## 10166  63.50 Heterosexual (straight)         Sometimes
## 10167  54.43 Heterosexual (straight)            Always
## 10168  72.58                Bisexual  Most of the time
## 10169  73.94 Heterosexual (straight)            Rarely
## 10170 106.60                Not sure         Sometimes
## 10171  61.24 Heterosexual (straight)             Never
## 10172  61.24 Heterosexual (straight)            Rarely
## 10173 106.60 Heterosexual (straight)            Rarely
## 10174  61.24 Heterosexual (straight)            Rarely
## 10175  74.84 Heterosexual (straight)  Most of the time
## 10176  65.77 Heterosexual (straight)  Most of the time
## 10177  68.04 Heterosexual (straight)         Sometimes
## 10178  80.74 Heterosexual (straight)  Most of the time
## 10179  70.31 Heterosexual (straight)             Never
## 10180  46.27 Heterosexual (straight)             Never
## 10181  51.26                Bisexual  Most of the time
## 10182  67.13 Heterosexual (straight)            Rarely
## 10183  43.09 Heterosexual (straight)             Never
## 10184 106.60 Heterosexual (straight)         Sometimes
## 10185  56.70 Heterosexual (straight)         Sometimes
## 10186  54.89 Heterosexual (straight)         Sometimes
## 10187  57.15 Heterosexual (straight)         Sometimes
## 10188  39.46 Heterosexual (straight)             Never
## 10189  52.62 Heterosexual (straight)            Always
## 10190  58.97 Heterosexual (straight)            Rarely
## 10191  64.41 Heterosexual (straight)            Rarely
## 10192  49.44 Heterosexual (straight)         Sometimes
## 10193  63.50                Bisexual  Most of the time
## 10194  63.96                Bisexual         Sometimes
## 10195  68.95 Heterosexual (straight)         Sometimes
## 10196  61.24 Heterosexual (straight)             Never
## 10197 104.33          Some other way  Most of the time
## 10198  74.84 Heterosexual (straight)            Always
## 10199  59.42          Gay or lesbian            Always
## 10200  77.11 Heterosexual (straight)         Sometimes
## 10201  45.36 Heterosexual (straight)             Never
## 10202 108.86 Heterosexual (straight)            Rarely
## 10203  65.77 Heterosexual (straight)            Rarely
## 10204  83.01 Heterosexual (straight)         Sometimes
## 10205 104.33 Heterosexual (straight)         Sometimes
## 10206  80.74 Heterosexual (straight)            Rarely
## 10207  74.84                Bisexual  Most of the time
## 10208  86.18          Some other way         Sometimes
## 10209 125.65          Some other way  Most of the time
## 10210  58.97 Heterosexual (straight)            Rarely
## 10211  83.92 Heterosexual (straight)            Rarely
## 10212  83.01 Heterosexual (straight)         Sometimes
## 10213  52.16 Heterosexual (straight)         Sometimes
## 10214  55.34 Heterosexual (straight)            Rarely
## 10215  63.50 Heterosexual (straight)            Rarely
## 10216  61.24                Not sure  Most of the time
## 10217  47.63 Heterosexual (straight)  Most of the time
## 10218     NA Heterosexual (straight)  Most of the time
## 10219  79.38 Heterosexual (straight)  Most of the time
## 10220 108.86 Heterosexual (straight)            Rarely
## 10221  68.04 Heterosexual (straight)            Rarely
## 10222  68.04 Heterosexual (straight)            Rarely
## 10223  74.39 Heterosexual (straight)         Sometimes
## 10224  73.03 Heterosexual (straight)         Sometimes
## 10225  77.11 Heterosexual (straight)  Most of the time
## 10226  77.11 Heterosexual (straight)              <NA>
## 10227  83.92 Heterosexual (straight)         Sometimes
## 10228  92.99 Heterosexual (straight)             Never
## 10229  61.24 Heterosexual (straight)            Rarely
## 10230  90.72 Heterosexual (straight)             Never
## 10231  58.06 Heterosexual (straight)  Most of the time
## 10232  71.67 Heterosexual (straight)         Sometimes
## 10233  77.11                Bisexual         Sometimes
## 10234  74.84 Heterosexual (straight)             Never
## 10235  54.43 Heterosexual (straight)             Never
## 10236  88.45 Heterosexual (straight)             Never
## 10237  69.40 Heterosexual (straight)         Sometimes
## 10238  92.08 Heterosexual (straight)  Most of the time
## 10239  52.16 Heterosexual (straight)            Rarely
## 10240  70.31          Gay or lesbian  Most of the time
## 10241  71.67          Some other way         Sometimes
## 10242  79.38 Heterosexual (straight)  Most of the time
## 10243     NA Heterosexual (straight)         Sometimes
## 10244  63.50                Bisexual  Most of the time
## 10245  50.80 Heterosexual (straight)            Rarely
## 10246  66.68          Gay or lesbian  Most of the time
## 10247  63.50 Heterosexual (straight)  Most of the time
## 10248  63.50 Heterosexual (straight)             Never
## 10249  75.75 Heterosexual (straight)             Never
## 10250  70.31 Heterosexual (straight)             Never
## 10251  77.11 Heterosexual (straight)  Most of the time
## 10252  97.52 Heterosexual (straight)  Most of the time
## 10253  71.22                Bisexual         Sometimes
## 10254  63.50 Heterosexual (straight)  Most of the time
## 10255  56.70                Not sure  Most of the time
## 10256  79.38 Heterosexual (straight)         Sometimes
## 10257  52.62 Heterosexual (straight)            Always
## 10258 104.33                Bisexual  Most of the time
## 10259  58.97                Not sure         Sometimes
## 10260  86.64 Heterosexual (straight)            Rarely
## 10261  68.04          Some other way            Rarely
## 10262  68.04 Heterosexual (straight)  Most of the time
## 10263  97.52 Heterosexual (straight)         Sometimes
## 10264  63.50                Not sure         Sometimes
## 10265  58.97 Heterosexual (straight)         Sometimes
## 10266  63.50 Heterosexual (straight)            Rarely
## 10267  72.58 Heterosexual (straight)  Most of the time
## 10268  63.05                Bisexual         Sometimes
## 10269  53.07 Heterosexual (straight)         Sometimes
## 10270  58.97                Bisexual  Most of the time
## 10271  90.72 Heterosexual (straight)             Never
## 10272  63.50 Heterosexual (straight)         Sometimes
## 10273  64.41 Heterosexual (straight)         Sometimes
## 10274  72.12                Bisexual            Always
## 10275  60.33                Not sure  Most of the time
## 10276  65.77 Heterosexual (straight)             Never
## 10277  97.52 Heterosexual (straight)            Rarely
## 10278 122.47 Heterosexual (straight)            Rarely
## 10279     NA Heterosexual (straight)  Most of the time
## 10280  36.74 Heterosexual (straight)  Most of the time
## 10281  68.04                Bisexual  Most of the time
## 10282  61.24 Heterosexual (straight)             Never
## 10283  49.90 Heterosexual (straight)            Rarely
## 10284  76.20 Heterosexual (straight)         Sometimes
## 10285  73.48 Heterosexual (straight)            Rarely
## 10286 113.40 Heterosexual (straight)  Most of the time
## 10287  89.36 Heterosexual (straight)         Sometimes
## 10288  83.92 Heterosexual (straight)             Never
## 10289  65.77                Bisexual  Most of the time
## 10290  68.04 Heterosexual (straight)            Rarely
## 10291  67.13 Heterosexual (straight)            Always
## 10292  56.70 Heterosexual (straight)         Sometimes
## 10293  54.89 Heterosexual (straight)            Rarely
## 10294  61.24 Heterosexual (straight)         Sometimes
## 10295  52.16 Heterosexual (straight)            Always
## 10296     NA Heterosexual (straight)             Never
## 10297  56.70 Heterosexual (straight)         Sometimes
## 10298  61.69 Heterosexual (straight)            Rarely
## 10299  95.26                Bisexual            Always
## 10300  73.48 Heterosexual (straight)  Most of the time
## 10301  72.58 Heterosexual (straight)            Rarely
## 10302  56.70 Heterosexual (straight)  Most of the time
## 10303  70.31 Heterosexual (straight)         Sometimes
## 10304  52.16 Heterosexual (straight)             Never
## 10305  81.65                Not sure  Most of the time
## 10306  68.04 Heterosexual (straight)         Sometimes
## 10307 117.94 Heterosexual (straight)         Sometimes
## 10308     NA                Not sure  Most of the time
## 10309  55.34 Heterosexual (straight)             Never
## 10310  56.70 Heterosexual (straight)  Most of the time
## 10311  58.06 Heterosexual (straight)         Sometimes
## 10312  58.97 Heterosexual (straight)             Never
## 10313  45.36 Heterosexual (straight)         Sometimes
## 10314  77.11 Heterosexual (straight)  Most of the time
## 10315  77.11 Heterosexual (straight)            Rarely
## 10316  77.11 Heterosexual (straight)            Rarely
## 10317  68.04 Heterosexual (straight)  Most of the time
## 10318  72.58 Heterosexual (straight)            Rarely
## 10319  54.43 Heterosexual (straight)             Never
## 10320  56.70 Heterosexual (straight)            Always
## 10321     NA Heterosexual (straight)            Rarely
## 10322 142.88 Heterosexual (straight)            Rarely
## 10323  72.58 Heterosexual (straight)             Never
## 10324 108.86          Gay or lesbian         Sometimes
## 10325 113.40 Heterosexual (straight)  Most of the time
## 10326  61.24 Heterosexual (straight)  Most of the time
## 10327  79.83 Heterosexual (straight)             Never
## 10328  62.14 Heterosexual (straight)             Never
## 10329  65.77 Heterosexual (straight)            Rarely
## 10330  49.90 Heterosexual (straight)         Sometimes
## 10331  77.11 Heterosexual (straight)  Most of the time
## 10332  83.92 Heterosexual (straight)            Rarely
## 10333  58.97 Heterosexual (straight)  Most of the time
## 10334  92.99 Heterosexual (straight)            Rarely
## 10335  65.77 Heterosexual (straight)            Rarely
## 10336  77.11 Heterosexual (straight)            Rarely
## 10337  65.77 Heterosexual (straight)         Sometimes
## 10338  52.16                Not sure            Rarely
## 10339  61.24          Some other way         Sometimes
## 10340  65.77 Heterosexual (straight)            Rarely
## 10341  58.97 Heterosexual (straight)         Sometimes
## 10342  61.24 Heterosexual (straight)         Sometimes
## 10343     NA Heterosexual (straight)              <NA>
## 10344     NA Heterosexual (straight)             Never
## 10345  54.43 Heterosexual (straight)             Never
## 10346  67.13 Heterosexual (straight)         Sometimes
## 10347     NA          Some other way         Sometimes
## 10348  81.65 Heterosexual (straight)            Rarely
## 10349 145.15 Heterosexual (straight)         Sometimes
## 10350  63.50          Some other way  Most of the time
## 10351  40.82 Heterosexual (straight)             Never
## 10352     NA          Gay or lesbian            Rarely
## 10353  40.82 Heterosexual (straight)         Sometimes
## 10354  86.18          Gay or lesbian            Always
## 10355     NA Heterosexual (straight)         Sometimes
## 10356  65.77                Not sure            Rarely
## 10357  68.04 Heterosexual (straight)             Never
## 10358 140.62 Heterosexual (straight)         Sometimes
## 10359  50.35 Heterosexual (straight)            Rarely
## 10360  68.95 Heterosexual (straight)         Sometimes
## 10361  70.31                Not sure         Sometimes
## 10362  63.50 Heterosexual (straight)             Never
## 10363  82.56                Not sure  Most of the time
## 10364 104.33 Heterosexual (straight)              <NA>
## 10365 106.60 Heterosexual (straight)             Never
## 10366  58.97 Heterosexual (straight)  Most of the time
## 10367  56.70 Heterosexual (straight)             Never
## 10368  72.58 Heterosexual (straight)            Always
## 10369     NA Heterosexual (straight)              <NA>
## 10370     NA Heterosexual (straight)             Never
## 10371  63.50          Gay or lesbian            Rarely
## 10372  63.50 Heterosexual (straight)         Sometimes
## 10373 111.13 Heterosexual (straight)             Never
## 10374  67.13 Heterosexual (straight)             Never
## 10375  58.51          Some other way              <NA>
## 10376 101.61                Not sure         Sometimes
## 10377  51.26                Not sure            Always
## 10378 104.33                Bisexual         Sometimes
## 10379  72.58                Bisexual         Sometimes
## 10380  50.80 Heterosexual (straight)             Never
## 10381  54.43 Heterosexual (straight)         Sometimes
## 10382  48.99          Some other way         Sometimes
## 10383  83.92 Heterosexual (straight)  Most of the time
## 10384 133.81 Heterosexual (straight)         Sometimes
## 10385  61.24 Heterosexual (straight)              <NA>
## 10386  72.58          Some other way  Most of the time
## 10387  46.72 Heterosexual (straight)  Most of the time
## 10388  50.80 Heterosexual (straight)  Most of the time
## 10389  88.00 Heterosexual (straight)            Rarely
## 10390  39.01          Some other way  Most of the time
## 10391  86.18                Not sure             Never
## 10392  49.90 Heterosexual (straight)            Rarely
## 10393  58.97 Heterosexual (straight)         Sometimes
## 10394  77.11 Heterosexual (straight)             Never
## 10395  73.94 Heterosexual (straight)            Rarely
## 10396  65.32 Heterosexual (straight)  Most of the time
## 10397     NA Heterosexual (straight)         Sometimes
## 10398     NA Heterosexual (straight)  Most of the time
## 10399  72.58                Bisexual  Most of the time
## 10400  61.24 Heterosexual (straight)             Never
## 10401  72.58 Heterosexual (straight)            Rarely
## 10402  65.77 Heterosexual (straight)  Most of the time
## 10403  52.16 Heterosexual (straight)            Always
## 10404  56.25 Heterosexual (straight)            Always
## 10405  56.70 Heterosexual (straight)         Sometimes
## 10406  99.79 Heterosexual (straight)         Sometimes
## 10407  63.50 Heterosexual (straight)             Never
## 10408  61.24 Heterosexual (straight)  Most of the time
## 10409  73.94 Heterosexual (straight)            Rarely
## 10410     NA Heterosexual (straight)              <NA>
## 10411  58.97                Bisexual         Sometimes
## 10412  63.50 Heterosexual (straight)         Sometimes
## 10413  65.77 Heterosexual (straight)         Sometimes
## 10414  63.50 Heterosexual (straight)             Never
## 10415  52.16 Heterosexual (straight)         Sometimes
## 10416  65.77 Heterosexual (straight)  Most of the time
## 10417  83.92 Heterosexual (straight)         Sometimes
## 10418  53.52 Heterosexual (straight)         Sometimes
## 10419  70.31 Heterosexual (straight)         Sometimes
## 10420  61.24 Heterosexual (straight)             Never
## 10421  63.50          Gay or lesbian  Most of the time
## 10422  71.22 Heterosexual (straight)              <NA>
## 10423  58.97 Heterosexual (straight)         Sometimes
## 10424  90.72 Heterosexual (straight)             Never
## 10425  59.88 Heterosexual (straight)         Sometimes
## 10426  54.43          Gay or lesbian  Most of the time
## 10427  61.24 Heterosexual (straight)  Most of the time
## 10428  72.58 Heterosexual (straight)         Sometimes
## 10429  78.02 Heterosexual (straight)  Most of the time
## 10430  36.29          Gay or lesbian         Sometimes
## 10431  48.08          Gay or lesbian            Always
## 10432  61.24 Heterosexual (straight)            Rarely
## 10433  47.63                Not sure  Most of the time
## 10434  43.55 Heterosexual (straight)         Sometimes
## 10435  52.16 Heterosexual (straight)              <NA>
## 10436  55.79 Heterosexual (straight)  Most of the time
## 10437  86.18 Heterosexual (straight)             Never
## 10438     NA Heterosexual (straight)  Most of the time
## 10439  86.18 Heterosexual (straight)         Sometimes
## 10440  52.16 Heterosexual (straight)             Never
## 10441  86.18 Heterosexual (straight)  Most of the time
## 10442  55.79 Heterosexual (straight)  Most of the time
## 10443  45.81 Heterosexual (straight)         Sometimes
## 10444  55.79 Heterosexual (straight)             Never
## 10445  63.50          Gay or lesbian         Sometimes
## 10446  52.16 Heterosexual (straight)            Always
## 10447  50.80 Heterosexual (straight)  Most of the time
## 10448  74.84 Heterosexual (straight)             Never
## 10449  44.45 Heterosexual (straight)  Most of the time
## 10450     NA                Bisexual  Most of the time
## 10451  81.65 Heterosexual (straight)         Sometimes
## 10452  74.84 Heterosexual (straight)            Rarely
## 10453  89.81 Heterosexual (straight)            Always
## 10454  79.38 Heterosexual (straight)  Most of the time
## 10455  54.43 Heterosexual (straight)         Sometimes
## 10456  70.31 Heterosexual (straight)         Sometimes
## 10457  58.97 Heterosexual (straight)            Rarely
## 10458  49.90          Some other way         Sometimes
## 10459     NA Heterosexual (straight)            Always
## 10460  63.50 Heterosexual (straight)             Never
## 10461     NA Heterosexual (straight)            Rarely
## 10462  63.50 Heterosexual (straight)  Most of the time
## 10463 131.54                Not sure  Most of the time
## 10464  74.84 Heterosexual (straight)         Sometimes
## 10465  54.43 Heterosexual (straight)         Sometimes
## 10466  61.24 Heterosexual (straight)            Always
## 10467  59.88          Gay or lesbian         Sometimes
## 10468  54.43 Heterosexual (straight)  Most of the time
## 10469  71.67          Gay or lesbian  Most of the time
## 10470  63.05 Heterosexual (straight)              <NA>
## 10471  59.88 Heterosexual (straight)         Sometimes
## 10472  70.31 Heterosexual (straight)             Never
## 10473  79.38 Heterosexual (straight)              <NA>
## 10474  70.31 Heterosexual (straight)         Sometimes
## 10475     NA Heterosexual (straight)            Rarely
## 10476  52.16 Heterosexual (straight)  Most of the time
## 10477  58.97 Heterosexual (straight)         Sometimes
## 10478  63.50 Heterosexual (straight)         Sometimes
## 10479  95.26 Heterosexual (straight)             Never
## 10480  79.38 Heterosexual (straight)            Always
## 10481  64.41 Heterosexual (straight)             Never
## 10482  71.67 Heterosexual (straight)  Most of the time
## 10483  74.84 Heterosexual (straight)            Rarely
## 10484  63.50 Heterosexual (straight)         Sometimes
## 10485  90.72                Bisexual  Most of the time
## 10486  53.52 Heterosexual (straight)            Rarely
## 10487  77.11 Heterosexual (straight)         Sometimes
## 10488  79.38 Heterosexual (straight)              <NA>
## 10489  54.43                Bisexual         Sometimes
## 10490  61.24 Heterosexual (straight)  Most of the time
## 10491  65.77 Heterosexual (straight)            Rarely
## 10492  72.12 Heterosexual (straight)            Rarely
## 10493  90.72 Heterosexual (straight)             Never
## 10494  42.18                Bisexual            Always
## 10495 127.01 Heterosexual (straight)         Sometimes
## 10496  49.90 Heterosexual (straight)         Sometimes
## 10497  48.54 Heterosexual (straight)         Sometimes
## 10498  72.58 Heterosexual (straight)            Rarely
## 10499  57.15 Heterosexual (straight)             Never
## 10500  43.09                Not sure         Sometimes
## 10501  58.97 Heterosexual (straight)         Sometimes
## 10502  53.07 Heterosexual (straight)         Sometimes
## 10503  54.43 Heterosexual (straight)  Most of the time
## 10504  95.26 Heterosexual (straight)            Rarely
## 10505  81.65 Heterosexual (straight)         Sometimes
## 10506  49.90 Heterosexual (straight)         Sometimes
## 10507  72.58 Heterosexual (straight)            Rarely
## 10508  61.24 Heterosexual (straight)             Never
## 10509  71.67          Some other way         Sometimes
## 10510  81.65 Heterosexual (straight)             Never
## 10511  97.52 Heterosexual (straight)            Rarely
## 10512  49.90 Heterosexual (straight)            Always
## 10513 138.80 Heterosexual (straight)            Rarely
## 10514  59.88 Heterosexual (straight)             Never
## 10515  54.43 Heterosexual (straight)             Never
## 10516  63.50 Heterosexual (straight)             Never
## 10517  68.04 Heterosexual (straight)         Sometimes
## 10518  88.45 Heterosexual (straight)             Never
## 10519  61.24                Bisexual         Sometimes
## 10520  68.04          Gay or lesbian            Rarely
## 10521  41.28 Heterosexual (straight)             Never
## 10522  61.69 Heterosexual (straight)  Most of the time
## 10523  49.90          Gay or lesbian         Sometimes
## 10524  70.31 Heterosexual (straight)             Never
## 10525  95.26 Heterosexual (straight)            Rarely
## 10526     NA          Gay or lesbian         Sometimes
## 10527  46.27 Heterosexual (straight)         Sometimes
## 10528  54.43 Heterosexual (straight)            Rarely
## 10529  84.37 Heterosexual (straight)  Most of the time
## 10530     NA                Bisexual            Always
## 10531  58.97 Heterosexual (straight)         Sometimes
## 10532  68.04 Heterosexual (straight)            Rarely
## 10533  72.58 Heterosexual (straight)  Most of the time
## 10534     NA Heterosexual (straight)         Sometimes
## 10535  69.85 Heterosexual (straight)         Sometimes
## 10536  84.37 Heterosexual (straight)             Never
## 10537  47.63          Some other way            Always
## 10538  71.67 Heterosexual (straight)            Rarely
## 10539  67.13 Heterosexual (straight)            Rarely
## 10540  56.70                Bisexual            Always
## 10541  65.77 Heterosexual (straight)            Rarely
## 10542  71.67 Heterosexual (straight)  Most of the time
## 10543  58.97 Heterosexual (straight)  Most of the time
## 10544  58.97 Heterosexual (straight)            Always
## 10545  78.93 Heterosexual (straight)            Rarely
## 10546  63.50                Not sure             Never
## 10547  77.11 Heterosexual (straight)             Never
## 10548  52.16 Heterosexual (straight)            Rarely
## 10549  52.16 Heterosexual (straight)         Sometimes
## 10550  70.31 Heterosexual (straight)         Sometimes
## 10551  61.24 Heterosexual (straight)         Sometimes
## 10552  57.15 Heterosexual (straight)            Rarely
## 10553  64.41 Heterosexual (straight)             Never
## 10554  49.90 Heterosexual (straight)  Most of the time
## 10555  52.16 Heterosexual (straight)             Never
## 10556  88.45 Heterosexual (straight)            Rarely
## 10557  90.72 Heterosexual (straight)         Sometimes
## 10558  72.58 Heterosexual (straight)            Rarely
## 10559  77.11                Bisexual  Most of the time
## 10560  50.80 Heterosexual (straight)         Sometimes
## 10561  71.67 Heterosexual (straight)             Never
## 10562  53.98 Heterosexual (straight)            Rarely
## 10563  88.45 Heterosexual (straight)  Most of the time
## 10564     NA Heterosexual (straight)         Sometimes
## 10565 106.60 Heterosexual (straight)             Never
## 10566  67.59 Heterosexual (straight)            Always
## 10567  76.20 Heterosexual (straight)            Rarely
## 10568  71.22 Heterosexual (straight)            Rarely
## 10569     NA Heterosexual (straight)            Rarely
## 10570     NA          Some other way            Always
## 10571  68.04 Heterosexual (straight)            Rarely
## 10572  68.04 Heterosexual (straight)  Most of the time
## 10573  78.47 Heterosexual (straight)  Most of the time
## 10574  56.25 Heterosexual (straight)         Sometimes
## 10575     NA                Bisexual             Never
## 10576 117.03 Heterosexual (straight)         Sometimes
## 10577     NA                Bisexual  Most of the time
## 10578  52.16 Heterosexual (straight)         Sometimes
## 10579  63.50 Heterosexual (straight)  Most of the time
## 10580  65.77 Heterosexual (straight)            Rarely
## 10581  61.24 Heterosexual (straight)             Never
## 10582  53.52 Heterosexual (straight)         Sometimes
## 10583  88.45 Heterosexual (straight)            Rarely
## 10584  63.50 Heterosexual (straight)  Most of the time
## 10585 102.06 Heterosexual (straight)            Rarely
## 10586  54.89 Heterosexual (straight)         Sometimes
## 10587     NA                Bisexual         Sometimes
## 10588  54.43 Heterosexual (straight)         Sometimes
## 10589  72.58 Heterosexual (straight)  Most of the time
## 10590  64.86 Heterosexual (straight)             Never
## 10591  53.07                Bisexual         Sometimes
## 10592  67.59 Heterosexual (straight)             Never
## 10593     NA                Not sure            Rarely
## 10594  90.72                Bisexual  Most of the time
## 10595  58.97 Heterosexual (straight)            Rarely
## 10596     NA Heterosexual (straight)  Most of the time
## 10597  54.43 Heterosexual (straight)             Never
## 10598  63.50 Heterosexual (straight)             Never
## 10599 114.76                Bisexual            Rarely
## 10600     NA Heterosexual (straight)         Sometimes
## 10601  49.44                Bisexual            Rarely
## 10602 104.33 Heterosexual (straight)  Most of the time
## 10603  68.95 Heterosexual (straight)         Sometimes
## 10604  77.11                Not sure         Sometimes
## 10605  63.50 Heterosexual (straight)             Never
## 10606 107.05 Heterosexual (straight)         Sometimes
## 10607  95.26                Bisexual  Most of the time
## 10608 111.13 Heterosexual (straight)         Sometimes
## 10609  51.26 Heterosexual (straight)  Most of the time
## 10610     NA          Some other way         Sometimes
## 10611  52.16 Heterosexual (straight)            Always
## 10612  68.04 Heterosexual (straight)         Sometimes
## 10613  71.67 Heterosexual (straight)  Most of the time
## 10614     NA Heterosexual (straight)             Never
## 10615  49.90 Heterosexual (straight)            Rarely
## 10616  54.43 Heterosexual (straight)  Most of the time
## 10617  63.50 Heterosexual (straight)         Sometimes
## 10618  90.72 Heterosexual (straight)            Rarely
## 10619  63.50 Heterosexual (straight)             Never
## 10620  54.89 Heterosexual (straight)         Sometimes
## 10621  52.62 Heterosexual (straight)            Rarely
## 10622  61.69 Heterosexual (straight)             Never
## 10623 102.97 Heterosexual (straight)         Sometimes
## 10624  90.72 Heterosexual (straight)  Most of the time
## 10625  79.38          Some other way  Most of the time
## 10626  65.77 Heterosexual (straight)  Most of the time
## 10627  47.63 Heterosexual (straight)         Sometimes
## 10628  66.23                Bisexual             Never
## 10629  91.17 Heterosexual (straight)  Most of the time
## 10630 102.06 Heterosexual (straight)  Most of the time
## 10631  72.58 Heterosexual (straight)         Sometimes
## 10632  78.47 Heterosexual (straight)            Rarely
## 10633  66.68 Heterosexual (straight)  Most of the time
## 10634  54.43 Heterosexual (straight)             Never
## 10635  46.27 Heterosexual (straight)            Rarely
## 10636  97.52 Heterosexual (straight)         Sometimes
## 10637     NA Heterosexual (straight)         Sometimes
## 10638     NA Heterosexual (straight)            Always
## 10639  40.82 Heterosexual (straight)            Always
## 10640 104.33 Heterosexual (straight)            Rarely
## 10641  61.24                Bisexual         Sometimes
## 10642     NA          Gay or lesbian  Most of the time
## 10643  82.10 Heterosexual (straight)            Rarely
## 10644  68.95 Heterosexual (straight)              <NA>
## 10645  78.02 Heterosexual (straight)         Sometimes
## 10646  58.51 Heterosexual (straight)             Never
## 10647  49.90 Heterosexual (straight)         Sometimes
## 10648  69.85 Heterosexual (straight)  Most of the time
## 10649  73.48 Heterosexual (straight)             Never
## 10650 129.28 Heterosexual (straight)  Most of the time
## 10651  73.94 Heterosexual (straight)            Rarely
## 10652  92.99 Heterosexual (straight)         Sometimes
## 10653  48.54 Heterosexual (straight)            Rarely
## 10654  65.77 Heterosexual (straight)            Always
## 10655  65.77 Heterosexual (straight)  Most of the time
## 10656  61.69 Heterosexual (straight)             Never
## 10657  54.43          Some other way            Always
## 10658  54.89 Heterosexual (straight)            Rarely
## 10659  41.73          Some other way            Always
## 10660  95.26 Heterosexual (straight)            Rarely
## 10661  49.90 Heterosexual (straight)         Sometimes
## 10662 104.33 Heterosexual (straight)         Sometimes
## 10663  68.04 Heterosexual (straight)  Most of the time
## 10664  54.89                Bisexual  Most of the time
## 10665  48.08 Heterosexual (straight)         Sometimes
## 10666  70.31 Heterosexual (straight)             Never
## 10667  54.43 Heterosexual (straight)            Rarely
## 10668  43.09 Heterosexual (straight)         Sometimes
## 10669  65.77 Heterosexual (straight)         Sometimes
## 10670  65.77 Heterosexual (straight)         Sometimes
## 10671  63.50 Heterosexual (straight)         Sometimes
## 10672  58.97 Heterosexual (straight)  Most of the time
## 10673  68.04 Heterosexual (straight)  Most of the time
## 10674  67.13 Heterosexual (straight)            Rarely
## 10675  68.04 Heterosexual (straight)  Most of the time
## 10676  52.16 Heterosexual (straight)         Sometimes
## 10677  70.31 Heterosexual (straight)            Rarely
## 10678  56.70 Heterosexual (straight)         Sometimes
## 10679  53.98 Heterosexual (straight)         Sometimes
## 10680  54.43 Heterosexual (straight)            Always
## 10681  53.52 Heterosexual (straight)            Always
## 10682  84.82 Heterosexual (straight)            Always
## 10683  63.50 Heterosexual (straight)         Sometimes
## 10684  67.59 Heterosexual (straight)             Never
## 10685 145.15                Not sure  Most of the time
## 10686     NA Heterosexual (straight)            Rarely
## 10687  99.79 Heterosexual (straight)             Never
## 10688  95.26 Heterosexual (straight)             Never
## 10689  90.72 Heterosexual (straight)             Never
## 10690  95.26 Heterosexual (straight)            Rarely
## 10691  88.45 Heterosexual (straight)         Sometimes
## 10692  58.97 Heterosexual (straight)  Most of the time
## 10693  87.54 Heterosexual (straight)            Rarely
## 10694  70.31                Bisexual            Always
## 10695  65.77 Heterosexual (straight)  Most of the time
## 10696  68.04 Heterosexual (straight)            Always
## 10697  61.24 Heterosexual (straight)            Always
## 10698  63.50          Gay or lesbian         Sometimes
## 10699  73.94 Heterosexual (straight)         Sometimes
## 10700  63.50 Heterosexual (straight)            Rarely
## 10701  51.26 Heterosexual (straight)         Sometimes
## 10702  68.04 Heterosexual (straight)             Never
## 10703  68.04                Bisexual         Sometimes
## 10704     NA Heterosexual (straight)  Most of the time
## 10705  77.11 Heterosexual (straight)            Always
## 10706 108.86 Heterosexual (straight)            Always
## 10707 142.88 Heterosexual (straight)            Rarely
## 10708  74.84 Heterosexual (straight)            Rarely
## 10709  54.43 Heterosexual (straight)  Most of the time
## 10710  54.43                Bisexual  Most of the time
## 10711 136.08 Heterosexual (straight)         Sometimes
## 10712  63.50 Heterosexual (straight)  Most of the time
## 10713  65.77 Heterosexual (straight)         Sometimes
## 10714  54.43 Heterosexual (straight)         Sometimes
## 10715  72.58 Heterosexual (straight)         Sometimes
## 10716  58.97 Heterosexual (straight)            Rarely
## 10717  52.16 Heterosexual (straight)            Rarely
## 10718  59.88 Heterosexual (straight)              <NA>
## 10719  58.97 Heterosexual (straight)  Most of the time
## 10720 106.60 Heterosexual (straight)            Rarely
## 10721  65.77 Heterosexual (straight)  Most of the time
## 10722  63.50 Heterosexual (straight)  Most of the time
## 10723  61.24 Heterosexual (straight)  Most of the time
## 10724  58.97 Heterosexual (straight)         Sometimes
## 10725  72.58 Heterosexual (straight)         Sometimes
## 10726  65.77 Heterosexual (straight)  Most of the time
## 10727  74.84 Heterosexual (straight)             Never
## 10728  92.08 Heterosexual (straight)         Sometimes
## 10729  79.38          Gay or lesbian            Always
## 10730  53.07                Bisexual  Most of the time
## 10731  54.43          Some other way         Sometimes
## 10732  65.77 Heterosexual (straight)            Rarely
## 10733  70.31 Heterosexual (straight)         Sometimes
## 10734  65.77 Heterosexual (straight)              <NA>
## 10735  52.16 Heterosexual (straight)         Sometimes
## 10736  77.11 Heterosexual (straight)            Rarely
## 10737  56.70 Heterosexual (straight)            Rarely
## 10738  83.92 Heterosexual (straight)  Most of the time
## 10739  48.99          Gay or lesbian         Sometimes
## 10740  61.24 Heterosexual (straight)            Rarely
## 10741  86.18          Gay or lesbian  Most of the time
## 10742  86.18 Heterosexual (straight)            Rarely
## 10743  61.69 Heterosexual (straight)            Rarely
## 10744  68.04 Heterosexual (straight)            Rarely
## 10745  65.77 Heterosexual (straight)            Rarely
## 10746  68.04 Heterosexual (straight)             Never
## 10747     NA                Not sure         Sometimes
## 10748  63.50 Heterosexual (straight)         Sometimes
## 10749  69.40 Heterosexual (straight)         Sometimes
## 10750  49.44 Heterosexual (straight)            Rarely
## 10751  81.65 Heterosexual (straight)            Rarely
## 10752     NA          Some other way            Rarely
## 10753  52.16 Heterosexual (straight)             Never
## 10754  81.65                Bisexual  Most of the time
## 10755  77.11          Gay or lesbian  Most of the time
## 10756  88.45 Heterosexual (straight)            Rarely
## 10757  63.50 Heterosexual (straight)         Sometimes
## 10758  74.84 Heterosexual (straight)            Rarely
## 10759  49.90 Heterosexual (straight)  Most of the time
## 10760  44.91 Heterosexual (straight)  Most of the time
## 10761  60.78 Heterosexual (straight)            Rarely
## 10762  74.84          Some other way             Never
## 10763  52.16 Heterosexual (straight)         Sometimes
## 10764 102.06 Heterosexual (straight)  Most of the time
## 10765     NA Heterosexual (straight)  Most of the time
## 10766  44.91 Heterosexual (straight)  Most of the time
## 10767  52.62 Heterosexual (straight)            Rarely
## 10768     NA Heterosexual (straight)         Sometimes
## 10769  34.93 Heterosexual (straight)            Rarely
## 10770  44.00 Heterosexual (straight)            Rarely
## 10771  54.89                Bisexual  Most of the time
## 10772  65.77 Heterosexual (straight)  Most of the time
## 10773  52.16 Heterosexual (straight)         Sometimes
## 10774  55.34                Not sure         Sometimes
## 10775  86.18 Heterosexual (straight)         Sometimes
## 10776  79.38 Heterosexual (straight)         Sometimes
## 10777  54.43 Heterosexual (straight)            Rarely
## 10778     NA Heterosexual (straight)         Sometimes
## 10779  78.47 Heterosexual (straight)            Rarely
## 10780  62.14 Heterosexual (straight)         Sometimes
## 10781  70.76 Heterosexual (straight)         Sometimes
## 10782 119.75 Heterosexual (straight)         Sometimes
## 10783  58.97 Heterosexual (straight)             Never
## 10784  99.79                Bisexual            Rarely
## 10785  77.11 Heterosexual (straight)             Never
## 10786  86.18 Heterosexual (straight)             Never
## 10787  55.34 Heterosexual (straight)  Most of the time
## 10788  79.38 Heterosexual (straight)         Sometimes
## 10789  54.43                Not sure  Most of the time
## 10790  65.77 Heterosexual (straight)            Rarely
## 10791 113.40 Heterosexual (straight)  Most of the time
## 10792  61.24          Some other way  Most of the time
## 10793  63.50 Heterosexual (straight)         Sometimes
## 10794  49.44 Heterosexual (straight)            Rarely
## 10795  52.16 Heterosexual (straight)         Sometimes
## 10796  51.26 Heterosexual (straight)         Sometimes
## 10797 108.86 Heterosexual (straight)            Rarely
## 10798  45.81 Heterosexual (straight)  Most of the time
## 10799 131.54 Heterosexual (straight)             Never
## 10800     NA          Some other way            Always
## 10801     NA Heterosexual (straight)  Most of the time
## 10802  96.16 Heterosexual (straight)            Rarely
## 10803  56.70 Heterosexual (straight)            Rarely
## 10804     NA                Not sure         Sometimes
## 10805  80.74                Bisexual         Sometimes
## 10806  68.04 Heterosexual (straight)             Never
## 10807     NA Heterosexual (straight)              <NA>
## 10808  54.43 Heterosexual (straight)  Most of the time
## 10809     NA                Not sure         Sometimes
## 10810  54.43                Bisexual            Always
## 10811  61.69          Gay or lesbian         Sometimes
## 10812  47.63 Heterosexual (straight)             Never
## 10813  68.49 Heterosexual (straight)            Rarely
## 10814  88.91                Bisexual         Sometimes
## 10815  61.24 Heterosexual (straight)         Sometimes
## 10816  49.44 Heterosexual (straight)  Most of the time
## 10817  68.04 Heterosexual (straight)         Sometimes
## 10818  45.81                Bisexual            Always
## 10819  65.77 Heterosexual (straight)            Always
## 10820     NA Heterosexual (straight)              <NA>
## 10821  44.00                Bisexual  Most of the time
## 10822     NA Heterosexual (straight)            Rarely
## 10823  61.24                Bisexual  Most of the time
## 10824  47.63 Heterosexual (straight)         Sometimes
## 10825     NA Heterosexual (straight)            Rarely
## 10826  53.52 Heterosexual (straight)         Sometimes
## 10827  61.69                Bisexual              <NA>
## 10828     NA                Bisexual            Always
## 10829  88.45          Some other way            Always
## 10830  67.13                Bisexual  Most of the time
## 10831  77.11                Bisexual         Sometimes
## 10832 125.19 Heterosexual (straight)  Most of the time
## 10833     NA Heterosexual (straight)         Sometimes
## 10834     NA Heterosexual (straight)         Sometimes
## 10835     NA Heterosexual (straight)            Rarely
## 10836  65.77 Heterosexual (straight)  Most of the time
## 10837  74.84 Heterosexual (straight)         Sometimes
## 10838  61.24 Heterosexual (straight)             Never
## 10839     NA Heterosexual (straight)  Most of the time
## 10840  58.51 Heterosexual (straight)         Sometimes
## 10841 117.48          Gay or lesbian         Sometimes
## 10842  56.25 Heterosexual (straight)  Most of the time
## 10843  61.24 Heterosexual (straight)             Never
## 10844  68.95                Bisexual         Sometimes
## 10845  88.45 Heterosexual (straight)         Sometimes
## 10846  53.52 Heterosexual (straight)              <NA>
## 10847  98.43 Heterosexual (straight)             Never
## 10848  75.75                Bisexual         Sometimes
## 10849  81.65 Heterosexual (straight)            Rarely
## 10850  67.59          Some other way            Rarely
## 10851 102.06 Heterosexual (straight)         Sometimes
## 10852 111.59 Heterosexual (straight)             Never
## 10853  63.50 Heterosexual (straight)            Always
## 10854 127.01 Heterosexual (straight)            Rarely
## 10855  83.01 Heterosexual (straight)             Never
## 10856  58.06                Bisexual            Rarely
## 10857  85.28 Heterosexual (straight)             Never
## 10858  38.56          Gay or lesbian  Most of the time
## 10859  68.04 Heterosexual (straight)  Most of the time
## 10860  86.18 Heterosexual (straight)             Never
## 10861     NA Heterosexual (straight)             Never
## 10862  95.26 Heterosexual (straight)             Never
## 10863 129.73 Heterosexual (straight)             Never
## 10864 163.30 Heterosexual (straight)            Rarely
## 10865 117.94 Heterosexual (straight)         Sometimes
## 10866     NA Heterosexual (straight)             Never
## 10867  45.36 Heterosexual (straight)             Never
## 10868  68.04          Some other way             Never
## 10869  77.11 Heterosexual (straight)             Never
## 10870     NA Heterosexual (straight)             Never
## 10871     NA Heterosexual (straight)             Never
## 10872  52.16 Heterosexual (straight)             Never
## 10873     NA Heterosexual (straight)         Sometimes
## 10874  98.43 Heterosexual (straight)            Rarely
## 10875  40.82 Heterosexual (straight)  Most of the time
## 10876  77.11 Heterosexual (straight)             Never
## 10877  58.51 Heterosexual (straight)             Never
## 10878  73.94 Heterosexual (straight)             Never
## 10879  54.89 Heterosexual (straight)             Never
## 10880     NA Heterosexual (straight)             Never
## 10881  58.51 Heterosexual (straight)             Never
## 10882  63.50 Heterosexual (straight)         Sometimes
## 10883  54.43 Heterosexual (straight)            Rarely
## 10884  79.38 Heterosexual (straight)             Never
## 10885  45.36 Heterosexual (straight)            Rarely
## 10886  79.38                Bisexual            Rarely
## 10887  49.90 Heterosexual (straight)             Never
## 10888  72.12 Heterosexual (straight)         Sometimes
## 10889  64.41 Heterosexual (straight)            Rarely
## 10890  47.17 Heterosexual (straight)             Never
## 10891  64.41                Bisexual  Most of the time
## 10892  54.43 Heterosexual (straight)  Most of the time
## 10893  58.97 Heterosexual (straight)         Sometimes
## 10894     NA Heterosexual (straight)         Sometimes
## 10895  78.02 Heterosexual (straight)         Sometimes
## 10896  44.45 Heterosexual (straight)         Sometimes
## 10897  59.88                Not sure  Most of the time
## 10898 117.48 Heterosexual (straight)         Sometimes
## 10899  58.97 Heterosexual (straight)            Rarely
## 10900  52.16 Heterosexual (straight)         Sometimes
## 10901  64.41 Heterosexual (straight)         Sometimes
## 10902  42.64 Heterosexual (straight)             Never
## 10903  68.04 Heterosexual (straight)             Never
## 10904     NA Heterosexual (straight)            Rarely
## 10905 117.94                Bisexual         Sometimes
## 10906  76.20 Heterosexual (straight)            Rarely
## 10907  71.22                Not sure             Never
## 10908  54.43 Heterosexual (straight)            Rarely
## 10909  54.43 Heterosexual (straight)         Sometimes
## 10910  72.58 Heterosexual (straight)         Sometimes
## 10911     NA Heterosexual (straight)             Never
## 10912  81.65 Heterosexual (straight)         Sometimes
## 10913     NA Heterosexual (straight)            Rarely
## 10914  67.59 Heterosexual (straight)            Rarely
## 10915  56.70 Heterosexual (straight)         Sometimes
## 10916  73.48 Heterosexual (straight)            Rarely
## 10917  49.90          Some other way            Always
## 10918  67.13 Heterosexual (straight)             Never
## 10919  49.90          Some other way  Most of the time
## 10920  43.55 Heterosexual (straight)              <NA>
## 10921  49.90                Bisexual         Sometimes
## 10922  56.70 Heterosexual (straight)  Most of the time
## 10923  53.52 Heterosexual (straight)         Sometimes
## 10924  67.59 Heterosexual (straight)         Sometimes
## 10925  57.61 Heterosexual (straight)         Sometimes
## 10926  50.80 Heterosexual (straight)  Most of the time
## 10927  55.34 Heterosexual (straight)         Sometimes
## 10928  49.90 Heterosexual (straight)  Most of the time
## 10929  61.24 Heterosexual (straight)             Never
## 10930  60.33 Heterosexual (straight)         Sometimes
## 10931  40.82 Heterosexual (straight)             Never
## 10932  62.60 Heterosexual (straight)  Most of the time
## 10933  46.27                Bisexual  Most of the time
## 10934     NA Heterosexual (straight)             Never
## 10935  54.43 Heterosexual (straight)         Sometimes
## 10936  50.80 Heterosexual (straight)            Rarely
## 10937  65.32 Heterosexual (straight)  Most of the time
## 10938  74.84 Heterosexual (straight)  Most of the time
## 10939  77.11 Heterosexual (straight)            Rarely
## 10940  48.54 Heterosexual (straight)             Never
## 10941  81.65 Heterosexual (straight)  Most of the time
## 10942  40.82 Heterosexual (straight)         Sometimes
## 10943  61.24 Heterosexual (straight)            Rarely
## 10944  91.63          Gay or lesbian            Always
## 10945     NA Heterosexual (straight)            Rarely
## 10946  89.36 Heterosexual (straight)             Never
## 10947  47.63 Heterosexual (straight)            Rarely
## 10948     NA Heterosexual (straight)             Never
## 10949  56.70 Heterosexual (straight)  Most of the time
## 10950  62.14 Heterosexual (straight)             Never
## 10951  62.14 Heterosexual (straight)             Never
## 10952  79.38 Heterosexual (straight)             Never
## 10953  49.90                Not sure  Most of the time
## 10954  69.85          Some other way         Sometimes
## 10955  56.70 Heterosexual (straight)  Most of the time
## 10956  54.43 Heterosexual (straight)         Sometimes
## 10957  99.34          Gay or lesbian         Sometimes
## 10958  46.72 Heterosexual (straight)            Rarely
## 10959  51.26                Bisexual         Sometimes
## 10960  56.25                Bisexual  Most of the time
## 10961  50.80 Heterosexual (straight)            Rarely
## 10962  61.24 Heterosexual (straight)             Never
## 10963  65.77 Heterosexual (straight)            Rarely
## 10964  44.45                Bisexual            Rarely
## 10965  49.44 Heterosexual (straight)         Sometimes
## 10966  47.63 Heterosexual (straight)         Sometimes
## 10967  54.43 Heterosexual (straight)            Rarely
## 10968  51.71 Heterosexual (straight)            Rarely
## 10969  49.44 Heterosexual (straight)            Rarely
## 10970  57.61 Heterosexual (straight)         Sometimes
## 10971     NA                Bisexual  Most of the time
## 10972  73.94 Heterosexual (straight)             Never
## 10973  48.99 Heterosexual (straight)            Always
## 10974  59.88 Heterosexual (straight)            Rarely
## 10975  69.85 Heterosexual (straight)             Never
## 10976  64.86 Heterosexual (straight)             Never
## 10977  47.63 Heterosexual (straight)            Rarely
## 10978     NA          Gay or lesbian         Sometimes
## 10979  54.43 Heterosexual (straight)         Sometimes
## 10980  54.43 Heterosexual (straight)              <NA>
## 10981  54.43 Heterosexual (straight)            Rarely
## 10982  44.45 Heterosexual (straight)  Most of the time
## 10983  34.02          Some other way             Never
## 10984  41.73 Heterosexual (straight)  Most of the time
## 10985  63.50                Not sure         Sometimes
## 10986  48.08                Not sure         Sometimes
## 10987  52.16                Bisexual  Most of the time
## 10988  68.04 Heterosexual (straight)             Never
## 10989  79.83 Heterosexual (straight)             Never
## 10990  88.45 Heterosexual (straight)         Sometimes
## 10991  86.18          Gay or lesbian            Rarely
## 10992     NA                Bisexual         Sometimes
## 10993     NA                Not sure         Sometimes
## 10994  54.43 Heterosexual (straight)         Sometimes
## 10995  45.36 Heterosexual (straight)         Sometimes
## 10996  51.26 Heterosexual (straight)             Never
## 10997  65.32 Heterosexual (straight)         Sometimes
## 10998  54.43 Heterosexual (straight)             Never
## 10999  58.97                Not sure         Sometimes
## 11000  51.71 Heterosexual (straight)            Rarely
## 11001  47.17 Heterosexual (straight)  Most of the time
## 11002  68.04 Heterosexual (straight)            Rarely
## 11003  53.07 Heterosexual (straight)         Sometimes
## 11004  97.52 Heterosexual (straight)  Most of the time
## 11005     NA Heterosexual (straight)            Rarely
## 11006  54.43 Heterosexual (straight)             Never
## 11007  44.45 Heterosexual (straight)            Rarely
## 11008  72.58 Heterosexual (straight)             Never
## 11009 104.33 Heterosexual (straight)            Rarely
## 11010 104.33 Heterosexual (straight)  Most of the time
## 11011  68.04 Heterosexual (straight)            Always
## 11012  53.98 Heterosexual (straight)             Never
## 11013  66.23 Heterosexual (straight)             Never
## 11014     NA Heterosexual (straight)             Never
## 11015  58.97 Heterosexual (straight)             Never
## 11016  97.52 Heterosexual (straight)             Never
## 11017  55.34 Heterosexual (straight)             Never
## 11018  81.65 Heterosexual (straight)            Rarely
## 11019  52.16 Heterosexual (straight)            Rarely
## 11020  68.04 Heterosexual (straight)  Most of the time
## 11021  44.45                Not sure            Always
## 11022  40.82                Bisexual            Always
## 11023  58.97 Heterosexual (straight)         Sometimes
## 11024  68.04 Heterosexual (straight)             Never
## 11025  52.62 Heterosexual (straight)  Most of the time
## 11026  62.60 Heterosexual (straight)            Always
## 11027  58.97 Heterosexual (straight)            Always
## 11028  56.70 Heterosexual (straight)            Always
## 11029  65.77 Heterosexual (straight)         Sometimes
## 11030  56.70 Heterosexual (straight)  Most of the time
## 11031  46.72 Heterosexual (straight)         Sometimes
## 11032  58.97 Heterosexual (straight)            Rarely
## 11033  86.18 Heterosexual (straight)            Rarely
## 11034  81.65 Heterosexual (straight)             Never
## 11035 108.41 Heterosexual (straight)         Sometimes
## 11036  58.06 Heterosexual (straight)             Never
## 11037  44.45                Bisexual            Always
## 11038  88.00 Heterosexual (straight)         Sometimes
## 11039  58.97 Heterosexual (straight)            Rarely
## 11040  54.43 Heterosexual (straight)            Rarely
## 11041  71.67 Heterosexual (straight)            Rarely
## 11042  70.31 Heterosexual (straight)         Sometimes
## 11043  54.89 Heterosexual (straight)             Never
## 11044  92.53 Heterosexual (straight)             Never
## 11045  66.23 Heterosexual (straight)  Most of the time
## 11046  48.08 Heterosexual (straight)         Sometimes
## 11047  54.43          Gay or lesbian             Never
## 11048  48.54 Heterosexual (straight)            Rarely
## 11049  70.31 Heterosexual (straight)         Sometimes
## 11050  54.43 Heterosexual (straight)  Most of the time
## 11051  52.62 Heterosexual (straight)         Sometimes
## 11052  65.77 Heterosexual (straight)            Rarely
## 11053  56.70 Heterosexual (straight)  Most of the time
## 11054     NA Heterosexual (straight)         Sometimes
## 11055  61.24 Heterosexual (straight)            Always
## 11056  39.01 Heterosexual (straight)         Sometimes
## 11057  52.16 Heterosexual (straight)         Sometimes
## 11058  40.82 Heterosexual (straight)             Never
## 11059  47.63                Not sure              <NA>
## 11060  58.97 Heterosexual (straight)         Sometimes
## 11061  52.16 Heterosexual (straight)         Sometimes
## 11062  65.77 Heterosexual (straight)         Sometimes
## 11063  73.48 Heterosexual (straight)         Sometimes
## 11064  52.16                Bisexual            Rarely
## 11065  48.08 Heterosexual (straight)  Most of the time
## 11066  54.43 Heterosexual (straight)         Sometimes
## 11067  63.50 Heterosexual (straight)         Sometimes
## 11068  62.14 Heterosexual (straight)  Most of the time
## 11069 104.33 Heterosexual (straight)            Rarely
## 11070  55.79 Heterosexual (straight)         Sometimes
## 11071  81.19 Heterosexual (straight)             Never
## 11072  45.36                Not sure             Never
## 11073  43.09 Heterosexual (straight)            Rarely
## 11074  97.07 Heterosexual (straight)            Rarely
## 11075  79.83          Some other way             Never
## 11076  36.29 Heterosexual (straight)            Always
## 11077  34.93 Heterosexual (straight)         Sometimes
## 11078  41.28          Gay or lesbian            Rarely
## 11079  51.26                Bisexual  Most of the time
## 11080     NA          Some other way            Always
## 11081  40.82 Heterosexual (straight)  Most of the time
## 11082  47.63                Not sure            Always
## 11083  72.58 Heterosexual (straight)            Rarely
## 11084  54.43 Heterosexual (straight)         Sometimes
## 11085  57.15 Heterosexual (straight)         Sometimes
## 11086  67.59 Heterosexual (straight)             Never
## 11087  42.18          Gay or lesbian         Sometimes
## 11088  79.38 Heterosexual (straight)         Sometimes
## 11089  86.18 Heterosexual (straight)            Rarely
## 11090  54.43 Heterosexual (straight)            Rarely
## 11091  52.16 Heterosexual (straight)            Rarely
## 11092  56.70 Heterosexual (straight)  Most of the time
## 11093  72.58 Heterosexual (straight)            Rarely
## 11094  63.50 Heterosexual (straight)  Most of the time
## 11095  59.88 Heterosexual (straight)            Rarely
## 11096  49.90                Bisexual         Sometimes
## 11097  54.43 Heterosexual (straight)  Most of the time
## 11098  43.55                Not sure         Sometimes
## 11099  78.02 Heterosexual (straight)            Rarely
## 11100 131.54 Heterosexual (straight)  Most of the time
## 11101  44.00 Heterosexual (straight)            Always
## 11102  92.99 Heterosexual (straight)             Never
## 11103  99.79 Heterosexual (straight)             Never
## 11104  90.72 Heterosexual (straight)            Always
## 11105  60.78 Heterosexual (straight)         Sometimes
## 11106  67.59          Gay or lesbian  Most of the time
## 11107  68.04 Heterosexual (straight)             Never
## 11108  96.62 Heterosexual (straight)             Never
## 11109  71.22 Heterosexual (straight)             Never
## 11110  54.43 Heterosexual (straight)             Never
## 11111  77.11 Heterosexual (straight)            Rarely
## 11112  75.75 Heterosexual (straight)             Never
## 11113     NA                Not sure            Rarely
## 11114  45.36 Heterosexual (straight)  Most of the time
## 11115  83.92                Bisexual         Sometimes
## 11116  54.43 Heterosexual (straight)         Sometimes
## 11117  49.90                Bisexual  Most of the time
## 11118  63.50                Bisexual         Sometimes
## 11119  47.63                Not sure            Always
## 11120 104.33 Heterosexual (straight)         Sometimes
## 11121  58.06 Heterosexual (straight)         Sometimes
## 11122  49.90                Bisexual         Sometimes
## 11123  74.84 Heterosexual (straight)            Rarely
## 11124  96.16 Heterosexual (straight)  Most of the time
## 11125  58.97 Heterosexual (straight)             Never
## 11126  54.43 Heterosexual (straight)         Sometimes
## 11127  86.64 Heterosexual (straight)            Rarely
## 11128  62.14 Heterosexual (straight)         Sometimes
## 11129  90.72 Heterosexual (straight)             Never
## 11130  58.97 Heterosexual (straight)  Most of the time
## 11131  43.09                Bisexual  Most of the time
## 11132  47.17 Heterosexual (straight)            Always
## 11133  46.72 Heterosexual (straight)         Sometimes
## 11134  40.82 Heterosexual (straight)         Sometimes
## 11135  52.62 Heterosexual (straight)            Rarely
## 11136  96.16 Heterosexual (straight)             Never
## 11137  72.58 Heterosexual (straight)         Sometimes
## 11138  46.27 Heterosexual (straight)  Most of the time
## 11139  53.07 Heterosexual (straight)         Sometimes
## 11140  52.16 Heterosexual (straight)              <NA>
## 11141  70.31 Heterosexual (straight)             Never
## 11142     NA Heterosexual (straight)  Most of the time
## 11143  66.68 Heterosexual (straight)             Never
## 11144  56.70 Heterosexual (straight)              <NA>
## 11145  58.97                Not sure         Sometimes
## 11146  70.31 Heterosexual (straight)            Rarely
## 11147  49.90 Heterosexual (straight)  Most of the time
## 11148  81.65 Heterosexual (straight)         Sometimes
## 11149  50.80          Gay or lesbian  Most of the time
## 11150  67.13          Gay or lesbian         Sometimes
## 11151  57.61 Heterosexual (straight)            Rarely
## 11152  65.77 Heterosexual (straight)             Never
## 11153  99.79 Heterosexual (straight)            Rarely
## 11154  92.08 Heterosexual (straight)         Sometimes
## 11155  99.79                Not sure         Sometimes
## 11156  77.11 Heterosexual (straight)             Never
## 11157  47.17 Heterosexual (straight)             Never
## 11158  58.97 Heterosexual (straight)  Most of the time
## 11159 113.40 Heterosexual (straight)         Sometimes
## 11160  78.02 Heterosexual (straight)             Never
## 11161  54.43 Heterosexual (straight)         Sometimes
## 11162  72.58          Gay or lesbian  Most of the time
## 11163  81.65 Heterosexual (straight)             Never
## 11164  89.36 Heterosexual (straight)             Never
## 11165  38.56 Heterosexual (straight)            Rarely
## 11166  52.16 Heterosexual (straight)         Sometimes
## 11167  63.50 Heterosexual (straight)         Sometimes
## 11168  79.38 Heterosexual (straight)         Sometimes
## 11169  89.81 Heterosexual (straight)            Rarely
## 11170  63.50 Heterosexual (straight)         Sometimes
## 11171  64.86 Heterosexual (straight)         Sometimes
## 11172  79.38 Heterosexual (straight)         Sometimes
## 11173  65.77 Heterosexual (straight)              <NA>
## 11174     NA Heterosexual (straight)         Sometimes
## 11175 101.15 Heterosexual (straight)             Never
## 11176  99.79 Heterosexual (straight)         Sometimes
## 11177  67.59 Heterosexual (straight)            Rarely
## 11178 106.60 Heterosexual (straight)         Sometimes
## 11179 102.06 Heterosexual (straight)             Never
## 11180  55.34          Gay or lesbian         Sometimes
## 11181  64.86 Heterosexual (straight)             Never
## 11182  69.85 Heterosexual (straight)         Sometimes
## 11183  48.54                Bisexual              <NA>
## 11184  54.43                Bisexual            Rarely
## 11185  62.60 Heterosexual (straight)         Sometimes
## 11186  79.38 Heterosexual (straight)         Sometimes
## 11187  64.86 Heterosexual (straight)             Never
## 11188  44.00                Not sure         Sometimes
## 11189  74.84 Heterosexual (straight)         Sometimes
## 11190     NA Heterosexual (straight)              <NA>
## 11191     NA Heterosexual (straight)              <NA>
## 11192  44.91 Heterosexual (straight)              <NA>
## 11193 127.01 Heterosexual (straight)             Never
## 11194  61.24 Heterosexual (straight)  Most of the time
## 11195     NA Heterosexual (straight)              <NA>
## 11196  77.11 Heterosexual (straight)  Most of the time
## 11197  83.92 Heterosexual (straight)             Never
## 11198  76.66 Heterosexual (straight)             Never
## 11199  55.34                Bisexual            Rarely
## 11200 104.33                Bisexual            Always
## 11201 108.86 Heterosexual (straight)            Rarely
## 11202  78.02 Heterosexual (straight)             Never
## 11203     NA Heterosexual (straight)            Rarely
## 11204  97.52 Heterosexual (straight)             Never
## 11205  91.17 Heterosexual (straight)            Always
## 11206  68.04 Heterosexual (straight)  Most of the time
## 11207  68.04 Heterosexual (straight)            Always
## 11208  45.81 Heterosexual (straight)            Always
## 11209  58.97 Heterosexual (straight)  Most of the time
## 11210  65.77 Heterosexual (straight)              <NA>
## 11211  72.58 Heterosexual (straight)              <NA>
## 11212  56.70 Heterosexual (straight)              <NA>
## 11213  66.68 Heterosexual (straight)              <NA>
## 11214  48.99 Heterosexual (straight)              <NA>
## 11215  51.26 Heterosexual (straight)              <NA>
## 11216     NA          Gay or lesbian         Sometimes
## 11217     NA Heterosexual (straight)            Rarely
## 11218     NA Heterosexual (straight)             Never
## 11219     NA Heterosexual (straight)         Sometimes
## 11220 113.40 Heterosexual (straight)            Always
## 11221     NA          Some other way         Sometimes
## 11222  70.31 Heterosexual (straight)            Rarely
## 11223  56.25 Heterosexual (straight)             Never
## 11224     NA Heterosexual (straight)              <NA>
## 11225  81.19 Heterosexual (straight)            Rarely
## 11226     NA                Not sure  Most of the time
## 11227  66.68 Heterosexual (straight)         Sometimes
## 11228 102.06 Heterosexual (straight)            Rarely
## 11229  44.45                Bisexual         Sometimes
## 11230  72.58          Gay or lesbian            Always
## 11231  61.69 Heterosexual (straight)         Sometimes
## 11232  70.31 Heterosexual (straight)            Rarely
## 11233  59.88 Heterosexual (straight)             Never
## 11234  73.94 Heterosexual (straight)            Rarely
## 11235  59.88                Not sure            Rarely
## 11236  54.43 Heterosexual (straight)              <NA>
## 11237  86.18 Heterosexual (straight)  Most of the time
## 11238  50.80          Some other way         Sometimes
## 11239  69.85 Heterosexual (straight)         Sometimes
## 11240  59.88 Heterosexual (straight)            Rarely
## 11241  61.24 Heterosexual (straight)            Rarely
## 11242  78.93 Heterosexual (straight)            Rarely
## 11243  73.94          Gay or lesbian             Never
## 11244  59.88 Heterosexual (straight)         Sometimes
## 11245  95.26 Heterosexual (straight)              <NA>
## 11246  49.90          Gay or lesbian            Rarely
## 11247  58.97 Heterosexual (straight)             Never
## 11248  77.11          Gay or lesbian             Never
## 11249  45.36 Heterosexual (straight)             Never
## 11250  87.09                Bisexual              <NA>
## 11251  50.80 Heterosexual (straight)             Never
## 11252  59.88 Heterosexual (straight)            Rarely
## 11253  56.70          Gay or lesbian              <NA>
## 11254  56.70          Gay or lesbian  Most of the time
## 11255  39.01 Heterosexual (straight)         Sometimes
## 11256     NA Heterosexual (straight)            Rarely
## 11257  52.16 Heterosexual (straight)             Never
## 11258  56.25 Heterosexual (straight)             Never
## 11259  58.06 Heterosexual (straight)         Sometimes
## 11260  54.43 Heterosexual (straight)            Rarely
## 11261  68.49                Bisexual         Sometimes
## 11262  63.50 Heterosexual (straight)             Never
## 11263  89.36 Heterosexual (straight)            Rarely
## 11264  74.84 Heterosexual (straight)         Sometimes
## 11265  66.68 Heterosexual (straight)         Sometimes
## 11266  81.65 Heterosexual (straight)            Rarely
## 11267  89.81 Heterosexual (straight)         Sometimes
## 11268  54.43 Heterosexual (straight)            Rarely
## 11269 101.61                Bisexual         Sometimes
## 11270 104.33                Bisexual         Sometimes
## 11271  54.43 Heterosexual (straight)              <NA>
## 11272 127.01 Heterosexual (straight)  Most of the time
## 11273     NA Heterosexual (straight)         Sometimes
## 11274  63.50 Heterosexual (straight)             Never
## 11275  61.24 Heterosexual (straight)         Sometimes
## 11276  79.38 Heterosexual (straight)             Never
## 11277  81.65                Bisexual         Sometimes
## 11278  69.40 Heterosexual (straight)             Never
## 11279  95.26          Gay or lesbian             Never
## 11280  61.24 Heterosexual (straight)         Sometimes
## 11281  63.50 Heterosexual (straight)         Sometimes
## 11282  49.44 Heterosexual (straight)         Sometimes
## 11283  63.50 Heterosexual (straight)            Rarely
## 11284  49.90 Heterosexual (straight)            Rarely
## 11285 104.33                Bisexual         Sometimes
## 11286  70.76 Heterosexual (straight)         Sometimes
## 11287  90.72 Heterosexual (straight)             Never
## 11288  69.40 Heterosexual (straight)            Rarely
## 11289     NA          Gay or lesbian             Never
## 11290  49.90                Bisexual         Sometimes
## 11291 129.28 Heterosexual (straight)         Sometimes
## 11292 113.40                Not sure  Most of the time
## 11293  49.90 Heterosexual (straight)            Rarely
## 11294     NA                Bisexual            Rarely
## 11295     NA Heterosexual (straight)             Never
## 11296  97.07 Heterosexual (straight)             Never
## 11297  81.65          Gay or lesbian  Most of the time
## 11298  95.26 Heterosexual (straight)             Never
## 11299  54.43          Gay or lesbian         Sometimes
## 11300  61.24 Heterosexual (straight)             Never
## 11301     NA Heterosexual (straight)         Sometimes
## 11302  99.79 Heterosexual (straight)            Rarely
## 11303  56.70 Heterosexual (straight)            Rarely
## 11304  40.82          Some other way         Sometimes
## 11305  58.97 Heterosexual (straight)  Most of the time
## 11306  55.34 Heterosexual (straight)            Rarely
## 11307  58.51 Heterosexual (straight)             Never
## 11308  49.90          Some other way         Sometimes
## 11309     NA          Some other way             Never
## 11310  54.43          Some other way             Never
## 11311  54.43 Heterosexual (straight)         Sometimes
## 11312  68.95          Some other way  Most of the time
## 11313     NA Heterosexual (straight)             Never
## 11314  89.36          Gay or lesbian             Never
## 11315     NA          Gay or lesbian         Sometimes
## 11316     NA          Gay or lesbian  Most of the time
## 11317  72.58 Heterosexual (straight)             Never
## 11318  63.50 Heterosexual (straight)            Rarely
## 11319  51.71          Gay or lesbian            Rarely
## 11320  54.43 Heterosexual (straight)            Rarely
## 11321  72.58 Heterosexual (straight)            Rarely
## 11322  45.81                Not sure         Sometimes
## 11323     NA          Some other way         Sometimes
## 11324  56.70 Heterosexual (straight)             Never
## 11325  49.90 Heterosexual (straight)  Most of the time
## 11326  68.04 Heterosexual (straight)         Sometimes
## 11327  53.52          Gay or lesbian            Rarely
## 11328  52.62                Bisexual         Sometimes
## 11329  78.93          Some other way            Always
## 11330  54.43                Bisexual  Most of the time
## 11331  58.97 Heterosexual (straight)             Never
## 11332  48.99          Some other way  Most of the time
## 11333  63.50 Heterosexual (straight)             Never
## 11334  39.46 Heterosexual (straight)             Never
## 11335  56.70                Not sure         Sometimes
## 11336 106.60 Heterosexual (straight)         Sometimes
## 11337  81.65                Bisexual            Rarely
## 11338  76.20 Heterosexual (straight)            Rarely
## 11339  52.16 Heterosexual (straight)            Rarely
## 11340  47.63 Heterosexual (straight)  Most of the time
## 11341  43.09                Bisexual         Sometimes
## 11342  63.50 Heterosexual (straight)  Most of the time
## 11343  48.99 Heterosexual (straight)         Sometimes
## 11344  55.34 Heterosexual (straight)         Sometimes
## 11345  83.01 Heterosexual (straight)         Sometimes
## 11346     NA          Some other way  Most of the time
## 11347  54.43 Heterosexual (straight)            Rarely
## 11348  63.50 Heterosexual (straight)  Most of the time
## 11349 126.55 Heterosexual (straight)             Never
## 11350     NA                Bisexual             Never
## 11351  49.90 Heterosexual (straight)         Sometimes
## 11352  61.69                Not sure         Sometimes
## 11353  42.64 Heterosexual (straight)            Rarely
## 11354  54.43 Heterosexual (straight)         Sometimes
## 11355  83.92                Not sure         Sometimes
## 11356  54.43 Heterosexual (straight)            Rarely
## 11357  61.24 Heterosexual (straight)             Never
## 11358  58.06 Heterosexual (straight)         Sometimes
## 11359  75.30 Heterosexual (straight)  Most of the time
## 11360  51.26                Bisexual  Most of the time
## 11361  58.51 Heterosexual (straight)             Never
## 11362 112.04 Heterosexual (straight)             Never
## 11363  44.00          Gay or lesbian  Most of the time
## 11364  72.58 Heterosexual (straight)         Sometimes
## 11365  61.24 Heterosexual (straight)  Most of the time
## 11366  74.84 Heterosexual (straight)             Never
## 11367  43.09                Bisexual         Sometimes
## 11368  63.50 Heterosexual (straight)             Never
## 11369  50.35          Some other way  Most of the time
## 11370  58.97 Heterosexual (straight)  Most of the time
## 11371  49.90 Heterosexual (straight)            Always
## 11372  56.70 Heterosexual (straight)            Always
## 11373  49.90 Heterosexual (straight)             Never
## 11374  49.90 Heterosexual (straight)  Most of the time
## 11375  77.11 Heterosexual (straight)            Rarely
## 11376  68.04 Heterosexual (straight)             Never
## 11377  58.97 Heterosexual (straight)             Never
## 11378  63.50 Heterosexual (straight)             Never
## 11379  53.52 Heterosexual (straight)  Most of the time
## 11380  44.91 Heterosexual (straight)         Sometimes
## 11381     NA          Some other way         Sometimes
## 11382  58.97          Gay or lesbian         Sometimes
## 11383     NA                Bisexual         Sometimes
## 11384  45.36                Not sure            Rarely
## 11385  59.88                Bisexual         Sometimes
## 11386  70.31                Bisexual            Always
## 11387  67.59 Heterosexual (straight)            Rarely
## 11388  54.43 Heterosexual (straight)  Most of the time
## 11389  58.97 Heterosexual (straight)         Sometimes
## 11390  54.43 Heterosexual (straight)         Sometimes
## 11391  77.11 Heterosexual (straight)            Rarely
## 11392     NA                Not sure         Sometimes
## 11393  84.82 Heterosexual (straight)              <NA>
## 11394     NA          Some other way            Rarely
## 11395  65.77 Heterosexual (straight)         Sometimes
## 11396  77.11 Heterosexual (straight)  Most of the time
## 11397  74.84 Heterosexual (straight)  Most of the time
## 11398  84.82          Gay or lesbian         Sometimes
## 11399  57.61 Heterosexual (straight)         Sometimes
## 11400  58.97          Some other way  Most of the time
## 11401  68.04 Heterosexual (straight)         Sometimes
## 11402     NA          Gay or lesbian         Sometimes
## 11403  56.70 Heterosexual (straight)             Never
## 11404  47.63 Heterosexual (straight)             Never
## 11405  68.04 Heterosexual (straight)  Most of the time
## 11406  45.36 Heterosexual (straight)  Most of the time
## 11407     NA                Bisexual  Most of the time
## 11408  68.04 Heterosexual (straight)            Rarely
## 11409  83.92 Heterosexual (straight)         Sometimes
## 11410 133.81                Bisexual         Sometimes
## 11411  70.31 Heterosexual (straight)         Sometimes
## 11412  52.16                Bisexual             Never
## 11413  49.90                Not sure         Sometimes
## 11414  56.70 Heterosexual (straight)  Most of the time
## 11415  54.43 Heterosexual (straight)         Sometimes
## 11416  56.70 Heterosexual (straight)  Most of the time
## 11417  68.04 Heterosexual (straight)             Never
## 11418  72.58                Bisexual            Always
## 11419  58.97 Heterosexual (straight)         Sometimes
## 11420  54.43 Heterosexual (straight)         Sometimes
## 11421  76.20          Some other way         Sometimes
## 11422 108.86                Bisexual            Always
## 11423  63.50 Heterosexual (straight)            Rarely
## 11424  50.35 Heterosexual (straight)            Always
## 11425  72.58 Heterosexual (straight)            Always
## 11426  81.65 Heterosexual (straight)             Never
## 11427  58.97          Gay or lesbian         Sometimes
## 11428  49.44          Gay or lesbian  Most of the time
## 11429  55.79 Heterosexual (straight)            Rarely
## 11430     NA Heterosexual (straight)              <NA>
## 11431  68.04                Bisexual  Most of the time
## 11432  68.04 Heterosexual (straight)            Rarely
## 11433  58.97 Heterosexual (straight)         Sometimes
## 11434  47.63 Heterosexual (straight)  Most of the time
## 11435  46.72 Heterosexual (straight)         Sometimes
## 11436  50.35 Heterosexual (straight)            Rarely
## 11437  49.90 Heterosexual (straight)            Rarely
## 11438     NA                Bisexual  Most of the time
## 11439  56.70 Heterosexual (straight)              <NA>
## 11440     NA Heterosexual (straight)            Rarely
## 11441     NA Heterosexual (straight)  Most of the time
## 11442  77.11 Heterosexual (straight)             Never
## 11443  49.90          Gay or lesbian  Most of the time
## 11444  50.80 Heterosexual (straight)  Most of the time
## 11445  70.31 Heterosexual (straight)  Most of the time
## 11446  49.90                Not sure         Sometimes
## 11447  58.06 Heterosexual (straight)            Rarely
## 11448 113.40 Heterosexual (straight)             Never
## 11449     NA Heterosexual (straight)            Rarely
## 11450  74.84 Heterosexual (straight)            Always
## 11451  47.63 Heterosexual (straight)             Never
## 11452  74.84 Heterosexual (straight)         Sometimes
## 11453  48.08                Bisexual              <NA>
## 11454     NA                Bisexual  Most of the time
## 11455     NA Heterosexual (straight)            Always
## 11456     NA Heterosexual (straight)  Most of the time
## 11457  56.70 Heterosexual (straight)         Sometimes
## 11458  86.18 Heterosexual (straight)            Always
## 11459  54.89 Heterosexual (straight)            Rarely
## 11460  56.70                Not sure         Sometimes
## 11461  70.31                Not sure  Most of the time
## 11462  56.70 Heterosexual (straight)            Rarely
## 11463  68.04                Not sure             Never
## 11464  47.63                Bisexual  Most of the time
## 11465  63.05 Heterosexual (straight)            Rarely
## 11466  81.65 Heterosexual (straight)         Sometimes
## 11467  52.16                Bisexual            Rarely
## 11468  77.11 Heterosexual (straight)             Never
## 11469  63.50 Heterosexual (straight)             Never
## 11470  63.50 Heterosexual (straight)            Always
## 11471  45.36          Gay or lesbian  Most of the time
## 11472  72.12 Heterosexual (straight)            Always
## 11473  68.04 Heterosexual (straight)  Most of the time
## 11474  68.04 Heterosexual (straight)         Sometimes
## 11475  74.84 Heterosexual (straight)         Sometimes
## 11476     NA Heterosexual (straight)  Most of the time
## 11477  64.86 Heterosexual (straight)         Sometimes
## 11478  53.98                Bisexual         Sometimes
## 11479  65.77 Heterosexual (straight)            Rarely
## 11480 108.86 Heterosexual (straight)         Sometimes
## 11481  57.61 Heterosexual (straight)  Most of the time
## 11482  83.92 Heterosexual (straight)            Rarely
## 11483  50.80 Heterosexual (straight)  Most of the time
## 11484  59.88                Not sure         Sometimes
## 11485  54.43 Heterosexual (straight)         Sometimes
## 11486  46.27 Heterosexual (straight)         Sometimes
## 11487     NA          Some other way            Rarely
## 11488  77.11 Heterosexual (straight)         Sometimes
## 11489  61.24 Heterosexual (straight)            Rarely
## 11490  53.98          Gay or lesbian            Always
## 11491     NA                Not sure             Never
## 11492     NA                Not sure            Always
## 11493  61.24                Bisexual  Most of the time
## 11494  90.72          Gay or lesbian            Always
## 11495  52.16 Heterosexual (straight)         Sometimes
## 11496  77.11 Heterosexual (straight)            Rarely
## 11497 102.06 Heterosexual (straight)         Sometimes
## 11498  68.04 Heterosexual (straight)            Rarely
## 11499  61.24                Not sure            Rarely
## 11500  58.97 Heterosexual (straight)         Sometimes
## 11501  63.50 Heterosexual (straight)  Most of the time
## 11502  63.50 Heterosexual (straight)         Sometimes
## 11503  54.43 Heterosexual (straight)             Never
## 11504  46.27 Heterosexual (straight)         Sometimes
## 11505  86.18 Heterosexual (straight)            Rarely
## 11506  69.40 Heterosexual (straight)  Most of the time
## 11507  52.16 Heterosexual (straight)  Most of the time
## 11508  61.24 Heterosexual (straight)         Sometimes
## 11509  56.70                Bisexual  Most of the time
## 11510  74.84 Heterosexual (straight)             Never
## 11511  90.72 Heterosexual (straight)            Rarely
## 11512  52.16 Heterosexual (straight)         Sometimes
## 11513  68.04                Bisexual  Most of the time
## 11514  52.16 Heterosexual (straight)         Sometimes
## 11515  54.43 Heterosexual (straight)              <NA>
## 11516  54.43 Heterosexual (straight)         Sometimes
## 11517  45.36          Some other way            Always
## 11518  64.86 Heterosexual (straight)         Sometimes
## 11519  52.16                Not sure            Rarely
## 11520     NA Heterosexual (straight)             Never
## 11521  68.04                Bisexual  Most of the time
## 11522  77.11 Heterosexual (straight)         Sometimes
## 11523  63.50 Heterosexual (straight)            Rarely
## 11524  56.70 Heterosexual (straight)            Rarely
## 11525  56.70          Some other way            Rarely
## 11526  86.18 Heterosexual (straight)            Rarely
## 11527  52.16 Heterosexual (straight)         Sometimes
## 11528  61.24 Heterosexual (straight)         Sometimes
## 11529     NA          Gay or lesbian            Always
## 11530  63.50 Heterosexual (straight)             Never
## 11531  70.31 Heterosexual (straight)            Rarely
## 11532  45.81 Heterosexual (straight)             Never
## 11533  83.92 Heterosexual (straight)         Sometimes
## 11534  77.11 Heterosexual (straight)         Sometimes
## 11535  90.72 Heterosexual (straight)  Most of the time
## 11536     NA Heterosexual (straight)         Sometimes
## 11537  79.38 Heterosexual (straight)             Never
## 11538  61.24          Some other way  Most of the time
## 11539  61.24                Bisexual         Sometimes
## 11540  81.65          Some other way         Sometimes
## 11541  58.06 Heterosexual (straight)  Most of the time
## 11542  70.31 Heterosexual (straight)         Sometimes
## 11543  65.77 Heterosexual (straight)         Sometimes
## 11544  45.36                Bisexual         Sometimes
## 11545  77.11 Heterosexual (straight)             Never
## 11546  63.50 Heterosexual (straight)            Always
## 11547  77.11 Heterosexual (straight)            Rarely
## 11548  65.77 Heterosexual (straight)             Never
## 11549  73.48 Heterosexual (straight)         Sometimes
## 11550  54.43                Bisexual            Always
## 11551  56.70                Bisexual  Most of the time
## 11552  57.61          Some other way            Always
## 11553  86.18 Heterosexual (straight)         Sometimes
## 11554  54.43 Heterosexual (straight)  Most of the time
## 11555  56.70 Heterosexual (straight)            Rarely
## 11556  63.50          Some other way         Sometimes
## 11557  72.58          Gay or lesbian            Rarely
## 11558  68.04 Heterosexual (straight)         Sometimes
## 11559  58.97 Heterosexual (straight)            Rarely
## 11560  72.58 Heterosexual (straight)             Never
## 11561  72.58 Heterosexual (straight)  Most of the time
## 11562  63.50 Heterosexual (straight)            Rarely
## 11563  61.24 Heterosexual (straight)         Sometimes
## 11564  68.04                Bisexual         Sometimes
## 11565     NA                Not sure  Most of the time
## 11566  72.58 Heterosexual (straight)             Never
## 11567  52.16                Bisexual  Most of the time
## 11568  54.43 Heterosexual (straight)            Rarely
## 11569  63.50 Heterosexual (straight)            Rarely
## 11570  61.24                Bisexual  Most of the time
## 11571  58.97          Some other way  Most of the time
## 11572  56.70 Heterosexual (straight)  Most of the time
## 11573  56.25          Gay or lesbian  Most of the time
## 11574  70.31 Heterosexual (straight)         Sometimes
## 11575  47.63                Bisexual  Most of the time
## 11576  48.99 Heterosexual (straight)             Never
## 11577  54.43 Heterosexual (straight)            Rarely
## 11578  54.43 Heterosexual (straight)         Sometimes
## 11579  79.83 Heterosexual (straight)            Rarely
## 11580 136.99          Gay or lesbian            Always
## 11581  77.11 Heterosexual (straight)            Rarely
## 11582  77.11 Heterosexual (straight)            Rarely
## 11583  99.79 Heterosexual (straight)         Sometimes
## 11584  68.49 Heterosexual (straight)             Never
## 11585  66.23 Heterosexual (straight)             Never
## 11586  57.15                Bisexual         Sometimes
## 11587  52.16 Heterosexual (straight)            Rarely
## 11588  49.90 Heterosexual (straight)            Rarely
## 11589  68.95 Heterosexual (straight)         Sometimes
## 11590  51.26 Heterosexual (straight)            Always
## 11591  58.97 Heterosexual (straight)            Rarely
## 11592  52.16 Heterosexual (straight)             Never
## 11593  63.50 Heterosexual (straight)            Rarely
## 11594     NA Heterosexual (straight)              <NA>
## 11595  66.68 Heterosexual (straight)         Sometimes
## 11596  44.00 Heterosexual (straight)  Most of the time
## 11597  72.58 Heterosexual (straight)              <NA>
## 11598  59.88 Heterosexual (straight)             Never
## 11599  77.11 Heterosexual (straight)             Never
## 11600  54.43 Heterosexual (straight)         Sometimes
## 11601  45.36 Heterosexual (straight)         Sometimes
## 11602  83.92 Heterosexual (straight)            Rarely
## 11603  68.04 Heterosexual (straight)         Sometimes
## 11604  72.58 Heterosexual (straight)         Sometimes
## 11605  65.77                Not sure         Sometimes
## 11606  56.70 Heterosexual (straight)         Sometimes
## 11607  66.23 Heterosexual (straight)            Rarely
## 11608  68.04 Heterosexual (straight)             Never
## 11609  47.63 Heterosexual (straight)            Rarely
## 11610  86.18 Heterosexual (straight)             Never
## 11611  44.00 Heterosexual (straight)            Rarely
## 11612  63.50 Heterosexual (straight)         Sometimes
## 11613  53.07                Bisexual  Most of the time
## 11614  97.52 Heterosexual (straight)             Never
## 11615  67.13 Heterosexual (straight)              <NA>
## 11616  45.36 Heterosexual (straight)             Never
## 11617  52.62 Heterosexual (straight)         Sometimes
## 11618  49.90 Heterosexual (straight)         Sometimes
## 11619  49.90 Heterosexual (straight)         Sometimes
## 11620  52.16 Heterosexual (straight)         Sometimes
## 11621  74.84 Heterosexual (straight)             Never
## 11622     NA Heterosexual (straight)            Rarely
## 11623  74.39 Heterosexual (straight)            Rarely
## 11624  65.77 Heterosexual (straight)              <NA>
## 11625  60.78 Heterosexual (straight)  Most of the time
## 11626  52.16 Heterosexual (straight)            Rarely
## 11627  79.38 Heterosexual (straight)  Most of the time
## 11628  49.90                Bisexual         Sometimes
## 11629     NA Heterosexual (straight)            Rarely
## 11630     NA Heterosexual (straight)            Always
## 11631  53.52 Heterosexual (straight)             Never
## 11632  38.56 Heterosexual (straight)            Always
## 11633  83.46 Heterosexual (straight)            Rarely
## 11634     NA Heterosexual (straight)            Rarely
## 11635  54.43 Heterosexual (straight)            Rarely
## 11636  77.11 Heterosexual (straight)             Never
## 11637  61.24 Heterosexual (straight)            Rarely
## 11638  56.70 Heterosexual (straight)             Never
## 11639  56.70 Heterosexual (straight)  Most of the time
## 11640  52.62 Heterosexual (straight)  Most of the time
## 11641     NA Heterosexual (straight)         Sometimes
## 11642  58.97 Heterosexual (straight)             Never
## 11643  56.70 Heterosexual (straight)            Rarely
## 11644  48.54 Heterosexual (straight)            Rarely
## 11645  68.04 Heterosexual (straight)            Rarely
## 11646  83.92                Bisexual            Always
## 11647  43.09                Bisexual            Rarely
## 11648     NA                Bisexual            Always
## 11649     NA Heterosexual (straight)            Rarely
## 11650  54.43                Not sure              <NA>
## 11651  52.16                Bisexual  Most of the time
## 11652  52.16                Bisexual  Most of the time
## 11653     NA Heterosexual (straight)            Rarely
## 11654  49.90                Not sure             Never
## 11655  48.99                Bisexual         Sometimes
## 11656  54.43 Heterosexual (straight)         Sometimes
## 11657  99.79 Heterosexual (straight)         Sometimes
## 11658  61.24 Heterosexual (straight)             Never
## 11659  95.26 Heterosexual (straight)         Sometimes
## 11660     NA Heterosexual (straight)  Most of the time
## 11661 100.25 Heterosexual (straight)             Never
## 11662  49.90                Bisexual  Most of the time
## 11663     NA          Gay or lesbian             Never
## 11664  55.34 Heterosexual (straight)  Most of the time
## 11665  58.97 Heterosexual (straight)             Never
## 11666  83.01 Heterosexual (straight)  Most of the time
## 11667  54.43 Heterosexual (straight)         Sometimes
## 11668  40.37 Heterosexual (straight)            Always
## 11669  54.43                Bisexual         Sometimes
## 11670  45.36 Heterosexual (straight)         Sometimes
## 11671  71.22                Bisexual         Sometimes
## 11672  52.16 Heterosexual (straight)         Sometimes
## 11673  49.90          Some other way            Always
## 11674  46.27          Gay or lesbian            Always
## 11675  61.24 Heterosexual (straight)         Sometimes
## 11676  97.52 Heterosexual (straight)            Rarely
## 11677  65.77 Heterosexual (straight)              <NA>
## 11678  72.58 Heterosexual (straight)            Always
## 11679  54.43 Heterosexual (straight)            Rarely
## 11680  72.58 Heterosexual (straight)         Sometimes
## 11681  99.79 Heterosexual (straight)            Rarely
## 11682  68.04                Bisexual         Sometimes
## 11683     NA Heterosexual (straight)             Never
## 11684  90.72 Heterosexual (straight)  Most of the time
## 11685  50.35          Some other way            Always
## 11686  56.70 Heterosexual (straight)            Rarely
## 11687  83.92 Heterosexual (straight)             Never
## 11688  61.69 Heterosexual (straight)              <NA>
## 11689  63.50 Heterosexual (straight)            Rarely
## 11690     NA                Bisexual            Always
## 11691 120.20 Heterosexual (straight)  Most of the time
## 11692  65.77 Heterosexual (straight)  Most of the time
## 11693  70.31 Heterosexual (straight)            Rarely
## 11694  67.13                Bisexual         Sometimes
## 11695  77.11 Heterosexual (straight)             Never
## 11696  81.65 Heterosexual (straight)         Sometimes
## 11697  61.24 Heterosexual (straight)         Sometimes
## 11698     NA          Gay or lesbian            Always
## 11699  63.50 Heterosexual (straight)         Sometimes
## 11700  52.16 Heterosexual (straight)            Always
## 11701  90.72 Heterosexual (straight)            Rarely
## 11702     NA Heterosexual (straight)             Never
## 11703  71.67 Heterosexual (straight)             Never
## 11704  56.70 Heterosexual (straight)         Sometimes
## 11705  54.43 Heterosexual (straight)         Sometimes
## 11706  54.43                Not sure            Always
## 11707  45.36          Some other way  Most of the time
## 11708  54.43 Heterosexual (straight)            Rarely
## 11709  65.77 Heterosexual (straight)         Sometimes
## 11710  68.04 Heterosexual (straight)         Sometimes
## 11711  56.70 Heterosexual (straight)         Sometimes
## 11712  49.90                Not sure            Rarely
## 11713  44.91                Bisexual  Most of the time
## 11714  79.38          Some other way  Most of the time
## 11715  53.07 Heterosexual (straight)            Rarely
## 11716  45.36          Some other way            Always
## 11717  72.58 Heterosexual (straight)            Rarely
## 11718  65.77 Heterosexual (straight)         Sometimes
## 11719  47.63 Heterosexual (straight)            Always
## 11720  84.82 Heterosexual (straight)            Rarely
## 11721  70.31          Gay or lesbian            Always
## 11722  61.24 Heterosexual (straight)         Sometimes
## 11723  81.65 Heterosexual (straight)             Never
## 11724  72.58 Heterosexual (straight)         Sometimes
## 11725  58.97                Bisexual            Always
## 11726  52.16          Gay or lesbian         Sometimes
## 11727  63.50 Heterosexual (straight)  Most of the time
## 11728  58.97 Heterosexual (straight)         Sometimes
## 11729  56.70 Heterosexual (straight)         Sometimes
## 11730  61.24 Heterosexual (straight)  Most of the time
## 11731  95.26 Heterosexual (straight)         Sometimes
## 11732  83.92 Heterosexual (straight)            Rarely
## 11733  72.58 Heterosexual (straight)            Rarely
## 11734  55.34 Heterosexual (straight)            Rarely
## 11735  61.24 Heterosexual (straight)             Never
## 11736  63.50 Heterosexual (straight)  Most of the time
## 11737  58.97 Heterosexual (straight)            Always
## 11738     NA Heterosexual (straight)            Rarely
## 11739  56.70 Heterosexual (straight)            Rarely
## 11740     NA Heterosexual (straight)             Never
## 11741  72.58 Heterosexual (straight)  Most of the time
## 11742     NA Heterosexual (straight)            Always
## 11743     NA Heterosexual (straight)            Rarely
## 11744     NA Heterosexual (straight)         Sometimes
## 11745 131.54          Some other way            Always
## 11746  54.43                Bisexual         Sometimes
## 11747  45.36                Bisexual            Always
## 11748     NA                Bisexual            Always
## 11749  61.24 Heterosexual (straight)             Never
## 11750     NA          Some other way            Rarely
## 11751  47.63          Some other way         Sometimes
## 11752  56.70 Heterosexual (straight)            Rarely
## 11753  52.16 Heterosexual (straight)         Sometimes
## 11754  54.43 Heterosexual (straight)         Sometimes
## 11755  63.50 Heterosexual (straight)            Always
## 11756  78.47          Gay or lesbian  Most of the time
## 11757  49.90          Gay or lesbian         Sometimes
## 11758  61.24                Bisexual         Sometimes
## 11759  83.92 Heterosexual (straight)  Most of the time
## 11760     NA          Some other way         Sometimes
## 11761  79.38 Heterosexual (straight)             Never
## 11762  75.75 Heterosexual (straight)             Never
## 11763  45.36                Bisexual  Most of the time
## 11764  90.72 Heterosexual (straight)            Rarely
## 11765  68.04 Heterosexual (straight)             Never
## 11766  99.79                Bisexual         Sometimes
## 11767     NA Heterosexual (straight)             Never
## 11768  58.97                Not sure  Most of the time
## 11769  54.43 Heterosexual (straight)         Sometimes
## 11770  61.24 Heterosexual (straight)            Rarely
## 11771  72.58 Heterosexual (straight)             Never
## 11772  81.65                Bisexual            Always
## 11773  95.26          Some other way         Sometimes
## 11774  97.52 Heterosexual (straight)         Sometimes
## 11775  79.83 Heterosexual (straight)            Rarely
## 11776  74.84 Heterosexual (straight)            Rarely
## 11777  63.50 Heterosexual (straight)         Sometimes
## 11778     NA Heterosexual (straight)             Never
## 11779  74.84 Heterosexual (straight)         Sometimes
## 11780  74.84 Heterosexual (straight)             Never
## 11781  58.97                Not sure            Always
## 11782  49.90 Heterosexual (straight)            Rarely
## 11783  81.65                Bisexual            Rarely
## 11784  63.50 Heterosexual (straight)            Rarely
## 11785  61.24 Heterosexual (straight)         Sometimes
## 11786  92.99 Heterosexual (straight)            Rarely
## 11787  58.97                Bisexual         Sometimes
## 11788  58.97 Heterosexual (straight)         Sometimes
## 11789  61.24 Heterosexual (straight)            Rarely
## 11790  52.16                Not sure  Most of the time
## 11791  84.37 Heterosexual (straight)         Sometimes
## 11792  52.16          Some other way         Sometimes
## 11793  58.97 Heterosexual (straight)  Most of the time
## 11794     NA Heterosexual (straight)         Sometimes
## 11795  49.44                Bisexual  Most of the time
## 11796  68.04                Bisexual         Sometimes
## 11797  70.31 Heterosexual (straight)         Sometimes
## 11798  68.04 Heterosexual (straight)         Sometimes
## 11799  68.04 Heterosexual (straight)         Sometimes
## 11800  56.70 Heterosexual (straight)            Rarely
## 11801  90.72 Heterosexual (straight)         Sometimes
## 11802  61.24 Heterosexual (straight)         Sometimes
## 11803  63.50 Heterosexual (straight)  Most of the time
## 11804  88.91                Bisexual  Most of the time
## 11805  95.26 Heterosexual (straight)             Never
## 11806  54.43                Bisexual         Sometimes
## 11807  61.24 Heterosexual (straight)  Most of the time
## 11808  70.76          Some other way  Most of the time
## 11809  65.77 Heterosexual (straight)  Most of the time
## 11810  70.31 Heterosexual (straight)             Never
## 11811  50.80                Bisexual             Never
## 11812  74.84 Heterosexual (straight)             Never
## 11813  65.77                Not sure            Rarely
## 11814  63.50                Not sure             Never
## 11815  56.70 Heterosexual (straight)            Rarely
## 11816  68.04 Heterosexual (straight)              <NA>
## 11817  54.43 Heterosexual (straight)            Rarely
## 11818  52.16 Heterosexual (straight)             Never
## 11819  90.72 Heterosexual (straight)              <NA>
## 11820  52.16 Heterosexual (straight)            Always
## 11821  65.77 Heterosexual (straight)            Rarely
## 11822  52.62 Heterosexual (straight)         Sometimes
## 11823  55.34                Bisexual  Most of the time
## 11824  65.77 Heterosexual (straight)         Sometimes
## 11825  63.50 Heterosexual (straight)             Never
## 11826  52.62                Bisexual  Most of the time
## 11827 113.40 Heterosexual (straight)             Never
## 11828  47.63                Not sure  Most of the time
## 11829  72.58          Some other way  Most of the time
## 11830  90.72 Heterosexual (straight)         Sometimes
## 11831  95.26                Bisexual         Sometimes
## 11832  58.97 Heterosexual (straight)            Rarely
## 11833  48.54 Heterosexual (straight)  Most of the time
## 11834  49.90 Heterosexual (straight)         Sometimes
## 11835  89.81          Some other way         Sometimes
## 11836  52.16 Heterosexual (straight)         Sometimes
## 11837  40.82                Bisexual            Always
## 11838  58.97 Heterosexual (straight)            Rarely
## 11839  45.36 Heterosexual (straight)            Rarely
## 11840  72.58 Heterosexual (straight)             Never
## 11841  49.90 Heterosexual (straight)             Never
## 11842  52.16 Heterosexual (straight)         Sometimes
## 11843  72.58 Heterosexual (straight)            Rarely
## 11844  55.34 Heterosexual (straight)  Most of the time
## 11845  61.24 Heterosexual (straight)         Sometimes
## 11846 127.01                Bisexual         Sometimes
## 11847  70.31 Heterosexual (straight)            Rarely
## 11848  60.78 Heterosexual (straight)            Rarely
## 11849  71.22 Heterosexual (straight)             Never
## 11850  56.70 Heterosexual (straight)             Never
## 11851  90.72 Heterosexual (straight)  Most of the time
## 11852     NA                Not sure  Most of the time
## 11853  45.36                Not sure  Most of the time
## 11854  58.97 Heterosexual (straight)             Never
## 11855  59.88 Heterosexual (straight)             Never
## 11856  47.63 Heterosexual (straight)         Sometimes
## 11857 104.33 Heterosexual (straight)         Sometimes
## 11858  69.40 Heterosexual (straight)         Sometimes
## 11859  55.79 Heterosexual (straight)             Never
## 11860  40.82 Heterosexual (straight)             Never
## 11861  39.46                Not sure         Sometimes
## 11862  45.36 Heterosexual (straight)  Most of the time
## 11863     NA Heterosexual (straight)              <NA>
## 11864  63.50                Not sure              <NA>
## 11865  51.71                Bisexual            Always
## 11866  52.16 Heterosexual (straight)            Rarely
## 11867     NA Heterosexual (straight)              <NA>
## 11868  54.43          Some other way  Most of the time
## 11869  81.65 Heterosexual (straight)             Never
## 11870  51.26 Heterosexual (straight)              <NA>
## 11871  81.65 Heterosexual (straight)  Most of the time
## 11872 127.01 Heterosexual (straight)             Never
## 11873  72.58 Heterosexual (straight)             Never
## 11874  48.99 Heterosexual (straight)             Never
## 11875  65.77                Bisexual            Always
## 11876  68.04                Not sure         Sometimes
## 11877  58.97                Bisexual  Most of the time
## 11878     NA          Gay or lesbian         Sometimes
## 11879  58.97                Not sure            Always
## 11880  45.36 Heterosexual (straight)            Always
## 11881  49.90 Heterosexual (straight)            Rarely
## 11882  73.94 Heterosexual (straight)  Most of the time
## 11883     NA                Bisexual  Most of the time
## 11884  61.24 Heterosexual (straight)             Never
## 11885  63.50 Heterosexual (straight)            Rarely
## 11886     NA          Some other way  Most of the time
## 11887  61.24 Heterosexual (straight)            Rarely
## 11888  61.24 Heterosexual (straight)  Most of the time
## 11889  55.79 Heterosexual (straight)            Rarely
## 11890  68.04 Heterosexual (straight)         Sometimes
## 11891  68.04 Heterosexual (straight)         Sometimes
## 11892     NA          Some other way            Always
## 11893 151.50 Heterosexual (straight)            Rarely
## 11894  65.77 Heterosexual (straight)            Rarely
## 11895  72.58 Heterosexual (straight)            Rarely
## 11896  54.43 Heterosexual (straight)         Sometimes
## 11897     NA Heterosexual (straight)         Sometimes
## 11898  56.70 Heterosexual (straight)             Never
## 11899  49.90          Gay or lesbian  Most of the time
## 11900  74.84 Heterosexual (straight)            Rarely
## 11901  70.31 Heterosexual (straight)            Rarely
## 11902  73.03 Heterosexual (straight)             Never
## 11903  54.43                Bisexual            Always
## 11904     NA Heterosexual (straight)            Rarely
## 11905  57.61                Bisexual  Most of the time
## 11906  52.62                Bisexual  Most of the time
## 11907  86.18 Heterosexual (straight)         Sometimes
## 11908  49.90 Heterosexual (straight)             Never
## 11909  61.24 Heterosexual (straight)         Sometimes
## 11910  56.70                Bisexual  Most of the time
## 11911     NA Heterosexual (straight)             Never
## 11912 104.33 Heterosexual (straight)            Rarely
## 11913  68.04 Heterosexual (straight)              <NA>
## 11914  95.26 Heterosexual (straight)             Never
## 11915     NA                Bisexual              <NA>
## 11916  70.31          Some other way  Most of the time
## 11917  90.72 Heterosexual (straight)            Rarely
## 11918  79.38 Heterosexual (straight)            Rarely
## 11919     NA Heterosexual (straight)            Always
## 11920  72.58 Heterosexual (straight)              <NA>
## 11921  68.04          Gay or lesbian            Always
## 11922     NA Heterosexual (straight)            Always
## 11923  70.76          Some other way         Sometimes
## 11924  63.50 Heterosexual (straight)            Rarely
## 11925  58.97          Gay or lesbian            Always
## 11926 124.29          Some other way  Most of the time
## 11927  71.67                Not sure  Most of the time
## 11928  72.58 Heterosexual (straight)             Never
## 11929 104.33 Heterosexual (straight)            Rarely
## 11930     NA Heterosexual (straight)             Never
## 11931  63.50 Heterosexual (straight)         Sometimes
## 11932  49.90                Bisexual  Most of the time
## 11933  49.90 Heterosexual (straight)  Most of the time
## 11934  56.70 Heterosexual (straight)            Rarely
## 11935  52.16 Heterosexual (straight)            Rarely
## 11936  59.88 Heterosexual (straight)            Always
## 11937  57.61                Bisexual            Always
## 11938  49.90          Gay or lesbian         Sometimes
## 11939  54.43 Heterosexual (straight)  Most of the time
## 11940  67.13 Heterosexual (straight)            Rarely
## 11941  56.70                Bisexual            Always
## 11942     NA Heterosexual (straight)              <NA>
## 11943 107.50          Some other way  Most of the time
## 11944  83.92 Heterosexual (straight)         Sometimes
## 11945  81.19 Heterosexual (straight)  Most of the time
## 11946  61.24 Heterosexual (straight)         Sometimes
## 11947  68.04 Heterosexual (straight)            Rarely
## 11948  90.72 Heterosexual (straight)  Most of the time
## 11949  92.08 Heterosexual (straight)            Rarely
## 11950  65.77 Heterosexual (straight)            Always
## 11951  72.58                Not sure  Most of the time
## 11952  52.16 Heterosexual (straight)         Sometimes
## 11953     NA Heterosexual (straight)  Most of the time
## 11954  58.97 Heterosexual (straight)            Rarely
## 11955  49.90 Heterosexual (straight)  Most of the time
## 11956  65.77          Some other way         Sometimes
## 11957     NA                Not sure         Sometimes
## 11958  53.98                Bisexual  Most of the time
## 11959  70.76          Some other way  Most of the time
## 11960  63.96 Heterosexual (straight)  Most of the time
## 11961     NA                Bisexual  Most of the time
## 11962     NA Heterosexual (straight)              <NA>
## 11963  61.24 Heterosexual (straight)             Never
## 11964  63.50 Heterosexual (straight)            Rarely
## 11965  90.72 Heterosexual (straight)         Sometimes
## 11966  54.43                Bisexual  Most of the time
## 11967  87.54 Heterosexual (straight)  Most of the time
## 11968  68.04 Heterosexual (straight)  Most of the time
## 11969  90.72 Heterosexual (straight)             Never
## 11970     NA Heterosexual (straight)  Most of the time
## 11971  83.92 Heterosexual (straight)            Always
## 11972  70.31 Heterosexual (straight)            Rarely
## 11973  65.77 Heterosexual (straight)             Never
## 11974  68.04 Heterosexual (straight)             Never
## 11975  53.52                Bisexual  Most of the time
## 11976  61.24 Heterosexual (straight)            Always
## 11977  72.58                Bisexual         Sometimes
## 11978  52.16 Heterosexual (straight)  Most of the time
## 11979  52.16 Heterosexual (straight)         Sometimes
## 11980  63.50                Bisexual            Always
## 11981 104.33 Heterosexual (straight)            Rarely
## 11982     NA                Not sure         Sometimes
## 11983  61.24 Heterosexual (straight)            Rarely
## 11984  54.43                Bisexual         Sometimes
## 11985  63.50                Bisexual         Sometimes
## 11986     NA                Bisexual  Most of the time
## 11987  95.71                Bisexual            Rarely
## 11988  65.77 Heterosexual (straight)            Rarely
## 11989  69.40 Heterosexual (straight)  Most of the time
## 11990  68.04 Heterosexual (straight)            Always
## 11991  74.84 Heterosexual (straight)            Rarely
## 11992  79.38 Heterosexual (straight)            Rarely
## 11993  63.50          Some other way         Sometimes
## 11994  63.50          Some other way  Most of the time
## 11995     NA                Not sure         Sometimes
## 11996 104.33 Heterosexual (straight)         Sometimes
## 11997  63.50                Bisexual         Sometimes
## 11998  99.79                Bisexual         Sometimes
## 11999  58.97          Some other way  Most of the time
## 12000  68.04 Heterosexual (straight)            Rarely
## 12001  74.39 Heterosexual (straight)            Rarely
## 12002  81.65          Gay or lesbian            Always
## 12003     NA                Bisexual  Most of the time
## 12004  56.70 Heterosexual (straight)             Never
## 12005  65.32 Heterosexual (straight)         Sometimes
## 12006  65.77          Gay or lesbian            Always
## 12007  74.84 Heterosexual (straight)  Most of the time
## 12008  62.60 Heterosexual (straight)  Most of the time
## 12009     NA Heterosexual (straight)         Sometimes
## 12010  70.31 Heterosexual (straight)  Most of the time
## 12011  52.16                Not sure         Sometimes
## 12012  49.90                Bisexual  Most of the time
## 12013  90.72          Gay or lesbian            Always
## 12014  74.84 Heterosexual (straight)  Most of the time
## 12015     NA Heterosexual (straight)         Sometimes
## 12016  82.10 Heterosexual (straight)         Sometimes
## 12017  65.77          Gay or lesbian         Sometimes
## 12018  63.96 Heterosexual (straight)            Rarely
## 12019     NA Heterosexual (straight)  Most of the time
## 12020 106.60 Heterosexual (straight)             Never
## 12021  72.58 Heterosexual (straight)         Sometimes
## 12022     NA Heterosexual (straight)         Sometimes
## 12023  56.25                Bisexual         Sometimes
## 12024 164.66 Heterosexual (straight)              <NA>
## 12025 104.33 Heterosexual (straight)            Rarely
## 12026  63.50 Heterosexual (straight)            Rarely
## 12027  52.16 Heterosexual (straight)  Most of the time
## 12028  63.50          Gay or lesbian            Always
## 12029  77.11                Bisexual  Most of the time
## 12030     NA          Gay or lesbian  Most of the time
## 12031  99.79 Heterosexual (straight)            Rarely
## 12032  95.26 Heterosexual (straight)         Sometimes
## 12033     NA Heterosexual (straight)         Sometimes
## 12034  76.66 Heterosexual (straight)         Sometimes
## 12035  54.43 Heterosexual (straight)            Always
## 12036  90.72          Gay or lesbian  Most of the time
## 12037 136.08 Heterosexual (straight)  Most of the time
## 12038  65.77 Heterosexual (straight)         Sometimes
## 12039     NA          Gay or lesbian         Sometimes
## 12040     NA Heterosexual (straight)  Most of the time
## 12041  70.31 Heterosexual (straight)         Sometimes
## 12042  74.84          Gay or lesbian            Rarely
## 12043  62.60 Heterosexual (straight)            Always
## 12044     NA          Some other way              <NA>
## 12045 106.60 Heterosexual (straight)  Most of the time
## 12046  81.65          Gay or lesbian  Most of the time
## 12047 104.78 Heterosexual (straight)         Sometimes
## 12048  68.04 Heterosexual (straight)         Sometimes
## 12049  90.72 Heterosexual (straight)         Sometimes
## 12050  46.72                Bisexual  Most of the time
## 12051 124.74                Bisexual            Always
## 12052  78.47 Heterosexual (straight)            Rarely
## 12053 111.13 Heterosexual (straight)  Most of the time
## 12054  78.02          Some other way            Always
## 12055  90.72                Bisexual            Rarely
## 12056  61.69                Bisexual  Most of the time
## 12057  63.50          Gay or lesbian            Always
## 12058  51.71 Heterosexual (straight)             Never
## 12059  65.77                Bisexual  Most of the time
## 12060  68.04 Heterosexual (straight)         Sometimes
## 12061  49.90                Bisexual  Most of the time
## 12062  44.45                Bisexual            Always
## 12063  96.62 Heterosexual (straight)         Sometimes
## 12064     NA Heterosexual (straight)              <NA>
## 12065  58.97 Heterosexual (straight)            Always
## 12066  65.77 Heterosexual (straight)         Sometimes
## 12067  45.36                Not sure             Never
## 12068     NA Heterosexual (straight)  Most of the time
## 12069  49.44                Bisexual            Always
## 12070  72.58 Heterosexual (straight)             Never
## 12071  90.27 Heterosexual (straight)            Always
## 12072  72.58 Heterosexual (straight)            Always
## 12073  66.68 Heterosexual (straight)         Sometimes
## 12074  54.43 Heterosexual (straight)             Never
## 12075  54.43 Heterosexual (straight)         Sometimes
## 12076     NA Heterosexual (straight)             Never
## 12077  72.58 Heterosexual (straight)  Most of the time
## 12078 107.05 Heterosexual (straight)             Never
## 12079  61.24 Heterosexual (straight)  Most of the time
## 12080     NA Heterosexual (straight)             Never
## 12081  65.77                Bisexual            Always
## 12082  88.91 Heterosexual (straight)  Most of the time
## 12083  63.50 Heterosexual (straight)             Never
## 12084  71.22 Heterosexual (straight)            Rarely
## 12085  49.90 Heterosexual (straight)             Never
## 12086  70.76 Heterosexual (straight)             Never
## 12087  58.97 Heterosexual (straight)             Never
## 12088  79.38 Heterosexual (straight)  Most of the time
## 12089     NA Heterosexual (straight)             Never
## 12090     NA Heterosexual (straight)  Most of the time
## 12091  51.26 Heterosexual (straight)            Always
## 12092     NA Heterosexual (straight)         Sometimes
## 12093  68.04 Heterosexual (straight)  Most of the time
## 12094     NA Heterosexual (straight)            Rarely
## 12095  70.31 Heterosexual (straight)            Always
## 12096  52.62 Heterosexual (straight)             Never
## 12097  66.23 Heterosexual (straight)             Never
## 12098  54.43                Bisexual            Always
## 12099  63.50 Heterosexual (straight)  Most of the time
## 12100  67.13 Heterosexual (straight)         Sometimes
## 12101     NA                Bisexual             Never
## 12102 152.41 Heterosexual (straight)            Always
## 12103  79.38 Heterosexual (straight)         Sometimes
## 12104  53.52                Bisexual         Sometimes
## 12105  54.43 Heterosexual (straight)             Never
## 12106     NA Heterosexual (straight)         Sometimes
## 12107  54.43                Bisexual  Most of the time
## 12108  63.50 Heterosexual (straight)         Sometimes
## 12109  44.91 Heterosexual (straight)            Rarely
## 12110  58.97 Heterosexual (straight)             Never
## 12111  95.26 Heterosexual (straight)             Never
## 12112     NA Heterosexual (straight)  Most of the time
## 12113  54.43 Heterosexual (straight)            Rarely
## 12114  49.90          Some other way         Sometimes
## 12115 113.40                Bisexual            Always
## 12116  49.90 Heterosexual (straight)         Sometimes
## 12117  69.85                Not sure         Sometimes
## 12118  68.04 Heterosexual (straight)         Sometimes
## 12119  47.63                Bisexual  Most of the time
## 12120  65.77                Not sure            Always
## 12121  34.02 Heterosexual (straight)             Never
## 12122  53.07 Heterosexual (straight)  Most of the time
## 12123  63.05 Heterosexual (straight)            Rarely
## 12124     NA Heterosexual (straight)            Always
## 12125  48.99 Heterosexual (straight)            Rarely
## 12126  52.16                Bisexual         Sometimes
## 12127  88.45          Some other way  Most of the time
## 12128  56.70                Not sure  Most of the time
## 12129  53.52          Some other way  Most of the time
## 12130  65.77 Heterosexual (straight)             Never
## 12131     NA Heterosexual (straight)              <NA>
## 12132  69.40 Heterosexual (straight)            Rarely
## 12133  63.50                Not sure  Most of the time
## 12134  40.37 Heterosexual (straight)         Sometimes
## 12135  70.31                Bisexual  Most of the time
## 12136  56.25 Heterosexual (straight)            Rarely
## 12137  70.31 Heterosexual (straight)             Never
## 12138     NA                Bisexual         Sometimes
## 12139     NA          Gay or lesbian  Most of the time
## 12140     NA Heterosexual (straight)         Sometimes
## 12141     NA Heterosexual (straight)              <NA>
## 12142  72.58 Heterosexual (straight)              <NA>
## 12143     NA Heterosexual (straight)             Never
## 12144     NA Heterosexual (straight)            Rarely
## 12145  51.71 Heterosexual (straight)         Sometimes
## 12146  81.65 Heterosexual (straight)              <NA>
## 12147     NA Heterosexual (straight)            Rarely
## 12148  68.04 Heterosexual (straight)         Sometimes
## 12149  47.63 Heterosexual (straight)            Always
## 12150  72.58                Bisexual         Sometimes
## 12151  49.90 Heterosexual (straight)  Most of the time
## 12152  52.16          Gay or lesbian  Most of the time
## 12153     NA Heterosexual (straight)  Most of the time
## 12154  36.29 Heterosexual (straight)         Sometimes
## 12155     NA Heterosexual (straight)             Never
## 12156  59.88 Heterosexual (straight)            Rarely
## 12157  65.77 Heterosexual (straight)              <NA>
## 12158  58.97 Heterosexual (straight)            Always
## 12159  77.11 Heterosexual (straight)              <NA>
## 12160     NA          Some other way         Sometimes
## 12161  61.24 Heterosexual (straight)            Always
## 12162  56.70 Heterosexual (straight)             Never
## 12163  51.71 Heterosexual (straight)            Always
## 12164     NA Heterosexual (straight)         Sometimes
## 12165     NA Heterosexual (straight)  Most of the time
## 12166  48.99 Heterosexual (straight)         Sometimes
## 12167     NA Heterosexual (straight)             Never
## 12168  56.70 Heterosexual (straight)             Never
## 12169  68.04          Gay or lesbian  Most of the time
## 12170  55.34 Heterosexual (straight)            Always
## 12171  58.97 Heterosexual (straight)         Sometimes
## 12172  49.90          Gay or lesbian  Most of the time
## 12173     NA Heterosexual (straight)            Rarely
## 12174  73.94                Bisexual  Most of the time
## 12175  54.43 Heterosexual (straight)         Sometimes
## 12176  61.24 Heterosexual (straight)  Most of the time
## 12177     NA Heterosexual (straight)             Never
## 12178     NA Heterosexual (straight)  Most of the time
## 12179  89.81                Not sure              <NA>
## 12180  78.93 Heterosexual (straight)         Sometimes
## 12181  77.11          Some other way         Sometimes
## 12182     NA Heterosexual (straight)         Sometimes
## 12183 113.40          Some other way            Always
## 12184     NA          Some other way            Rarely
## 12185  56.70 Heterosexual (straight)         Sometimes
## 12186 117.03 Heterosexual (straight)            Rarely
## 12187  58.97 Heterosexual (straight)             Never
## 12188  49.90 Heterosexual (straight)            Always
## 12189  54.43 Heterosexual (straight)             Never
## 12190     NA Heterosexual (straight)             Never
## 12191  56.70 Heterosexual (straight)             Never
## 12192  72.58 Heterosexual (straight)             Never
## 12193  81.65 Heterosexual (straight)            Rarely
## 12194  62.14 Heterosexual (straight)            Rarely
## 12195  63.50 Heterosexual (straight)              <NA>
## 12196  83.92 Heterosexual (straight)             Never
## 12197  54.89                Bisexual         Sometimes
## 12198  73.48 Heterosexual (straight)  Most of the time
## 12199  46.27                Bisexual         Sometimes
## 12200  81.65                Bisexual              <NA>
## 12201 115.67                Bisexual  Most of the time
## 12202     NA Heterosexual (straight)             Never
## 12203     NA          Some other way            Always
## 12204  54.43                Bisexual            Always
## 12205  62.14                Bisexual  Most of the time
## 12206  77.11                Bisexual  Most of the time
## 12207  77.11 Heterosexual (straight)            Rarely
## 12208     NA Heterosexual (straight)             Never
## 12209  68.04 Heterosexual (straight)              <NA>
## 12210  84.37 Heterosexual (straight)  Most of the time
## 12211  61.24 Heterosexual (straight)             Never
## 12212 113.40 Heterosexual (straight)            Rarely
## 12213  68.04                Bisexual  Most of the time
## 12214     NA Heterosexual (straight)         Sometimes
## 12215  81.65                Bisexual            Rarely
## 12216  58.97 Heterosexual (straight)            Rarely
## 12217  56.70                Bisexual            Always
## 12218  56.25 Heterosexual (straight)             Never
## 12219  75.30 Heterosexual (straight)            Rarely
## 12220     NA Heterosexual (straight)              <NA>
## 12221  56.25                Not sure         Sometimes
## 12222  62.60 Heterosexual (straight)  Most of the time
## 12223  55.79                Bisexual            Always
## 12224  61.24 Heterosexual (straight)         Sometimes
## 12225     NA Heterosexual (straight)            Always
## 12226  53.07          Some other way            Always
## 12227 119.30                Not sure            Rarely
## 12228 112.49                Bisexual  Most of the time
## 12229  62.60 Heterosexual (straight)            Rarely
## 12230  95.26 Heterosexual (straight)             Never
## 12231 113.40 Heterosexual (straight)            Always
## 12232  52.16                Bisexual            Rarely
## 12233  72.58                Not sure            Always
## 12234  95.26          Gay or lesbian         Sometimes
## 12235  54.89 Heterosexual (straight)            Rarely
## 12236  79.38 Heterosexual (straight)  Most of the time
## 12237     NA Heterosexual (straight)             Never
## 12238     NA Heterosexual (straight)             Never
## 12239     NA                Bisexual  Most of the time
## 12240  51.26                Bisexual  Most of the time
## 12241  74.84 Heterosexual (straight)            Rarely
## 12242  73.03                Bisexual         Sometimes
## 12243     NA Heterosexual (straight)             Never
## 12244  56.25 Heterosexual (straight)  Most of the time
## 12245  89.81                Bisexual         Sometimes
## 12246  95.26          Some other way            Rarely
## 12247 124.74 Heterosexual (straight)             Never
## 12248  63.50 Heterosexual (straight)             Never
## 12249  79.38                Bisexual  Most of the time
## 12250  45.36 Heterosexual (straight)            Rarely
## 12251  58.97 Heterosexual (straight)            Rarely
## 12252  90.72                Bisexual  Most of the time
## 12253  52.16 Heterosexual (straight)  Most of the time
## 12254  65.77 Heterosexual (straight)         Sometimes
## 12255  54.43 Heterosexual (straight)             Never
## 12256     NA          Some other way              <NA>
## 12257  65.77                Bisexual            Always
## 12258  74.84 Heterosexual (straight)         Sometimes
## 12259  43.09 Heterosexual (straight)            Always
## 12260  89.36                Bisexual         Sometimes
## 12261  74.84 Heterosexual (straight)             Never
## 12262     NA          Gay or lesbian              <NA>
## 12263  49.90          Gay or lesbian  Most of the time
## 12264  92.99 Heterosexual (straight)              <NA>
## 12265 102.06 Heterosexual (straight)         Sometimes
## 12266  52.16          Gay or lesbian            Always
## 12267  81.65 Heterosexual (straight)             Never
## 12268  58.97 Heterosexual (straight)            Rarely
## 12269  63.96 Heterosexual (straight)             Never
## 12270     NA Heterosexual (straight)            Rarely
## 12271  39.46          Some other way  Most of the time
## 12272  56.25          Gay or lesbian             Never
## 12273 113.40 Heterosexual (straight)            Rarely
## 12274     NA Heterosexual (straight)              <NA>
## 12275  54.43 Heterosexual (straight)         Sometimes
## 12276  56.70                Bisexual            Always
## 12277  88.45 Heterosexual (straight)              <NA>
## 12278  65.77                Not sure  Most of the time
## 12279  83.46 Heterosexual (straight)  Most of the time
## 12280  90.72 Heterosexual (straight)             Never
## 12281  67.13 Heterosexual (straight)  Most of the time
## 12282  69.85                Bisexual              <NA>
## 12283     NA Heterosexual (straight)             Never
## 12284     NA Heterosexual (straight)              <NA>
## 12285     NA                Bisexual         Sometimes
## 12286  52.62                Bisexual         Sometimes
## 12287  90.72 Heterosexual (straight)         Sometimes
## 12288  97.52 Heterosexual (straight)            Always
## 12289     NA Heterosexual (straight)         Sometimes
## 12290  49.90                Bisexual         Sometimes
## 12291  86.18 Heterosexual (straight)            Rarely
## 12292 104.33 Heterosexual (straight)            Always
## 12293 122.47 Heterosexual (straight)         Sometimes
## 12294  61.24 Heterosexual (straight)             Never
## 12295  49.90          Gay or lesbian  Most of the time
## 12296  93.44                Bisexual  Most of the time
## 12297  58.97 Heterosexual (straight)            Rarely
## 12298     NA Heterosexual (straight)         Sometimes
## 12299  58.97                Bisexual              <NA>
## 12300  41.73 Heterosexual (straight)         Sometimes
## 12301     NA                Not sure             Never
## 12302  91.17 Heterosexual (straight)            Always
## 12303  87.54                Bisexual         Sometimes
## 12304  58.06          Some other way  Most of the time
## 12305  74.84 Heterosexual (straight)            Always
## 12306  63.50 Heterosexual (straight)            Always
## 12307  74.84 Heterosexual (straight)         Sometimes
## 12308  70.31 Heterosexual (straight)             Never
## 12309     NA          Some other way         Sometimes
## 12310     NA                Bisexual  Most of the time
## 12311     NA Heterosexual (straight)            Rarely
## 12312  58.97 Heterosexual (straight)             Never
## 12313  62.14 Heterosexual (straight)             Never
## 12314  61.24 Heterosexual (straight)  Most of the time
## 12315     NA          Gay or lesbian            Rarely
## 12316 113.40 Heterosexual (straight)         Sometimes
## 12317  95.26 Heterosexual (straight)             Never
## 12318 106.60 Heterosexual (straight)         Sometimes
## 12319  72.58 Heterosexual (straight)         Sometimes
## 12320 112.49 Heterosexual (straight)            Rarely
## 12321     NA Heterosexual (straight)         Sometimes
## 12322     NA Heterosexual (straight)  Most of the time
## 12323  58.97                Bisexual  Most of the time
## 12324  60.78 Heterosexual (straight)         Sometimes
## 12325     NA Heterosexual (straight)  Most of the time
## 12326  68.04 Heterosexual (straight)             Never
## 12327     NA Heterosexual (straight)         Sometimes
## 12328  65.77 Heterosexual (straight)             Never
## 12329  79.83                Bisexual  Most of the time
## 12330     NA          Gay or lesbian            Always
## 12331     NA Heterosexual (straight)             Never
## 12332     NA                Bisexual         Sometimes
## 12333  56.25 Heterosexual (straight)             Never
## 12334  68.04                Bisexual             Never
## 12335     NA                Bisexual         Sometimes
## 12336  99.79 Heterosexual (straight)            Rarely
## 12337     NA Heterosexual (straight)         Sometimes
## 12338  65.77 Heterosexual (straight)             Never
## 12339  42.64 Heterosexual (straight)            Always
## 12340     NA Heterosexual (straight)             Never
## 12341     NA Heterosexual (straight)              <NA>
## 12342  58.97          Gay or lesbian            Always
## 12343  65.77 Heterosexual (straight)            Always
## 12344  68.49 Heterosexual (straight)            Rarely
## 12345  56.70 Heterosexual (straight)            Always
## 12346     NA                Bisexual            Always
## 12347  86.18 Heterosexual (straight)            Always
## 12348  48.54                Bisexual  Most of the time
## 12349  50.80 Heterosexual (straight)            Always
## 12350  47.63 Heterosexual (straight)         Sometimes
## 12351  70.31 Heterosexual (straight)         Sometimes
## 12352     NA                Not sure  Most of the time
## 12353  43.09 Heterosexual (straight)  Most of the time
## 12354  52.16 Heterosexual (straight)         Sometimes
## 12355  58.51 Heterosexual (straight)  Most of the time
## 12356  58.97 Heterosexual (straight)  Most of the time
## 12357  88.45 Heterosexual (straight)         Sometimes
## 12358  81.65 Heterosexual (straight)             Never
## 12359  83.01 Heterosexual (straight)         Sometimes
## 12360  71.22 Heterosexual (straight)             Never
## 12361  45.36 Heterosexual (straight)         Sometimes
## 12362  50.80                Bisexual  Most of the time
## 12363  47.63                Bisexual            Always
## 12364     NA                Bisexual            Always
## 12365  61.24 Heterosexual (straight)             Never
## 12366  39.46 Heterosexual (straight)  Most of the time
## 12367  99.79 Heterosexual (straight)             Never
## 12368  63.50 Heterosexual (straight)         Sometimes
## 12369  74.84                Not sure            Always
## 12370  63.50 Heterosexual (straight)  Most of the time
## 12371  49.90          Gay or lesbian  Most of the time
## 12372  82.56 Heterosexual (straight)  Most of the time
## 12373     NA Heterosexual (straight)            Rarely
## 12374  53.07                Bisexual            Always
## 12375  52.16 Heterosexual (straight)            Always
## 12376     NA Heterosexual (straight)         Sometimes
## 12377  60.78 Heterosexual (straight)  Most of the time
## 12378  74.84 Heterosexual (straight)         Sometimes
## 12379  50.80 Heterosexual (straight)             Never
## 12380     NA          Some other way            Always
## 12381  81.65 Heterosexual (straight)  Most of the time
## 12382 101.15 Heterosexual (straight)             Never
## 12383  54.43 Heterosexual (straight)         Sometimes
## 12384  49.90 Heterosexual (straight)            Always
## 12385  77.11 Heterosexual (straight)  Most of the time
## 12386     NA          Some other way             Never
## 12387  54.43                Bisexual            Rarely
## 12388  54.43 Heterosexual (straight)            Rarely
## 12389  65.32                Not sure         Sometimes
## 12390  86.18 Heterosexual (straight)  Most of the time
## 12391  80.74                Bisexual            Always
## 12392  65.77 Heterosexual (straight)         Sometimes
## 12393     NA Heterosexual (straight)         Sometimes
## 12394  77.11                Bisexual            Always
## 12395  68.04 Heterosexual (straight)            Always
## 12396  72.58 Heterosexual (straight)  Most of the time
## 12397  97.98                Bisexual         Sometimes
## 12398 104.33                Bisexual  Most of the time
## 12399  49.44          Some other way            Rarely
## 12400     NA          Gay or lesbian            Always
## 12401  47.63 Heterosexual (straight)         Sometimes
## 12402  52.16 Heterosexual (straight)  Most of the time
## 12403  53.07 Heterosexual (straight)            Always
## 12404  56.25          Gay or lesbian  Most of the time
## 12405     NA Heterosexual (straight)         Sometimes
## 12406  99.79 Heterosexual (straight)            Rarely
## 12407  79.38 Heterosexual (straight)            Always
## 12408     NA          Some other way              <NA>
## 12409  70.31          Some other way  Most of the time
## 12410  60.33 Heterosexual (straight)  Most of the time
## 12411  53.98                Bisexual            Always
## 12412  87.54                Bisexual  Most of the time
## 12413     NA          Some other way  Most of the time
## 12414     NA Heterosexual (straight)             Never
## 12415  51.26 Heterosexual (straight)            Always
## 12416  81.65 Heterosexual (straight)         Sometimes
## 12417  56.25 Heterosexual (straight)  Most of the time
## 12418  65.77 Heterosexual (straight)         Sometimes
## 12419     NA          Some other way         Sometimes
## 12420  65.32 Heterosexual (straight)         Sometimes
## 12421  50.80 Heterosexual (straight)            Rarely
## 12422  84.37 Heterosexual (straight)         Sometimes
## 12423  64.41                Bisexual  Most of the time
## 12424  61.24 Heterosexual (straight)  Most of the time
## 12425  61.24 Heterosexual (straight)            Rarely
## 12426  63.50 Heterosexual (straight)         Sometimes
## 12427  67.13 Heterosexual (straight)             Never
## 12428  67.13 Heterosexual (straight)             Never
## 12429  51.26 Heterosexual (straight)            Rarely
## 12430     NA                Not sure         Sometimes
## 12431  64.41 Heterosexual (straight)         Sometimes
## 12432  77.11 Heterosexual (straight)         Sometimes
## 12433  72.58 Heterosexual (straight)         Sometimes
## 12434  45.36 Heterosexual (straight)         Sometimes
## 12435  58.97 Heterosexual (straight)         Sometimes
## 12436  97.98 Heterosexual (straight)             Never
## 12437  82.10 Heterosexual (straight)            Rarely
## 12438  58.97 Heterosexual (straight)             Never
## 12439  90.72                Bisexual            Rarely
## 12440  52.16                Bisexual  Most of the time
## 12441  80.74 Heterosexual (straight)            Always
## 12442  81.65 Heterosexual (straight)            Rarely
## 12443 104.33 Heterosexual (straight)            Rarely
## 12444  65.77 Heterosexual (straight)  Most of the time
## 12445  90.72 Heterosexual (straight)         Sometimes
## 12446  80.74 Heterosexual (straight)         Sometimes
## 12447  44.45                Bisexual            Always
## 12448  72.58          Some other way         Sometimes
## 12449  49.90 Heterosexual (straight)         Sometimes
## 12450  81.65 Heterosexual (straight)  Most of the time
## 12451  57.15          Some other way  Most of the time
## 12452  73.03 Heterosexual (straight)            Rarely
## 12453  52.16 Heterosexual (straight)             Never
## 12454  73.94 Heterosexual (straight)         Sometimes
## 12455  61.24 Heterosexual (straight)  Most of the time
## 12456  81.65                Not sure  Most of the time
## 12457  68.95 Heterosexual (straight)         Sometimes
## 12458  47.63          Some other way            Always
## 12459  63.50 Heterosexual (straight)             Never
## 12460  58.06 Heterosexual (straight)         Sometimes
## 12461  95.26          Some other way            Always
## 12462  65.77                Not sure  Most of the time
## 12463  47.63 Heterosexual (straight)             Never
## 12464  99.79 Heterosexual (straight)             Never
## 12465  83.92 Heterosexual (straight)            Rarely
## 12466  77.11 Heterosexual (straight)         Sometimes
## 12467  68.04 Heterosexual (straight)            Rarely
## 12468  63.50 Heterosexual (straight)             Never
## 12469  58.97          Some other way  Most of the time
## 12470  86.18                Bisexual            Always
## 12471  61.69          Some other way            Always
## 12472  46.72 Heterosexual (straight)            Always
## 12473  69.40 Heterosexual (straight)  Most of the time
## 12474  45.36 Heterosexual (straight)  Most of the time
## 12475  83.92 Heterosexual (straight)             Never
## 12476  52.16 Heterosexual (straight)         Sometimes
## 12477     NA Heterosexual (straight)         Sometimes
## 12478  80.74          Gay or lesbian            Always
## 12479  63.96                Not sure         Sometimes
## 12480  54.43                Not sure  Most of the time
## 12481  68.04 Heterosexual (straight)             Never
## 12482  95.26 Heterosexual (straight)         Sometimes
## 12483  52.16                Bisexual         Sometimes
## 12484  54.43 Heterosexual (straight)  Most of the time
## 12485  48.08 Heterosexual (straight)  Most of the time
## 12486  52.16 Heterosexual (straight)            Always
## 12487  49.90 Heterosexual (straight)  Most of the time
## 12488  54.89          Gay or lesbian         Sometimes
## 12489     NA Heterosexual (straight)  Most of the time
## 12490  66.23 Heterosexual (straight)            Always
## 12491  68.04 Heterosexual (straight)            Always
## 12492 156.49                Not sure            Rarely
## 12493  68.04          Gay or lesbian             Never
## 12494  52.16 Heterosexual (straight)             Never
## 12495  66.23 Heterosexual (straight)         Sometimes
## 12496  52.16          Some other way            Rarely
## 12497     NA Heterosexual (straight)            Rarely
## 12498 115.67                Bisexual            Always
## 12499     NA Heterosexual (straight)            Always
##  [ reached 'max' / getOption("max.print") -- omitted 5136 rows ]

We see that the weight output may look slightly off, this is because it is in kilograms. If we want to convert to pounds we would need to divide all values in the weight column by 0.4536. Use the mutate function as before to create a new column called weight_lbs and take the weight column and divide it by 0.4536.

mutate(yrbs_filter, weight_lbs = weight/0.4536, .after = weight)
##                           age    sex                   grade height height_ft
## 1                14 years old Female               9th grade   1.65  5.413386
## 2                15 years old   Male               9th grade     NA        NA
## 3                16 years old   Male              11th grade   1.68  5.511811
## 4                17 years old Female              10th grade     NA        NA
## 5                14 years old   Male               9th grade   1.85  6.069554
## 6                16 years old   Male               9th grade   1.80  5.905512
## 7                17 years old   Male              11th grade   1.83  6.003937
## 8                15 years old Female               9th grade   1.52  4.986877
## 9                15 years old   Male               9th grade   1.65  5.413386
## 10               17 years old Female              11th grade   1.63  5.347769
## 11               16 years old   Male              10th grade   1.70  5.577428
## 12               15 years old Female               9th grade   1.57  5.150919
## 13               15 years old   Male               9th grade   1.68  5.511811
## 14      18 years old or older Female              11th grade   1.63  5.347769
## 15               15 years old   Male              10th grade   1.75  5.741470
## 16               14 years old Female               9th grade   1.68  5.511811
## 17               15 years old   Male               9th grade   1.88  6.167979
## 18      18 years old or older   Male              11th grade   1.93  6.332021
## 19               16 years old Female              11th grade   1.65  5.413386
## 20               16 years old Female               9th grade   1.52  4.986877
## 21               16 years old   Male              11th grade     NA        NA
## 22               16 years old   Male              10th grade   1.90  6.233596
## 23      18 years old or older   Male              12th grade   1.73  5.675853
## 24               16 years old Female              11th grade   1.80  5.905512
## 25               17 years old Female              11th grade   1.63  5.347769
## 26               16 years old Female              10th grade   1.65  5.413386
## 27               17 years old Female              12th grade   1.60  5.249344
## 28               17 years old Female              11th grade   1.75  5.741470
## 29               16 years old   Male              10th grade   1.83  6.003937
## 30      18 years old or older Female              12th grade   1.78  5.839895
## 31               17 years old   Male              11th grade   1.75  5.741470
## 32               16 years old Female              11th grade   1.60  5.249344
## 33               16 years old   Male              10th grade   1.78  5.839895
## 34      18 years old or older   Male              12th grade   1.85  6.069554
## 35               17 years old Female              11th grade   1.65  5.413386
## 36               15 years old   Male              10th grade   1.90  6.233596
## 37               17 years old Female              12th grade   1.63  5.347769
## 38      18 years old or older   Male              11th grade   1.93  6.332021
## 39               17 years old   Male              11th grade   1.80  5.905512
## 40               17 years old   Male              10th grade   1.73  5.675853
## 41               17 years old Female              11th grade   1.63  5.347769
## 42               14 years old   Male               9th grade   1.63  5.347769
## 43               16 years old Female               9th grade   1.45  4.757218
## 44               16 years old Female              11th grade   1.57  5.150919
## 45               17 years old   Male              10th grade   1.70  5.577428
## 46               17 years old   Male              11th grade   1.75  5.741470
## 47               17 years old Female              11th grade   1.57  5.150919
## 48               16 years old Female               9th grade   1.65  5.413386
## 49               14 years old Female               9th grade   1.52  4.986877
## 50               17 years old Female              11th grade   1.65  5.413386
## 51               15 years old Female               9th grade   1.63  5.347769
## 52               15 years old   Male               9th grade   1.75  5.741470
## 53               17 years old Female              11th grade   1.65  5.413386
## 54      18 years old or older   Male              12th grade   1.90  6.233596
## 55      18 years old or older   Male              12th grade   1.83  6.003937
## 56      18 years old or older   Male              11th grade   1.83  6.003937
## 57               15 years old Female              10th grade     NA        NA
## 58               17 years old   Male              10th grade   1.80  5.905512
## 59               15 years old   Male               9th grade   1.75  5.741470
## 60               17 years old Female              11th grade     NA        NA
## 61               14 years old   Male               9th grade   1.75  5.741470
## 62               14 years old   Male               9th grade   1.83  6.003937
## 63               17 years old   Male              11th grade   1.78  5.839895
## 64               15 years old   Male              10th grade   1.75  5.741470
## 65               14 years old Female               9th grade   1.55  5.085302
## 66               14 years old Female               9th grade   1.63  5.347769
## 67               17 years old Female              11th grade   1.65  5.413386
## 68               16 years old   Male              10th grade   1.80  5.905512
## 69               17 years old Female              12th grade   1.65  5.413386
## 70               15 years old   Male              10th grade   1.73  5.675853
## 71               17 years old Female              11th grade   1.68  5.511811
## 72               17 years old Female              10th grade   1.65  5.413386
## 73      18 years old or older Female              11th grade   1.65  5.413386
## 74               17 years old Female              11th grade   1.70  5.577428
## 75               17 years old   Male              12th grade   1.75  5.741470
## 76               17 years old Female              11th grade   1.65  5.413386
## 77               15 years old   Male              10th grade   1.88  6.167979
## 78               17 years old   Male              10th grade   1.83  6.003937
## 79               16 years old Female               9th grade   1.55  5.085302
## 80               15 years old   Male               9th grade   1.75  5.741470
## 81               15 years old   Male               9th grade   1.83  6.003937
## 82               16 years old Female              11th grade   1.60  5.249344
## 83               15 years old Female              10th grade   1.57  5.150919
## 84               15 years old   Male               9th grade   1.83  6.003937
## 85               14 years old   Male               9th grade   1.80  5.905512
## 86               15 years old   Male               9th grade   1.73  5.675853
## 87               15 years old Female              10th grade   1.68  5.511811
## 88               16 years old Female              10th grade   1.63  5.347769
## 89               14 years old   Male               9th grade   1.73  5.675853
## 90      18 years old or older   Male              12th grade   1.68  5.511811
## 91               16 years old   Male              10th grade   1.65  5.413386
## 92               15 years old   Male               9th grade   1.60  5.249344
## 93               15 years old Female               9th grade     NA        NA
## 94               17 years old Female              10th grade   1.57  5.150919
## 95               17 years old   Male              11th grade   1.78  5.839895
## 96               16 years old Female              10th grade   1.63  5.347769
## 97               17 years old   Male              11th grade   1.78  5.839895
## 98               16 years old   Male              11th grade   1.78  5.839895
## 99               15 years old   Male              10th grade   1.85  6.069554
## 100              17 years old   Male              11th grade   1.88  6.167979
## 101              16 years old Female              11th grade   1.55  5.085302
## 102              17 years old   Male Ungraded or other grade   1.88  6.167979
## 103              17 years old Female              11th grade   1.65  5.413386
## 104              17 years old   Male              11th grade   1.73  5.675853
## 105              16 years old   Male              11th grade   1.78  5.839895
## 106              16 years old Female              11th grade   1.63  5.347769
## 107              15 years old Female              10th grade   1.60  5.249344
## 108              15 years old Female               9th grade   1.60  5.249344
## 109              15 years old Female              10th grade   1.68  5.511811
## 110              17 years old   Male              11th grade   1.90  6.233596
## 111              16 years old   Male              11th grade   1.85  6.069554
## 112              16 years old   Male              10th grade   1.75  5.741470
## 113              14 years old Female               9th grade   1.50  4.921260
## 114              15 years old Female               9th grade   1.65  5.413386
## 115              15 years old   Male               9th grade   1.78  5.839895
## 116              17 years old Female              10th grade   1.57  5.150919
## 117              15 years old   Male               9th grade   1.85  6.069554
## 118              15 years old Female               9th grade   1.63  5.347769
## 119              15 years old Female              10th grade   1.63  5.347769
## 120              16 years old Female               9th grade   1.70  5.577428
## 121              15 years old Female               9th grade   1.65  5.413386
## 122              17 years old Female              10th grade   1.52  4.986877
## 123              15 years old   Male               9th grade   1.78  5.839895
## 124              15 years old Female               9th grade   1.68  5.511811
## 125     18 years old or older   Male              11th grade   1.93  6.332021
## 126              16 years old Female              11th grade   1.57  5.150919
## 127              15 years old Female              10th grade   1.68  5.511811
## 128              16 years old   Male              10th grade   1.85  6.069554
## 129              17 years old   Male              11th grade   1.75  5.741470
## 130              17 years old Female              11th grade   1.55  5.085302
## 131              17 years old   Male              10th grade   1.85  6.069554
## 132     18 years old or older   Male              12th grade   1.90  6.233596
## 133              17 years old Female              11th grade   1.60  5.249344
## 134              16 years old   Male              10th grade   1.88  6.167979
## 135              17 years old   Male              12th grade   1.83  6.003937
## 136              16 years old Female              11th grade     NA        NA
## 137              17 years old   Male              11th grade   1.85  6.069554
## 138              17 years old   Male              11th grade   1.93  6.332021
## 139              17 years old   Male              11th grade   1.85  6.069554
## 140              16 years old   Male              10th grade   1.73  5.675853
## 141              17 years old   Male              12th grade   1.80  5.905512
## 142              17 years old Female              11th grade   1.65  5.413386
## 143              15 years old   Male              10th grade   1.80  5.905512
## 144              17 years old Female              11th grade   1.60  5.249344
## 145              17 years old   Male              11th grade   1.93  6.332021
## 146              17 years old   Male              11th grade   1.88  6.167979
## 147              16 years old Female              10th grade   1.50  4.921260
## 148              16 years old   Male              11th grade   1.80  5.905512
## 149     18 years old or older Female              11th grade   1.68  5.511811
## 150              15 years old   Male               9th grade   1.78  5.839895
## 151              17 years old   Male              11th grade   1.78  5.839895
## 152              17 years old Female              11th grade   1.57  5.150919
## 153              15 years old Female              10th grade   1.57  5.150919
## 154              14 years old Female               9th grade   1.65  5.413386
## 155              15 years old Female               9th grade   1.60  5.249344
## 156              17 years old Female              11th grade   1.70  5.577428
## 157              17 years old   Male              11th grade   1.88  6.167979
## 158              17 years old Female              10th grade   1.70  5.577428
## 159              15 years old Female              10th grade     NA        NA
## 160              15 years old   Male               9th grade   1.93  6.332021
## 161                      <NA>   Male                    <NA>     NA        NA
## 162     18 years old or older   Male              11th grade   1.83  6.003937
## 163              15 years old Female              10th grade   1.70  5.577428
## 164              15 years old Female               9th grade   1.60  5.249344
## 165              17 years old Female              11th grade   1.60  5.249344
## 166              17 years old Female              11th grade   1.50  4.921260
## 167              17 years old   Male              11th grade   1.70  5.577428
## 168              16 years old Female               9th grade     NA        NA
## 169              15 years old Female               9th grade   1.68  5.511811
## 170              16 years old Female              10th grade     NA        NA
## 171              17 years old   Male              11th grade   1.80  5.905512
## 172              15 years old   Male               9th grade   1.83  6.003937
## 173              17 years old   Male              11th grade   1.78  5.839895
## 174              16 years old Female              10th grade   1.60  5.249344
## 175              15 years old Female               9th grade   1.50  4.921260
## 176              17 years old Female              11th grade   1.68  5.511811
## 177              17 years old Female              11th grade   1.45  4.757218
## 178              16 years old Female              10th grade   1.63  5.347769
## 179              16 years old   Male              10th grade   1.68  5.511811
## 180              16 years old   Male              11th grade   1.83  6.003937
## 181              16 years old Female              10th grade   1.50  4.921260
## 182              15 years old Female               9th grade   1.75  5.741470
## 183              16 years old   Male              10th grade   1.85  6.069554
## 184              17 years old   Male              11th grade   1.83  6.003937
## 185              15 years old Female              10th grade   1.60  5.249344
## 186              17 years old Female              11th grade     NA        NA
## 187              14 years old Female               9th grade   1.60  5.249344
## 188              15 years old Female               9th grade   1.55  5.085302
## 189              16 years old   Male              10th grade   1.68  5.511811
## 190              14 years old Female               9th grade   1.57  5.150919
## 191              17 years old   Male              11th grade   1.73  5.675853
## 192              16 years old Female              10th grade   1.63  5.347769
## 193              14 years old Female               9th grade   1.73  5.675853
## 194              16 years old   Male              11th grade   1.73  5.675853
## 195              15 years old   Male               9th grade   1.75  5.741470
## 196              16 years old   Male              10th grade   1.85  6.069554
## 197              15 years old   Male               9th grade   1.73  5.675853
## 198              16 years old   Male              11th grade   1.70  5.577428
## 199              15 years old Female               9th grade   1.55  5.085302
## 200              17 years old   Male              11th grade   1.75  5.741470
## 201              17 years old Female              11th grade   1.63  5.347769
## 202              16 years old   Male              10th grade   1.85  6.069554
## 203              15 years old Female               9th grade   1.68  5.511811
## 204     18 years old or older Female              11th grade   1.65  5.413386
## 205              16 years old   Male              11th grade   1.80  5.905512
## 206              16 years old   Male              10th grade   1.75  5.741470
## 207              16 years old   Male               9th grade     NA        NA
## 208              17 years old   Male              11th grade   1.85  6.069554
## 209              16 years old   Male              11th grade   1.78  5.839895
## 210              14 years old   Male               9th grade   1.73  5.675853
## 211     18 years old or older   Male              12th grade   1.80  5.905512
## 212              15 years old   Male              10th grade   1.80  5.905512
## 213              17 years old Female              11th grade     NA        NA
## 214              16 years old Female              10th grade   1.57  5.150919
## 215              16 years old   Male               9th grade     NA        NA
## 216              16 years old   Male              10th grade   1.85  6.069554
## 217              15 years old Female               9th grade   1.65  5.413386
## 218              15 years old Female               9th grade   1.70  5.577428
## 219              17 years old Female              11th grade   1.57  5.150919
## 220              17 years old   Male              11th grade   1.65  5.413386
## 221              16 years old   Male              10th grade   1.75  5.741470
## 222              15 years old Female               9th grade   1.63  5.347769
## 223              17 years old Female              11th grade   1.63  5.347769
## 224              17 years old   Male              11th grade   1.93  6.332021
## 225              15 years old   Male               9th grade   1.70  5.577428
## 226              15 years old   Male               9th grade   1.65  5.413386
## 227              16 years old   Male              10th grade   1.90  6.233596
## 228     18 years old or older   Male              11th grade   1.70  5.577428
## 229              16 years old Female              10th grade   1.65  5.413386
## 230              15 years old   Male               9th grade   1.85  6.069554
## 231              17 years old Female              11th grade   1.55  5.085302
## 232              16 years old Female              10th grade   1.57  5.150919
## 233              15 years old   Male               9th grade   1.75  5.741470
## 234              15 years old   Male               9th grade   1.73  5.675853
## 235              15 years old   Male               9th grade   1.65  5.413386
## 236              15 years old Female               9th grade   1.75  5.741470
## 237              15 years old Female               9th grade   1.63  5.347769
## 238              14 years old Female               9th grade   1.68  5.511811
## 239              16 years old Female              10th grade   1.52  4.986877
## 240              14 years old Female               9th grade   1.52  4.986877
## 241              14 years old Female               9th grade   1.52  4.986877
## 242              14 years old   Male               9th grade   1.75  5.741470
## 243              15 years old Female              10th grade   1.57  5.150919
## 244              15 years old   Male               9th grade   1.75  5.741470
## 245              15 years old Female               9th grade   1.65  5.413386
## 246              14 years old   Male               9th grade   1.78  5.839895
## 247              15 years old   Male               9th grade   1.75  5.741470
## 248              14 years old   Male               9th grade   1.78  5.839895
## 249              15 years old   Male               9th grade   1.68  5.511811
## 250              15 years old Female               9th grade   1.70  5.577428
## 251              17 years old Female              11th grade   1.55  5.085302
## 252              15 years old   Male               9th grade   1.83  6.003937
## 253              16 years old   Male              10th grade   1.96  6.430446
## 254              16 years old Female              11th grade   1.70  5.577428
## 255              15 years old Female              10th grade   1.65  5.413386
## 256              16 years old   Male              10th grade     NA        NA
## 257              16 years old   Male              10th grade     NA        NA
## 258              15 years old Female              10th grade   1.68  5.511811
## 259              15 years old   Male              10th grade   1.75  5.741470
## 260              16 years old   Male              10th grade     NA        NA
## 261              16 years old   Male              10th grade   1.68  5.511811
## 262              16 years old   Male              10th grade   1.57  5.150919
## 263              16 years old Female              10th grade   1.63  5.347769
## 264              15 years old Female              10th grade   1.60  5.249344
## 265              17 years old Female              10th grade     NA        NA
## 266              17 years old Female              10th grade   1.55  5.085302
## 267              15 years old   Male              10th grade   1.90  6.233596
## 268              16 years old   Male              10th grade   1.75  5.741470
## 269              15 years old Female              10th grade   1.65  5.413386
## 270              16 years old Female              10th grade   1.78  5.839895
## 271              16 years old   Male              10th grade     NA        NA
## 272              17 years old   Male              10th grade   1.68  5.511811
## 273              17 years old Female              10th grade     NA        NA
## 274              16 years old Female              10th grade   1.55  5.085302
## 275     18 years old or older Female              12th grade   1.60  5.249344
## 276              15 years old Female               9th grade   1.57  5.150919
## 277              15 years old Female               9th grade   1.68  5.511811
## 278     18 years old or older   Male              12th grade   1.88  6.167979
## 279     18 years old or older   Male              12th grade   1.73  5.675853
## 280              15 years old   Male               9th grade   1.78  5.839895
## 281              14 years old   Male               9th grade   1.78  5.839895
## 282              16 years old Female              10th grade   1.45  4.757218
## 283     18 years old or older Female              12th grade   1.57  5.150919
## 284              16 years old   Male               9th grade     NA        NA
## 285              14 years old   Male               9th grade   1.70  5.577428
## 286              15 years old   Male              10th grade   1.75  5.741470
## 287              17 years old   Male              12th grade   1.78  5.839895
## 288     18 years old or older Female              12th grade   1.63  5.347769
## 289              14 years old Female               9th grade   1.63  5.347769
## 290              15 years old   Male               9th grade   1.68  5.511811
## 291              15 years old Female              10th grade   1.63  5.347769
## 292              17 years old Female              12th grade   1.57  5.150919
## 293     18 years old or older   Male              12th grade   1.70  5.577428
## 294              16 years old Female               9th grade   1.57  5.150919
## 295              15 years old Female               9th grade   1.63  5.347769
## 296              17 years old   Male              10th grade   1.63  5.347769
## 297              17 years old Female              12th grade   1.65  5.413386
## 298     18 years old or older Female              12th grade   1.68  5.511811
## 299              14 years old Female               9th grade   1.70  5.577428
## 300              16 years old   Male              11th grade   1.52  4.986877
## 301     18 years old or older Female              12th grade   1.60  5.249344
## 302              14 years old   Male               9th grade     NA        NA
## 303              15 years old   Male               9th grade   1.65  5.413386
## 304              17 years old Female              10th grade   1.70  5.577428
## 305              14 years old   Male               9th grade   1.73  5.675853
## 306              17 years old   Male              10th grade   1.80  5.905512
## 307     18 years old or older   Male              12th grade   1.80  5.905512
## 308     18 years old or older Female              12th grade   1.60  5.249344
## 309              14 years old Female               9th grade   1.57  5.150919
## 310              15 years old   Male               9th grade   1.65  5.413386
## 311              17 years old Female              12th grade   1.57  5.150919
## 312     18 years old or older Female              12th grade   1.52  4.986877
## 313              17 years old Female              12th grade   1.60  5.249344
## 314              14 years old   Male               9th grade     NA        NA
## 315              14 years old Female               9th grade     NA        NA
## 316              17 years old   Male              12th grade   1.80  5.905512
## 317              14 years old   Male               9th grade   1.80  5.905512
## 318              15 years old Female               9th grade   1.65  5.413386
## 319              16 years old   Male              10th grade   1.85  6.069554
## 320     18 years old or older   Male              12th grade   1.83  6.003937
## 321              17 years old   Male               9th grade   1.73  5.675853
## 322              14 years old Female               9th grade     NA        NA
## 323              16 years old Female              10th grade   1.60  5.249344
## 324     18 years old or older Female              12th grade   1.63  5.347769
## 325              15 years old Female               9th grade     NA        NA
## 326              17 years old   Male              10th grade   1.68  5.511811
## 327     18 years old or older   Male              12th grade   1.83  6.003937
## 328              17 years old Female              12th grade   1.63  5.347769
## 329              16 years old   Male               9th grade     NA        NA
## 330              17 years old Female              11th grade     NA        NA
## 331              17 years old Female              12th grade   1.60  5.249344
## 332              14 years old Female               9th grade   1.63  5.347769
## 333              15 years old   Male               9th grade     NA        NA
## 334              17 years old Female              11th grade   1.65  5.413386
## 335              17 years old   Male              12th grade   1.78  5.839895
## 336              17 years old Female              12th grade   1.60  5.249344
## 337              14 years old Female               9th grade   1.63  5.347769
## 338              15 years old   Male               9th grade   1.70  5.577428
## 339              16 years old   Male              10th grade   1.68  5.511811
## 340              17 years old Female              12th grade   1.60  5.249344
## 341     18 years old or older   Male              12th grade   1.78  5.839895
## 342     18 years old or older   Male              12th grade   1.83  6.003937
## 343              17 years old   Male              12th grade     NA        NA
## 344              15 years old   Male               9th grade   1.73  5.675853
## 345              17 years old   Male              10th grade   1.68  5.511811
## 346     18 years old or older Female              12th grade   1.68  5.511811
## 347     18 years old or older   Male              12th grade   1.75  5.741470
## 348              14 years old   Male               9th grade   1.80  5.905512
## 349              15 years old Female               9th grade   1.60  5.249344
## 350              15 years old Female              10th grade   1.73  5.675853
## 351              17 years old Female              12th grade   1.65  5.413386
## 352              17 years old Female              12th grade   1.52  4.986877
## 353              15 years old Female               9th grade   1.52  4.986877
## 354              16 years old Female               9th grade   1.63  5.347769
## 355              16 years old   Male              10th grade   1.78  5.839895
## 356              16 years old   Male              10th grade   1.83  6.003937
## 357              16 years old Female              10th grade   1.65  5.413386
## 358              15 years old Female              10th grade   1.55  5.085302
## 359              17 years old   Male              11th grade   1.70  5.577428
## 360              15 years old   Male              10th grade   1.85  6.069554
## 361              15 years old Female              10th grade   1.50  4.921260
## 362              16 years old   Male              10th grade   1.90  6.233596
## 363              16 years old Female              10th grade   1.68  5.511811
## 364              15 years old Female              10th grade   1.65  5.413386
## 365              16 years old Female              10th grade   1.57  5.150919
## 366              15 years old Female              10th grade   1.57  5.150919
## 367              15 years old   Male               9th grade   1.78  5.839895
## 368              15 years old Female              10th grade   1.55  5.085302
## 369              16 years old Female               9th grade   1.65  5.413386
## 370              15 years old   Male              10th grade   1.80  5.905512
## 371              16 years old Female              10th grade   1.60  5.249344
## 372              15 years old   Male              10th grade   1.70  5.577428
## 373              16 years old   Male              10th grade   1.73  5.675853
## 374              17 years old Female              11th grade   1.60  5.249344
## 375              15 years old Female              10th grade   1.63  5.347769
## 376              15 years old Female              10th grade   1.52  4.986877
## 377              16 years old Female              10th grade   1.65  5.413386
## 378              15 years old Female               9th grade   1.63  5.347769
## 379     18 years old or older   Male              12th grade   1.68  5.511811
## 380              16 years old Female              10th grade   1.63  5.347769
## 381              15 years old Female              10th grade   1.65  5.413386
## 382              15 years old   Male              10th grade   1.80  5.905512
## 383     18 years old or older   Male              12th grade   1.75  5.741470
## 384              16 years old Female              10th grade   1.68  5.511811
## 385              16 years old   Male              10th grade   1.70  5.577428
## 386              15 years old   Male               9th grade   1.73  5.675853
## 387              15 years old   Male              10th grade   1.80  5.905512
## 388              16 years old   Male              11th grade   1.73  5.675853
## 389              16 years old Female              10th grade   1.78  5.839895
## 390              15 years old   Male              10th grade   1.80  5.905512
## 391              15 years old   Male               9th grade   1.73  5.675853
## 392              15 years old   Male              10th grade   1.80  5.905512
## 393              15 years old Female              10th grade   1.63  5.347769
## 394              17 years old Female              12th grade   1.75  5.741470
## 395              15 years old   Male              10th grade   1.73  5.675853
## 396              14 years old   Male               9th grade     NA        NA
## 397              16 years old   Male              10th grade   1.88  6.167979
## 398              16 years old   Male              10th grade   1.73  5.675853
## 399              15 years old   Male              10th grade   1.80  5.905512
## 400              15 years old   Male              10th grade   1.83  6.003937
## 401              15 years old   Male              10th grade   1.63  5.347769
## 402              15 years old   Male              10th grade   1.70  5.577428
## 403              17 years old   Male              11th grade   1.90  6.233596
## 404              15 years old   Male               9th grade   1.78  5.839895
## 405              17 years old   Male              12th grade   1.68  5.511811
## 406              15 years old   Male              10th grade   1.83  6.003937
## 407              15 years old   Male              10th grade   1.85  6.069554
## 408              16 years old Female              10th grade   1.63  5.347769
## 409              14 years old   Male               9th grade   1.90  6.233596
## 410              15 years old   Male               9th grade   1.78  5.839895
## 411              15 years old   Male              10th grade   1.78  5.839895
## 412              17 years old   Male              11th grade   1.75  5.741470
## 413     18 years old or older Female              12th grade   1.68  5.511811
## 414     18 years old or older   Male              12th grade   1.75  5.741470
## 415              14 years old   Male               9th grade   1.68  5.511811
## 416              16 years old Female              11th grade   1.65  5.413386
## 417              15 years old   Male              10th grade   1.78  5.839895
## 418              15 years old   Male              10th grade   1.68  5.511811
## 419              15 years old   Male              10th grade   1.78  5.839895
## 420              17 years old   Male              11th grade   1.73  5.675853
## 421              14 years old   Male               9th grade   1.63  5.347769
## 422              15 years old   Male              10th grade   1.83  6.003937
## 423              15 years old   Male              10th grade   1.88  6.167979
## 424              16 years old   Male              11th grade   1.83  6.003937
## 425              16 years old   Male              11th grade   1.78  5.839895
## 426              15 years old Female              10th grade   1.63  5.347769
## 427              15 years old   Male              10th grade   1.68  5.511811
## 428              17 years old   Male              11th grade   1.70  5.577428
## 429              15 years old   Male              10th grade   1.73  5.675853
## 430     18 years old or older Female              11th grade   1.57  5.150919
## 431              15 years old   Male              10th grade   1.78  5.839895
## 432              17 years old   Male              11th grade   1.75  5.741470
## 433              17 years old   Male              11th grade   1.85  6.069554
## 434              15 years old   Male               9th grade   1.65  5.413386
## 435              16 years old   Male              10th grade   1.83  6.003937
## 436              16 years old Female              11th grade   1.78  5.839895
## 437              16 years old   Male              11th grade   1.80  5.905512
## 438              15 years old   Male              10th grade   1.88  6.167979
## 439              17 years old Female              11th grade   1.63  5.347769
## 440              17 years old   Male              12th grade   1.80  5.905512
## 441              15 years old Female               9th grade   1.75  5.741470
## 442              16 years old   Male              10th grade   1.70  5.577428
## 443              16 years old Female              11th grade     NA        NA
## 444              17 years old   Male              12th grade   1.83  6.003937
## 445              17 years old   Male              12th grade   1.83  6.003937
## 446              15 years old   Male              10th grade   1.75  5.741470
## 447              17 years old Female              11th grade   1.52  4.986877
## 448              17 years old   Male              12th grade   1.80  5.905512
## 449              14 years old Female               9th grade   1.45  4.757218
## 450              14 years old Female               9th grade   1.60  5.249344
## 451              15 years old Female               9th grade     NA        NA
## 452              15 years old Female               9th grade   1.60  5.249344
## 453              14 years old Female               9th grade   1.57  5.150919
## 454              14 years old Female               9th grade   1.65  5.413386
## 455              14 years old Female               9th grade   1.68  5.511811
## 456     18 years old or older   Male              12th grade   1.73  5.675853
## 457              17 years old   Male              12th grade   1.85  6.069554
## 458     18 years old or older   Male              12th grade   1.80  5.905512
## 459     18 years old or older   Male              12th grade   1.75  5.741470
## 460     18 years old or older   Male              12th grade   1.80  5.905512
## 461              17 years old Female              12th grade   1.60  5.249344
## 462              17 years old Female              12th grade   1.65  5.413386
## 463     18 years old or older Female              12th grade   1.70  5.577428
## 464     18 years old or older   Male              12th grade   1.68  5.511811
## 465     18 years old or older   Male              12th grade   1.83  6.003937
## 466     18 years old or older Female              12th grade   1.55  5.085302
## 467              17 years old   Male              12th grade   1.90  6.233596
## 468     18 years old or older   Male              12th grade   1.73  5.675853
## 469              17 years old Female              12th grade   1.57  5.150919
## 470              17 years old Female              12th grade   1.70  5.577428
## 471              15 years old   Male               9th grade   1.70  5.577428
## 472              14 years old   Male               9th grade   1.70  5.577428
## 473              14 years old Female               9th grade   1.55  5.085302
## 474              15 years old Female               9th grade   1.65  5.413386
## 475              15 years old Female               9th grade   1.60  5.249344
## 476              15 years old   Male               9th grade   1.85  6.069554
## 477              14 years old Female               9th grade   1.73  5.675853
## 478              14 years old   Male               9th grade   1.73  5.675853
## 479              14 years old Female               9th grade     NA        NA
## 480     18 years old or older   Male              12th grade     NA        NA
## 481              15 years old   Male               9th grade   1.80  5.905512
## 482              14 years old Female               9th grade   1.63  5.347769
## 483              14 years old   Male               9th grade   1.68  5.511811
## 484              15 years old Female               9th grade   1.55  5.085302
## 485              14 years old Female               9th grade   1.60  5.249344
## 486              15 years old   Male               9th grade   1.75  5.741470
## 487              15 years old Female               9th grade     NA        NA
## 488              15 years old   Male               9th grade   1.70  5.577428
## 489              15 years old   Male              10th grade   1.68  5.511811
## 490              16 years old   Male              10th grade   1.70  5.577428
## 491              15 years old Female              10th grade   1.63  5.347769
## 492              15 years old   Male              10th grade     NA        NA
## 493              16 years old   Male              10th grade   1.78  5.839895
## 494              16 years old Female              10th grade     NA        NA
## 495              16 years old Female              10th grade   1.63  5.347769
## 496              16 years old   Male              10th grade   1.68  5.511811
## 497              16 years old Female              10th grade   1.57  5.150919
## 498              16 years old Female              10th grade   1.65  5.413386
## 499              16 years old   Male              10th grade   1.88  6.167979
## 500              16 years old   Male              10th grade     NA        NA
## 501              16 years old Female              10th grade   1.57  5.150919
## 502              16 years old Female              10th grade     NA        NA
## 503              16 years old Female              10th grade   1.57  5.150919
## 504     18 years old or older Female              12th grade   1.57  5.150919
## 505              17 years old Female              12th grade   1.70  5.577428
## 506              14 years old   Male               9th grade   1.65  5.413386
## 507              17 years old Female              11th grade   1.73  5.675853
## 508              15 years old Female              10th grade   1.57  5.150919
## 509              17 years old Female              12th grade   1.73  5.675853
## 510              17 years old Female              12th grade   1.50  4.921260
## 511              16 years old   Male               9th grade   1.70  5.577428
## 512              16 years old Female              11th grade   1.50  4.921260
## 513     18 years old or older Female              12th grade   1.70  5.577428
## 514              17 years old   Male              12th grade   1.85  6.069554
## 515              15 years old   Male               9th grade   1.75  5.741470
## 516              16 years old Female              11th grade   1.78  5.839895
## 517              15 years old Female              10th grade   1.57  5.150919
## 518              17 years old   Male              12th grade   1.85  6.069554
## 519              17 years old Female              12th grade   1.73  5.675853
## 520              14 years old Female               9th grade   1.65  5.413386
## 521              17 years old Female              11th grade   1.70  5.577428
## 522              16 years old   Male              11th grade   1.88  6.167979
## 523              17 years old Female              11th grade   1.52  4.986877
## 524              15 years old   Male               9th grade     NA        NA
## 525              17 years old Female              11th grade   1.68  5.511811
## 526              16 years old   Male              11th grade   1.93  6.332021
## 527              17 years old   Male              11th grade   1.93  6.332021
## 528              15 years old Female              10th grade   1.63  5.347769
## 529              15 years old Female              10th grade   1.60  5.249344
## 530     18 years old or older Female              12th grade   1.52  4.986877
## 531              17 years old   Male              12th grade   1.75  5.741470
## 532              16 years old   Male              11th grade   1.80  5.905512
## 533              15 years old Female              10th grade   1.63  5.347769
## 534              15 years old   Male              10th grade     NA        NA
## 535              17 years old   Male              12th grade   1.78  5.839895
## 536              16 years old Female              11th grade   1.60  5.249344
## 537              15 years old   Male              10th grade   1.78  5.839895
## 538              16 years old   Male              11th grade   1.70  5.577428
## 539              17 years old Female              12th grade   1.63  5.347769
## 540              17 years old Female              12th grade   1.55  5.085302
## 541              14 years old   Male               9th grade   1.68  5.511811
## 542              16 years old   Male              10th grade   1.80  5.905512
## 543              15 years old   Male              10th grade   1.73  5.675853
## 544              17 years old Female              12th grade   1.60  5.249344
## 545     18 years old or older Female              12th grade   1.75  5.741470
## 546              17 years old Female              11th grade   1.57  5.150919
## 547              17 years old Female              12th grade   1.60  5.249344
## 548              17 years old Female              12th grade   1.65  5.413386
## 549     18 years old or older Female              12th grade   1.63  5.347769
## 550              17 years old Female              12th grade   1.57  5.150919
## 551                      <NA>   Male               9th grade     NA        NA
## 552              15 years old Female               9th grade   1.60  5.249344
## 553              17 years old Female              11th grade   1.65  5.413386
## 554              17 years old Female              12th grade   1.68  5.511811
## 555              15 years old Female               9th grade   1.60  5.249344
## 556              17 years old Female              11th grade   1.63  5.347769
## 557              16 years old   Male              11th grade   1.80  5.905512
## 558              16 years old Female              11th grade     NA        NA
## 559              16 years old   Male              12th grade   1.73  5.675853
## 560              17 years old Female              12th grade   1.45  4.757218
## 561              14 years old Female               9th grade   1.73  5.675853
## 562              17 years old   Male              11th grade     NA        NA
## 563              17 years old Female              11th grade   1.68  5.511811
## 564              15 years old   Male              10th grade     NA        NA
## 565              17 years old Female              12th grade   1.65  5.413386
## 566     18 years old or older Female              12th grade   1.65  5.413386
## 567              14 years old   Male               9th grade   1.75  5.741470
## 568              15 years old Female               9th grade   1.63  5.347769
## 569              16 years old Female              11th grade   1.57  5.150919
## 570              17 years old   Male              12th grade   1.78  5.839895
## 571              16 years old   Male              11th grade   1.75  5.741470
## 572              16 years old Female              11th grade     NA        NA
## 573              16 years old   Male              10th grade   1.83  6.003937
## 574              14 years old   Male              10th grade   1.70  5.577428
## 575     18 years old or older   Male              12th grade   1.83  6.003937
## 576              16 years old   Male              11th grade   1.85  6.069554
## 577              16 years old Female              11th grade     NA        NA
## 578              15 years old Female              10th grade   1.50  4.921260
## 579     18 years old or older   Male              12th grade   1.90  6.233596
## 580              17 years old Female              12th grade     NA        NA
## 581              15 years old Female               9th grade   1.68  5.511811
## 582              17 years old Female              11th grade   1.68  5.511811
## 583              16 years old   Male              11th grade   1.83  6.003937
## 584              16 years old Female              11th grade   1.70  5.577428
## 585              17 years old   Male              12th grade   1.73  5.675853
## 586              17 years old   Male              12th grade   1.75  5.741470
## 587              15 years old   Male               9th grade   1.70  5.577428
## 588              16 years old   Male              11th grade   1.90  6.233596
## 589              16 years old   Male              10th grade   1.73  5.675853
## 590     18 years old or older Female              12th grade   1.60  5.249344
## 591              17 years old   Male              12th grade   1.73  5.675853
## 592              15 years old Female               9th grade   1.57  5.150919
## 593              14 years old Female               9th grade   1.60  5.249344
## 594              15 years old Female              10th grade   1.60  5.249344
## 595              16 years old Female              10th grade   1.55  5.085302
## 596              17 years old   <NA>              12th grade     NA        NA
## 597              17 years old   Male              12th grade   1.73  5.675853
## 598              16 years old Female              11th grade   1.57  5.150919
## 599              16 years old   Male              10th grade   1.83  6.003937
## 600              16 years old Female              10th grade   1.73  5.675853
## 601              17 years old   Male              12th grade   1.85  6.069554
## 602              17 years old Female              12th grade   1.52  4.986877
## 603              14 years old Female               9th grade   1.60  5.249344
## 604              16 years old Female              11th grade   1.50  4.921260
## 605              14 years old   Male               9th grade     NA        NA
## 606              14 years old Female               9th grade   1.57  5.150919
## 607              15 years old Female              10th grade   1.57  5.150919
## 608              16 years old   Male              10th grade   1.78  5.839895
## 609              17 years old   Male              12th grade   1.75  5.741470
## 610              15 years old Female               9th grade   1.55  5.085302
## 611              14 years old Female               9th grade   1.60  5.249344
## 612              16 years old   Male              11th grade   1.75  5.741470
## 613     18 years old or older Female              12th grade     NA        NA
## 614     18 years old or older   Male              12th grade   1.80  5.905512
## 615              15 years old   Male               9th grade   1.68  5.511811
## 616              14 years old   Male               9th grade     NA        NA
## 617              16 years old   Male              11th grade   1.83  6.003937
## 618              14 years old Female               9th grade   1.65  5.413386
## 619              17 years old Female              11th grade   1.68  5.511811
## 620              17 years old Female              11th grade   1.55  5.085302
## 621              16 years old Female              11th grade   1.60  5.249344
## 622              16 years old   Male              10th grade   1.80  5.905512
## 623              16 years old   Male              11th grade   1.78  5.839895
## 624              16 years old Female              10th grade     NA        NA
## 625                      <NA> Female              11th grade     NA        NA
## 626              14 years old Female               9th grade   1.63  5.347769
## 627              15 years old   Male              10th grade   1.63  5.347769
## 628              16 years old   Male              11th grade   1.83  6.003937
## 629              16 years old   Male              11th grade   1.78  5.839895
## 630              16 years old Female              11th grade   1.75  5.741470
## 631              14 years old   Male               9th grade   1.68  5.511811
## 632              15 years old Female              10th grade   1.63  5.347769
## 633              17 years old Female              11th grade   1.75  5.741470
## 634              17 years old   Male              11th grade   1.75  5.741470
## 635              17 years old Female              11th grade     NA        NA
## 636              15 years old Female               9th grade   1.63  5.347769
## 637              16 years old Female              11th grade   1.63  5.347769
## 638              17 years old Female              11th grade   1.52  4.986877
## 639              15 years old Female              10th grade   1.50  4.921260
## 640              16 years old Female              11th grade   1.50  4.921260
## 641              14 years old   Male               9th grade   1.90  6.233596
## 642              16 years old Female              10th grade   1.50  4.921260
## 643              16 years old Female              11th grade   1.60  5.249344
## 644              16 years old Female              10th grade   1.57  5.150919
## 645              17 years old   Male              11th grade   1.85  6.069554
## 646              16 years old   Male              11th grade   1.88  6.167979
## 647              16 years old Female              11th grade   1.70  5.577428
## 648              16 years old Female              11th grade   1.70  5.577428
## 649              15 years old   Male              10th grade   1.80  5.905512
## 650              17 years old   Male              11th grade   1.75  5.741470
## 651              17 years old   Male              11th grade   1.75  5.741470
## 652              14 years old   Male               9th grade   1.83  6.003937
## 653              16 years old   Male              10th grade   1.75  5.741470
## 654              16 years old Female              11th grade   1.70  5.577428
## 655              16 years old Female              11th grade   1.65  5.413386
## 656              14 years old   Male               9th grade   1.73  5.675853
## 657              15 years old Female              10th grade   1.65  5.413386
## 658              17 years old   <NA>              11th grade     NA        NA
## 659              16 years old   Male              11th grade   1.68  5.511811
## 660              14 years old   Male               9th grade   1.68  5.511811
## 661              16 years old   Male              10th grade     NA        NA
## 662              16 years old Female              11th grade   1.63  5.347769
## 663              16 years old Female              11th grade   1.65  5.413386
## 664              14 years old   Male               9th grade   1.73  5.675853
## 665              15 years old Female              10th grade   1.63  5.347769
## 666              17 years old   Male              11th grade   1.78  5.839895
## 667              16 years old   Male              11th grade   1.70  5.577428
## 668              15 years old   Male              10th grade   1.65  5.413386
## 669              16 years old   Male              11th grade   1.90  6.233596
## 670              16 years old   Male              10th grade   1.80  5.905512
## 671              16 years old Female              11th grade   1.70  5.577428
## 672              16 years old Female              11th grade   1.65  5.413386
## 673              15 years old Female               9th grade   1.63  5.347769
## 674              15 years old   Male              10th grade   1.80  5.905512
## 675              17 years old   Male              11th grade   1.83  6.003937
## 676              16 years old   Male              11th grade   1.78  5.839895
## 677              16 years old Female              11th grade   1.60  5.249344
## 678              14 years old Female               9th grade   1.68  5.511811
## 679              16 years old   Male              11th grade   1.78  5.839895
## 680              15 years old   Male              10th grade   1.80  5.905512
## 681              16 years old Female              11th grade   1.60  5.249344
## 682              15 years old Female               9th grade   1.63  5.347769
## 683              15 years old Female              10th grade   1.70  5.577428
## 684              16 years old Female              11th grade   1.73  5.675853
## 685              16 years old Female              11th grade   1.68  5.511811
## 686              16 years old   Male              10th grade   1.68  5.511811
## 687              16 years old Female              11th grade   1.63  5.347769
## 688              16 years old Female              10th grade   1.68  5.511811
## 689              16 years old Female              11th grade   1.65  5.413386
## 690              15 years old   Male               9th grade   1.68  5.511811
## 691              16 years old Female              10th grade     NA        NA
## 692              16 years old   Male              11th grade     NA        NA
## 693              16 years old Female              11th grade   1.68  5.511811
## 694              15 years old Female              10th grade   1.63  5.347769
## 695              17 years old Female              12th grade     NA        NA
## 696              16 years old   Male              11th grade   1.80  5.905512
## 697              16 years old Female              11th grade   1.63  5.347769
## 698              15 years old   Male              10th grade   1.88  6.167979
## 699              17 years old   Male              11th grade   1.83  6.003937
## 700              17 years old Female              11th grade   1.68  5.511811
## 701              15 years old Female              10th grade   1.75  5.741470
## 702              16 years old   Male              11th grade   1.75  5.741470
## 703              17 years old Female              11th grade   1.50  4.921260
## 704              15 years old Female              10th grade   1.60  5.249344
## 705              16 years old Female              11th grade   1.73  5.675853
## 706              15 years old Female               9th grade   1.63  5.347769
## 707              15 years old   Male              10th grade   1.80  5.905512
## 708              16 years old   Male              11th grade   1.83  6.003937
## 709              17 years old   Male              11th grade   1.78  5.839895
## 710              15 years old   Male              10th grade   1.68  5.511811
## 711              16 years old Female              11th grade   1.60  5.249344
## 712              17 years old   Male              11th grade   1.75  5.741470
## 713              16 years old Female              11th grade   1.57  5.150919
## 714              16 years old   Male              10th grade   1.73  5.675853
## 715              16 years old   Male              11th grade   1.88  6.167979
## 716              16 years old Female              10th grade   1.55  5.085302
## 717              17 years old   Male Ungraded or other grade   1.50  4.921260
## 718              16 years old Female              11th grade   1.52  4.986877
## 719              15 years old   Male               9th grade   1.73  5.675853
## 720              16 years old   Male              10th grade   1.78  5.839895
## 721              16 years old Female              11th grade   1.52  4.986877
## 722              15 years old   Male              10th grade   1.63  5.347769
## 723              17 years old   Male              11th grade   1.75  5.741470
## 724              15 years old Female                    <NA>   1.55  5.085302
## 725              16 years old Female              10th grade   1.60  5.249344
## 726              16 years old Female              11th grade   1.57  5.150919
## 727              15 years old Female              10th grade   1.63  5.347769
## 728              15 years old Female               9th grade   1.47  4.822835
## 729              15 years old   Male              10th grade   1.75  5.741470
## 730              17 years old   Male              11th grade   1.85  6.069554
## 731              16 years old   Male              10th grade   1.88  6.167979
## 732              16 years old Female              11th grade   1.68  5.511811
## 733              15 years old Female               9th grade   1.63  5.347769
## 734              15 years old Female              10th grade     NA        NA
## 735              15 years old Female              10th grade   1.65  5.413386
## 736              16 years old Female              11th grade   1.63  5.347769
## 737              15 years old   Male              10th grade   1.60  5.249344
## 738              16 years old   Male              11th grade   1.73  5.675853
## 739     18 years old or older Female Ungraded or other grade     NA        NA
## 740              15 years old   Male              10th grade   1.90  6.233596
## 741              15 years old   Male              10th grade   1.73  5.675853
## 742              17 years old Female              11th grade     NA        NA
## 743              15 years old   Male              10th grade   1.70  5.577428
## 744              17 years old   Male              11th grade   1.83  6.003937
## 745              17 years old Female              12th grade   1.63  5.347769
## 746     18 years old or older Female              12th grade   1.60  5.249344
## 747              17 years old Female              12th grade   1.57  5.150919
## 748     18 years old or older Female              12th grade   1.63  5.347769
## 749              17 years old   Male              12th grade     NA        NA
## 750              17 years old   Male              12th grade   1.75  5.741470
## 751     18 years old or older   Male              12th grade   1.78  5.839895
## 752              17 years old Female              12th grade   1.60  5.249344
## 753     18 years old or older   Male              12th grade   1.78  5.839895
## 754              17 years old Female              12th grade   1.63  5.347769
## 755     18 years old or older   Male              12th grade   1.88  6.167979
## 756              17 years old   Male              12th grade   1.65  5.413386
## 757              17 years old Female              12th grade     NA        NA
## 758     18 years old or older   Male              12th grade   1.73  5.675853
## 759     18 years old or older   Male              12th grade   1.85  6.069554
## 760     18 years old or older Female              12th grade   1.65  5.413386
## 761     18 years old or older   Male              12th grade   1.88  6.167979
## 762              16 years old Female              12th grade   1.57  5.150919
## 763              17 years old   Male              12th grade   1.80  5.905512
## 764              17 years old   Male              12th grade   1.73  5.675853
## 765              17 years old   Male              12th grade   1.88  6.167979
## 766     18 years old or older Female              12th grade   1.63  5.347769
## 767              17 years old Female              12th grade   1.63  5.347769
## 768     18 years old or older   Male              12th grade   1.85  6.069554
## 769     18 years old or older   Male              12th grade   1.80  5.905512
## 770     18 years old or older   Male              12th grade   1.83  6.003937
## 771              17 years old   Male              12th grade   1.83  6.003937
## 772              17 years old Female              12th grade   1.63  5.347769
## 773              17 years old Female              12th grade   1.65  5.413386
## 774              17 years old Female              12th grade   1.60  5.249344
## 775              17 years old   Male              12th grade   1.60  5.249344
## 776     18 years old or older   Male              12th grade   1.75  5.741470
## 777              17 years old Female              12th grade   1.68  5.511811
## 778              17 years old Female              12th grade   1.55  5.085302
## 779              17 years old   Male              12th grade   1.83  6.003937
## 780              17 years old Female              12th grade   1.70  5.577428
## 781              15 years old Female               9th grade     NA        NA
## 782     18 years old or older Female              12th grade     NA        NA
## 783              17 years old Female                    <NA>     NA        NA
## 784     18 years old or older Female              12th grade     NA        NA
## 785              14 years old   Male               9th grade     NA        NA
## 786              15 years old Female               9th grade     NA        NA
## 787              16 years old Female                    <NA>     NA        NA
## 788              17 years old Female              12th grade     NA        NA
## 789     18 years old or older Female              12th grade     NA        NA
## 790              16 years old   Male                    <NA>     NA        NA
## 791              16 years old   Male                    <NA>     NA        NA
## 792     18 years old or older Female              12th grade     NA        NA
## 793              16 years old Female                    <NA>     NA        NA
## 794              15 years old Female               9th grade     NA        NA
## 795              15 years old Female               9th grade     NA        NA
## 796              17 years old   Male                    <NA>     NA        NA
## 797              16 years old Female                    <NA>     NA        NA
## 798              16 years old   Male                    <NA>     NA        NA
## 799              16 years old   Male                    <NA>     NA        NA
## 800              16 years old Female                    <NA>     NA        NA
## 801              17 years old   Male              12th grade     NA        NA
## 802     18 years old or older Female              12th grade     NA        NA
## 803              15 years old Female               9th grade     NA        NA
## 804              15 years old Female               9th grade     NA        NA
## 805              17 years old Female                    <NA>     NA        NA
## 806              17 years old Female              12th grade     NA        NA
## 807     18 years old or older Female              12th grade     NA        NA
## 808              17 years old Female              12th grade     NA        NA
## 809              15 years old   <NA>               9th grade     NA        NA
## 810              17 years old Female              12th grade   1.60  5.249344
## 811              17 years old   Male              12th grade   1.78  5.839895
## 812              17 years old Female              12th grade   1.57  5.150919
## 813              17 years old   Male              12th grade   1.73  5.675853
## 814     18 years old or older   Male              12th grade   1.80  5.905512
## 815              17 years old Female              12th grade   1.63  5.347769
## 816              15 years old   Male               9th grade   1.83  6.003937
## 817              15 years old   Male               9th grade   1.78  5.839895
## 818              16 years old   Male              11th grade   1.70  5.577428
## 819              17 years old Female              11th grade   1.68  5.511811
## 820              17 years old   Male              12th grade   1.83  6.003937
## 821              14 years old Female               9th grade   1.70  5.577428
## 822              14 years old   Male               9th grade   1.73  5.675853
## 823              16 years old Female              11th grade   1.57  5.150919
## 824              17 years old   Male              12th grade   1.70  5.577428
## 825              14 years old Female               9th grade   1.65  5.413386
## 826              16 years old Female              11th grade   1.65  5.413386
## 827              15 years old   Male               9th grade   1.80  5.905512
## 828              17 years old Female              11th grade   1.55  5.085302
## 829              17 years old   Male              11th grade   1.80  5.905512
## 830     18 years old or older Female              12th grade   1.73  5.675853
## 831              16 years old Female              11th grade   1.57  5.150919
## 832              17 years old   Male              12th grade   1.83  6.003937
## 833              15 years old   Male               9th grade   1.88  6.167979
## 834              17 years old   Male              11th grade     NA        NA
## 835              15 years old Female               9th grade   1.55  5.085302
## 836              15 years old   Male               9th grade   1.75  5.741470
## 837              17 years old Female              11th grade   1.57  5.150919
## 838              15 years old   Male               9th grade   1.65  5.413386
## 839              16 years old   Male              11th grade     NA        NA
## 840              15 years old   Male               9th grade   1.73  5.675853
## 841              15 years old   Male               9th grade   1.57  5.150919
## 842              16 years old Female              11th grade     NA        NA
## 843     18 years old or older   Male              12th grade   1.78  5.839895
## 844              16 years old   Male              11th grade   1.78  5.839895
## 845              15 years old   Male               9th grade   1.65  5.413386
## 846              16 years old Female              11th grade   1.65  5.413386
## 847              17 years old   Male              12th grade   1.85  6.069554
## 848     18 years old or older   Male              12th grade   1.73  5.675853
## 849              14 years old Female               9th grade     NA        NA
## 850              17 years old Female              12th grade   1.68  5.511811
## 851              15 years old Female              10th grade   1.70  5.577428
## 852              14 years old   Male               9th grade   1.78  5.839895
## 853              16 years old   Male              11th grade   1.83  6.003937
## 854              15 years old Female               9th grade   1.57  5.150919
## 855              17 years old   Male              11th grade   1.85  6.069554
## 856              17 years old   Male              12th grade   1.73  5.675853
## 857              15 years old Female              10th grade   1.32  4.330709
## 858              15 years old Female               9th grade   1.70  5.577428
## 859              16 years old   Male              11th grade   1.78  5.839895
## 860              17 years old   Male              12th grade   1.55  5.085302
## 861              15 years old Female               9th grade   1.73  5.675853
## 862              17 years old Female              11th grade   1.78  5.839895
## 863     18 years old or older   Male              12th grade   1.65  5.413386
## 864              14 years old   Male               9th grade   1.78  5.839895
## 865     18 years old or older Female              12th grade   1.65  5.413386
## 866              15 years old Female              10th grade   1.52  4.986877
## 867              14 years old Female               9th grade   1.60  5.249344
## 868              17 years old   Male              11th grade   1.80  5.905512
## 869              17 years old   Male              12th grade   1.65  5.413386
## 870              16 years old Female              10th grade   1.55  5.085302
## 871              14 years old Female               9th grade   1.68  5.511811
## 872              16 years old Female              11th grade   1.73  5.675853
## 873     18 years old or older Female              12th grade     NA        NA
## 874              16 years old Female              10th grade   1.70  5.577428
## 875              14 years old   Male               9th grade     NA        NA
## 876              16 years old   Male              11th grade   1.73  5.675853
## 877              17 years old   Male              12th grade   1.88  6.167979
## 878              16 years old   Male              10th grade   1.68  5.511811
## 879              14 years old   Male               9th grade   1.70  5.577428
## 880              16 years old   Male              11th grade   1.68  5.511811
## 881              14 years old Female               9th grade     NA        NA
## 882              17 years old   Male              11th grade   1.78  5.839895
## 883              17 years old   Male              12th grade   1.73  5.675853
## 884              15 years old   Male              10th grade   1.73  5.675853
## 885              15 years old   Male               9th grade   1.83  6.003937
## 886              16 years old   Male              11th grade     NA        NA
## 887              17 years old Female              12th grade   1.70  5.577428
## 888              16 years old   Male              10th grade   1.75  5.741470
## 889              14 years old   Male               9th grade   1.70  5.577428
## 890              17 years old Female              12th grade   1.55  5.085302
## 891              14 years old   Male               9th grade   1.70  5.577428
## 892              17 years old   Male              11th grade     NA        NA
## 893              17 years old Female              12th grade   1.63  5.347769
## 894              15 years old Female              10th grade     NA        NA
## 895              14 years old   Male               9th grade   1.50  4.921260
## 896              16 years old Female              11th grade     NA        NA
## 897              17 years old   Male              12th grade   1.68  5.511811
## 898              15 years old   Male              10th grade   1.55  5.085302
## 899              14 years old   <NA>               9th grade     NA        NA
## 900              16 years old Female              11th grade   1.57  5.150919
## 901              17 years old   Male              12th grade   1.60  5.249344
## 902              15 years old Female              10th grade   1.70  5.577428
## 903              14 years old Female               9th grade   1.52  4.986877
## 904              16 years old Female              11th grade   1.60  5.249344
## 905     18 years old or older   Male              12th grade   1.78  5.839895
## 906              15 years old Female              10th grade     NA        NA
## 907              14 years old   Male               9th grade   1.70  5.577428
## 908     18 years old or older   Male              12th grade   1.90  6.233596
## 909              15 years old   Male              10th grade   1.68  5.511811
## 910              14 years old   Male               9th grade   1.75  5.741470
## 911              14 years old Female               9th grade   1.60  5.249344
## 912     18 years old or older Female              12th grade   1.65  5.413386
## 913              16 years old Female              10th grade   1.50  4.921260
## 914              15 years old Female               9th grade   1.63  5.347769
## 915              16 years old   Male              10th grade   1.68  5.511811
## 916              15 years old Female               9th grade   1.70  5.577428
## 917              17 years old   Male              12th grade   1.83  6.003937
## 918              16 years old Female              10th grade   1.60  5.249344
## 919              14 years old   Male               9th grade   1.75  5.741470
## 920              17 years old   Male              12th grade     NA        NA
## 921              15 years old   Male              10th grade   1.65  5.413386
## 922              14 years old   Male               9th grade   1.80  5.905512
## 923              14 years old   Male               9th grade   1.65  5.413386
## 924     18 years old or older   Male              12th grade   1.75  5.741470
## 925              15 years old   Male              10th grade   1.80  5.905512
## 926              15 years old   Male               9th grade   1.65  5.413386
## 927     18 years old or older Female              12th grade   1.50  4.921260
## 928              16 years old   Male              10th grade     NA        NA
## 929              14 years old   Male               9th grade   1.78  5.839895
## 930              16 years old   Male              11th grade   1.68  5.511811
## 931              17 years old Female              12th grade     NA        NA
## 932              15 years old Female              10th grade   1.65  5.413386
## 933              17 years old Female              12th grade   1.78  5.839895
## 934              14 years old Female               9th grade   1.70  5.577428
## 935              15 years old Female              10th grade     NA        NA
## 936              16 years old   Male              11th grade   1.75  5.741470
## 937                      <NA>   Male              11th grade     NA        NA
## 938              17 years old   Male              12th grade   1.78  5.839895
## 939     18 years old or older   Male              12th grade   1.65  5.413386
## 940              16 years old   Male              11th grade   1.73  5.675853
## 941              16 years old Female              11th grade   1.52  4.986877
## 942              16 years old Female              11th grade   1.55  5.085302
## 943              17 years old   Male              12th grade   1.75  5.741470
## 944     18 years old or older   Male              12th grade   1.73  5.675853
## 945              16 years old   Male              11th grade   1.70  5.577428
## 946              17 years old   Male              12th grade     NA        NA
## 947              17 years old Female              12th grade   1.57  5.150919
## 948              17 years old   Male              12th grade   1.78  5.839895
## 949              16 years old   Male              11th grade   1.73  5.675853
## 950              17 years old Female              12th grade   1.65  5.413386
## 951     18 years old or older Female              12th grade     NA        NA
## 952              17 years old Female              11th grade   1.55  5.085302
## 953              17 years old Female              12th grade   1.52  4.986877
## 954              16 years old   Male              11th grade   1.80  5.905512
## 955              16 years old   Male              11th grade   1.78  5.839895
## 956              16 years old Female              11th grade   1.65  5.413386
## 957              16 years old   Male              11th grade   1.65  5.413386
## 958              16 years old   Male              11th grade   1.78  5.839895
## 959              16 years old   Male              11th grade   1.73  5.675853
## 960              17 years old   Male              12th grade   1.68  5.511811
## 961     18 years old or older Female              12th grade   1.57  5.150919
## 962              17 years old Female              11th grade   1.60  5.249344
## 963              17 years old Female              12th grade   1.57  5.150919
## 964              16 years old   Male              11th grade   1.80  5.905512
## 965              16 years old Female              11th grade   1.60  5.249344
## 966              17 years old   Male              12th grade   1.73  5.675853
## 967     18 years old or older Female              12th grade   1.52  4.986877
## 968              17 years old   Male              12th grade   1.73  5.675853
## 969     18 years old or older   Male              12th grade   1.68  5.511811
## 970              16 years old   Male              11th grade   1.75  5.741470
## 971              17 years old   Male              11th grade   1.78  5.839895
## 972              16 years old   Male              11th grade   1.78  5.839895
## 973              17 years old Female              12th grade     NA        NA
## 974              16 years old Female              11th grade     NA        NA
## 975              17 years old Female              12th grade   1.73  5.675853
## 976              17 years old Female              12th grade   1.55  5.085302
## 977     18 years old or older   Male              12th grade   1.70  5.577428
## 978              15 years old   Male               9th grade   1.73  5.675853
## 979              16 years old Female              10th grade   1.55  5.085302
## 980              16 years old Female              11th grade   1.70  5.577428
## 981              17 years old Female              12th grade   1.57  5.150919
## 982              15 years old   Male               9th grade   1.68  5.511811
## 983              15 years old Female              10th grade   1.50  4.921260
## 984              16 years old   Male              11th grade   1.78  5.839895
## 985              17 years old   Male              12th grade   1.80  5.905512
## 986              14 years old   Male               9th grade   1.80  5.905512
## 987              16 years old   Male              10th grade   1.80  5.905512
## 988              16 years old   Male              11th grade   1.70  5.577428
## 989              17 years old Female              12th grade   1.60  5.249344
## 990              14 years old   Male               9th grade   1.78  5.839895
## 991              15 years old   Male              10th grade   1.83  6.003937
## 992              16 years old Female              11th grade   1.75  5.741470
## 993     18 years old or older   Male              12th grade   1.88  6.167979
## 994              15 years old Female               9th grade   1.65  5.413386
## 995              17 years old Female              11th grade   1.57  5.150919
## 996              17 years old Female              12th grade     NA        NA
## 997              14 years old   Male               9th grade   1.65  5.413386
## 998              15 years old Female              10th grade   1.63  5.347769
## 999              16 years old Female              11th grade     NA        NA
## 1000             17 years old Female              12th grade   1.52  4.986877
## 1001             15 years old   Male               9th grade     NA        NA
## 1002             15 years old Female              10th grade   1.63  5.347769
## 1003             17 years old   Male              11th grade   1.68  5.511811
## 1004             17 years old Female              12th grade     NA        NA
## 1005             14 years old Female               9th grade   1.70  5.577428
## 1006             15 years old   Male              10th grade   1.70  5.577428
## 1007             16 years old   Male              11th grade   1.73  5.675853
## 1008             17 years old Female              12th grade   1.47  4.822835
## 1009             14 years old Female               9th grade   1.57  5.150919
## 1010             15 years old   Male              10th grade   1.83  6.003937
## 1011             16 years old Female              11th grade     NA        NA
## 1012             17 years old Female              12th grade   1.55  5.085302
## 1013             14 years old Female               9th grade   1.57  5.150919
## 1014             16 years old Female              10th grade   1.50  4.921260
## 1015             17 years old   Male              11th grade     NA        NA
## 1016             17 years old Female              12th grade     NA        NA
## 1017             14 years old   Male               9th grade   1.68  5.511811
## 1018             16 years old Female              10th grade   1.63  5.347769
## 1019             16 years old Female              11th grade   1.52  4.986877
## 1020             17 years old   Male              12th grade   1.73  5.675853
## 1021             14 years old   Male               9th grade   1.60  5.249344
## 1022             15 years old Female              10th grade   1.65  5.413386
## 1023             16 years old Female              11th grade   1.68  5.511811
## 1024             17 years old Female              12th grade   1.65  5.413386
## 1025             14 years old Female               9th grade     NA        NA
## 1026             16 years old   Male              11th grade   1.68  5.511811
## 1027             17 years old   Male              12th grade   1.70  5.577428
## 1028             15 years old   Male               9th grade   1.73  5.675853
## 1029             15 years old   Male              10th grade   1.83  6.003937
## 1030             16 years old Female              11th grade     NA        NA
## 1031             16 years old   Male              11th grade   1.73  5.675853
## 1032    18 years old or older Female              12th grade   1.57  5.150919
## 1033             15 years old   Male              10th grade   1.68  5.511811
## 1034             16 years old Female              11th grade   1.60  5.249344
## 1035             17 years old   Male              12th grade   1.83  6.003937
## 1036             14 years old   Male               9th grade   1.70  5.577428
## 1037             15 years old Female              10th grade   1.57  5.150919
## 1038             16 years old Female              11th grade   1.55  5.085302
## 1039             17 years old   Male              12th grade   1.65  5.413386
## 1040             14 years old   Male               9th grade   1.73  5.675853
## 1041             15 years old Female              10th grade   1.57  5.150919
## 1042             16 years old Female              11th grade   1.60  5.249344
## 1043             17 years old   Male              12th grade   1.80  5.905512
## 1044             15 years old   Male               9th grade   1.83  6.003937
## 1045             15 years old Female              10th grade     NA        NA
## 1046             16 years old Female              11th grade     NA        NA
## 1047             17 years old   Male              12th grade   1.68  5.511811
## 1048             15 years old Female              10th grade     NA        NA
## 1049             15 years old   Male              10th grade   1.80  5.905512
## 1050             16 years old   Male              11th grade   1.73  5.675853
## 1051             14 years old Female               9th grade   1.65  5.413386
## 1052             16 years old   Male              10th grade   1.75  5.741470
## 1053             16 years old Female              11th grade   1.60  5.249344
## 1054             15 years old Female               9th grade   1.60  5.249344
## 1055             15 years old Female              10th grade     NA        NA
## 1056             16 years old Female              11th grade     NA        NA
## 1057             17 years old   Male              12th grade   1.78  5.839895
## 1058             14 years old   Male               9th grade   1.60  5.249344
## 1059             15 years old Female              10th grade   1.50  4.921260
## 1060             16 years old Female              11th grade   1.63  5.347769
## 1061             17 years old Female              12th grade   1.55  5.085302
## 1062             14 years old   Male               9th grade     NA        NA
## 1063             15 years old   Male              10th grade   1.83  6.003937
## 1064             16 years old Female              11th grade   1.60  5.249344
## 1065             17 years old   Male              12th grade   1.75  5.741470
## 1066             15 years old   Male               9th grade   1.73  5.675853
## 1067             16 years old   Male              10th grade   1.65  5.413386
## 1068             16 years old   Male              11th grade   1.68  5.511811
## 1069             17 years old   Male              12th grade   1.83  6.003937
## 1070             15 years old Female               9th grade     NA        NA
## 1071             16 years old Female              11th grade   1.68  5.511811
## 1072             17 years old   Male              12th grade   1.78  5.839895
## 1073             15 years old Female               9th grade   1.60  5.249344
## 1074             15 years old   Male              10th grade   1.78  5.839895
## 1075             16 years old Female              11th grade     NA        NA
## 1076    18 years old or older Female              12th grade   1.52  4.986877
## 1077             15 years old   Male              10th grade   1.80  5.905512
## 1078             17 years old Female              11th grade   1.50  4.921260
## 1079    18 years old or older Female              12th grade   1.57  5.150919
## 1080             14 years old Female               9th grade   1.65  5.413386
## 1081             16 years old   Male              11th grade   1.80  5.905512
## 1082             17 years old   Male              12th grade   1.70  5.577428
## 1083             14 years old   Male               9th grade   1.73  5.675853
## 1084             15 years old Female              10th grade   1.52  4.986877
## 1085             16 years old Female              11th grade   1.50  4.921260
## 1086    18 years old or older   Male              12th grade   1.63  5.347769
## 1087             15 years old Female              10th grade   1.50  4.921260
## 1088             15 years old Female               9th grade   1.68  5.511811
## 1089             14 years old Female               9th grade     NA        NA
## 1090             14 years old Female               9th grade     NA        NA
## 1091             17 years old   Male              12th grade     NA        NA
## 1092             17 years old   Male              12th grade     NA        NA
## 1093    18 years old or older Female              12th grade     NA        NA
## 1094    18 years old or older Female              12th grade   1.68  5.511811
## 1095             14 years old   Male               9th grade   1.73  5.675853
## 1096             17 years old Female              11th grade   1.57  5.150919
## 1097             15 years old Female              10th grade   1.63  5.347769
## 1098             14 years old Female               9th grade   1.57  5.150919
## 1099             14 years old   Male               9th grade   1.73  5.675853
## 1100             15 years old Female              10th grade   1.63  5.347769
## 1101             17 years old   Male              12th grade   1.78  5.839895
## 1102             17 years old Female              12th grade   1.73  5.675853
## 1103             14 years old Female               9th grade   1.52  4.986877
## 1104             16 years old   Male              11th grade   1.63  5.347769
## 1105             15 years old Female              10th grade   1.60  5.249344
## 1106             15 years old Female               9th grade   1.63  5.347769
## 1107             15 years old   Male               9th grade   1.90  6.233596
## 1108             15 years old   Male              10th grade   1.78  5.839895
## 1109             17 years old   Male              12th grade   1.75  5.741470
## 1110             17 years old Female              12th grade   1.63  5.347769
## 1111             14 years old   Male               9th grade   1.80  5.905512
## 1112             16 years old   Male              11th grade   1.78  5.839895
## 1113             15 years old   Male              10th grade   1.68  5.511811
## 1114             15 years old   Male               9th grade   1.80  5.905512
## 1115             15 years old Female               9th grade   1.55  5.085302
## 1116             16 years old   Male              10th grade   1.78  5.839895
## 1117             17 years old Female              12th grade     NA        NA
## 1118    18 years old or older   Male              12th grade   1.78  5.839895
## 1119             13 years old   Male               9th grade   1.68  5.511811
## 1120             16 years old Female              11th grade   1.52  4.986877
## 1121             15 years old   Male              10th grade   1.73  5.675853
## 1122             15 years old Female               9th grade     NA        NA
## 1123             15 years old   Male               9th grade   1.68  5.511811
## 1124             16 years old Female              10th grade   1.57  5.150919
## 1125             17 years old Female              12th grade   1.63  5.347769
## 1126             17 years old Female              12th grade   1.68  5.511811
## 1127             14 years old   Male               9th grade   1.78  5.839895
## 1128             16 years old   Male              10th grade   1.80  5.905512
## 1129             15 years old Female               9th grade   1.73  5.675853
## 1130             16 years old   Male              10th grade   1.70  5.577428
## 1131             17 years old Female              12th grade   1.80  5.905512
## 1132             17 years old Female              12th grade   1.68  5.511811
## 1133             15 years old Female               9th grade     NA        NA
## 1134             16 years old Female              10th grade   1.68  5.511811
## 1135             14 years old Female               9th grade   1.60  5.249344
## 1136             15 years old   Male               9th grade   1.83  6.003937
## 1137             15 years old   Male              10th grade   1.73  5.675853
## 1138             17 years old   Male              12th grade   1.68  5.511811
## 1139             17 years old Female              12th grade   1.70  5.577428
## 1140             15 years old   Male               9th grade   1.88  6.167979
## 1141             16 years old Female              11th grade   1.63  5.347769
## 1142             16 years old   Male              10th grade   1.78  5.839895
## 1143             14 years old   Male               9th grade   1.68  5.511811
## 1144             15 years old Female               9th grade   1.55  5.085302
## 1145             16 years old Female              10th grade   1.68  5.511811
## 1146             17 years old Female              12th grade   1.57  5.150919
## 1147             17 years old   Male              12th grade   1.80  5.905512
## 1148             15 years old   Male               9th grade   1.60  5.249344
## 1149             16 years old Female              11th grade   1.65  5.413386
## 1150             16 years old   Male              10th grade   1.85  6.069554
## 1151             14 years old Female               9th grade     NA        NA
## 1152             15 years old Female               9th grade     NA        NA
## 1153             15 years old Female              10th grade   1.60  5.249344
## 1154             17 years old   Male              12th grade   1.88  6.167979
## 1155             17 years old   Male              12th grade   1.85  6.069554
## 1156             15 years old   Male               9th grade   1.70  5.577428
## 1157             16 years old   Male              11th grade   1.83  6.003937
## 1158             15 years old Female              10th grade     NA        NA
## 1159             15 years old   Male              10th grade   1.68  5.511811
## 1160             17 years old Female              12th grade   1.55  5.085302
## 1161             14 years old Female               9th grade   1.60  5.249344
## 1162             17 years old Female              11th grade   1.65  5.413386
## 1163             15 years old   Male              10th grade   1.63  5.347769
## 1164             15 years old   Male              10th grade   1.73  5.675853
## 1165             17 years old   Male              12th grade   1.80  5.905512
## 1166    18 years old or older Female              12th grade   1.68  5.511811
## 1167             17 years old   Male              12th grade   1.78  5.839895
## 1168             15 years old   Male              10th grade   1.73  5.675853
## 1169    18 years old or older   Male              12th grade   1.78  5.839895
## 1170             17 years old Female              12th grade     NA        NA
## 1171             15 years old   Male               9th grade   1.85  6.069554
## 1172             17 years old Female              12th grade   1.57  5.150919
## 1173             15 years old Female              10th grade   1.57  5.150919
## 1174             14 years old   Male               9th grade   1.75  5.741470
## 1175             15 years old   Male               9th grade   1.83  6.003937
## 1176             15 years old Female              10th grade   1.68  5.511811
## 1177             17 years old Female              12th grade   1.70  5.577428
## 1178    18 years old or older Female              12th grade   1.65  5.413386
## 1179             15 years old   Male               9th grade   1.80  5.905512
## 1180             16 years old Female              11th grade   1.63  5.347769
## 1181             15 years old   Male              10th grade   1.75  5.741470
## 1182             14 years old   Male               9th grade   1.70  5.577428
## 1183             15 years old Female               9th grade   1.65  5.413386
## 1184             15 years old Female              10th grade     NA        NA
## 1185             17 years old   Male              12th grade   1.73  5.675853
## 1186             17 years old   Male              12th grade   1.70  5.577428
## 1187             14 years old   Male               9th grade     NA        NA
## 1188             17 years old Female              11th grade   1.68  5.511811
## 1189                     <NA> Female              10th grade     NA        NA
## 1190             15 years old   Male               9th grade   1.70  5.577428
## 1191             14 years old   Male               9th grade   1.70  5.577428
## 1192             16 years old   Male              10th grade   1.65  5.413386
## 1193             17 years old   Male              12th grade   1.80  5.905512
## 1194             16 years old Female              12th grade   1.73  5.675853
## 1195             16 years old   Male               9th grade     NA        NA
## 1196             16 years old Female              11th grade   1.65  5.413386
## 1197             15 years old   Male              11th grade   1.68  5.511811
## 1198             14 years old   Male               9th grade   1.78  5.839895
## 1199             16 years old Female              12th grade   1.57  5.150919
## 1200             17 years old Female              12th grade   1.52  4.986877
## 1201             15 years old Female               9th grade   1.55  5.085302
## 1202             17 years old   Male              11th grade   1.73  5.675853
## 1203             15 years old   Male              10th grade   1.83  6.003937
## 1204             15 years old Female               9th grade     NA        NA
## 1205             14 years old   Male               9th grade   1.88  6.167979
## 1206             16 years old   Male              10th grade   1.73  5.675853
## 1207             17 years old   Male              12th grade   1.93  6.332021
## 1208             17 years old Female              12th grade   1.60  5.249344
## 1209             16 years old   Male               9th grade   1.75  5.741470
## 1210             16 years old Female              11th grade   1.65  5.413386
## 1211  12 years old or younger Female Ungraded or other grade   1.42  4.658793
## 1212             15 years old   Male               9th grade   1.80  5.905512
## 1213             15 years old Female               9th grade   1.78  5.839895
## 1214             15 years old   Male              10th grade   1.63  5.347769
## 1215             17 years old Female              12th grade   1.73  5.675853
## 1216             17 years old Female              12th grade   1.57  5.150919
## 1217             15 years old Female               9th grade   1.60  5.249344
## 1218             16 years old   Male              11th grade   1.88  6.167979
## 1219             15 years old   <NA>              10th grade     NA        NA
## 1220             15 years old Female               9th grade   1.57  5.150919
## 1221             14 years old   Male               9th grade   1.75  5.741470
## 1222             16 years old   Male              10th grade   1.73  5.675853
## 1223             17 years old   Male              12th grade   1.65  5.413386
## 1224             17 years old   Male              12th grade   1.57  5.150919
## 1225             14 years old Female               9th grade   1.68  5.511811
## 1226             16 years old   Male              10th grade   1.65  5.413386
## 1227             15 years old   Male               9th grade   1.73  5.675853
## 1228             15 years old Female               9th grade   1.63  5.347769
## 1229             15 years old   Male              10th grade   1.63  5.347769
## 1230             17 years old Female              12th grade   1.68  5.511811
## 1231             17 years old Female              12th grade   1.55  5.085302
## 1232             14 years old Female               9th grade   1.60  5.249344
## 1233             16 years old Female              11th grade   1.60  5.249344
## 1234             15 years old   Male              10th grade   1.88  6.167979
## 1235             15 years old Female               9th grade     NA        NA
## 1236             14 years old   Male               9th grade   1.68  5.511811
## 1237             15 years old Female              10th grade   1.55  5.085302
## 1238             17 years old Female              12th grade   1.73  5.675853
## 1239    18 years old or older   Male              12th grade   1.75  5.741470
## 1240             14 years old   Male               9th grade   1.70  5.577428
## 1241             17 years old   Male              11th grade   1.70  5.577428
## 1242             15 years old   Male              10th grade   1.85  6.069554
## 1243             15 years old Female               9th grade   1.57  5.150919
## 1244             14 years old   Male               9th grade   1.63  5.347769
## 1245             15 years old   Male              10th grade   1.70  5.577428
## 1246    18 years old or older Female              12th grade   1.60  5.249344
## 1247             17 years old Female              12th grade   1.70  5.577428
## 1248             15 years old Female                    <NA>     NA        NA
## 1249             16 years old Female              11th grade   1.73  5.675853
## 1250             16 years old   Male              10th grade   1.83  6.003937
## 1251             14 years old Female               9th grade   1.65  5.413386
## 1252             17 years old Female              12th grade   1.57  5.150919
## 1253             17 years old   Male              12th grade   1.80  5.905512
## 1254             14 years old Female               9th grade   1.68  5.511811
## 1255             16 years old Female              11th grade   1.65  5.413386
## 1256             15 years old Female              10th grade   1.73  5.675853
## 1257             15 years old Female               9th grade   1.50  4.921260
## 1258             15 years old   Male              10th grade   1.88  6.167979
## 1259             15 years old   Male               9th grade   1.73  5.675853
## 1260             15 years old Female               9th grade   1.52  4.986877
## 1261             17 years old   Male              12th grade   1.70  5.577428
## 1262    18 years old or older Female              12th grade   1.65  5.413386
## 1263             15 years old Female               9th grade   1.57  5.150919
## 1264             15 years old   Male               9th grade   1.73  5.675853
## 1265             14 years old   Male               9th grade   1.85  6.069554
## 1266             15 years old   Male               9th grade   1.78  5.839895
## 1267             14 years old Female               9th grade   1.60  5.249344
## 1268             15 years old Female                    <NA>     NA        NA
## 1269             14 years old Female               9th grade   1.50  4.921260
## 1270             14 years old   Male               9th grade   1.80  5.905512
## 1271             14 years old Female               9th grade   1.63  5.347769
## 1272             17 years old Female              12th grade   1.63  5.347769
## 1273             17 years old   Male              11th grade   1.80  5.905512
## 1274             14 years old   Male               9th grade   1.60  5.249344
## 1275             17 years old Female              12th grade   1.65  5.413386
## 1276             17 years old   Male              11th grade   1.75  5.741470
## 1277             14 years old Female               9th grade   1.57  5.150919
## 1278             17 years old   Male              12th grade   1.85  6.069554
## 1279             16 years old Female              11th grade   1.52  4.986877
## 1280             15 years old   Male               9th grade   1.68  5.511811
## 1281             17 years old Female              12th grade   1.70  5.577428
## 1282             16 years old   Male              11th grade     NA        NA
## 1283             14 years old Female               9th grade   1.60  5.249344
## 1284             17 years old   Male              12th grade     NA        NA
## 1285             17 years old Female              11th grade     NA        NA
## 1286             14 years old Female               9th grade   1.55  5.085302
## 1287             17 years old Female              12th grade   1.63  5.347769
## 1288             16 years old Female              11th grade     NA        NA
## 1289             15 years old   Male               9th grade   1.78  5.839895
## 1290             17 years old   Male              12th grade   1.83  6.003937
## 1291             16 years old Female              11th grade   1.57  5.150919
## 1292             15 years old   Male               9th grade   1.75  5.741470
## 1293             15 years old   Male               9th grade   1.78  5.839895
## 1294             13 years old   Male               9th grade   1.83  6.003937
## 1295             17 years old   Male              12th grade   1.65  5.413386
## 1296             16 years old Female              11th grade   1.57  5.150919
## 1297             15 years old   Male               9th grade   1.68  5.511811
## 1298             14 years old Female               9th grade     NA        NA
## 1299             15 years old Female               9th grade   1.70  5.577428
## 1300             14 years old Female               9th grade   1.73  5.675853
## 1301             14 years old   Male               9th grade   1.65  5.413386
## 1302    18 years old or older   Male              12th grade   1.75  5.741470
## 1303             14 years old   Male               9th grade   1.70  5.577428
## 1304    18 years old or older   Male              12th grade   1.78  5.839895
## 1305             16 years old Female              11th grade   1.65  5.413386
## 1306             14 years old   Male               9th grade   1.83  6.003937
## 1307             17 years old Female              12th grade   1.65  5.413386
## 1308             16 years old   Male              11th grade   1.68  5.511811
## 1309             14 years old   Male               9th grade   1.60  5.249344
## 1310    18 years old or older Female              12th grade   1.63  5.347769
## 1311             16 years old Female              11th grade   1.50  4.921260
## 1312             14 years old Female               9th grade   1.55  5.085302
## 1313             17 years old Female              12th grade   1.60  5.249344
## 1314             16 years old Female              11th grade   1.75  5.741470
## 1315             14 years old Female               9th grade   1.55  5.085302
## 1316             17 years old Female              12th grade   1.57  5.150919
## 1317             17 years old   Male              11th grade     NA        NA
## 1318             15 years old   Male               9th grade   1.80  5.905512
## 1319             17 years old   Male              12th grade   1.73  5.675853
## 1320             16 years old Female              11th grade     NA        NA
## 1321             15 years old Female               9th grade   1.50  4.921260
## 1322             16 years old   Male              10th grade   1.78  5.839895
## 1323             17 years old   Male              11th grade   1.65  5.413386
## 1324             17 years old   Male              12th grade   1.75  5.741470
## 1325             16 years old   Male              11th grade   1.83  6.003937
## 1326             14 years old Female               9th grade   1.50  4.921260
## 1327             16 years old Female              10th grade   1.63  5.347769
## 1328             16 years old Female              10th grade   1.65  5.413386
## 1329             16 years old Female              11th grade   1.68  5.511811
## 1330    18 years old or older Female              12th grade   1.55  5.085302
## 1331             17 years old Female              11th grade     NA        NA
## 1332             15 years old   Male               9th grade     NA        NA
## 1333             16 years old   Male              10th grade   1.65  5.413386
## 1334             15 years old Female              10th grade   1.50  4.921260
## 1335             16 years old   Male              11th grade   1.73  5.675853
## 1336    18 years old or older Female              12th grade   1.52  4.986877
## 1337             17 years old Female              11th grade   1.65  5.413386
## 1338             15 years old   Male               9th grade   1.75  5.741470
## 1339             15 years old   Male              10th grade   1.73  5.675853
## 1340             16 years old   Male              10th grade   1.85  6.069554
## 1341             17 years old   Male              12th grade   1.83  6.003937
## 1342             17 years old Female              11th grade   1.50  4.921260
## 1343             17 years old Female              12th grade   1.57  5.150919
## 1344             16 years old   Male              11th grade   1.83  6.003937
## 1345             15 years old   Male               9th grade   1.83  6.003937
## 1346             16 years old   Male              10th grade   1.70  5.577428
## 1347             16 years old Female              10th grade   1.52  4.986877
## 1348             17 years old Female              12th grade   1.50  4.921260
## 1349             17 years old Female              11th grade   1.42  4.658793
## 1350             17 years old Female              12th grade   1.60  5.249344
## 1351             16 years old   Male              11th grade   1.80  5.905512
## 1352             14 years old   Male               9th grade   1.65  5.413386
## 1353             15 years old   Male               9th grade   1.63  5.347769
## 1354             15 years old Female              10th grade     NA        NA
## 1355    18 years old or older Female              12th grade   1.68  5.511811
## 1356             17 years old   <NA>              11th grade     NA        NA
## 1357             17 years old   Male              12th grade   1.83  6.003937
## 1358             17 years old Female              11th grade   1.60  5.249344
## 1359             16 years old   Male               9th grade   1.90  6.233596
## 1360             16 years old Female              10th grade   1.55  5.085302
## 1361             15 years old Female              10th grade   1.60  5.249344
## 1362             17 years old Female              12th grade   1.60  5.249344
## 1363             17 years old Female              11th grade   1.42  4.658793
## 1364             17 years old Female              12th grade   1.52  4.986877
## 1365             17 years old   Male              11th grade   1.70  5.577428
## 1366             14 years old   Male               9th grade   1.63  5.347769
## 1367             15 years old Female               9th grade   1.52  4.986877
## 1368             16 years old   Male              10th grade   1.85  6.069554
## 1369             16 years old   Male              10th grade   1.70  5.577428
## 1370    18 years old or older Female              12th grade   1.52  4.986877
## 1371             16 years old   Male              11th grade   1.80  5.905512
## 1372    18 years old or older Female              12th grade   1.60  5.249344
## 1373             17 years old   Male              11th grade   1.75  5.741470
## 1374             14 years old Female               9th grade   1.52  4.986877
## 1375             16 years old Female              10th grade   1.60  5.249344
## 1376             16 years old Female              11th grade   1.47  4.822835
## 1377             16 years old   Male              11th grade   1.83  6.003937
## 1378             15 years old   Male               9th grade   1.70  5.577428
## 1379             15 years old Female               9th grade     NA        NA
## 1380             16 years old Female              10th grade   1.60  5.249344
## 1381             15 years old Female              10th grade   1.70  5.577428
## 1382             17 years old   Male              12th grade   1.88  6.167979
## 1383             16 years old Female              11th grade   1.70  5.577428
## 1384             17 years old Female              12th grade   1.57  5.150919
## 1385             17 years old   Male              11th grade     NA        NA
## 1386             15 years old   Male               9th grade   1.78  5.839895
## 1387             16 years old   Male              10th grade   1.68  5.511811
## 1388    18 years old or older   Male              12th grade   1.60  5.249344
## 1389             16 years old Female              11th grade   1.70  5.577428
## 1390             17 years old   Male              12th grade   1.78  5.839895
## 1391             17 years old   Male              11th grade   1.63  5.347769
## 1392             15 years old Female               9th grade   1.65  5.413386
## 1393             15 years old   Male               9th grade     NA        NA
## 1394             15 years old   Male              10th grade   1.70  5.577428
## 1395             16 years old Female              10th grade   1.70  5.577428
## 1396             16 years old Female              11th grade   1.68  5.511811
## 1397             15 years old Female               9th grade   1.50  4.921260
## 1398             15 years old Female               9th grade   1.60  5.249344
## 1399             15 years old Female              10th grade   1.52  4.986877
## 1400             16 years old Female              10th grade   1.57  5.150919
## 1401             16 years old   Male              11th grade   1.75  5.741470
## 1402    18 years old or older Female              12th grade   1.57  5.150919
## 1403             16 years old   Male              11th grade   1.85  6.069554
## 1404             15 years old   Male               9th grade   1.75  5.741470
## 1405             15 years old Female               9th grade   1.50  4.921260
## 1406             15 years old Female              10th grade   1.55  5.085302
## 1407             16 years old   Male              10th grade   1.68  5.511811
## 1408             17 years old Female              12th grade     NA        NA
## 1409             17 years old Female              11th grade   1.60  5.249344
## 1410    18 years old or older   Male              12th grade   1.73  5.675853
## 1411             16 years old Female              11th grade   1.68  5.511811
## 1412             15 years old Female               9th grade   1.57  5.150919
## 1413             14 years old Female               9th grade   1.57  5.150919
## 1414             16 years old Female              10th grade   1.52  4.986877
## 1415             15 years old   Male              10th grade   1.73  5.675853
## 1416    18 years old or older   Male              12th grade   1.78  5.839895
## 1417             16 years old Female              11th grade   1.57  5.150919
## 1418             17 years old Female              12th grade   1.63  5.347769
## 1419             16 years old   Male              11th grade   1.70  5.577428
## 1420             14 years old   Male               9th grade   1.70  5.577428
## 1421             15 years old   Male               9th grade   1.63  5.347769
## 1422             16 years old Female              10th grade   1.60  5.249344
## 1423             16 years old Female              10th grade   1.50  4.921260
## 1424             16 years old   Male              11th grade   1.68  5.511811
## 1425             16 years old   Male              11th grade     NA        NA
## 1426             15 years old Female              10th grade   1.65  5.413386
## 1427             15 years old Female              10th grade   1.63  5.347769
## 1428             16 years old Female              11th grade   1.60  5.249344
## 1429             17 years old Female              12th grade   1.57  5.150919
## 1430             17 years old Female              11th grade   1.52  4.986877
## 1431             15 years old Female               9th grade   1.55  5.085302
## 1432             15 years old Female               9th grade     NA        NA
## 1433             15 years old Female              10th grade   1.50  4.921260
## 1434             16 years old Female              10th grade   1.65  5.413386
## 1435    18 years old or older Female              12th grade   1.65  5.413386
## 1436             16 years old   Male              11th grade   1.70  5.577428
## 1437    18 years old or older   Male              12th grade   1.85  6.069554
## 1438             17 years old Female              11th grade   1.70  5.577428
## 1439             14 years old Female               9th grade   1.57  5.150919
## 1440             15 years old   Male               9th grade   1.70  5.577428
## 1441             16 years old   Male              10th grade   1.73  5.675853
## 1442             15 years old Female              10th grade   1.60  5.249344
## 1443             16 years old   Male              11th grade   1.75  5.741470
## 1444    18 years old or older   Male              12th grade   1.52  4.986877
## 1445             16 years old Female              11th grade   1.73  5.675853
## 1446             15 years old Female               9th grade   1.55  5.085302
## 1447             15 years old Female              10th grade   1.52  4.986877
## 1448             16 years old Female              10th grade   1.60  5.249344
## 1449    18 years old or older   Male              12th grade   1.83  6.003937
## 1450             17 years old Female              11th grade     NA        NA
## 1451    18 years old or older Female              12th grade   1.55  5.085302
## 1452             17 years old Female              11th grade   1.60  5.249344
## 1453             14 years old   Male               9th grade   1.80  5.905512
## 1454             16 years old   Male              10th grade   1.83  6.003937
## 1455             16 years old   Male              10th grade   1.63  5.347769
## 1456             17 years old   Male              11th grade   1.70  5.577428
## 1457    18 years old or older   Male              12th grade   1.70  5.577428
## 1458             16 years old   Male              11th grade   1.68  5.511811
## 1459             14 years old Female               9th grade     NA        NA
## 1460             15 years old Female              10th grade   1.55  5.085302
## 1461             16 years old Female              10th grade   1.57  5.150919
## 1462             17 years old   Male              12th grade   1.75  5.741470
## 1463             17 years old Female              11th grade   1.45  4.757218
## 1464             17 years old Female              12th grade   1.52  4.986877
## 1465             17 years old Female              11th grade   1.45  4.757218
## 1466             15 years old Female               9th grade     NA        NA
## 1467             17 years old   Male              10th grade   1.78  5.839895
## 1468    18 years old or older Female              12th grade   1.57  5.150919
## 1469             16 years old   Male              11th grade   1.90  6.233596
## 1470    18 years old or older Female              12th grade   1.60  5.249344
## 1471             16 years old Female              11th grade   1.60  5.249344
## 1472             16 years old Female               9th grade     NA        NA
## 1473             16 years old   Male               9th grade   1.68  5.511811
## 1474             16 years old   Male              10th grade   1.70  5.577428
## 1475             15 years old Female              10th grade   1.57  5.150919
## 1476             17 years old Female              12th grade   1.73  5.675853
## 1477             17 years old Female              11th grade   1.63  5.347769
## 1478             16 years old   Male              10th grade   1.85  6.069554
## 1479             14 years old Female               9th grade     NA        NA
## 1480             17 years old Female              12th grade   1.73  5.675853
## 1481             17 years old Female              11th grade     NA        NA
## 1482    18 years old or older Female              12th grade   1.57  5.150919
## 1483             17 years old Female              11th grade   1.60  5.249344
## 1484             14 years old   Male               9th grade     NA        NA
## 1485             15 years old   Male               9th grade   1.78  5.839895
## 1486             16 years old Female              10th grade   1.47  4.822835
## 1487             16 years old   Male              10th grade   1.78  5.839895
## 1488             17 years old   Male              12th grade   1.73  5.675853
## 1489             17 years old Female              11th grade     NA        NA
## 1490             17 years old   Male              12th grade   1.80  5.905512
## 1491             16 years old Female              11th grade     NA        NA
## 1492             15 years old Female               9th grade   1.60  5.249344
## 1493             15 years old Female              10th grade   1.50  4.921260
## 1494             16 years old Female              10th grade   1.55  5.085302
## 1495             17 years old Female              12th grade   1.68  5.511811
## 1496             17 years old   Male              11th grade     NA        NA
## 1497    18 years old or older   Male              12th grade   1.83  6.003937
## 1498             16 years old Female              11th grade   1.73  5.675853
## 1499             14 years old Female               9th grade   1.73  5.675853
## 1500             16 years old Female              11th grade     NA        NA
## 1501             15 years old Female               9th grade   1.57  5.150919
## 1502             17 years old Female              11th grade   1.65  5.413386
## 1503             14 years old Female               9th grade     NA        NA
## 1504             16 years old   Male              11th grade   1.68  5.511811
## 1505             14 years old Female               9th grade   1.47  4.822835
## 1506             16 years old Female              11th grade   1.57  5.150919
## 1507             15 years old   Male               9th grade   1.63  5.347769
## 1508             15 years old   Male               9th grade   1.73  5.675853
## 1509             15 years old Female               9th grade     NA        NA
## 1510             14 years old   Male               9th grade     NA        NA
## 1511             14 years old Female               9th grade   1.63  5.347769
## 1512             15 years old Female               9th grade   1.68  5.511811
## 1513             14 years old Female               9th grade   1.52  4.986877
## 1514             15 years old Female               9th grade   1.50  4.921260
## 1515             14 years old Female               9th grade   1.55  5.085302
## 1516             14 years old Female               9th grade   1.68  5.511811
## 1517             14 years old   Male               9th grade     NA        NA
## 1518             15 years old Female               9th grade   1.68  5.511811
## 1519             15 years old   Male               9th grade   1.78  5.839895
## 1520             14 years old Female               9th grade   1.57  5.150919
## 1521             15 years old Female               9th grade   1.57  5.150919
## 1522             15 years old Female               9th grade   1.60  5.249344
## 1523             15 years old Female               9th grade   1.55  5.085302
## 1524             15 years old Female               9th grade     NA        NA
## 1525             14 years old   Male               9th grade   1.75  5.741470
## 1526             14 years old   Male               9th grade   1.83  6.003937
## 1527             15 years old   Male               9th grade   1.80  5.905512
## 1528             15 years old Female               9th grade   1.60  5.249344
## 1529    18 years old or older Female              12th grade   1.60  5.249344
## 1530             17 years old Female              12th grade   1.63  5.347769
## 1531             17 years old   Male              11th grade   1.85  6.069554
## 1532             16 years old Female              11th grade   1.75  5.741470
## 1533             17 years old Female              11th grade   1.65  5.413386
## 1534             16 years old   Male              11th grade   1.75  5.741470
## 1535             16 years old   Male              11th grade   1.70  5.577428
## 1536             17 years old Female              11th grade   1.68  5.511811
## 1537    18 years old or older   Male              12th grade   1.70  5.577428
## 1538             17 years old Female              12th grade   1.63  5.347769
## 1539    18 years old or older Female              12th grade   1.52  4.986877
## 1540    18 years old or older   Male              12th grade   1.83  6.003937
## 1541    18 years old or older   Male              12th grade   1.83  6.003937
## 1542             17 years old Female              12th grade   1.63  5.347769
## 1543             17 years old Female              12th grade   1.60  5.249344
## 1544             17 years old   Male              12th grade   1.80  5.905512
## 1545    18 years old or older Female              12th grade   1.57  5.150919
## 1546             17 years old   Male              12th grade     NA        NA
## 1547             16 years old Female              11th grade   1.60  5.249344
## 1548             17 years old   Male              12th grade   1.70  5.577428
## 1549    18 years old or older   Male              12th grade   1.68  5.511811
## 1550             15 years old Female               9th grade   1.65  5.413386
## 1551             15 years old Female               9th grade   1.73  5.675853
## 1552             15 years old Female               9th grade   1.50  4.921260
## 1553             17 years old Female              12th grade   1.60  5.249344
## 1554    18 years old or older   Male              12th grade   1.78  5.839895
## 1555    18 years old or older   Male              12th grade   1.80  5.905512
## 1556    18 years old or older   Male              12th grade   1.85  6.069554
## 1557             17 years old Female              12th grade   1.60  5.249344
## 1558             17 years old Female              12th grade   1.57  5.150919
## 1559    18 years old or older   Male              12th grade   1.80  5.905512
## 1560             17 years old   Male              12th grade     NA        NA
## 1561    18 years old or older   Male              12th grade     NA        NA
## 1562             17 years old Female              12th grade   1.73  5.675853
## 1563             17 years old Female              12th grade   1.55  5.085302
## 1564    18 years old or older   Male              12th grade   1.83  6.003937
## 1565    18 years old or older   Male              12th grade   1.78  5.839895
## 1566             17 years old Female              12th grade   1.68  5.511811
## 1567             17 years old Female              12th grade   1.60  5.249344
## 1568             17 years old Female              12th grade   1.73  5.675853
## 1569    18 years old or older   Male              12th grade   1.70  5.577428
## 1570    18 years old or older   Male              12th grade   1.70  5.577428
## 1571             17 years old   Male              12th grade   1.70  5.577428
## 1572    18 years old or older Female              12th grade   1.68  5.511811
## 1573    18 years old or older   Male              12th grade   1.83  6.003937
## 1574             17 years old   Male              12th grade   1.73  5.675853
## 1575    18 years old or older   Male              12th grade   1.75  5.741470
## 1576             17 years old Female              12th grade   1.63  5.347769
## 1577             16 years old   Male              11th grade   1.75  5.741470
## 1578             16 years old   Male              11th grade   1.75  5.741470
## 1579             14 years old Female               9th grade   1.57  5.150919
## 1580             17 years old   Male              11th grade   1.78  5.839895
## 1581             15 years old Female              10th grade     NA        NA
## 1582             16 years old   Male              11th grade   1.80  5.905512
## 1583             15 years old   Male              10th grade   1.80  5.905512
## 1584             16 years old Female              11th grade   1.68  5.511811
## 1585             16 years old Female              10th grade   1.55  5.085302
## 1586             17 years old   Male              11th grade   1.73  5.675853
## 1587             16 years old   Male              10th grade   1.60  5.249344
## 1588             17 years old   Male              10th grade   1.63  5.347769
## 1589             15 years old   Male              10th grade   1.75  5.741470
## 1590             14 years old Female               9th grade   1.57  5.150919
## 1591             15 years old Female              10th grade   1.68  5.511811
## 1592             17 years old Female              10th grade   1.60  5.249344
## 1593             15 years old Female               9th grade   1.63  5.347769
## 1594             15 years old Female               9th grade   1.63  5.347769
## 1595             16 years old Female              10th grade   1.73  5.675853
## 1596             14 years old Female               9th grade   1.60  5.249344
## 1597             16 years old Female              10th grade   1.55  5.085302
## 1598             15 years old   Male              10th grade   1.57  5.150919
## 1599             15 years old Female               9th grade   1.70  5.577428
## 1600             15 years old   Male              10th grade   1.78  5.839895
## 1601    18 years old or older   Male              12th grade   1.75  5.741470
## 1602             14 years old Female               9th grade   1.63  5.347769
## 1603             16 years old   Male              10th grade   1.68  5.511811
## 1604             16 years old Female              10th grade   1.50  4.921260
## 1605             14 years old Female               9th grade   1.63  5.347769
## 1606             16 years old Female              10th grade     NA        NA
## 1607             16 years old   Male              11th grade   1.65  5.413386
## 1608             15 years old   Male              10th grade   1.85  6.069554
## 1609             15 years old   Male               9th grade   1.83  6.003937
## 1610             15 years old   Male              10th grade   1.83  6.003937
## 1611             15 years old   Male              10th grade   1.68  5.511811
## 1612             14 years old   Male               9th grade   1.78  5.839895
## 1613             17 years old   Male              11th grade   1.78  5.839895
## 1614             16 years old Female              10th grade   1.52  4.986877
## 1615             15 years old   Male               9th grade   1.65  5.413386
## 1616             16 years old   Male              11th grade   1.90  6.233596
## 1617             16 years old   Male              10th grade   1.88  6.167979
## 1618             16 years old   Male              10th grade   1.57  5.150919
## 1619             15 years old   Male              10th grade     NA        NA
## 1620             15 years old Female               9th grade   1.60  5.249344
## 1621             17 years old   Male              11th grade   1.68  5.511811
## 1622             16 years old Female              10th grade   1.50  4.921260
## 1623             14 years old Female               9th grade   1.60  5.249344
## 1624             16 years old Female              10th grade   1.55  5.085302
## 1625             15 years old Female               9th grade   1.52  4.986877
## 1626    18 years old or older   Male              12th grade   1.83  6.003937
## 1627             16 years old   Male              10th grade   1.80  5.905512
## 1628             15 years old   Male               9th grade   1.70  5.577428
## 1629    18 years old or older Female              12th grade     NA        NA
## 1630             15 years old Female              10th grade   1.65  5.413386
## 1631             14 years old Female               9th grade   1.57  5.150919
## 1632             16 years old Female              10th grade   1.63  5.347769
## 1633             15 years old   Male               9th grade   1.88  6.167979
## 1634             15 years old   Male              10th grade   1.83  6.003937
## 1635             15 years old   Male               9th grade   1.83  6.003937
## 1636             16 years old   Male              10th grade   1.70  5.577428
## 1637             15 years old   Male              10th grade   1.78  5.839895
## 1638             15 years old   Male              10th grade   1.70  5.577428
## 1639             16 years old   Male              10th grade   1.65  5.413386
## 1640             16 years old   Male              10th grade   1.70  5.577428
## 1641             16 years old Female              10th grade   1.63  5.347769
## 1642             16 years old Female              10th grade   1.57  5.150919
## 1643             16 years old   Male              10th grade   1.83  6.003937
## 1644             16 years old Female              11th grade     NA        NA
## 1645             15 years old Female              10th grade   1.70  5.577428
## 1646             15 years old Female              10th grade   1.65  5.413386
## 1647             15 years old Female              10th grade   1.63  5.347769
## 1648             15 years old   Male              10th grade   1.80  5.905512
## 1649             16 years old Female              10th grade     NA        NA
## 1650             16 years old   Male              10th grade   1.70  5.577428
## 1651             15 years old Female              10th grade   1.65  5.413386
## 1652             16 years old Female              11th grade   1.70  5.577428
## 1653             14 years old Female               9th grade   1.55  5.085302
## 1654             15 years old   Male              10th grade     NA        NA
## 1655             16 years old Female              10th grade     NA        NA
## 1656             16 years old Female              11th grade   1.70  5.577428
## 1657             17 years old Female              11th grade   1.60  5.249344
## 1658             16 years old   Male              10th grade   1.65  5.413386
## 1659    18 years old or older Female              12th grade   1.55  5.085302
## 1660             17 years old Female              11th grade   1.60  5.249344
## 1661             16 years old   Male              10th grade   1.68  5.511811
## 1662             17 years old Female              11th grade   1.68  5.511811
## 1663             17 years old   <NA>              11th grade     NA        NA
## 1664             15 years old Female              10th grade   1.60  5.249344
## 1665             17 years old Female              11th grade   1.60  5.249344
## 1666             16 years old Female              10th grade   1.60  5.249344
## 1667             17 years old Female              11th grade   1.52  4.986877
## 1668             16 years old   Male              11th grade   1.78  5.839895
## 1669             16 years old   Male              10th grade   1.80  5.905512
## 1670             16 years old Female              11th grade   1.60  5.249344
## 1671             15 years old Female              10th grade   1.60  5.249344
## 1672             16 years old   Male              11th grade   1.83  6.003937
## 1673             16 years old Female              11th grade     NA        NA
## 1674             16 years old Female              10th grade   1.57  5.150919
## 1675             16 years old Female              11th grade   1.68  5.511811
## 1676             17 years old   <NA>              11th grade     NA        NA
## 1677             15 years old Female              10th grade     NA        NA
## 1678             17 years old Female              11th grade   1.52  4.986877
## 1679             16 years old Female              11th grade   1.88  6.167979
## 1680             15 years old Female              10th grade   1.63  5.347769
## 1681             16 years old Female              11th grade   1.68  5.511811
## 1682             17 years old   Male              11th grade   1.68  5.511811
## 1683             15 years old Female              10th grade     NA        NA
## 1684             17 years old Female              11th grade     NA        NA
## 1685             17 years old Female              11th grade   1.65  5.413386
## 1686             17 years old Female              10th grade   1.70  5.577428
## 1687             17 years old   Male              11th grade   1.75  5.741470
## 1688             16 years old   Male              11th grade   1.70  5.577428
## 1689             15 years old   Male              10th grade   1.90  6.233596
## 1690             16 years old Female              11th grade   1.75  5.741470
## 1691             16 years old Female              11th grade   1.57  5.150919
## 1692             15 years old Female              10th grade   1.60  5.249344
## 1693             17 years old Female              11th grade   1.50  4.921260
## 1694             15 years old Female              10th grade   1.60  5.249344
## 1695             16 years old Female              11th grade   1.63  5.347769
## 1696             16 years old   Male              11th grade   1.68  5.511811
## 1697             16 years old   Male              10th grade   1.78  5.839895
## 1698             16 years old   Male              10th grade   1.78  5.839895
## 1699             16 years old Female              10th grade   1.57  5.150919
## 1700    18 years old or older Female              12th grade     NA        NA
## 1701             16 years old   Male              10th grade   1.70  5.577428
## 1702             17 years old   Male              11th grade   1.90  6.233596
## 1703             15 years old   Male              10th grade   1.80  5.905512
## 1704             17 years old Female              11th grade   1.57  5.150919
## 1705             16 years old Female              10th grade     NA        NA
## 1706             17 years old   Male              11th grade   1.68  5.511811
## 1707             16 years old   Male              10th grade   1.75  5.741470
## 1708             16 years old   Male              10th grade   1.73  5.675853
## 1709             17 years old Female              11th grade   1.57  5.150919
## 1710             14 years old Female               9th grade   1.55  5.085302
## 1711             15 years old   Male               9th grade   1.68  5.511811
## 1712             14 years old Female               9th grade     NA        NA
## 1713             15 years old   Male               9th grade   1.60  5.249344
## 1714             17 years old Female              12th grade     NA        NA
## 1715             15 years old Female              10th grade   1.63  5.347769
## 1716    18 years old or older   Male              12th grade   1.52  4.986877
## 1717             14 years old Female               9th grade     NA        NA
## 1718             15 years old Female               9th grade   1.57  5.150919
## 1719    18 years old or older Female              12th grade   1.55  5.085302
## 1720             16 years old   Male              10th grade   1.70  5.577428
## 1721             14 years old   Male               9th grade   1.63  5.347769
## 1722             15 years old   Male               9th grade   1.78  5.839895
## 1723             17 years old   Male              12th grade   1.75  5.741470
## 1724             16 years old Female              10th grade   1.85  6.069554
## 1725             14 years old   Male               9th grade     NA        NA
## 1726             17 years old   Male              12th grade   1.70  5.577428
## 1727    18 years old or older Female              12th grade   1.55  5.085302
## 1728             15 years old Female               9th grade     NA        NA
## 1729             15 years old   Male               9th grade   1.65  5.413386
## 1730    18 years old or older   Male              12th grade   1.70  5.577428
## 1731             17 years old   Male              12th grade   1.78  5.839895
## 1732             14 years old Female               9th grade   1.60  5.249344
## 1733             15 years old   Male               9th grade   1.68  5.511811
## 1734             17 years old   Male              12th grade     NA        NA
## 1735             15 years old Female              10th grade   1.57  5.150919
## 1736             17 years old Female              12th grade   1.65  5.413386
## 1737             15 years old   Male               9th grade   1.75  5.741470
## 1738             15 years old   Male               9th grade   1.73  5.675853
## 1739    18 years old or older   Male              12th grade   1.65  5.413386
## 1740             15 years old   Male              10th grade   1.75  5.741470
## 1741             14 years old   Male               9th grade   1.73  5.675853
## 1742             15 years old   Male               9th grade   1.83  6.003937
## 1743             17 years old   Male              12th grade   1.85  6.069554
## 1744             16 years old Female              11th grade   1.57  5.150919
## 1745             17 years old Female              12th grade   1.68  5.511811
## 1746             15 years old   Male               9th grade   1.73  5.675853
## 1747             14 years old Female               9th grade   1.63  5.347769
## 1748    18 years old or older Female              12th grade   1.52  4.986877
## 1749             16 years old   Male              10th grade   1.57  5.150919
## 1750             17 years old   Male              12th grade   1.75  5.741470
## 1751             15 years old Female               9th grade   1.68  5.511811
## 1752             14 years old   Male               9th grade   1.63  5.347769
## 1753    18 years old or older Female              12th grade     NA        NA
## 1754             15 years old Female              10th grade   1.55  5.085302
## 1755    18 years old or older Female              12th grade   1.68  5.511811
## 1756             15 years old   Male               9th grade   1.75  5.741470
## 1757    18 years old or older   Male              12th grade   1.73  5.675853
## 1758             16 years old   Male              10th grade   1.83  6.003937
## 1759    18 years old or older Female              12th grade   1.70  5.577428
## 1760             15 years old   Male               9th grade   1.65  5.413386
## 1761             14 years old Female               9th grade   1.78  5.839895
## 1762             14 years old Female               9th grade   1.68  5.511811
## 1763             15 years old Female               9th grade   1.57  5.150919
## 1764             17 years old Female              12th grade   1.70  5.577428
## 1765             15 years old   Male               9th grade   1.75  5.741470
## 1766             14 years old Female               9th grade   1.55  5.085302
## 1767             14 years old Female               9th grade   1.60  5.249344
## 1768    18 years old or older Female              12th grade   1.47  4.822835
## 1769             16 years old Female              10th grade   1.68  5.511811
## 1770    18 years old or older   Male              12th grade   1.73  5.675853
## 1771             14 years old Female               9th grade   1.55  5.085302
## 1772             16 years old   Male               9th grade   1.70  5.577428
## 1773             15 years old   Male               9th grade   1.75  5.741470
## 1774             15 years old Female               9th grade   1.52  4.986877
## 1775    18 years old or older Female              12th grade   1.52  4.986877
## 1776             15 years old Female              10th grade   1.57  5.150919
## 1777    18 years old or older Female              12th grade   1.68  5.511811
## 1778             15 years old Female               9th grade   1.60  5.249344
## 1779             15 years old   Male               9th grade   1.80  5.905512
## 1780             14 years old Female               9th grade   1.55  5.085302
## 1781             17 years old   Male              12th grade   1.83  6.003937
## 1782             15 years old   Male              10th grade   1.88  6.167979
## 1783             17 years old Female              12th grade   1.57  5.150919
## 1784             15 years old Female               9th grade   1.60  5.249344
## 1785             14 years old   Male               9th grade   1.78  5.839895
## 1786             17 years old   Male              12th grade   1.80  5.905512
## 1787             16 years old Female              10th grade   1.50  4.921260
## 1788    18 years old or older   Male              12th grade     NA        NA
## 1789             15 years old   Male               9th grade   1.70  5.577428
## 1790             17 years old Female              12th grade   1.57  5.150919
## 1791             15 years old Female              10th grade   1.47  4.822835
## 1792             17 years old   Male              12th grade   1.83  6.003937
## 1793             14 years old   Male               9th grade     NA        NA
## 1794             15 years old   Male               9th grade   1.75  5.741470
## 1795             15 years old Female               9th grade   1.68  5.511811
## 1796             14 years old Female               9th grade     NA        NA
## 1797             17 years old   Male              12th grade   1.90  6.233596
## 1798             16 years old Female              10th grade   1.57  5.150919
## 1799             17 years old Female              12th grade   1.57  5.150919
## 1800             15 years old   Male               9th grade   1.78  5.839895
## 1801             17 years old Female              12th grade   1.73  5.675853
## 1802             16 years old   Male              10th grade   1.75  5.741470
## 1803             17 years old Female              12th grade   1.70  5.577428
## 1804             15 years old   Male               9th grade   1.68  5.511811
## 1805             15 years old   Male               9th grade   1.63  5.347769
## 1806    18 years old or older   Male              12th grade   1.75  5.741470
## 1807             15 years old Female              10th grade   1.73  5.675853
## 1808             17 years old   Male              12th grade     NA        NA
## 1809             15 years old Female               9th grade   1.55  5.085302
## 1810             15 years old   Male               9th grade   1.70  5.577428
## 1811             15 years old Female              10th grade   1.63  5.347769
## 1812             17 years old   Male              11th grade   1.68  5.511811
## 1813             16 years old Female              10th grade   1.60  5.249344
## 1814             15 years old Female              10th grade     NA        NA
## 1815             15 years old   Male              10th grade   1.75  5.741470
## 1816             16 years old Female              10th grade   1.73  5.675853
## 1817             17 years old   Male              11th grade     NA        NA
## 1818             16 years old Female              10th grade   1.75  5.741470
## 1819             15 years old   Male              10th grade   1.78  5.839895
## 1820             16 years old   Male              10th grade     NA        NA
## 1821             15 years old   Male              10th grade   1.75  5.741470
## 1822             15 years old Female              10th grade   1.65  5.413386
## 1823             16 years old   Male              10th grade   1.83  6.003937
## 1824             15 years old Female               9th grade   1.50  4.921260
## 1825             16 years old   Male              11th grade   1.85  6.069554
## 1826             16 years old Female              10th grade   1.52  4.986877
## 1827             15 years old Female              10th grade   1.63  5.347769
## 1828             15 years old Female              10th grade   1.42  4.658793
## 1829             16 years old   Male              11th grade   1.88  6.167979
## 1830             16 years old Female              10th grade   1.57  5.150919
## 1831             15 years old Female              10th grade   1.57  5.150919
## 1832             16 years old   Male              10th grade   1.73  5.675853
## 1833             14 years old   Male               9th grade   1.60  5.249344
## 1834             16 years old Female              10th grade     NA        NA
## 1835             15 years old Female              10th grade   1.65  5.413386
## 1836             17 years old   Male              12th grade   1.75  5.741470
## 1837             15 years old Female              10th grade   1.65  5.413386
## 1838             16 years old Female              10th grade   1.57  5.150919
## 1839             15 years old Female              10th grade   1.65  5.413386
## 1840             16 years old   Male              11th grade   1.75  5.741470
## 1841             15 years old Female              10th grade   1.50  4.921260
## 1842             15 years old   Male              10th grade   1.73  5.675853
## 1843             16 years old Female              10th grade   1.55  5.085302
## 1844             16 years old   Male              10th grade   1.57  5.150919
## 1845             16 years old Female              10th grade   1.63  5.347769
## 1846             15 years old Female              10th grade   1.60  5.249344
## 1847             16 years old   Male              11th grade   1.78  5.839895
## 1848             16 years old Female              10th grade   1.57  5.150919
## 1849             15 years old   Male              10th grade   1.70  5.577428
## 1850             15 years old Female              10th grade   1.57  5.150919
## 1851             16 years old   Male              10th grade     NA        NA
## 1852             16 years old   Male              10th grade     NA        NA
## 1853             17 years old   Male              11th grade   1.73  5.675853
## 1854             15 years old Female              10th grade   1.60  5.249344
## 1855             16 years old Female              10th grade   1.65  5.413386
## 1856             16 years old   Male              10th grade   1.63  5.347769
## 1857             15 years old   Male              10th grade   1.78  5.839895
## 1858             15 years old   Male               9th grade   1.78  5.839895
## 1859             17 years old Female              11th grade     NA        NA
## 1860             16 years old Female              11th grade   1.65  5.413386
## 1861             16 years old   Male              10th grade     NA        NA
## 1862             14 years old Female               9th grade   1.60  5.249344
## 1863             16 years old   Male              10th grade   1.70  5.577428
## 1864             16 years old Female              11th grade   1.60  5.249344
## 1865             15 years old   Male              10th grade   1.80  5.905512
## 1866             15 years old   Male               9th grade   1.70  5.577428
## 1867             15 years old Female              10th grade     NA        NA
## 1868             14 years old Female               9th grade   1.63  5.347769
## 1869             15 years old Female              10th grade   1.63  5.347769
## 1870             15 years old Female              10th grade   1.60  5.249344
## 1871             15 years old   Male               9th grade   1.96  6.430446
## 1872             16 years old Female              10th grade   1.63  5.347769
## 1873             17 years old   Male              12th grade   1.85  6.069554
## 1874             14 years old Female               9th grade   1.52  4.986877
## 1875             15 years old   Male              10th grade     NA        NA
## 1876             16 years old   Male              10th grade   1.75  5.741470
## 1877             16 years old Female              10th grade     NA        NA
## 1878             15 years old Female               9th grade   1.57  5.150919
## 1879             15 years old Female              10th grade   1.65  5.413386
## 1880             17 years old   Male              12th grade   1.93  6.332021
## 1881             14 years old Female               9th grade   1.52  4.986877
## 1882             17 years old Female              11th grade   1.68  5.511811
## 1883    18 years old or older   Male              12th grade   1.73  5.675853
## 1884             14 years old   Male               9th grade   1.70  5.577428
## 1885             15 years old   Male              10th grade     NA        NA
## 1886             15 years old   Male              10th grade   1.88  6.167979
## 1887             17 years old   Male              11th grade     NA        NA
## 1888             15 years old Female              10th grade   1.75  5.741470
## 1889             17 years old Female              11th grade   1.60  5.249344
## 1890             15 years old   Male               9th grade   1.75  5.741470
## 1891             16 years old   Male              10th grade   1.73  5.675853
## 1892             14 years old Female               9th grade   1.63  5.347769
## 1893             17 years old   Male              11th grade   1.63  5.347769
## 1894             14 years old   Male               9th grade   1.75  5.741470
## 1895             15 years old Female              10th grade   1.65  5.413386
## 1896             15 years old Female              10th grade   1.55  5.085302
## 1897             16 years old Female              10th grade   1.60  5.249344
## 1898             16 years old Female               9th grade   1.60  5.249344
## 1899             15 years old Female              10th grade   1.55  5.085302
## 1900             15 years old Female              10th grade   1.57  5.150919
## 1901             16 years old Female              10th grade   1.63  5.347769
## 1902             15 years old   Male               9th grade   1.78  5.839895
## 1903             15 years old Female               9th grade   1.68  5.511811
## 1904             16 years old Female              10th grade   1.60  5.249344
## 1905             16 years old Female              10th grade   1.57  5.150919
## 1906             14 years old Female               9th grade   1.47  4.822835
## 1907             15 years old Female              10th grade   1.63  5.347769
## 1908             16 years old   Male              11th grade   1.88  6.167979
## 1909             16 years old Female              11th grade     NA        NA
## 1910             14 years old   Male               9th grade   1.60  5.249344
## 1911             14 years old   Male               9th grade   1.75  5.741470
## 1912             15 years old   Male              10th grade   1.68  5.511811
## 1913             15 years old Female              10th grade   1.55  5.085302
## 1914             15 years old   Male               9th grade   1.65  5.413386
## 1915             16 years old   Male              11th grade   1.70  5.577428
## 1916             17 years old Female              11th grade   1.63  5.347769
## 1917             15 years old   Male              10th grade     NA        NA
## 1918             14 years old   Male               9th grade   1.63  5.347769
## 1919             15 years old Female              10th grade   1.55  5.085302
## 1920             14 years old   Male               9th grade     NA        NA
## 1921             15 years old Female              10th grade     NA        NA
## 1922             17 years old   Male              12th grade   1.70  5.577428
## 1923             15 years old Female              10th grade   1.60  5.249344
## 1924             14 years old   Male               9th grade   1.65  5.413386
## 1925             15 years old Female              10th grade   1.63  5.347769
## 1926             15 years old Female               9th grade   1.70  5.577428
## 1927    18 years old or older Female              12th grade   1.68  5.511811
## 1928    18 years old or older   Male              12th grade   1.73  5.675853
## 1929    18 years old or older Female              12th grade   1.65  5.413386
## 1930             17 years old Female              12th grade   1.63  5.347769
## 1931             17 years old   Male              12th grade   1.83  6.003937
## 1932             16 years old   Male              11th grade   1.70  5.577428
## 1933    18 years old or older Female              12th grade   1.65  5.413386
## 1934    18 years old or older   Male              12th grade   1.60  5.249344
## 1935             17 years old   Male              12th grade   1.83  6.003937
## 1936             17 years old   Male              12th grade   1.83  6.003937
## 1937    18 years old or older   Male              12th grade   1.83  6.003937
## 1938             16 years old Female              11th grade   1.60  5.249344
## 1939    18 years old or older Female              12th grade   1.65  5.413386
## 1940    18 years old or older   Male              12th grade   1.78  5.839895
## 1941    18 years old or older Female              12th grade   1.60  5.249344
## 1942             17 years old Female              11th grade   1.68  5.511811
## 1943             16 years old Female              11th grade   1.52  4.986877
## 1944             16 years old   Male              11th grade   1.75  5.741470
## 1945             16 years old Female              11th grade   1.65  5.413386
## 1946             17 years old Female              11th grade   1.63  5.347769
## 1947             17 years old Female              11th grade   1.70  5.577428
## 1948             17 years old   Male              11th grade   1.63  5.347769
## 1949    18 years old or older Female              12th grade   1.63  5.347769
## 1950    18 years old or older   Male              12th grade   1.88  6.167979
## 1951             17 years old   Male              11th grade   1.80  5.905512
## 1952             17 years old   Male              11th grade   1.78  5.839895
## 1953  12 years old or younger Female Ungraded or other grade     NA        NA
## 1954             17 years old Female              11th grade     NA        NA
## 1955             16 years old Female              11th grade   1.55  5.085302
## 1956             17 years old Female              11th grade   1.60  5.249344
## 1957             14 years old   Male               9th grade   1.65  5.413386
## 1958             15 years old Female               9th grade     NA        NA
## 1959             15 years old Female               9th grade     NA        NA
## 1960             15 years old Female              10th grade   1.65  5.413386
## 1961             15 years old Female              10th grade   1.65  5.413386
## 1962             14 years old Female               9th grade   1.57  5.150919
## 1963             15 years old Female               9th grade   1.65  5.413386
## 1964             16 years old Female              10th grade   1.60  5.249344
## 1965             14 years old   Male               9th grade   1.65  5.413386
## 1966             15 years old Female               9th grade   1.70  5.577428
## 1967             15 years old   Male               9th grade   1.80  5.905512
## 1968             16 years old Female              10th grade     NA        NA
## 1969             15 years old Female               9th grade   1.63  5.347769
## 1970             14 years old Female               9th grade   1.52  4.986877
## 1971             15 years old Female               9th grade     NA        NA
## 1972             16 years old Female              10th grade   1.70  5.577428
## 1973             15 years old   Male              10th grade   1.70  5.577428
## 1974             16 years old   Male              10th grade     NA        NA
## 1975             15 years old   Male              10th grade   1.75  5.741470
## 1976             14 years old   Male               9th grade     NA        NA
## 1977             14 years old Female               9th grade   1.60  5.249344
## 1978             14 years old Female               9th grade   1.68  5.511811
## 1979             15 years old   Male               9th grade   1.80  5.905512
## 1980             15 years old   Male               9th grade   1.75  5.741470
## 1981             16 years old   Male              10th grade   1.75  5.741470
## 1982             14 years old Female               9th grade   1.55  5.085302
## 1983             15 years old   Male               9th grade   1.88  6.167979
## 1984    18 years old or older   Male              12th grade   1.78  5.839895
## 1985             17 years old   Male              12th grade   1.68  5.511811
## 1986             17 years old Female              12th grade   1.78  5.839895
## 1987             17 years old   Male              12th grade   1.90  6.233596
## 1988             15 years old Female              10th grade   1.60  5.249344
## 1989             17 years old   Male              12th grade   1.78  5.839895
## 1990             15 years old Female              10th grade   1.68  5.511811
## 1991    18 years old or older Female              12th grade   1.63  5.347769
## 1992             16 years old   Male              10th grade   1.75  5.741470
## 1993             17 years old   Male              12th grade   1.70  5.577428
## 1994    18 years old or older Female              12th grade   1.75  5.741470
## 1995             14 years old Female               9th grade   1.55  5.085302
## 1996    18 years old or older Female              12th grade   1.80  5.905512
## 1997             15 years old Female              10th grade   1.50  4.921260
## 1998             17 years old   Male              12th grade   1.80  5.905512
## 1999             15 years old Female              10th grade   1.68  5.511811
## 2000             16 years old Female              10th grade     NA        NA
## 2001             16 years old   Male              10th grade   1.80  5.905512
## 2002    18 years old or older Female              12th grade   1.57  5.150919
## 2003    18 years old or older   Male              12th grade   1.65  5.413386
## 2004             15 years old Female              10th grade   1.63  5.347769
## 2005             17 years old Female              12th grade   1.65  5.413386
## 2006             16 years old   Male              10th grade   1.80  5.905512
## 2007             17 years old Female              12th grade   1.63  5.347769
## 2008             16 years old Female              10th grade   1.70  5.577428
## 2009             17 years old   Male              12th grade   1.83  6.003937
## 2010    18 years old or older Female              12th grade   1.68  5.511811
## 2011             15 years old   Male              10th grade   1.73  5.675853
## 2012    18 years old or older Female              12th grade   1.68  5.511811
## 2013             15 years old   Male              10th grade   1.60  5.249344
## 2014    18 years old or older Female              12th grade   1.75  5.741470
## 2015             15 years old   Male              10th grade   1.93  6.332021
## 2016             17 years old   Male              12th grade   1.70  5.577428
## 2017             17 years old Female              12th grade   1.63  5.347769
## 2018             17 years old Female              12th grade   1.70  5.577428
## 2019             17 years old Female              12th grade   1.60  5.249344
## 2020             16 years old Female              10th grade   1.65  5.413386
## 2021             16 years old Female              10th grade   1.68  5.511811
## 2022    18 years old or older Female              12th grade   1.70  5.577428
## 2023             15 years old   Male              10th grade   1.73  5.675853
## 2024             17 years old Female              12th grade   1.52  4.986877
## 2025             15 years old Female              10th grade   1.57  5.150919
## 2026             17 years old   Male              12th grade   1.85  6.069554
## 2027             15 years old   Male              10th grade   1.83  6.003937
## 2028             16 years old   Male              10th grade   1.78  5.839895
## 2029             17 years old Female              12th grade   1.73  5.675853
## 2030             16 years old Female              10th grade   1.52  4.986877
## 2031    18 years old or older   Male              12th grade   1.73  5.675853
## 2032             15 years old   Male              10th grade   1.75  5.741470
## 2033             14 years old   Male               9th grade   1.75  5.741470
## 2034             16 years old Female              11th grade   1.60  5.249344
## 2035             15 years old   Male               9th grade   1.85  6.069554
## 2036             15 years old Female              10th grade   1.70  5.577428
## 2037             17 years old Female              12th grade   1.83  6.003937
## 2038             15 years old   Male               9th grade   1.65  5.413386
## 2039             17 years old Female              11th grade   1.50  4.921260
## 2040             14 years old Female               9th grade   1.52  4.986877
## 2041             15 years old Female              10th grade   1.60  5.249344
## 2042             14 years old Female               9th grade   1.57  5.150919
## 2043             17 years old   Male              11th grade   1.78  5.839895
## 2044             15 years old Female               9th grade   1.57  5.150919
## 2045             16 years old   Male              10th grade   1.63  5.347769
## 2046             16 years old Female              10th grade   1.63  5.347769
## 2047             16 years old   Male              11th grade   1.85  6.069554
## 2048             15 years old Female               9th grade   1.52  4.986877
## 2049             16 years old   Male              10th grade   1.75  5.741470
## 2050             14 years old Female               9th grade   1.60  5.249344
## 2051             16 years old Female              11th grade   1.57  5.150919
## 2052             15 years old Female               9th grade   1.63  5.347769
## 2053             15 years old Female              10th grade   1.60  5.249344
## 2054             15 years old Female               9th grade   1.70  5.577428
## 2055             16 years old Female              10th grade   1.65  5.413386
## 2056             14 years old Female               9th grade     NA        NA
## 2057             14 years old Female               9th grade   1.68  5.511811
## 2058             14 years old   Male               9th grade   1.80  5.905512
## 2059             16 years old   Male              10th grade   1.63  5.347769
## 2060             16 years old   Male              11th grade   1.88  6.167979
## 2061             15 years old   Male               9th grade   1.80  5.905512
## 2062             15 years old Female              10th grade   1.65  5.413386
## 2063             15 years old Female               9th grade   1.65  5.413386
## 2064             17 years old Female              11th grade   1.80  5.905512
## 2065             14 years old Female               9th grade   1.70  5.577428
## 2066             16 years old Female              10th grade   1.60  5.249344
## 2067             14 years old   Male               9th grade   1.78  5.839895
## 2068             14 years old   Male               9th grade   1.78  5.839895
## 2069             16 years old Female              10th grade   1.55  5.085302
## 2070             15 years old   Male               9th grade   1.80  5.905512
## 2071             16 years old Female              11th grade   1.75  5.741470
## 2072             14 years old Female               9th grade     NA        NA
## 2073             16 years old   Male              10th grade   1.68  5.511811
## 2074             15 years old   Male               9th grade   1.83  6.003937
## 2075             17 years old   Male              11th grade   1.65  5.413386
## 2076             14 years old   Male               9th grade   1.85  6.069554
## 2077             16 years old   Male              10th grade   1.75  5.741470
## 2078             17 years old Female              11th grade   1.63  5.347769
## 2079             15 years old   Male               9th grade   1.96  6.430446
## 2080             15 years old Female               9th grade   1.70  5.577428
## 2081             15 years old   Male              10th grade   1.80  5.905512
## 2082             17 years old Female              11th grade   1.55  5.085302
## 2083             14 years old Female               9th grade   1.63  5.347769
## 2084             15 years old Female               9th grade   1.63  5.347769
## 2085             16 years old Female              10th grade   1.60  5.249344
## 2086             14 years old Female               9th grade   1.55  5.085302
## 2087             17 years old   Male              11th grade   1.80  5.905512
## 2088             14 years old   Male               9th grade   1.50  4.921260
## 2089             16 years old Female              10th grade   1.63  5.347769
## 2090             14 years old Female               9th grade   1.57  5.150919
## 2091             17 years old Female              11th grade     NA        NA
## 2092             15 years old Female               9th grade   1.65  5.413386
## 2093             15 years old Female              10th grade   1.57  5.150919
## 2094             15 years old   Male               9th grade     NA        NA
## 2095             17 years old   Male              11th grade   1.93  6.332021
## 2096             15 years old Female               9th grade   1.70  5.577428
## 2097             15 years old Female              10th grade   1.55  5.085302
## 2098             17 years old Female              11th grade   1.50  4.921260
## 2099             16 years old   Male              11th grade   1.78  5.839895
## 2100             15 years old Female               9th grade   1.60  5.249344
## 2101             16 years old Female              10th grade   1.85  6.069554
## 2102             17 years old Female              11th grade   1.63  5.347769
## 2103             14 years old Female               9th grade   1.57  5.150919
## 2104             16 years old   Male              11th grade   1.80  5.905512
## 2105             14 years old Female               9th grade     NA        NA
## 2106             16 years old Female              10th grade     NA        NA
## 2107             17 years old   Male              11th grade   1.73  5.675853
## 2108             14 years old Female               9th grade   1.57  5.150919
## 2109             17 years old Female              11th grade   1.63  5.347769
## 2110             15 years old Female               9th grade     NA        NA
## 2111             15 years old Female              10th grade   1.73  5.675853
## 2112             16 years old Female              11th grade   1.57  5.150919
## 2113             14 years old   Male               9th grade   1.83  6.003937
## 2114             16 years old Female              11th grade   1.57  5.150919
## 2115             14 years old Female               9th grade   1.63  5.347769
## 2116             16 years old   Male              10th grade   1.75  5.741470
## 2117             17 years old   Male              12th grade   1.55  5.085302
## 2118             14 years old Female               9th grade     NA        NA
## 2119             14 years old Female               9th grade   1.60  5.249344
## 2120             14 years old Female               9th grade   1.50  4.921260
## 2121             15 years old Female               9th grade   1.63  5.347769
## 2122             14 years old   Male               9th grade   1.78  5.839895
## 2123             15 years old   Male               9th grade   1.70  5.577428
## 2124             14 years old   Male               9th grade   1.70  5.577428
## 2125             15 years old   Male               9th grade   1.65  5.413386
## 2126             14 years old Female               9th grade   1.57  5.150919
## 2127             15 years old   Male              10th grade   1.70  5.577428
## 2128             15 years old   Male              10th grade   1.52  4.986877
## 2129             16 years old Female              10th grade   1.63  5.347769
## 2130             15 years old Female              10th grade   1.60  5.249344
## 2131             15 years old Female              10th grade   1.60  5.249344
## 2132             15 years old   Male              10th grade   1.68  5.511811
## 2133             16 years old Female              10th grade   1.68  5.511811
## 2134             15 years old Female              10th grade   1.55  5.085302
## 2135             16 years old Female              10th grade   1.75  5.741470
## 2136             15 years old Female               9th grade   1.57  5.150919
## 2137             16 years old   Male              10th grade   1.83  6.003937
## 2138             15 years old Female              10th grade   1.63  5.347769
## 2139             15 years old   Male              10th grade   1.85  6.069554
## 2140             16 years old   Male              10th grade   1.73  5.675853
## 2141             16 years old   Male              10th grade   1.70  5.577428
## 2142             15 years old Female              10th grade   1.52  4.986877
## 2143             17 years old Female              12th grade   1.68  5.511811
## 2144             17 years old   Male              11th grade   1.75  5.741470
## 2145             15 years old Female              10th grade   1.52  4.986877
## 2146             16 years old   Male              10th grade   1.65  5.413386
## 2147             15 years old   Male              10th grade   1.83  6.003937
## 2148             17 years old   Male              12th grade   1.78  5.839895
## 2149             17 years old   Male              12th grade   1.90  6.233596
## 2150             17 years old Female              12th grade   1.70  5.577428
## 2151             15 years old Female              10th grade   1.63  5.347769
## 2152             17 years old Female              12th grade     NA        NA
## 2153             17 years old Female              12th grade   1.68  5.511811
## 2154             16 years old Female              12th grade   1.68  5.511811
## 2155             17 years old   Male              12th grade   1.83  6.003937
## 2156    18 years old or older   Male              12th grade   1.68  5.511811
## 2157             17 years old   Male              12th grade   1.70  5.577428
## 2158    18 years old or older Female              12th grade   1.52  4.986877
## 2159    18 years old or older   Male              12th grade   1.75  5.741470
## 2160             15 years old   Male              10th grade   1.88  6.167979
## 2161             16 years old   Male              10th grade   1.85  6.069554
## 2162             16 years old   Male              10th grade     NA        NA
## 2163             17 years old Female              12th grade   1.60  5.249344
## 2164             17 years old   Male              12th grade   1.75  5.741470
## 2165             17 years old   Male              12th grade   1.88  6.167979
## 2166    18 years old or older   Male              12th grade   2.03  6.660105
## 2167    18 years old or older   Male              12th grade   1.73  5.675853
## 2168             17 years old Female              12th grade   1.73  5.675853
## 2169    18 years old or older   Male              12th grade   1.75  5.741470
## 2170    18 years old or older Female              12th grade   1.50  4.921260
## 2171             17 years old Female              12th grade   1.65  5.413386
## 2172             17 years old Female              12th grade     NA        NA
## 2173             17 years old Female              12th grade   1.68  5.511811
## 2174             17 years old   Male              12th grade   1.70  5.577428
## 2175    18 years old or older   Male              12th grade   1.96  6.430446
## 2176             16 years old   Male              12th grade   1.80  5.905512
## 2177             14 years old   Male               9th grade   1.70  5.577428
## 2178             16 years old   Male              10th grade   1.83  6.003937
## 2179             14 years old Female               9th grade   1.73  5.675853
## 2180             15 years old   Male               9th grade   1.73  5.675853
## 2181             14 years old Female               9th grade   1.63  5.347769
## 2182             15 years old Female              10th grade   1.60  5.249344
## 2183             15 years old Female               9th grade   1.63  5.347769
## 2184             14 years old Female               9th grade   1.57  5.150919
## 2185             14 years old Female               9th grade     NA        NA
## 2186             15 years old Female               9th grade   1.60  5.249344
## 2187             15 years old   Male               9th grade   1.75  5.741470
## 2188             14 years old   Male               9th grade   1.80  5.905512
## 2189             14 years old Female               9th grade   1.57  5.150919
## 2190             14 years old Female               9th grade   1.52  4.986877
## 2191             16 years old Female               9th grade   1.60  5.249344
## 2192             17 years old   Male              11th grade   1.78  5.839895
## 2193             16 years old   Male              11th grade   1.80  5.905512
## 2194             17 years old   Male              11th grade   1.68  5.511811
## 2195             17 years old Female              11th grade   1.68  5.511811
## 2196             16 years old Female              11th grade   1.68  5.511811
## 2197             16 years old   Male              11th grade   1.90  6.233596
## 2198             17 years old Female              11th grade   1.63  5.347769
## 2199             17 years old   Male              11th grade   1.70  5.577428
## 2200    18 years old or older   Male              11th grade   1.70  5.577428
## 2201             16 years old   Male              11th grade   1.70  5.577428
## 2202             16 years old Female              11th grade   1.68  5.511811
## 2203             16 years old Female              11th grade   1.55  5.085302
## 2204             16 years old Female              11th grade   1.57  5.150919
## 2205             16 years old Female              11th grade   1.63  5.347769
## 2206             16 years old   Male              11th grade   1.70  5.577428
## 2207             16 years old   Male              11th grade     NA        NA
## 2208             16 years old   Male              11th grade   1.73  5.675853
## 2209             16 years old   Male              11th grade   1.80  5.905512
## 2210             17 years old Female              11th grade   1.65  5.413386
## 2211             16 years old Female              11th grade   1.73  5.675853
## 2212             17 years old   Male              11th grade   1.80  5.905512
## 2213             16 years old   Male              11th grade   1.78  5.839895
## 2214             16 years old Female              11th grade   1.75  5.741470
## 2215    18 years old or older   Male              12th grade   1.78  5.839895
## 2216             17 years old Female              12th grade   1.60  5.249344
## 2217             17 years old Female              12th grade   1.63  5.347769
## 2218    18 years old or older   Male              10th grade   1.65  5.413386
## 2219    18 years old or older   Male              10th grade   1.80  5.905512
## 2220             15 years old Female               9th grade   1.63  5.347769
## 2221             16 years old   Male              10th grade   1.88  6.167979
## 2222             14 years old   Male               9th grade   1.73  5.675853
## 2223             14 years old Female               9th grade   1.57  5.150919
## 2224             14 years old   Male               9th grade   1.68  5.511811
## 2225             14 years old Female               9th grade   1.55  5.085302
## 2226             15 years old Female              10th grade   1.73  5.675853
## 2227             14 years old Female               9th grade   1.52  4.986877
## 2228             15 years old Female               9th grade   1.73  5.675853
## 2229             15 years old Female              10th grade   1.32  4.330709
## 2230             15 years old   Male              10th grade   1.60  5.249344
## 2231             16 years old Female              10th grade   1.60  5.249344
## 2232             14 years old   Male               9th grade   1.83  6.003937
## 2233             14 years old Female               9th grade   1.63  5.347769
## 2234             15 years old Female              10th grade   1.57  5.150919
## 2235             16 years old   Male              11th grade   1.80  5.905512
## 2236             16 years old   Male              10th grade   1.83  6.003937
## 2237             15 years old Female              10th grade     NA        NA
## 2238             15 years old   Male               9th grade   1.75  5.741470
## 2239             14 years old   Male               9th grade   1.85  6.069554
## 2240             14 years old Female               9th grade     NA        NA
## 2241             15 years old Female              10th grade   1.63  5.347769
## 2242             15 years old Female               9th grade   1.57  5.150919
## 2243             14 years old   Male               9th grade   1.63  5.347769
## 2244             14 years old   Male               9th grade   1.78  5.839895
## 2245             17 years old   Male              10th grade   1.83  6.003937
## 2246             15 years old Female               9th grade   1.47  4.822835
## 2247             15 years old   Male               9th grade   1.78  5.839895
## 2248             15 years old Female              10th grade     NA        NA
## 2249             15 years old Female               9th grade   1.60  5.249344
## 2250             14 years old   Male               9th grade   1.75  5.741470
## 2251             15 years old Female              10th grade   1.57  5.150919
## 2252             16 years old Female              10th grade   1.70  5.577428
## 2253             17 years old   Male              11th grade     NA        NA
## 2254    18 years old or older Female              12th grade   1.63  5.347769
## 2255             15 years old   Male              10th grade   1.88  6.167979
## 2256             17 years old   Male              12th grade   1.88  6.167979
## 2257             16 years old   Male              11th grade   1.78  5.839895
## 2258    18 years old or older   Male              11th grade     NA        NA
## 2259             17 years old   Male              12th grade   1.85  6.069554
## 2260             17 years old   Male              12th grade   1.75  5.741470
## 2261             16 years old   Male              11th grade   1.85  6.069554
## 2262             16 years old Female              11th grade   1.68  5.511811
## 2263             16 years old   Male              11th grade   1.83  6.003937
## 2264             16 years old   Male              11th grade   1.63  5.347769
## 2265             17 years old   Male              12th grade   1.73  5.675853
## 2266             14 years old Female               9th grade   1.63  5.347769
## 2267             17 years old   Male              11th grade   1.83  6.003937
## 2268             17 years old   Male              12th grade   1.75  5.741470
## 2269             17 years old   Male              11th grade   1.83  6.003937
## 2270             17 years old Female              12th grade   1.68  5.511811
## 2271             17 years old Female              12th grade   1.63  5.347769
## 2272    18 years old or older Female              12th grade   1.63  5.347769
## 2273    18 years old or older   Male              12th grade   1.83  6.003937
## 2274             16 years old Female              10th grade   1.60  5.249344
## 2275             16 years old   Male              11th grade   1.68  5.511811
## 2276    18 years old or older Female              12th grade   1.68  5.511811
## 2277             16 years old   Male              11th grade     NA        NA
## 2278             17 years old   Male              12th grade   1.75  5.741470
## 2279             15 years old Female              10th grade   1.57  5.150919
## 2280             15 years old   Male              10th grade   1.70  5.577428
## 2281             17 years old Female              11th grade   1.65  5.413386
## 2282             17 years old   Male              11th grade   1.70  5.577428
## 2283             17 years old   Male              12th grade   1.68  5.511811
## 2284             14 years old Female               9th grade   1.60  5.249344
## 2285             16 years old Female              10th grade   1.78  5.839895
## 2286    18 years old or older   Male              12th grade   1.83  6.003937
## 2287             17 years old   Male              12th grade   1.80  5.905512
## 2288             16 years old Female              11th grade   1.50  4.921260
## 2289             17 years old Female              12th grade   1.78  5.839895
## 2290             17 years old Female              12th grade     NA        NA
## 2291             17 years old Female              11th grade   1.63  5.347769
## 2292             17 years old   Male              12th grade   1.80  5.905512
## 2293             17 years old Female              12th grade   1.68  5.511811
## 2294             17 years old   Male              12th grade   1.78  5.839895
## 2295             16 years old   Male              11th grade   1.80  5.905512
## 2296             17 years old   Male              12th grade   1.70  5.577428
## 2297    18 years old or older   Male              12th grade   1.85  6.069554
## 2298    18 years old or older Female              12th grade   1.63  5.347769
## 2299    18 years old or older   Male              12th grade   1.80  5.905512
## 2300             15 years old Female              10th grade   1.50  4.921260
## 2301             17 years old   Male              12th grade     NA        NA
## 2302             17 years old Female              12th grade   1.52  4.986877
## 2303             15 years old Female              10th grade   1.65  5.413386
## 2304             17 years old Female              12th grade   1.55  5.085302
## 2305    18 years old or older   Male              12th grade   1.88  6.167979
## 2306             17 years old Female              12th grade   1.57  5.150919
## 2307    18 years old or older   Male              12th grade   1.73  5.675853
## 2308             17 years old   Male              11th grade   1.78  5.839895
## 2309    18 years old or older   Male              12th grade   1.65  5.413386
## 2310    18 years old or older Female              12th grade   1.65  5.413386
## 2311             16 years old   Male              11th grade   1.75  5.741470
## 2312             17 years old   Male              12th grade   1.83  6.003937
## 2313    18 years old or older Female              12th grade   1.60  5.249344
## 2314    18 years old or older   Male              12th grade   1.70  5.577428
## 2315             15 years old Female              10th grade     NA        NA
## 2316             17 years old Female              11th grade   1.75  5.741470
## 2317             17 years old Female              11th grade   1.63  5.347769
## 2318    18 years old or older   Male              12th grade   2.01  6.594488
## 2319    18 years old or older Female              12th grade   1.68  5.511811
## 2320    18 years old or older   Male              12th grade   1.83  6.003937
## 2321    18 years old or older   Male              12th grade   1.80  5.905512
## 2322             17 years old   Male              12th grade   1.78  5.839895
## 2323             15 years old Female              10th grade   1.70  5.577428
## 2324             16 years old Female              11th grade   1.60  5.249344
## 2325             14 years old   Male               9th grade   1.68  5.511811
## 2326    18 years old or older Female              12th grade   1.63  5.347769
## 2327             17 years old   Male              12th grade   1.90  6.233596
## 2328             16 years old   Male              11th grade   1.70  5.577428
## 2329    18 years old or older   Male              12th grade   1.80  5.905512
## 2330             17 years old Female              12th grade     NA        NA
## 2331             17 years old   Male              12th grade   1.85  6.069554
## 2332    18 years old or older   Male              12th grade   1.83  6.003937
## 2333             17 years old Female              11th grade   1.78  5.839895
## 2334    18 years old or older Female              12th grade   1.75  5.741470
## 2335             17 years old Female              12th grade   1.63  5.347769
## 2336             17 years old   Male              11th grade   1.60  5.249344
## 2337             17 years old Female              12th grade   1.63  5.347769
## 2338    18 years old or older   Male              12th grade   1.78  5.839895
## 2339             16 years old Female              10th grade   1.63  5.347769
## 2340    18 years old or older Female              12th grade   1.50  4.921260
## 2341             17 years old   Male              11th grade   1.80  5.905512
## 2342             17 years old Female              12th grade   1.55  5.085302
## 2343             15 years old Female              10th grade     NA        NA
## 2344             17 years old   Male              10th grade   1.73  5.675853
## 2345             16 years old Female              10th grade   1.68  5.511811
## 2346             15 years old Female              10th grade   1.68  5.511811
## 2347             15 years old   Male              10th grade   1.83  6.003937
## 2348             15 years old   Male              10th grade   1.75  5.741470
## 2349             16 years old   Male              10th grade   1.60  5.249344
## 2350             15 years old   Male              10th grade     NA        NA
## 2351             16 years old   Male              10th grade   1.80  5.905512
## 2352             16 years old Female              10th grade     NA        NA
## 2353             15 years old Female              10th grade   1.57  5.150919
## 2354             15 years old   Male              10th grade   1.68  5.511811
## 2355             15 years old   Male              10th grade   1.68  5.511811
## 2356             15 years old   Male              10th grade   1.83  6.003937
## 2357             16 years old   Male              10th grade     NA        NA
## 2358             15 years old   Male               9th grade   1.85  6.069554
## 2359             15 years old   Male               9th grade   1.75  5.741470
## 2360    18 years old or older   Male              12th grade   1.75  5.741470
## 2361             16 years old Female              11th grade   1.57  5.150919
## 2362             17 years old Female              12th grade   1.52  4.986877
## 2363             17 years old   Male              11th grade   1.85  6.069554
## 2364    18 years old or older   Male              11th grade   1.78  5.839895
## 2365             17 years old Female              12th grade   1.70  5.577428
## 2366             17 years old   Male              11th grade   1.68  5.511811
## 2367    18 years old or older   Male              11th grade   1.70  5.577428
## 2368    18 years old or older Female              12th grade   1.73  5.675853
## 2369             17 years old   Male              11th grade   1.73  5.675853
## 2370    18 years old or older Female              12th grade   1.70  5.577428
## 2371             16 years old   Male              11th grade   1.80  5.905512
## 2372             17 years old Female              12th grade   1.63  5.347769
## 2373             17 years old   Male              11th grade   1.78  5.839895
## 2374    18 years old or older Female              12th grade   1.55  5.085302
## 2375             17 years old   Male              11th grade   1.80  5.905512
## 2376    18 years old or older   Male              12th grade   1.73  5.675853
## 2377    18 years old or older   Male              12th grade   1.73  5.675853
## 2378             17 years old Female              11th grade     NA        NA
## 2379             14 years old Female               9th grade   1.55  5.085302
## 2380             17 years old   Male              11th grade   1.78  5.839895
## 2381             17 years old Female              12th grade   1.63  5.347769
## 2382             16 years old   Male              11th grade   1.73  5.675853
## 2383    18 years old or older Female              12th grade   1.55  5.085302
## 2384             16 years old Female              11th grade   1.55  5.085302
## 2385    18 years old or older   Male              12th grade   1.78  5.839895
## 2386             16 years old   Male              11th grade   1.68  5.511811
## 2387             17 years old Female              12th grade   1.60  5.249344
## 2388             16 years old   Male              11th grade   1.88  6.167979
## 2389             17 years old   Male              12th grade     NA        NA
## 2390             17 years old Female              12th grade   1.55  5.085302
## 2391             16 years old   Male              11th grade   1.88  6.167979
## 2392             15 years old Female               9th grade   1.50  4.921260
## 2393             17 years old Female              11th grade   1.52  4.986877
## 2394    18 years old or older   Male              12th grade   1.75  5.741470
## 2395    18 years old or older   Male              12th grade     NA        NA
## 2396             17 years old   Male              12th grade   1.90  6.233596
## 2397             17 years old   Male              12th grade   1.73  5.675853
## 2398             17 years old   Male              12th grade   1.80  5.905512
## 2399             17 years old   Male              11th grade   1.83  6.003937
## 2400             15 years old Female               9th grade   1.57  5.150919
## 2401             14 years old   Male               9th grade   1.83  6.003937
## 2402             17 years old   Male              12th grade   1.75  5.741470
## 2403             14 years old   Male               9th grade   1.78  5.839895
## 2404             14 years old   Male               9th grade   1.70  5.577428
## 2405             17 years old Female              12th grade   1.60  5.249344
## 2406             17 years old   Male              12th grade   1.75  5.741470
## 2407             16 years old   Male              11th grade   1.78  5.839895
## 2408             15 years old Female               9th grade   1.68  5.511811
## 2409             17 years old   Male              12th grade   1.68  5.511811
## 2410             17 years old   Male              11th grade   1.80  5.905512
## 2411             17 years old Female              12th grade   1.70  5.577428
## 2412             14 years old   Male               9th grade   1.78  5.839895
## 2413             15 years old Female               9th grade   1.73  5.675853
## 2414             14 years old Female               9th grade     NA        NA
## 2415             14 years old   Male               9th grade   1.70  5.577428
## 2416             14 years old Female               9th grade   1.63  5.347769
## 2417             15 years old Female               9th grade   1.52  4.986877
## 2418             14 years old   Male               9th grade   1.78  5.839895
## 2419             14 years old Female               9th grade   1.60  5.249344
## 2420             15 years old   Male               9th grade   1.88  6.167979
## 2421             15 years old Female               9th grade     NA        NA
## 2422             15 years old Female              10th grade   1.60  5.249344
## 2423             16 years old Female              10th grade   1.52  4.986877
## 2424             16 years old Female              10th grade   1.60  5.249344
## 2425             15 years old   Male              10th grade   1.70  5.577428
## 2426             16 years old Female              10th grade   1.60  5.249344
## 2427             17 years old Female              11th grade     NA        NA
## 2428             17 years old Female              11th grade   1.50  4.921260
## 2429             17 years old   Male              12th grade   1.70  5.577428
## 2430             14 years old Female               9th grade   1.50  4.921260
## 2431             16 years old Female              10th grade   1.75  5.741470
## 2432             17 years old Female              10th grade   1.57  5.150919
## 2433             17 years old   Male              11th grade   1.83  6.003937
## 2434             17 years old Female              11th grade   1.55  5.085302
## 2435    18 years old or older Female              12th grade   1.63  5.347769
## 2436    18 years old or older   Male              12th grade   1.60  5.249344
## 2437             14 years old Female               9th grade   1.63  5.347769
## 2438             14 years old   Male               9th grade   1.63  5.347769
## 2439             16 years old   Male              10th grade   1.75  5.741470
## 2440             15 years old   Male                    <NA>   1.73  5.675853
## 2441             16 years old Female              11th grade   1.57  5.150919
## 2442             17 years old Female              11th grade   1.60  5.249344
## 2443             17 years old   Male              12th grade   1.70  5.577428
## 2444             17 years old Female              12th grade   1.60  5.249344
## 2445             15 years old   Male               9th grade     NA        NA
## 2446             14 years old   Male               9th grade   1.75  5.741470
## 2447             16 years old   Male              10th grade   1.78  5.839895
## 2448             15 years old Female              10th grade   1.63  5.347769
## 2449             17 years old   Male              11th grade   1.70  5.577428
## 2450             17 years old   Male              12th grade   1.83  6.003937
## 2451    18 years old or older Female              12th grade   1.85  6.069554
## 2452             14 years old   Male               9th grade   1.73  5.675853
## 2453             14 years old   Male               9th grade     NA        NA
## 2454             16 years old Female              10th grade   1.55  5.085302
## 2455             16 years old Female              10th grade   1.60  5.249344
## 2456             17 years old Female              11th grade   1.45  4.757218
## 2457             16 years old Female              11th grade   1.63  5.347769
## 2458             17 years old Female              12th grade   1.52  4.986877
## 2459             14 years old Female               9th grade     NA        NA
## 2460             14 years old   Male               9th grade     NA        NA
## 2461             15 years old   Male              10th grade   1.68  5.511811
## 2462             16 years old Female              10th grade   1.65  5.413386
## 2463             16 years old   Male              11th grade   1.83  6.003937
## 2464             16 years old Female              11th grade   1.57  5.150919
## 2465             15 years old Female               9th grade   1.60  5.249344
## 2466             14 years old Female               9th grade   1.63  5.347769
## 2467             17 years old Female              10th grade   1.68  5.511811
## 2468             16 years old   Male              10th grade   1.75  5.741470
## 2469             17 years old Female              11th grade   1.70  5.577428
## 2470             16 years old   Male              11th grade   1.85  6.069554
## 2471    18 years old or older Female              12th grade   1.57  5.150919
## 2472             17 years old Female              12th grade   1.60  5.249344
## 2473             14 years old Female               9th grade   1.55  5.085302
## 2474             16 years old Female              10th grade   1.47  4.822835
## 2475             15 years old   <NA>              10th grade     NA        NA
## 2476             17 years old   Male              11th grade   1.65  5.413386
## 2477             14 years old Female               9th grade   1.63  5.347769
## 2478             14 years old Female               9th grade   1.55  5.085302
## 2479             15 years old Female              10th grade   1.57  5.150919
## 2480             16 years old Female              10th grade   1.68  5.511811
## 2481             16 years old Female              11th grade   1.55  5.085302
## 2482             14 years old Female               9th grade   1.68  5.511811
## 2483             16 years old   Male              10th grade   1.63  5.347769
## 2484             16 years old   Male              10th grade   1.73  5.675853
## 2485             16 years old   Male              11th grade   1.75  5.741470
## 2486             17 years old   Male              11th grade   1.70  5.577428
## 2487             17 years old Female              12th grade   1.68  5.511811
## 2488    18 years old or older   Male              12th grade   1.90  6.233596
## 2489             15 years old Female               9th grade   1.55  5.085302
## 2490             14 years old   Male               9th grade   1.80  5.905512
## 2491             16 years old   Male              10th grade   1.83  6.003937
## 2492             16 years old Female              10th grade   1.45  4.757218
## 2493             14 years old   Male               9th grade     NA        NA
## 2494             15 years old   Male               9th grade   1.73  5.675853
## 2495             16 years old Female              10th grade   1.63  5.347769
## 2496             16 years old   Male               9th grade   1.96  6.430446
## 2497             14 years old Female               9th grade   1.65  5.413386
## 2498             16 years old   Male              11th grade   1.83  6.003937
## 2499             15 years old   Male              10th grade   1.73  5.675853
## 2500             16 years old   Male              11th grade   1.75  5.741470
## 2501             17 years old Female              11th grade     NA        NA
## 2502             17 years old   Male              12th grade   1.65  5.413386
## 2503             17 years old   Male              12th grade   1.73  5.675853
## 2504             15 years old Female               9th grade   1.63  5.347769
## 2505             14 years old Female               9th grade   1.55  5.085302
## 2506             15 years old Female              10th grade     NA        NA
## 2507             16 years old Female              10th grade   1.65  5.413386
## 2508             16 years old Female              11th grade   1.57  5.150919
## 2509    18 years old or older Female              12th grade   1.60  5.249344
## 2510             17 years old Female              12th grade   1.68  5.511811
## 2511             16 years old   Male               9th grade   1.73  5.675853
## 2512             16 years old   Male              10th grade   1.75  5.741470
## 2513             15 years old   Male              10th grade   1.83  6.003937
## 2514             17 years old   Male              11th grade   1.68  5.511811
## 2515             17 years old   Male              11th grade   1.73  5.675853
## 2516    18 years old or older   Male              12th grade   1.83  6.003937
## 2517             14 years old   Male               9th grade   1.65  5.413386
## 2518             15 years old   Male               9th grade   1.75  5.741470
## 2519             16 years old Female              10th grade   1.65  5.413386
## 2520             16 years old Female              10th grade     NA        NA
## 2521             16 years old   Male              11th grade   1.83  6.003937
## 2522             16 years old Female              11th grade   1.63  5.347769
## 2523             14 years old   Male               9th grade   1.70  5.577428
## 2524             17 years old   Male              11th grade   1.75  5.741470
## 2525             16 years old Female              11th grade   1.57  5.150919
## 2526             16 years old Female              11th grade   1.68  5.511811
## 2527             14 years old   Male               9th grade   1.57  5.150919
## 2528             14 years old Female               9th grade   1.57  5.150919
## 2529             16 years old Female              10th grade   1.68  5.511811
## 2530             16 years old Female              10th grade   1.68  5.511811
## 2531             16 years old Female              11th grade   1.63  5.347769
## 2532    18 years old or older   Male              11th grade   1.85  6.069554
## 2533             17 years old   Male              12th grade   1.83  6.003937
## 2534             17 years old Female              12th grade   1.52  4.986877
## 2535             15 years old Female               9th grade     NA        NA
## 2536             15 years old   Male               9th grade   1.73  5.675853
## 2537             15 years old   Male              10th grade   1.75  5.741470
## 2538    18 years old or older Female              12th grade   1.55  5.085302
## 2539             17 years old   Male              12th grade   1.75  5.741470
## 2540             15 years old Female               9th grade   1.73  5.675853
## 2541             14 years old Female               9th grade     NA        NA
## 2542             16 years old Female              10th grade     NA        NA
## 2543             16 years old   Male              10th grade   1.83  6.003937
## 2544             17 years old   Male              11th grade   1.83  6.003937
## 2545             17 years old Female              11th grade   1.70  5.577428
## 2546    18 years old or older   Male              12th grade   1.90  6.233596
## 2547             17 years old Female              12th grade   1.57  5.150919
## 2548             15 years old   Male               9th grade   1.52  4.986877
## 2549             14 years old   Male               9th grade   1.63  5.347769
## 2550             16 years old   Male              10th grade   1.63  5.347769
## 2551             15 years old   <NA>              10th grade     NA        NA
## 2552             17 years old Female              11th grade   1.57  5.150919
## 2553             17 years old   Male              11th grade   1.83  6.003937
## 2554             17 years old Female              12th grade   1.55  5.085302
## 2555    18 years old or older Female              12th grade   1.65  5.413386
## 2556             15 years old Female               9th grade   1.60  5.249344
## 2557             17 years old   Male              11th grade   1.78  5.839895
## 2558             14 years old   Male               9th grade   1.75  5.741470
## 2559             17 years old   Male              11th grade   1.96  6.430446
## 2560             16 years old   Male              11th grade   1.83  6.003937
## 2561    18 years old or older Female              12th grade   1.63  5.347769
## 2562    18 years old or older   Male              12th grade   1.80  5.905512
## 2563             15 years old Female               9th grade     NA        NA
## 2564    18 years old or older Female              12th grade   1.68  5.511811
## 2565             17 years old Female              12th grade   1.57  5.150919
## 2566    18 years old or older Female              12th grade   1.55  5.085302
## 2567    18 years old or older Female              12th grade   1.52  4.986877
## 2568    18 years old or older Female              12th grade   1.57  5.150919
## 2569    18 years old or older   Male              12th grade   1.70  5.577428
## 2570             15 years old Female               9th grade   1.70  5.577428
## 2571             16 years old   Male              11th grade   1.93  6.332021
## 2572             16 years old   Male              10th grade   1.80  5.905512
## 2573             17 years old Female              11th grade   1.57  5.150919
## 2574             15 years old Female              10th grade   1.68  5.511811
## 2575             17 years old   Male              11th grade   2.01  6.594488
## 2576             15 years old Female               9th grade   1.65  5.413386
## 2577    18 years old or older Female              12th grade   1.55  5.085302
## 2578             15 years old Female              10th grade   1.75  5.741470
## 2579    18 years old or older Female              12th grade   1.68  5.511811
## 2580             14 years old Female               9th grade   1.63  5.347769
## 2581             17 years old Female              12th grade   1.78  5.839895
## 2582             15 years old Female              10th grade   1.55  5.085302
## 2583    18 years old or older   Male              12th grade   1.73  5.675853
## 2584    18 years old or older Female              12th grade   1.50  4.921260
## 2585             15 years old   Male               9th grade   1.68  5.511811
## 2586             15 years old Female               9th grade   1.65  5.413386
## 2587             17 years old   Male              12th grade   1.73  5.675853
## 2588             16 years old Female              10th grade   1.57  5.150919
## 2589             17 years old Female              12th grade   1.63  5.347769
## 2590             14 years old   Male               9th grade   1.75  5.741470
## 2591             17 years old Female              12th grade   1.57  5.150919
## 2592             15 years old   Male              10th grade   1.68  5.511811
## 2593    18 years old or older   Male              12th grade   1.70  5.577428
## 2594             15 years old   Male               9th grade   1.78  5.839895
## 2595             17 years old   Male              12th grade   1.68  5.511811
## 2596             15 years old   Male              10th grade   1.85  6.069554
## 2597             15 years old   Male               9th grade   1.75  5.741470
## 2598             17 years old Female              11th grade   1.78  5.839895
## 2599             16 years old   Male              10th grade   1.83  6.003937
## 2600             17 years old Female              12th grade   1.52  4.986877
## 2601             15 years old   Male               9th grade   1.75  5.741470
## 2602             17 years old Female              12th grade   1.52  4.986877
## 2603             16 years old   Male              10th grade   1.65  5.413386
## 2604             17 years old Female              12th grade   1.63  5.347769
## 2605             15 years old   Male               9th grade   1.75  5.741470
## 2606             17 years old   Male              12th grade   1.57  5.150919
## 2607             16 years old Female              10th grade   1.68  5.511811
## 2608             17 years old Female              12th grade   1.63  5.347769
## 2609             15 years old   Male               9th grade   1.68  5.511811
## 2610    18 years old or older   Male              12th grade   1.83  6.003937
## 2611             15 years old   Male              10th grade     NA        NA
## 2612             14 years old Female               9th grade   1.70  5.577428
## 2613             17 years old Female              12th grade   1.63  5.347769
## 2614             16 years old   Male              10th grade   1.80  5.905512
## 2615    18 years old or older Female              12th grade   1.68  5.511811
## 2616    18 years old or older   Male              12th grade   1.78  5.839895
## 2617             16 years old Female              10th grade   1.57  5.150919
## 2618             17 years old   Male              11th grade   1.93  6.332021
## 2619             14 years old   Male               9th grade   1.68  5.511811
## 2620             17 years old   Male              12th grade   1.85  6.069554
## 2621             15 years old Female              10th grade   1.50  4.921260
## 2622             17 years old Female              12th grade   1.50  4.921260
## 2623             17 years old   Male              11th grade   1.98  6.496063
## 2624             15 years old   Male              10th grade   1.88  6.167979
## 2625    18 years old or older   Male              12th grade   1.80  5.905512
## 2626             14 years old Female               9th grade   1.60  5.249344
## 2627    18 years old or older   Male              12th grade   1.73  5.675853
## 2628             16 years old   Male              10th grade   1.78  5.839895
## 2629             16 years old Female              10th grade   1.68  5.511811
## 2630    18 years old or older Female              12th grade   1.68  5.511811
## 2631             15 years old   Male               9th grade   1.73  5.675853
## 2632             17 years old   Male              12th grade   1.70  5.577428
## 2633             15 years old   Male              10th grade   1.70  5.577428
## 2634             17 years old Female              12th grade   1.70  5.577428
## 2635             14 years old   Male               9th grade   1.75  5.741470
## 2636    18 years old or older   Male              12th grade   1.88  6.167979
## 2637             16 years old   Male              10th grade   1.73  5.675853
## 2638    18 years old or older Female              12th grade   1.70  5.577428
## 2639             16 years old Female              11th grade   1.65  5.413386
## 2640             15 years old Female              10th grade   1.57  5.150919
## 2641             17 years old Female              12th grade   1.60  5.249344
## 2642             17 years old Female              12th grade   1.63  5.347769
## 2643             16 years old Female              10th grade   1.55  5.085302
## 2644    18 years old or older   Male              12th grade   1.73  5.675853
## 2645             14 years old   Male               9th grade     NA        NA
## 2646             17 years old Female              11th grade   1.55  5.085302
## 2647             16 years old   Male              10th grade   1.70  5.577428
## 2648    18 years old or older Female              12th grade   1.63  5.347769
## 2649             15 years old   Male               9th grade   1.80  5.905512
## 2650    18 years old or older Female              12th grade   1.52  4.986877
## 2651             16 years old   Male              10th grade   1.73  5.675853
## 2652    18 years old or older Female              12th grade     NA        NA
## 2653             14 years old   Male               9th grade   1.63  5.347769
## 2654             17 years old Female              12th grade     NA        NA
## 2655             16 years old   Male              10th grade   1.80  5.905512
## 2656             15 years old Female               9th grade   1.60  5.249344
## 2657             15 years old Female               9th grade   1.57  5.150919
## 2658             15 years old Female              10th grade   1.68  5.511811
## 2659             17 years old Female              11th grade   1.75  5.741470
## 2660             15 years old   Male               9th grade     NA        NA
## 2661             16 years old Female              10th grade   1.60  5.249344
## 2662             17 years old Female              11th grade   1.55  5.085302
## 2663             15 years old Female               9th grade   1.63  5.347769
## 2664    18 years old or older   Male              12th grade   1.83  6.003937
## 2665             16 years old   Male               9th grade   1.68  5.511811
## 2666             16 years old Female              10th grade   1.55  5.085302
## 2667             15 years old Female               9th grade   1.75  5.741470
## 2668             16 years old Female              10th grade   1.63  5.347769
## 2669             17 years old   Male              11th grade   1.70  5.577428
## 2670             15 years old   Male               9th grade   1.80  5.905512
## 2671             16 years old Female              10th grade   1.65  5.413386
## 2672             15 years old Female              10th grade   1.73  5.675853
## 2673             15 years old Female               9th grade   1.52  4.986877
## 2674             15 years old   Male               9th grade   1.75  5.741470
## 2675             17 years old Female              11th grade   1.70  5.577428
## 2676             16 years old Female              11th grade   1.63  5.347769
## 2677             17 years old Female              12th grade   1.55  5.085302
## 2678             15 years old Female              10th grade   1.50  4.921260
## 2679             17 years old Female              11th grade   1.70  5.577428
## 2680             16 years old   Male               9th grade   1.65  5.413386
## 2681             16 years old Female              10th grade   1.42  4.658793
## 2682             17 years old Female              11th grade   1.65  5.413386
## 2683             17 years old   Male              11th grade   1.73  5.675853
## 2684             15 years old Female              10th grade   1.65  5.413386
## 2685    18 years old or older Female              11th grade   1.50  4.921260
## 2686             15 years old   Male               9th grade   1.75  5.741470
## 2687             16 years old Female              10th grade   1.60  5.249344
## 2688             15 years old   Male              10th grade   1.90  6.233596
## 2689             17 years old   Male              11th grade   1.93  6.332021
## 2690             17 years old Female              11th grade   1.68  5.511811
## 2691             15 years old   Male               9th grade   1.75  5.741470
## 2692             15 years old   Male              10th grade   1.70  5.577428
## 2693             17 years old   Male              11th grade   1.80  5.905512
## 2694             15 years old   Male               9th grade   1.78  5.839895
## 2695             16 years old Female              10th grade   1.60  5.249344
## 2696             14 years old   Male               9th grade   1.83  6.003937
## 2697             17 years old   Male              11th grade   1.90  6.233596
## 2698             15 years old   Male               9th grade   1.68  5.511811
## 2699             15 years old   Male              10th grade   1.78  5.839895
## 2700             15 years old Female              10th grade   1.55  5.085302
## 2701             17 years old   Male              11th grade   1.70  5.577428
## 2702             15 years old   Male              10th grade   1.73  5.675853
## 2703             17 years old Female              11th grade   1.63  5.347769
## 2704             14 years old Female               9th grade   1.68  5.511811
## 2705             15 years old Female              10th grade   1.70  5.577428
## 2706             15 years old   Male               9th grade   1.78  5.839895
## 2707             15 years old   Male              10th grade   1.90  6.233596
## 2708             16 years old   Male               9th grade   1.70  5.577428
## 2709             16 years old Female              10th grade   1.63  5.347769
## 2710             14 years old Female               9th grade   1.68  5.511811
## 2711             15 years old   Male              10th grade   1.78  5.839895
## 2712             16 years old Female              11th grade   1.57  5.150919
## 2713             15 years old Female               9th grade   1.57  5.150919
## 2714             17 years old   Male              11th grade   1.80  5.905512
## 2715             16 years old Female              10th grade   1.55  5.085302
## 2716             16 years old Female              11th grade   1.63  5.347769
## 2717             14 years old   Male               9th grade   1.65  5.413386
## 2718             16 years old   Male               9th grade   1.78  5.839895
## 2719             15 years old Female              10th grade   1.70  5.577428
## 2720             16 years old   Male              10th grade   1.83  6.003937
## 2721             14 years old   Male               9th grade     NA        NA
## 2722             16 years old   Male              10th grade   1.88  6.167979
## 2723             16 years old Female              10th grade   1.60  5.249344
## 2724             17 years old   Male              11th grade   1.70  5.577428
## 2725             16 years old   Male               9th grade   1.65  5.413386
## 2726             14 years old Female               9th grade   1.60  5.249344
## 2727             15 years old   Male               9th grade   1.68  5.511811
## 2728             14 years old Female               9th grade   1.65  5.413386
## 2729    18 years old or older Female              12th grade   1.60  5.249344
## 2730             16 years old   Male              10th grade   1.68  5.511811
## 2731    18 years old or older   Male              11th grade   1.80  5.905512
## 2732             14 years old Female               9th grade   1.57  5.150919
## 2733    18 years old or older Female              12th grade   1.52  4.986877
## 2734             16 years old   Male              10th grade   1.73  5.675853
## 2735    18 years old or older Female              11th grade   1.65  5.413386
## 2736             15 years old Female               9th grade   1.65  5.413386
## 2737             17 years old   Male              12th grade   1.75  5.741470
## 2738             17 years old   Male              10th grade   1.78  5.839895
## 2739             17 years old   Male              11th grade   1.85  6.069554
## 2740             15 years old Female               9th grade   1.55  5.085302
## 2741    18 years old or older Female              12th grade   1.55  5.085302
## 2742             16 years old Female              10th grade   1.57  5.150919
## 2743             16 years old   Male              11th grade   1.73  5.675853
## 2744             15 years old Female               9th grade   1.63  5.347769
## 2745    18 years old or older   Male              12th grade   1.68  5.511811
## 2746             16 years old   Male              11th grade   1.80  5.905512
## 2747             15 years old   Male               9th grade   1.73  5.675853
## 2748             16 years old Female              11th grade   1.52  4.986877
## 2749             16 years old   Male              10th grade   1.75  5.741470
## 2750             17 years old   Male              11th grade   1.65  5.413386
## 2751             14 years old   Male               9th grade   1.68  5.511811
## 2752             17 years old   Male              11th grade   1.75  5.741470
## 2753             17 years old   Male              12th grade   1.78  5.839895
## 2754             16 years old Female              11th grade   1.57  5.150919
## 2755             15 years old Female               9th grade   1.47  4.822835
## 2756             17 years old Female              10th grade   1.60  5.249344
## 2757             16 years old Female              11th grade   1.63  5.347769
## 2758             15 years old Female               9th grade   1.52  4.986877
## 2759    18 years old or older Female              12th grade   1.70  5.577428
## 2760             17 years old   Male              11th grade   1.78  5.839895
## 2761             17 years old Female              11th grade   1.50  4.921260
## 2762             14 years old   Male               9th grade   1.55  5.085302
## 2763    18 years old or older Female              12th grade   1.63  5.347769
## 2764             16 years old Female              10th grade   1.50  4.921260
## 2765             14 years old Female               9th grade   1.60  5.249344
## 2766             15 years old Female               9th grade   1.55  5.085302
## 2767             17 years old Female              12th grade   1.65  5.413386
## 2768             16 years old   Male              10th grade   1.83  6.003937
## 2769             16 years old   Male              11th grade   1.83  6.003937
## 2770             16 years old Female               9th grade   1.73  5.675853
## 2771    18 years old or older Female              12th grade   1.70  5.577428
## 2772             15 years old   Male              10th grade   1.68  5.511811
## 2773             17 years old Female              11th grade     NA        NA
## 2774             15 years old   Male               9th grade   1.78  5.839895
## 2775             17 years old   Male              12th grade   1.73  5.675853
## 2776             16 years old   Male              10th grade   1.78  5.839895
## 2777             16 years old Female              11th grade   1.57  5.150919
## 2778             14 years old   Male               9th grade   1.65  5.413386
## 2779             16 years old Female              11th grade   1.70  5.577428
## 2780             17 years old   Male              11th grade   1.78  5.839895
## 2781             15 years old Female               9th grade   1.70  5.577428
## 2782             17 years old Female              12th grade   1.73  5.675853
## 2783             17 years old Female              11th grade   1.63  5.347769
## 2784             15 years old   Male               9th grade   1.96  6.430446
## 2785             17 years old Female              12th grade   1.57  5.150919
## 2786             15 years old Female              10th grade   1.70  5.577428
## 2787             17 years old   Male              11th grade   1.78  5.839895
## 2788             16 years old   Male               9th grade   1.57  5.150919
## 2789    18 years old or older   Male              12th grade   1.83  6.003937
## 2790             17 years old Female              10th grade   1.63  5.347769
## 2791             17 years old   Male              11th grade   1.73  5.675853
## 2792             15 years old Female               9th grade   1.55  5.085302
## 2793             17 years old   Male              12th grade   1.88  6.167979
## 2794             16 years old Female              10th grade   1.63  5.347769
## 2795             17 years old Female              11th grade   1.63  5.347769
## 2796             15 years old   Male               9th grade   1.80  5.905512
## 2797             17 years old Female              12th grade   1.55  5.085302
## 2798             14 years old Female               9th grade   1.70  5.577428
## 2799             17 years old Female              12th grade   1.57  5.150919
## 2800             14 years old Female               9th grade   1.57  5.150919
## 2801    18 years old or older   Male              12th grade   1.73  5.675853
## 2802             14 years old Female               9th grade   1.55  5.085302
## 2803             15 years old Female               9th grade   1.63  5.347769
## 2804             16 years old Female              11th grade   1.65  5.413386
## 2805             15 years old   Male               9th grade     NA        NA
## 2806             15 years old   Male               9th grade   1.70  5.577428
## 2807             15 years old   Male               9th grade   1.65  5.413386
## 2808    18 years old or older   Male              12th grade   1.90  6.233596
## 2809             15 years old   Male              10th grade   1.70  5.577428
## 2810             17 years old Female              11th grade   1.65  5.413386
## 2811             14 years old   Male               9th grade   1.83  6.003937
## 2812             17 years old Female              12th grade   1.68  5.511811
## 2813             15 years old   Male              10th grade   1.65  5.413386
## 2814             17 years old Female              11th grade   1.63  5.347769
## 2815             17 years old   Male              12th grade   1.83  6.003937
## 2816             16 years old   Male              10th grade   1.73  5.675853
## 2817             17 years old Female              12th grade   1.63  5.347769
## 2818             17 years old Female              12th grade   1.60  5.249344
## 2819             17 years old   Male              12th grade   1.78  5.839895
## 2820             17 years old Female              12th grade   1.65  5.413386
## 2821    18 years old or older Female              12th grade   1.52  4.986877
## 2822             17 years old   Male              11th grade   1.68  5.511811
## 2823    18 years old or older Female              12th grade     NA        NA
## 2824             17 years old   Male              12th grade   1.78  5.839895
## 2825             17 years old Female              11th grade   1.65  5.413386
## 2826             17 years old   Male              12th grade     NA        NA
## 2827    18 years old or older   Male              12th grade   1.75  5.741470
## 2828    18 years old or older Female              12th grade   1.65  5.413386
## 2829    18 years old or older   Male              12th grade   1.68  5.511811
## 2830             17 years old   Male              12th grade   1.78  5.839895
## 2831    18 years old or older   Male              12th grade   1.73  5.675853
## 2832    18 years old or older   Male              12th grade   1.83  6.003937
## 2833             17 years old   Male              12th grade   1.78  5.839895
## 2834    18 years old or older Female              12th grade   1.63  5.347769
## 2835    18 years old or older Female              11th grade   1.57  5.150919
## 2836             15 years old   Male               9th grade   1.70  5.577428
## 2837             15 years old Female              10th grade   1.55  5.085302
## 2838    18 years old or older   Male              12th grade   1.88  6.167979
## 2839             16 years old   Male              11th grade   1.75  5.741470
## 2840             14 years old   Male               9th grade   1.68  5.511811
## 2841             16 years old Female              10th grade   1.70  5.577428
## 2842             15 years old   Male              10th grade   1.78  5.839895
## 2843             15 years old Female               9th grade   1.68  5.511811
## 2844             16 years old Female              10th grade   1.63  5.347769
## 2845             17 years old Female              12th grade   1.75  5.741470
## 2846             16 years old Female              11th grade     NA        NA
## 2847             15 years old Female               9th grade   1.55  5.085302
## 2848             15 years old Female              10th grade   1.52  4.986877
## 2849    18 years old or older   Male              12th grade   1.80  5.905512
## 2850             16 years old Female              11th grade   1.68  5.511811
## 2851             15 years old Female               9th grade   1.65  5.413386
## 2852             15 years old   Male              10th grade     NA        NA
## 2853             17 years old   Male              12th grade   1.78  5.839895
## 2854             14 years old   Male               9th grade   1.65  5.413386
## 2855    18 years old or older   Male              12th grade     NA        NA
## 2856    18 years old or older   Male              12th grade   1.83  6.003937
## 2857             15 years old Female              10th grade     NA        NA
## 2858             14 years old   Male               9th grade   1.80  5.905512
## 2859             16 years old   Male              10th grade   1.70  5.577428
## 2860             16 years old Female              11th grade   1.60  5.249344
## 2861             16 years old Female              10th grade   1.52  4.986877
## 2862             16 years old Female              11th grade   1.57  5.150919
## 2863             16 years old   Male              10th grade   1.73  5.675853
## 2864             17 years old Female              12th grade   1.63  5.347769
## 2865             14 years old   Male               9th grade   1.73  5.675853
## 2866  12 years old or younger Female               9th grade     NA        NA
## 2867             17 years old   Male              11th grade   1.85  6.069554
## 2868             14 years old Female               9th grade   1.63  5.347769
## 2869             15 years old Female              10th grade   1.50  4.921260
## 2870             17 years old Female              11th grade   1.68  5.511811
## 2871             15 years old   Male               9th grade   1.78  5.839895
## 2872             15 years old Female              10th grade   1.70  5.577428
## 2873             16 years old Female              11th grade   1.50  4.921260
## 2874             17 years old Female              11th grade   1.75  5.741470
## 2875             15 years old   Male               9th grade   1.78  5.839895
## 2876             14 years old Female               9th grade   1.57  5.150919
## 2877    18 years old or older   Male              12th grade   1.65  5.413386
## 2878             16 years old Female              10th grade   1.63  5.347769
## 2879             15 years old   Male              10th grade   1.78  5.839895
## 2880    18 years old or older Female              12th grade   1.63  5.347769
## 2881             16 years old Female              11th grade   1.57  5.150919
## 2882             14 years old Female               9th grade   1.65  5.413386
## 2883             16 years old   Male              10th grade   1.80  5.905512
## 2884             16 years old   Male              10th grade   1.75  5.741470
## 2885             17 years old   Male              11th grade   1.83  6.003937
## 2886             14 years old   Male               9th grade   1.75  5.741470
## 2887             16 years old   Male              10th grade   1.68  5.511811
## 2888             16 years old Female              11th grade     NA        NA
## 2889             17 years old   Male              11th grade   1.88  6.167979
## 2890             14 years old Female               9th grade   1.68  5.511811
## 2891             15 years old Female              10th grade   1.60  5.249344
## 2892             14 years old Female               9th grade     NA        NA
## 2893    18 years old or older Female              12th grade   1.55  5.085302
## 2894             16 years old   Male              11th grade   1.83  6.003937
## 2895             14 years old   Male               9th grade   1.80  5.905512
## 2896             15 years old Female              10th grade   1.65  5.413386
## 2897             17 years old Female              11th grade   1.70  5.577428
## 2898             15 years old   Male               9th grade   1.78  5.839895
## 2899             16 years old Female              11th grade   1.60  5.249344
## 2900             16 years old Female              10th grade   1.63  5.347769
## 2901             15 years old   Male               9th grade   1.70  5.577428
## 2902             16 years old   Male              10th grade   1.85  6.069554
## 2903    18 years old or older Female              12th grade   1.65  5.413386
## 2904    18 years old or older   Male              12th grade   1.85  6.069554
## 2905             17 years old   Male              11th grade   1.73  5.675853
## 2906             14 years old Female               9th grade   1.63  5.347769
## 2907             16 years old Female              10th grade   1.60  5.249344
## 2908    18 years old or older   Male              12th grade   1.73  5.675853
## 2909             16 years old   Male              11th grade   1.85  6.069554
## 2910             14 years old Female               9th grade   1.65  5.413386
## 2911             15 years old Female              10th grade   1.68  5.511811
## 2912             17 years old   Male              12th grade   1.78  5.839895
## 2913             16 years old   Male              11th grade   1.88  6.167979
## 2914             15 years old Female               9th grade   1.70  5.577428
## 2915             15 years old Female              10th grade   1.68  5.511811
## 2916             17 years old Female              11th grade   1.78  5.839895
## 2917             15 years old   Male               9th grade   1.63  5.347769
## 2918             16 years old Female              10th grade   1.65  5.413386
## 2919             17 years old   Male              12th grade   1.75  5.741470
## 2920             17 years old Female              11th grade   1.55  5.085302
## 2921             15 years old Female               9th grade   1.65  5.413386
## 2922    18 years old or older   Male              12th grade   1.78  5.839895
## 2923             16 years old Female              11th grade   1.65  5.413386
## 2924             15 years old Female               9th grade   1.63  5.347769
## 2925             16 years old Female              10th grade   1.55  5.085302
## 2926             17 years old   Male              12th grade   1.80  5.905512
## 2927             16 years old Female              11th grade   1.57  5.150919
## 2928             14 years old Female               9th grade   1.57  5.150919
## 2929             15 years old   Male              10th grade   1.83  6.003937
## 2930    18 years old or older   Male              12th grade   1.90  6.233596
## 2931             17 years old Female              11th grade   1.60  5.249344
## 2932             15 years old   Male               9th grade   1.70  5.577428
## 2933             17 years old   Male              11th grade   1.80  5.905512
## 2934             17 years old   Male              12th grade   1.78  5.839895
## 2935             15 years old Female               9th grade   1.57  5.150919
## 2936             14 years old   Male               9th grade   1.73  5.675853
## 2937             16 years old Female              10th grade   1.55  5.085302
## 2938    18 years old or older Female              12th grade   1.60  5.249344
## 2939             15 years old Female               9th grade   1.57  5.150919
## 2940             15 years old   Male               9th grade   1.57  5.150919
## 2941    18 years old or older   Male              12th grade   1.70  5.577428
## 2942             15 years old   Male               9th grade   1.75  5.741470
## 2943             15 years old   Male               9th grade   1.75  5.741470
## 2944             15 years old   Male              10th grade   1.75  5.741470
## 2945             17 years old Female              12th grade   1.42  4.658793
## 2946             15 years old Female               9th grade   1.52  4.986877
## 2947             14 years old Female               9th grade   1.63  5.347769
## 2948             15 years old Female              10th grade   1.65  5.413386
## 2949             17 years old   Male              12th grade   1.93  6.332021
## 2950             15 years old   Male               9th grade   1.70  5.577428
## 2951             15 years old Female               9th grade   1.68  5.511811
## 2952             15 years old Female              10th grade   1.50  4.921260
## 2953             17 years old Female              12th grade   1.75  5.741470
## 2954             14 years old Female               9th grade   1.68  5.511811
## 2955             15 years old Female               9th grade   1.50  4.921260
## 2956             16 years old   Male              10th grade   1.80  5.905512
## 2957    18 years old or older   Male              12th grade   1.73  5.675853
## 2958             15 years old Female               9th grade   1.52  4.986877
## 2959             15 years old   Male              10th grade   1.90  6.233596
## 2960    18 years old or older   Male              12th grade   1.85  6.069554
## 2961             15 years old Female               9th grade   1.60  5.249344
## 2962             15 years old Female               9th grade   1.80  5.905512
## 2963             17 years old Female              12th grade   1.57  5.150919
## 2964             15 years old   Male               9th grade   1.75  5.741470
## 2965             16 years old   Male              10th grade   1.80  5.905512
## 2966             17 years old Female              12th grade   1.68  5.511811
## 2967             15 years old   Male               9th grade   1.70  5.577428
## 2968             15 years old   Male              10th grade   1.85  6.069554
## 2969    18 years old or older   Male              12th grade   1.85  6.069554
## 2970             14 years old Female               9th grade   1.65  5.413386
## 2971             15 years old Female               9th grade   1.57  5.150919
## 2972             15 years old Female              10th grade   1.63  5.347769
## 2973    18 years old or older Female              12th grade   1.60  5.249344
## 2974             14 years old Female               9th grade   1.68  5.511811
## 2975             15 years old Female               9th grade   1.63  5.347769
## 2976             15 years old Female              10th grade   1.65  5.413386
## 2977             17 years old Female              12th grade   1.68  5.511811
## 2978             14 years old Female               9th grade   1.60  5.249344
## 2979             16 years old   Male              10th grade   1.73  5.675853
## 2980    18 years old or older   Male              12th grade   1.80  5.905512
## 2981                     <NA> Female               9th grade     NA        NA
## 2982             14 years old Female               9th grade   1.60  5.249344
## 2983             15 years old   Male              10th grade   1.80  5.905512
## 2984    18 years old or older Female              12th grade   1.75  5.741470
## 2985             15 years old   Male               9th grade   1.75  5.741470
## 2986             14 years old Female               9th grade   1.57  5.150919
## 2987             15 years old   Male              10th grade   1.73  5.675853
## 2988             17 years old Female              12th grade   1.60  5.249344
## 2989             14 years old Female               9th grade   1.63  5.347769
## 2990             15 years old Female               9th grade   1.70  5.577428
## 2991             15 years old Female              10th grade   1.63  5.347769
## 2992    18 years old or older   Male              12th grade   1.83  6.003937
## 2993             15 years old   Male               9th grade   1.63  5.347769
## 2994             14 years old   Male               9th grade     NA        NA
## 2995             15 years old Female              10th grade   1.57  5.150919
## 2996             17 years old   Male              12th grade   1.80  5.905512
## 2997             15 years old Female               9th grade   1.57  5.150919
## 2998             15 years old Female              10th grade   1.63  5.347769
## 2999    18 years old or older Female              12th grade   1.80  5.905512
## 3000             14 years old   Male               9th grade   1.63  5.347769
## 3001             15 years old   Male              10th grade   1.73  5.675853
## 3002    18 years old or older Female              12th grade     NA        NA
## 3003             15 years old Female               9th grade   1.60  5.249344
## 3004             15 years old Female               9th grade   1.68  5.511811
## 3005             16 years old Female              10th grade     NA        NA
## 3006             17 years old Female              12th grade   1.57  5.150919
## 3007             15 years old Female               9th grade     NA        NA
## 3008             14 years old   Male               9th grade   1.78  5.839895
## 3009             16 years old   Male              10th grade   1.88  6.167979
## 3010    18 years old or older Female              12th grade     NA        NA
## 3011             14 years old Female               9th grade   1.57  5.150919
## 3012             15 years old Female               9th grade   1.63  5.347769
## 3013             15 years old   Male              10th grade   1.65  5.413386
## 3014    18 years old or older   Male              12th grade   1.83  6.003937
## 3015             15 years old   Male               9th grade   1.85  6.069554
## 3016    18 years old or older   Male              12th grade   1.83  6.003937
## 3017             14 years old Female               9th grade   1.50  4.921260
## 3018             15 years old Female               9th grade   1.57  5.150919
## 3019             15 years old Female              10th grade     NA        NA
## 3020             15 years old   Male               9th grade   1.83  6.003937
## 3021             17 years old   Male              12th grade   1.83  6.003937
## 3022             14 years old   Male               9th grade   1.88  6.167979
## 3023             15 years old   Male               9th grade   1.78  5.839895
## 3024             17 years old   Male              12th grade   1.80  5.905512
## 3025                     <NA> Female               9th grade     NA        NA
## 3026             15 years old Female               9th grade   1.57  5.150919
## 3027    18 years old or older   Male              12th grade   1.70  5.577428
## 3028             14 years old Female               9th grade   1.60  5.249344
## 3029             15 years old   Male               9th grade   1.68  5.511811
## 3030             17 years old Female              12th grade   1.73  5.675853
## 3031             15 years old   Male               9th grade   1.68  5.511811
## 3032             15 years old   Male               9th grade   1.68  5.511811
## 3033             17 years old Female              12th grade   1.57  5.150919
## 3034             15 years old   Male               9th grade     NA        NA
## 3035             15 years old Female               9th grade   1.60  5.249344
## 3036    18 years old or older Female              12th grade   1.63  5.347769
## 3037             16 years old   Male              10th grade   1.75  5.741470
## 3038             16 years old Female              11th grade   1.63  5.347769
## 3039             16 years old   Male              11th grade   1.83  6.003937
## 3040             17 years old Female              12th grade   1.52  4.986877
## 3041             15 years old Female              10th grade   1.73  5.675853
## 3042             16 years old   Male              10th grade   1.75  5.741470
## 3043    18 years old or older Female              12th grade   1.63  5.347769
## 3044             17 years old   Male              10th grade   1.83  6.003937
## 3045             15 years old Female              10th grade   1.55  5.085302
## 3046             17 years old   Male              12th grade   1.90  6.233596
## 3047    18 years old or older   Male              12th grade   1.80  5.905512
## 3048             17 years old   Male              11th grade   1.68  5.511811
## 3049    18 years old or older   Male              12th grade   1.68  5.511811
## 3050             15 years old Female              10th grade   1.65  5.413386
## 3051    18 years old or older   Male              11th grade   1.73  5.675853
## 3052             16 years old Female              11th grade     NA        NA
## 3053    18 years old or older   Male              12th grade   1.83  6.003937
## 3054             15 years old   Male              10th grade   1.88  6.167979
## 3055             17 years old   Male              10th grade   1.85  6.069554
## 3056             17 years old   Male              11th grade   1.80  5.905512
## 3057             16 years old Female              11th grade   1.73  5.675853
## 3058             16 years old Female              11th grade   1.57  5.150919
## 3059    18 years old or older   Male              12th grade   1.83  6.003937
## 3060             16 years old   Male              10th grade   1.80  5.905512
## 3061             17 years old Female              11th grade   1.60  5.249344
## 3062             17 years old Female              12th grade   1.73  5.675853
## 3063             16 years old Female              10th grade   1.73  5.675853
## 3064             17 years old   Male              11th grade   1.75  5.741470
## 3065             17 years old   Male              11th grade   1.75  5.741470
## 3066             17 years old Female              12th grade   1.70  5.577428
## 3067             16 years old Female              10th grade   1.65  5.413386
## 3068             16 years old Female              11th grade   1.63  5.347769
## 3069             16 years old   Male              11th grade   1.75  5.741470
## 3070    18 years old or older   Male              12th grade   1.68  5.511811
## 3071             16 years old   Male              10th grade   1.80  5.905512
## 3072             17 years old Female              11th grade   1.60  5.249344
## 3073             16 years old   Male              11th grade   1.75  5.741470
## 3074    18 years old or older Female              12th grade   1.70  5.577428
## 3075             15 years old   Male              10th grade   1.85  6.069554
## 3076    18 years old or older   Male              12th grade   1.78  5.839895
## 3077             16 years old Female              10th grade   1.63  5.347769
## 3078             17 years old Female              11th grade   1.57  5.150919
## 3079             17 years old   Male              11th grade   1.70  5.577428
## 3080    18 years old or older Female              12th grade   1.63  5.347769
## 3081             16 years old   Male              11th grade   1.68  5.511811
## 3082             17 years old Female              11th grade   1.55  5.085302
## 3083             17 years old Female              12th grade   1.75  5.741470
## 3084             16 years old   Male              10th grade   1.85  6.069554
## 3085             16 years old   Male              11th grade   1.80  5.905512
## 3086             16 years old Female              10th grade   1.68  5.511811
## 3087             17 years old   Male              10th grade   1.75  5.741470
## 3088             17 years old   Male              12th grade   1.85  6.069554
## 3089             16 years old Female              10th grade   1.70  5.577428
## 3090             16 years old Female              11th grade   1.78  5.839895
## 3091             16 years old   Male              11th grade   1.83  6.003937
## 3092    18 years old or older Female              12th grade   1.70  5.577428
## 3093             16 years old   Male              10th grade   1.83  6.003937
## 3094             17 years old   Male              11th grade   1.90  6.233596
## 3095             16 years old   Male              11th grade     NA        NA
## 3096             17 years old Female              12th grade   1.68  5.511811
## 3097             16 years old Female              10th grade   1.57  5.150919
## 3098             16 years old   Male              11th grade     NA        NA
## 3099             16 years old   Male              11th grade   1.78  5.839895
## 3100    18 years old or older   Male              12th grade   1.75  5.741470
## 3101             16 years old Female              10th grade   1.57  5.150919
## 3102             16 years old   Male              11th grade   1.78  5.839895
## 3103             16 years old   Male              10th grade   1.63  5.347769
## 3104    18 years old or older Female              12th grade   1.68  5.511811
## 3105             16 years old   Male              10th grade   1.73  5.675853
## 3106             17 years old   Male              11th grade   1.80  5.905512
## 3107             16 years old Female              11th grade   1.60  5.249344
## 3108             16 years old   Male              10th grade   1.68  5.511811
## 3109             16 years old Female              11th grade   1.60  5.249344
## 3110             17 years old Female              11th grade   1.65  5.413386
## 3111    18 years old or older   Male              12th grade   1.70  5.577428
## 3112             15 years old Female              10th grade   1.60  5.249344
## 3113             17 years old Female              11th grade   1.57  5.150919
## 3114             17 years old   Male              11th grade   1.93  6.332021
## 3115             17 years old Female              12th grade   1.73  5.675853
## 3116             17 years old   Male              11th grade   1.78  5.839895
## 3117             17 years old   Male              11th grade   1.80  5.905512
## 3118             17 years old Female              12th grade   1.60  5.249344
## 3119             16 years old Female              10th grade   1.73  5.675853
## 3120             17 years old Female              11th grade     NA        NA
## 3121    18 years old or older   Male              11th grade   1.83  6.003937
## 3122             16 years old   Male              11th grade   1.73  5.675853
## 3123             16 years old   Male              11th grade   1.70  5.577428
## 3124             17 years old Female              12th grade   1.68  5.511811
## 3125             16 years old   Male              10th grade   1.83  6.003937
## 3126             17 years old Female              11th grade   1.63  5.347769
## 3127             17 years old Female              11th grade     NA        NA
## 3128    18 years old or older Female              12th grade   1.63  5.347769
## 3129             16 years old Female              10th grade   1.57  5.150919
## 3130             16 years old   Male              11th grade   1.93  6.332021
## 3131             16 years old   Male              11th grade   1.73  5.675853
## 3132    18 years old or older   Male              12th grade   1.73  5.675853
## 3133             16 years old Female              10th grade   1.65  5.413386
## 3134             16 years old Female              11th grade   1.63  5.347769
## 3135             17 years old Female              11th grade     NA        NA
## 3136    18 years old or older Female              12th grade   1.60  5.249344
## 3137    18 years old or older   Male              12th grade   1.78  5.839895
## 3138             16 years old Female              10th grade   1.52  4.986877
## 3139             17 years old Female              12th grade   1.57  5.150919
## 3140             16 years old   Male              10th grade   1.78  5.839895
## 3141             15 years old   Male               9th grade   1.70  5.577428
## 3142             17 years old Female              12th grade   1.65  5.413386
## 3143             14 years old Female               9th grade   1.60  5.249344
## 3144             17 years old   Male              11th grade   1.75  5.741470
## 3145             17 years old   Male              12th grade   1.83  6.003937
## 3146             15 years old Female              10th grade   1.52  4.986877
## 3147             14 years old Female               9th grade   1.75  5.741470
## 3148             17 years old   Male              11th grade   1.83  6.003937
## 3149    18 years old or older Female              12th grade   1.73  5.675853
## 3150             17 years old   Male              12th grade   1.88  6.167979
## 3151             15 years old Female              10th grade   1.80  5.905512
## 3152             15 years old Female               9th grade   1.63  5.347769
## 3153             16 years old   Male              11th grade   1.83  6.003937
## 3154             15 years old   Male              10th grade   1.80  5.905512
## 3155             15 years old   Male               9th grade   1.80  5.905512
## 3156    18 years old or older   Male              12th grade   1.73  5.675853
## 3157             17 years old Female              11th grade   1.55  5.085302
## 3158             17 years old Female              12th grade   1.55  5.085302
## 3159             16 years old Female              10th grade   1.63  5.347769
## 3160             15 years old   Male               9th grade   1.83  6.003937
## 3161    18 years old or older   Male              12th grade   1.70  5.577428
## 3162             15 years old Female              10th grade   1.63  5.347769
## 3163             17 years old Female              12th grade   1.60  5.249344
## 3164             15 years old Female              10th grade   1.60  5.249344
## 3165             17 years old   Male              11th grade   1.80  5.905512
## 3166             17 years old Female              12th grade   1.68  5.511811
## 3167             15 years old Female              10th grade   1.65  5.413386
## 3168             14 years old Female               9th grade   1.60  5.249344
## 3169             16 years old Female              11th grade   1.73  5.675853
## 3170             15 years old Female              10th grade   1.63  5.347769
## 3171             16 years old   Male               9th grade   1.65  5.413386
## 3172    18 years old or older   Male              12th grade   1.65  5.413386
## 3173             16 years old Female              10th grade   1.55  5.085302
## 3174    18 years old or older   Male              12th grade   1.73  5.675853
## 3175             17 years old   Male              10th grade   1.75  5.741470
## 3176    18 years old or older Female              12th grade   1.63  5.347769
## 3177             15 years old   Male              10th grade   1.83  6.003937
## 3178             15 years old Female               9th grade     NA        NA
## 3179             16 years old Female              11th grade   1.70  5.577428
## 3180    18 years old or older Female              12th grade   1.57  5.150919
## 3181             16 years old Female              10th grade   1.52  4.986877
## 3182             14 years old Female               9th grade   1.73  5.675853
## 3183             17 years old   Male              11th grade   1.70  5.577428
## 3184             17 years old   Male              12th grade   1.88  6.167979
## 3185             15 years old Female              10th grade   1.60  5.249344
## 3186             15 years old   Male              10th grade   1.78  5.839895
## 3187             16 years old Female              11th grade   1.55  5.085302
## 3188             16 years old Female              10th grade   1.73  5.675853
## 3189             16 years old Female              11th grade   1.65  5.413386
## 3190    18 years old or older   Male              12th grade   1.85  6.069554
## 3191             16 years old   Male              10th grade   1.80  5.905512
## 3192             15 years old Female               9th grade   1.68  5.511811
## 3193             17 years old   Male              11th grade   1.78  5.839895
## 3194    18 years old or older   Male              12th grade   1.70  5.577428
## 3195             16 years old Female               9th grade   1.57  5.150919
## 3196             14 years old   Male               9th grade   1.78  5.839895
## 3197             16 years old   Male              11th grade   1.65  5.413386
## 3198    18 years old or older   Male              12th grade   1.63  5.347769
## 3199             16 years old   Male              10th grade   1.75  5.741470
## 3200    18 years old or older Female              12th grade   1.68  5.511811
## 3201             16 years old Female              10th grade   1.57  5.150919
## 3202    18 years old or older   Male              12th grade   1.73  5.675853
## 3203             16 years old Female              10th grade   1.55  5.085302
## 3204             15 years old Female               9th grade     NA        NA
## 3205             17 years old   Male              11th grade   1.73  5.675853
## 3206             15 years old   Male               9th grade   1.85  6.069554
## 3207             14 years old   Male               9th grade   1.73  5.675853
## 3208             15 years old   Male               9th grade   1.78  5.839895
## 3209             14 years old Female               9th grade   1.52  4.986877
## 3210             14 years old   Male               9th grade   1.73  5.675853
## 3211             14 years old   Male               9th grade   1.80  5.905512
## 3212             14 years old Female               9th grade   1.63  5.347769
## 3213             15 years old   Male               9th grade   1.85  6.069554
## 3214             14 years old   Male               9th grade   1.63  5.347769
## 3215             15 years old Female               9th grade   1.55  5.085302
## 3216             15 years old   Male               9th grade   1.90  6.233596
## 3217             15 years old Female               9th grade   1.68  5.511811
## 3218             16 years old   Male               9th grade   1.80  5.905512
## 3219             14 years old   Male               9th grade   1.68  5.511811
## 3220             14 years old   Male               9th grade   1.70  5.577428
## 3221             15 years old   Male               9th grade   1.68  5.511811
## 3222             14 years old Female               9th grade   1.65  5.413386
## 3223             15 years old   Male               9th grade   1.75  5.741470
## 3224             14 years old   Male               9th grade   1.80  5.905512
## 3225             14 years old   Male               9th grade   1.73  5.675853
## 3226                     <NA> Female               9th grade     NA        NA
## 3227             15 years old   Male               9th grade   1.68  5.511811
## 3228             14 years old Female               9th grade   1.68  5.511811
## 3229             15 years old   Male               9th grade   1.68  5.511811
## 3230             14 years old Female               9th grade   1.63  5.347769
## 3231             15 years old   Male               9th grade     NA        NA
## 3232             15 years old   Male               9th grade   1.63  5.347769
## 3233             15 years old   Male               9th grade   1.83  6.003937
## 3234             15 years old   Male               9th grade   1.75  5.741470
## 3235             14 years old Female               9th grade   1.78  5.839895
## 3236             14 years old   Male               9th grade   1.73  5.675853
## 3237             15 years old Female               9th grade     NA        NA
## 3238             14 years old Female               9th grade   1.57  5.150919
## 3239             14 years old   Male               9th grade   1.73  5.675853
## 3240             15 years old Female               9th grade   1.55  5.085302
## 3241             14 years old Female               9th grade   1.63  5.347769
## 3242             14 years old Female               9th grade   1.55  5.085302
## 3243             14 years old   Male               9th grade   1.85  6.069554
## 3244             14 years old Female               9th grade     NA        NA
## 3245             15 years old   Male               9th grade   1.73  5.675853
## 3246             14 years old Female               9th grade   1.63  5.347769
## 3247             15 years old Female               9th grade   1.60  5.249344
## 3248             15 years old   Male               9th grade     NA        NA
## 3249             14 years old Female               9th grade   1.75  5.741470
## 3250             15 years old Female               9th grade   1.55  5.085302
## 3251             15 years old   Male               9th grade   1.83  6.003937
## 3252             15 years old Female               9th grade   1.68  5.511811
## 3253             16 years old   Male              11th grade   1.68  5.511811
## 3254             16 years old   Male              11th grade   1.88  6.167979
## 3255             17 years old Female              12th grade   1.65  5.413386
## 3256             15 years old   Male              10th grade   1.83  6.003937
## 3257             17 years old   Male              11th grade   1.85  6.069554
## 3258             15 years old   Male              10th grade   1.83  6.003937
## 3259    18 years old or older Female              12th grade   1.65  5.413386
## 3260             16 years old Female              10th grade   1.60  5.249344
## 3261             16 years old   Male              10th grade   1.83  6.003937
## 3262             16 years old   Male              11th grade   1.63  5.347769
## 3263             16 years old   Male              10th grade   1.83  6.003937
## 3264             17 years old Female              11th grade   1.73  5.675853
## 3265             15 years old Female              10th grade   1.68  5.511811
## 3266             16 years old Female              10th grade   1.73  5.675853
## 3267             17 years old   Male              12th grade   1.90  6.233596
## 3268             16 years old   Male              11th grade   1.83  6.003937
## 3269             17 years old   Male              12th grade   1.93  6.332021
## 3270             17 years old Female              11th grade   1.55  5.085302
## 3271             15 years old   Male              10th grade   1.73  5.675853
## 3272             16 years old   Male              10th grade   1.65  5.413386
## 3273             17 years old Female              12th grade     NA        NA
## 3274             16 years old   Male              10th grade   1.70  5.577428
## 3275             16 years old   Male              11th grade   1.85  6.069554
## 3276             16 years old Female              11th grade   1.60  5.249344
## 3277             15 years old Female              10th grade   1.65  5.413386
## 3278             16 years old   Male              10th grade   1.78  5.839895
## 3279             17 years old   Male              11th grade   1.73  5.675853
## 3280             15 years old Female              10th grade   1.57  5.150919
## 3281             17 years old Female              11th grade   1.68  5.511811
## 3282             15 years old   Male              10th grade   1.93  6.332021
## 3283             15 years old Female              10th grade   1.65  5.413386
## 3284             16 years old   Male              10th grade   1.83  6.003937
## 3285             17 years old   Male              11th grade   1.70  5.577428
## 3286             17 years old   Male              11th grade   1.78  5.839895
## 3287             15 years old Female              10th grade   1.68  5.511811
## 3288             15 years old   Male              10th grade   1.70  5.577428
## 3289             16 years old   Male              10th grade   1.83  6.003937
## 3290    18 years old or older   Male              12th grade   1.90  6.233596
## 3291             17 years old   Male              12th grade   1.80  5.905512
## 3292             15 years old   Male              10th grade   1.80  5.905512
## 3293             17 years old Female              12th grade   1.63  5.347769
## 3294             15 years old   Male              10th grade   1.75  5.741470
## 3295             15 years old   Male              10th grade   1.73  5.675853
## 3296             16 years old   Male              11th grade   1.83  6.003937
## 3297             17 years old   Male              11th grade   1.83  6.003937
## 3298             15 years old Female              10th grade   1.52  4.986877
## 3299             15 years old Female              10th grade   1.57  5.150919
## 3300             17 years old Female              11th grade   1.65  5.413386
## 3301             17 years old   Male              11th grade   1.90  6.233596
## 3302             17 years old   Male              12th grade   1.88  6.167979
## 3303             16 years old   Male              10th grade   1.80  5.905512
## 3304             17 years old Female              12th grade     NA        NA
## 3305             17 years old   Male              11th grade   1.88  6.167979
## 3306             15 years old Female              10th grade   1.60  5.249344
## 3307             15 years old Female              10th grade   1.65  5.413386
## 3308             17 years old Female              12th grade   1.88  6.167979
## 3309             16 years old   Male              10th grade   1.80  5.905512
## 3310             15 years old Female              10th grade   1.70  5.577428
## 3311             15 years old   Male              10th grade   1.80  5.905512
## 3312    18 years old or older Female              12th grade   1.68  5.511811
## 3313             17 years old Female              11th grade   1.68  5.511811
## 3314             16 years old Female              10th grade   1.57  5.150919
## 3315             15 years old   Male              10th grade   1.78  5.839895
## 3316             17 years old   Male              11th grade     NA        NA
## 3317    18 years old or older   Male              12th grade   1.78  5.839895
## 3318             15 years old Female              10th grade   1.70  5.577428
## 3319             17 years old Female              11th grade   1.63  5.347769
## 3320             15 years old Female              10th grade   1.65  5.413386
## 3321             16 years old   Male              10th grade   1.78  5.839895
## 3322    18 years old or older Female              12th grade   1.78  5.839895
## 3323             17 years old   Male              11th grade   1.80  5.905512
## 3324             17 years old Female              11th grade   1.50  4.921260
## 3325             16 years old   Male              11th grade   1.60  5.249344
## 3326             16 years old   Male              11th grade   1.78  5.839895
## 3327    18 years old or older   Male              12th grade   1.80  5.905512
## 3328    18 years old or older Female              12th grade   1.57  5.150919
## 3329             16 years old Female              10th grade   1.57  5.150919
## 3330             17 years old Female              12th grade   1.55  5.085302
## 3331             16 years old   Male              11th grade   1.80  5.905512
## 3332             15 years old Female              10th grade   1.75  5.741470
## 3333    18 years old or older Female              12th grade   1.63  5.347769
## 3334             15 years old Female              10th grade   1.60  5.249344
## 3335             15 years old   Male              10th grade   1.90  6.233596
## 3336             15 years old   Male              10th grade   1.88  6.167979
## 3337             16 years old Female              10th grade   1.70  5.577428
## 3338             17 years old Female              11th grade   1.60  5.249344
## 3339    18 years old or older Female              12th grade   1.57  5.150919
## 3340             15 years old Female              10th grade   1.65  5.413386
## 3341             16 years old   Male              10th grade   1.85  6.069554
## 3342             16 years old Female              10th grade   1.80  5.905512
## 3343             16 years old Female              11th grade   1.65  5.413386
## 3344             15 years old Female              10th grade   1.70  5.577428
## 3345             17 years old Female              12th grade   1.68  5.511811
## 3346             16 years old Female              10th grade   1.70  5.577428
## 3347             16 years old Female              10th grade   1.63  5.347769
## 3348             17 years old   Male              11th grade   1.78  5.839895
## 3349             17 years old   Male              12th grade   1.83  6.003937
## 3350             17 years old   Male              11th grade   1.80  5.905512
## 3351             17 years old   Male              11th grade   1.70  5.577428
## 3352             16 years old   Male              11th grade   1.83  6.003937
## 3353             16 years old Female              10th grade   1.83  6.003937
## 3354             15 years old   Male              10th grade   1.90  6.233596
## 3355             15 years old Female              10th grade     NA        NA
## 3356             16 years old   Male              11th grade   1.80  5.905512
## 3357             16 years old Female              11th grade   1.57  5.150919
## 3358             15 years old   Male              10th grade   1.73  5.675853
## 3359             16 years old Female              10th grade   1.65  5.413386
## 3360             16 years old   Male              10th grade   1.80  5.905512
## 3361             16 years old   Male              10th grade   1.75  5.741470
## 3362    18 years old or older Female              12th grade   1.65  5.413386
## 3363             14 years old Female               9th grade   1.60  5.249344
## 3364             17 years old   Male              11th grade   1.75  5.741470
## 3365    18 years old or older Female              12th grade   1.68  5.511811
## 3366             16 years old Female              10th grade   1.63  5.347769
## 3367             15 years old Female               9th grade   1.57  5.150919
## 3368             17 years old   Male              11th grade   1.73  5.675853
## 3369             16 years old   Male              11th grade   1.83  6.003937
## 3370             17 years old   Male              11th grade   1.70  5.577428
## 3371    18 years old or older   Male              12th grade   1.78  5.839895
## 3372             14 years old Female               9th grade   1.65  5.413386
## 3373             17 years old Female              11th grade   1.70  5.577428
## 3374             16 years old Female              10th grade   1.55  5.085302
## 3375             14 years old   Male               9th grade   1.75  5.741470
## 3376             17 years old Female              11th grade   1.68  5.511811
## 3377    18 years old or older   Male              12th grade   1.73  5.675853
## 3378             16 years old   Male              10th grade   1.80  5.905512
## 3379             14 years old   Male               9th grade   1.70  5.577428
## 3380             17 years old Female              11th grade   1.63  5.347769
## 3381    18 years old or older   Male              12th grade   1.68  5.511811
## 3382             15 years old   Male              10th grade   1.65  5.413386
## 3383    18 years old or older Female              12th grade   1.73  5.675853
## 3384             14 years old Female               9th grade   1.55  5.085302
## 3385             17 years old Female              11th grade   1.75  5.741470
## 3386    18 years old or older   Male              12th grade     NA        NA
## 3387             15 years old   Male              10th grade     NA        NA
## 3388             15 years old Female               9th grade   1.57  5.150919
## 3389    18 years old or older Female              12th grade   1.57  5.150919
## 3390             16 years old Female              10th grade     NA        NA
## 3391             15 years old Female               9th grade   1.57  5.150919
## 3392             17 years old   Male              11th grade     NA        NA
## 3393             17 years old Female              12th grade     NA        NA
## 3394             15 years old   Male               9th grade     NA        NA
## 3395             15 years old   Male              10th grade   1.85  6.069554
## 3396             15 years old   Male               9th grade   1.80  5.905512
## 3397             17 years old   Male              11th grade   1.88  6.167979
## 3398             17 years old   Male              12th grade   1.75  5.741470
## 3399             15 years old   Male               9th grade     NA        NA
## 3400             17 years old   Male              11th grade   1.88  6.167979
## 3401             17 years old   Male              12th grade   1.80  5.905512
## 3402             15 years old   Male              10th grade   1.73  5.675853
## 3403             15 years old   Male               9th grade   1.73  5.675853
## 3404             16 years old Female              11th grade   1.75  5.741470
## 3405             17 years old   Male              11th grade   1.80  5.905512
## 3406             16 years old   Male              10th grade   1.70  5.577428
## 3407             15 years old Female               9th grade     NA        NA
## 3408             15 years old   Male               9th grade   1.98  6.496063
## 3409             16 years old   Male              10th grade   1.70  5.577428
## 3410             15 years old   Male               9th grade   1.83  6.003937
## 3411             16 years old Female              11th grade   1.65  5.413386
## 3412    18 years old or older   Male              12th grade   1.88  6.167979
## 3413             16 years old   Male              10th grade   1.78  5.839895
## 3414             17 years old Female              11th grade   1.68  5.511811
## 3415             17 years old   Male              12th grade   1.78  5.839895
## 3416             16 years old Female              10th grade   1.70  5.577428
## 3417    18 years old or older Female              12th grade   1.60  5.249344
## 3418             16 years old Female               9th grade   1.73  5.675853
## 3419             17 years old Female              12th grade   1.63  5.347769
## 3420             15 years old Female              10th grade   1.60  5.249344
## 3421             14 years old   Male               9th grade   1.63  5.347769
## 3422             16 years old   Male              11th grade   1.90  6.233596
## 3423    18 years old or older   Male              12th grade   1.78  5.839895
## 3424             16 years old   Male              10th grade   1.78  5.839895
## 3425             15 years old   Male               9th grade   1.68  5.511811
## 3426             16 years old   Male              11th grade   1.75  5.741470
## 3427             17 years old Female              11th grade   1.57  5.150919
## 3428             17 years old   Male              12th grade   1.78  5.839895
## 3429             15 years old   Male               9th grade     NA        NA
## 3430    18 years old or older Female              12th grade   1.60  5.249344
## 3431             16 years old   Male              10th grade   1.78  5.839895
## 3432             14 years old Female               9th grade   1.70  5.577428
## 3433    18 years old or older Female              12th grade   1.73  5.675853
## 3434             15 years old   Male              10th grade   1.75  5.741470
## 3435             15 years old   Male              10th grade     NA        NA
## 3436             16 years old Female              11th grade   1.65  5.413386
## 3437             16 years old   Male              11th grade   1.75  5.741470
## 3438             15 years old Female              10th grade   1.73  5.675853
## 3439             14 years old Female               9th grade   1.57  5.150919
## 3440             16 years old   Male              11th grade   1.85  6.069554
## 3441    18 years old or older   Male              12th grade   1.85  6.069554
## 3442             17 years old Female              11th grade   1.73  5.675853
## 3443             15 years old Female              10th grade   1.57  5.150919
## 3444    18 years old or older Female              12th grade   1.55  5.085302
## 3445             16 years old   Male              10th grade   1.83  6.003937
## 3446             14 years old   Male               9th grade   1.73  5.675853
## 3447             17 years old   Male              11th grade   1.78  5.839895
## 3448             17 years old   Male              11th grade   1.75  5.741470
## 3449             17 years old Female              12th grade   1.63  5.347769
## 3450             16 years old Female              10th grade   1.65  5.413386
## 3451    18 years old or older   Male              11th grade   1.83  6.003937
## 3452             17 years old   Male              12th grade   1.80  5.905512
## 3453             17 years old Female              12th grade   1.55  5.085302
## 3454             15 years old   Male               9th grade   1.80  5.905512
## 3455             17 years old Female              11th grade   1.63  5.347769
## 3456             15 years old Female              10th grade   1.65  5.413386
## 3457             15 years old Female               9th grade   1.65  5.413386
## 3458             16 years old   Male              11th grade   1.83  6.003937
## 3459    18 years old or older   Male              12th grade   1.75  5.741470
## 3460             14 years old   Male               9th grade   1.70  5.577428
## 3461             17 years old   Male              11th grade   1.70  5.577428
## 3462             16 years old Female              11th grade   1.63  5.347769
## 3463    18 years old or older   Male              12th grade   1.73  5.675853
## 3464             15 years old   Male               9th grade   1.78  5.839895
## 3465             17 years old   Male              11th grade   1.80  5.905512
## 3466             17 years old   Male              11th grade   1.88  6.167979
## 3467    18 years old or older   Male              12th grade   1.85  6.069554
## 3468             14 years old   Male               9th grade   1.80  5.905512
## 3469             17 years old Female              11th grade   1.68  5.511811
## 3470             16 years old   Male              11th grade     NA        NA
## 3471             15 years old Female              10th grade   1.70  5.577428
## 3472             16 years old   Male              10th grade   1.83  6.003937
## 3473             17 years old Female              11th grade   1.57  5.150919
## 3474    18 years old or older Female              12th grade   1.65  5.413386
## 3475             16 years old   Male              10th grade   1.78  5.839895
## 3476             15 years old   Male               9th grade   1.65  5.413386
## 3477             16 years old Female              11th grade   1.65  5.413386
## 3478    18 years old or older Female              12th grade   1.70  5.577428
## 3479             15 years old Female              10th grade   1.57  5.150919
## 3480             15 years old Female               9th grade   1.68  5.511811
## 3481    18 years old or older   Male              12th grade   1.63  5.347769
## 3482             15 years old   Male              10th grade   1.70  5.577428
## 3483             15 years old   Male               9th grade   1.68  5.511811
## 3484             16 years old   Male              11th grade   1.75  5.741470
## 3485    18 years old or older   <NA>              12th grade     NA        NA
## 3486    18 years old or older   Male              12th grade   1.73  5.675853
## 3487    18 years old or older Female              12th grade   1.65  5.413386
## 3488             14 years old Female               9th grade   1.55  5.085302
## 3489             17 years old   Male              11th grade   1.73  5.675853
## 3490             16 years old Female              11th grade   1.57  5.150919
## 3491    18 years old or older Female              12th grade   1.65  5.413386
## 3492    18 years old or older Female              12th grade   1.60  5.249344
## 3493             14 years old   Male               9th grade   1.78  5.839895
## 3494             14 years old Female               9th grade   1.60  5.249344
## 3495    18 years old or older   Male              12th grade   1.75  5.741470
## 3496             16 years old   Male              11th grade   1.70  5.577428
## 3497             17 years old Female              12th grade   1.75  5.741470
## 3498             15 years old Female               9th grade   1.73  5.675853
## 3499             16 years old Female              11th grade   1.52  4.986877
## 3500             17 years old Female              12th grade   1.65  5.413386
## 3501             16 years old   Male              11th grade   1.80  5.905512
## 3502    18 years old or older Female              12th grade   1.52  4.986877
## 3503             15 years old   Male               9th grade   1.73  5.675853
## 3504             15 years old   Male               9th grade   1.80  5.905512
## 3505             14 years old Female               9th grade   1.68  5.511811
## 3506             17 years old Female              12th grade   1.60  5.249344
## 3507             17 years old   Male              11th grade   1.70  5.577428
## 3508    18 years old or older Female              12th grade   1.63  5.347769
## 3509             15 years old Female              10th grade   1.63  5.347769
## 3510             14 years old   Male               9th grade   1.57  5.150919
## 3511             15 years old Female               9th grade   1.70  5.577428
## 3512             17 years old   Male              12th grade   1.83  6.003937
## 3513             17 years old   Male              11th grade   1.70  5.577428
## 3514    18 years old or older Female              12th grade   1.63  5.347769
## 3515             16 years old   Male              10th grade   1.70  5.577428
## 3516             16 years old   Male              10th grade   1.60  5.249344
## 3517             14 years old Female               9th grade   1.60  5.249344
## 3518             14 years old   Male               9th grade   1.73  5.675853
## 3519             17 years old Female              11th grade   1.63  5.347769
## 3520             16 years old   Male              11th grade   1.83  6.003937
## 3521             17 years old Female              12th grade   1.68  5.511811
## 3522             14 years old   Male               9th grade   1.75  5.741470
## 3523             14 years old Female               9th grade   1.80  5.905512
## 3524             16 years old Female              11th grade   1.57  5.150919
## 3525             17 years old   Male              12th grade   1.65  5.413386
## 3526             15 years old Female               9th grade     NA        NA
## 3527             15 years old Female               9th grade   1.60  5.249344
## 3528             17 years old   Male              12th grade   1.80  5.905512
## 3529             17 years old   Male              11th grade   1.70  5.577428
## 3530    18 years old or older   Male              12th grade   1.73  5.675853
## 3531             15 years old Female              10th grade   1.63  5.347769
## 3532                     <NA>   Male              10th grade     NA        NA
## 3533             15 years old Female               9th grade     NA        NA
## 3534             14 years old Female               9th grade   1.68  5.511811
## 3535             17 years old Female              12th grade   1.70  5.577428
## 3536             17 years old   Male              11th grade   1.78  5.839895
## 3537             17 years old Female              12th grade   1.65  5.413386
## 3538             16 years old   Male              10th grade   1.78  5.839895
## 3539             14 years old   Male               9th grade   1.75  5.741470
## 3540             15 years old   Male               9th grade   1.75  5.741470
## 3541    18 years old or older Female              12th grade   1.52  4.986877
## 3542             16 years old   Male              11th grade   1.85  6.069554
## 3543    18 years old or older Female              12th grade     NA        NA
## 3544             15 years old Female               9th grade   1.75  5.741470
## 3545             15 years old   Male               9th grade   1.75  5.741470
## 3546             17 years old   Male              12th grade   1.73  5.675853
## 3547             17 years old   Male              11th grade   1.78  5.839895
## 3548             17 years old   Male              12th grade   1.83  6.003937
## 3549             15 years old   Male              10th grade   1.68  5.511811
## 3550             16 years old   Male              10th grade   1.83  6.003937
## 3551             14 years old   Male               9th grade   1.65  5.413386
## 3552             15 years old   Male                    <NA>   1.83  6.003937
## 3553             17 years old Female              11th grade   1.52  4.986877
## 3554    18 years old or older Female              12th grade   1.63  5.347769
## 3555             14 years old   Male               9th grade   1.68  5.511811
## 3556             15 years old Female               9th grade   1.78  5.839895
## 3557             17 years old Female              12th grade   1.60  5.249344
## 3558             17 years old   Male              11th grade   1.96  6.430446
## 3559    18 years old or older   Male              12th grade   1.83  6.003937
## 3560             16 years old   Male              10th grade   1.85  6.069554
## 3561             15 years old Female               9th grade     NA        NA
## 3562             14 years old Female               9th grade   1.70  5.577428
## 3563    18 years old or older Female              12th grade   1.63  5.347769
## 3564             17 years old   Male              11th grade   1.80  5.905512
## 3565    18 years old or older Female              12th grade   1.83  6.003937
## 3566             14 years old   Male               9th grade   1.60  5.249344
## 3567             15 years old   Male               9th grade   1.80  5.905512
## 3568             16 years old Female              11th grade   1.52  4.986877
## 3569             16 years old Female              11th grade     NA        NA
## 3570    18 years old or older   Male              12th grade   1.80  5.905512
## 3571             15 years old   Male               9th grade   1.80  5.905512
## 3572             14 years old   Male               9th grade   1.75  5.741470
## 3573             17 years old   Male              11th grade   1.70  5.577428
## 3574             17 years old   Male              12th grade   1.68  5.511811
## 3575             17 years old   Male              12th grade   1.78  5.839895
## 3576             16 years old Female              10th grade   1.73  5.675853
## 3577             15 years old Female              10th grade   1.68  5.511811
## 3578             15 years old Female               9th grade   1.52  4.986877
## 3579             15 years old   Male               9th grade   1.73  5.675853
## 3580             17 years old   Male              11th grade   1.78  5.839895
## 3581             16 years old Female              12th grade   1.75  5.741470
## 3582             16 years old   Male              10th grade   1.78  5.839895
## 3583             15 years old Female              10th grade   1.70  5.577428
## 3584             14 years old Female               9th grade     NA        NA
## 3585             14 years old Female               9th grade   1.57  5.150919
## 3586             17 years old   Male              11th grade   1.70  5.577428
## 3587             17 years old   Male              12th grade   1.80  5.905512
## 3588             15 years old   Male              10th grade   1.80  5.905512
## 3589             15 years old   Male              10th grade   1.70  5.577428
## 3590             14 years old Female               9th grade   1.60  5.249344
## 3591             15 years old Female               9th grade   1.65  5.413386
## 3592    18 years old or older   Male              12th grade   1.78  5.839895
## 3593             16 years old Female              11th grade   1.52  4.986877
## 3594             17 years old Female              12th grade   1.80  5.905512
## 3595             14 years old Female               9th grade   1.52  4.986877
## 3596    18 years old or older Female              12th grade   1.68  5.511811
## 3597             17 years old   Male              11th grade   1.83  6.003937
## 3598             17 years old Female              12th grade   1.73  5.675853
## 3599             15 years old Female              10th grade   1.60  5.249344
## 3600             15 years old   Male               9th grade     NA        NA
## 3601             14 years old Female               9th grade   1.57  5.150919
## 3602    18 years old or older Female              12th grade   1.50  4.921260
## 3603             17 years old   Male              11th grade   1.83  6.003937
## 3604             17 years old Female              12th grade   1.73  5.675853
## 3605             15 years old Female              10th grade   1.75  5.741470
## 3606             15 years old   Male              10th grade   1.70  5.577428
## 3607             15 years old   Male               9th grade   1.75  5.741470
## 3608             14 years old   Male               9th grade   1.75  5.741470
## 3609    18 years old or older Female              12th grade   1.60  5.249344
## 3610             16 years old   Male              11th grade   1.80  5.905512
## 3611             16 years old   Male              10th grade   1.80  5.905512
## 3612             15 years old Female              10th grade   1.68  5.511811
## 3613             14 years old Female               9th grade   1.57  5.150919
## 3614             15 years old Female               9th grade   1.57  5.150919
## 3615             17 years old Female              11th grade   1.57  5.150919
## 3616    18 years old or older   Male              12th grade   1.90  6.233596
## 3617             16 years old   Male              10th grade   1.68  5.511811
## 3618             16 years old Female              10th grade   1.57  5.150919
## 3619             14 years old Female               9th grade   1.65  5.413386
## 3620             15 years old Female               9th grade   1.55  5.085302
## 3621             16 years old Female              11th grade   1.52  4.986877
## 3622             15 years old   Male              10th grade   1.80  5.905512
## 3623             15 years old   Male               9th grade   1.73  5.675853
## 3624             15 years old   Male               9th grade   1.78  5.839895
## 3625             17 years old   Male              12th grade   1.83  6.003937
## 3626             16 years old Female              11th grade   1.60  5.249344
## 3627             16 years old   Male              10th grade   1.73  5.675853
## 3628             15 years old   Male              10th grade   1.85  6.069554
## 3629             14 years old Female               9th grade     NA        NA
## 3630             17 years old Female              12th grade   1.63  5.347769
## 3631             17 years old Female              11th grade   1.57  5.150919
## 3632             16 years old Female              10th grade   1.65  5.413386
## 3633             16 years old   Male              10th grade   1.75  5.741470
## 3634             15 years old   Male               9th grade   1.78  5.839895
## 3635             15 years old   Male               9th grade   1.78  5.839895
## 3636             14 years old Female               9th grade     NA        NA
## 3637             17 years old Female              12th grade   1.68  5.511811
## 3638             16 years old   Male              11th grade   1.90  6.233596
## 3639             16 years old   Male              10th grade   1.68  5.511811
## 3640             16 years old   Male              10th grade   1.85  6.069554
## 3641             14 years old Female                    <NA>   1.55  5.085302
## 3642             14 years old   Male               9th grade   1.80  5.905512
## 3643             17 years old   Male              11th grade   1.88  6.167979
## 3644             17 years old Female              11th grade   1.68  5.511811
## 3645             15 years old   Male              10th grade   1.75  5.741470
## 3646             15 years old   Male               9th grade   1.78  5.839895
## 3647             14 years old Female               9th grade   1.68  5.511811
## 3648             16 years old   Male              11th grade   1.78  5.839895
## 3649             15 years old   Male              10th grade   1.73  5.675853
## 3650             16 years old   Male              11th grade   1.70  5.577428
## 3651             17 years old   Male              11th grade   1.83  6.003937
## 3652             17 years old Female              11th grade   1.63  5.347769
## 3653             17 years old Female              11th grade   1.70  5.577428
## 3654             16 years old Female              11th grade     NA        NA
## 3655             16 years old Female              10th grade   1.50  4.921260
## 3656             15 years old Female              10th grade   1.73  5.675853
## 3657             15 years old Female              10th grade   1.63  5.347769
## 3658             16 years old Female              10th grade   1.60  5.249344
## 3659             16 years old   Male              10th grade   1.73  5.675853
## 3660             16 years old   Male              10th grade   1.75  5.741470
## 3661             15 years old   Male              10th grade   1.65  5.413386
## 3662             14 years old Female               9th grade   1.68  5.511811
## 3663             17 years old Female              10th grade   1.73  5.675853
## 3664             16 years old   Male              10th grade   1.65  5.413386
## 3665             15 years old Female              10th grade   1.60  5.249344
## 3666             15 years old   Male               9th grade   1.68  5.511811
## 3667             16 years old   Male               9th grade   1.73  5.675853
## 3668             15 years old Female               9th grade   1.60  5.249344
## 3669             16 years old   Male               9th grade   1.83  6.003937
## 3670             17 years old   Male              11th grade   1.78  5.839895
## 3671             17 years old   Male              11th grade   1.78  5.839895
## 3672             16 years old   Male              11th grade   1.80  5.905512
## 3673             17 years old Female              11th grade   1.65  5.413386
## 3674             16 years old   Male              11th grade   1.65  5.413386
## 3675             15 years old   Male               9th grade   1.73  5.675853
## 3676             14 years old   Male               9th grade   1.65  5.413386
## 3677             16 years old Female              10th grade   1.63  5.347769
## 3678             15 years old   Male              10th grade   1.75  5.741470
## 3679             16 years old Female              10th grade   1.70  5.577428
## 3680             16 years old Female              10th grade   1.52  4.986877
## 3681             16 years old   Male              10th grade   1.68  5.511811
## 3682             15 years old Female               9th grade     NA        NA
## 3683             14 years old   Male               9th grade   1.60  5.249344
## 3684             15 years old Female               9th grade   1.60  5.249344
## 3685             17 years old   Male              10th grade     NA        NA
## 3686             16 years old   Male              10th grade     NA        NA
## 3687                     <NA> Female              10th grade     NA        NA
## 3688             15 years old   Male              10th grade   1.75  5.741470
## 3689             14 years old   Male               9th grade   1.80  5.905512
## 3690             17 years old   Male              12th grade   1.85  6.069554
## 3691             17 years old   Male              11th grade   1.68  5.511811
## 3692             15 years old   Male               9th grade   1.75  5.741470
## 3693             17 years old   Male              12th grade   1.78  5.839895
## 3694             17 years old   Male              11th grade   1.68  5.511811
## 3695             16 years old   Male              10th grade   1.68  5.511811
## 3696             14 years old   Male               9th grade   1.80  5.905512
## 3697    18 years old or older   Male              12th grade   1.83  6.003937
## 3698             16 years old   Male              11th grade   1.73  5.675853
## 3699             16 years old   Male              10th grade   1.78  5.839895
## 3700    18 years old or older   Male              12th grade   1.96  6.430446
## 3701             16 years old   Male              11th grade   1.83  6.003937
## 3702             15 years old   Male              10th grade   1.78  5.839895
## 3703             15 years old   Male               9th grade   1.70  5.577428
## 3704    18 years old or older   Male              12th grade   1.88  6.167979
## 3705             17 years old   Male              11th grade   1.88  6.167979
## 3706             16 years old   Male               9th grade   1.63  5.347769
## 3707    18 years old or older   Male              12th grade   1.83  6.003937
## 3708             17 years old   Male              11th grade   1.88  6.167979
## 3709             15 years old   <NA>               9th grade     NA        NA
## 3710             17 years old   Male              12th grade   1.83  6.003937
## 3711             17 years old   Male              11th grade   1.83  6.003937
## 3712             14 years old   Male               9th grade   1.83  6.003937
## 3713             17 years old   Male              12th grade   1.83  6.003937
## 3714             17 years old   Male              11th grade   1.78  5.839895
## 3715             15 years old   Male              10th grade   1.83  6.003937
## 3716    18 years old or older   Male              12th grade   1.78  5.839895
## 3717             16 years old   Male              11th grade   1.88  6.167979
## 3718             16 years old   Male              10th grade   1.68  5.511811
## 3719             15 years old   Male               9th grade   1.68  5.511811
## 3720    18 years old or older   Male              12th grade   1.75  5.741470
## 3721             17 years old   Male              11th grade   1.85  6.069554
## 3722             15 years old   Male              10th grade   1.73  5.675853
## 3723    18 years old or older   Male              12th grade   1.75  5.741470
## 3724             17 years old   Male              11th grade   1.88  6.167979
## 3725             16 years old   Male              10th grade   1.70  5.577428
## 3726             14 years old   Male               9th grade   1.68  5.511811
## 3727    18 years old or older   Male              12th grade   1.88  6.167979
## 3728             16 years old   Male              11th grade     NA        NA
## 3729             15 years old   Male              10th grade   1.68  5.511811
## 3730             14 years old   Male               9th grade     NA        NA
## 3731    18 years old or older   Male              12th grade   1.85  6.069554
## 3732             16 years old   Male              11th grade   1.96  6.430446
## 3733             16 years old   Male              10th grade   1.73  5.675853
## 3734    18 years old or older   Male              12th grade   1.83  6.003937
## 3735             17 years old   Male              11th grade   1.85  6.069554
## 3736             15 years old   Male              10th grade   1.83  6.003937
## 3737             14 years old   Male               9th grade   1.75  5.741470
## 3738    18 years old or older   Male              12th grade   1.70  5.577428
## 3739             16 years old   Male              11th grade   1.83  6.003937
## 3740             16 years old   Male              10th grade   1.85  6.069554
## 3741             14 years old   Male               9th grade   1.63  5.347769
## 3742             16 years old   Male              10th grade   1.80  5.905512
## 3743             15 years old   Male               9th grade   1.85  6.069554
## 3744             15 years old   Male              10th grade   1.75  5.741470
## 3745             14 years old   Male               9th grade   1.78  5.839895
## 3746             16 years old   Male              10th grade   1.78  5.839895
## 3747             15 years old   Male               9th grade   1.80  5.905512
## 3748             17 years old   Male              12th grade   1.78  5.839895
## 3749             16 years old   Male              10th grade   1.83  6.003937
## 3750             14 years old   Male               9th grade   1.78  5.839895
## 3751    18 years old or older   Male              12th grade   1.78  5.839895
## 3752             16 years old   Male              10th grade   1.88  6.167979
## 3753             15 years old   Male               9th grade     NA        NA
## 3754             14 years old   Male               9th grade   1.80  5.905512
## 3755    18 years old or older   Male              12th grade   1.83  6.003937
## 3756             15 years old   Male              10th grade   1.73  5.675853
## 3757             15 years old   Male               9th grade   1.68  5.511811
## 3758    18 years old or older   Male              12th grade   1.80  5.905512
## 3759             16 years old   Male              11th grade   1.85  6.069554
## 3760             16 years old   Male              10th grade   1.75  5.741470
## 3761    18 years old or older   Male              12th grade   1.83  6.003937
## 3762             16 years old   Male              11th grade   1.83  6.003937
## 3763             16 years old   Male              10th grade   1.78  5.839895
## 3764             17 years old   Male              12th grade   1.90  6.233596
## 3765             16 years old   Male              11th grade   1.75  5.741470
## 3766             15 years old   Male              10th grade   1.75  5.741470
## 3767             15 years old   Male               9th grade   1.90  6.233596
## 3768             16 years old   Male              10th grade   1.78  5.839895
## 3769             15 years old   Male               9th grade   1.88  6.167979
## 3770    18 years old or older   Male              12th grade   1.80  5.905512
## 3771             15 years old   Male               9th grade   1.96  6.430446
## 3772    18 years old or older   Male              12th grade   1.93  6.332021
## 3773             15 years old   Male              11th grade   1.73  5.675853
## 3774             14 years old   Male               9th grade   1.83  6.003937
## 3775             17 years old   Male              12th grade   1.70  5.577428
## 3776    18 years old or older   Male              12th grade   1.70  5.577428
## 3777             17 years old   Male              11th grade   1.80  5.905512
## 3778             17 years old   Male              12th grade   1.90  6.233596
## 3779             16 years old Female              10th grade   1.65  5.413386
## 3780             17 years old   Male              11th grade   1.88  6.167979
## 3781             16 years old Female              10th grade   1.68  5.511811
## 3782             17 years old   Male              12th grade   1.80  5.905512
## 3783             14 years old Female               9th grade   1.65  5.413386
## 3784             17 years old Female              11th grade   1.50  4.921260
## 3785             16 years old   Male              10th grade   1.83  6.003937
## 3786             17 years old   Male              12th grade   1.78  5.839895
## 3787             14 years old Female               9th grade   1.57  5.150919
## 3788             17 years old   Male              11th grade   1.75  5.741470
## 3789             15 years old   Male              10th grade   1.68  5.511811
## 3790             17 years old Female              12th grade   1.60  5.249344
## 3791             14 years old   Male               9th grade   1.68  5.511811
## 3792             17 years old   Male              11th grade   1.88  6.167979
## 3793             16 years old Female              10th grade   1.68  5.511811
## 3794             17 years old Female              12th grade   1.65  5.413386
## 3795             15 years old   Male              10th grade   1.78  5.839895
## 3796             17 years old   Male              12th grade   1.75  5.741470
## 3797             15 years old Female              10th grade   1.60  5.249344
## 3798             17 years old Female              12th grade   1.70  5.577428
## 3799             14 years old Female               9th grade   1.65  5.413386
## 3800             17 years old   Male              11th grade     NA        NA
## 3801             17 years old   Male              12th grade   1.90  6.233596
## 3802             15 years old   Male               9th grade   1.78  5.839895
## 3803             17 years old Female              11th grade   1.65  5.413386
## 3804             15 years old   Male              10th grade   1.80  5.905512
## 3805    18 years old or older Female              12th grade   1.63  5.347769
## 3806             15 years old   Male              10th grade   1.65  5.413386
## 3807             17 years old Female              11th grade   1.60  5.249344
## 3808             15 years old Female              10th grade   1.78  5.839895
## 3809             17 years old   Male              12th grade   1.68  5.511811
## 3810             15 years old   Male              10th grade   1.73  5.675853
## 3811             16 years old   Male              11th grade   1.68  5.511811
## 3812             17 years old   Male              10th grade   1.65  5.413386
## 3813             17 years old   Male              12th grade   1.73  5.675853
## 3814             15 years old   Male               9th grade   1.65  5.413386
## 3815             17 years old Female              11th grade   1.52  4.986877
## 3816             15 years old Female              10th grade   1.52  4.986877
## 3817    18 years old or older   Male              12th grade   1.63  5.347769
## 3818             16 years old   Male              10th grade   1.85  6.069554
## 3819             16 years old   Male              11th grade   1.78  5.839895
## 3820             15 years old   Male              10th grade   1.78  5.839895
## 3821             17 years old   Male              12th grade   1.73  5.675853
## 3822             14 years old   Male               9th grade   1.73  5.675853
## 3823             17 years old   Male              11th grade   1.85  6.069554
## 3824             16 years old   Male              10th grade   1.85  6.069554
## 3825             17 years old   Male              12th grade   1.78  5.839895
## 3826             15 years old   Male              10th grade   1.75  5.741470
## 3827             15 years old Female              10th grade   1.60  5.249344
## 3828             17 years old   Male              12th grade   1.68  5.511811
## 3829             14 years old Female               9th grade   1.68  5.511811
## 3830             16 years old   Male              11th grade   1.88  6.167979
## 3831             16 years old Female              10th grade   1.52  4.986877
## 3832             17 years old   Male              12th grade   1.75  5.741470
## 3833             16 years old Female              11th grade   1.73  5.675853
## 3834             16 years old   Male              10th grade   1.70  5.577428
## 3835             17 years old Female              12th grade   1.60  5.249344
## 3836             15 years old   Male               9th grade   1.73  5.675853
## 3837             17 years old   Male              11th grade   1.78  5.839895
## 3838             16 years old Female              10th grade   1.63  5.347769
## 3839             17 years old   Male              12th grade   1.75  5.741470
## 3840             14 years old   Male               9th grade   1.68  5.511811
## 3841             17 years old Female              11th grade   1.75  5.741470
## 3842             15 years old   Male              10th grade   1.88  6.167979
## 3843             17 years old   Male              12th grade     NA        NA
## 3844             14 years old   Male               9th grade   1.57  5.150919
## 3845             16 years old   Male              11th grade   1.78  5.839895
## 3846    18 years old or older   Male              12th grade   1.80  5.905512
## 3847             15 years old Female               9th grade   1.68  5.511811
## 3848             16 years old   Male              11th grade   1.85  6.069554
## 3849             14 years old Female               9th grade   1.57  5.150919
## 3850             16 years old   Male              11th grade   1.70  5.577428
## 3851             15 years old Female               9th grade   1.75  5.741470
## 3852             17 years old Female              12th grade     NA        NA
## 3853             16 years old   Male              10th grade   1.70  5.577428
## 3854             15 years old Female               9th grade   1.70  5.577428
## 3855             17 years old   Male              11th grade   1.78  5.839895
## 3856             15 years old Female              10th grade   1.68  5.511811
## 3857             15 years old   Male               9th grade   1.70  5.577428
## 3858             17 years old   Male              11th grade   1.85  6.069554
## 3859             16 years old Female              10th grade     NA        NA
## 3860             17 years old   Male              12th grade   1.75  5.741470
## 3861             14 years old   Male               9th grade   1.83  6.003937
## 3862             16 years old   <NA>              11th grade     NA        NA
## 3863             15 years old Female              10th grade   1.65  5.413386
## 3864    18 years old or older Female              12th grade   1.63  5.347769
## 3865             14 years old Female               9th grade   1.70  5.577428
## 3866             16 years old   Male              11th grade   1.80  5.905512
## 3867             15 years old   Male              10th grade   1.70  5.577428
## 3868             17 years old   Male              12th grade   1.85  6.069554
## 3869             15 years old   Male              10th grade   1.83  6.003937
## 3870             16 years old   Male              10th grade   1.78  5.839895
## 3871             15 years old   Male              10th grade   1.63  5.347769
## 3872             15 years old   Male              10th grade   1.83  6.003937
## 3873             17 years old   Male              11th grade   1.85  6.069554
## 3874             15 years old Female              10th grade   1.60  5.249344
## 3875             14 years old   Male               9th grade   1.80  5.905512
## 3876             17 years old   Male              11th grade   1.78  5.839895
## 3877    18 years old or older   Male              12th grade   1.75  5.741470
## 3878             15 years old   Male               9th grade   1.78  5.839895
## 3879             17 years old   Male              11th grade   1.83  6.003937
## 3880             16 years old Female              10th grade   1.63  5.347769
## 3881             17 years old Female              12th grade   1.78  5.839895
## 3882             14 years old Female               9th grade   1.63  5.347769
## 3883             17 years old   Male              11th grade   1.85  6.069554
## 3884             15 years old Female              10th grade   1.73  5.675853
## 3885    18 years old or older   Male              12th grade   1.85  6.069554
## 3886             15 years old   Male               9th grade   1.75  5.741470
## 3887             16 years old Female              11th grade   1.73  5.675853
## 3888             16 years old Female              10th grade   1.68  5.511811
## 3889             17 years old Female              11th grade   1.63  5.347769
## 3890             15 years old Female              10th grade   1.68  5.511811
## 3891             17 years old   Male              12th grade   1.70  5.577428
## 3892             15 years old Female              12th grade   1.63  5.347769
## 3893             17 years old   Male              11th grade   1.73  5.675853
## 3894             15 years old   Male              10th grade   1.75  5.741470
## 3895             16 years old Female              10th grade   1.57  5.150919
## 3896             17 years old Female              12th grade   1.63  5.347769
## 3897             15 years old   Male               9th grade   1.80  5.905512
## 3898             17 years old   Male              11th grade   1.80  5.905512
## 3899             16 years old Female              11th grade     NA        NA
## 3900             15 years old   Male              10th grade   1.70  5.577428
## 3901             17 years old Female              12th grade   1.60  5.249344
## 3902             15 years old   Male               9th grade   1.73  5.675853
## 3903             17 years old Female              11th grade   1.63  5.347769
## 3904             17 years old   Male              11th grade   1.73  5.675853
## 3905             16 years old Female              10th grade   1.60  5.249344
## 3906    18 years old or older Female              12th grade   1.70  5.577428
## 3907             15 years old   Male               9th grade   1.93  6.332021
## 3908             16 years old   Male              11th grade   1.78  5.839895
## 3909             15 years old Female              10th grade   1.65  5.413386
## 3910             17 years old Female              12th grade   1.63  5.347769
## 3911             14 years old Female               9th grade     NA        NA
## 3912             17 years old   Male              11th grade   1.55  5.085302
## 3913             16 years old   Male              10th grade   1.83  6.003937
## 3914             14 years old Female               9th grade   1.52  4.986877
## 3915             16 years old Female              11th grade   1.75  5.741470
## 3916             15 years old Female              10th grade   1.57  5.150919
## 3917    18 years old or older   Male              12th grade   1.78  5.839895
## 3918             17 years old   Male              11th grade   1.78  5.839895
## 3919             16 years old   Male              10th grade   1.83  6.003937
## 3920             17 years old   Male              12th grade   1.73  5.675853
## 3921             15 years old Female               9th grade   1.57  5.150919
## 3922             17 years old   Male              11th grade   1.75  5.741470
## 3923             16 years old   Male              10th grade   1.70  5.577428
## 3924    18 years old or older Female              12th grade   1.70  5.577428
## 3925             14 years old   Male               9th grade   1.75  5.741470
## 3926             14 years old Female               9th grade   1.63  5.347769
## 3927             17 years old   Male              11th grade   1.75  5.741470
## 3928             14 years old   Male              10th grade   1.73  5.675853
## 3929             17 years old   Male              12th grade   1.93  6.332021
## 3930             15 years old   Male               9th grade   1.65  5.413386
## 3931             15 years old Female               9th grade   1.68  5.511811
## 3932             16 years old   Male              10th grade   1.78  5.839895
## 3933             17 years old Female              12th grade   1.63  5.347769
## 3934             14 years old   Male               9th grade   1.75  5.741470
## 3935             16 years old Female              11th grade   1.55  5.085302
## 3936             15 years old Female              10th grade   1.68  5.511811
## 3937    18 years old or older   Male              12th grade   1.80  5.905512
## 3938             14 years old   Male               9th grade   1.80  5.905512
## 3939             16 years old   Male              11th grade   1.83  6.003937
## 3940             16 years old   Male              10th grade   1.78  5.839895
## 3941             15 years old   Male               9th grade   1.70  5.577428
## 3942             17 years old Female              11th grade   1.50  4.921260
## 3943             15 years old Female              10th grade     NA        NA
## 3944             17 years old Female              12th grade   1.78  5.839895
## 3945             15 years old   Male               9th grade   1.80  5.905512
## 3946             16 years old Female              11th grade   1.75  5.741470
## 3947             15 years old   Male              10th grade   1.75  5.741470
## 3948             17 years old   Male              12th grade   1.78  5.839895
## 3949             15 years old   Male               9th grade   1.75  5.741470
## 3950             17 years old   Male              11th grade   1.73  5.675853
## 3951             16 years old   Male              10th grade   1.65  5.413386
## 3952    18 years old or older   Male              12th grade   1.85  6.069554
## 3953             13 years old Female               9th grade   1.73  5.675853
## 3954             15 years old Female              10th grade   1.60  5.249344
## 3955    18 years old or older Female              12th grade   1.70  5.577428
## 3956             14 years old   Male               9th grade   1.75  5.741470
## 3957             15 years old Female              10th grade   1.70  5.577428
## 3958             14 years old Female               9th grade   1.68  5.511811
## 3959             15 years old Female               9th grade   1.60  5.249344
## 3960             14 years old Female               9th grade   1.52  4.986877
## 3961             15 years old Female              10th grade   1.63  5.347769
## 3962             17 years old   Male              10th grade   1.78  5.839895
## 3963             17 years old Female              11th grade   1.78  5.839895
## 3964             17 years old   Male              11th grade   1.78  5.839895
## 3965             17 years old   Male              12th grade   1.78  5.839895
## 3966    18 years old or older   Male              12th grade   1.73  5.675853
## 3967             14 years old Female               9th grade   1.60  5.249344
## 3968             15 years old   Male               9th grade   1.75  5.741470
## 3969             15 years old Female              10th grade     NA        NA
## 3970             15 years old   Male              10th grade   1.88  6.167979
## 3971             17 years old Female              11th grade   1.70  5.577428
## 3972             15 years old   Male               9th grade   1.73  5.675853
## 3973             13 years old Female               9th grade     NA        NA
## 3974             16 years old   Male              10th grade   1.80  5.905512
## 3975             15 years old Female              10th grade   1.68  5.511811
## 3976             16 years old   Male              11th grade   1.80  5.905512
## 3977             16 years old   Male              11th grade   1.85  6.069554
## 3978    18 years old or older Female              12th grade   1.47  4.822835
## 3979             17 years old Female              12th grade   1.70  5.577428
## 3980             15 years old   Male               9th grade   1.65  5.413386
## 3981             15 years old   Male              10th grade   1.93  6.332021
## 3982             16 years old   Male              10th grade   1.78  5.839895
## 3983             17 years old   Male              11th grade   1.78  5.839895
## 3984             17 years old Female              12th grade   1.68  5.511811
## 3985             17 years old Female              12th grade   1.68  5.511811
## 3986    18 years old or older Female              12th grade   1.75  5.741470
## 3987             15 years old Female               9th grade   1.63  5.347769
## 3988             15 years old Female               9th grade   1.63  5.347769
## 3989             16 years old Female              10th grade   1.55  5.085302
## 3990             15 years old Female              10th grade   1.65  5.413386
## 3991             17 years old Female              11th grade   1.65  5.413386
## 3992             17 years old Female              11th grade   1.60  5.249344
## 3993             17 years old Female              12th grade   1.60  5.249344
## 3994             17 years old Female              12th grade   1.75  5.741470
## 3995             15 years old Female               9th grade   1.68  5.511811
## 3996             14 years old Female               9th grade   1.60  5.249344
## 3997             15 years old   Male              10th grade   1.73  5.675853
## 3998             15 years old   Male              10th grade   1.78  5.839895
## 3999             17 years old Female              11th grade   1.70  5.577428
## 4000    18 years old or older Female              12th grade   1.57  5.150919
## 4001             14 years old   Male               9th grade   1.75  5.741470
## 4002             15 years old   Male               9th grade   1.73  5.675853
## 4003             15 years old   Male              10th grade   1.78  5.839895
## 4004             16 years old   Male              10th grade   1.93  6.332021
## 4005             17 years old   Male              11th grade     NA        NA
## 4006             17 years old Female              11th grade   1.65  5.413386
## 4007             17 years old Female              12th grade   1.70  5.577428
## 4008    18 years old or older Female              12th grade   1.57  5.150919
## 4009             15 years old   Male               9th grade   1.70  5.577428
## 4010             16 years old Female              10th grade   1.68  5.511811
## 4011             15 years old   Male              10th grade   1.83  6.003937
## 4012             17 years old   Male              11th grade   1.75  5.741470
## 4013             17 years old Female              11th grade     NA        NA
## 4014             17 years old Female              12th grade   1.57  5.150919
## 4015             17 years old Female              12th grade   1.80  5.905512
## 4016             15 years old Female               9th grade   1.65  5.413386
## 4017             16 years old Female              10th grade   1.68  5.511811
## 4018             15 years old Female              10th grade   1.70  5.577428
## 4019             17 years old   Male              11th grade   1.68  5.511811
## 4020             17 years old Female              11th grade   1.55  5.085302
## 4021             17 years old   Male              12th grade   1.78  5.839895
## 4022    18 years old or older   Male              12th grade   1.78  5.839895
## 4023             15 years old   Male               9th grade   1.70  5.577428
## 4024             14 years old Female               9th grade   1.63  5.347769
## 4025             15 years old Female              10th grade     NA        NA
## 4026             16 years old   Male              10th grade   1.73  5.675853
## 4027             16 years old   Male              11th grade   1.78  5.839895
## 4028             16 years old Female              11th grade   1.57  5.150919
## 4029             17 years old Female              12th grade   1.55  5.085302
## 4030    18 years old or older   Male              12th grade   1.85  6.069554
## 4031             14 years old   Male               9th grade   1.80  5.905512
## 4032             15 years old   Male               9th grade   1.63  5.347769
## 4033             16 years old   Male              10th grade   1.70  5.577428
## 4034             15 years old Female              10th grade   1.70  5.577428
## 4035             16 years old   Male              11th grade   1.83  6.003937
## 4036             14 years old Female               9th grade   1.63  5.347769
## 4037                     <NA>   Male              10th grade     NA        NA
## 4038             17 years old Female              11th grade     NA        NA
## 4039             16 years old Female              11th grade   1.68  5.511811
## 4040             17 years old   Male              12th grade   1.78  5.839895
## 4041    18 years old or older   Male              12th grade   1.75  5.741470
## 4042             14 years old Female               9th grade   1.55  5.085302
## 4043             15 years old Female              10th grade   1.73  5.675853
## 4044             16 years old Female              10th grade   1.73  5.675853
## 4045    18 years old or older   Male              11th grade     NA        NA
## 4046             16 years old   Male              11th grade   1.70  5.577428
## 4047    18 years old or older   Male              12th grade   1.83  6.003937
## 4048    18 years old or older Female              12th grade   1.60  5.249344
## 4049             15 years old Female               9th grade   1.63  5.347769
## 4050             14 years old   Male               9th grade   1.75  5.741470
## 4051             16 years old Female              10th grade   1.65  5.413386
## 4052             15 years old   Male              10th grade   1.80  5.905512
## 4053             17 years old Female              11th grade   1.80  5.905512
## 4054             16 years old   Male              11th grade   1.80  5.905512
## 4055             17 years old Female              12th grade   1.50  4.921260
## 4056             17 years old Female              12th grade   1.70  5.577428
## 4057             15 years old   Male               9th grade   1.68  5.511811
## 4058             15 years old   Male               9th grade   1.75  5.741470
## 4059             16 years old   Male              10th grade   1.70  5.577428
## 4060             16 years old   Male              10th grade   1.70  5.577428
## 4061             17 years old Female              11th grade   1.75  5.741470
## 4062    18 years old or older   Male              12th grade   1.78  5.839895
## 4063    18 years old or older   Male              12th grade   1.88  6.167979
## 4064             16 years old Female              10th grade   1.55  5.085302
## 4065             14 years old Female               9th grade   1.60  5.249344
## 4066             15 years old Female              10th grade   1.63  5.347769
## 4067             16 years old   Male              12th grade   1.83  6.003937
## 4068    18 years old or older Female              12th grade   1.60  5.249344
## 4069             15 years old   Male               9th grade   1.70  5.577428
## 4070             15 years old   Male              10th grade   1.83  6.003937
## 4071             17 years old Female              11th grade   1.75  5.741470
## 4072             17 years old Female              12th grade   1.63  5.347769
## 4073             17 years old Female              12th grade   1.68  5.511811
## 4074             15 years old   Male               9th grade   1.83  6.003937
## 4075             17 years old   Male              11th grade   1.80  5.905512
## 4076    18 years old or older Female              12th grade   1.63  5.347769
## 4077             17 years old Female              12th grade   1.63  5.347769
## 4078             14 years old Female               9th grade     NA        NA
## 4079             16 years old Female              11th grade     NA        NA
## 4080    18 years old or older   Male              12th grade   1.83  6.003937
## 4081             14 years old   Male               9th grade   1.73  5.675853
## 4082             14 years old Female                    <NA>   1.70  5.577428
## 4083             16 years old Female              11th grade   1.83  6.003937
## 4084             17 years old Female              12th grade   1.60  5.249344
## 4085             17 years old   Male              12th grade   1.85  6.069554
## 4086             15 years old Female               9th grade   1.68  5.511811
## 4087             16 years old Female              11th grade   1.70  5.577428
## 4088             17 years old Female              12th grade   1.70  5.577428
## 4089             17 years old Female              12th grade     NA        NA
## 4090             14 years old Female               9th grade   1.57  5.150919
## 4091             14 years old   Male               9th grade   1.65  5.413386
## 4092    18 years old or older   Male              12th grade   1.83  6.003937
## 4093             17 years old   Male              12th grade   1.73  5.675853
## 4094             15 years old   Male               9th grade   1.68  5.511811
## 4095             14 years old Female               9th grade   1.57  5.150919
## 4096             16 years old Female              10th grade   1.75  5.741470
## 4097             15 years old Female               9th grade   1.52  4.986877
## 4098             15 years old Female               9th grade   1.63  5.347769
## 4099             16 years old   Male              10th grade   1.75  5.741470
## 4100    18 years old or older   Male              10th grade   1.55  5.085302
## 4101             16 years old Female              11th grade   1.63  5.347769
## 4102             17 years old Female              12th grade   1.75  5.741470
## 4103    18 years old or older Female              12th grade   1.57  5.150919
## 4104             16 years old   Male               9th grade   1.70  5.577428
## 4105             15 years old   Male               9th grade   1.73  5.675853
## 4106             15 years old   Male               9th grade   1.78  5.839895
## 4107             15 years old   Male               9th grade   1.63  5.347769
## 4108             15 years old Female              10th grade   1.65  5.413386
## 4109             16 years old Female              10th grade   1.55  5.085302
## 4110             16 years old   Male              11th grade   1.65  5.413386
## 4111    18 years old or older   Male              12th grade   1.83  6.003937
## 4112             17 years old   Male              12th grade   1.80  5.905512
## 4113             15 years old   Male               9th grade   1.78  5.839895
## 4114             14 years old Female               9th grade     NA        NA
## 4115             16 years old Female              10th grade   1.68  5.511811
## 4116             15 years old Female              10th grade   1.68  5.511811
## 4117             16 years old   Male              11th grade   1.75  5.741470
## 4118    18 years old or older   Male              11th grade   1.90  6.233596
## 4119             17 years old Female              12th grade   1.52  4.986877
## 4120    18 years old or older   Male              12th grade     NA        NA
## 4121             15 years old   Male               9th grade   1.75  5.741470
## 4122             15 years old Female              10th grade   1.60  5.249344
## 4123             16 years old Female              10th grade   1.57  5.150919
## 4124             16 years old   Male              11th grade   1.68  5.511811
## 4125             17 years old Female              12th grade   1.70  5.577428
## 4126    18 years old or older   Male              12th grade   1.80  5.905512
## 4127             15 years old   Male               9th grade   1.90  6.233596
## 4128             14 years old   Male               9th grade   1.68  5.511811
## 4129             16 years old   Male               9th grade   1.88  6.167979
## 4130    18 years old or older Female              12th grade   1.55  5.085302
## 4131             15 years old Female              10th grade   1.70  5.577428
## 4132             15 years old Female               9th grade   1.60  5.249344
## 4133             17 years old Female              12th grade   1.73  5.675853
## 4134             17 years old   Male              11th grade   1.73  5.675853
## 4135             16 years old   Male              10th grade   1.68  5.511811
## 4136             16 years old   Male              11th grade   1.83  6.003937
## 4137             15 years old Female               9th grade   1.60  5.249344
## 4138    18 years old or older   Male              12th grade   1.83  6.003937
## 4139             15 years old   Male              10th grade   1.88  6.167979
## 4140             17 years old   Male              11th grade   1.73  5.675853
## 4141             15 years old   Male               9th grade   1.60  5.249344
## 4142             17 years old Female              12th grade   1.70  5.577428
## 4143             15 years old Female               9th grade   1.68  5.511811
## 4144             17 years old   Male              12th grade   1.68  5.511811
## 4145             16 years old Female              10th grade   1.60  5.249344
## 4146             16 years old   Male              11th grade   1.83  6.003937
## 4147             17 years old Female              12th grade   1.70  5.577428
## 4148             16 years old Female              10th grade   1.60  5.249344
## 4149    18 years old or older   Male              11th grade   1.73  5.675853
## 4150             14 years old Female               9th grade   1.78  5.839895
## 4151    18 years old or older Female              12th grade   1.70  5.577428
## 4152             17 years old   Male              10th grade     NA        NA
## 4153             16 years old   Male              11th grade   1.78  5.839895
## 4154             15 years old   Male              10th grade   1.73  5.675853
## 4155             17 years old   Male              11th grade   1.83  6.003937
## 4156             15 years old Female               9th grade   1.63  5.347769
## 4157    18 years old or older Female              12th grade     NA        NA
## 4158             15 years old Female              10th grade   1.75  5.741470
## 4159    18 years old or older   Male              12th grade   1.78  5.839895
## 4160             14 years old Female               9th grade   1.68  5.511811
## 4161             17 years old Female              12th grade   1.73  5.675853
## 4162             16 years old   Male               9th grade   1.83  6.003937
## 4163             17 years old Female              12th grade   1.52  4.986877
## 4164             15 years old   Male              10th grade   1.80  5.905512
## 4165    18 years old or older Female              12th grade   1.68  5.511811
## 4166             16 years old Female              10th grade   1.63  5.347769
## 4167             15 years old Female               9th grade     NA        NA
## 4168             17 years old   Male              12th grade   1.65  5.413386
## 4169             16 years old   Male              10th grade   1.78  5.839895
## 4170             16 years old   Male               9th grade     NA        NA
## 4171    18 years old or older Female              12th grade   1.73  5.675853
## 4172             15 years old   Male              10th grade   1.80  5.905512
## 4173             16 years old   Male              11th grade   1.70  5.577428
## 4174             14 years old   Male               9th grade   1.73  5.675853
## 4175    18 years old or older Female              12th grade   1.70  5.577428
## 4176             15 years old   Male              10th grade   1.70  5.577428
## 4177             16 years old   Male               9th grade   1.75  5.741470
## 4178             15 years old Female              10th grade     NA        NA
## 4179             17 years old Female              11th grade   1.57  5.150919
## 4180             15 years old Female               9th grade   1.57  5.150919
## 4181             17 years old   Male              10th grade   1.65  5.413386
## 4182             16 years old Female              11th grade     NA        NA
## 4183             15 years old   Male               9th grade   1.65  5.413386
## 4184             17 years old Female              12th grade   1.52  4.986877
## 4185             16 years old   Male              11th grade   1.78  5.839895
## 4186             15 years old Female               9th grade     NA        NA
## 4187    18 years old or older Female              12th grade   1.63  5.347769
## 4188             15 years old   Male              10th grade   1.80  5.905512
## 4189    18 years old or older   Male              11th grade   1.63  5.347769
## 4190             15 years old   Male              10th grade   1.70  5.577428
## 4191             16 years old   Male              11th grade   1.85  6.069554
## 4192             14 years old Female               9th grade   1.63  5.347769
## 4193    18 years old or older Female              12th grade   1.55  5.085302
## 4194             15 years old Female              10th grade     NA        NA
## 4195             16 years old   Male              11th grade   1.80  5.905512
## 4196             14 years old Female               9th grade   1.63  5.347769
## 4197             17 years old Female              12th grade   1.57  5.150919
## 4198             15 years old Female              10th grade   1.60  5.249344
## 4199             17 years old Female              11th grade   1.57  5.150919
## 4200             15 years old Female               9th grade   1.60  5.249344
## 4201             17 years old   Male              12th grade   1.90  6.233596
## 4202             15 years old Female              10th grade   1.63  5.347769
## 4203             16 years old Female              11th grade   1.63  5.347769
## 4204             15 years old Female               9th grade     NA        NA
## 4205             17 years old Female              12th grade   1.65  5.413386
## 4206             17 years old Female              10th grade   1.57  5.150919
## 4207             17 years old Female              11th grade   1.60  5.249344
## 4208    18 years old or older Female              12th grade   1.57  5.150919
## 4209             15 years old Female              10th grade   1.57  5.150919
## 4210             16 years old Female              11th grade   1.52  4.986877
## 4211             16 years old   Male               9th grade   1.63  5.347769
## 4212    18 years old or older   Male              12th grade   1.73  5.675853
## 4213             15 years old Female              10th grade   1.73  5.675853
## 4214             17 years old Female              11th grade   1.65  5.413386
## 4215             15 years old   Male               9th grade   1.80  5.905512
## 4216             17 years old   Male              12th grade   1.78  5.839895
## 4217             16 years old   Male              10th grade     NA        NA
## 4218             17 years old   Male              11th grade   1.73  5.675853
## 4219    18 years old or older Female              12th grade   1.73  5.675853
## 4220  12 years old or younger Female              10th grade     NA        NA
## 4221             17 years old   Male              11th grade     NA        NA
## 4222             17 years old   Male              10th grade   1.65  5.413386
## 4223             15 years old   Male              10th grade   1.78  5.839895
## 4224             16 years old   Male              10th grade   1.83  6.003937
## 4225             16 years old Female              10th grade   1.50  4.921260
## 4226             16 years old Female              11th grade   1.55  5.085302
## 4227             16 years old Female              10th grade   1.57  5.150919
## 4228             16 years old   Male              10th grade   1.73  5.675853
## 4229             17 years old Female              11th grade   1.55  5.085302
## 4230             15 years old   Male               9th grade   1.75  5.741470
## 4231             15 years old Female               9th grade   1.68  5.511811
## 4232             15 years old Female              10th grade   1.63  5.347769
## 4233             16 years old   Male               9th grade   1.75  5.741470
## 4234             16 years old   Male              10th grade   1.65  5.413386
## 4235             16 years old   Male              10th grade   1.78  5.839895
## 4236             16 years old   Male              11th grade   1.85  6.069554
## 4237             16 years old   Male              10th grade   1.65  5.413386
## 4238             17 years old Female              10th grade   1.60  5.249344
## 4239             16 years old Female              10th grade   1.55  5.085302
## 4240             17 years old Female              11th grade   1.60  5.249344
## 4241             17 years old Female              11th grade   1.55  5.085302
## 4242             16 years old Female              10th grade   1.55  5.085302
## 4243             17 years old Female              11th grade   1.55  5.085302
## 4244             15 years old   Male               9th grade   1.75  5.741470
## 4245             14 years old   Male               9th grade   1.75  5.741470
## 4246             16 years old Female              10th grade     NA        NA
## 4247             16 years old   Male              11th grade   1.60  5.249344
## 4248    18 years old or older Female              12th grade   1.63  5.347769
## 4249             15 years old Female               9th grade     NA        NA
## 4250             15 years old   Male              10th grade   1.75  5.741470
## 4251             17 years old Female              11th grade   1.68  5.511811
## 4252             17 years old Female              12th grade   1.73  5.675853
## 4253             14 years old   Male               9th grade   1.40  4.593176
## 4254             16 years old   Male              10th grade   1.80  5.905512
## 4255             17 years old Female              11th grade   1.63  5.347769
## 4256             17 years old   Male              12th grade   1.85  6.069554
## 4257             14 years old   Male               9th grade   1.75  5.741470
## 4258             15 years old   Male              10th grade   1.78  5.839895
## 4259             16 years old Female              11th grade   1.60  5.249344
## 4260             17 years old   Male              12th grade   1.83  6.003937
## 4261             15 years old Female               9th grade   1.52  4.986877
## 4262             16 years old   Male              10th grade   1.68  5.511811
## 4263             16 years old Female              11th grade   1.57  5.150919
## 4264             17 years old   Male              12th grade   1.70  5.577428
## 4265             14 years old   Male               9th grade   1.73  5.675853
## 4266             16 years old Female              10th grade   1.57  5.150919
## 4267             16 years old   Male              11th grade     NA        NA
## 4268             15 years old   Male               9th grade   1.68  5.511811
## 4269             17 years old Female              11th grade   1.70  5.577428
## 4270             17 years old Female              11th grade   1.70  5.577428
## 4271    18 years old or older   Male              12th grade   1.83  6.003937
## 4272             15 years old   Male               9th grade   1.70  5.577428
## 4273             16 years old Female              10th grade   1.63  5.347769
## 4274             16 years old   Male              11th grade   1.73  5.675853
## 4275             14 years old   Male               9th grade   1.70  5.577428
## 4276             15 years old Female              10th grade   1.65  5.413386
## 4277             16 years old Female              11th grade   1.65  5.413386
## 4278    18 years old or older   Male              12th grade   1.78  5.839895
## 4279             15 years old   Male               9th grade   1.65  5.413386
## 4280             16 years old Female              10th grade   1.68  5.511811
## 4281             16 years old Female              11th grade   1.65  5.413386
## 4282             17 years old   Male              12th grade   1.75  5.741470
## 4283             14 years old   Male               9th grade   1.83  6.003937
## 4284             15 years old   Male              10th grade   1.83  6.003937
## 4285             16 years old   Male              11th grade   1.83  6.003937
## 4286             17 years old Female              12th grade   1.63  5.347769
## 4287             14 years old Female               9th grade   1.63  5.347769
## 4288             16 years old   Male              10th grade   1.80  5.905512
## 4289             17 years old   Male              11th grade   1.65  5.413386
## 4290    18 years old or older Female              12th grade   1.63  5.347769
## 4291             15 years old Female               9th grade   1.70  5.577428
## 4292             16 years old   Male              10th grade   1.70  5.577428
## 4293             16 years old Female              11th grade     NA        NA
## 4294             17 years old Female              12th grade   1.60  5.249344
## 4295             15 years old   Male               9th grade   1.68  5.511811
## 4296             15 years old Female              10th grade   1.65  5.413386
## 4297             17 years old   Male              11th grade   1.83  6.003937
## 4298    18 years old or older Female              12th grade   1.57  5.150919
## 4299             15 years old   Male               9th grade   1.73  5.675853
## 4300             16 years old Female              10th grade   1.68  5.511811
## 4301    18 years old or older   Male              12th grade   1.78  5.839895
## 4302             15 years old Female              10th grade   1.70  5.577428
## 4303             17 years old   Male              11th grade   1.75  5.741470
## 4304             17 years old Female              12th grade   1.63  5.347769
## 4305             16 years old   Male              10th grade   1.75  5.741470
## 4306    18 years old or older Female              12th grade   1.65  5.413386
## 4307             16 years old Female              10th grade   1.57  5.150919
## 4308    18 years old or older   Male              12th grade   1.85  6.069554
## 4309             14 years old Female               9th grade   1.63  5.347769
## 4310             15 years old Female              10th grade   1.60  5.249344
## 4311             16 years old   Male              11th grade   1.73  5.675853
## 4312    18 years old or older Female              12th grade   1.60  5.249344
## 4313    18 years old or older Female              12th grade   1.55  5.085302
## 4314             15 years old   Male              10th grade   1.68  5.511811
## 4315    18 years old or older   Male              12th grade   1.90  6.233596
## 4316             15 years old Female              10th grade   1.57  5.150919
## 4317    18 years old or older   Male              12th grade   1.75  5.741470
## 4318    18 years old or older Female              12th grade   1.63  5.347769
## 4319             15 years old Female               9th grade   1.57  5.150919
## 4320             16 years old   Male              10th grade   1.68  5.511811
## 4321             17 years old   Male              11th grade   1.70  5.577428
## 4322    18 years old or older Female              12th grade   1.55  5.085302
## 4323             17 years old Female              12th grade   1.55  5.085302
## 4324             14 years old   Male               9th grade   1.70  5.577428
## 4325             15 years old   Male               9th grade   1.80  5.905512
## 4326             14 years old   Male               9th grade   1.78  5.839895
## 4327             15 years old Female               9th grade   1.68  5.511811
## 4328             15 years old Female               9th grade   1.57  5.150919
## 4329    18 years old or older Female              12th grade   1.73  5.675853
## 4330    18 years old or older   Male              12th grade   1.85  6.069554
## 4331             16 years old   Male              10th grade   1.70  5.577428
## 4332             15 years old   Male               9th grade   1.73  5.675853
## 4333             15 years old   Male              10th grade   1.83  6.003937
## 4334    18 years old or older Female              12th grade   1.60  5.249344
## 4335             15 years old   Male               9th grade   1.85  6.069554
## 4336             15 years old Female              10th grade   1.65  5.413386
## 4337    18 years old or older Female              12th grade   1.55  5.085302
## 4338    18 years old or older Female              12th grade   1.57  5.150919
## 4339             14 years old Female               9th grade   1.70  5.577428
## 4340             16 years old Female               9th grade   1.68  5.511811
## 4341    18 years old or older   Male              12th grade   1.80  5.905512
## 4342             15 years old Female               9th grade   1.70  5.577428
## 4343             15 years old Female               9th grade   1.68  5.511811
## 4344             17 years old Female              12th grade   1.70  5.577428
## 4345    18 years old or older   Male              12th grade   1.88  6.167979
## 4346             14 years old Female               9th grade   1.70  5.577428
## 4347             15 years old Female               9th grade   1.60  5.249344
## 4348             15 years old Female               9th grade     NA        NA
## 4349             17 years old Female              10th grade   1.57  5.150919
## 4350             17 years old   Male              12th grade   1.93  6.332021
## 4351             17 years old   Male              12th grade   1.83  6.003937
## 4352             15 years old   Male               9th grade   1.70  5.577428
## 4353             16 years old Female              10th grade   1.65  5.413386
## 4354    18 years old or older   Male              12th grade   1.90  6.233596
## 4355             14 years old   Male               9th grade   1.78  5.839895
## 4356             15 years old   <NA>               9th grade     NA        NA
## 4357             16 years old Female               9th grade     NA        NA
## 4358             15 years old Female               9th grade   1.78  5.839895
## 4359             16 years old   Male               9th grade   1.78  5.839895
## 4360             15 years old   Male               9th grade   1.68  5.511811
## 4361             15 years old Female              10th grade   1.57  5.150919
## 4362    18 years old or older   Male              12th grade   1.80  5.905512
## 4363             15 years old Female               9th grade   1.55  5.085302
## 4364             15 years old Female               9th grade   1.57  5.150919
## 4365    18 years old or older Female              12th grade   1.65  5.413386
## 4366    18 years old or older   Male              12th grade   1.75  5.741470
## 4367             15 years old   Male              10th grade   1.78  5.839895
## 4368             14 years old Female               9th grade   1.83  6.003937
## 4369             14 years old Female               9th grade   1.50  4.921260
## 4370             14 years old Female               9th grade   1.63  5.347769
## 4371             16 years old Female              10th grade   1.55  5.085302
## 4372    18 years old or older   Male              12th grade   1.73  5.675853
## 4373             17 years old Female              12th grade   1.60  5.249344
## 4374             15 years old   Male               9th grade   1.83  6.003937
## 4375             15 years old   Male                    <NA>   1.75  5.741470
## 4376             15 years old   Male               9th grade   1.85  6.069554
## 4377             15 years old   Male              10th grade   1.93  6.332021
## 4378    18 years old or older   Male              12th grade   1.78  5.839895
## 4379    18 years old or older   Male              12th grade   1.73  5.675853
## 4380             15 years old Female               9th grade     NA        NA
## 4381             14 years old Female               9th grade   1.70  5.577428
## 4382    18 years old or older Female              12th grade   1.60  5.249344
## 4383    18 years old or older   Male              12th grade   1.96  6.430446
## 4384             15 years old Female               9th grade   1.52  4.986877
## 4385    18 years old or older   Male              12th grade   1.85  6.069554
## 4386             15 years old   Male               9th grade     NA        NA
## 4387             15 years old Female               9th grade   1.65  5.413386
## 4388             16 years old   Male              10th grade   1.93  6.332021
## 4389    18 years old or older   Male              12th grade   1.83  6.003937
## 4390             17 years old   Male              12th grade   1.70  5.577428
## 4391             16 years old Female               9th grade     NA        NA
## 4392             15 years old Female               9th grade   1.50  4.921260
## 4393             15 years old   Male              10th grade   1.57  5.150919
## 4394    18 years old or older   Male              12th grade     NA        NA
## 4395             15 years old   Male               9th grade   1.83  6.003937
## 4396             15 years old Female               9th grade   1.65  5.413386
## 4397             16 years old Female              10th grade   1.70  5.577428
## 4398             17 years old   Male              11th grade   1.73  5.675853
## 4399             17 years old Female              11th grade   1.68  5.511811
## 4400             16 years old Female              10th grade   1.65  5.413386
## 4401             16 years old   Male              10th grade   1.88  6.167979
## 4402             16 years old Female              11th grade   1.63  5.347769
## 4403             15 years old Female              10th grade   1.57  5.150919
## 4404             16 years old Female              10th grade   1.60  5.249344
## 4405    18 years old or older   Male              12th grade   1.90  6.233596
## 4406    18 years old or older   Male              12th grade   1.88  6.167979
## 4407             15 years old   Male              10th grade   1.80  5.905512
## 4408             16 years old Female              10th grade   1.70  5.577428
## 4409             16 years old   Male              11th grade   1.83  6.003937
## 4410             16 years old Female              10th grade   1.68  5.511811
## 4411             15 years old Female              10th grade     NA        NA
## 4412             17 years old   Male              11th grade   1.80  5.905512
## 4413             17 years old   Male              11th grade   1.63  5.347769
## 4414             16 years old   Male              10th grade   1.70  5.577428
## 4415             17 years old   Male              10th grade   1.90  6.233596
## 4416             15 years old   Male              10th grade   1.83  6.003937
## 4417             17 years old Female              11th grade   1.73  5.675853
## 4418             17 years old   Male              11th grade   1.80  5.905512
## 4419             16 years old Female              10th grade   1.55  5.085302
## 4420             17 years old   Male              11th grade   1.96  6.430446
## 4421             16 years old Female              11th grade   1.60  5.249344
## 4422             16 years old Female              11th grade     NA        NA
## 4423             17 years old   Male              10th grade   1.68  5.511811
## 4424             16 years old   Male              11th grade   1.96  6.430446
## 4425             15 years old Female              10th grade   1.70  5.577428
## 4426             16 years old   Male              11th grade   1.75  5.741470
## 4427    18 years old or older Female              11th grade   1.55  5.085302
## 4428             15 years old   Male              10th grade   1.80  5.905512
## 4429             16 years old   Male              10th grade   1.83  6.003937
## 4430             17 years old Female              11th grade   1.57  5.150919
## 4431             17 years old   Male              12th grade   1.73  5.675853
## 4432             16 years old   Male              10th grade   1.73  5.675853
## 4433             16 years old Female              10th grade   1.65  5.413386
## 4434             16 years old Female              11th grade   1.60  5.249344
## 4435             17 years old   Male              11th grade   1.78  5.839895
## 4436             15 years old Female              10th grade   1.65  5.413386
## 4437             16 years old   Male              10th grade   1.73  5.675853
## 4438             17 years old Female              11th grade   1.68  5.511811
## 4439             17 years old Female              12th grade   1.57  5.150919
## 4440             15 years old   Male              10th grade   1.83  6.003937
## 4441             16 years old Female              10th grade   1.57  5.150919
## 4442             17 years old Female              11th grade   1.65  5.413386
## 4443             17 years old   Male              11th grade   1.68  5.511811
## 4444             15 years old Female              10th grade   1.57  5.150919
## 4445             14 years old Female               9th grade   1.60  5.249344
## 4446             15 years old Female              10th grade   1.57  5.150919
## 4447             17 years old   Male              11th grade   1.85  6.069554
## 4448    18 years old or older   Male              12th grade   1.80  5.905512
## 4449             16 years old Female              11th grade     NA        NA
## 4450             16 years old Female              10th grade   1.68  5.511811
## 4451             17 years old   Male              11th grade   1.75  5.741470
## 4452             15 years old   Male              10th grade   1.80  5.905512
## 4453             16 years old Female              10th grade   1.68  5.511811
## 4454             17 years old   Male              12th grade   1.83  6.003937
## 4455    18 years old or older Female              12th grade   1.73  5.675853
## 4456    18 years old or older   Male              12th grade   1.83  6.003937
## 4457    18 years old or older Female              12th grade   1.57  5.150919
## 4458    18 years old or older   Male              12th grade   1.83  6.003937
## 4459    18 years old or older   Male              12th grade   1.85  6.069554
## 4460             15 years old   Male              10th grade   1.63  5.347769
## 4461             17 years old   Male              11th grade   1.70  5.577428
## 4462             17 years old   Male              11th grade   1.83  6.003937
## 4463             15 years old   Male              10th grade     NA        NA
## 4464             15 years old   Male              10th grade   1.70  5.577428
## 4465             17 years old Female              11th grade   1.65  5.413386
## 4466             17 years old   Male              12th grade   1.78  5.839895
## 4467             16 years old Female              10th grade     NA        NA
## 4468             15 years old   Male              10th grade   1.83  6.003937
## 4469             15 years old Female              10th grade   1.57  5.150919
## 4470             16 years old Female              11th grade   1.63  5.347769
## 4471             16 years old Female              10th grade   1.65  5.413386
## 4472             15 years old Female              10th grade   1.65  5.413386
## 4473             16 years old   Male              10th grade   1.80  5.905512
## 4474             17 years old   Male              11th grade   1.83  6.003937
## 4475             15 years old   Male              10th grade   1.83  6.003937
## 4476             14 years old Female               9th grade   1.57  5.150919
## 4477    18 years old or older Female              12th grade   1.68  5.511811
## 4478    18 years old or older Female              12th grade     NA        NA
## 4479             15 years old Female               9th grade   1.63  5.347769
## 4480             16 years old Female              10th grade   1.60  5.249344
## 4481             16 years old Female              10th grade   1.68  5.511811
## 4482             16 years old Female              10th grade     NA        NA
## 4483             16 years old Female              10th grade   1.75  5.741470
## 4484             15 years old Female               9th grade   1.57  5.150919
## 4485             16 years old Female              11th grade   1.60  5.249344
## 4486             14 years old   Male               9th grade   1.78  5.839895
## 4487             15 years old   Male               9th grade   1.73  5.675853
## 4488    18 years old or older Female              12th grade   1.70  5.577428
## 4489    18 years old or older Female              12th grade   1.75  5.741470
## 4490    18 years old or older   Male              12th grade   1.78  5.839895
## 4491             15 years old Female              10th grade   1.60  5.249344
## 4492             16 years old Female              10th grade   1.63  5.347769
## 4493             14 years old Female               9th grade   1.63  5.347769
## 4494             15 years old   Male              10th grade   1.83  6.003937
## 4495             17 years old Female              12th grade   1.65  5.413386
## 4496             16 years old Female              10th grade   1.63  5.347769
## 4497             15 years old Female              10th grade   1.70  5.577428
## 4498    18 years old or older   Male              12th grade   1.83  6.003937
## 4499             15 years old Female               9th grade   1.63  5.347769
## 4500    18 years old or older Female              12th grade   1.63  5.347769
## 4501             15 years old Female              10th grade   1.63  5.347769
## 4502             17 years old   Male              11th grade   1.78  5.839895
## 4503             16 years old   Male              11th grade   1.88  6.167979
## 4504             15 years old   Male              10th grade   1.75  5.741470
## 4505             17 years old   Male              11th grade   1.83  6.003937
## 4506             14 years old   Male               9th grade   1.70  5.577428
## 4507             15 years old   Male              10th grade   1.68  5.511811
## 4508             16 years old   Male              11th grade   1.68  5.511811
## 4509             17 years old   Male              11th grade   1.80  5.905512
## 4510             15 years old   Male               9th grade   1.75  5.741470
## 4511             14 years old Female               9th grade   1.63  5.347769
## 4512             15 years old Female               9th grade   1.65  5.413386
## 4513             14 years old Female               9th grade   1.73  5.675853
## 4514             16 years old Female              11th grade   1.78  5.839895
## 4515             15 years old Female               9th grade   1.60  5.249344
## 4516             17 years old Female              11th grade   1.73  5.675853
## 4517             15 years old Female              10th grade   1.60  5.249344
## 4518             17 years old   Male              12th grade   1.90  6.233596
## 4519             16 years old Female              10th grade   1.63  5.347769
## 4520             17 years old   Male              12th grade   1.75  5.741470
## 4521             16 years old Female              11th grade   1.57  5.150919
## 4522             16 years old Female              10th grade   1.65  5.413386
## 4523             17 years old Female              11th grade   1.65  5.413386
## 4524             15 years old Female               9th grade   1.63  5.347769
## 4525             17 years old   Male              11th grade   1.75  5.741470
## 4526             15 years old Female              10th grade   1.52  4.986877
## 4527             16 years old   Male              11th grade   1.83  6.003937
## 4528             17 years old Female              11th grade   1.83  6.003937
## 4529             16 years old Female              10th grade   1.57  5.150919
## 4530             17 years old   Male              11th grade   1.80  5.905512
## 4531             17 years old Female              11th grade   1.65  5.413386
## 4532             16 years old   Male              10th grade   1.83  6.003937
## 4533             17 years old   Male              11th grade   1.78  5.839895
## 4534             17 years old   Male              11th grade   1.68  5.511811
## 4535             16 years old Female              10th grade   1.80  5.905512
## 4536             15 years old   Male               9th grade   1.83  6.003937
## 4537             17 years old Female              11th grade   1.70  5.577428
## 4538             15 years old Female              10th grade   1.70  5.577428
## 4539             15 years old Female              10th grade   1.65  5.413386
## 4540             15 years old Female               9th grade   1.68  5.511811
## 4541             17 years old Female              11th grade   1.63  5.347769
## 4542             15 years old Female              10th grade   1.75  5.741470
## 4543             15 years old Female               9th grade   1.65  5.413386
## 4544             17 years old Female              11th grade   1.60  5.249344
## 4545             15 years old   Male              10th grade   1.73  5.675853
## 4546             17 years old Female              12th grade   1.80  5.905512
## 4547             17 years old   Male              11th grade   1.85  6.069554
## 4548             16 years old   Male              10th grade   1.88  6.167979
## 4549             17 years old   Male              12th grade   1.83  6.003937
## 4550             16 years old   Male              10th grade   1.85  6.069554
## 4551             16 years old Female              11th grade   1.57  5.150919
## 4552             16 years old Female              11th grade   1.68  5.511811
## 4553             15 years old Female              10th grade   1.65  5.413386
## 4554             16 years old Female              10th grade   1.63  5.347769
## 4555             17 years old   Male              11th grade   1.78  5.839895
## 4556             17 years old   Male              11th grade   1.68  5.511811
## 4557             14 years old   Male               9th grade   1.73  5.675853
## 4558             15 years old Female               9th grade   1.60  5.249344
## 4559             17 years old   Male              12th grade   1.88  6.167979
## 4560             15 years old   Male              10th grade   1.80  5.905512
## 4561             16 years old   Male              11th grade   1.80  5.905512
## 4562             14 years old   Male               9th grade   1.75  5.741470
## 4563             16 years old   Male              10th grade   1.70  5.577428
## 4564    18 years old or older   Male              12th grade   1.78  5.839895
## 4565             15 years old Female               9th grade   1.60  5.249344
## 4566             17 years old Female              11th grade   1.80  5.905512
## 4567             15 years old Female              10th grade   1.63  5.347769
## 4568    18 years old or older Female              12th grade   1.60  5.249344
## 4569             17 years old   Male              11th grade   1.75  5.741470
## 4570             16 years old Female              11th grade   1.63  5.347769
## 4571             17 years old Female              11th grade   1.68  5.511811
## 4572             16 years old Female              11th grade   1.65  5.413386
## 4573    18 years old or older Female              11th grade   1.70  5.577428
## 4574             16 years old Female              11th grade   1.73  5.675853
## 4575             16 years old Female              11th grade   1.63  5.347769
## 4576             17 years old Female              11th grade   1.75  5.741470
## 4577             16 years old Female              11th grade   1.65  5.413386
## 4578             16 years old Female              11th grade   1.68  5.511811
## 4579             17 years old Female              11th grade   1.60  5.249344
## 4580    18 years old or older Female              12th grade   1.63  5.347769
## 4581    18 years old or older   Male              12th grade   1.68  5.511811
## 4582    18 years old or older Female              12th grade   1.78  5.839895
## 4583             17 years old Female              12th grade   1.57  5.150919
## 4584             17 years old Female              12th grade   1.75  5.741470
## 4585             17 years old Female              11th grade   1.63  5.347769
## 4586             17 years old Female              11th grade   1.68  5.511811
## 4587             17 years old Female              11th grade   1.60  5.249344
## 4588             17 years old Female              12th grade   1.68  5.511811
## 4589    18 years old or older   <NA>              12th grade     NA        NA
## 4590             17 years old   Male              12th grade   1.90  6.233596
## 4591             17 years old Female              12th grade   1.63  5.347769
## 4592    18 years old or older Female              12th grade   1.70  5.577428
## 4593             17 years old   <NA>              11th grade     NA        NA
## 4594    18 years old or older Female              12th grade   1.60  5.249344
## 4595             17 years old Female              12th grade   1.63  5.347769
## 4596    18 years old or older Female              12th grade   1.65  5.413386
## 4597             17 years old   Male              12th grade   1.73  5.675853
## 4598             17 years old Female              12th grade   1.68  5.511811
## 4599             15 years old   Male              10th grade   1.83  6.003937
## 4600             15 years old Female              10th grade   1.65  5.413386
## 4601             16 years old   Male              10th grade   1.65  5.413386
## 4602             16 years old Female              10th grade   1.57  5.150919
## 4603             17 years old Female              10th grade   1.70  5.577428
## 4604             17 years old Female              10th grade   1.70  5.577428
## 4605             17 years old Female              11th grade   1.75  5.741470
## 4606             16 years old   Male              10th grade     NA        NA
## 4607             16 years old Female              10th grade   1.68  5.511811
## 4608             15 years old   Male              10th grade   1.83  6.003937
## 4609             16 years old   Male              10th grade   1.85  6.069554
## 4610             15 years old Female               9th grade   1.63  5.347769
## 4611             14 years old Female               9th grade   1.68  5.511811
## 4612             15 years old Female               9th grade   1.63  5.347769
## 4613             14 years old Female               9th grade   1.55  5.085302
## 4614             15 years old   Male               9th grade   1.63  5.347769
## 4615             15 years old Female               9th grade   1.60  5.249344
## 4616             14 years old Female               9th grade   1.57  5.150919
## 4617             16 years old   Male              10th grade   1.73  5.675853
## 4618             16 years old Female              10th grade   1.63  5.347769
## 4619             16 years old Female               9th grade   1.45  4.757218
## 4620             16 years old   Male              10th grade   1.73  5.675853
## 4621             17 years old   Male              10th grade   1.80  5.905512
## 4622             14 years old   Male               9th grade   1.70  5.577428
## 4623             16 years old   Male              10th grade   1.70  5.577428
## 4624             15 years old   Male               9th grade   1.80  5.905512
## 4625             16 years old   Male              10th grade   1.78  5.839895
## 4626             14 years old Female               9th grade   1.55  5.085302
## 4627             16 years old   Male              10th grade   1.73  5.675853
## 4628             16 years old   Male              10th grade     NA        NA
## 4629             15 years old Female               9th grade   1.65  5.413386
## 4630             16 years old Female              11th grade     NA        NA
## 4631             17 years old Female              12th grade   1.68  5.511811
## 4632             15 years old   Male              10th grade   1.78  5.839895
## 4633             16 years old   Male              10th grade   1.85  6.069554
## 4634             15 years old   Male               9th grade   1.83  6.003937
## 4635             17 years old   Male              12th grade   1.73  5.675853
## 4636             14 years old   Male               9th grade   1.63  5.347769
## 4637             15 years old   Male              10th grade   2.01  6.594488
## 4638             14 years old Female               9th grade   1.60  5.249344
## 4639             16 years old   Male              11th grade   1.83  6.003937
## 4640             17 years old Female              11th grade   1.65  5.413386
## 4641             17 years old   Male              11th grade   1.70  5.577428
## 4642             17 years old   Male              12th grade   1.93  6.332021
## 4643             16 years old   Male              10th grade   1.78  5.839895
## 4644             15 years old   Male              10th grade   1.73  5.675853
## 4645             14 years old   Male               9th grade   1.88  6.167979
## 4646             16 years old Female              10th grade   1.63  5.347769
## 4647             16 years old Female               9th grade   1.57  5.150919
## 4648             16 years old   Male              10th grade   1.80  5.905512
## 4649             16 years old Female              10th grade     NA        NA
## 4650             16 years old   Male              10th grade   1.73  5.675853
## 4651             16 years old Female              10th grade   1.57  5.150919
## 4652             15 years old Female               9th grade   1.55  5.085302
## 4653             15 years old   Male              10th grade   1.98  6.496063
## 4654             16 years old Female               9th grade   1.65  5.413386
## 4655             14 years old   Male               9th grade   1.78  5.839895
## 4656             16 years old   Male              10th grade   1.85  6.069554
## 4657             15 years old   Male               9th grade   1.78  5.839895
## 4658             15 years old   Male              10th grade   1.73  5.675853
## 4659             14 years old Female               9th grade   1.70  5.577428
## 4660             17 years old   Male              10th grade   1.80  5.905512
## 4661             14 years old   Male               9th grade   1.65  5.413386
## 4662             16 years old Female              11th grade   1.52  4.986877
## 4663    18 years old or older   Male              12th grade   1.78  5.839895
## 4664             16 years old   Male              11th grade   1.80  5.905512
## 4665    18 years old or older Female              12th grade   1.70  5.577428
## 4666    18 years old or older Female              12th grade     NA        NA
## 4667             17 years old Female              11th grade   1.55  5.085302
## 4668             17 years old   Male              11th grade   1.78  5.839895
## 4669    18 years old or older Female              12th grade   1.63  5.347769
## 4670             17 years old Female              11th grade   1.68  5.511811
## 4671    18 years old or older   Male              12th grade   1.63  5.347769
## 4672    18 years old or older Female              12th grade   1.73  5.675853
## 4673    18 years old or older Female              12th grade   1.57  5.150919
## 4674             17 years old   Male              11th grade   1.83  6.003937
## 4675             17 years old Female              12th grade   1.70  5.577428
## 4676             17 years old   Male              12th grade   1.85  6.069554
## 4677             16 years old Female              11th grade     NA        NA
## 4678    18 years old or older   Male              12th grade   1.63  5.347769
## 4679             16 years old Female              11th grade   1.73  5.675853
## 4680             16 years old   Male              12th grade   1.83  6.003937
## 4681             16 years old   Male              11th grade   1.80  5.905512
## 4682    18 years old or older Female              12th grade   1.63  5.347769
## 4683             17 years old   Male              11th grade   1.83  6.003937
## 4684    18 years old or older Female              12th grade   1.55  5.085302
## 4685    18 years old or older   Male              12th grade   1.88  6.167979
## 4686             16 years old   Male              11th grade   1.75  5.741470
## 4687    18 years old or older Female              12th grade   1.63  5.347769
## 4688             17 years old   Male              11th grade   1.68  5.511811
## 4689    18 years old or older Female              12th grade   1.73  5.675853
## 4690    18 years old or older   Male              11th grade   1.88  6.167979
## 4691             17 years old   Male              12th grade   1.85  6.069554
## 4692             17 years old   Male              11th grade   1.70  5.577428
## 4693    18 years old or older Female              12th grade   1.60  5.249344
## 4694    18 years old or older Female              11th grade   1.57  5.150919
## 4695             17 years old   Male              11th grade   1.90  6.233596
## 4696             17 years old   Male              12th grade   1.75  5.741470
## 4697    18 years old or older   Male              12th grade   1.83  6.003937
## 4698             17 years old   Male              11th grade   1.75  5.741470
## 4699             17 years old   Male              11th grade   1.73  5.675853
## 4700    18 years old or older Female              12th grade   1.68  5.511811
## 4701    18 years old or older   Male              12th grade   1.73  5.675853
## 4702             16 years old   Male              11th grade   1.73  5.675853
## 4703             17 years old   Male              11th grade   1.70  5.577428
## 4704    18 years old or older   Male              12th grade   1.90  6.233596
## 4705             16 years old   Male              11th grade   1.78  5.839895
## 4706             16 years old Female              11th grade   1.63  5.347769
## 4707    18 years old or older Female              12th grade   1.68  5.511811
## 4708             16 years old   Male              11th grade   1.70  5.577428
## 4709             16 years old Female              11th grade   1.63  5.347769
## 4710    18 years old or older   Male              12th grade   1.80  5.905512
## 4711             17 years old   Male              12th grade   1.78  5.839895
## 4712             16 years old   Male              11th grade   1.80  5.905512
## 4713             17 years old   Male              11th grade   1.78  5.839895
## 4714             17 years old Female              12th grade   1.68  5.511811
## 4715             16 years old   Male              11th grade   1.68  5.511811
## 4716             17 years old   Male              12th grade   1.90  6.233596
## 4717             17 years old Female              11th grade   1.68  5.511811
## 4718             17 years old   Male              11th grade   1.65  5.413386
## 4719             17 years old Female              12th grade   1.60  5.249344
## 4720             16 years old Female              11th grade   1.63  5.347769
## 4721             16 years old   Male              11th grade   1.68  5.511811
## 4722             16 years old   Male              10th grade     NA        NA
## 4723             16 years old Female              10th grade   1.65  5.413386
## 4724             15 years old Female              10th grade   1.73  5.675853
## 4725             15 years old   Male              10th grade   1.68  5.511811
## 4726             16 years old   Male              10th grade   1.68  5.511811
## 4727             15 years old Female              10th grade   1.57  5.150919
## 4728             15 years old   Male              10th grade     NA        NA
## 4729             16 years old Female              10th grade     NA        NA
## 4730             16 years old   Male              10th grade   1.63  5.347769
## 4731             15 years old   Male              10th grade   1.85  6.069554
## 4732             15 years old   Male              10th grade   1.65  5.413386
## 4733             15 years old Female              10th grade   1.63  5.347769
## 4734             15 years old   Male              10th grade   1.68  5.511811
## 4735             15 years old   Male              10th grade   1.80  5.905512
## 4736             15 years old Female              10th grade   1.60  5.249344
## 4737             16 years old Female              10th grade   1.57  5.150919
## 4738             15 years old   Male              10th grade   1.78  5.839895
## 4739             15 years old   Male              10th grade   1.70  5.577428
## 4740             16 years old Female              10th grade   1.70  5.577428
## 4741             17 years old   Male              11th grade   1.80  5.905512
## 4742             15 years old Female              10th grade   1.68  5.511811
## 4743             16 years old Female              10th grade   1.60  5.249344
## 4744             17 years old Female              11th grade   1.57  5.150919
## 4745             17 years old   Male              11th grade   1.80  5.905512
## 4746             16 years old Female              10th grade   1.57  5.150919
## 4747             16 years old   Male              10th grade   1.83  6.003937
## 4748             16 years old Female              11th grade   1.60  5.249344
## 4749             16 years old   Male              10th grade   1.96  6.430446
## 4750             16 years old Female              10th grade   1.70  5.577428
## 4751             15 years old Female              10th grade   1.70  5.577428
## 4752             15 years old Female              10th grade     NA        NA
## 4753             16 years old Female              10th grade   1.70  5.577428
## 4754             15 years old Female              10th grade   1.60  5.249344
## 4755             16 years old Female              11th grade   1.57  5.150919
## 4756             16 years old Female              11th grade   1.68  5.511811
## 4757             15 years old   Male              10th grade   1.73  5.675853
## 4758             15 years old Female              10th grade   1.60  5.249344
## 4759             16 years old   Male              11th grade     NA        NA
## 4760             16 years old   Male              11th grade   1.88  6.167979
## 4761             16 years old Female              10th grade   1.65  5.413386
## 4762             15 years old Female              10th grade   1.60  5.249344
## 4763             16 years old Female              11th grade   1.65  5.413386
## 4764             16 years old Female              10th grade   1.60  5.249344
## 4765             16 years old   Male              11th grade   1.85  6.069554
## 4766             16 years old Female              11th grade   1.55  5.085302
## 4767             16 years old   Male              10th grade     NA        NA
## 4768             16 years old Female              11th grade   1.73  5.675853
## 4769             16 years old   Male              11th grade   1.78  5.839895
## 4770             16 years old   Male              10th grade   1.90  6.233596
## 4771             15 years old Female              10th grade   1.57  5.150919
## 4772             16 years old   Male              10th grade   1.68  5.511811
## 4773    18 years old or older   Male              12th grade     NA        NA
## 4774             16 years old   Male              10th grade   1.83  6.003937
## 4775             16 years old Female              10th grade   1.65  5.413386
## 4776             17 years old Female              12th grade   1.60  5.249344
## 4777             16 years old   Male              11th grade   1.80  5.905512
## 4778             15 years old Female              10th grade   1.68  5.511811
## 4779             15 years old   Male              10th grade   1.75  5.741470
## 4780             17 years old Female              11th grade   1.60  5.249344
## 4781             17 years old   Male                    <NA>   1.88  6.167979
## 4782             15 years old Female              10th grade   1.60  5.249344
## 4783             16 years old   Male              11th grade   1.83  6.003937
## 4784             16 years old   Male              11th grade   1.83  6.003937
## 4785             16 years old Female              10th grade   1.60  5.249344
## 4786             15 years old Female              10th grade   1.68  5.511811
## 4787             16 years old   Male              11th grade   1.78  5.839895
## 4788             16 years old Female              10th grade   1.50  4.921260
## 4789             16 years old Female              10th grade   1.65  5.413386
## 4790             16 years old Female              11th grade   1.60  5.249344
## 4791             16 years old   Male              10th grade   1.78  5.839895
## 4792             15 years old Female              10th grade   1.70  5.577428
## 4793             17 years old   Male              11th grade   1.80  5.905512
## 4794             16 years old Female              11th grade   1.73  5.675853
## 4795             15 years old   Male              10th grade   1.70  5.577428
## 4796             16 years old Female              10th grade     NA        NA
## 4797             16 years old Female              11th grade   1.68  5.511811
## 4798             17 years old Female              11th grade   1.65  5.413386
## 4799             16 years old Female              10th grade   1.68  5.511811
## 4800             16 years old Female              10th grade   1.52  4.986877
## 4801             17 years old Female              11th grade   1.63  5.347769
## 4802             17 years old   Male              11th grade   1.83  6.003937
## 4803             16 years old   Male              10th grade   1.80  5.905512
## 4804             14 years old   Male               9th grade   1.78  5.839895
## 4805             14 years old Female               9th grade   1.63  5.347769
## 4806             15 years old   Male               9th grade   1.80  5.905512
## 4807             17 years old   Male              12th grade   1.83  6.003937
## 4808             17 years old Female              12th grade   1.60  5.249344
## 4809    18 years old or older   Male              12th grade   1.68  5.511811
## 4810             17 years old   Male              12th grade   1.85  6.069554
## 4811             15 years old Female               9th grade   1.63  5.347769
## 4812             15 years old   Male              10th grade   1.73  5.675853
## 4813    18 years old or older   Male              12th grade   1.85  6.069554
## 4814             14 years old   Male               9th grade   1.63  5.347769
## 4815             15 years old   Male               9th grade   1.73  5.675853
## 4816             17 years old   Male              12th grade   1.88  6.167979
## 4817    18 years old or older   Male              12th grade   1.65  5.413386
## 4818             14 years old Female               9th grade   1.65  5.413386
## 4819             15 years old   Male               9th grade   1.78  5.839895
## 4820             17 years old   Male              12th grade   1.83  6.003937
## 4821    18 years old or older   Male              12th grade   1.85  6.069554
## 4822             15 years old   Male               9th grade   1.78  5.839895
## 4823             15 years old   Male               9th grade   1.78  5.839895
## 4824             14 years old   Male               9th grade   1.73  5.675853
## 4825             14 years old   Male               9th grade   1.73  5.675853
## 4826             16 years old   Male               9th grade   1.73  5.675853
## 4827    18 years old or older Female              12th grade   1.52  4.986877
## 4828             17 years old   Male              12th grade   1.83  6.003937
## 4829             15 years old   Male               9th grade   1.80  5.905512
## 4830             14 years old   Male               9th grade   1.70  5.577428
## 4831    18 years old or older   Male              12th grade   1.70  5.577428
## 4832             15 years old   Male               9th grade   1.65  5.413386
## 4833             17 years old Female              12th grade   1.60  5.249344
## 4834    18 years old or older   Male              12th grade   1.55  5.085302
## 4835             14 years old   Male               9th grade   1.70  5.577428
## 4836             14 years old Female               9th grade   1.57  5.150919
## 4837             17 years old Female              12th grade   1.68  5.511811
## 4838             15 years old   Male               9th grade   1.78  5.839895
## 4839             17 years old   Male              12th grade   1.85  6.069554
## 4840             14 years old   Male               9th grade   1.78  5.839895
## 4841    18 years old or older   Male              12th grade   1.70  5.577428
## 4842    18 years old or older Female              12th grade   1.65  5.413386
## 4843    18 years old or older   Male              12th grade   1.85  6.069554
## 4844             14 years old   Male               9th grade   1.88  6.167979
## 4845             14 years old   Male               9th grade   1.83  6.003937
## 4846    18 years old or older   Male              12th grade   1.70  5.577428
## 4847             17 years old Female              12th grade   1.73  5.675853
## 4848             14 years old Female               9th grade   1.57  5.150919
## 4849    18 years old or older   Male              12th grade   1.78  5.839895
## 4850             17 years old   Male              12th grade   1.80  5.905512
## 4851             17 years old   Male              12th grade   1.78  5.839895
## 4852             15 years old Female               9th grade   1.75  5.741470
## 4853             17 years old   Male              12th grade   1.93  6.332021
## 4854    18 years old or older Female              12th grade   1.68  5.511811
## 4855             17 years old   Male              12th grade   1.75  5.741470
## 4856             14 years old   Male               9th grade     NA        NA
## 4857    18 years old or older   Male              12th grade   1.83  6.003937
## 4858    18 years old or older   Male              12th grade   1.90  6.233596
## 4859             17 years old Female              11th grade   1.70  5.577428
## 4860             16 years old Female              11th grade   1.57  5.150919
## 4861             16 years old Female              11th grade     NA        NA
## 4862             16 years old Female              11th grade     NA        NA
## 4863             16 years old Female              11th grade   1.60  5.249344
## 4864             15 years old   Male               9th grade   1.80  5.905512
## 4865    18 years old or older   Male              12th grade   1.88  6.167979
## 4866    18 years old or older   Male              12th grade   1.85  6.069554
## 4867             14 years old Female               9th grade   1.57  5.150919
## 4868             17 years old Female              11th grade   1.63  5.347769
## 4869             15 years old   Male               9th grade   1.65  5.413386
## 4870             17 years old Female              12th grade   1.52  4.986877
## 4871    18 years old or older Female              12th grade   1.52  4.986877
## 4872             15 years old   Male               9th grade   1.68  5.511811
## 4873             17 years old Female              12th grade   1.80  5.905512
## 4874             17 years old   Male              11th grade   1.78  5.839895
## 4875             16 years old   Male              11th grade   1.83  6.003937
## 4876             14 years old Female               9th grade   1.63  5.347769
## 4877    18 years old or older   Male              12th grade   1.83  6.003937
## 4878             17 years old   Male              12th grade   1.80  5.905512
## 4879    18 years old or older Female              12th grade   1.52  4.986877
## 4880             16 years old Female              11th grade   1.63  5.347769
## 4881             15 years old Female              10th grade   1.63  5.347769
## 4882             14 years old Female               9th grade   1.65  5.413386
## 4883             15 years old Female              10th grade     NA        NA
## 4884             15 years old   Male              10th grade   1.90  6.233596
## 4885             14 years old   Male               9th grade   1.55  5.085302
## 4886             15 years old Female              10th grade   1.63  5.347769
## 4887             16 years old   Male              10th grade   1.65  5.413386
## 4888             14 years old Female               9th grade   1.75  5.741470
## 4889             14 years old Female               9th grade     NA        NA
## 4890             15 years old   Male               9th grade   1.78  5.839895
## 4891             16 years old   Male              10th grade   1.65  5.413386
## 4892             16 years old   Male              10th grade   1.85  6.069554
## 4893             15 years old   Male               9th grade   1.85  6.069554
## 4894             16 years old   Male              10th grade   1.85  6.069554
## 4895             16 years old   Male              10th grade   1.80  5.905512
## 4896             14 years old Female               9th grade     NA        NA
## 4897             15 years old Female              10th grade   1.73  5.675853
## 4898             15 years old   Male              10th grade   1.73  5.675853
## 4899             15 years old   Male               9th grade   1.75  5.741470
## 4900             15 years old   Male               9th grade   1.90  6.233596
## 4901             15 years old Female               9th grade   1.75  5.741470
## 4902             17 years old   Male              10th grade   1.80  5.905512
## 4903             16 years old   Male              10th grade   1.78  5.839895
## 4904             14 years old   Male               9th grade   1.70  5.577428
## 4905             15 years old Female               9th grade   1.60  5.249344
## 4906             14 years old Female               9th grade   1.68  5.511811
## 4907             14 years old Female               9th grade   1.63  5.347769
## 4908             16 years old   Male              10th grade   1.68  5.511811
## 4909             14 years old Female               9th grade   1.70  5.577428
## 4910             15 years old Female               9th grade   1.63  5.347769
## 4911             15 years old Female               9th grade   1.60  5.249344
## 4912             16 years old   Male              10th grade   1.78  5.839895
## 4913             15 years old Female               9th grade   1.65  5.413386
## 4914             15 years old   Male              10th grade   1.75  5.741470
## 4915             15 years old   Male              10th grade   1.78  5.839895
## 4916             14 years old   Male               9th grade   1.73  5.675853
## 4917             15 years old   Male               9th grade   1.83  6.003937
## 4918             16 years old   Male              10th grade   1.78  5.839895
## 4919             15 years old Female               9th grade   1.63  5.347769
## 4920             14 years old Female               9th grade   1.70  5.577428
## 4921             15 years old   Male              10th grade   1.75  5.741470
## 4922             16 years old   Male              10th grade   1.68  5.511811
## 4923             15 years old   Male               9th grade   1.83  6.003937
## 4924             16 years old   Male              10th grade   1.88  6.167979
## 4925             15 years old Female              10th grade   1.52  4.986877
## 4926             14 years old Female               9th grade   1.57  5.150919
## 4927             15 years old Female               9th grade   1.75  5.741470
## 4928             14 years old   Male               9th grade   1.78  5.839895
## 4929             15 years old Female              10th grade   1.65  5.413386
## 4930             16 years old   Male              10th grade   1.78  5.839895
## 4931             15 years old   Male               9th grade   1.75  5.741470
## 4932             14 years old   Male               9th grade   1.73  5.675853
## 4933             15 years old   Male              10th grade   1.78  5.839895
## 4934             15 years old Female              10th grade   1.63  5.347769
## 4935             15 years old Female               9th grade   1.57  5.150919
## 4936             15 years old   Male               9th grade   1.70  5.577428
## 4937             15 years old   Male              10th grade   1.80  5.905512
## 4938             16 years old   Male              10th grade   1.83  6.003937
## 4939             14 years old Female               9th grade   1.75  5.741470
## 4940             16 years old   Male               9th grade   1.75  5.741470
## 4941             15 years old Female              10th grade   1.65  5.413386
## 4942             15 years old   Male              10th grade   1.80  5.905512
## 4943             14 years old   Male               9th grade     NA        NA
## 4944             15 years old   Male               9th grade   1.68  5.511811
## 4945             14 years old   Male               9th grade   1.73  5.675853
## 4946                     <NA>   Male               9th grade     NA        NA
## 4947             15 years old Female              10th grade   1.63  5.347769
## 4948             16 years old   Male              10th grade   1.80  5.905512
## 4949             16 years old   Male              10th grade   1.78  5.839895
## 4950             16 years old Female              10th grade   1.70  5.577428
## 4951             15 years old Female               9th grade   1.52  4.986877
## 4952             17 years old   Male              12th grade   1.93  6.332021
## 4953             17 years old Female              12th grade   1.57  5.150919
## 4954             16 years old   Male              11th grade   1.75  5.741470
## 4955             16 years old Female              11th grade   1.60  5.249344
## 4956             17 years old Female              11th grade   1.63  5.347769
## 4957             17 years old Female              11th grade   1.57  5.150919
## 4958             16 years old Female              11th grade   1.60  5.249344
## 4959    18 years old or older   Male              12th grade   1.73  5.675853
## 4960             17 years old   Male              11th grade   1.70  5.577428
## 4961             16 years old Female              11th grade   1.73  5.675853
## 4962    18 years old or older Female              12th grade   1.57  5.150919
## 4963             17 years old   Male              12th grade   1.83  6.003937
## 4964             17 years old   Male              12th grade   1.73  5.675853
## 4965             17 years old Female              12th grade   1.75  5.741470
## 4966             16 years old   <NA>              11th grade     NA        NA
## 4967    18 years old or older Female              12th grade   1.73  5.675853
## 4968             17 years old Female              12th grade   1.68  5.511811
## 4969             17 years old Female              12th grade   1.70  5.577428
## 4970             17 years old Female              12th grade   1.60  5.249344
## 4971             17 years old   Male              11th grade   1.65  5.413386
## 4972             17 years old   Male              12th grade   1.88  6.167979
## 4973             17 years old   Male              12th grade   1.80  5.905512
## 4974             16 years old   Male              11th grade   1.78  5.839895
## 4975             16 years old   <NA>              11th grade     NA        NA
## 4976             17 years old   Male              12th grade   1.78  5.839895
## 4977    18 years old or older   Male              12th grade   1.83  6.003937
## 4978    18 years old or older   Male              12th grade   1.75  5.741470
## 4979    18 years old or older   Male              12th grade   1.80  5.905512
## 4980             17 years old   Male              11th grade   1.83  6.003937
## 4981             17 years old Female              11th grade   1.68  5.511811
## 4982    18 years old or older   Male              12th grade   1.96  6.430446
## 4983    18 years old or older   Male              12th grade   1.85  6.069554
## 4984             16 years old   Male              11th grade   1.83  6.003937
## 4985             17 years old   Male              11th grade   1.70  5.577428
## 4986             17 years old   Male              12th grade   1.83  6.003937
## 4987             17 years old Female              11th grade   1.68  5.511811
## 4988    18 years old or older   Male              12th grade   1.73  5.675853
## 4989             17 years old Female              12th grade   1.60  5.249344
## 4990             16 years old Female              11th grade   1.55  5.085302
## 4991             17 years old Female              11th grade   1.65  5.413386
## 4992    18 years old or older   Male              12th grade   1.85  6.069554
## 4993             17 years old Female              12th grade     NA        NA
## 4994    18 years old or older Female              12th grade   1.70  5.577428
## 4995             17 years old Female              11th grade   1.70  5.577428
## 4996    18 years old or older Female              12th grade   1.47  4.822835
## 4997             17 years old   Male              12th grade   1.78  5.839895
## 4998             17 years old Female              11th grade   1.73  5.675853
## 4999             17 years old   Male              11th grade   1.78  5.839895
## 5000    18 years old or older   Male              12th grade   1.83  6.003937
## 5001    18 years old or older   Male              12th grade   1.70  5.577428
## 5002             17 years old   Male              11th grade   1.80  5.905512
## 5003             16 years old Female              11th grade   1.75  5.741470
## 5004    18 years old or older Female              12th grade   1.65  5.413386
## 5005             17 years old Female              12th grade   1.68  5.511811
## 5006    18 years old or older   Male              12th grade   1.75  5.741470
## 5007    18 years old or older   Male              12th grade   1.83  6.003937
## 5008    18 years old or older   Male              12th grade   1.88  6.167979
## 5009             17 years old Female              12th grade   1.65  5.413386
## 5010    18 years old or older   Male              12th grade   1.85  6.069554
## 5011             17 years old Female              12th grade   1.63  5.347769
## 5012             17 years old   Male              11th grade   1.83  6.003937
## 5013             16 years old   Male              11th grade   1.80  5.905512
## 5014             17 years old   Male              11th grade   1.83  6.003937
## 5015             17 years old Female              12th grade     NA        NA
## 5016    18 years old or older Female              12th grade   1.68  5.511811
## 5017             17 years old   Male              11th grade   1.83  6.003937
## 5018             17 years old   Male              11th grade   1.73  5.675853
## 5019             17 years old   Male              12th grade   1.73  5.675853
## 5020    18 years old or older Female              12th grade   1.68  5.511811
## 5021             17 years old   Male              12th grade   1.75  5.741470
## 5022             16 years old Female              11th grade   1.63  5.347769
## 5023             17 years old Female              12th grade   1.63  5.347769
## 5024    18 years old or older Female              12th grade   1.55  5.085302
## 5025    18 years old or older   Male              12th grade   1.88  6.167979
## 5026    18 years old or older   Male              12th grade   1.85  6.069554
## 5027             16 years old   Male              11th grade   1.83  6.003937
## 5028             15 years old   Male               9th grade   1.70  5.577428
## 5029             16 years old   Male              11th grade   1.85  6.069554
## 5030             14 years old   Male               9th grade   1.75  5.741470
## 5031             15 years old Female               9th grade   1.70  5.577428
## 5032             17 years old   Male              11th grade   1.73  5.675853
## 5033             15 years old   Male               9th grade   1.70  5.577428
## 5034             16 years old Female              11th grade   1.57  5.150919
## 5035             15 years old Female               9th grade   1.78  5.839895
## 5036             17 years old   Male              11th grade     NA        NA
## 5037             14 years old   Male               9th grade   1.78  5.839895
## 5038             14 years old Female               9th grade   1.75  5.741470
## 5039             16 years old   Male              11th grade   1.63  5.347769
## 5040             16 years old   Male              11th grade   1.73  5.675853
## 5041             16 years old   Male              11th grade   1.75  5.741470
## 5042             14 years old   Male               9th grade   1.73  5.675853
## 5043             14 years old   Male               9th grade     NA        NA
## 5044             17 years old   Male              11th grade   1.78  5.839895
## 5045             14 years old   Male               9th grade   1.83  6.003937
## 5046             17 years old   Male              11th grade   1.80  5.905512
## 5047             16 years old   Male              11th grade   1.78  5.839895
## 5048             14 years old   Male               9th grade   1.78  5.839895
## 5049             15 years old   Male               9th grade   1.70  5.577428
## 5050             14 years old Female               9th grade   1.52  4.986877
## 5051             17 years old   Male              11th grade   1.75  5.741470
## 5052             14 years old   Male               9th grade     NA        NA
## 5053             16 years old Female              11th grade   1.57  5.150919
## 5054             15 years old   Male               9th grade   1.70  5.577428
## 5055             17 years old Female              11th grade   1.50  4.921260
## 5056             15 years old   Male               9th grade   1.85  6.069554
## 5057             16 years old   Male              11th grade   1.83  6.003937
## 5058             15 years old   Male               9th grade   1.63  5.347769
## 5059             17 years old   Male              11th grade   1.73  5.675853
## 5060             14 years old   Male               9th grade   1.63  5.347769
## 5061             16 years old   Male              11th grade   1.70  5.577428
## 5062             15 years old   Male               9th grade   1.78  5.839895
## 5063             16 years old   Male              11th grade   1.83  6.003937
## 5064             15 years old   Male               9th grade   1.80  5.905512
## 5065             14 years old Female               9th grade   1.60  5.249344
## 5066             17 years old Female              11th grade   1.65  5.413386
## 5067             15 years old Female               9th grade   1.70  5.577428
## 5068             17 years old Female              11th grade   1.52  4.986877
## 5069             17 years old Female              11th grade   1.60  5.249344
## 5070             14 years old   Male               9th grade   1.88  6.167979
## 5071             17 years old Female              11th grade   1.70  5.577428
## 5072             16 years old Female              11th grade     NA        NA
## 5073             15 years old   Male               9th grade   1.73  5.675853
## 5074             16 years old   Male              11th grade   1.88  6.167979
## 5075             15 years old Female               9th grade   1.63  5.347769
## 5076             16 years old Female              11th grade     NA        NA
## 5077             14 years old Female               9th grade   1.63  5.347769
## 5078             16 years old Female              11th grade   1.60  5.249344
## 5079             14 years old Female               9th grade   1.63  5.347769
## 5080             17 years old   Male              11th grade   1.85  6.069554
## 5081             14 years old Female               9th grade   1.65  5.413386
## 5082             16 years old   Male              11th grade   1.68  5.511811
## 5083             14 years old Female               9th grade   1.70  5.577428
## 5084             17 years old   Male              11th grade   1.80  5.905512
## 5085             15 years old Female               9th grade   1.70  5.577428
## 5086             14 years old   Male               9th grade   1.73  5.675853
## 5087    18 years old or older   Male              12th grade   1.78  5.839895
## 5088             14 years old Female               9th grade   1.70  5.577428
## 5089             15 years old Female              10th grade   1.52  4.986877
## 5090             16 years old   Male              10th grade   1.70  5.577428
## 5091             15 years old   Male              10th grade   1.68  5.511811
## 5092    18 years old or older Female              12th grade   1.83  6.003937
## 5093             17 years old Female              12th grade   1.65  5.413386
## 5094             16 years old   Male              10th grade   1.83  6.003937
## 5095             16 years old   Male              10th grade   1.65  5.413386
## 5096    18 years old or older Female              12th grade   1.63  5.347769
## 5097             17 years old Female              12th grade   1.73  5.675853
## 5098             16 years old   Male              10th grade   1.85  6.069554
## 5099             16 years old Female              10th grade   1.57  5.150919
## 5100             17 years old Female              12th grade   1.83  6.003937
## 5101             17 years old Female              12th grade   1.65  5.413386
## 5102             16 years old   Male              10th grade   1.90  6.233596
## 5103             16 years old Female              10th grade   1.73  5.675853
## 5104             15 years old Female              10th grade   1.65  5.413386
## 5105             15 years old Female              10th grade   1.55  5.085302
## 5106    18 years old or older   Male              12th grade   1.75  5.741470
## 5107             15 years old   Male              10th grade   1.80  5.905512
## 5108             16 years old Female              10th grade   1.73  5.675853
## 5109             17 years old   Male              12th grade   1.88  6.167979
## 5110             17 years old Female              12th grade   1.55  5.085302
## 5111             15 years old Female              10th grade     NA        NA
## 5112             16 years old   Male              10th grade   1.70  5.577428
## 5113    18 years old or older Female              12th grade   1.60  5.249344
## 5114             15 years old Female              10th grade   1.68  5.511811
## 5115             17 years old Female              12th grade   1.60  5.249344
## 5116             16 years old   Male              10th grade     NA        NA
## 5117             17 years old Female              12th grade   1.73  5.675853
## 5118             17 years old   Male              10th grade   1.80  5.905512
## 5119             15 years old   Male              10th grade   1.85  6.069554
## 5120             15 years old Female              10th grade   1.60  5.249344
## 5121             16 years old Female              10th grade   1.70  5.577428
## 5122             16 years old   Male              10th grade   1.70  5.577428
## 5123             17 years old Female              12th grade   1.65  5.413386
## 5124             16 years old Female              10th grade   1.78  5.839895
## 5125             17 years old Female              12th grade   1.68  5.511811
## 5126             15 years old   Male              10th grade   1.63  5.347769
## 5127    18 years old or older Female              12th grade   1.83  6.003937
## 5128             17 years old   Male              12th grade     NA        NA
## 5129             15 years old   Male              10th grade   1.78  5.839895
## 5130             17 years old   Male              12th grade   1.80  5.905512
## 5131             16 years old   Male              10th grade   1.75  5.741470
## 5132             16 years old   Male              10th grade   1.65  5.413386
## 5133             17 years old   Male              12th grade   1.75  5.741470
## 5134             15 years old Female              10th grade   1.75  5.741470
## 5135    18 years old or older Female              12th grade   1.60  5.249344
## 5136             15 years old Female              10th grade   1.57  5.150919
## 5137    18 years old or older   Male              12th grade   1.80  5.905512
## 5138             16 years old   Male                    <NA>   1.73  5.675853
## 5139             17 years old Female              12th grade   1.57  5.150919
## 5140             17 years old   Male              10th grade   1.65  5.413386
## 5141             15 years old   Male              10th grade   1.70  5.577428
## 5142             17 years old Female              12th grade   1.75  5.741470
## 5143             15 years old   Male               9th grade   1.80  5.905512
## 5144             17 years old Female              12th grade   1.70  5.577428
## 5145             17 years old Female              12th grade   1.63  5.347769
## 5146             14 years old Female               9th grade   1.47  4.822835
## 5147             16 years old Female              10th grade   1.52  4.986877
## 5148             17 years old Female              12th grade   1.75  5.741470
## 5149             15 years old   Male              10th grade   1.75  5.741470
## 5150             14 years old Female               9th grade   1.55  5.085302
## 5151             15 years old   Male              10th grade   1.73  5.675853
## 5152             17 years old Female              12th grade   1.57  5.150919
## 5153             16 years old   Male              10th grade   1.83  6.003937
## 5154             15 years old   Male              10th grade   1.70  5.577428
## 5155             17 years old   Male              12th grade   1.88  6.167979
## 5156             15 years old Female               9th grade   1.65  5.413386
## 5157             14 years old   Male               9th grade   1.80  5.905512
## 5158             16 years old Female              10th grade   1.63  5.347769
## 5159             15 years old   Male              10th grade   1.75  5.741470
## 5160             16 years old   Male              10th grade   1.83  6.003937
## 5161             15 years old Female              10th grade   1.70  5.577428
## 5162             16 years old   Male              10th grade   1.73  5.675853
## 5163             14 years old   Male               9th grade   1.70  5.577428
## 5164             15 years old   Male              10th grade     NA        NA
## 5165             15 years old   Male               9th grade   1.80  5.905512
## 5166             15 years old Female               9th grade   1.70  5.577428
## 5167             15 years old   Male               9th grade   1.57  5.150919
## 5168             15 years old Female               9th grade   1.60  5.249344
## 5169             14 years old   Male               9th grade   1.70  5.577428
## 5170             15 years old Female              10th grade   1.50  4.921260
## 5171    18 years old or older   Male              12th grade   1.80  5.905512
## 5172             15 years old   Male               9th grade   1.78  5.839895
## 5173             16 years old   Male              10th grade   1.68  5.511811
## 5174             17 years old   Male              11th grade   1.73  5.675853
## 5175             14 years old Female               9th grade   1.70  5.577428
## 5176             15 years old   Male               9th grade   1.83  6.003937
## 5177             17 years old Female              12th grade   1.68  5.511811
## 5178             17 years old Female              11th grade   1.68  5.511811
## 5179    18 years old or older Female              12th grade   1.75  5.741470
## 5180             15 years old Female               9th grade   1.60  5.249344
## 5181             15 years old   Male               9th grade   1.83  6.003937
## 5182             16 years old   Male              10th grade   1.73  5.675853
## 5183             17 years old Female              11th grade   1.63  5.347769
## 5184    18 years old or older   Male              12th grade   1.73  5.675853
## 5185             14 years old Female               9th grade   1.68  5.511811
## 5186             16 years old Female              10th grade   1.65  5.413386
## 5187             17 years old Female              11th grade   1.65  5.413386
## 5188             17 years old   Male              12th grade   1.65  5.413386
## 5189             15 years old Female               9th grade   1.63  5.347769
## 5190             15 years old   Male               9th grade   1.75  5.741470
## 5191             15 years old Female              10th grade   1.55  5.085302
## 5192             15 years old   Male               9th grade   1.65  5.413386
## 5193             16 years old Female              10th grade   1.60  5.249344
## 5194             16 years old Female              11th grade   1.57  5.150919
## 5195    18 years old or older Female              12th grade   1.70  5.577428
## 5196             15 years old Female               9th grade   1.70  5.577428
## 5197             16 years old   Male              10th grade   1.75  5.741470
## 5198             16 years old Female              11th grade   1.57  5.150919
## 5199    18 years old or older Female              12th grade   1.70  5.577428
## 5200             15 years old Female               9th grade   1.68  5.511811
## 5201             15 years old   Male              10th grade   1.73  5.675853
## 5202             16 years old   Male              11th grade   1.78  5.839895
## 5203             17 years old   Male              12th grade   1.78  5.839895
## 5204             14 years old   Male               9th grade   1.88  6.167979
## 5205             15 years old   Male               9th grade   1.75  5.741470
## 5206             15 years old   Male               9th grade   1.65  5.413386
## 5207             16 years old Female              10th grade   1.60  5.249344
## 5208             17 years old   Male              11th grade   1.80  5.905512
## 5209             17 years old   Male              12th grade   1.83  6.003937
## 5210             15 years old Female               9th grade   1.65  5.413386
## 5211             15 years old Female              10th grade   1.55  5.085302
## 5212             17 years old   Male              11th grade   1.78  5.839895
## 5213             17 years old Female              12th grade   1.75  5.741470
## 5214             15 years old   Male               9th grade   1.85  6.069554
## 5215             16 years old   Male              10th grade   1.63  5.347769
## 5216    18 years old or older Female              12th grade   1.55  5.085302
## 5217             15 years old Female               9th grade   1.60  5.249344
## 5218             16 years old Female              10th grade   1.80  5.905512
## 5219             17 years old   Male              11th grade   1.78  5.839895
## 5220             17 years old Female              12th grade   1.65  5.413386
## 5221             15 years old Female               9th grade   1.60  5.249344
## 5222             14 years old   Male               9th grade   1.65  5.413386
## 5223             16 years old   Male              10th grade   1.85  6.069554
## 5224             17 years old Female              11th grade   1.65  5.413386
## 5225             15 years old   Male               9th grade   1.75  5.741470
## 5226             15 years old   Male              10th grade   1.73  5.675853
## 5227             16 years old   Male              11th grade   1.83  6.003937
## 5228             15 years old   Male               9th grade   1.52  4.986877
## 5229             15 years old   Male              10th grade   1.75  5.741470
## 5230             17 years old Female              11th grade   1.57  5.150919
## 5231             17 years old Female              12th grade   1.63  5.347769
## 5232             15 years old   Male               9th grade   1.68  5.511811
## 5233             15 years old Female              10th grade   1.57  5.150919
## 5234             17 years old Female              11th grade   1.63  5.347769
## 5235    18 years old or older   Male              12th grade   1.80  5.905512
## 5236             15 years old Female               9th grade   1.52  4.986877
## 5237             15 years old   Male               9th grade   1.68  5.511811
## 5238             16 years old   Male              10th grade   1.75  5.741470
## 5239             17 years old Female              11th grade   1.68  5.511811
## 5240             16 years old   Male              10th grade   1.85  6.069554
## 5241             17 years old   Male              11th grade   1.90  6.233596
## 5242    18 years old or older Female              12th grade   1.57  5.150919
## 5243             15 years old   Male               9th grade   1.83  6.003937
## 5244             15 years old Female              10th grade   1.60  5.249344
## 5245             16 years old Female              11th grade   1.80  5.905512
## 5246             17 years old Female              12th grade   1.65  5.413386
## 5247             15 years old Female               9th grade   1.63  5.347769
## 5248             15 years old   Male              10th grade   1.78  5.839895
## 5249             17 years old Female              11th grade   1.75  5.741470
## 5250    18 years old or older Female              12th grade   1.65  5.413386
## 5251             15 years old Female               9th grade   1.63  5.347769
## 5252             16 years old   Male              10th grade   1.78  5.839895
## 5253             17 years old Female              11th grade   1.63  5.347769
## 5254    18 years old or older Female              12th grade     NA        NA
## 5255             15 years old Female               9th grade   1.68  5.511811
## 5256             14 years old Female               9th grade   1.63  5.347769
## 5257             15 years old   Male               9th grade   1.68  5.511811
## 5258             16 years old   Male               9th grade   1.78  5.839895
## 5259             15 years old   Male               9th grade   1.75  5.741470
## 5260             16 years old   Male               9th grade   1.78  5.839895
## 5261             14 years old Female               9th grade   1.73  5.675853
## 5262             15 years old Female               9th grade   1.78  5.839895
## 5263             15 years old Female               9th grade   1.68  5.511811
## 5264             15 years old Female               9th grade     NA        NA
## 5265             16 years old   Male               9th grade   1.85  6.069554
## 5266             15 years old Female               9th grade   1.68  5.511811
## 5267             15 years old Female               9th grade   1.65  5.413386
## 5268    18 years old or older Female              12th grade   1.78  5.839895
## 5269    18 years old or older Female              11th grade     NA        NA
## 5270    18 years old or older Female              12th grade   1.60  5.249344
## 5271             16 years old   Male              10th grade   1.80  5.905512
## 5272             17 years old   Male              11th grade   1.85  6.069554
## 5273    18 years old or older   Male              12th grade   1.75  5.741470
## 5274             16 years old Female              10th grade   1.63  5.347769
## 5275             17 years old Female              11th grade   1.75  5.741470
## 5276    18 years old or older   Male              12th grade   1.93  6.332021
## 5277             16 years old Female              10th grade   1.63  5.347769
## 5278             17 years old Female              11th grade   1.63  5.347769
## 5279    18 years old or older Female              12th grade   1.70  5.577428
## 5280             16 years old   Male              10th grade   1.78  5.839895
## 5281    18 years old or older Female              12th grade   1.63  5.347769
## 5282             16 years old   Male              10th grade   1.88  6.167979
## 5283             17 years old Female              11th grade   1.65  5.413386
## 5284             17 years old Female              11th grade   1.73  5.675853
## 5285    18 years old or older   Male              11th grade   1.70  5.577428
## 5286    18 years old or older Female              12th grade   1.63  5.347769
## 5287             16 years old Female              10th grade   1.65  5.413386
## 5288             17 years old   Male              11th grade   1.85  6.069554
## 5289             17 years old Female              12th grade   1.60  5.249344
## 5290             15 years old   Male              10th grade   1.75  5.741470
## 5291    18 years old or older Female              12th grade   1.70  5.577428
## 5292             15 years old Female              10th grade   1.57  5.150919
## 5293             17 years old Female              11th grade   1.73  5.675853
## 5294    18 years old or older Female              12th grade   1.73  5.675853
## 5295             16 years old Female              10th grade   1.68  5.511811
## 5296             17 years old   Male              11th grade   1.70  5.577428
## 5297    18 years old or older   Male              12th grade     NA        NA
## 5298             16 years old Female              10th grade   1.75  5.741470
## 5299             17 years old   Male              11th grade   1.78  5.839895
## 5300             17 years old Female              12th grade   1.68  5.511811
## 5301             16 years old   Male              10th grade   1.85  6.069554
## 5302             17 years old   Male                    <NA>   1.70  5.577428
## 5303             16 years old   Male              10th grade   1.75  5.741470
## 5304    18 years old or older Female              12th grade   1.55  5.085302
## 5305             14 years old Female               9th grade   1.50  4.921260
## 5306             16 years old   Male              11th grade   1.70  5.577428
## 5307             16 years old   Male              10th grade   1.75  5.741470
## 5308    18 years old or older   Male              12th grade   1.80  5.905512
## 5309             15 years old   Male               9th grade   1.75  5.741470
## 5310             16 years old Female              11th grade   1.65  5.413386
## 5311             16 years old   Male              10th grade   1.88  6.167979
## 5312    18 years old or older   Male              12th grade   1.73  5.675853
## 5313             15 years old Female               9th grade   1.60  5.249344
## 5314             16 years old   Male              11th grade   1.75  5.741470
## 5315             15 years old   Male              10th grade   1.70  5.577428
## 5316    18 years old or older Female              12th grade   1.63  5.347769
## 5317             15 years old Female               9th grade   1.65  5.413386
## 5318             17 years old Female              11th grade     NA        NA
## 5319             15 years old Female              10th grade   1.60  5.249344
## 5320             17 years old Female              12th grade   1.65  5.413386
## 5321             15 years old   Male               9th grade   1.73  5.675853
## 5322             16 years old Female              11th grade   1.65  5.413386
## 5323             16 years old   Male              11th grade   1.85  6.069554
## 5324             16 years old Female              10th grade   1.70  5.577428
## 5325    18 years old or older   Male              12th grade   1.78  5.839895
## 5326             14 years old Female               9th grade   1.78  5.839895
## 5327    18 years old or older Female              12th grade   1.78  5.839895
## 5328             15 years old   Male               9th grade   1.88  6.167979
## 5329             15 years old Female              10th grade   1.65  5.413386
## 5330    18 years old or older Female              12th grade   1.63  5.347769
## 5331             15 years old   Male               9th grade   1.83  6.003937
## 5332             16 years old   Male              11th grade   1.90  6.233596
## 5333             15 years old   Male              10th grade   1.78  5.839895
## 5334             17 years old Female              12th grade   1.75  5.741470
## 5335             15 years old Female               9th grade   1.57  5.150919
## 5336             17 years old Female              11th grade   1.60  5.249344
## 5337             16 years old   Male              10th grade   1.68  5.511811
## 5338    18 years old or older Female              12th grade   1.57  5.150919
## 5339             17 years old   Male              11th grade   1.96  6.430446
## 5340             17 years old Female              10th grade   1.60  5.249344
## 5341             17 years old Female              12th grade   1.68  5.511811
## 5342             17 years old   Male              11th grade   1.85  6.069554
## 5343             16 years old   Male              10th grade   1.65  5.413386
## 5344             17 years old Female              12th grade   1.63  5.347769
## 5345             15 years old   Male               9th grade   1.60  5.249344
## 5346             16 years old Female              11th grade   1.60  5.249344
## 5347             16 years old Female              11th grade   1.60  5.249344
## 5348             14 years old   Male               9th grade   1.73  5.675853
## 5349             17 years old   Male              11th grade   1.83  6.003937
## 5350             15 years old Female               9th grade   1.57  5.150919
## 5351             14 years old   Male               9th grade   1.63  5.347769
## 5352             16 years old   Male              10th grade   1.80  5.905512
## 5353             17 years old   Male              12th grade   1.73  5.675853
## 5354             17 years old   Male              12th grade   1.78  5.839895
## 5355  12 years old or younger   Male Ungraded or other grade   1.47  4.822835
## 5356             15 years old   Male               9th grade   1.73  5.675853
## 5357             17 years old   Male              11th grade   1.75  5.741470
## 5358             16 years old   Male               9th grade   1.57  5.150919
## 5359             16 years old   Male              10th grade   1.80  5.905512
## 5360    18 years old or older   Male              12th grade   1.75  5.741470
## 5361             17 years old   Male              11th grade   1.63  5.347769
## 5362             17 years old Female              11th grade   1.60  5.249344
## 5363             14 years old Female               9th grade   1.70  5.577428
## 5364             16 years old   Male              11th grade   1.73  5.675853
## 5365             14 years old Female               9th grade   1.57  5.150919
## 5366             15 years old Female              10th grade   1.68  5.511811
## 5367             17 years old Female              12th grade   1.65  5.413386
## 5368             17 years old Female              12th grade   1.63  5.347769
## 5369             17 years old Female              11th grade     NA        NA
## 5370             17 years old   Male              11th grade   1.73  5.675853
## 5371             14 years old   Male               9th grade   1.65  5.413386
## 5372    18 years old or older Female              11th grade   1.47  4.822835
## 5373             15 years old   Male              10th grade   1.83  6.003937
## 5374             17 years old Female              12th grade   1.63  5.347769
## 5375    18 years old or older   Male              12th grade   1.90  6.233596
## 5376    18 years old or older   Male              12th grade   1.70  5.577428
## 5377             16 years old Female              11th grade   1.63  5.347769
## 5378             16 years old   Male              11th grade   1.78  5.839895
## 5379             15 years old   Male               9th grade   1.73  5.675853
## 5380             15 years old Female              10th grade     NA        NA
## 5381             17 years old   Male              11th grade   1.68  5.511811
## 5382             16 years old   Male              11th grade   1.78  5.839895
## 5383             14 years old Female               9th grade   1.55  5.085302
## 5384             16 years old   Male              10th grade   1.73  5.675853
## 5385    18 years old or older   Male              12th grade   1.83  6.003937
## 5386    18 years old or older   Male              12th grade   1.83  6.003937
## 5387             16 years old   Male              11th grade   1.63  5.347769
## 5388             17 years old   Male              11th grade   1.70  5.577428
## 5389             15 years old Female               9th grade   1.65  5.413386
## 5390             16 years old   Male              11th grade   1.85  6.069554
## 5391             14 years old   Male               9th grade   1.68  5.511811
## 5392             15 years old   <NA>              10th grade     NA        NA
## 5393             17 years old   Male              12th grade   1.80  5.905512
## 5394             17 years old Female              12th grade   1.57  5.150919
## 5395             16 years old Female              11th grade   1.63  5.347769
## 5396             15 years old Female               9th grade   1.52  4.986877
## 5397             17 years old   Male              11th grade   1.83  6.003937
## 5398             15 years old Female               9th grade   1.70  5.577428
## 5399             15 years old   Male              10th grade   1.70  5.577428
## 5400             17 years old   Male              12th grade   1.78  5.839895
## 5401    18 years old or older   Male              12th grade   1.88  6.167979
## 5402             16 years old   Male              11th grade   1.88  6.167979
## 5403             14 years old Female               9th grade   1.65  5.413386
## 5404             17 years old   Male              11th grade   1.80  5.905512
## 5405             14 years old Female               9th grade   1.57  5.150919
## 5406             15 years old   Male              10th grade   1.85  6.069554
## 5407    18 years old or older Female              12th grade   1.57  5.150919
## 5408    18 years old or older Female              12th grade   1.75  5.741470
## 5409             15 years old   Male              10th grade   1.73  5.675853
## 5410             14 years old   Male               9th grade     NA        NA
## 5411             15 years old Female              10th grade   1.70  5.577428
## 5412             16 years old   Male              11th grade   1.80  5.905512
## 5413             17 years old   Male              11th grade     NA        NA
## 5414             14 years old   Male               9th grade   1.80  5.905512
## 5415             16 years old   Male              11th grade   1.70  5.577428
## 5416             15 years old Female               9th grade   1.60  5.249344
## 5417             15 years old Female              10th grade   1.52  4.986877
## 5418             17 years old   Male              12th grade   1.70  5.577428
## 5419             17 years old   Male              12th grade   1.78  5.839895
## 5420             16 years old Female              10th grade   1.68  5.511811
## 5421             14 years old   Male               9th grade   1.68  5.511811
## 5422             16 years old Female              11th grade   1.65  5.413386
## 5423             15 years old   Male               9th grade   1.68  5.511811
## 5424             16 years old   Male              10th grade   1.80  5.905512
## 5425             17 years old   Male              12th grade   1.60  5.249344
## 5426    18 years old or older   Male              12th grade   1.83  6.003937
## 5427             17 years old   Male              11th grade   1.80  5.905512
## 5428             15 years old   Male               9th grade   1.78  5.839895
## 5429             16 years old   Male              11th grade     NA        NA
## 5430             14 years old Female               9th grade   1.60  5.249344
## 5431             16 years old   Male              10th grade   1.73  5.675853
## 5432    18 years old or older   Male              12th grade   1.80  5.905512
## 5433    18 years old or older Female              12th grade   1.63  5.347769
## 5434             15 years old Female               9th grade   1.52  4.986877
## 5435             16 years old Female              11th grade   1.63  5.347769
## 5436             14 years old   Male               9th grade   1.75  5.741470
## 5437             17 years old Female              11th grade   1.65  5.413386
## 5438             15 years old Female               9th grade   1.63  5.347769
## 5439             15 years old   Male              10th grade   1.73  5.675853
## 5440             16 years old   Male              11th grade   1.88  6.167979
## 5441             14 years old Female               9th grade   1.57  5.150919
## 5442    18 years old or older   Male              11th grade   1.83  6.003937
## 5443             16 years old Female               9th grade   1.63  5.347769
## 5444             15 years old Female               9th grade   1.57  5.150919
## 5445             15 years old   Male              10th grade   1.75  5.741470
## 5446    18 years old or older Female              12th grade   1.65  5.413386
## 5447             17 years old Female              12th grade   1.65  5.413386
## 5448             17 years old Female              11th grade   1.63  5.347769
## 5449             15 years old   Male               9th grade   1.80  5.905512
## 5450             15 years old Female               9th grade   1.57  5.150919
## 5451             17 years old   Male              12th grade   1.78  5.839895
## 5452    18 years old or older Female              11th grade   1.68  5.511811
## 5453             17 years old   Male              11th grade   1.73  5.675853
## 5454             15 years old   Male               9th grade   1.78  5.839895
## 5455             16 years old   Male              11th grade   1.75  5.741470
## 5456             14 years old Female               9th grade     NA        NA
## 5457             17 years old   Male              11th grade   1.90  6.233596
## 5458    18 years old or older Female              11th grade     NA        NA
## 5459             15 years old Female               9th grade   1.60  5.249344
## 5460             16 years old   Male              11th grade   1.85  6.069554
## 5461             16 years old Female               9th grade   1.57  5.150919
## 5462             14 years old   Male               9th grade   1.83  6.003937
## 5463             16 years old   Male              11th grade   1.68  5.511811
## 5464             17 years old Female              11th grade   1.57  5.150919
## 5465             14 years old Female               9th grade   1.68  5.511811
## 5466             16 years old   Male              11th grade   1.78  5.839895
## 5467             15 years old Female               9th grade   1.57  5.150919
## 5468             15 years old   Male               9th grade   1.80  5.905512
## 5469             14 years old   Male               9th grade   1.68  5.511811
## 5470             16 years old Female              11th grade   1.57  5.150919
## 5471             15 years old Female               9th grade   1.55  5.085302
## 5472             14 years old   Male               9th grade   1.75  5.741470
## 5473             16 years old Female              10th grade   1.57  5.150919
## 5474    18 years old or older   Male              12th grade   1.70  5.577428
## 5475             17 years old Female              11th grade   1.52  4.986877
## 5476             17 years old Female              11th grade   1.52  4.986877
## 5477             16 years old Female              10th grade   1.52  4.986877
## 5478             17 years old Female              11th grade   1.55  5.085302
## 5479    18 years old or older Female              12th grade   1.60  5.249344
## 5480             16 years old   Male              10th grade   1.63  5.347769
## 5481             17 years old Female              11th grade   1.50  4.921260
## 5482             17 years old   Male              11th grade   1.78  5.839895
## 5483             17 years old   Male              11th grade   1.80  5.905512
## 5484             16 years old Female              11th grade   1.60  5.249344
## 5485             16 years old Female              10th grade     NA        NA
## 5486             16 years old Female              10th grade   1.70  5.577428
## 5487             16 years old   Male              10th grade   1.75  5.741470
## 5488             15 years old Female              10th grade   1.63  5.347769
## 5489             17 years old Female              12th grade   1.57  5.150919
## 5490             16 years old Female              10th grade   1.60  5.249344
## 5491             16 years old   Male              10th grade   1.68  5.511811
## 5492             14 years old Female               9th grade   1.60  5.249344
## 5493             17 years old Female              11th grade   1.60  5.249344
## 5494             17 years old Female              11th grade   1.55  5.085302
## 5495             17 years old Female              11th grade   1.65  5.413386
## 5496             16 years old   Male              10th grade   1.75  5.741470
## 5497             16 years old   Male              10th grade   1.78  5.839895
## 5498             17 years old Female              11th grade   1.73  5.675853
## 5499             16 years old   Male              10th grade   1.83  6.003937
## 5500             16 years old   Male              10th grade   1.78  5.839895
## 5501             16 years old   Male              10th grade   1.78  5.839895
## 5502             16 years old   Male              11th grade   1.73  5.675853
## 5503             16 years old   Male              11th grade   1.75  5.741470
## 5504             17 years old Female              11th grade   1.68  5.511811
## 5505             17 years old   Male              11th grade   1.70  5.577428
## 5506             17 years old   Male              11th grade   1.80  5.905512
## 5507             17 years old Female              10th grade   1.63  5.347769
## 5508             16 years old Female              10th grade   1.52  4.986877
## 5509             16 years old Female              11th grade   1.57  5.150919
## 5510    18 years old or older   Male              12th grade   1.78  5.839895
## 5511             17 years old Female              11th grade   1.70  5.577428
## 5512    18 years old or older Female              12th grade   1.65  5.413386
## 5513             17 years old   Male              11th grade   1.75  5.741470
## 5514             16 years old   Male              10th grade   1.80  5.905512
## 5515             15 years old Female              10th grade   1.57  5.150919
## 5516             16 years old   Male              10th grade   1.65  5.413386
## 5517             17 years old Female              11th grade     NA        NA
## 5518    18 years old or older   Male              12th grade     NA        NA
## 5519             17 years old Female              12th grade   1.57  5.150919
## 5520             15 years old Female               9th grade   1.70  5.577428
## 5521             17 years old   Male              12th grade   1.68  5.511811
## 5522             15 years old   Male               9th grade   1.73  5.675853
## 5523             15 years old Female               9th grade   1.60  5.249344
## 5524             15 years old   Male               9th grade   1.75  5.741470
## 5525             15 years old Female               9th grade   1.55  5.085302
## 5526             14 years old   Male               9th grade   1.70  5.577428
## 5527             15 years old Female               9th grade   1.63  5.347769
## 5528             14 years old Female               9th grade   1.70  5.577428
## 5529             15 years old   Male               9th grade   1.68  5.511811
## 5530             15 years old   Male               9th grade   1.80  5.905512
## 5531             14 years old Female               9th grade     NA        NA
## 5532             14 years old Female               9th grade   1.70  5.577428
## 5533             15 years old Female               9th grade   1.68  5.511811
## 5534             15 years old   Male               9th grade   1.65  5.413386
## 5535             15 years old Female               9th grade   1.55  5.085302
## 5536             14 years old Female               9th grade   1.52  4.986877
## 5537             15 years old Female               9th grade   1.50  4.921260
## 5538             15 years old   Male               9th grade   1.60  5.249344
## 5539             14 years old Female               9th grade   1.52  4.986877
## 5540             15 years old Female               9th grade   1.60  5.249344
## 5541             17 years old Female              12th grade   1.70  5.577428
## 5542             17 years old Female              11th grade   1.50  4.921260
## 5543             15 years old   Male              10th grade   1.73  5.675853
## 5544    18 years old or older Female              12th grade   1.73  5.675853
## 5545             17 years old Female              11th grade   1.50  4.921260
## 5546             17 years old Female              11th grade   1.60  5.249344
## 5547             17 years old Female              11th grade   1.65  5.413386
## 5548             17 years old Female              12th grade   1.57  5.150919
## 5549             17 years old   Male              11th grade   1.80  5.905512
## 5550             17 years old   Male              12th grade   1.73  5.675853
## 5551             16 years old Female              10th grade   1.68  5.511811
## 5552    18 years old or older Female              12th grade   1.68  5.511811
## 5553             16 years old Female              10th grade   1.60  5.249344
## 5554             15 years old Female              10th grade   1.57  5.150919
## 5555             16 years old Female              10th grade   1.68  5.511811
## 5556             16 years old Female              10th grade     NA        NA
## 5557             17 years old Female              11th grade   1.73  5.675853
## 5558             17 years old Female              12th grade   1.75  5.741470
## 5559             17 years old Female              11th grade   1.57  5.150919
## 5560             17 years old   Male              11th grade   1.73  5.675853
## 5561    18 years old or older Female              12th grade   1.55  5.085302
## 5562             16 years old Female              10th grade     NA        NA
## 5563             15 years old Female              10th grade   1.50  4.921260
## 5564             17 years old   Male              11th grade   1.60  5.249344
## 5565             15 years old Female              10th grade   1.57  5.150919
## 5566             16 years old Female              11th grade   1.60  5.249344
## 5567             16 years old Female              10th grade   1.60  5.249344
## 5568             17 years old Female              11th grade   1.70  5.577428
## 5569             16 years old   Male              10th grade   1.68  5.511811
## 5570             16 years old Female              10th grade   1.57  5.150919
## 5571             17 years old Female              11th grade   1.57  5.150919
## 5572             17 years old Female              11th grade   1.70  5.577428
## 5573             17 years old Female              11th grade   1.55  5.085302
## 5574    18 years old or older   Male              12th grade   1.75  5.741470
## 5575             16 years old   Male              10th grade   1.83  6.003937
## 5576             17 years old Female              11th grade   1.57  5.150919
## 5577             17 years old Female              11th grade   1.57  5.150919
## 5578    18 years old or older Female              12th grade   1.60  5.249344
## 5579             17 years old Female              11th grade   1.52  4.986877
## 5580    18 years old or older   Male              12th grade   1.70  5.577428
## 5581             17 years old   Male              11th grade   1.65  5.413386
## 5582             16 years old Female              10th grade   1.57  5.150919
## 5583             16 years old   Male              10th grade   1.85  6.069554
## 5584             16 years old   Male              10th grade   1.78  5.839895
## 5585             17 years old   Male              11th grade   1.75  5.741470
## 5586    18 years old or older   Male              12th grade   1.85  6.069554
## 5587             15 years old Female              10th grade   1.63  5.347769
## 5588             16 years old Female              10th grade   1.73  5.675853
## 5589             14 years old   Male               9th grade   1.68  5.511811
## 5590             17 years old   Male              12th grade   1.78  5.839895
## 5591             17 years old   Male              12th grade   1.75  5.741470
## 5592             16 years old Female              10th grade   1.52  4.986877
## 5593             15 years old Female               9th grade   1.63  5.347769
## 5594             15 years old Female               9th grade   1.50  4.921260
## 5595             15 years old   Male               9th grade   1.83  6.003937
## 5596             14 years old Female               9th grade   1.60  5.249344
## 5597             15 years old   Male               9th grade   1.73  5.675853
## 5598             14 years old   Male               9th grade   1.73  5.675853
## 5599             15 years old   Male               9th grade   1.60  5.249344
## 5600             15 years old Female               9th grade   1.70  5.577428
## 5601             15 years old   Male               9th grade   1.78  5.839895
## 5602             15 years old   Male               9th grade     NA        NA
## 5603             14 years old Female               9th grade   1.63  5.347769
## 5604             16 years old   Male               9th grade   1.85  6.069554
## 5605             15 years old Female               9th grade   1.68  5.511811
## 5606             15 years old   Male               9th grade   1.73  5.675853
## 5607             15 years old   Male               9th grade   1.80  5.905512
## 5608             15 years old Female               9th grade   1.60  5.249344
## 5609             15 years old Female               9th grade   1.60  5.249344
## 5610             15 years old Female               9th grade   1.63  5.347769
## 5611             14 years old   Male               9th grade   1.60  5.249344
## 5612             15 years old   Male               9th grade   1.57  5.150919
## 5613             14 years old Female               9th grade   1.52  4.986877
## 5614             14 years old Female               9th grade     NA        NA
## 5615             14 years old Female               9th grade   1.73  5.675853
## 5616             17 years old Female              11th grade   1.63  5.347769
## 5617             16 years old   Male              10th grade   1.75  5.741470
## 5618             17 years old Female              11th grade   1.50  4.921260
## 5619    18 years old or older Female              12th grade   1.60  5.249344
## 5620             17 years old Female              11th grade   1.68  5.511811
## 5621             15 years old Female              10th grade   1.55  5.085302
## 5622             16 years old   Male              10th grade   1.75  5.741470
## 5623             16 years old   Male              11th grade   1.73  5.675853
## 5624             17 years old Female              12th grade   1.63  5.347769
## 5625             17 years old   Male              11th grade   1.78  5.839895
## 5626             16 years old   Male              10th grade     NA        NA
## 5627             17 years old   Male              11th grade   1.70  5.577428
## 5628             15 years old Female              10th grade   1.57  5.150919
## 5629             15 years old Female               9th grade   1.65  5.413386
## 5630             15 years old Female               9th grade   1.70  5.577428
## 5631             17 years old   Male              11th grade     NA        NA
## 5632             16 years old Female              11th grade   1.63  5.347769
## 5633             16 years old Female              10th grade   1.63  5.347769
## 5634             17 years old Female              11th grade   1.57  5.150919
## 5635             17 years old Female              11th grade     NA        NA
## 5636             16 years old Female              10th grade   1.57  5.150919
## 5637             15 years old   Male               9th grade   1.75  5.741470
## 5638             16 years old   Male              11th grade   1.85  6.069554
## 5639             17 years old Female              11th grade   1.55  5.085302
## 5640             15 years old Female              10th grade   1.60  5.249344
## 5641             16 years old Female              10th grade   1.57  5.150919
## 5642             14 years old Female               9th grade   1.63  5.347769
## 5643             16 years old Female              10th grade   1.65  5.413386
## 5644             16 years old   Male              11th grade   1.65  5.413386
## 5645             16 years old   Male              10th grade   1.73  5.675853
## 5646             17 years old   Male              11th grade   1.73  5.675853
## 5647             16 years old Female              11th grade   1.57  5.150919
## 5648             16 years old   Male              10th grade   1.78  5.839895
## 5649             16 years old Female              11th grade   1.75  5.741470
## 5650             16 years old   Male              10th grade   1.73  5.675853
## 5651             15 years old Female               9th grade   1.65  5.413386
## 5652             17 years old Female              11th grade   1.65  5.413386
## 5653             17 years old Female              11th grade   1.60  5.249344
## 5654             15 years old Female              10th grade   1.57  5.150919
## 5655             16 years old   Male              10th grade   1.78  5.839895
## 5656             14 years old   Male               9th grade   1.73  5.675853
## 5657             14 years old   Male               9th grade   1.90  6.233596
## 5658             17 years old Female              11th grade   1.57  5.150919
## 5659             17 years old   Male              11th grade   1.93  6.332021
## 5660             16 years old   Male              10th grade   1.70  5.577428
## 5661             15 years old   Male               9th grade   1.70  5.577428
## 5662             14 years old Female               9th grade   1.68  5.511811
## 5663             17 years old Female              11th grade   1.73  5.675853
## 5664             17 years old Female              11th grade   1.50  4.921260
## 5665             16 years old   Male              10th grade   1.73  5.675853
## 5666             16 years old   Male              10th grade   1.65  5.413386
## 5667             14 years old   Male               9th grade   1.75  5.741470
## 5668             15 years old   Male               9th grade   1.70  5.577428
## 5669    18 years old or older   Male              12th grade   1.73  5.675853
## 5670             16 years old   Male              11th grade   1.73  5.675853
## 5671             15 years old Female              10th grade   1.57  5.150919
## 5672             16 years old   Male              10th grade   1.83  6.003937
## 5673             17 years old Female              11th grade   1.70  5.577428
## 5674             16 years old Female              10th grade   1.65  5.413386
## 5675             17 years old Female              11th grade   1.55  5.085302
## 5676             16 years old   Male              10th grade   1.60  5.249344
## 5677             16 years old   Male              10th grade   1.68  5.511811
## 5678             16 years old   Male              10th grade   1.78  5.839895
## 5679             16 years old Female              10th grade   1.70  5.577428
## 5680    18 years old or older   Male              12th grade   1.78  5.839895
## 5681    18 years old or older   Male              12th grade   1.83  6.003937
## 5682             14 years old   Male               9th grade   1.60  5.249344
## 5683    18 years old or older   Male              12th grade   1.80  5.905512
## 5684    18 years old or older Female              12th grade     NA        NA
## 5685             15 years old   Male               9th grade     NA        NA
## 5686    18 years old or older   Male              12th grade     NA        NA
## 5687    18 years old or older   Male              12th grade   1.83  6.003937
## 5688             14 years old Female               9th grade   1.40  4.593176
## 5689    18 years old or older   Male              12th grade   1.80  5.905512
## 5690    18 years old or older   Male              12th grade     NA        NA
## 5691             14 years old Female               9th grade   1.52  4.986877
## 5692    18 years old or older   Male              12th grade   1.73  5.675853
## 5693             15 years old Female               9th grade   1.55  5.085302
## 5694    18 years old or older   Male              12th grade   1.85  6.069554
## 5695             16 years old   Male               9th grade   1.90  6.233596
## 5696    18 years old or older   Male              12th grade   1.83  6.003937
## 5697             14 years old   Male               9th grade   1.65  5.413386
## 5698    18 years old or older Female              12th grade   1.57  5.150919
## 5699             14 years old Female               9th grade   1.52  4.986877
## 5700    18 years old or older   Male              12th grade   1.68  5.511811
## 5701    18 years old or older Female              12th grade   1.60  5.249344
## 5702             14 years old Female               9th grade   1.63  5.347769
## 5703    18 years old or older Female              12th grade   1.68  5.511811
## 5704             14 years old Female               9th grade   1.68  5.511811
## 5705    18 years old or older   Male              12th grade   1.70  5.577428
## 5706    18 years old or older   Male              12th grade   1.65  5.413386
## 5707             15 years old   Male               9th grade   1.68  5.511811
## 5708    18 years old or older   Male              12th grade   1.96  6.430446
## 5709             15 years old Female               9th grade   1.57  5.150919
## 5710    18 years old or older Female              12th grade   1.60  5.249344
## 5711    18 years old or older   Male              12th grade   1.80  5.905512
## 5712    18 years old or older   Male              12th grade   1.78  5.839895
## 5713             15 years old   Male               9th grade   1.75  5.741470
## 5714             16 years old   Male               9th grade   1.73  5.675853
## 5715    18 years old or older   Male              12th grade   1.78  5.839895
## 5716    18 years old or older   Male              12th grade   1.83  6.003937
## 5717             15 years old   Male               9th grade   1.63  5.347769
## 5718             17 years old   Male              11th grade   1.83  6.003937
## 5719             16 years old Female              10th grade   1.63  5.347769
## 5720             16 years old Female              10th grade     NA        NA
## 5721             17 years old Female              11th grade   1.63  5.347769
## 5722             16 years old Female              10th grade   1.63  5.347769
## 5723             16 years old Female              10th grade   1.65  5.413386
## 5724             17 years old   Male              11th grade   1.75  5.741470
## 5725             17 years old Female              11th grade   1.60  5.249344
## 5726             16 years old Female              10th grade   1.63  5.347769
## 5727             15 years old   Male              10th grade   1.80  5.905512
## 5728             16 years old   Male              11th grade   1.78  5.839895
## 5729             17 years old   Male              11th grade   1.65  5.413386
## 5730             15 years old Female              10th grade   1.70  5.577428
## 5731             15 years old   Male              10th grade   1.78  5.839895
## 5732             16 years old Female              11th grade   1.68  5.511811
## 5733             17 years old Female              11th grade   1.57  5.150919
## 5734             16 years old   Male              10th grade   1.80  5.905512
## 5735             16 years old   Male              10th grade   1.83  6.003937
## 5736             15 years old Female              10th grade   1.75  5.741470
## 5737             17 years old Female              11th grade     NA        NA
## 5738             16 years old Female              10th grade     NA        NA
## 5739             17 years old Female              11th grade   1.70  5.577428
## 5740             17 years old   Male              11th grade   1.70  5.577428
## 5741             16 years old   Male              10th grade   1.68  5.511811
## 5742             16 years old   Male              10th grade   1.78  5.839895
## 5743    18 years old or older   Male              12th grade     NA        NA
## 5744             15 years old Female               9th grade   1.70  5.577428
## 5745             15 years old Female              10th grade   1.80  5.905512
## 5746             16 years old   Male              11th grade   1.70  5.577428
## 5747             17 years old   Male              11th grade     NA        NA
## 5748             16 years old Female              10th grade   1.65  5.413386
## 5749             16 years old   Male              10th grade   1.73  5.675853
## 5750             17 years old   Male              11th grade   1.83  6.003937
## 5751             16 years old   Male              11th grade   1.78  5.839895
## 5752             15 years old Female              10th grade   1.63  5.347769
## 5753             16 years old Female              10th grade   1.57  5.150919
## 5754             17 years old Female              12th grade   1.55  5.085302
## 5755             15 years old Female              10th grade   1.60  5.249344
## 5756             15 years old Female              10th grade   1.55  5.085302
## 5757             17 years old   Male              11th grade   1.73  5.675853
## 5758             16 years old   Male              10th grade     NA        NA
## 5759             15 years old Female              10th grade   1.57  5.150919
## 5760             16 years old   Male              11th grade   1.78  5.839895
## 5761             16 years old Female              11th grade   1.63  5.347769
## 5762             17 years old   Male              11th grade   1.78  5.839895
## 5763             17 years old Female              10th grade   1.55  5.085302
## 5764             15 years old Female              10th grade   1.63  5.347769
## 5765             15 years old Female              10th grade   1.68  5.511811
## 5766             16 years old   Male              10th grade   1.73  5.675853
## 5767             17 years old   Male              11th grade   1.78  5.839895
## 5768             15 years old Female               9th grade   1.65  5.413386
## 5769             15 years old   Male               9th grade   1.73  5.675853
## 5770             15 years old Female               9th grade   1.68  5.511811
## 5771             15 years old   Male               9th grade   1.68  5.511811
## 5772             15 years old Female               9th grade   1.65  5.413386
## 5773             14 years old Female               9th grade   1.55  5.085302
## 5774             15 years old   Male               9th grade   1.70  5.577428
## 5775             15 years old Female               9th grade   1.60  5.249344
## 5776             15 years old   Male               9th grade   1.83  6.003937
## 5777             15 years old Female               9th grade   1.57  5.150919
## 5778             15 years old Female               9th grade   1.60  5.249344
## 5779             15 years old Female               9th grade   1.65  5.413386
## 5780             15 years old Female               9th grade   1.50  4.921260
## 5781             14 years old Female               9th grade   1.65  5.413386
## 5782             15 years old Female               9th grade   1.75  5.741470
## 5783             14 years old Female               9th grade   1.65  5.413386
## 5784             15 years old Female               9th grade   1.63  5.347769
## 5785             15 years old Female               9th grade   1.55  5.085302
## 5786             15 years old Female               9th grade     NA        NA
## 5787             17 years old Female              12th grade   1.63  5.347769
## 5788             17 years old   Male              12th grade   1.80  5.905512
## 5789             17 years old   Male              12th grade   1.68  5.511811
## 5790             17 years old   Male              12th grade   1.83  6.003937
## 5791    18 years old or older   Male              12th grade   1.85  6.069554
## 5792             17 years old   Male              12th grade   1.75  5.741470
## 5793             17 years old   Male              12th grade   1.75  5.741470
## 5794             17 years old   Male              12th grade   1.80  5.905512
## 5795             17 years old   Male              12th grade   1.85  6.069554
## 5796    18 years old or older   Male              12th grade   1.73  5.675853
## 5797             17 years old Female              12th grade   1.57  5.150919
## 5798             17 years old Female              12th grade   1.60  5.249344
## 5799             17 years old Female              12th grade   1.57  5.150919
## 5800             17 years old Female              12th grade   1.73  5.675853
## 5801             17 years old Female              12th grade   1.63  5.347769
## 5802             17 years old Female              12th grade   1.65  5.413386
## 5803             17 years old   Male              12th grade   1.57  5.150919
## 5804             17 years old Female              11th grade   1.63  5.347769
## 5805             14 years old Female               9th grade     NA        NA
## 5806             17 years old Female              10th grade   1.63  5.347769
## 5807             16 years old Female               9th grade   1.63  5.347769
## 5808             17 years old Female              12th grade   1.63  5.347769
## 5809             16 years old   Male               9th grade     NA        NA
## 5810             15 years old Female              10th grade   1.60  5.249344
## 5811    18 years old or older Female              12th grade   1.52  4.986877
## 5812             15 years old Female              10th grade   1.57  5.150919
## 5813             16 years old   Male              11th grade   1.75  5.741470
## 5814    18 years old or older Female              12th grade     NA        NA
## 5815             14 years old Female               9th grade   1.60  5.249344
## 5816             17 years old   Male              11th grade   1.75  5.741470
## 5817             17 years old   Male              12th grade   1.75  5.741470
## 5818             16 years old Female              11th grade   1.63  5.347769
## 5819             17 years old Female              12th grade   1.75  5.741470
## 5820             16 years old   Male              10th grade   1.78  5.839895
## 5821    18 years old or older   Male              10th grade   1.88  6.167979
## 5822             17 years old Female              12th grade   1.55  5.085302
## 5823             17 years old Female              12th grade   1.68  5.511811
## 5824             16 years old   Male              10th grade   1.73  5.675853
## 5825             15 years old Female              10th grade   1.78  5.839895
## 5826             16 years old Female              11th grade   1.52  4.986877
## 5827    18 years old or older   Male              12th grade   1.65  5.413386
## 5828    18 years old or older   Male              12th grade   1.75  5.741470
## 5829             17 years old   Male              11th grade   1.83  6.003937
## 5830             15 years old Female              10th grade   1.78  5.839895
## 5831             17 years old   Male              11th grade   1.75  5.741470
## 5832                     <NA>   Male              12th grade     NA        NA
## 5833             15 years old   Male               9th grade   1.70  5.577428
## 5834    18 years old or older   Male              12th grade     NA        NA
## 5835             17 years old   Male              12th grade   1.78  5.839895
## 5836             15 years old Female              10th grade   1.63  5.347769
## 5837             17 years old   Male              11th grade   1.73  5.675853
## 5838                     <NA>   Male              11th grade     NA        NA
## 5839             17 years old Female              11th grade   1.55  5.085302
## 5840             16 years old Female              11th grade   1.57  5.150919
## 5841             15 years old   Male              10th grade   1.75  5.741470
## 5842             17 years old Female              11th grade   1.60  5.249344
## 5843             15 years old   Male               9th grade   1.80  5.905512
## 5844             16 years old   Male              10th grade   1.73  5.675853
## 5845             17 years old   Male              11th grade   1.73  5.675853
## 5846    18 years old or older Female              12th grade   1.63  5.347769
## 5847             16 years old Female              10th grade   1.57  5.150919
## 5848             16 years old   Male              10th grade   1.83  6.003937
## 5849             14 years old Female               9th grade   1.63  5.347769
## 5850    18 years old or older Female              12th grade   1.63  5.347769
## 5851             16 years old Female              11th grade   1.63  5.347769
## 5852    18 years old or older   Male              12th grade   1.78  5.839895
## 5853             16 years old Female              10th grade   1.57  5.150919
## 5854             15 years old   Male               9th grade   1.80  5.905512
## 5855             16 years old   Male              11th grade   1.73  5.675853
## 5856             16 years old   Male              10th grade   1.73  5.675853
## 5857             15 years old Female               9th grade   1.65  5.413386
## 5858    18 years old or older Female              12th grade   1.68  5.511811
## 5859             15 years old   Male              10th grade   1.80  5.905512
## 5860    18 years old or older Female              12th grade   1.68  5.511811
## 5861             16 years old Female              11th grade   1.70  5.577428
## 5862             15 years old Female              10th grade   1.57  5.150919
## 5863    18 years old or older   Male              12th grade   1.80  5.905512
## 5864    18 years old or older   Male              12th grade   1.90  6.233596
## 5865             15 years old Female              10th grade   1.68  5.511811
## 5866             17 years old   Male              12th grade   1.83  6.003937
## 5867             17 years old Female              11th grade     NA        NA
## 5868             16 years old Female              11th grade   1.57  5.150919
## 5869             15 years old   Male              10th grade   1.90  6.233596
## 5870             17 years old   Male              11th grade   1.78  5.839895
## 5871             16 years old Female              10th grade   1.65  5.413386
## 5872    18 years old or older Female              12th grade   1.65  5.413386
## 5873    18 years old or older   Male              12th grade   1.78  5.839895
## 5874             14 years old Female               9th grade   1.55  5.085302
## 5875             15 years old   Male               9th grade   1.70  5.577428
## 5876             16 years old Female              11th grade   1.63  5.347769
## 5877             16 years old Female              10th grade   1.65  5.413386
## 5878             15 years old Female              10th grade   1.78  5.839895
## 5879             15 years old Female               9th grade     NA        NA
## 5880             15 years old Female              10th grade   1.70  5.577428
## 5881             16 years old Female              11th grade   1.63  5.347769
## 5882             15 years old   Male              10th grade   1.75  5.741470
## 5883             17 years old Female              12th grade     NA        NA
## 5884    18 years old or older   Male              12th grade   1.80  5.905512
## 5885    18 years old or older Female Ungraded or other grade   1.65  5.413386
## 5886             17 years old Female              11th grade     NA        NA
## 5887             16 years old Female              10th grade   1.57  5.150919
## 5888             16 years old Female              11th grade   1.60  5.249344
## 5889             16 years old Female              10th grade   1.65  5.413386
## 5890    18 years old or older Female              12th grade   1.73  5.675853
## 5891             16 years old Female               9th grade     NA        NA
## 5892             15 years old Female               9th grade   1.73  5.675853
## 5893             17 years old Female              11th grade   1.63  5.347769
## 5894             16 years old Female              10th grade   1.68  5.511811
## 5895             16 years old Female              11th grade   1.52  4.986877
## 5896             16 years old Female              10th grade   1.60  5.249344
## 5897             17 years old Female              12th grade   1.60  5.249344
## 5898             15 years old Female               9th grade   1.65  5.413386
## 5899             15 years old   Male               9th grade     NA        NA
## 5900             16 years old Female              11th grade   1.68  5.511811
## 5901             16 years old Female              10th grade   1.60  5.249344
## 5902             17 years old   Male              12th grade   1.73  5.675853
## 5903    18 years old or older   Male              12th grade   1.83  6.003937
## 5904             15 years old Female               9th grade   1.80  5.905512
## 5905             15 years old   Male               9th grade   1.75  5.741470
## 5906             17 years old   Male              11th grade   1.70  5.577428
## 5907             15 years old Female              10th grade   1.65  5.413386
## 5908             16 years old Female              11th grade   1.80  5.905512
## 5909             16 years old Female              10th grade   1.70  5.577428
## 5910    18 years old or older   Male              12th grade   1.78  5.839895
## 5911             15 years old Female               9th grade   1.75  5.741470
## 5912             14 years old Female               9th grade   1.57  5.150919
## 5913    18 years old or older   Male              11th grade   1.73  5.675853
## 5914             16 years old Female              10th grade   1.57  5.150919
## 5915             16 years old Female              11th grade     NA        NA
## 5916             15 years old Female              10th grade   1.73  5.675853
## 5917             17 years old Female              12th grade   1.63  5.347769
## 5918             17 years old Female              11th grade   1.63  5.347769
## 5919             15 years old   Male              10th grade   1.73  5.675853
## 5920             14 years old   Male               9th grade   1.90  6.233596
## 5921             16 years old Female              12th grade   1.60  5.249344
## 5922             16 years old   Male              10th grade   1.75  5.741470
## 5923             16 years old   Male              11th grade     NA        NA
## 5924             16 years old Female              10th grade   1.60  5.249344
## 5925    18 years old or older Female              12th grade   1.63  5.347769
## 5926    18 years old or older Female              12th grade   1.60  5.249344
## 5927             17 years old   Male              11th grade   1.75  5.741470
## 5928             15 years old   Male               9th grade   1.85  6.069554
## 5929             17 years old   Male              11th grade   1.78  5.839895
## 5930             16 years old   Male              10th grade   1.78  5.839895
## 5931             16 years old Female              11th grade   1.68  5.511811
## 5932             15 years old Female              10th grade   1.55  5.085302
## 5933             17 years old   Male              12th grade   1.73  5.675853
## 5934    18 years old or older Female              12th grade   1.68  5.511811
## 5935             15 years old Female               9th grade   1.63  5.347769
## 5936             16 years old   Male              11th grade   1.83  6.003937
## 5937             16 years old Female              11th grade   1.70  5.577428
## 5938             15 years old   Male               9th grade   1.75  5.741470
## 5939             17 years old   Male              12th grade   1.80  5.905512
## 5940             17 years old   Male              12th grade   1.73  5.675853
## 5941             14 years old   Male               9th grade   1.75  5.741470
## 5942             15 years old   Male               9th grade   1.70  5.577428
## 5943             16 years old Female              11th grade   1.75  5.741470
## 5944             16 years old   Male              10th grade   1.73  5.675853
## 5945             16 years old   Male              11th grade   1.73  5.675853
## 5946             14 years old Female               9th grade   1.52  4.986877
## 5947    18 years old or older Female              12th grade   1.68  5.511811
## 5948             17 years old   Male              12th grade   1.75  5.741470
## 5949             15 years old Female               9th grade   1.65  5.413386
## 5950             16 years old   Male              10th grade   1.73  5.675853
## 5951    18 years old or older   Male              11th grade   1.78  5.839895
## 5952             16 years old   Male              10th grade   1.70  5.577428
## 5953             16 years old   Male              10th grade   1.73  5.675853
## 5954             16 years old   Male              10th grade   1.80  5.905512
## 5955             15 years old   Male              10th grade   1.73  5.675853
## 5956             16 years old Female              10th grade   1.63  5.347769
## 5957             16 years old Female              10th grade   1.60  5.249344
## 5958    18 years old or older   Male              12th grade   1.75  5.741470
## 5959             16 years old Female              10th grade   1.63  5.347769
## 5960    18 years old or older   Male              12th grade   1.73  5.675853
## 5961    18 years old or older   Male              12th grade   1.85  6.069554
## 5962             15 years old Female               9th grade   1.63  5.347769
## 5963             14 years old Female               9th grade   1.68  5.511811
## 5964             17 years old   Male              12th grade   1.83  6.003937
## 5965             17 years old   Male              10th grade   1.68  5.511811
## 5966             16 years old Female              10th grade   1.57  5.150919
## 5967    18 years old or older Female              12th grade   1.78  5.839895
## 5968    18 years old or older   Male              12th grade   1.80  5.905512
## 5969             15 years old Female               9th grade   1.55  5.085302
## 5970             15 years old   Male               9th grade   1.68  5.511811
## 5971             16 years old   Male              11th grade   1.70  5.577428
## 5972             17 years old Female              11th grade     NA        NA
## 5973             16 years old Female              10th grade   1.57  5.150919
## 5974    18 years old or older Female              12th grade     NA        NA
## 5975             17 years old   Male              12th grade   1.88  6.167979
## 5976             15 years old Female               9th grade     NA        NA
## 5977             14 years old   Male               9th grade   1.68  5.511811
## 5978             16 years old Female              10th grade   1.68  5.511811
## 5979             16 years old   Male              10th grade   1.75  5.741470
## 5980             16 years old   Male              10th grade   1.78  5.839895
## 5981             15 years old   Male              10th grade   1.70  5.577428
## 5982             15 years old Female              10th grade   1.73  5.675853
## 5983             16 years old Female              11th grade   1.63  5.347769
## 5984             14 years old   Male               9th grade   1.83  6.003937
## 5985             17 years old Female              11th grade   1.73  5.675853
## 5986             15 years old Female              10th grade   1.65  5.413386
## 5987             17 years old Female              11th grade   1.68  5.511811
## 5988    18 years old or older Female              12th grade   1.63  5.347769
## 5989    18 years old or older Female              12th grade   1.57  5.150919
## 5990             14 years old   Male               9th grade   1.73  5.675853
## 5991             15 years old   Male               9th grade   1.73  5.675853
## 5992             17 years old   Male              11th grade   1.70  5.577428
## 5993             17 years old Female              11th grade   1.57  5.150919
## 5994             16 years old Female              10th grade     NA        NA
## 5995             15 years old   Male              11th grade   1.80  5.905512
## 5996             16 years old Female              11th grade   1.68  5.511811
## 5997             15 years old   Male               9th grade   1.70  5.577428
## 5998    18 years old or older Female              12th grade   1.60  5.249344
## 5999             17 years old   Male              12th grade   1.78  5.839895
## 6000             17 years old   Male              10th grade   1.73  5.675853
## 6001             14 years old Female               9th grade   1.70  5.577428
## 6002             17 years old Female              12th grade   1.63  5.347769
## 6003    18 years old or older Female              12th grade   1.60  5.249344
## 6004             16 years old   Male              10th grade   1.70  5.577428
## 6005             17 years old   Male              11th grade   1.78  5.839895
## 6006    18 years old or older Female              11th grade   1.42  4.658793
## 6007             17 years old   Male              12th grade   1.68  5.511811
## 6008             17 years old Female              11th grade   1.60  5.249344
## 6009             15 years old   Male               9th grade   1.73  5.675853
## 6010             17 years old Female              12th grade   1.52  4.986877
## 6011             17 years old Female              12th grade   1.63  5.347769
## 6012             16 years old   Male              10th grade   1.83  6.003937
## 6013             16 years old   Male              11th grade   1.70  5.577428
## 6014             17 years old   Male              11th grade   1.75  5.741470
## 6015             17 years old   Male              12th grade   1.68  5.511811
## 6016             17 years old   Male              12th grade   1.80  5.905512
## 6017             17 years old   Male              10th grade     NA        NA
## 6018             17 years old   Male              11th grade   1.55  5.085302
## 6019             17 years old   Male              11th grade   1.78  5.839895
## 6020    18 years old or older Female              12th grade   1.55  5.085302
## 6021             16 years old   Male              10th grade   1.80  5.905512
## 6022    18 years old or older   Male              11th grade   1.88  6.167979
## 6023             16 years old   Male              11th grade   1.85  6.069554
## 6024             15 years old Female               9th grade   1.52  4.986877
## 6025             17 years old Female              12th grade   1.63  5.347769
## 6026             16 years old   Male               9th grade     NA        NA
## 6027             16 years old Female              11th grade   1.63  5.347769
## 6028             17 years old   Male              11th grade   1.85  6.069554
## 6029             16 years old   Male               9th grade   1.78  5.839895
## 6030             17 years old   Male              11th grade   1.75  5.741470
## 6031             17 years old   Male              11th grade   1.80  5.905512
## 6032             15 years old   Male               9th grade   1.78  5.839895
## 6033             17 years old Female              12th grade   1.60  5.249344
## 6034             17 years old Female              11th grade   1.57  5.150919
## 6035             14 years old Female               9th grade   1.55  5.085302
## 6036             17 years old Female              12th grade   1.60  5.249344
## 6037    18 years old or older Female              12th grade   1.68  5.511811
## 6038             16 years old   Male              10th grade   1.73  5.675853
## 6039             17 years old Female              11th grade   1.63  5.347769
## 6040             17 years old Female              11th grade   1.63  5.347769
## 6041    18 years old or older Female              12th grade   1.57  5.150919
## 6042             17 years old   Male              11th grade   1.80  5.905512
## 6043             17 years old   Male              11th grade   1.88  6.167979
## 6044             15 years old   Male               9th grade   1.83  6.003937
## 6045    18 years old or older Female              12th grade   1.57  5.150919
## 6046    18 years old or older Female              12th grade   1.65  5.413386
## 6047             15 years old   Male              10th grade   1.73  5.675853
## 6048             15 years old Female               9th grade   1.65  5.413386
## 6049             16 years old   Male              10th grade   1.80  5.905512
## 6050             14 years old Female               9th grade   1.57  5.150919
## 6051             16 years old   Male              10th grade   1.78  5.839895
## 6052             17 years old   Male              11th grade   1.75  5.741470
## 6053             17 years old   Male                    <NA>   2.03  6.660105
## 6054             17 years old   Male              12th grade   1.80  5.905512
## 6055             17 years old Female              12th grade   1.60  5.249344
## 6056             15 years old Female               9th grade     NA        NA
## 6057             16 years old Female              10th grade   1.63  5.347769
## 6058             15 years old   Male               9th grade   1.68  5.511811
## 6059             16 years old   Male              10th grade   1.80  5.905512
## 6060             15 years old   Male               9th grade   1.80  5.905512
## 6061             16 years old Female              10th grade   1.78  5.839895
## 6062             16 years old   Male               9th grade   1.83  6.003937
## 6063             16 years old   Male              10th grade   1.73  5.675853
## 6064             17 years old   Male              10th grade   1.60  5.249344
## 6065             15 years old   Male               9th grade   1.75  5.741470
## 6066             15 years old Female               9th grade   1.55  5.085302
## 6067             14 years old Female               9th grade   1.57  5.150919
## 6068             16 years old Female              10th grade   1.63  5.347769
## 6069             15 years old   Male               9th grade     NA        NA
## 6070             16 years old Female              10th grade   1.68  5.511811
## 6071             14 years old Female               9th grade     NA        NA
## 6072             16 years old Female              10th grade   1.60  5.249344
## 6073             14 years old Female               9th grade   1.68  5.511811
## 6074             15 years old   Male              10th grade   1.73  5.675853
## 6075             14 years old   Male               9th grade   1.80  5.905512
## 6076             15 years old Female              10th grade   1.63  5.347769
## 6077             15 years old   Male              10th grade   1.63  5.347769
## 6078             15 years old   Male              10th grade   1.73  5.675853
## 6079             16 years old   Male              10th grade   1.65  5.413386
## 6080             16 years old Female              10th grade   1.52  4.986877
## 6081             17 years old Female              12th grade   1.60  5.249344
## 6082             17 years old Female              11th grade   1.57  5.150919
## 6083             15 years old   Male               9th grade   1.65  5.413386
## 6084             16 years old Female              10th grade     NA        NA
## 6085             17 years old   Male              12th grade   1.83  6.003937
## 6086             16 years old   Male              11th grade   1.78  5.839895
## 6087    18 years old or older   Male              12th grade   1.85  6.069554
## 6088             16 years old   Male               9th grade   1.80  5.905512
## 6089             15 years old Female              10th grade   1.65  5.413386
## 6090             15 years old Female               9th grade   1.63  5.347769
## 6091             15 years old Female              10th grade     NA        NA
## 6092             17 years old Female              12th grade   1.73  5.675853
## 6093             16 years old   Male              11th grade   1.78  5.839895
## 6094             16 years old Female              11th grade   1.55  5.085302
## 6095    18 years old or older Female              12th grade   1.65  5.413386
## 6096             15 years old Female               9th grade   1.68  5.511811
## 6097    18 years old or older Female              12th grade   1.55  5.085302
## 6098    18 years old or older   Male              11th grade   1.73  5.675853
## 6099             15 years old   Male               9th grade   1.68  5.511811
## 6100             15 years old Female               9th grade   1.68  5.511811
## 6101             16 years old   Male              10th grade     NA        NA
## 6102             15 years old Female              10th grade   1.52  4.986877
## 6103             16 years old Female               9th grade     NA        NA
## 6104             16 years old   Male              10th grade   1.93  6.332021
## 6105             15 years old   Male              10th grade   1.73  5.675853
## 6106    18 years old or older Female              12th grade   1.57  5.150919
## 6107             16 years old Female              11th grade   1.68  5.511811
## 6108             17 years old   Male              11th grade   1.73  5.675853
## 6109             17 years old Female              12th grade   1.57  5.150919
## 6110             14 years old Female               9th grade   1.60  5.249344
## 6111             16 years old Female              10th grade   1.52  4.986877
## 6112    18 years old or older   Male              12th grade   1.80  5.905512
## 6113    18 years old or older   Male              12th grade   1.83  6.003937
## 6114             17 years old Female              11th grade   1.52  4.986877
## 6115             15 years old   Male               9th grade   1.70  5.577428
## 6116             14 years old   Male               9th grade   1.78  5.839895
## 6117             16 years old Female              10th grade   1.80  5.905512
## 6118             17 years old   Male              10th grade   1.88  6.167979
## 6119             17 years old Female              12th grade   1.60  5.249344
## 6120             17 years old   Male              11th grade   1.70  5.577428
## 6121             14 years old Female               9th grade     NA        NA
## 6122             15 years old   Male              10th grade   1.70  5.577428
## 6123    18 years old or older Female              12th grade   1.60  5.249344
## 6124             17 years old Female              12th grade   1.52  4.986877
## 6125             15 years old   Male               9th grade   1.73  5.675853
## 6126             16 years old   Male              10th grade   1.70  5.577428
## 6127             16 years old   Male              10th grade   1.65  5.413386
## 6128             17 years old   Male              12th grade   1.80  5.905512
## 6129             17 years old   Male              11th grade   1.78  5.839895
## 6130             17 years old Female              11th grade   1.63  5.347769
## 6131             17 years old   Male              12th grade   1.78  5.839895
## 6132             15 years old   Male               9th grade   1.80  5.905512
## 6133             15 years old Female              10th grade     NA        NA
## 6134             16 years old   Male              10th grade   1.78  5.839895
## 6135             15 years old Female               9th grade   1.57  5.150919
## 6136    18 years old or older   Male              12th grade   1.73  5.675853
## 6137             17 years old   Male               9th grade     NA        NA
## 6138             15 years old   Male              10th grade   1.75  5.741470
## 6139    18 years old or older   Male              12th grade   1.75  5.741470
## 6140             17 years old   Male              11th grade   1.75  5.741470
## 6141             14 years old   Male               9th grade     NA        NA
## 6142             16 years old Female               9th grade   1.57  5.150919
## 6143             16 years old   Male              10th grade   1.65  5.413386
## 6144             14 years old Female              10th grade   1.70  5.577428
## 6145    18 years old or older Female              12th grade     NA        NA
## 6146             17 years old   Male              11th grade   1.75  5.741470
## 6147             14 years old Female               9th grade   1.68  5.511811
## 6148             16 years old Female              10th grade   1.63  5.347769
## 6149    18 years old or older Female              12th grade   1.65  5.413386
## 6150             17 years old   Male              12th grade   1.78  5.839895
## 6151             14 years old Female               9th grade   1.63  5.347769
## 6152             15 years old Female               9th grade   1.68  5.511811
## 6153             16 years old Female              10th grade   1.68  5.511811
## 6154             17 years old   Male              10th grade   1.68  5.511811
## 6155    18 years old or older Female              12th grade   1.60  5.249344
## 6156             16 years old   Male              11th grade   1.78  5.839895
## 6157             17 years old Female              11th grade   1.70  5.577428
## 6158    18 years old or older Female              12th grade   1.57  5.150919
## 6159             14 years old Female               9th grade     NA        NA
## 6160             15 years old Female               9th grade     NA        NA
## 6161             15 years old Female              10th grade   1.60  5.249344
## 6162             17 years old   Male              12th grade   1.78  5.839895
## 6163             16 years old   Male              11th grade   1.73  5.675853
## 6164    18 years old or older   Male              12th grade   1.90  6.233596
## 6165             16 years old   Male               9th grade     NA        NA
## 6166             17 years old   Male              12th grade   1.68  5.511811
## 6167             17 years old   Male              12th grade   1.73  5.675853
## 6168             17 years old Female              11th grade   1.65  5.413386
## 6169    18 years old or older   Male              12th grade   1.68  5.511811
## 6170             15 years old   Male               9th grade   1.65  5.413386
## 6171             15 years old Female               9th grade   1.55  5.085302
## 6172             15 years old   Male              10th grade   1.75  5.741470
## 6173             16 years old Female              10th grade   1.57  5.150919
## 6174    18 years old or older   Male              12th grade   1.88  6.167979
## 6175             16 years old   Male              11th grade   1.83  6.003937
## 6176             17 years old   Male              11th grade   1.85  6.069554
## 6177    18 years old or older   Male              12th grade   1.68  5.511811
## 6178             15 years old Female               9th grade   1.65  5.413386
## 6179             15 years old   Male              10th grade   1.78  5.839895
## 6180             16 years old Female              10th grade   1.60  5.249344
## 6181    18 years old or older Female              12th grade   1.63  5.347769
## 6182             16 years old Female              11th grade   1.57  5.150919
## 6183             16 years old Female              10th grade   1.47  4.822835
## 6184    18 years old or older Female              12th grade   1.57  5.150919
## 6185             14 years old Female               9th grade   1.52  4.986877
## 6186             17 years old   Male              12th grade   1.73  5.675853
## 6187             16 years old   Male              11th grade   1.83  6.003937
## 6188    18 years old or older Female              11th grade   1.63  5.347769
## 6189    18 years old or older   Male              12th grade   1.80  5.905512
## 6190             15 years old   Male               9th grade   1.52  4.986877
## 6191    18 years old or older   Male              12th grade   1.75  5.741470
## 6192             17 years old   Male              11th grade     NA        NA
## 6193             16 years old   Male              11th grade   1.88  6.167979
## 6194             17 years old   Male              12th grade   1.75  5.741470
## 6195             15 years old Female               9th grade   1.63  5.347769
## 6196             16 years old Female              10th grade   1.75  5.741470
## 6197             15 years old Female              10th grade   1.63  5.347769
## 6198             17 years old   Male              12th grade   1.73  5.675853
## 6199             17 years old Female              10th grade   1.60  5.249344
## 6200             17 years old   Male              11th grade   1.88  6.167979
## 6201             16 years old Female              11th grade   1.70  5.577428
## 6202             15 years old Female               9th grade   1.73  5.675853
## 6203             17 years old   Male              12th grade   1.75  5.741470
## 6204    18 years old or older Female              12th grade   1.68  5.511811
## 6205    18 years old or older Female              12th grade   1.63  5.347769
## 6206    18 years old or older   Male              12th grade   1.75  5.741470
## 6207    18 years old or older Female              12th grade   1.60  5.249344
## 6208             16 years old   Male              10th grade   1.85  6.069554
## 6209             16 years old Female              10th grade   1.60  5.249344
## 6210    18 years old or older Female              12th grade   1.65  5.413386
## 6211             17 years old   Male              11th grade   1.75  5.741470
## 6212             15 years old   Male               9th grade     NA        NA
## 6213             17 years old   Male              12th grade   1.83  6.003937
## 6214             16 years old   Male              10th grade   1.60  5.249344
## 6215    18 years old or older Female              11th grade   1.60  5.249344
## 6216             17 years old   Male              11th grade   1.75  5.741470
## 6217             14 years old Female               9th grade   1.68  5.511811
## 6218             16 years old   Male              10th grade   1.73  5.675853
## 6219             15 years old Female              10th grade     NA        NA
## 6220             17 years old   Male              11th grade   1.85  6.069554
## 6221             17 years old Female              11th grade   1.65  5.413386
## 6222             15 years old Female                    <NA>     NA        NA
## 6223             16 years old   Male              10th grade   1.70  5.577428
## 6224             16 years old   Male              10th grade   1.68  5.511811
## 6225    18 years old or older   Male              12th grade   1.73  5.675853
## 6226             16 years old Female              11th grade   1.63  5.347769
## 6227             16 years old   Male              10th grade   1.78  5.839895
## 6228             16 years old   Male              10th grade   1.78  5.839895
## 6229             16 years old Female              10th grade   1.57  5.150919
## 6230    18 years old or older   Male              12th grade   1.80  5.905512
## 6231             16 years old Female              11th grade   1.57  5.150919
## 6232             17 years old   Male              10th grade   1.65  5.413386
## 6233    18 years old or older Female              12th grade   1.65  5.413386
## 6234             15 years old   Male               9th grade   1.73  5.675853
## 6235             17 years old   Male              11th grade   1.73  5.675853
## 6236             17 years old   Male              11th grade   1.73  5.675853
## 6237             16 years old   Male              10th grade   1.70  5.577428
## 6238             16 years old Female              11th grade   1.52  4.986877
## 6239             15 years old   Male              10th grade   1.73  5.675853
## 6240             15 years old   Male              10th grade   1.75  5.741470
## 6241             16 years old   Male              10th grade     NA        NA
## 6242    18 years old or older   Male              12th grade   1.80  5.905512
## 6243             16 years old   Male              11th grade   1.75  5.741470
## 6244             17 years old Female              11th grade   1.60  5.249344
## 6245    18 years old or older   Male              12th grade   1.73  5.675853
## 6246             16 years old   Male              10th grade   1.78  5.839895
## 6247             15 years old   Male              10th grade   1.83  6.003937
## 6248    18 years old or older   Male              12th grade   1.68  5.511811
## 6249             17 years old Female              11th grade     NA        NA
## 6250             17 years old Female              11th grade   1.60  5.249344
## 6251             15 years old   Male               9th grade   1.68  5.511811
## 6252             17 years old Female              12th grade   1.65  5.413386
## 6253             15 years old   Male              10th grade     NA        NA
## 6254             15 years old Female              10th grade     NA        NA
## 6255    18 years old or older Female              12th grade   1.70  5.577428
## 6256             17 years old Female              11th grade   1.57  5.150919
## 6257             16 years old Female              11th grade     NA        NA
## 6258             16 years old Female               9th grade   1.63  5.347769
## 6259    18 years old or older Female              12th grade   1.65  5.413386
## 6260             16 years old Female              10th grade     NA        NA
## 6261    18 years old or older   Male              12th grade   1.68  5.511811
## 6262             17 years old   Male              10th grade   1.65  5.413386
## 6263             14 years old Female               9th grade   1.70  5.577428
## 6264             16 years old Female              10th grade     NA        NA
## 6265             15 years old Female              10th grade     NA        NA
## 6266             17 years old Female              12th grade   1.57  5.150919
## 6267             16 years old   Male              11th grade   1.78  5.839895
## 6268             16 years old Female              11th grade   1.68  5.511811
## 6269             14 years old Female               9th grade   1.55  5.085302
## 6270             17 years old Female              12th grade   1.63  5.347769
## 6271             16 years old Female              10th grade   1.60  5.249344
## 6272             16 years old   Male              10th grade   1.78  5.839895
## 6273                     <NA>   Male              10th grade     NA        NA
## 6274    18 years old or older Female              11th grade     NA        NA
## 6275             15 years old Female               9th grade     NA        NA
## 6276    18 years old or older   Male              12th grade   1.63  5.347769
## 6277             16 years old Female              10th grade     NA        NA
## 6278             17 years old Female              11th grade   1.57  5.150919
## 6279             17 years old   Male              11th grade   1.78  5.839895
## 6280    18 years old or older   Male              12th grade   1.78  5.839895
## 6281             15 years old   Male              10th grade   1.90  6.233596
## 6282             16 years old Female              10th grade   1.65  5.413386
## 6283    18 years old or older Female              11th grade   1.65  5.413386
## 6284             17 years old   Male              11th grade   1.73  5.675853
## 6285             16 years old Female               9th grade   1.63  5.347769
## 6286    18 years old or older   Male              12th grade   1.68  5.511811
## 6287             15 years old   Male              10th grade   1.75  5.741470
## 6288    18 years old or older   Male              11th grade   1.83  6.003937
## 6289             17 years old Female              11th grade   1.63  5.347769
## 6290             17 years old   Male              10th grade   1.83  6.003937
## 6291    18 years old or older Female              12th grade   1.68  5.511811
## 6292             17 years old Female              11th grade   1.57  5.150919
## 6293             16 years old   Male              11th grade   1.80  5.905512
## 6294             15 years old Female              10th grade     NA        NA
## 6295             17 years old Female              12th grade   1.68  5.511811
## 6296             16 years old Female              11th grade   1.57  5.150919
## 6297             16 years old   Male              10th grade   1.83  6.003937
## 6298             16 years old Female              10th grade   1.63  5.347769
## 6299    18 years old or older Female              12th grade   1.63  5.347769
## 6300             17 years old   Male              11th grade     NA        NA
## 6301             16 years old Female              10th grade   1.60  5.249344
## 6302    18 years old or older Female              12th grade   1.57  5.150919
## 6303             17 years old Female              11th grade     NA        NA
## 6304             16 years old   Male              10th grade     NA        NA
## 6305             16 years old Female              10th grade   1.65  5.413386
## 6306    18 years old or older   Male              12th grade   1.73  5.675853
## 6307             15 years old   Male              10th grade   1.80  5.905512
## 6308    18 years old or older   Male              12th grade   1.75  5.741470
## 6309             16 years old Female              11th grade   1.65  5.413386
## 6310    18 years old or older Female              12th grade   1.73  5.675853
## 6311             15 years old   Male               9th grade   1.63  5.347769
## 6312             15 years old   Male               9th grade   1.65  5.413386
## 6313             15 years old   Male               9th grade   1.60  5.249344
## 6314             15 years old Female               9th grade   1.65  5.413386
## 6315             15 years old   Male               9th grade   1.75  5.741470
## 6316             14 years old Female               9th grade     NA        NA
## 6317             15 years old   Male               9th grade   1.75  5.741470
## 6318             14 years old Female               9th grade     NA        NA
## 6319             15 years old Female              10th grade     NA        NA
## 6320             15 years old Female               9th grade   1.68  5.511811
## 6321             15 years old Female               9th grade   1.60  5.249344
## 6322             14 years old Female               9th grade   1.60  5.249344
## 6323             14 years old   Male               9th grade   1.93  6.332021
## 6324             14 years old Female               9th grade   1.60  5.249344
## 6325             14 years old   Male               9th grade   1.75  5.741470
## 6326             14 years old Female               9th grade   1.60  5.249344
## 6327             17 years old Female              12th grade   1.60  5.249344
## 6328             14 years old Female               9th grade   1.75  5.741470
## 6329             15 years old   Male               9th grade   1.73  5.675853
## 6330             14 years old Female               9th grade   1.52  4.986877
## 6331             15 years old   Male               9th grade   1.73  5.675853
## 6332             14 years old Female               9th grade   1.65  5.413386
## 6333             16 years old   Male               9th grade     NA        NA
## 6334    18 years old or older Female              12th grade   1.60  5.249344
## 6335             17 years old   Male              12th grade   1.83  6.003937
## 6336             15 years old   Male              10th grade   1.80  5.905512
## 6337             14 years old   Male               9th grade     NA        NA
## 6338             17 years old Female              12th grade   1.55  5.085302
## 6339             15 years old   Male              10th grade   1.75  5.741470
## 6340             17 years old Female              12th grade   1.65  5.413386
## 6341             15 years old Female              10th grade     NA        NA
## 6342             16 years old   Male              11th grade   1.83  6.003937
## 6343             17 years old Female              12th grade   1.70  5.577428
## 6344             15 years old   Male               9th grade     NA        NA
## 6345             15 years old Female              10th grade   1.70  5.577428
## 6346             17 years old Female              12th grade   1.50  4.921260
## 6347             15 years old   Male              10th grade   1.68  5.511811
## 6348             17 years old Female              12th grade   1.63  5.347769
## 6349             16 years old Female              11th grade   1.63  5.347769
## 6350             16 years old Female              11th grade   1.75  5.741470
## 6351             14 years old Female               9th grade   1.55  5.085302
## 6352    18 years old or older Female              12th grade   1.55  5.085302
## 6353             17 years old Female              12th grade   1.52  4.986877
## 6354             15 years old Female              10th grade   1.60  5.249344
## 6355             16 years old Female              10th grade   1.57  5.150919
## 6356    18 years old or older   Male              12th grade   1.83  6.003937
## 6357             16 years old Female              11th grade   1.60  5.249344
## 6358             16 years old Female              11th grade   1.65  5.413386
## 6359             17 years old   Male              11th grade   1.93  6.332021
## 6360             16 years old Female              11th grade   1.60  5.249344
## 6361             16 years old Female              11th grade   1.57  5.150919
## 6362             15 years old Female              10th grade   1.75  5.741470
## 6363             16 years old   Male              11th grade   1.68  5.511811
## 6364             16 years old Female              11th grade   1.57  5.150919
## 6365             17 years old Female              12th grade   1.63  5.347769
## 6366             17 years old   Male              12th grade   1.63  5.347769
## 6367             15 years old Female              10th grade     NA        NA
## 6368             17 years old Female              12th grade   1.60  5.249344
## 6369             16 years old Female              11th grade   1.52  4.986877
## 6370             16 years old   Male              11th grade   1.70  5.577428
## 6371             14 years old   Male               9th grade   1.60  5.249344
## 6372             17 years old   Male              11th grade   1.85  6.069554
## 6373             16 years old Female              11th grade   1.50  4.921260
## 6374             15 years old   Male              10th grade   1.78  5.839895
## 6375             17 years old Female              11th grade   1.60  5.249344
## 6376             17 years old   Male              11th grade   1.68  5.511811
## 6377             16 years old   Male              11th grade   1.75  5.741470
## 6378             17 years old Female              12th grade   1.68  5.511811
## 6379             17 years old   Male              12th grade   1.73  5.675853
## 6380             16 years old   Male              11th grade   1.65  5.413386
## 6381             15 years old   Male              10th grade   1.78  5.839895
## 6382             16 years old   Male              11th grade   1.83  6.003937
## 6383             14 years old   Male               9th grade   1.73  5.675853
## 6384             14 years old Female               9th grade   1.63  5.347769
## 6385             14 years old Female               9th grade   1.57  5.150919
## 6386             16 years old Female              11th grade   1.60  5.249344
## 6387             15 years old   Male              10th grade   1.80  5.905512
## 6388             16 years old   Male              11th grade   1.80  5.905512
## 6389             16 years old Female              11th grade   1.60  5.249344
## 6390             17 years old   Male              12th grade   1.88  6.167979
## 6391             16 years old Female              11th grade   1.68  5.511811
## 6392             14 years old   Male               9th grade   1.60  5.249344
## 6393             16 years old   Male              10th grade   1.75  5.741470
## 6394             16 years old   Male              11th grade   1.63  5.347769
## 6395             14 years old Female               9th grade   1.57  5.150919
## 6396    18 years old or older Female              12th grade   1.55  5.085302
## 6397             17 years old   Male              11th grade   1.75  5.741470
## 6398             14 years old   Male               9th grade   1.75  5.741470
## 6399             17 years old Female              11th grade   1.55  5.085302
## 6400             17 years old Female              11th grade   1.63  5.347769
## 6401             16 years old Female              11th grade   1.52  4.986877
## 6402    18 years old or older Female              11th grade   1.57  5.150919
## 6403             17 years old   Male              12th grade   1.70  5.577428
## 6404             16 years old   Male              11th grade   1.88  6.167979
## 6405             16 years old Female              10th grade   1.50  4.921260
## 6406             17 years old Female              10th grade   1.65  5.413386
## 6407             16 years old Female              11th grade   1.57  5.150919
## 6408             15 years old Female              10th grade   1.52  4.986877
## 6409             16 years old   Male              10th grade   1.65  5.413386
## 6410             17 years old   Male              11th grade   1.83  6.003937
## 6411             15 years old Female              10th grade   1.55  5.085302
## 6412             17 years old Female              12th grade   1.57  5.150919
## 6413             14 years old Female               9th grade   1.60  5.249344
## 6414             15 years old   Male              10th grade   1.78  5.839895
## 6415             14 years old   Male               9th grade   1.75  5.741470
## 6416             15 years old   Male               9th grade   1.75  5.741470
## 6417             16 years old Female              11th grade   1.78  5.839895
## 6418             14 years old   Male               9th grade   1.75  5.741470
## 6419             17 years old   Male              11th grade   1.88  6.167979
## 6420             16 years old   Male              10th grade   1.63  5.347769
## 6421             14 years old   Male               9th grade     NA        NA
## 6422             17 years old Female              12th grade   1.65  5.413386
## 6423             16 years old   Male              11th grade   1.68  5.511811
## 6424             14 years old Female               9th grade   1.70  5.577428
## 6425             16 years old   Male              11th grade   1.78  5.839895
## 6426                     <NA>   Male              10th grade     NA        NA
## 6427             15 years old   Male               9th grade   1.83  6.003937
## 6428    18 years old or older   Male              12th grade   1.60  5.249344
## 6429             15 years old   Male               9th grade   1.68  5.511811
## 6430             16 years old   Male              11th grade   1.65  5.413386
## 6431             14 years old   Male               9th grade   1.90  6.233596
## 6432             14 years old   Male               9th grade     NA        NA
## 6433             16 years old Female              11th grade   1.68  5.511811
## 6434    18 years old or older Female              12th grade     NA        NA
## 6435             17 years old Female              11th grade   1.68  5.511811
## 6436             15 years old   Male               9th grade   1.83  6.003937
## 6437             16 years old Female              11th grade   1.68  5.511811
## 6438             15 years old   Male              10th grade   1.78  5.839895
## 6439             17 years old   Male              11th grade   1.73  5.675853
## 6440             16 years old Female               9th grade   1.63  5.347769
## 6441             16 years old   Male              11th grade   1.90  6.233596
## 6442             15 years old   Male              10th grade   1.65  5.413386
## 6443    18 years old or older Female              12th grade   1.55  5.085302
## 6444             15 years old Female              10th grade   1.57  5.150919
## 6445             15 years old   Male               9th grade   1.68  5.511811
## 6446             17 years old   Male              11th grade   1.68  5.511811
## 6447             16 years old   Male              10th grade   1.75  5.741470
## 6448             16 years old   Male              10th grade   1.65  5.413386
## 6449             14 years old   Male               9th grade   1.68  5.511811
## 6450             17 years old Female              12th grade   1.73  5.675853
## 6451             14 years old Female               9th grade     NA        NA
## 6452             15 years old   Male              10th grade   1.78  5.839895
## 6453             16 years old   Male               9th grade   1.73  5.675853
## 6454             17 years old   Male              12th grade   1.93  6.332021
## 6455             17 years old   Male              11th grade   1.78  5.839895
## 6456             14 years old   Male               9th grade   1.85  6.069554
## 6457             15 years old   Male               9th grade   1.80  5.905512
## 6458             16 years old   Male              11th grade   1.80  5.905512
## 6459             16 years old   Male              10th grade   1.73  5.675853
## 6460             17 years old Female              12th grade   1.60  5.249344
## 6461             17 years old   Male              12th grade     NA        NA
## 6462             17 years old Female              12th grade   1.52  4.986877
## 6463    18 years old or older Female              12th grade   1.60  5.249344
## 6464             17 years old Female              11th grade   1.57  5.150919
## 6465             17 years old   Male              10th grade   1.75  5.741470
## 6466             16 years old Female              10th grade   1.40  4.593176
## 6467             17 years old Female              12th grade   1.75  5.741470
## 6468             17 years old   Male              12th grade   1.83  6.003937
## 6469    18 years old or older Female              12th grade   1.70  5.577428
## 6470             16 years old Female              11th grade   1.73  5.675853
## 6471             17 years old Female              12th grade   1.57  5.150919
## 6472    18 years old or older Female              12th grade   1.65  5.413386
## 6473             16 years old Female              11th grade   1.55  5.085302
## 6474             17 years old   Male              12th grade   1.80  5.905512
## 6475             17 years old   Male              12th grade   1.85  6.069554
## 6476             15 years old   <NA>              10th grade     NA        NA
## 6477             16 years old   Male                    <NA>   1.70  5.577428
## 6478    18 years old or older Female               9th grade   1.63  5.347769
## 6479    18 years old or older Female              12th grade   1.55  5.085302
## 6480             16 years old   Male              11th grade   1.78  5.839895
## 6481             15 years old   Male              10th grade   1.68  5.511811
## 6482             17 years old   Male              12th grade   1.83  6.003937
## 6483    18 years old or older   Male              12th grade   1.83  6.003937
## 6484             15 years old   Male               9th grade   1.70  5.577428
## 6485    18 years old or older Female              12th grade   1.50  4.921260
## 6486             16 years old   Male              11th grade   1.75  5.741470
## 6487    18 years old or older Female              12th grade   1.65  5.413386
## 6488             14 years old Female               9th grade   1.70  5.577428
## 6489             16 years old Female              11th grade   1.65  5.413386
## 6490    18 years old or older Female              12th grade   1.68  5.511811
## 6491             15 years old   Male               9th grade   1.73  5.675853
## 6492             16 years old Female              11th grade     NA        NA
## 6493             17 years old   Male              11th grade   1.80  5.905512
## 6494             16 years old   Male              11th grade   1.70  5.577428
## 6495             15 years old Female               9th grade   1.55  5.085302
## 6496             16 years old Female              11th grade   1.65  5.413386
## 6497    18 years old or older Female              12th grade   1.63  5.347769
## 6498             17 years old Female              11th grade   1.57  5.150919
## 6499             17 years old Female              12th grade   1.73  5.675853
## 6500    18 years old or older   Male              12th grade   1.83  6.003937
## 6501             14 years old   Male               9th grade   1.68  5.511811
## 6502             14 years old   Male              10th grade   1.85  6.069554
## 6503             17 years old Female              12th grade   1.65  5.413386
## 6504             15 years old   Male              10th grade   1.75  5.741470
## 6505             14 years old   Male               9th grade   1.57  5.150919
## 6506             15 years old Female              10th grade   1.68  5.511811
## 6507             15 years old   Male              10th grade   1.78  5.839895
## 6508                     <NA>   Male               9th grade     NA        NA
## 6509             15 years old Female              10th grade   1.45  4.757218
## 6510             16 years old Female              11th grade     NA        NA
## 6511             14 years old Female               9th grade   1.68  5.511811
## 6512             17 years old   Male              12th grade   1.88  6.167979
## 6513    18 years old or older   Male              12th grade   1.73  5.675853
## 6514             15 years old   Male              10th grade   1.65  5.413386
## 6515             14 years old   Male               9th grade   1.63  5.347769
## 6516             16 years old Female              10th grade   1.68  5.511811
## 6517             15 years old   Male               9th grade   1.78  5.839895
## 6518             15 years old   Male              10th grade   1.75  5.741470
## 6519             14 years old   Male               9th grade   1.70  5.577428
## 6520             16 years old Female              11th grade   1.75  5.741470
## 6521             15 years old Female               9th grade   1.52  4.986877
## 6522             17 years old Female              11th grade   1.60  5.249344
## 6523             14 years old Female               9th grade   1.68  5.511811
## 6524             14 years old Female               9th grade   1.60  5.249344
## 6525             16 years old Female              10th grade   1.50  4.921260
## 6526             16 years old Female               9th grade     NA        NA
## 6527             15 years old   Male              10th grade   1.73  5.675853
## 6528             16 years old   Male              10th grade   1.88  6.167979
## 6529             14 years old Female               9th grade   1.65  5.413386
## 6530    18 years old or older   Male              12th grade   1.80  5.905512
## 6531             15 years old   Male               9th grade   1.65  5.413386
## 6532             14 years old   Male               9th grade   1.65  5.413386
## 6533             16 years old Female               9th grade   1.50  4.921260
## 6534    18 years old or older   Male              12th grade   1.73  5.675853
## 6535             15 years old Female               9th grade   1.68  5.511811
## 6536             15 years old Female              10th grade   1.68  5.511811
## 6537             16 years old Female              10th grade   1.55  5.085302
## 6538             16 years old Female              10th grade   1.65  5.413386
## 6539             16 years old Female              10th grade   1.57  5.150919
## 6540             15 years old Female              10th grade   1.55  5.085302
## 6541             17 years old Female              12th grade   1.78  5.839895
## 6542             17 years old   Male              12th grade   1.73  5.675853
## 6543             15 years old Female               9th grade   1.50  4.921260
## 6544             15 years old Female              10th grade   1.55  5.085302
## 6545             16 years old Female              11th grade   1.57  5.150919
## 6546             17 years old Female              12th grade   1.63  5.347769
## 6547             15 years old Female               9th grade   1.65  5.413386
## 6548             16 years old   Male              10th grade   1.80  5.905512
## 6549             16 years old   Male              10th grade   1.70  5.577428
## 6550    18 years old or older Female              12th grade   1.60  5.249344
## 6551             16 years old Female              10th grade   1.60  5.249344
## 6552             15 years old   Male               9th grade   1.70  5.577428
## 6553             14 years old Female               9th grade   1.68  5.511811
## 6554             16 years old   Male              11th grade   1.68  5.511811
## 6555             14 years old Female               9th grade   1.63  5.347769
## 6556             15 years old Female              10th grade   1.55  5.085302
## 6557             15 years old   Male               9th grade   1.68  5.511811
## 6558             15 years old   Male              10th grade   1.68  5.511811
## 6559             14 years old   Male               9th grade   1.73  5.675853
## 6560             17 years old Female              11th grade     NA        NA
## 6561             16 years old   Male              10th grade     NA        NA
## 6562             14 years old   Male               9th grade   1.60  5.249344
## 6563             16 years old Female              11th grade   1.63  5.347769
## 6564             14 years old Female               9th grade   1.65  5.413386
## 6565             15 years old   Male              10th grade   1.70  5.577428
## 6566             14 years old Female               9th grade   1.60  5.249344
## 6567             16 years old   Male              11th grade   1.73  5.675853
## 6568             15 years old Female              10th grade   1.55  5.085302
## 6569             14 years old   Male               9th grade   1.42  4.658793
## 6570             17 years old   Male              11th grade     NA        NA
## 6571             15 years old Female              10th grade   1.57  5.150919
## 6572             14 years old   Male               9th grade   1.73  5.675853
## 6573             17 years old Female              11th grade   1.52  4.986877
## 6574             14 years old Female               9th grade   1.42  4.658793
## 6575             16 years old Female              11th grade   1.60  5.249344
## 6576             14 years old Female               9th grade   1.68  5.511811
## 6577             16 years old Female              11th grade     NA        NA
## 6578             14 years old Female               9th grade   1.52  4.986877
## 6579             17 years old Female              11th grade   1.50  4.921260
## 6580             16 years old Female              10th grade   1.50  4.921260
## 6581             14 years old Female               9th grade     NA        NA
## 6582             16 years old   Male              11th grade   1.75  5.741470
## 6583             15 years old   Male               9th grade   1.75  5.741470
## 6584             16 years old Female              11th grade   1.73  5.675853
## 6585             14 years old Female               9th grade   1.55  5.085302
## 6586             16 years old   Male              11th grade   1.70  5.577428
## 6587             14 years old Female               9th grade     NA        NA
## 6588    18 years old or older   Male              12th grade   1.75  5.741470
## 6589             14 years old Female               9th grade     NA        NA
## 6590             14 years old   Male               9th grade   1.60  5.249344
## 6591    18 years old or older Female              12th grade   1.45  4.757218
## 6592             14 years old Female               9th grade   1.57  5.150919
## 6593             17 years old   Male              12th grade   1.63  5.347769
## 6594             15 years old Female               9th grade     NA        NA
## 6595             17 years old   Male              12th grade   1.52  4.986877
## 6596    18 years old or older   Male              12th grade   1.65  5.413386
## 6597             15 years old Female               9th grade     NA        NA
## 6598             17 years old   Male              11th grade   1.68  5.511811
## 6599             14 years old Female               9th grade     NA        NA
## 6600    18 years old or older Female              11th grade   1.57  5.150919
## 6601             14 years old   Male               9th grade   1.57  5.150919
## 6602             17 years old   Male              11th grade   1.68  5.511811
## 6603    18 years old or older Female              12th grade     NA        NA
## 6604             17 years old Female              11th grade   1.60  5.249344
## 6605             14 years old Female               9th grade     NA        NA
## 6606             16 years old   Male              11th grade   1.60  5.249344
## 6607             16 years old   Male              11th grade   1.85  6.069554
## 6608             14 years old Female               9th grade   1.50  4.921260
## 6609             16 years old Female              11th grade   1.60  5.249344
## 6610             16 years old Female              11th grade   1.57  5.150919
## 6611             16 years old   Male              11th grade   1.68  5.511811
## 6612             15 years old Female               9th grade   1.47  4.822835
## 6613             15 years old   Male               9th grade   1.73  5.675853
## 6614             16 years old Female              11th grade   1.52  4.986877
## 6615             17 years old Female              12th grade   1.60  5.249344
## 6616             15 years old   Male               9th grade   1.65  5.413386
## 6617             17 years old Female              11th grade   1.60  5.249344
## 6618             15 years old   Male              10th grade   1.73  5.675853
## 6619             14 years old Female               9th grade   1.63  5.347769
## 6620             16 years old   Male              11th grade   1.68  5.511811
## 6621             15 years old Female              10th grade   1.65  5.413386
## 6622             16 years old Female              11th grade   1.73  5.675853
## 6623             14 years old Female               9th grade   1.63  5.347769
## 6624             16 years old Female              11th grade   1.60  5.249344
## 6625             16 years old   Male              10th grade     NA        NA
## 6626             14 years old Female               9th grade     NA        NA
## 6627             16 years old   Male              11th grade   1.70  5.577428
## 6628             15 years old   Male              10th grade   1.80  5.905512
## 6629             14 years old Female               9th grade   1.60  5.249344
## 6630             16 years old Female              11th grade   1.68  5.511811
## 6631             14 years old   Male               9th grade   1.52  4.986877
## 6632             16 years old   Male              11th grade   1.65  5.413386
## 6633             15 years old Female               9th grade   1.60  5.249344
## 6634             17 years old Female              11th grade   1.55  5.085302
## 6635             14 years old Female               9th grade   1.55  5.085302
## 6636             15 years old   Male              10th grade   1.70  5.577428
## 6637             14 years old Female               9th grade   1.60  5.249344
## 6638             14 years old   Male               9th grade     NA        NA
## 6639             16 years old Female              11th grade   1.88  6.167979
## 6640             16 years old   Male              11th grade   1.75  5.741470
## 6641             16 years old Female              11th grade   1.78  5.839895
## 6642             15 years old Female              10th grade   1.68  5.511811
## 6643             17 years old Female              11th grade   1.68  5.511811
## 6644             15 years old Female              10th grade   1.60  5.249344
## 6645             15 years old Female              10th grade   1.80  5.905512
## 6646             15 years old   Male              10th grade   1.60  5.249344
## 6647             17 years old   Male              12th grade   1.80  5.905512
## 6648             16 years old   Male              11th grade   1.70  5.577428
## 6649             14 years old   Male               9th grade   1.75  5.741470
## 6650             14 years old Female               9th grade   1.60  5.249344
## 6651             16 years old   Male              11th grade   1.83  6.003937
## 6652             15 years old   Male              10th grade   1.83  6.003937
## 6653             17 years old   <NA>              12th grade     NA        NA
## 6654             15 years old   Male              10th grade   1.75  5.741470
## 6655             17 years old Female              11th grade   1.57  5.150919
## 6656             16 years old Female              11th grade   1.65  5.413386
## 6657  12 years old or younger Female Ungraded or other grade     NA        NA
## 6658             14 years old   Male               9th grade   1.55  5.085302
## 6659             17 years old   Male              11th grade   1.88  6.167979
## 6660             16 years old Female              10th grade   1.60  5.249344
## 6661             14 years old Female               9th grade     NA        NA
## 6662             16 years old Female              11th grade   1.65  5.413386
## 6663             15 years old Female               9th grade   1.60  5.249344
## 6664             14 years old Female               9th grade   1.70  5.577428
## 6665             17 years old Female              12th grade   1.70  5.577428
## 6666             17 years old Female              12th grade   1.70  5.577428
## 6667             16 years old   Male              11th grade   1.65  5.413386
## 6668             14 years old   Male               9th grade   1.70  5.577428
## 6669             15 years old Female               9th grade     NA        NA
## 6670    18 years old or older Female              12th grade   1.60  5.249344
## 6671             16 years old Female              10th grade   1.73  5.675853
## 6672             14 years old Female               9th grade   1.73  5.675853
## 6673             16 years old Female              11th grade   1.73  5.675853
## 6674             16 years old   Male              10th grade   1.80  5.905512
## 6675             16 years old Female              11th grade   1.75  5.741470
## 6676             16 years old   Male              10th grade   1.96  6.430446
## 6677             15 years old Female              10th grade   1.52  4.986877
## 6678             17 years old   Male              12th grade   1.83  6.003937
## 6679             15 years old Female              10th grade   1.68  5.511811
## 6680             15 years old   <NA>              10th grade     NA        NA
## 6681             16 years old   Male              11th grade   1.90  6.233596
## 6682             14 years old Female               9th grade   1.63  5.347769
## 6683             17 years old Female              11th grade   1.63  5.347769
## 6684             15 years old Female              10th grade   1.68  5.511811
## 6685    18 years old or older Female              12th grade     NA        NA
## 6686             16 years old Female              11th grade   1.65  5.413386
## 6687             15 years old   Male              10th grade   1.78  5.839895
## 6688             17 years old   Male              12th grade   1.65  5.413386
## 6689             16 years old   Male              11th grade   1.78  5.839895
## 6690             16 years old Female              11th grade   1.63  5.347769
## 6691             17 years old Female              12th grade   1.52  4.986877
## 6692    18 years old or older Female              12th grade   1.68  5.511811
## 6693             17 years old Female              12th grade   1.83  6.003937
## 6694             14 years old Female               9th grade   1.63  5.347769
## 6695             16 years old   Male              11th grade   1.73  5.675853
## 6696    18 years old or older   Male              12th grade   1.93  6.332021
## 6697             16 years old   Male              11th grade   1.70  5.577428
## 6698             17 years old   Male              12th grade   1.63  5.347769
## 6699             14 years old Female               9th grade     NA        NA
## 6700    18 years old or older Female              12th grade     NA        NA
## 6701             16 years old Female              11th grade   1.57  5.150919
## 6702             15 years old Female              10th grade   1.60  5.249344
## 6703             17 years old   Male              11th grade   1.78  5.839895
## 6704             17 years old   Male              11th grade   1.75  5.741470
## 6705             17 years old   Male              11th grade   1.83  6.003937
## 6706             15 years old Female               9th grade   1.52  4.986877
## 6707             14 years old Female               9th grade   1.57  5.150919
## 6708             15 years old Female              10th grade   1.57  5.150919
## 6709  12 years old or younger Female               9th grade     NA        NA
## 6710             15 years old   Male              10th grade   1.78  5.839895
## 6711    18 years old or older   Male              12th grade   1.73  5.675853
## 6712    18 years old or older Female              12th grade   1.75  5.741470
## 6713             16 years old   Male              11th grade   1.83  6.003937
## 6714             16 years old Female              11th grade   1.70  5.577428
## 6715             14 years old Female               9th grade   1.75  5.741470
## 6716             16 years old   Male              11th grade   1.78  5.839895
## 6717             14 years old   Male               9th grade   1.75  5.741470
## 6718             15 years old   Male              10th grade   1.65  5.413386
## 6719             17 years old   Male              11th grade   1.75  5.741470
## 6720             16 years old Female              11th grade   1.73  5.675853
## 6721             15 years old   Male              10th grade   1.78  5.839895
## 6722                     <NA> Female              11th grade     NA        NA
## 6723             15 years old   Male              10th grade   1.85  6.069554
## 6724             17 years old Female              12th grade   1.60  5.249344
## 6725    18 years old or older Female              12th grade   1.80  5.905512
## 6726             16 years old   Male              10th grade   1.80  5.905512
## 6727             14 years old Female               9th grade   1.63  5.347769
## 6728             15 years old Female              10th grade   1.60  5.249344
## 6729             15 years old Female              10th grade   1.63  5.347769
## 6730             17 years old Female              12th grade   1.52  4.986877
## 6731             15 years old   Male              10th grade     NA        NA
## 6732             16 years old Female              11th grade   1.68  5.511811
## 6733             17 years old Female              12th grade   1.50  4.921260
## 6734    18 years old or older Female              12th grade     NA        NA
## 6735             17 years old   Male              12th grade   1.63  5.347769
## 6736    18 years old or older   Male              12th grade   1.83  6.003937
## 6737             17 years old   Male              12th grade   1.80  5.905512
## 6738             17 years old   Male              12th grade   1.75  5.741470
## 6739             16 years old   Male              11th grade   1.75  5.741470
## 6740             17 years old Female              12th grade   1.55  5.085302
## 6741             15 years old   Male               9th grade   1.75  5.741470
## 6742             17 years old Female              12th grade   1.65  5.413386
## 6743    18 years old or older   Male              12th grade   1.78  5.839895
## 6744             16 years old Female              11th grade   1.55  5.085302
## 6745             17 years old Female              11th grade   1.68  5.511811
## 6746             16 years old   Male              11th grade   1.73  5.675853
## 6747             15 years old   Male              10th grade   1.70  5.577428
## 6748             16 years old Female              11th grade   1.63  5.347769
## 6749             17 years old Female              11th grade   1.57  5.150919
## 6750             17 years old Female              11th grade   1.65  5.413386
## 6751             16 years old   Male              11th grade   1.73  5.675853
## 6752             17 years old   Male              11th grade   1.75  5.741470
## 6753             16 years old   Male              11th grade   1.78  5.839895
## 6754             16 years old   Male              11th grade     NA        NA
## 6755             16 years old Female              11th grade   1.63  5.347769
## 6756             15 years old Female              10th grade   1.57  5.150919
## 6757             16 years old Female              11th grade   1.52  4.986877
## 6758             17 years old   Male              11th grade     NA        NA
## 6759             16 years old Female              11th grade   1.52  4.986877
## 6760             15 years old Female              10th grade   1.65  5.413386
## 6761             16 years old Female              11th grade   1.60  5.249344
## 6762             16 years old   Male              11th grade   1.68  5.511811
## 6763             16 years old Female              11th grade   1.55  5.085302
## 6764             17 years old   Male              11th grade   1.68  5.511811
## 6765             17 years old   Male              11th grade   1.73  5.675853
## 6766    18 years old or older   Male              12th grade   1.80  5.905512
## 6767    18 years old or older   Male              12th grade   1.75  5.741470
## 6768             17 years old Female              12th grade   1.63  5.347769
## 6769             17 years old Female              12th grade   1.60  5.249344
## 6770             16 years old   Male              10th grade   1.83  6.003937
## 6771             15 years old Female              10th grade   1.60  5.249344
## 6772    18 years old or older   Male              12th grade   1.78  5.839895
## 6773             15 years old   Male              10th grade   1.75  5.741470
## 6774             15 years old   Male              10th grade     NA        NA
## 6775             17 years old   Male              11th grade   1.90  6.233596
## 6776             16 years old   Male              10th grade   1.68  5.511811
## 6777             16 years old Female              10th grade     NA        NA
## 6778             16 years old Female              11th grade   1.63  5.347769
## 6779             17 years old   Male              12th grade   1.80  5.905512
## 6780             15 years old Female              10th grade   1.73  5.675853
## 6781             16 years old   Male              11th grade   1.70  5.577428
## 6782    18 years old or older Female              12th grade   1.57  5.150919
## 6783             15 years old Female              10th grade   1.52  4.986877
## 6784             17 years old   Male              11th grade   1.78  5.839895
## 6785             17 years old   Male              12th grade   1.83  6.003937
## 6786             16 years old Female              10th grade   1.68  5.511811
## 6787             15 years old Female              10th grade   1.55  5.085302
## 6788             17 years old Female              11th grade   1.63  5.347769
## 6789             17 years old Female              12th grade   1.57  5.150919
## 6790             15 years old Female              10th grade   1.63  5.347769
## 6791             15 years old   Male              10th grade   1.68  5.511811
## 6792             17 years old   Male              11th grade   1.73  5.675853
## 6793             15 years old Female              10th grade   1.65  5.413386
## 6794             17 years old Female              11th grade   1.65  5.413386
## 6795             16 years old   Male              11th grade   1.75  5.741470
## 6796             16 years old Female              11th grade   1.60  5.249344
## 6797             16 years old Female              10th grade   1.60  5.249344
## 6798             16 years old Female              11th grade   1.65  5.413386
## 6799    18 years old or older Female              12th grade   1.68  5.511811
## 6800             15 years old   Male              10th grade   1.78  5.839895
## 6801             17 years old   Male              12th grade   1.60  5.249344
## 6802             16 years old Female              11th grade   1.55  5.085302
## 6803             16 years old   Male              11th grade   1.83  6.003937
## 6804             15 years old Female              10th grade   1.52  4.986877
## 6805             16 years old   Male              11th grade   1.80  5.905512
## 6806             15 years old Female              10th grade   1.65  5.413386
## 6807             15 years old   Male              10th grade   1.80  5.905512
## 6808             16 years old Female              11th grade   1.80  5.905512
## 6809             15 years old   Male              10th grade   1.68  5.511811
## 6810             15 years old Female              10th grade   1.57  5.150919
## 6811             16 years old   Male              11th grade   1.70  5.577428
## 6812             15 years old   Male              10th grade   1.80  5.905512
## 6813             16 years old Female              10th grade   1.55  5.085302
## 6814             16 years old Female              11th grade     NA        NA
## 6815             15 years old Female              10th grade   1.65  5.413386
## 6816             16 years old Female              10th grade   1.52  4.986877
## 6817             17 years old   Male              12th grade   1.83  6.003937
## 6818             15 years old Female              10th grade     NA        NA
## 6819             16 years old Female              10th grade   1.73  5.675853
## 6820             16 years old Female              11th grade   1.75  5.741470
## 6821             17 years old   Male              11th grade   1.85  6.069554
## 6822             16 years old   Male              10th grade   1.90  6.233596
## 6823             16 years old Female              10th grade     NA        NA
## 6824             17 years old   Male              11th grade   1.78  5.839895
## 6825             15 years old   Male              10th grade   1.65  5.413386
## 6826             16 years old   Male              11th grade   1.85  6.069554
## 6827             17 years old Female              12th grade   1.57  5.150919
## 6828             15 years old   <NA>              10th grade     NA        NA
## 6829             15 years old   Male              10th grade   1.75  5.741470
## 6830             16 years old   Male              11th grade   1.78  5.839895
## 6831             13 years old Female               9th grade     NA        NA
## 6832             15 years old Female              10th grade   1.63  5.347769
## 6833             16 years old Female              10th grade   1.80  5.905512
## 6834             15 years old   Male              10th grade   1.60  5.249344
## 6835             16 years old   Male              11th grade   1.70  5.577428
## 6836             15 years old   Male              10th grade   1.75  5.741470
## 6837             16 years old Female              10th grade   1.73  5.675853
## 6838             15 years old   Male              10th grade   1.70  5.577428
## 6839             17 years old Female              10th grade   1.60  5.249344
## 6840             15 years old Female              10th grade   1.65  5.413386
## 6841             16 years old Female              10th grade   1.60  5.249344
## 6842             16 years old   Male              10th grade   1.75  5.741470
## 6843             15 years old Female              10th grade   1.50  4.921260
## 6844             15 years old Female              10th grade   1.65  5.413386
## 6845             16 years old   Male              10th grade   1.78  5.839895
## 6846             16 years old   Male              10th grade   1.75  5.741470
## 6847             16 years old Female              10th grade   1.57  5.150919
## 6848             15 years old   Male              10th grade   1.75  5.741470
## 6849             16 years old   Male              10th grade   1.65  5.413386
## 6850             15 years old   Male              10th grade   1.63  5.347769
## 6851             17 years old Female              10th grade   1.63  5.347769
## 6852             16 years old   Male              10th grade   1.78  5.839895
## 6853             16 years old   Male              12th grade     NA        NA
## 6854             16 years old Female              10th grade   1.57  5.150919
## 6855             15 years old Female              10th grade   1.55  5.085302
## 6856             15 years old Female              10th grade   1.55  5.085302
## 6857             15 years old   Male              10th grade   1.70  5.577428
## 6858             15 years old Female              10th grade   1.57  5.150919
## 6859             15 years old   Male              10th grade   1.70  5.577428
## 6860             15 years old   Male              10th grade   1.80  5.905512
## 6861    18 years old or older   Male              11th grade   1.80  5.905512
## 6862             16 years old Female              10th grade   1.70  5.577428
## 6863             16 years old Female              10th grade   1.60  5.249344
## 6864             16 years old Female              10th grade   1.65  5.413386
## 6865             15 years old Female              10th grade   1.57  5.150919
## 6866             16 years old Female              10th grade   1.65  5.413386
## 6867             16 years old   Male              10th grade   1.75  5.741470
## 6868             16 years old   Male              10th grade   1.85  6.069554
## 6869             15 years old   Male              10th grade   1.85  6.069554
## 6870             15 years old Female              10th grade   1.68  5.511811
## 6871             15 years old   Male              10th grade   1.68  5.511811
## 6872             16 years old   Male              10th grade   1.70  5.577428
## 6873             15 years old Female              10th grade   1.57  5.150919
## 6874             15 years old Female              10th grade   1.57  5.150919
## 6875             16 years old Female              10th grade   1.70  5.577428
## 6876             16 years old Female              10th grade   1.65  5.413386
## 6877             16 years old   Male              10th grade   1.63  5.347769
## 6878    18 years old or older   Male              12th grade   1.73  5.675853
## 6879             15 years old Female              10th grade   1.55  5.085302
## 6880             15 years old   Male              10th grade   1.78  5.839895
## 6881             16 years old   Male              10th grade   1.83  6.003937
## 6882             15 years old Female              10th grade   1.75  5.741470
## 6883             16 years old   Male              10th grade   1.88  6.167979
## 6884             15 years old   Male              10th grade   1.78  5.839895
## 6885             16 years old Female              10th grade     NA        NA
## 6886             16 years old Female              10th grade   1.57  5.150919
## 6887             15 years old   Male              10th grade   1.60  5.249344
## 6888             15 years old   Male              10th grade   1.88  6.167979
## 6889             15 years old Female              10th grade     NA        NA
## 6890             16 years old   Male              10th grade   1.75  5.741470
## 6891             16 years old   Male              10th grade     NA        NA
## 6892             16 years old Female              10th grade   1.57  5.150919
## 6893             16 years old Female              10th grade   1.63  5.347769
## 6894             17 years old   Male              11th grade   1.83  6.003937
## 6895             16 years old Female              10th grade   1.60  5.249344
## 6896             16 years old Female              10th grade   1.57  5.150919
## 6897             16 years old   Male              10th grade   1.80  5.905512
## 6898             15 years old Female              10th grade   1.73  5.675853
## 6899             17 years old Female              10th grade   1.52  4.986877
## 6900             16 years old Female              10th grade   1.63  5.347769
## 6901             15 years old Female              10th grade     NA        NA
## 6902             16 years old   Male              10th grade   1.78  5.839895
## 6903             16 years old   Male              10th grade   1.73  5.675853
## 6904             16 years old   Male              10th grade   1.70  5.577428
## 6905             16 years old   Male              10th grade   1.68  5.511811
## 6906             15 years old   Male              10th grade   1.70  5.577428
## 6907             16 years old   Male              10th grade   1.68  5.511811
## 6908             15 years old Female              10th grade   1.63  5.347769
## 6909             15 years old Female              10th grade   1.63  5.347769
## 6910             15 years old Female              10th grade   1.60  5.249344
## 6911             15 years old Female              10th grade   1.57  5.150919
## 6912             16 years old   Male              10th grade   1.65  5.413386
## 6913             15 years old   Male              10th grade   1.80  5.905512
## 6914             15 years old   Male              10th grade   1.75  5.741470
## 6915             16 years old Female              10th grade   1.60  5.249344
## 6916             15 years old   Male              10th grade   1.63  5.347769
## 6917             15 years old Female              10th grade     NA        NA
## 6918             15 years old Female              10th grade   1.57  5.150919
## 6919             16 years old Female              10th grade   1.57  5.150919
## 6920             16 years old   Male              10th grade   1.70  5.577428
## 6921             16 years old   Male              10th grade   1.70  5.577428
## 6922             16 years old   Male              10th grade   1.88  6.167979
## 6923             16 years old Female              10th grade   1.73  5.675853
## 6924             15 years old   Male              10th grade   1.63  5.347769
## 6925             15 years old Female              10th grade   1.60  5.249344
## 6926             16 years old   Male              10th grade   1.60  5.249344
## 6927             15 years old   Male              10th grade   1.85  6.069554
## 6928             16 years old   Male              10th grade   1.65  5.413386
## 6929             15 years old   Male               9th grade   1.60  5.249344
## 6930             17 years old   Male              11th grade   1.85  6.069554
## 6931             16 years old Female              11th grade   1.60  5.249344
## 6932             16 years old   Male              10th grade   1.68  5.511811
## 6933    18 years old or older   Male              12th grade     NA        NA
## 6934             17 years old   Male              11th grade   1.85  6.069554
## 6935             16 years old Female              10th grade   1.63  5.347769
## 6936             17 years old   Male              11th grade   1.78  5.839895
## 6937             17 years old Female              11th grade   1.57  5.150919
## 6938             14 years old   Male               9th grade   1.85  6.069554
## 6939             15 years old Female              10th grade   1.68  5.511811
## 6940             17 years old   Male              11th grade   1.78  5.839895
## 6941             15 years old Female              10th grade     NA        NA
## 6942             16 years old   Male              11th grade   1.78  5.839895
## 6943             15 years old Female              10th grade   1.50  4.921260
## 6944             17 years old   Male              11th grade   1.75  5.741470
## 6945             14 years old Female               9th grade   1.65  5.413386
## 6946    18 years old or older   Male              12th grade   1.85  6.069554
## 6947             16 years old   Male              11th grade   1.70  5.577428
## 6948             16 years old Female              11th grade   1.55  5.085302
## 6949             16 years old Female              11th grade   1.63  5.347769
## 6950             16 years old Female              10th grade   1.65  5.413386
## 6951             16 years old Female              10th grade   1.70  5.577428
## 6952             15 years old   Male              10th grade   1.70  5.577428
## 6953             16 years old Female              11th grade     NA        NA
## 6954             15 years old   Male               9th grade   1.80  5.905512
## 6955             16 years old   Male              10th grade   1.85  6.069554
## 6956             15 years old Female              10th grade   1.70  5.577428
## 6957             16 years old   Male              11th grade   1.83  6.003937
## 6958             14 years old   Male               9th grade   1.73  5.675853
## 6959             16 years old Female              10th grade   1.73  5.675853
## 6960             16 years old Female              10th grade   1.68  5.511811
## 6961             17 years old Female              12th grade   1.60  5.249344
## 6962             14 years old Female               9th grade   1.65  5.413386
## 6963             16 years old Female              10th grade   1.75  5.741470
## 6964             15 years old   Male               9th grade   1.68  5.511811
## 6965             16 years old Female              11th grade   1.60  5.249344
## 6966             16 years old Female              11th grade   1.60  5.249344
## 6967             15 years old   Male              10th grade   1.70  5.577428
## 6968             16 years old   Male              10th grade   1.70  5.577428
## 6969             14 years old Female               9th grade   1.65  5.413386
## 6970             14 years old Female              10th grade   1.70  5.577428
## 6971             16 years old   Male              11th grade   1.78  5.839895
## 6972             17 years old Female              11th grade   1.68  5.511811
## 6973             15 years old Female               9th grade   1.70  5.577428
## 6974             16 years old   Male              10th grade   1.78  5.839895
## 6975             16 years old Female              10th grade   1.68  5.511811
## 6976             15 years old Female              10th grade   1.63  5.347769
## 6977             16 years old   Male              11th grade   1.75  5.741470
## 6978    18 years old or older Female              12th grade   1.63  5.347769
## 6979             15 years old   Male               9th grade   1.75  5.741470
## 6980             16 years old Female              10th grade     NA        NA
## 6981             16 years old   Male              10th grade   1.78  5.839895
## 6982             16 years old Female              10th grade     NA        NA
## 6983             16 years old Female              11th grade   1.57  5.150919
## 6984             16 years old Female              11th grade   1.65  5.413386
## 6985             14 years old Female               9th grade   1.65  5.413386
## 6986             17 years old Female              11th grade   1.60  5.249344
## 6987             16 years old Female              10th grade   1.63  5.347769
## 6988             17 years old Female              11th grade   1.65  5.413386
## 6989             15 years old   Male               9th grade   1.65  5.413386
## 6990             17 years old Female              11th grade   1.73  5.675853
## 6991             16 years old Female              10th grade   1.65  5.413386
## 6992             16 years old Female              10th grade   1.57  5.150919
## 6993             16 years old Female              10th grade     NA        NA
## 6994             15 years old Female              10th grade   1.78  5.839895
## 6995             15 years old   Male               9th grade   1.73  5.675853
## 6996             17 years old   Male              11th grade   1.65  5.413386
## 6997             16 years old Female              11th grade   1.75  5.741470
## 6998             17 years old   Male              11th grade   1.78  5.839895
## 6999             14 years old   Male               9th grade   1.83  6.003937
## 7000             17 years old   Male              11th grade   1.70  5.577428
## 7001    18 years old or older Female              12th grade   1.60  5.249344
## 7002             17 years old Female              11th grade   1.57  5.150919
## 7003             14 years old Female               9th grade   1.65  5.413386
## 7004             16 years old Female              10th grade   1.60  5.249344
## 7005             16 years old Female              11th grade   1.63  5.347769
## 7006             17 years old Female              11th grade   1.50  4.921260
## 7007             16 years old Female              10th grade   1.60  5.249344
## 7008             15 years old   Male              10th grade   1.75  5.741470
## 7009             16 years old   Male              11th grade   1.88  6.167979
## 7010             17 years old   Male              11th grade   1.68  5.511811
## 7011             16 years old Female              11th grade   1.65  5.413386
## 7012             17 years old Female              11th grade   1.70  5.577428
## 7013             15 years old Female              10th grade   1.57  5.150919
## 7014             16 years old Female              10th grade   1.63  5.347769
## 7015             14 years old Female               9th grade   1.60  5.249344
## 7016             15 years old Female              10th grade   1.52  4.986877
## 7017             17 years old Female              11th grade     NA        NA
## 7018             17 years old Female              11th grade   1.55  5.085302
## 7019             16 years old Female              10th grade   1.50  4.921260
## 7020             14 years old Female               9th grade   1.60  5.249344
## 7021             16 years old Female              11th grade   1.60  5.249344
## 7022             16 years old Female              11th grade   1.63  5.347769
## 7023             15 years old Female              10th grade     NA        NA
## 7024             15 years old   Male              10th grade   1.83  6.003937
## 7025             15 years old Female               9th grade   1.52  4.986877
## 7026             16 years old   Male              11th grade   1.83  6.003937
## 7027             15 years old Female              10th grade   1.60  5.249344
## 7028             16 years old Female              11th grade   1.65  5.413386
## 7029             14 years old   Male               9th grade   1.78  5.839895
## 7030             16 years old Female              11th grade   1.73  5.675853
## 7031             16 years old Female              11th grade   1.65  5.413386
## 7032             17 years old Female              11th grade   1.63  5.347769
## 7033             17 years old   Male              12th grade   1.70  5.577428
## 7034             15 years old Female               9th grade   1.68  5.511811
## 7035             15 years old Female              10th grade   1.73  5.675853
## 7036             13 years old Female               9th grade   1.60  5.249344
## 7037             16 years old   Male              10th grade   1.88  6.167979
## 7038             14 years old   Male               9th grade   1.80  5.905512
## 7039             14 years old Female               9th grade   1.60  5.249344
## 7040             14 years old   Male               9th grade   1.68  5.511811
## 7041             15 years old Female              10th grade   1.68  5.511811
## 7042             14 years old Female               9th grade   1.68  5.511811
## 7043             17 years old Female              11th grade   1.75  5.741470
## 7044             15 years old Female               9th grade   1.70  5.577428
## 7045             15 years old Female              10th grade   1.68  5.511811
## 7046             14 years old Female               9th grade   1.73  5.675853
## 7047             16 years old Female              10th grade   1.63  5.347769
## 7048             15 years old Female               9th grade   1.65  5.413386
## 7049             16 years old   Male              10th grade     NA        NA
## 7050             15 years old   Male               9th grade   1.75  5.741470
## 7051             16 years old   Male              11th grade   1.73  5.675853
## 7052             14 years old Female               9th grade     NA        NA
## 7053             14 years old Female               9th grade   1.57  5.150919
## 7054             15 years old Female               9th grade   1.60  5.249344
## 7055             16 years old   Male              10th grade   1.73  5.675853
## 7056             14 years old   Male               9th grade   1.90  6.233596
## 7057             16 years old Female              10th grade     NA        NA
## 7058             15 years old   Male               9th grade   1.75  5.741470
## 7059             17 years old Female              11th grade   1.60  5.249344
## 7060             15 years old Female               9th grade   1.75  5.741470
## 7061             15 years old   Male               9th grade   1.70  5.577428
## 7062             14 years old   Male               9th grade   1.73  5.675853
## 7063             16 years old Female              11th grade   1.65  5.413386
## 7064             14 years old Female               9th grade   1.63  5.347769
## 7065             16 years old   Male              11th grade   1.75  5.741470
## 7066             14 years old   Male               9th grade   1.68  5.511811
## 7067             15 years old   Male              10th grade   1.85  6.069554
## 7068             15 years old Female               9th grade   1.60  5.249344
## 7069             15 years old   Male              10th grade   1.90  6.233596
## 7070             15 years old Female              10th grade   1.60  5.249344
## 7071             15 years old   Male               9th grade   1.73  5.675853
## 7072             16 years old   Male              11th grade   1.73  5.675853
## 7073             15 years old Female               9th grade   1.60  5.249344
## 7074             16 years old   Male              10th grade   1.88  6.167979
## 7075             14 years old Female               9th grade   1.45  4.757218
## 7076             14 years old Female               9th grade   1.73  5.675853
## 7077             15 years old Female               9th grade   1.60  5.249344
## 7078             17 years old   Male              11th grade   1.78  5.839895
## 7079             16 years old   Male              10th grade   1.90  6.233596
## 7080             17 years old   Male              12th grade   1.65  5.413386
## 7081             15 years old Female              10th grade   1.65  5.413386
## 7082             14 years old Female               9th grade   1.65  5.413386
## 7083             17 years old   Male              11th grade   1.85  6.069554
## 7084             17 years old Female              12th grade   1.68  5.511811
## 7085             16 years old   Male              10th grade   1.75  5.741470
## 7086             14 years old   Male               9th grade   1.65  5.413386
## 7087             17 years old   Male              11th grade   1.73  5.675853
## 7088    18 years old or older   Male              12th grade   1.73  5.675853
## 7089             16 years old Female              10th grade     NA        NA
## 7090             17 years old Female              12th grade   1.75  5.741470
## 7091             16 years old Female              10th grade   1.70  5.577428
## 7092             14 years old Female               9th grade   1.63  5.347769
## 7093    18 years old or older   Male              12th grade   1.78  5.839895
## 7094             15 years old Female              10th grade     NA        NA
## 7095             14 years old   Male               9th grade   1.70  5.577428
## 7096    18 years old or older   Male              12th grade   1.78  5.839895
## 7097             15 years old   Male              10th grade   1.75  5.741470
## 7098             14 years old Female               9th grade   1.65  5.413386
## 7099             17 years old Female              11th grade     NA        NA
## 7100             16 years old Female              10th grade     NA        NA
## 7101             14 years old   Male               9th grade   1.75  5.741470
## 7102             16 years old   Male              11th grade   1.80  5.905512
## 7103             17 years old   Male              12th grade   1.57  5.150919
## 7104             16 years old Female              10th grade   1.65  5.413386
## 7105             14 years old   Male               9th grade   1.63  5.347769
## 7106             17 years old Female              12th grade   1.55  5.085302
## 7107             15 years old Female              10th grade   1.63  5.347769
## 7108             17 years old   Male              12th grade   1.75  5.741470
## 7109             14 years old   Male               9th grade   1.60  5.249344
## 7110             16 years old   Male              11th grade   1.83  6.003937
## 7111             17 years old   Male              12th grade   1.75  5.741470
## 7112             16 years old   Male              10th grade     NA        NA
## 7113             16 years old Female              11th grade   1.57  5.150919
## 7114             17 years old   Male              12th grade   1.75  5.741470
## 7115             16 years old   Male              10th grade   1.70  5.577428
## 7116             15 years old Female               9th grade   1.63  5.347769
## 7117             17 years old   Male              12th grade   1.78  5.839895
## 7118             16 years old Female              10th grade     NA        NA
## 7119             15 years old   Male               9th grade   1.65  5.413386
## 7120    18 years old or older   Male              12th grade   1.63  5.347769
## 7121             16 years old   Male              10th grade   1.83  6.003937
## 7122             15 years old Female               9th grade   1.57  5.150919
## 7123             15 years old   Male              10th grade   1.65  5.413386
## 7124             14 years old Female               9th grade   1.65  5.413386
## 7125             17 years old   Male              11th grade   1.88  6.167979
## 7126             17 years old   Male              12th grade   1.68  5.511811
## 7127             15 years old   Male              10th grade   1.70  5.577428
## 7128             15 years old Female               9th grade   1.68  5.511811
## 7129             15 years old   Male              10th grade   1.63  5.347769
## 7130             15 years old Female               9th grade   1.55  5.085302
## 7131    18 years old or older   Male              12th grade   1.68  5.511811
## 7132             16 years old   Male              10th grade   1.60  5.249344
## 7133             15 years old   Male               9th grade   1.68  5.511811
## 7134             16 years old   Male              11th grade     NA        NA
## 7135    18 years old or older   Male              12th grade   1.70  5.577428
## 7136             16 years old Female              10th grade   1.70  5.577428
## 7137             15 years old Female               9th grade   1.75  5.741470
## 7138             17 years old   Male              12th grade   1.75  5.741470
## 7139             17 years old Female              12th grade   1.63  5.347769
## 7140             16 years old Female              10th grade   1.70  5.577428
## 7141             15 years old Female               9th grade   1.60  5.249344
## 7142             16 years old   Male              10th grade   1.70  5.577428
## 7143             15 years old Female               9th grade   1.60  5.249344
## 7144             17 years old   Male              11th grade   1.73  5.675853
## 7145             16 years old   Male              10th grade   1.65  5.413386
## 7146             14 years old   Male               9th grade   1.68  5.511811
## 7147             15 years old Female              10th grade   1.68  5.511811
## 7148             15 years old   Male               9th grade   1.73  5.675853
## 7149             16 years old   Male              11th grade   1.90  6.233596
## 7150    18 years old or older   Male              12th grade   1.78  5.839895
## 7151             15 years old   Male              10th grade   1.78  5.839895
## 7152             14 years old   Male               9th grade   1.70  5.577428
## 7153             17 years old Female              11th grade   1.73  5.675853
## 7154             17 years old   Male              12th grade   1.83  6.003937
## 7155             16 years old   Male              10th grade   1.88  6.167979
## 7156             14 years old   Male               9th grade   1.68  5.511811
## 7157             17 years old   Male              12th grade   1.75  5.741470
## 7158    18 years old or older   Male              12th grade   1.80  5.905512
## 7159             16 years old Female              10th grade   1.57  5.150919
## 7160             15 years old Female               9th grade   1.68  5.511811
## 7161             16 years old   Male              11th grade   1.75  5.741470
## 7162    18 years old or older   Male              12th grade   1.78  5.839895
## 7163             16 years old   Male              11th grade   1.70  5.577428
## 7164             15 years old   Male               9th grade   1.65  5.413386
## 7165    18 years old or older   Male              12th grade   1.75  5.741470
## 7166             17 years old   Male              12th grade   1.73  5.675853
## 7167             16 years old   Male              10th grade   1.78  5.839895
## 7168             15 years old   Male               9th grade   1.65  5.413386
## 7169    18 years old or older   Male              12th grade   1.75  5.741470
## 7170    18 years old or older   Male              12th grade   1.78  5.839895
## 7171             15 years old Female               9th grade   1.55  5.085302
## 7172             17 years old   Male              12th grade   1.85  6.069554
## 7173    18 years old or older   Male              12th grade   1.83  6.003937
## 7174             15 years old   Male              10th grade   1.83  6.003937
## 7175             15 years old   Male               9th grade   1.88  6.167979
## 7176    18 years old or older   Male              12th grade   1.70  5.577428
## 7177             17 years old Female              12th grade   1.60  5.249344
## 7178             17 years old   Male              11th grade   1.80  5.905512
## 7179             17 years old   Male              12th grade   1.83  6.003937
## 7180             14 years old   Male               9th grade   1.73  5.675853
## 7181             16 years old   Male              11th grade   1.80  5.905512
## 7182             15 years old   Male               9th grade   1.57  5.150919
## 7183             16 years old   Male              11th grade   1.93  6.332021
## 7184             15 years old Female              10th grade   1.68  5.511811
## 7185             15 years old   Male               9th grade   1.70  5.577428
## 7186             15 years old Female               9th grade   1.65  5.413386
## 7187             14 years old Female               9th grade   1.63  5.347769
## 7188             15 years old   Male               9th grade   1.70  5.577428
## 7189             14 years old   Male               9th grade   1.68  5.511811
## 7190             16 years old Female              10th grade   1.60  5.249344
## 7191             15 years old Female               9th grade   1.70  5.577428
## 7192             14 years old Female               9th grade   1.57  5.150919
## 7193             15 years old Female              10th grade     NA        NA
## 7194             14 years old Female               9th grade   1.68  5.511811
## 7195             14 years old   Male               9th grade   1.55  5.085302
## 7196             15 years old Female               9th grade   1.60  5.249344
## 7197             15 years old   Male               9th grade   1.80  5.905512
## 7198             17 years old   Male              12th grade   1.80  5.905512
## 7199             15 years old Female              10th grade   1.68  5.511811
## 7200             15 years old Female               9th grade   1.57  5.150919
## 7201             15 years old   Male               9th grade   1.78  5.839895
## 7202             15 years old   Male               9th grade   1.75  5.741470
## 7203             15 years old   Male               9th grade   1.60  5.249344
## 7204             17 years old   Male              11th grade   1.85  6.069554
## 7205             15 years old Female               9th grade   1.65  5.413386
## 7206             16 years old   Male              10th grade   1.75  5.741470
## 7207             17 years old   Male              11th grade   1.85  6.069554
## 7208    18 years old or older   Male              12th grade   1.73  5.675853
## 7209             15 years old   Male               9th grade   1.65  5.413386
## 7210             15 years old Female              10th grade   1.60  5.249344
## 7211             15 years old   Male              10th grade   1.35  4.429134
## 7212             17 years old   Male              11th grade   1.65  5.413386
## 7213             14 years old   Male               9th grade   1.52  4.986877
## 7214             16 years old   Male              10th grade   1.90  6.233596
## 7215             16 years old   Male              11th grade   1.70  5.577428
## 7216             17 years old   Male              12th grade   1.73  5.675853
## 7217    18 years old or older   Male              12th grade   1.88  6.167979
## 7218             14 years old   Male               9th grade   1.70  5.577428
## 7219    18 years old or older   Male              12th grade   1.68  5.511811
## 7220             16 years old Female               9th grade   1.65  5.413386
## 7221             17 years old   Male              11th grade   1.70  5.577428
## 7222             15 years old   Male               9th grade   1.70  5.577428
## 7223             15 years old   Male              10th grade   1.83  6.003937
## 7224    18 years old or older   Male              12th grade   1.70  5.577428
## 7225             16 years old   Male              10th grade     NA        NA
## 7226             15 years old Female               9th grade   1.52  4.986877
## 7227             16 years old   Male              10th grade   1.65  5.413386
## 7228             16 years old   Male              11th grade   1.70  5.577428
## 7229             16 years old   Male              11th grade   1.83  6.003937
## 7230             17 years old   Male              11th grade   1.88  6.167979
## 7231             16 years old   Male              10th grade   1.88  6.167979
## 7232             14 years old   Male               9th grade   1.68  5.511811
## 7233             16 years old   Male              10th grade   1.80  5.905512
## 7234             17 years old   Male              12th grade   1.70  5.577428
## 7235             17 years old   Male              12th grade   1.83  6.003937
## 7236             15 years old Female              10th grade   1.63  5.347769
## 7237    18 years old or older   Male              11th grade   1.70  5.577428
## 7238    18 years old or older   Male              11th grade   1.60  5.249344
## 7239             15 years old   Male              10th grade   1.78  5.839895
## 7240             15 years old Female              10th grade   1.70  5.577428
## 7241             15 years old Female              10th grade   1.57  5.150919
## 7242             15 years old Female              10th grade   1.57  5.150919
## 7243             16 years old   Male              10th grade   1.65  5.413386
## 7244             15 years old Female              10th grade   1.55  5.085302
## 7245             14 years old   Male               9th grade   1.68  5.511811
## 7246             16 years old Female              10th grade   1.68  5.511811
## 7247             15 years old Female               9th grade   1.57  5.150919
## 7248             14 years old Female               9th grade   1.55  5.085302
## 7249             15 years old Female               9th grade   1.68  5.511811
## 7250             17 years old   Male              12th grade   1.85  6.069554
## 7251             17 years old Female              11th grade   1.63  5.347769
## 7252             16 years old Female              11th grade     NA        NA
## 7253             15 years old Female               9th grade   1.52  4.986877
## 7254             15 years old   Male               9th grade   1.78  5.839895
## 7255             16 years old Female              11th grade   1.35  4.429134
## 7256             17 years old   Male              11th grade   1.78  5.839895
## 7257             15 years old   Male               9th grade   1.65  5.413386
## 7258    18 years old or older   Male              12th grade   1.75  5.741470
## 7259             17 years old   Male              11th grade   1.73  5.675853
## 7260             17 years old Female              11th grade   1.63  5.347769
## 7261             15 years old Female               9th grade   1.60  5.249344
## 7262             15 years old   Male               9th grade   1.75  5.741470
## 7263             17 years old Female              12th grade   1.52  4.986877
## 7264             15 years old   Male               9th grade   1.75  5.741470
## 7265             15 years old Female               9th grade   1.73  5.675853
## 7266    18 years old or older Female              12th grade   1.60  5.249344
## 7267             16 years old Female              11th grade   1.68  5.511811
## 7268             17 years old Female              11th grade   1.83  6.003937
## 7269             15 years old   Male               9th grade   1.83  6.003937
## 7270             14 years old   Male               9th grade   1.78  5.839895
## 7271    18 years old or older Female              12th grade   1.78  5.839895
## 7272             16 years old Female              11th grade   1.55  5.085302
## 7273    18 years old or older Female              11th grade     NA        NA
## 7274             15 years old   Male               9th grade   1.70  5.577428
## 7275             15 years old Female               9th grade   1.50  4.921260
## 7276    18 years old or older   Male              12th grade   1.80  5.905512
## 7277             17 years old Female              11th grade   1.55  5.085302
## 7278             17 years old Female              11th grade     NA        NA
## 7279             15 years old   Male               9th grade   1.65  5.413386
## 7280             15 years old   Male               9th grade   1.80  5.905512
## 7281    18 years old or older Female              12th grade   1.40  4.593176
## 7282             14 years old Female               9th grade   1.60  5.249344
## 7283             15 years old Female               9th grade   1.68  5.511811
## 7284             14 years old   Male               9th grade   1.73  5.675853
## 7285    18 years old or older Female              12th grade   1.63  5.347769
## 7286             17 years old Female              11th grade   1.60  5.249344
## 7287             14 years old   Male               9th grade   1.68  5.511811
## 7288             15 years old   Male               9th grade   1.60  5.249344
## 7289    18 years old or older Female              12th grade   1.65  5.413386
## 7290             17 years old   Male              11th grade   1.70  5.577428
## 7291             15 years old Female               9th grade   1.57  5.150919
## 7292             15 years old   Male               9th grade   1.65  5.413386
## 7293    18 years old or older   Male              12th grade   1.80  5.905512
## 7294             17 years old Female              11th grade   1.60  5.249344
## 7295             15 years old Female               9th grade   1.65  5.413386
## 7296             14 years old Female               9th grade   1.55  5.085302
## 7297             17 years old   Male              12th grade   1.96  6.430446
## 7298             16 years old   Male              11th grade   1.80  5.905512
## 7299             16 years old   Male              11th grade   1.75  5.741470
## 7300             14 years old Female               9th grade   1.65  5.413386
## 7301             14 years old   Male               9th grade   1.70  5.577428
## 7302             17 years old   Male              12th grade   1.73  5.675853
## 7303             17 years old Female              11th grade   1.68  5.511811
## 7304             14 years old   Male               9th grade   1.78  5.839895
## 7305             16 years old Female              10th grade   1.65  5.413386
## 7306    18 years old or older   Male              12th grade   1.83  6.003937
## 7307             16 years old Female              11th grade   1.55  5.085302
## 7308             16 years old   Male              10th grade   1.88  6.167979
## 7309             16 years old   Male              11th grade   1.45  4.757218
## 7310             14 years old   Male               9th grade   1.78  5.839895
## 7311    18 years old or older Female              12th grade   1.57  5.150919
## 7312             16 years old Female              11th grade   1.57  5.150919
## 7313             16 years old   Male              10th grade   1.70  5.577428
## 7314             15 years old Female              10th grade   1.68  5.511811
## 7315             15 years old Female              10th grade   1.50  4.921260
## 7316             15 years old   Male              10th grade   1.75  5.741470
## 7317             15 years old Female               9th grade     NA        NA
## 7318             17 years old   Male              12th grade   1.70  5.577428
## 7319             17 years old   Male              11th grade   1.78  5.839895
## 7320             15 years old Female              10th grade   1.75  5.741470
## 7321             15 years old Female               9th grade   1.63  5.347769
## 7322    18 years old or older   Male              12th grade   1.70  5.577428
## 7323             17 years old   Male              11th grade   1.78  5.839895
## 7324    18 years old or older   <NA>              12th grade     NA        NA
## 7325             15 years old Female              10th grade   1.63  5.347769
## 7326             14 years old Female               9th grade   1.50  4.921260
## 7327             17 years old   Male              12th grade   1.83  6.003937
## 7328             14 years old   <NA>               9th grade     NA        NA
## 7329             17 years old   Male              12th grade   1.70  5.577428
## 7330             15 years old Female              10th grade   1.60  5.249344
## 7331             15 years old   Male              10th grade   1.80  5.905512
## 7332             15 years old   Male               9th grade   1.73  5.675853
## 7333             17 years old   Male              12th grade   1.70  5.577428
## 7334             14 years old   Male               9th grade   1.78  5.839895
## 7335             16 years old   Male              10th grade   1.73  5.675853
## 7336             15 years old   Male              10th grade   1.80  5.905512
## 7337             14 years old Female               9th grade   1.65  5.413386
## 7338             17 years old Female              12th grade   1.60  5.249344
## 7339             15 years old   Male               9th grade   1.98  6.496063
## 7340             17 years old   Male              12th grade   1.93  6.332021
## 7341             16 years old Female              10th grade   1.50  4.921260
## 7342             17 years old Female              10th grade   1.73  5.675853
## 7343             15 years old   Male               9th grade   1.80  5.905512
## 7344             17 years old   Male              12th grade   1.88  6.167979
## 7345             15 years old Female               9th grade   1.60  5.249344
## 7346             17 years old Female              11th grade   1.52  4.986877
## 7347             17 years old Female              12th grade   1.55  5.085302
## 7348             17 years old   Male              10th grade     NA        NA
## 7349             15 years old Female              10th grade   1.57  5.150919
## 7350             15 years old   Male               9th grade   1.68  5.511811
## 7351    18 years old or older Female              12th grade   1.63  5.347769
## 7352             15 years old   Male               9th grade   1.75  5.741470
## 7353             16 years old   Male              11th grade   1.80  5.905512
## 7354             17 years old Female              12th grade   1.63  5.347769
## 7355             15 years old   Male              10th grade   1.78  5.839895
## 7356             16 years old Female              10th grade   1.65  5.413386
## 7357             15 years old   Male               9th grade   1.78  5.839895
## 7358    18 years old or older Female              12th grade   1.57  5.150919
## 7359    18 years old or older   Male              12th grade   1.80  5.905512
## 7360             16 years old Female              11th grade   1.65  5.413386
## 7361             15 years old Female              10th grade   1.65  5.413386
## 7362             15 years old Female              10th grade   1.68  5.511811
## 7363             16 years old   Male               9th grade   1.83  6.003937
## 7364    18 years old or older Female              12th grade   1.50  4.921260
## 7365             15 years old Female               9th grade   1.70  5.577428
## 7366             17 years old   Male              11th grade   1.78  5.839895
## 7367    18 years old or older Female              12th grade   1.70  5.577428
## 7368             16 years old   Male              11th grade   1.60  5.249344
## 7369             15 years old   Male              10th grade   1.75  5.741470
## 7370             15 years old Female              10th grade   1.52  4.986877
## 7371             16 years old   Male               9th grade     NA        NA
## 7372             16 years old   Male              11th grade   1.73  5.675853
## 7373    18 years old or older   Male              12th grade   1.80  5.905512
## 7374             16 years old Female              10th grade   1.63  5.347769
## 7375             16 years old   Male              10th grade   1.75  5.741470
## 7376             14 years old   Male               9th grade   1.75  5.741470
## 7377    18 years old or older Female              12th grade   1.63  5.347769
## 7378             17 years old Female              11th grade   1.65  5.413386
## 7379             17 years old   Male              12th grade   1.70  5.577428
## 7380             15 years old   Male              10th grade   1.78  5.839895
## 7381             16 years old Female              10th grade   1.68  5.511811
## 7382             15 years old Female               9th grade     NA        NA
## 7383             17 years old Female              12th grade   1.78  5.839895
## 7384             15 years old   Male               9th grade   1.73  5.675853
## 7385             17 years old   Male              11th grade   1.75  5.741470
## 7386             17 years old Female              12th grade   1.55  5.085302
## 7387             17 years old   Male              11th grade   1.70  5.577428
## 7388             13 years old   Male               9th grade   1.75  5.741470
## 7389             17 years old Female              12th grade   1.55  5.085302
## 7390             15 years old   Male               9th grade   1.73  5.675853
## 7391             16 years old   Male               9th grade   1.88  6.167979
## 7392             17 years old Female              11th grade   1.68  5.511811
## 7393             17 years old Female              12th grade   1.65  5.413386
## 7394             15 years old   Male               9th grade     NA        NA
## 7395             17 years old Female              12th grade   1.55  5.085302
## 7396             14 years old Female               9th grade   1.78  5.839895
## 7397             17 years old   Male              11th grade   1.85  6.069554
## 7398    18 years old or older   Male              12th grade   1.83  6.003937
## 7399             16 years old Female              10th grade   1.68  5.511811
## 7400             16 years old Female              10th grade   1.50  4.921260
## 7401             16 years old   Male               9th grade   1.73  5.675853
## 7402             17 years old   Male              12th grade   1.83  6.003937
## 7403             16 years old   Male              11th grade   1.75  5.741470
## 7404             16 years old Female              10th grade   1.60  5.249344
## 7405             15 years old Female              10th grade   1.70  5.577428
## 7406             14 years old   Male               9th grade   1.85  6.069554
## 7407             16 years old   Male              11th grade   1.80  5.905512
## 7408    18 years old or older   Male              12th grade   1.70  5.577428
## 7409             15 years old Female               9th grade   1.88  6.167979
## 7410             16 years old   Male               9th grade   1.70  5.577428
## 7411             17 years old Female              12th grade   1.55  5.085302
## 7412             15 years old Female               9th grade   1.73  5.675853
## 7413    18 years old or older   Male              12th grade   1.75  5.741470
## 7414             17 years old   Male              11th grade   1.83  6.003937
## 7415             16 years old   Male              10th grade   1.83  6.003937
## 7416             15 years old Female              10th grade   1.70  5.577428
## 7417             14 years old   Male               9th grade   1.73  5.675853
## 7418             15 years old Female               9th grade   1.63  5.347769
## 7419             16 years old Female              10th grade   1.57  5.150919
## 7420             17 years old   Male              12th grade   1.75  5.741470
## 7421             16 years old Female              10th grade   1.60  5.249344
## 7422             17 years old   Male              12th grade   1.78  5.839895
## 7423             15 years old Female               9th grade   1.52  4.986877
## 7424             17 years old   Male              12th grade   1.80  5.905512
## 7425             16 years old Female              10th grade   1.63  5.347769
## 7426             15 years old   Male              10th grade   1.85  6.069554
## 7427             14 years old   Male               9th grade   1.83  6.003937
## 7428    18 years old or older Female              12th grade   1.60  5.249344
## 7429    18 years old or older   Male              11th grade   1.70  5.577428
## 7430             17 years old Female              12th grade   1.63  5.347769
## 7431             16 years old   Male              10th grade   1.83  6.003937
## 7432             15 years old   Male              10th grade   1.83  6.003937
## 7433             15 years old   Male               9th grade   1.70  5.577428
## 7434             17 years old   Male              12th grade   1.75  5.741470
## 7435             14 years old Female               9th grade   1.52  4.986877
## 7436             15 years old   Male               9th grade   1.63  5.347769
## 7437             15 years old   Male              10th grade     NA        NA
## 7438             17 years old Female              10th grade   1.73  5.675853
## 7439             16 years old Female              10th grade   1.52  4.986877
## 7440             16 years old Female              10th grade     NA        NA
## 7441             16 years old   Male              10th grade   1.70  5.577428
## 7442    18 years old or older Female              12th grade   1.57  5.150919
## 7443             17 years old   Male              12th grade   1.75  5.741470
## 7444    18 years old or older   Male              12th grade   1.78  5.839895
## 7445             17 years old Female              12th grade   1.63  5.347769
## 7446             16 years old Female              10th grade   1.60  5.249344
## 7447             17 years old Female              11th grade   1.63  5.347769
## 7448             16 years old   Male              10th grade   1.75  5.741470
## 7449             16 years old Female              11th grade   1.70  5.577428
## 7450             16 years old   Male              10th grade   1.68  5.511811
## 7451             16 years old   Male              11th grade   1.78  5.839895
## 7452             16 years old   Male              11th grade   1.96  6.430446
## 7453             15 years old Female              10th grade     NA        NA
## 7454             17 years old   Male              11th grade   1.78  5.839895
## 7455             17 years old   Male              11th grade   1.60  5.249344
## 7456             15 years old   Male              10th grade     NA        NA
## 7457             16 years old   Male              11th grade   1.68  5.511811
## 7458             17 years old   Male              11th grade   1.70  5.577428
## 7459             16 years old Female              10th grade   1.63  5.347769
## 7460             16 years old Female              11th grade   1.63  5.347769
## 7461             17 years old   Male              10th grade   1.80  5.905512
## 7462             17 years old Female              11th grade   1.70  5.577428
## 7463             17 years old   Male              11th grade   1.96  6.430446
## 7464             17 years old   <NA>              11th grade     NA        NA
## 7465             17 years old   Male              11th grade   1.80  5.905512
## 7466             17 years old   Male              11th grade     NA        NA
## 7467             16 years old   Male              10th grade   1.78  5.839895
## 7468             17 years old Female              11th grade   1.68  5.511811
## 7469             17 years old   <NA>              11th grade     NA        NA
## 7470             17 years old Female              11th grade   1.68  5.511811
## 7471             17 years old   Male              11th grade   1.65  5.413386
## 7472             17 years old Female              11th grade   1.63  5.347769
## 7473             16 years old   Male              11th grade   1.73  5.675853
## 7474    18 years old or older   Male              12th grade   1.65  5.413386
## 7475             14 years old   Male               9th grade   1.65  5.413386
## 7476             17 years old Female              12th grade   1.60  5.249344
## 7477             15 years old   Male               9th grade   1.85  6.069554
## 7478             17 years old   Male              12th grade   1.80  5.905512
## 7479             16 years old Female               9th grade   1.52  4.986877
## 7480             16 years old Female               9th grade   1.57  5.150919
## 7481             17 years old   Male              12th grade   1.96  6.430446
## 7482             15 years old Female               9th grade   1.57  5.150919
## 7483             15 years old Female               9th grade     NA        NA
## 7484    18 years old or older Female              12th grade   1.57  5.150919
## 7485             16 years old Female               9th grade   1.60  5.249344
## 7486    18 years old or older   Male              12th grade   1.68  5.511811
## 7487    18 years old or older Female              12th grade   1.52  4.986877
## 7488             15 years old   Male               9th grade   1.65  5.413386
## 7489             14 years old   Male               9th grade   1.75  5.741470
## 7490             17 years old Female              12th grade   1.63  5.347769
## 7491             17 years old Female              12th grade   1.52  4.986877
## 7492                     <NA>   Male               9th grade     NA        NA
## 7493             17 years old Female              12th grade   1.55  5.085302
## 7494    18 years old or older Female              12th grade   1.60  5.249344
## 7495             15 years old   Male               9th grade   1.68  5.511811
## 7496             17 years old   Male              12th grade   1.85  6.069554
## 7497             17 years old Female              12th grade   1.80  5.905512
## 7498             14 years old   Male               9th grade   1.85  6.069554
## 7499    18 years old or older   Male              12th grade   1.85  6.069554
## 7500    18 years old or older   Male              12th grade   1.73  5.675853
## 7501             15 years old   Male               9th grade   1.80  5.905512
## 7502             15 years old Female               9th grade   1.57  5.150919
## 7503             17 years old Female              12th grade   1.70  5.577428
## 7504             16 years old   Male              10th grade   1.78  5.839895
## 7505             17 years old   Male              12th grade   1.78  5.839895
## 7506             17 years old Female              12th grade   1.63  5.347769
## 7507             15 years old   Male              10th grade   1.75  5.741470
## 7508             17 years old Female              12th grade   1.57  5.150919
## 7509    18 years old or older   Male              12th grade   1.80  5.905512
## 7510             17 years old Female              12th grade   1.60  5.249344
## 7511             16 years old   Male              11th grade   1.70  5.577428
## 7512             16 years old Female              11th grade   1.68  5.511811
## 7513             16 years old Female              11th grade   1.68  5.511811
## 7514    18 years old or older   Male              12th grade   1.88  6.167979
## 7515             17 years old   Male              11th grade   1.60  5.249344
## 7516             15 years old Female              10th grade   1.63  5.347769
## 7517             17 years old   Male              12th grade   1.75  5.741470
## 7518             17 years old Female              11th grade   1.65  5.413386
## 7519    18 years old or older   Male              12th grade   1.73  5.675853
## 7520             15 years old   Male              10th grade   1.90  6.233596
## 7521             15 years old Female              10th grade   1.75  5.741470
## 7522             15 years old Female               9th grade   1.73  5.675853
## 7523             16 years old Female              11th grade   1.70  5.577428
## 7524    18 years old or older Female              12th grade   1.57  5.150919
## 7525             16 years old Female              11th grade   1.83  6.003937
## 7526    18 years old or older Female              12th grade   1.70  5.577428
## 7527             16 years old Female              11th grade     NA        NA
## 7528    18 years old or older Female              12th grade   1.63  5.347769
## 7529             17 years old   Male              12th grade   1.70  5.577428
## 7530             16 years old   Male              11th grade   1.88  6.167979
## 7531             16 years old Female              10th grade   1.60  5.249344
## 7532             17 years old Female              11th grade   1.68  5.511811
## 7533             14 years old Female               9th grade     NA        NA
## 7534             15 years old Female              10th grade   1.60  5.249344
## 7535             16 years old   Male              10th grade   1.70  5.577428
## 7536             17 years old Female              11th grade   1.70  5.577428
## 7537             15 years old   Male              10th grade   1.65  5.413386
## 7538    18 years old or older   Male              12th grade   2.01  6.594488
## 7539             16 years old   Male              11th grade   1.70  5.577428
## 7540    18 years old or older   Male              12th grade   1.83  6.003937
## 7541    18 years old or older Female              12th grade   1.68  5.511811
## 7542             17 years old Female              12th grade   1.63  5.347769
## 7543             15 years old   Male              10th grade   1.90  6.233596
## 7544             15 years old   Male              10th grade   1.80  5.905512
## 7545             16 years old   Male              11th grade   1.70  5.577428
## 7546             14 years old Female               9th grade   1.60  5.249344
## 7547             16 years old   Male              11th grade   1.83  6.003937
## 7548             17 years old Female              12th grade   1.63  5.347769
## 7549             16 years old Female              11th grade   1.60  5.249344
## 7550             16 years old   Male              10th grade   1.80  5.905512
## 7551             15 years old Female              10th grade     NA        NA
## 7552             16 years old   Male              11th grade   1.85  6.069554
## 7553    18 years old or older   Male              12th grade   1.88  6.167979
## 7554             14 years old   Male               9th grade   1.75  5.741470
## 7555             15 years old Female              10th grade     NA        NA
## 7556             14 years old   Male               9th grade   1.73  5.675853
## 7557             15 years old   Male              10th grade   1.80  5.905512
## 7558    18 years old or older Female              12th grade   1.57  5.150919
## 7559             14 years old Female               9th grade   1.47  4.822835
## 7560             16 years old Female              10th grade   1.68  5.511811
## 7561             15 years old   Male               9th grade   1.78  5.839895
## 7562             15 years old   Male              10th grade   1.88  6.167979
## 7563             15 years old Female               9th grade   1.65  5.413386
## 7564             16 years old   Male              10th grade   1.85  6.069554
## 7565             17 years old   Male              11th grade   1.90  6.233596
## 7566    18 years old or older   Male              12th grade   1.65  5.413386
## 7567             15 years old Female               9th grade   1.68  5.511811
## 7568             17 years old Female              10th grade   1.55  5.085302
## 7569             17 years old   Male              11th grade   1.93  6.332021
## 7570             15 years old   Male               9th grade   1.80  5.905512
## 7571             16 years old   Male              10th grade   1.73  5.675853
## 7572             16 years old   Male              11th grade   1.75  5.741470
## 7573    18 years old or older   Male              12th grade   1.80  5.905512
## 7574             14 years old   Male               9th grade   1.73  5.675853
## 7575             15 years old   Male              10th grade   1.88  6.167979
## 7576             16 years old Female              11th grade   1.70  5.577428
## 7577    18 years old or older   Male              12th grade   1.88  6.167979
## 7578             14 years old   Male               9th grade   1.63  5.347769
## 7579             15 years old Female              10th grade     NA        NA
## 7580             16 years old Female              11th grade   1.70  5.577428
## 7581             17 years old   Male              12th grade   1.65  5.413386
## 7582             15 years old   Male               9th grade   1.75  5.741470
## 7583             16 years old Female              10th grade   1.65  5.413386
## 7584    18 years old or older Female              12th grade   1.55  5.085302
## 7585             16 years old Female               9th grade   1.57  5.150919
## 7586             16 years old   Male              10th grade   1.90  6.233596
## 7587             17 years old   Male              11th grade   1.75  5.741470
## 7588             17 years old Female              12th grade   1.63  5.347769
## 7589             16 years old Female               9th grade   1.55  5.085302
## 7590             15 years old   Male              10th grade   1.90  6.233596
## 7591             17 years old   Male              11th grade   1.75  5.741470
## 7592             15 years old Female               9th grade   1.60  5.249344
## 7593             15 years old   Male               9th grade     NA        NA
## 7594             16 years old Female              10th grade   1.55  5.085302
## 7595             17 years old   Male              11th grade   1.75  5.741470
## 7596    18 years old or older   Male              12th grade   1.70  5.577428
## 7597             14 years old Female               9th grade   1.60  5.249344
## 7598             16 years old   Male              10th grade   1.80  5.905512
## 7599             16 years old Female              10th grade   1.73  5.675853
## 7600             17 years old   Male              11th grade   1.75  5.741470
## 7601             17 years old   Male              12th grade   1.80  5.905512
## 7602             16 years old   Male              10th grade   1.68  5.511811
## 7603             17 years old Female              11th grade   1.45  4.757218
## 7604    18 years old or older   Male              12th grade   1.80  5.905512
## 7605             15 years old   Male               9th grade   1.60  5.249344
## 7606             16 years old   Male              10th grade   1.68  5.511811
## 7607             15 years old   Male               9th grade   1.75  5.741470
## 7608             16 years old   Male              10th grade   1.85  6.069554
## 7609             14 years old Female               9th grade   1.55  5.085302
## 7610             16 years old   Male              10th grade   1.83  6.003937
## 7611             17 years old   Male              11th grade   1.90  6.233596
## 7612             14 years old Female               9th grade   1.57  5.150919
## 7613             14 years old Female               9th grade   1.60  5.249344
## 7614             16 years old   Male              10th grade   1.83  6.003937
## 7615    18 years old or older   Male              12th grade   1.78  5.839895
## 7616             15 years old Female               9th grade   1.68  5.511811
## 7617             14 years old Female               9th grade   1.70  5.577428
## 7618             16 years old Female              10th grade   1.65  5.413386
## 7619             17 years old   Male              11th grade   1.73  5.675853
## 7620    18 years old or older   Male              12th grade   1.75  5.741470
## 7621             15 years old   Male               9th grade   1.63  5.347769
## 7622             15 years old Female               9th grade   1.57  5.150919
## 7623             15 years old   Male               9th grade   1.78  5.839895
## 7624             16 years old Female              10th grade   1.63  5.347769
## 7625             17 years old Female              11th grade   1.63  5.347769
## 7626    18 years old or older   Male              12th grade   1.83  6.003937
## 7627             14 years old   Male               9th grade   1.60  5.249344
## 7628             15 years old   Male               9th grade   1.73  5.675853
## 7629             15 years old Female               9th grade   1.63  5.347769
## 7630             16 years old Female              10th grade   1.70  5.577428
## 7631             16 years old Female              11th grade   1.60  5.249344
## 7632             17 years old   Male              12th grade   1.83  6.003937
## 7633             15 years old Female               9th grade   1.65  5.413386
## 7634             16 years old Female              10th grade   1.70  5.577428
## 7635             16 years old Female              11th grade   1.65  5.413386
## 7636             17 years old   Male              11th grade   1.75  5.741470
## 7637             15 years old   Male               9th grade   1.78  5.839895
## 7638             15 years old Female               9th grade   1.60  5.249344
## 7639             16 years old   Male              10th grade   1.73  5.675853
## 7640             16 years old   Male              11th grade   1.70  5.577428
## 7641             17 years old   Male              12th grade   1.75  5.741470
## 7642             15 years old Female               9th grade     NA        NA
## 7643             16 years old Female               9th grade   1.70  5.577428
## 7644             16 years old Female              10th grade   1.68  5.511811
## 7645             17 years old Female              11th grade   1.70  5.577428
## 7646             16 years old Female               9th grade   1.68  5.511811
## 7647             16 years old   Male              10th grade   1.80  5.905512
## 7648             16 years old   Male              11th grade   1.73  5.675853
## 7649    18 years old or older Female              12th grade   1.50  4.921260
## 7650             15 years old   Male               9th grade   1.55  5.085302
## 7651             15 years old Female              10th grade   1.65  5.413386
## 7652             17 years old Female              11th grade   1.68  5.511811
## 7653             17 years old   Male              12th grade   1.83  6.003937
## 7654             15 years old Female               9th grade   1.68  5.511811
## 7655             16 years old Female              10th grade   1.85  6.069554
## 7656             17 years old Female              11th grade   1.63  5.347769
## 7657    18 years old or older   Male              12th grade   1.78  5.839895
## 7658             15 years old   Male               9th grade   1.78  5.839895
## 7659             16 years old Female              10th grade   1.73  5.675853
## 7660             16 years old Female              11th grade   1.65  5.413386
## 7661             15 years old Female               9th grade   1.55  5.085302
## 7662             15 years old   Male               9th grade   1.85  6.069554
## 7663             16 years old   Male              10th grade   1.80  5.905512
## 7664             17 years old Female              11th grade   1.68  5.511811
## 7665             17 years old   Male              12th grade   1.93  6.332021
## 7666             15 years old Female               9th grade   1.57  5.150919
## 7667             16 years old Female              10th grade   1.78  5.839895
## 7668             16 years old Female              11th grade   1.65  5.413386
## 7669    18 years old or older   Male              12th grade   1.78  5.839895
## 7670             15 years old Female               9th grade   1.75  5.741470
## 7671             16 years old Female              10th grade   1.65  5.413386
## 7672             17 years old   Male              11th grade   1.88  6.167979
## 7673             17 years old   Male              12th grade   1.63  5.347769
## 7674             15 years old   Male               9th grade   1.78  5.839895
## 7675             16 years old Female              10th grade   1.60  5.249344
## 7676             16 years old Female              11th grade   1.75  5.741470
## 7677             17 years old Female              11th grade   1.60  5.249344
## 7678    18 years old or older Female              12th grade   1.65  5.413386
## 7679             17 years old Female              11th grade   1.73  5.675853
## 7680    18 years old or older Female              12th grade   1.57  5.150919
## 7681             15 years old Female               9th grade   1.68  5.511811
## 7682             17 years old Female              10th grade   1.50  4.921260
## 7683             17 years old   Male              12th grade   1.85  6.069554
## 7684             16 years old Female              11th grade   1.65  5.413386
## 7685    18 years old or older   Male              12th grade   1.80  5.905512
## 7686             15 years old   Male               9th grade   1.85  6.069554
## 7687    18 years old or older   Male              12th grade   1.78  5.839895
## 7688             17 years old   Male              11th grade   1.78  5.839895
## 7689             16 years old   Male              10th grade     NA        NA
## 7690    18 years old or older   Male              11th grade   1.80  5.905512
## 7691    18 years old or older Female              12th grade   1.70  5.577428
## 7692             14 years old Female               9th grade   1.65  5.413386
## 7693             16 years old Female              10th grade   1.65  5.413386
## 7694             15 years old Female               9th grade   1.73  5.675853
## 7695             17 years old   Male              11th grade   1.80  5.905512
## 7696             16 years old   Male              11th grade   1.75  5.741470
## 7697    18 years old or older   Male              12th grade   1.70  5.577428
## 7698             14 years old Female               9th grade   1.60  5.249344
## 7699             15 years old Female               9th grade   1.73  5.675853
## 7700             16 years old   Male              10th grade     NA        NA
## 7701             17 years old   Male              11th grade   1.85  6.069554
## 7702             17 years old   Male              12th grade   1.85  6.069554
## 7703    18 years old or older Female              12th grade   1.57  5.150919
## 7704             17 years old Female              11th grade   1.65  5.413386
## 7705             15 years old Female               9th grade   1.57  5.150919
## 7706             16 years old   Male              10th grade   1.68  5.511811
## 7707             17 years old   Male              12th grade   1.70  5.577428
## 7708             15 years old   Male               9th grade   1.68  5.511811
## 7709             17 years old Female              11th grade   1.57  5.150919
## 7710             15 years old   Male               9th grade   1.85  6.069554
## 7711             16 years old Female              10th grade   1.63  5.347769
## 7712    18 years old or older Female              12th grade   1.75  5.741470
## 7713             14 years old   Male               9th grade   1.73  5.675853
## 7714             16 years old   Male              11th grade   1.73  5.675853
## 7715             16 years old Female              10th grade   1.55  5.085302
## 7716             16 years old Female              11th grade   1.57  5.150919
## 7717             15 years old   Male               9th grade   1.70  5.577428
## 7718             16 years old Female              10th grade   1.52  4.986877
## 7719             15 years old Female               9th grade   1.65  5.413386
## 7720             16 years old Female              11th grade   1.70  5.577428
## 7721             17 years old   Male              11th grade   1.70  5.577428
## 7722    18 years old or older   Male              12th grade   1.88  6.167979
## 7723             15 years old   Male               9th grade   1.73  5.675853
## 7724             16 years old   Male              10th grade   1.70  5.577428
## 7725             15 years old   Male               9th grade   1.80  5.905512
## 7726             17 years old Female              11th grade   1.63  5.347769
## 7727             16 years old Female              10th grade   1.65  5.413386
## 7728             16 years old Female              11th grade   1.68  5.511811
## 7729    18 years old or older   Male              12th grade   1.93  6.332021
## 7730             14 years old Female               9th grade   1.63  5.347769
## 7731             17 years old   Male              10th grade   1.70  5.577428
## 7732             16 years old   Male              10th grade   1.85  6.069554
## 7733             17 years old Female              11th grade   1.57  5.150919
## 7734             17 years old Female              12th grade   1.52  4.986877
## 7735             16 years old   Male              10th grade   1.80  5.905512
## 7736    18 years old or older   Male              12th grade   1.65  5.413386
## 7737             14 years old Female               9th grade   1.68  5.511811
## 7738             16 years old Female              11th grade   1.60  5.249344
## 7739             17 years old Female              12th grade   1.57  5.150919
## 7740             14 years old Female               9th grade   1.60  5.249344
## 7741             17 years old   Male              10th grade   1.73  5.675853
## 7742    18 years old or older Female              12th grade   1.65  5.413386
## 7743             15 years old Female               9th grade   1.60  5.249344
## 7744             16 years old Female              11th grade   1.68  5.511811
## 7745             16 years old Female              10th grade   1.63  5.347769
## 7746             17 years old   Male              11th grade   1.83  6.003937
## 7747             17 years old Female              12th grade   1.57  5.150919
## 7748             15 years old   Male               9th grade   1.73  5.675853
## 7749             16 years old Female              10th grade   1.75  5.741470
## 7750             14 years old Female               9th grade   1.68  5.511811
## 7751    18 years old or older Female              11th grade   1.60  5.249344
## 7752             17 years old   Male              11th grade   1.78  5.839895
## 7753             15 years old   Male               9th grade   1.78  5.839895
## 7754             16 years old Female              10th grade   1.60  5.249344
## 7755             15 years old   Male              11th grade   1.78  5.839895
## 7756             15 years old Female               9th grade   1.63  5.347769
## 7757             16 years old Female              10th grade   1.75  5.741470
## 7758    18 years old or older   Male              12th grade   1.83  6.003937
## 7759             17 years old   Male              11th grade     NA        NA
## 7760             15 years old Female               9th grade   1.70  5.577428
## 7761    18 years old or older Female              12th grade   1.60  5.249344
## 7762             15 years old Female               9th grade     NA        NA
## 7763             16 years old Female              11th grade   1.60  5.249344
## 7764             16 years old   Male              10th grade   1.78  5.839895
## 7765             17 years old   Male              11th grade   1.68  5.511811
## 7766             14 years old Female               9th grade   1.68  5.511811
## 7767             17 years old   Male              12th grade   1.85  6.069554
## 7768             17 years old   Male              11th grade   1.57  5.150919
## 7769             17 years old   Male              10th grade   1.80  5.905512
## 7770             17 years old   Male              11th grade   1.78  5.839895
## 7771             17 years old   Male              12th grade   1.75  5.741470
## 7772             14 years old   Male               9th grade   1.80  5.905512
## 7773             15 years old   Male               9th grade   1.83  6.003937
## 7774             15 years old   Male              10th grade   1.65  5.413386
## 7775             17 years old Female              11th grade   1.70  5.577428
## 7776             15 years old Female               9th grade   1.63  5.347769
## 7777             16 years old   Male              10th grade   1.68  5.511811
## 7778             15 years old   Male               9th grade   1.70  5.577428
## 7779             17 years old   Male              11th grade   1.90  6.233596
## 7780             16 years old   Male              10th grade     NA        NA
## 7781             16 years old   Male              11th grade   1.70  5.577428
## 7782    18 years old or older Female              12th grade   1.57  5.150919
## 7783             15 years old   Male               9th grade   1.73  5.675853
## 7784             16 years old   Male              10th grade   1.88  6.167979
## 7785             15 years old   Male               9th grade   1.75  5.741470
## 7786             16 years old   Male              11th grade   1.68  5.511811
## 7787             17 years old   Male              11th grade   1.80  5.905512
## 7788             15 years old Female               9th grade   1.65  5.413386
## 7789             16 years old   Male              10th grade   1.85  6.069554
## 7790    18 years old or older   Male              12th grade   1.75  5.741470
## 7791             17 years old Female              11th grade   1.55  5.085302
## 7792             16 years old   Male              10th grade   1.80  5.905512
## 7793             17 years old   Male              11th grade   1.88  6.167979
## 7794    18 years old or older   Male              12th grade   1.75  5.741470
## 7795             14 years old   Male               9th grade   1.85  6.069554
## 7796             15 years old Female              10th grade   1.70  5.577428
## 7797             17 years old Female              12th grade   1.70  5.577428
## 7798             15 years old   Male               9th grade   1.78  5.839895
## 7799             17 years old   Male              11th grade   1.85  6.069554
## 7800             16 years old   Male              10th grade   1.63  5.347769
## 7801             17 years old   Male              11th grade   1.85  6.069554
## 7802    18 years old or older Female              12th grade   1.52  4.986877
## 7803             14 years old   Male               9th grade   1.80  5.905512
## 7804             16 years old   Male              11th grade   1.83  6.003937
## 7805             16 years old   Male              10th grade   1.65  5.413386
## 7806             17 years old   Male              11th grade   1.83  6.003937
## 7807    18 years old or older   Male              12th grade   1.73  5.675853
## 7808             15 years old   Male               9th grade   1.73  5.675853
## 7809             15 years old   Male              10th grade   1.68  5.511811
## 7810             15 years old Female               9th grade   1.60  5.249344
## 7811             17 years old Female              11th grade     NA        NA
## 7812             16 years old Female              10th grade   1.60  5.249344
## 7813             17 years old   Male              11th grade   1.65  5.413386
## 7814             17 years old   Male              12th grade   1.78  5.839895
## 7815    18 years old or older Female              12th grade   1.45  4.757218
## 7816             16 years old   Male              10th grade   1.63  5.347769
## 7817             14 years old   Male               9th grade   1.65  5.413386
## 7818             17 years old   Male              11th grade   1.68  5.511811
## 7819             17 years old   Male              12th grade   1.70  5.577428
## 7820             15 years old   Male              10th grade   1.73  5.675853
## 7821             16 years old   Male               9th grade   1.73  5.675853
## 7822    18 years old or older Female              12th grade   1.57  5.150919
## 7823             15 years old   Male              10th grade   1.78  5.839895
## 7824             14 years old   Male               9th grade   1.80  5.905512
## 7825             17 years old   Male              11th grade   1.75  5.741470
## 7826             17 years old   Male              12th grade   1.78  5.839895
## 7827             15 years old   Male              10th grade   1.80  5.905512
## 7828             15 years old   Male               9th grade   1.78  5.839895
## 7829             17 years old   Male              11th grade   1.75  5.741470
## 7830    18 years old or older   Male              12th grade   1.73  5.675853
## 7831             15 years old Female              10th grade   1.65  5.413386
## 7832             14 years old Female               9th grade   1.78  5.839895
## 7833             16 years old   Male              11th grade   1.73  5.675853
## 7834             17 years old   Male              12th grade   1.85  6.069554
## 7835             16 years old Female              10th grade   1.57  5.150919
## 7836             15 years old Female               9th grade   1.57  5.150919
## 7837             16 years old   Male              11th grade   1.88  6.167979
## 7838             17 years old Female              11th grade   1.70  5.577428
## 7839             15 years old   Male              10th grade   1.88  6.167979
## 7840             15 years old Female               9th grade   1.65  5.413386
## 7841             17 years old   Male              11th grade   1.80  5.905512
## 7842             17 years old   Male              11th grade   1.75  5.741470
## 7843             16 years old Female              11th grade   1.63  5.347769
## 7844             17 years old   Male              12th grade   1.70  5.577428
## 7845             15 years old Female              10th grade   1.75  5.741470
## 7846             14 years old Female               9th grade   1.55  5.085302
## 7847             16 years old Female              11th grade   1.57  5.150919
## 7848             15 years old Female              10th grade   1.85  6.069554
## 7849             14 years old   Male               9th grade   1.78  5.839895
## 7850             16 years old   Male              11th grade   1.73  5.675853
## 7851             15 years old   Male              10th grade     NA        NA
## 7852             17 years old   Male              11th grade   1.85  6.069554
## 7853             17 years old Female              12th grade   1.63  5.347769
## 7854             16 years old Female              10th grade   1.57  5.150919
## 7855             16 years old   Male               9th grade   1.70  5.577428
## 7856             16 years old Female              11th grade   1.63  5.347769
## 7857             17 years old   Male              12th grade   1.70  5.577428
## 7858             17 years old Female              12th grade   1.68  5.511811
## 7859             16 years old   Male              10th grade   1.78  5.839895
## 7860             14 years old   Male               9th grade   1.70  5.577428
## 7861             17 years old   Male              11th grade   1.75  5.741470
## 7862             17 years old Female              12th grade   1.73  5.675853
## 7863             16 years old   Male              10th grade   1.75  5.741470
## 7864    18 years old or older Female              12th grade   1.65  5.413386
## 7865             17 years old   Male              11th grade   1.88  6.167979
## 7866             17 years old   Male              12th grade   1.70  5.577428
## 7867             16 years old Female              10th grade   1.68  5.511811
## 7868             15 years old   Male               9th grade   1.78  5.839895
## 7869             17 years old Female              11th grade   1.55  5.085302
## 7870             17 years old   Male              12th grade   1.78  5.839895
## 7871             16 years old Female              10th grade   1.68  5.511811
## 7872             14 years old   Male               9th grade   1.68  5.511811
## 7873             17 years old Female              11th grade   1.50  4.921260
## 7874             17 years old Female              12th grade   1.65  5.413386
## 7875             17 years old   Male              12th grade   1.75  5.741470
## 7876             16 years old   Male              10th grade   1.73  5.675853
## 7877             15 years old   Male               9th grade   1.68  5.511811
## 7878             17 years old   Male              11th grade   1.73  5.675853
## 7879             16 years old   Male              10th grade   1.73  5.675853
## 7880             15 years old   Male              10th grade   1.88  6.167979
## 7881             14 years old Female               9th grade   1.55  5.085302
## 7882             16 years old   Male              11th grade   1.73  5.675853
## 7883             17 years old Female              12th grade   1.57  5.150919
## 7884             16 years old Female              10th grade   1.75  5.741470
## 7885             15 years old Female               9th grade   1.52  4.986877
## 7886             17 years old   Male              11th grade   1.75  5.741470
## 7887             17 years old Female              11th grade     NA        NA
## 7888             15 years old Female              10th grade   1.75  5.741470
## 7889             15 years old   Male               9th grade   1.73  5.675853
## 7890             16 years old Female              11th grade   1.73  5.675853
## 7891             17 years old Female              11th grade   1.65  5.413386
## 7892             16 years old   Male              10th grade   1.75  5.741470
## 7893             15 years old Female               9th grade   1.78  5.839895
## 7894             17 years old Female              11th grade   1.57  5.150919
## 7895             15 years old   Male              10th grade   1.70  5.577428
## 7896             14 years old   Male               9th grade   1.70  5.577428
## 7897             15 years old Female               9th grade   1.70  5.577428
## 7898             16 years old Female              11th grade   1.65  5.413386
## 7899             17 years old   Male              11th grade   1.65  5.413386
## 7900             16 years old   Male              10th grade   1.78  5.839895
## 7901             14 years old   Male               9th grade     NA        NA
## 7902             16 years old Female              11th grade   1.63  5.347769
## 7903             17 years old   Male              12th grade   1.75  5.741470
## 7904             15 years old   Male               9th grade   1.80  5.905512
## 7905             16 years old Female              10th grade   1.70  5.577428
## 7906             17 years old   Male              12th grade   1.83  6.003937
## 7907             16 years old Female              10th grade   1.63  5.347769
## 7908             15 years old Female              10th grade   1.57  5.150919
## 7909             16 years old   Male               9th grade   1.85  6.069554
## 7910             17 years old   Male              11th grade   1.80  5.905512
## 7911             16 years old Female              10th grade   1.60  5.249344
## 7912             17 years old Female              12th grade   1.75  5.741470
## 7913             14 years old Female               9th grade   1.63  5.347769
## 7914             17 years old   Male              11th grade   1.73  5.675853
## 7915             14 years old   Male               9th grade   1.65  5.413386
## 7916    18 years old or older Female              11th grade   1.57  5.150919
## 7917             15 years old   Male              10th grade   1.83  6.003937
## 7918             17 years old Female              12th grade   1.75  5.741470
## 7919             15 years old   Male               9th grade   1.75  5.741470
## 7920             17 years old   Male              11th grade   1.70  5.577428
## 7921             17 years old   Male              10th grade   1.52  4.986877
## 7922             15 years old Female               9th grade   1.65  5.413386
## 7923             17 years old   Male              11th grade   1.83  6.003937
## 7924             16 years old   Male              11th grade   1.88  6.167979
## 7925             16 years old   Male              10th grade   1.83  6.003937
## 7926             15 years old   Male               9th grade   1.80  5.905512
## 7927             17 years old   Male              11th grade   1.83  6.003937
## 7928             16 years old Female              10th grade   1.68  5.511811
## 7929    18 years old or older   Male              12th grade   1.88  6.167979
## 7930             14 years old   Male               9th grade   1.68  5.511811
## 7931             17 years old   Male              11th grade   1.83  6.003937
## 7932             15 years old   Male              10th grade     NA        NA
## 7933             15 years old   Male               9th grade   1.98  6.496063
## 7934             16 years old   Male              11th grade   1.63  5.347769
## 7935             16 years old Female              10th grade   1.52  4.986877
## 7936             15 years old   Male               9th grade   1.78  5.839895
## 7937             17 years old   Male              11th grade   1.78  5.839895
## 7938             16 years old   Male              10th grade   1.78  5.839895
## 7939    18 years old or older   Male              12th grade   1.93  6.332021
## 7940             15 years old Female               9th grade   1.68  5.511811
## 7941             16 years old   Male              11th grade   1.83  6.003937
## 7942             16 years old Female              10th grade   1.57  5.150919
## 7943             14 years old Female               9th grade   1.63  5.347769
## 7944             17 years old   Male              11th grade   1.65  5.413386
## 7945             15 years old   Male              10th grade   1.85  6.069554
## 7946             15 years old   Male               9th grade   1.57  5.150919
## 7947             16 years old   Male              11th grade   1.73  5.675853
## 7948             16 years old   Male              10th grade   1.60  5.249344
## 7949    18 years old or older   Male              12th grade   1.70  5.577428
## 7950    18 years old or older   Male              12th grade   1.83  6.003937
## 7951             15 years old   Male               9th grade   1.70  5.577428
## 7952             17 years old Female              11th grade   1.60  5.249344
## 7953             15 years old Female              10th grade   1.57  5.150919
## 7954             15 years old   Male               9th grade   1.68  5.511811
## 7955             17 years old   Male              11th grade   1.80  5.905512
## 7956             17 years old   Male              11th grade   1.78  5.839895
## 7957             16 years old Female              10th grade   1.50  4.921260
## 7958    18 years old or older   Male              12th grade   1.80  5.905512
## 7959             17 years old   Male              12th grade   1.85  6.069554
## 7960             15 years old Female               9th grade   1.63  5.347769
## 7961             15 years old   Male              10th grade   1.88  6.167979
## 7962    18 years old or older Female              12th grade   1.65  5.413386
## 7963             14 years old   Male               9th grade   1.63  5.347769
## 7964    18 years old or older   Male              11th grade   1.80  5.905512
## 7965             15 years old Female              10th grade   1.55  5.085302
## 7966             17 years old   Male              12th grade   1.73  5.675853
## 7967             15 years old Female               9th grade   1.73  5.675853
## 7968  12 years old or younger   Male               9th grade     NA        NA
## 7969             17 years old Female              12th grade   1.80  5.905512
## 7970             15 years old   Male               9th grade   1.70  5.577428
## 7971             16 years old   Male              10th grade   1.80  5.905512
## 7972             16 years old   Male              10th grade   1.85  6.069554
## 7973             15 years old   Male               9th grade   1.75  5.741470
## 7974             16 years old Female              11th grade   1.65  5.413386
## 7975             16 years old Female              10th grade   1.57  5.150919
## 7976             17 years old Female              10th grade   1.63  5.347769
## 7977             16 years old   Male              10th grade   1.60  5.249344
## 7978             17 years old Female              12th grade   1.68  5.511811
## 7979             17 years old   Male              12th grade   1.85  6.069554
## 7980    18 years old or older Female              12th grade   1.63  5.347769
## 7981    18 years old or older Female              12th grade   1.65  5.413386
## 7982    18 years old or older Female              12th grade   1.70  5.577428
## 7983             16 years old Female              11th grade   1.57  5.150919
## 7984             15 years old   Male              10th grade   1.78  5.839895
## 7985             17 years old Female              12th grade   1.63  5.347769
## 7986             15 years old   Male              10th grade   1.78  5.839895
## 7987             17 years old Female              11th grade   1.60  5.249344
## 7988             16 years old Female              10th grade   1.83  6.003937
## 7989             17 years old   Male              12th grade   1.73  5.675853
## 7990    18 years old or older   Male              12th grade   1.88  6.167979
## 7991             15 years old   Male              10th grade   1.90  6.233596
## 7992    18 years old or older   Male              12th grade   1.70  5.577428
## 7993             16 years old   Male              10th grade   1.68  5.511811
## 7994             17 years old   Male              12th grade   1.83  6.003937
## 7995             16 years old Female               9th grade   1.60  5.249344
## 7996    18 years old or older   Male              12th grade   1.83  6.003937
## 7997             17 years old   Male              11th grade   1.83  6.003937
## 7998             17 years old Female              10th grade   1.60  5.249344
## 7999    18 years old or older Female              12th grade   1.63  5.347769
## 8000             17 years old   Male              11th grade   1.73  5.675853
## 8001    18 years old or older   Male              12th grade   1.83  6.003937
## 8002             15 years old Female              10th grade   1.68  5.511811
## 8003             17 years old Female              11th grade   1.52  4.986877
## 8004             15 years old Female              10th grade   1.65  5.413386
## 8005             16 years old Female              11th grade   1.65  5.413386
## 8006             16 years old Female              10th grade   1.37  4.494751
## 8007    18 years old or older Female              12th grade   1.63  5.347769
## 8008             16 years old Female              10th grade   1.57  5.150919
## 8009    18 years old or older Female              12th grade   1.80  5.905512
## 8010             15 years old Female               9th grade   1.45  4.757218
## 8011    18 years old or older   Male              12th grade   1.85  6.069554
## 8012             16 years old   Male               9th grade   1.78  5.839895
## 8013             15 years old Female               9th grade   1.57  5.150919
## 8014    18 years old or older Female              12th grade   1.63  5.347769
## 8015                     <NA>   <NA>                    <NA>     NA        NA
## 8016             16 years old Female               9th grade   1.52  4.986877
## 8017             16 years old Female              11th grade   1.75  5.741470
## 8018             15 years old   Male               9th grade   1.78  5.839895
## 8019    18 years old or older Female              12th grade   1.60  5.249344
## 8020             17 years old   Male              12th grade   1.78  5.839895
## 8021    18 years old or older Female              11th grade   1.73  5.675853
## 8022             17 years old Female              12th grade     NA        NA
## 8023             15 years old   Male               9th grade   1.65  5.413386
## 8024             17 years old   Male              12th grade   1.75  5.741470
## 8025             15 years old   Male               9th grade   1.63  5.347769
## 8026             17 years old Female              11th grade   1.65  5.413386
## 8027             15 years old Female               9th grade   1.70  5.577428
## 8028             16 years old Female              11th grade   1.65  5.413386
## 8029             17 years old Female              11th grade   1.63  5.347769
## 8030             17 years old Female              12th grade   1.63  5.347769
## 8031             15 years old   Male               9th grade     NA        NA
## 8032    18 years old or older   Male              12th grade   1.75  5.741470
## 8033             16 years old   Male              10th grade   1.88  6.167979
## 8034             17 years old Female              11th grade   1.68  5.511811
## 8035             15 years old Female              10th grade   1.57  5.150919
## 8036             16 years old   Male              10th grade   1.80  5.905512
## 8037             15 years old Female              10th grade   1.55  5.085302
## 8038             15 years old   Male              10th grade   1.83  6.003937
## 8039             17 years old Female              11th grade   1.75  5.741470
## 8040             16 years old Female              10th grade   1.60  5.249344
## 8041             16 years old Female              10th grade   1.75  5.741470
## 8042             17 years old Female              12th grade   1.73  5.675853
## 8043             16 years old   Male              10th grade   1.78  5.839895
## 8044    18 years old or older Female              12th grade   1.65  5.413386
## 8045             17 years old Female              10th grade   1.65  5.413386
## 8046             16 years old   Male              10th grade   1.83  6.003937
## 8047             17 years old Female              11th grade   1.57  5.150919
## 8048             16 years old Female              10th grade   1.65  5.413386
## 8049             16 years old   Male              10th grade   1.75  5.741470
## 8050             17 years old   Male              11th grade   1.78  5.839895
## 8051             16 years old   Male              11th grade   1.80  5.905512
## 8052             16 years old Female              10th grade   1.65  5.413386
## 8053             17 years old   Male              11th grade   1.90  6.233596
## 8054             17 years old Female              10th grade   1.57  5.150919
## 8055             16 years old Female               9th grade   1.68  5.511811
## 8056             16 years old Female              10th grade   1.68  5.511811
## 8057             14 years old   Male               9th grade   1.70  5.577428
## 8058             16 years old   Male              11th grade   1.70  5.577428
## 8059    18 years old or older   Male              12th grade   1.78  5.839895
## 8060             14 years old Female               9th grade   1.70  5.577428
## 8061             17 years old Female              11th grade   1.78  5.839895
## 8062             16 years old Female               9th grade   1.60  5.249344
## 8063             17 years old   Male              11th grade   1.83  6.003937
## 8064             17 years old Female              12th grade   1.63  5.347769
## 8065             15 years old   Male               9th grade   1.80  5.905512
## 8066             16 years old   Male              11th grade   1.78  5.839895
## 8067             14 years old   Male               9th grade   1.70  5.577428
## 8068             16 years old Female              11th grade     NA        NA
## 8069             15 years old Female               9th grade   1.65  5.413386
## 8070             16 years old Female              10th grade   1.65  5.413386
## 8071             14 years old Female               9th grade   1.63  5.347769
## 8072             17 years old Female              11th grade   1.65  5.413386
## 8073    18 years old or older Female              12th grade   1.65  5.413386
## 8074             17 years old Female              11th grade   1.73  5.675853
## 8075             15 years old   Male              10th grade   1.57  5.150919
## 8076             16 years old   Male               9th grade     NA        NA
## 8077             15 years old Female              10th grade   1.70  5.577428
## 8078             15 years old   Male               9th grade   1.68  5.511811
## 8079             17 years old   Male              11th grade   1.73  5.675853
## 8080             17 years old Female              12th grade   1.73  5.675853
## 8081             16 years old Female               9th grade     NA        NA
## 8082             17 years old   Male              11th grade   1.88  6.167979
## 8083             15 years old Female               9th grade   1.63  5.347769
## 8084             17 years old   Male              11th grade   1.83  6.003937
## 8085    18 years old or older   Male              12th grade   1.83  6.003937
## 8086             17 years old   Male              11th grade   1.88  6.167979
## 8087             15 years old Female               9th grade   1.68  5.511811
## 8088             17 years old   Male              11th grade   1.73  5.675853
## 8089    18 years old or older   Male              12th grade   1.83  6.003937
## 8090             17 years old   Male              11th grade   1.78  5.839895
## 8091             17 years old   Male              11th grade   1.83  6.003937
## 8092    18 years old or older Female              12th grade   1.55  5.085302
## 8093             16 years old   Male              10th grade   1.80  5.905512
## 8094             15 years old   Male               9th grade   1.80  5.905512
## 8095             16 years old Female              11th grade   1.68  5.511811
## 8096    18 years old or older   Male              12th grade   1.80  5.905512
## 8097             16 years old   Male              10th grade   1.73  5.675853
## 8098             16 years old   Male              10th grade   1.78  5.839895
## 8099             14 years old   Male               9th grade   1.68  5.511811
## 8100             16 years old   Male              10th grade   1.83  6.003937
## 8101             15 years old Female               9th grade   1.52  4.986877
## 8102             16 years old   Male              11th grade   1.70  5.577428
## 8103             17 years old   Male              12th grade   1.78  5.839895
## 8104             16 years old Female              10th grade   1.65  5.413386
## 8105             16 years old Female              10th grade   1.65  5.413386
## 8106             17 years old Female              11th grade   1.57  5.150919
## 8107             17 years old   Male              11th grade   1.90  6.233596
## 8108             14 years old   Male               9th grade   1.68  5.511811
## 8109             17 years old   Male              11th grade     NA        NA
## 8110             15 years old   Male               9th grade   1.68  5.511811
## 8111             14 years old Female               9th grade     NA        NA
## 8112             16 years old Female              10th grade   1.60  5.249344
## 8113             15 years old   Male               9th grade     NA        NA
## 8114    18 years old or older   Male              12th grade   1.75  5.741470
## 8115             14 years old Female               9th grade   1.60  5.249344
## 8116             15 years old Female              10th grade   1.63  5.347769
## 8117             15 years old   Male               9th grade   1.88  6.167979
## 8118             17 years old Female              11th grade   1.57  5.150919
## 8119             17 years old   Male              11th grade   1.80  5.905512
## 8120             15 years old Female               9th grade     NA        NA
## 8121             16 years old Female              11th grade   1.57  5.150919
## 8122             17 years old Female              11th grade   1.65  5.413386
## 8123             17 years old   Male              11th grade   1.70  5.577428
## 8124    18 years old or older   Male              12th grade   1.70  5.577428
## 8125             14 years old Female               9th grade     NA        NA
## 8126             16 years old Female               9th grade     NA        NA
## 8127             16 years old   Male              10th grade   1.83  6.003937
## 8128             15 years old   Male               9th grade   1.78  5.839895
## 8129             15 years old Female               9th grade     NA        NA
## 8130             14 years old Female               9th grade   1.73  5.675853
## 8131             15 years old Female               9th grade     NA        NA
## 8132             15 years old Female              10th grade   1.50  4.921260
## 8133             17 years old   Male              11th grade   1.83  6.003937
## 8134             14 years old   Male               9th grade   1.73  5.675853
## 8135             17 years old Female              11th grade   1.60  5.249344
## 8136             15 years old   Male               9th grade   1.75  5.741470
## 8137             16 years old Female              10th grade   1.55  5.085302
## 8138             15 years old   Male               9th grade   1.85  6.069554
## 8139             16 years old Female              10th grade   1.63  5.347769
## 8140             14 years old   Male               9th grade   1.65  5.413386
## 8141             16 years old Female               9th grade   1.63  5.347769
## 8142             15 years old Female               9th grade   1.55  5.085302
## 8143             16 years old Female              11th grade   1.63  5.347769
## 8144             15 years old Female               9th grade   1.63  5.347769
## 8145             17 years old   Male              12th grade   1.75  5.741470
## 8146             15 years old   Male               9th grade   1.83  6.003937
## 8147    18 years old or older   Male              12th grade   1.73  5.675853
## 8148             15 years old   Male               9th grade   1.80  5.905512
## 8149    18 years old or older   Male              12th grade   1.78  5.839895
## 8150    18 years old or older   Male              12th grade   1.78  5.839895
## 8151             15 years old   Male               9th grade   1.68  5.511811
## 8152    18 years old or older   Male              12th grade   2.01  6.594488
## 8153             15 years old Female               9th grade   1.60  5.249344
## 8154             17 years old   Male              12th grade   1.80  5.905512
## 8155             14 years old Female               9th grade   1.65  5.413386
## 8156             16 years old   Male               9th grade   1.78  5.839895
## 8157    18 years old or older   Male              12th grade   1.83  6.003937
## 8158    18 years old or older   Male              12th grade   1.80  5.905512
## 8159             15 years old   Male               9th grade   1.75  5.741470
## 8160    18 years old or older   Male              12th grade   1.93  6.332021
## 8161             15 years old Female               9th grade   1.50  4.921260
## 8162    18 years old or older   Male              12th grade   1.83  6.003937
## 8163    18 years old or older   Male              12th grade   1.96  6.430446
## 8164             15 years old Female               9th grade   1.63  5.347769
## 8165             17 years old   Male              12th grade   1.85  6.069554
## 8166             14 years old Female               9th grade   1.68  5.511811
## 8167             15 years old Female               9th grade   1.63  5.347769
## 8168             14 years old   Male               9th grade   1.85  6.069554
## 8169             14 years old Female               9th grade   1.63  5.347769
## 8170    18 years old or older Female              12th grade   1.68  5.511811
## 8171             17 years old   Male              12th grade   1.75  5.741470
## 8172    18 years old or older   Male              12th grade   1.83  6.003937
## 8173             14 years old Female               9th grade   1.70  5.577428
## 8174    18 years old or older   Male              12th grade   1.68  5.511811
## 8175             16 years old   Male               9th grade     NA        NA
## 8176    18 years old or older Female              12th grade   1.65  5.413386
## 8177             16 years old Female               9th grade     NA        NA
## 8178    18 years old or older Female              12th grade   1.60  5.249344
## 8179             16 years old   Male               9th grade   1.73  5.675853
## 8180    18 years old or older   Male              12th grade   1.75  5.741470
## 8181             14 years old Female               9th grade   1.63  5.347769
## 8182             17 years old Female              12th grade   1.65  5.413386
## 8183    18 years old or older   Male              12th grade   1.63  5.347769
## 8184             16 years old   Male               9th grade   1.75  5.741470
## 8185             15 years old Female               9th grade   1.70  5.577428
## 8186    18 years old or older   Male              12th grade   1.80  5.905512
## 8187             15 years old Female               9th grade   1.52  4.986877
## 8188    18 years old or older   Male              12th grade   1.80  5.905512
## 8189             15 years old   Male               9th grade   2.01  6.594488
## 8190             17 years old Female              12th grade   1.63  5.347769
## 8191             14 years old Female               9th grade   1.57  5.150919
## 8192             15 years old   Male               9th grade   1.60  5.249344
## 8193             15 years old   Male               9th grade   1.80  5.905512
## 8194    18 years old or older   Male              12th grade   1.88  6.167979
## 8195             14 years old Female               9th grade   1.65  5.413386
## 8196    18 years old or older   Male              12th grade   1.80  5.905512
## 8197             15 years old Female               9th grade   1.55  5.085302
## 8198    18 years old or older   Male              12th grade   1.85  6.069554
## 8199             15 years old   Male               9th grade   1.83  6.003937
## 8200    18 years old or older Female              12th grade   1.63  5.347769
## 8201             15 years old Female               9th grade   1.68  5.511811
## 8202    18 years old or older Female              12th grade   1.65  5.413386
## 8203             15 years old   Male               9th grade   1.83  6.003937
## 8204    18 years old or older Female              12th grade   1.73  5.675853
## 8205             14 years old Female               9th grade   1.65  5.413386
## 8206             17 years old   Male              12th grade   1.90  6.233596
## 8207             14 years old   Male               9th grade   1.78  5.839895
## 8208    18 years old or older   Male              12th grade   1.85  6.069554
## 8209             16 years old   Male              10th grade   1.75  5.741470
## 8210    18 years old or older   Male              12th grade   1.70  5.577428
## 8211    18 years old or older Female              12th grade   1.52  4.986877
## 8212             16 years old Female              11th grade   1.55  5.085302
## 8213             15 years old Female              10th grade   1.63  5.347769
## 8214             16 years old   Male              11th grade   1.78  5.839895
## 8215    18 years old or older Female              12th grade   1.63  5.347769
## 8216             16 years old   Male              11th grade   1.70  5.577428
## 8217             16 years old   Male              10th grade   1.78  5.839895
## 8218             17 years old   Male              11th grade   1.83  6.003937
## 8219             17 years old   Male              12th grade   1.83  6.003937
## 8220             16 years old   Male              11th grade   1.65  5.413386
## 8221    18 years old or older Female              12th grade     NA        NA
## 8222             16 years old   Male              10th grade   1.80  5.905512
## 8223             17 years old   Male              11th grade   1.88  6.167979
## 8224    18 years old or older Female              12th grade   1.55  5.085302
## 8225             17 years old   Male              11th grade   1.70  5.577428
## 8226             16 years old   Male              10th grade   1.83  6.003937
## 8227             17 years old   Male              11th grade   1.85  6.069554
## 8228    18 years old or older Female              12th grade   1.55  5.085302
## 8229             17 years old   Male              11th grade   1.68  5.511811
## 8230    18 years old or older   Male              12th grade   1.80  5.905512
## 8231             16 years old   Male              10th grade   1.75  5.741470
## 8232             15 years old   Male              10th grade   1.78  5.839895
## 8233             17 years old Female              11th grade   1.65  5.413386
## 8234    18 years old or older Female              12th grade   1.65  5.413386
## 8235             17 years old Female              11th grade   1.70  5.577428
## 8236             17 years old Female              12th grade   1.63  5.347769
## 8237             15 years old   Male              10th grade   1.68  5.511811
## 8238             16 years old   Male              10th grade   1.78  5.839895
## 8239             17 years old   Male              11th grade   1.68  5.511811
## 8240    18 years old or older Female              12th grade   1.57  5.150919
## 8241             17 years old   Male              11th grade   1.83  6.003937
## 8242    18 years old or older Female              12th grade   1.70  5.577428
## 8243             17 years old   Male              11th grade   1.88  6.167979
## 8244             16 years old Female              10th grade   1.57  5.150919
## 8245             16 years old Female              11th grade   1.52  4.986877
## 8246    18 years old or older Female              12th grade   1.65  5.413386
## 8247             17 years old   Male              11th grade   1.88  6.167979
## 8248             17 years old Female              12th grade   1.73  5.675853
## 8249             16 years old Female              10th grade   1.60  5.249344
## 8250             17 years old Female              12th grade   1.63  5.347769
## 8251             17 years old Female              11th grade   1.63  5.347769
## 8252             16 years old Female              10th grade   1.70  5.577428
## 8253             17 years old   Male              11th grade   1.78  5.839895
## 8254    18 years old or older   Male              12th grade   1.68  5.511811
## 8255             17 years old Female              11th grade   1.65  5.413386
## 8256             17 years old   Male              12th grade   1.90  6.233596
## 8257             16 years old   Male              10th grade   1.88  6.167979
## 8258    18 years old or older   Male              11th grade   1.68  5.511811
## 8259             17 years old Female              11th grade   1.50  4.921260
## 8260             17 years old Female              11th grade   1.63  5.347769
## 8261    18 years old or older   Male              12th grade   1.70  5.577428
## 8262             15 years old Female              10th grade   1.65  5.413386
## 8263             17 years old Female              11th grade   1.70  5.577428
## 8264             17 years old Female              11th grade   1.63  5.347769
## 8265             15 years old Female              10th grade   1.63  5.347769
## 8266             16 years old   Male              11th grade   1.73  5.675853
## 8267             16 years old Female              11th grade   1.52  4.986877
## 8268    18 years old or older Female              12th grade   1.70  5.577428
## 8269             16 years old   Male              10th grade   1.93  6.332021
## 8270             16 years old   Male              10th grade   1.60  5.249344
## 8271             16 years old Female              11th grade   1.60  5.249344
## 8272             17 years old Female              12th grade   1.63  5.347769
## 8273             17 years old Female              11th grade   1.68  5.511811
## 8274    18 years old or older   Male              12th grade   1.70  5.577428
## 8275             16 years old Female              10th grade   1.68  5.511811
## 8276             16 years old Female              10th grade   1.60  5.249344
## 8277             16 years old Female              11th grade   1.60  5.249344
## 8278    18 years old or older Female              12th grade   1.65  5.413386
## 8279             16 years old   Male              11th grade   1.88  6.167979
## 8280    18 years old or older   Male              12th grade   1.75  5.741470
## 8281             16 years old   Male              10th grade   1.68  5.511811
## 8282    18 years old or older   Male              11th grade   1.68  5.511811
## 8283             17 years old Female              11th grade   1.63  5.347769
## 8284             16 years old   Male              10th grade   1.85  6.069554
## 8285             16 years old   Male              11th grade   1.73  5.675853
## 8286    18 years old or older Female              12th grade   1.52  4.986877
## 8287             16 years old Female              10th grade   1.70  5.577428
## 8288    18 years old or older   Male              11th grade   1.93  6.332021
## 8289             17 years old Female              12th grade   1.63  5.347769
## 8290             16 years old   Male              11th grade   1.88  6.167979
## 8291    18 years old or older   Male              12th grade   1.80  5.905512
## 8292             16 years old Female              10th grade   1.57  5.150919
## 8293             16 years old   Male              10th grade   1.83  6.003937
## 8294             16 years old   Male              11th grade   1.80  5.905512
## 8295             17 years old Female              12th grade   1.57  5.150919
## 8296             16 years old   Male              10th grade   1.83  6.003937
## 8297             16 years old Female              10th grade   1.65  5.413386
## 8298             16 years old Female              11th grade     NA        NA
## 8299             17 years old Female              12th grade   1.70  5.577428
## 8300             15 years old   Male              10th grade   1.75  5.741470
## 8301             16 years old Female              10th grade   1.57  5.150919
## 8302             16 years old Female              11th grade   1.55  5.085302
## 8303    18 years old or older   Male              12th grade   1.68  5.511811
## 8304    18 years old or older   Male              12th grade   1.85  6.069554
## 8305             17 years old Female              11th grade   1.52  4.986877
## 8306             16 years old   Male              10th grade   1.75  5.741470
## 8307    18 years old or older   Male              12th grade   1.88  6.167979
## 8308             17 years old   Male              10th grade   1.70  5.577428
## 8309             17 years old   Male              11th grade   1.83  6.003937
## 8310    18 years old or older Female              12th grade   1.57  5.150919
## 8311             16 years old   Male              10th grade   1.78  5.839895
## 8312             17 years old   Male              12th grade     NA        NA
## 8313    18 years old or older Female              12th grade   1.63  5.347769
## 8314             15 years old Female              10th grade   1.65  5.413386
## 8315             16 years old   Male              10th grade   1.78  5.839895
## 8316    18 years old or older Female              12th grade   1.70  5.577428
## 8317             17 years old Female              11th grade   1.60  5.249344
## 8318             16 years old   Male              11th grade   1.80  5.905512
## 8319             16 years old   Male              10th grade   1.83  6.003937
## 8320             14 years old Female               9th grade   1.57  5.150919
## 8321             17 years old Female              11th grade   1.57  5.150919
## 8322             15 years old Female               9th grade   1.70  5.577428
## 8323             15 years old Female               9th grade   1.73  5.675853
## 8324             15 years old Female              10th grade   1.70  5.577428
## 8325             16 years old Female              10th grade   1.60  5.249344
## 8326             15 years old Female              10th grade     NA        NA
## 8327             15 years old   Male              10th grade   1.60  5.249344
## 8328             16 years old Female              10th grade   1.55  5.085302
## 8329             15 years old Female               9th grade   1.70  5.577428
## 8330             16 years old   Male              10th grade   1.83  6.003937
## 8331             17 years old   Male              11th grade   1.70  5.577428
## 8332             16 years old   Male              10th grade   1.78  5.839895
## 8333             15 years old   Male               9th grade   1.78  5.839895
## 8334             14 years old Female               9th grade   1.65  5.413386
## 8335             17 years old Female              10th grade   1.60  5.249344
## 8336             15 years old Female               9th grade   1.57  5.150919
## 8337             15 years old Female               9th grade   1.68  5.511811
## 8338    18 years old or older   Male              12th grade   1.85  6.069554
## 8339             14 years old Female               9th grade   1.63  5.347769
## 8340             17 years old   Male              11th grade   1.70  5.577428
## 8341             16 years old Female              11th grade   1.57  5.150919
## 8342             15 years old Female               9th grade   1.75  5.741470
## 8343             16 years old Female                    <NA>   1.57  5.150919
## 8344             17 years old   Male              11th grade   1.73  5.675853
## 8345             15 years old Female              10th grade   1.63  5.347769
## 8346             15 years old   Male              10th grade   1.57  5.150919
## 8347             15 years old Female               9th grade     NA        NA
## 8348             15 years old   Male               9th grade   1.83  6.003937
## 8349             16 years old   Male              10th grade   1.83  6.003937
## 8350             16 years old   Male              10th grade   1.83  6.003937
## 8351             16 years old   Male              10th grade   1.73  5.675853
## 8352             16 years old   Male              10th grade   1.78  5.839895
## 8353             17 years old Female              11th grade   1.57  5.150919
## 8354             14 years old Female               9th grade   1.80  5.905512
## 8355             15 years old   Male              10th grade   1.70  5.577428
## 8356             15 years old   Male               9th grade   1.78  5.839895
## 8357             15 years old   Male               9th grade   1.80  5.905512
## 8358             17 years old   Male              10th grade   1.70  5.577428
## 8359             15 years old   Male               9th grade   1.78  5.839895
## 8360             16 years old   Male              10th grade   1.88  6.167979
## 8361             17 years old Female              11th grade   1.63  5.347769
## 8362             16 years old Female              10th grade   1.60  5.249344
## 8363    18 years old or older Female              12th grade   1.63  5.347769
## 8364             14 years old Female               9th grade   1.65  5.413386
## 8365    18 years old or older   Male              12th grade   1.98  6.496063
## 8366             15 years old   Male              10th grade   1.65  5.413386
## 8367             15 years old   Male              10th grade   1.65  5.413386
## 8368    18 years old or older   Male              12th grade   1.80  5.905512
## 8369             16 years old   Male              10th grade   1.83  6.003937
## 8370             17 years old Female              11th grade   1.57  5.150919
## 8371             16 years old Female              11th grade   1.68  5.511811
## 8372             15 years old   Male               9th grade   1.80  5.905512
## 8373             14 years old Female               9th grade   1.60  5.249344
## 8374             15 years old   Male               9th grade   1.83  6.003937
## 8375             15 years old Female               9th grade   1.63  5.347769
## 8376             16 years old Female              11th grade   1.60  5.249344
## 8377             14 years old Female               9th grade   1.68  5.511811
## 8378    18 years old or older Female              12th grade   1.52  4.986877
## 8379             16 years old   Male              10th grade   1.85  6.069554
## 8380             15 years old   Male               9th grade   1.78  5.839895
## 8381             15 years old   Male               9th grade   1.70  5.577428
## 8382             16 years old Female              10th grade   1.57  5.150919
## 8383             15 years old   Male              10th grade   1.80  5.905512
## 8384    18 years old or older Female              12th grade   1.70  5.577428
## 8385             15 years old   Male               9th grade   1.70  5.577428
## 8386             14 years old Female               9th grade   1.68  5.511811
## 8387             16 years old   Male              10th grade   1.83  6.003937
## 8388             15 years old Female               9th grade   1.65  5.413386
## 8389             17 years old   Male              11th grade   1.78  5.839895
## 8390    18 years old or older   Male              11th grade   1.75  5.741470
## 8391             14 years old Female               9th grade   1.65  5.413386
## 8392             17 years old Female              11th grade   1.65  5.413386
## 8393             15 years old Female               9th grade   1.65  5.413386
## 8394             15 years old Female              10th grade   1.60  5.249344
## 8395             15 years old   Male               9th grade   1.80  5.905512
## 8396             17 years old Female              11th grade   1.60  5.249344
## 8397             17 years old Female              11th grade   1.57  5.150919
## 8398             17 years old   Male              12th grade   1.63  5.347769
## 8399             16 years old   Male              11th grade   1.75  5.741470
## 8400             16 years old   Male              10th grade   1.73  5.675853
## 8401             16 years old Female               9th grade   1.57  5.150919
## 8402             17 years old   Male              11th grade   1.70  5.577428
## 8403             17 years old   Male              11th grade   1.88  6.167979
## 8404    18 years old or older Female              12th grade   1.60  5.249344
## 8405             16 years old   Male              10th grade   1.80  5.905512
## 8406             17 years old Female              11th grade   1.60  5.249344
## 8407             16 years old Female              11th grade   1.70  5.577428
## 8408             15 years old Female               9th grade   1.65  5.413386
## 8409             16 years old Female              10th grade   1.55  5.085302
## 8410             14 years old   Male               9th grade   1.80  5.905512
## 8411             16 years old   Male              10th grade   1.70  5.577428
## 8412             14 years old   Male               9th grade   1.88  6.167979
## 8413             14 years old Female               9th grade   1.57  5.150919
## 8414             17 years old Female              10th grade   1.47  4.822835
## 8415             15 years old   Male               9th grade   1.83  6.003937
## 8416             16 years old Female              10th grade   1.57  5.150919
## 8417             16 years old Female              10th grade   1.60  5.249344
## 8418             16 years old   Male Ungraded or other grade     NA        NA
## 8419             15 years old Female               9th grade   1.63  5.347769
## 8420             15 years old   Male               9th grade   1.65  5.413386
## 8421             14 years old Female               9th grade   1.57  5.150919
## 8422             15 years old Female               9th grade   1.63  5.347769
## 8423             17 years old   Male              11th grade   1.75  5.741470
## 8424             16 years old   Male              12th grade     NA        NA
## 8425             16 years old   Male              10th grade   1.88  6.167979
## 8426             16 years old   Male              10th grade   1.78  5.839895
## 8427             15 years old Female               9th grade   1.65  5.413386
## 8428             15 years old   Male              10th grade   1.75  5.741470
## 8429             15 years old   Male               9th grade   1.80  5.905512
## 8430             16 years old Female              10th grade   1.65  5.413386
## 8431             16 years old Female              10th grade   1.73  5.675853
## 8432             17 years old Female              11th grade   1.65  5.413386
## 8433             17 years old Female              11th grade   1.68  5.511811
## 8434             15 years old Female               9th grade   1.63  5.347769
## 8435             16 years old   Male              10th grade   1.75  5.741470
## 8436             15 years old   Male               9th grade   1.73  5.675853
## 8437             15 years old Female              10th grade   1.50  4.921260
## 8438             16 years old   Male              10th grade   1.80  5.905512
## 8439    18 years old or older Female              12th grade   1.75  5.741470
## 8440             15 years old Female               9th grade   1.57  5.150919
## 8441             16 years old   Male              11th grade   1.83  6.003937
## 8442    18 years old or older   Male              12th grade     NA        NA
## 8443             17 years old Female              11th grade   1.52  4.986877
## 8444             15 years old Female              10th grade   1.57  5.150919
## 8445    18 years old or older Female              12th grade   1.68  5.511811
## 8446             17 years old Female              10th grade   1.73  5.675853
## 8447    18 years old or older Female              12th grade   1.68  5.511811
## 8448    18 years old or older   Male              12th grade   1.88  6.167979
## 8449             15 years old Female               9th grade   1.52  4.986877
## 8450             17 years old   Male              11th grade   1.78  5.839895
## 8451    18 years old or older   Male              12th grade   1.73  5.675853
## 8452             17 years old   Male              12th grade   1.83  6.003937
## 8453             16 years old   Male              10th grade   1.83  6.003937
## 8454             16 years old   Male               9th grade   1.73  5.675853
## 8455             15 years old Female               9th grade   1.50  4.921260
## 8456             17 years old   Male              12th grade   1.88  6.167979
## 8457    18 years old or older   Male              11th grade   1.88  6.167979
## 8458    18 years old or older   Male              12th grade   1.90  6.233596
## 8459             15 years old Female               9th grade     NA        NA
## 8460             17 years old   Male              11th grade   1.68  5.511811
## 8461    18 years old or older   Male              12th grade   1.75  5.741470
## 8462             16 years old Female              11th grade   1.55  5.085302
## 8463             17 years old Female              12th grade   1.60  5.249344
## 8464             16 years old   Male              11th grade   1.90  6.233596
## 8465             16 years old Female              11th grade   1.63  5.347769
## 8466             16 years old Female              11th grade   1.73  5.675853
## 8467    18 years old or older Female              12th grade   1.68  5.511811
## 8468             17 years old   Male              11th grade   1.70  5.577428
## 8469    18 years old or older   Male              12th grade   1.75  5.741470
## 8470             16 years old Female              11th grade   1.68  5.511811
## 8471             16 years old Female              10th grade   1.65  5.413386
## 8472             16 years old Female              11th grade   1.65  5.413386
## 8473    18 years old or older   Male              12th grade   1.73  5.675853
## 8474             16 years old Female              10th grade   1.68  5.511811
## 8475             17 years old   Male              11th grade   1.88  6.167979
## 8476    18 years old or older Female              12th grade   1.65  5.413386
## 8477             16 years old   Male              10th grade     NA        NA
## 8478             17 years old   Male              11th grade   1.93  6.332021
## 8479    18 years old or older Female              12th grade   1.60  5.249344
## 8480             15 years old   Male              10th grade   1.70  5.577428
## 8481    18 years old or older   Male              11th grade   1.85  6.069554
## 8482    18 years old or older   Male              12th grade   2.03  6.660105
## 8483             17 years old   Male              10th grade   1.65  5.413386
## 8484             15 years old   Male               9th grade   1.73  5.675853
## 8485             16 years old Female               9th grade     NA        NA
## 8486             16 years old Female              11th grade   1.55  5.085302
## 8487    18 years old or older   Male              12th grade   1.78  5.839895
## 8488             16 years old Female              10th grade   1.73  5.675853
## 8489             16 years old Female               9th grade   1.60  5.249344
## 8490             15 years old Female               9th grade   1.57  5.150919
## 8491             17 years old Female              11th grade   1.68  5.511811
## 8492             17 years old Female              12th grade   1.45  4.757218
## 8493             15 years old   Male               9th grade     NA        NA
## 8494             15 years old   Male               9th grade   1.78  5.839895
## 8495    18 years old or older Female              12th grade   1.70  5.577428
## 8496             16 years old   Male              10th grade     NA        NA
## 8497             15 years old Female               9th grade   1.55  5.085302
## 8498             15 years old Female               9th grade     NA        NA
## 8499    18 years old or older Female              12th grade   1.60  5.249344
## 8500             17 years old   Male              10th grade     NA        NA
## 8501             15 years old   Male               9th grade   1.78  5.839895
## 8502             15 years old   Male               9th grade   1.80  5.905512
## 8503             17 years old Female              11th grade     NA        NA
## 8504    18 years old or older   Male              12th grade   1.70  5.577428
## 8505             16 years old   Male              10th grade   1.83  6.003937
## 8506             16 years old Female              11th grade   1.52  4.986877
## 8507    18 years old or older   Male              12th grade   1.88  6.167979
## 8508             16 years old Female              10th grade   1.78  5.839895
## 8509             17 years old Female              12th grade   1.70  5.577428
## 8510             14 years old Female               9th grade   1.65  5.413386
## 8511             15 years old   Male               9th grade   1.70  5.577428
## 8512             17 years old Female              11th grade   1.65  5.413386
## 8513             16 years old   Male               9th grade   1.83  6.003937
## 8514             15 years old   Male               9th grade     NA        NA
## 8515             17 years old Female              11th grade   1.55  5.085302
## 8516    18 years old or older   Male              12th grade   1.96  6.430446
## 8517             14 years old Female               9th grade   1.73  5.675853
## 8518             15 years old   Male               9th grade   1.73  5.675853
## 8519             17 years old Female              11th grade   1.60  5.249344
## 8520    18 years old or older Female              12th grade   1.68  5.511811
## 8521             15 years old   Male               9th grade   1.65  5.413386
## 8522             17 years old Female              12th grade   1.70  5.577428
## 8523             17 years old   Male              11th grade   1.78  5.839895
## 8524             15 years old   Male               9th grade   1.65  5.413386
## 8525             14 years old   Male               9th grade   1.78  5.839895
## 8526             17 years old Female              11th grade   1.60  5.249344
## 8527    18 years old or older Female              12th grade   1.63  5.347769
## 8528             16 years old   Male              10th grade   1.75  5.741470
## 8529             16 years old   Male               9th grade   1.78  5.839895
## 8530             15 years old   Male               9th grade   1.78  5.839895
## 8531    18 years old or older   Male              12th grade   1.85  6.069554
## 8532             16 years old   Male              10th grade   1.63  5.347769
## 8533             15 years old Female               9th grade   1.60  5.249344
## 8534             16 years old Female              11th grade   1.73  5.675853
## 8535    18 years old or older   Male              12th grade   1.78  5.839895
## 8536             14 years old Female               9th grade   1.80  5.905512
## 8537             15 years old Female               9th grade   1.68  5.511811
## 8538             15 years old   Male               9th grade   1.85  6.069554
## 8539             15 years old   Male               9th grade   1.73  5.675853
## 8540             14 years old Female               9th grade   1.65  5.413386
## 8541             16 years old Female               9th grade   1.60  5.249344
## 8542             15 years old   Male               9th grade   1.80  5.905512
## 8543             15 years old   Male               9th grade   1.75  5.741470
## 8544             15 years old Female               9th grade     NA        NA
## 8545             15 years old   Male               9th grade   1.70  5.577428
## 8546             16 years old Female               9th grade   1.73  5.675853
## 8547             17 years old Female              12th grade   1.57  5.150919
## 8548             16 years old Female              10th grade   1.65  5.413386
## 8549    18 years old or older Female              11th grade   1.68  5.511811
## 8550    18 years old or older   Male              11th grade   1.75  5.741470
## 8551             16 years old Female              11th grade   1.52  4.986877
## 8552    18 years old or older Female              12th grade   1.65  5.413386
## 8553             17 years old Female              10th grade   1.65  5.413386
## 8554    18 years old or older   Male              12th grade   1.88  6.167979
## 8555             16 years old   Male              10th grade   1.78  5.839895
## 8556             17 years old Female              11th grade   1.63  5.347769
## 8557             16 years old   Male               9th grade   1.65  5.413386
## 8558             17 years old   Male              11th grade   1.83  6.003937
## 8559             17 years old   Male              11th grade   1.78  5.839895
## 8560             16 years old Female              10th grade   1.52  4.986877
## 8561    18 years old or older   Male              12th grade   1.75  5.741470
## 8562    18 years old or older   Male              12th grade   1.83  6.003937
## 8563             15 years old Female              10th grade   1.68  5.511811
## 8564             15 years old Female               9th grade   1.60  5.249344
## 8565             16 years old   Male              11th grade   1.88  6.167979
## 8566             16 years old   Male              11th grade   1.83  6.003937
## 8567             16 years old   Male              10th grade   1.73  5.675853
## 8568    18 years old or older Female              12th grade   1.73  5.675853
## 8569             17 years old   Male              10th grade   1.83  6.003937
## 8570             15 years old   Male               9th grade   1.75  5.741470
## 8571             16 years old Female              11th grade   1.75  5.741470
## 8572             17 years old Female              11th grade   1.57  5.150919
## 8573    18 years old or older   Male              12th grade   1.65  5.413386
## 8574             17 years old Female              12th grade   1.57  5.150919
## 8575             17 years old Female              10th grade   1.60  5.249344
## 8576    18 years old or older   Male              12th grade   1.90  6.233596
## 8577             16 years old Female               9th grade   1.50  4.921260
## 8578             17 years old Female              11th grade   1.35  4.429134
## 8579             17 years old   Male              11th grade   1.70  5.577428
## 8580             16 years old   Male              10th grade   1.68  5.511811
## 8581    18 years old or older   Male              12th grade   1.90  6.233596
## 8582    18 years old or older   Male              12th grade   1.88  6.167979
## 8583             17 years old Female              12th grade   1.73  5.675853
## 8584             17 years old Female              11th grade   1.73  5.675853
## 8585             15 years old Female               9th grade   1.65  5.413386
## 8586             16 years old Female              11th grade   1.68  5.511811
## 8587             17 years old Female              11th grade     NA        NA
## 8588             16 years old   Male              10th grade   1.73  5.675853
## 8589    18 years old or older Female              12th grade   1.75  5.741470
## 8590    18 years old or older Female              12th grade   1.73  5.675853
## 8591             16 years old   <NA>              10th grade     NA        NA
## 8592    18 years old or older Female              12th grade   1.60  5.249344
## 8593             16 years old   Male              10th grade   1.80  5.905512
## 8594    18 years old or older   Male              12th grade   1.88  6.167979
## 8595             16 years old Female              10th grade   1.73  5.675853
## 8596             17 years old   Male              12th grade   1.73  5.675853
## 8597             15 years old Female              10th grade   1.60  5.249344
## 8598             17 years old   Male              12th grade   1.93  6.332021
## 8599             17 years old   Male              11th grade   1.73  5.675853
## 8600             14 years old Female               9th grade   1.65  5.413386
## 8601             17 years old   Male              11th grade   1.75  5.741470
## 8602             16 years old   Male               9th grade   1.68  5.511811
## 8603             16 years old   Male              10th grade   1.73  5.675853
## 8604    18 years old or older   Male              12th grade   1.83  6.003937
## 8605    18 years old or older Female              12th grade   1.65  5.413386
## 8606    18 years old or older   Male              12th grade   1.83  6.003937
## 8607    18 years old or older   Male              12th grade   1.83  6.003937
## 8608             15 years old Female               9th grade   1.63  5.347769
## 8609             16 years old   Male              11th grade   1.65  5.413386
## 8610             16 years old Female              11th grade   1.60  5.249344
## 8611    18 years old or older Female              12th grade   1.78  5.839895
## 8612             16 years old   Male               9th grade   1.83  6.003937
## 8613             16 years old Female              11th grade   1.65  5.413386
## 8614             16 years old   Male              11th grade   1.88  6.167979
## 8615    18 years old or older Female              12th grade   1.70  5.577428
## 8616             16 years old Female              11th grade   1.68  5.511811
## 8617             15 years old   Male               9th grade   1.83  6.003937
## 8618             17 years old   Male              11th grade   1.88  6.167979
## 8619             17 years old Female              11th grade   1.73  5.675853
## 8620             16 years old   Male              10th grade   1.73  5.675853
## 8621    18 years old or older Female              12th grade   1.55  5.085302
## 8622    18 years old or older   Male              12th grade   1.73  5.675853
## 8623    18 years old or older Female              11th grade   1.68  5.511811
## 8624             15 years old   Male               9th grade   1.88  6.167979
## 8625             17 years old Female              11th grade   1.60  5.249344
## 8626             16 years old Female              10th grade   1.60  5.249344
## 8627    18 years old or older Female              12th grade   1.63  5.347769
## 8628             17 years old Female              11th grade   1.42  4.658793
## 8629             15 years old   Male               9th grade   1.75  5.741470
## 8630             17 years old   Male              11th grade   1.73  5.675853
## 8631             15 years old Female              10th grade   1.70  5.577428
## 8632    18 years old or older   Male              12th grade   1.80  5.905512
## 8633             15 years old Female               9th grade     NA        NA
## 8634             17 years old   Male              11th grade   1.75  5.741470
## 8635             15 years old Female               9th grade   1.73  5.675853
## 8636             16 years old Female              10th grade   1.65  5.413386
## 8637    18 years old or older   Male              12th grade   1.83  6.003937
## 8638             15 years old Female               9th grade   1.55  5.085302
## 8639             16 years old   Male              11th grade   1.83  6.003937
## 8640             17 years old   Male              11th grade   1.65  5.413386
## 8641             17 years old Female              12th grade   1.73  5.675853
## 8642    18 years old or older Female              12th grade   1.63  5.347769
## 8643             15 years old   Male               9th grade   1.85  6.069554
## 8644    18 years old or older Female              11th grade   1.52  4.986877
## 8645             17 years old Female              10th grade   1.65  5.413386
## 8646             17 years old Female              12th grade   1.73  5.675853
## 8647             17 years old Female              12th grade   1.60  5.249344
## 8648             17 years old   Male              11th grade   1.75  5.741470
## 8649             17 years old Female              11th grade   1.65  5.413386
## 8650             15 years old   Male               9th grade     NA        NA
## 8651             15 years old Female               9th grade     NA        NA
## 8652             15 years old   Male               9th grade   1.75  5.741470
## 8653             15 years old Female               9th grade     NA        NA
## 8654             15 years old Female               9th grade   1.68  5.511811
## 8655             15 years old Female               9th grade   1.63  5.347769
## 8656             15 years old   Male               9th grade   1.73  5.675853
## 8657             15 years old Female               9th grade     NA        NA
## 8658             14 years old   Male               9th grade     NA        NA
## 8659             15 years old   Male               9th grade   1.63  5.347769
## 8660             14 years old Female               9th grade   1.68  5.511811
## 8661             14 years old Female               9th grade   1.60  5.249344
## 8662             15 years old Female               9th grade   1.75  5.741470
## 8663             15 years old   Male               9th grade     NA        NA
## 8664             15 years old Female               9th grade     NA        NA
## 8665             15 years old   Male               9th grade     NA        NA
## 8666             15 years old Female               9th grade   1.68  5.511811
## 8667             15 years old Female               9th grade     NA        NA
## 8668             15 years old Female               9th grade     NA        NA
## 8669             15 years old   Male               9th grade     NA        NA
## 8670             14 years old Female               9th grade   1.63  5.347769
## 8671             15 years old   Male               9th grade   1.50  4.921260
## 8672             15 years old   Male               9th grade     NA        NA
## 8673             15 years old   Male               9th grade   1.55  5.085302
## 8674             15 years old Female               9th grade   1.60  5.249344
## 8675             14 years old   Male               9th grade     NA        NA
## 8676             15 years old Female               9th grade   1.57  5.150919
## 8677             14 years old   Male               9th grade   1.75  5.741470
## 8678             14 years old   Male               9th grade   1.68  5.511811
## 8679             14 years old Female               9th grade   1.60  5.249344
## 8680             15 years old   Male               9th grade   1.73  5.675853
## 8681             15 years old   Male               9th grade   1.83  6.003937
## 8682             15 years old Female               9th grade   1.63  5.347769
## 8683             14 years old   Male               9th grade   1.85  6.069554
## 8684             15 years old Female               9th grade     NA        NA
## 8685             17 years old Female              12th grade   1.70  5.577428
## 8686             17 years old Female              11th grade   1.65  5.413386
## 8687    18 years old or older Female              11th grade     NA        NA
## 8688             16 years old   Male              10th grade     NA        NA
## 8689             16 years old   Male              11th grade   1.75  5.741470
## 8690             17 years old Female              12th grade   1.65  5.413386
## 8691             16 years old Female              11th grade   1.65  5.413386
## 8692             16 years old   Male              10th grade   1.57  5.150919
## 8693             16 years old   Male              11th grade   1.90  6.233596
## 8694             17 years old Female              11th grade   1.63  5.347769
## 8695             17 years old Female              11th grade     NA        NA
## 8696    18 years old or older Female              12th grade   1.65  5.413386
## 8697             15 years old   Male              10th grade   1.73  5.675853
## 8698             17 years old Female              11th grade   1.57  5.150919
## 8699             16 years old Female              10th grade     NA        NA
## 8700             15 years old   Male              10th grade   1.70  5.577428
## 8701             16 years old Female              11th grade   1.60  5.249344
## 8702    18 years old or older Female              12th grade   1.52  4.986877
## 8703             16 years old Female              10th grade   1.63  5.347769
## 8704             16 years old Female              11th grade   1.70  5.577428
## 8705             17 years old Female              12th grade   1.63  5.347769
## 8706             16 years old   Male              10th grade   1.80  5.905512
## 8707             17 years old   Male              11th grade   1.78  5.839895
## 8708             16 years old Female              10th grade   1.52  4.986877
## 8709             16 years old   Male              11th grade   1.68  5.511811
## 8710             17 years old Female              12th grade   1.68  5.511811
## 8711             17 years old Female              11th grade   1.55  5.085302
## 8712             16 years old Female              11th grade   1.63  5.347769
## 8713             15 years old Female              10th grade   1.50  4.921260
## 8714             17 years old Female              11th grade   1.65  5.413386
## 8715             16 years old Female              11th grade   1.68  5.511811
## 8716             17 years old Female              12th grade   1.68  5.511811
## 8717             16 years old Female              10th grade     NA        NA
## 8718             17 years old Female              11th grade   1.70  5.577428
## 8719             15 years old   Male              10th grade   1.78  5.839895
## 8720             17 years old Female              11th grade   1.55  5.085302
## 8721    18 years old or older Female              12th grade   1.52  4.986877
## 8722             16 years old   Male              10th grade   1.83  6.003937
## 8723             17 years old Female              11th grade   1.68  5.511811
## 8724             17 years old   Male              12th grade   1.80  5.905512
## 8725             16 years old   Male              10th grade   1.83  6.003937
## 8726             16 years old Female              11th grade   1.70  5.577428
## 8727             16 years old Female              10th grade   1.70  5.577428
## 8728             17 years old Female              11th grade   1.57  5.150919
## 8729    18 years old or older Female              12th grade     NA        NA
## 8730             15 years old   Male              10th grade   1.83  6.003937
## 8731    18 years old or older   Male              12th grade   1.83  6.003937
## 8732             16 years old   Male              10th grade     NA        NA
## 8733    18 years old or older   Male              12th grade   1.63  5.347769
## 8734             16 years old Female              10th grade   1.78  5.839895
## 8735             17 years old   Male              11th grade   1.73  5.675853
## 8736    18 years old or older   Male              12th grade   1.65  5.413386
## 8737             16 years old   Male              10th grade   1.70  5.577428
## 8738    18 years old or older   Male              12th grade   1.68  5.511811
## 8739             17 years old   Male              11th grade   1.85  6.069554
## 8740    18 years old or older   Male              12th grade   1.78  5.839895
## 8741             17 years old Female              10th grade   1.63  5.347769
## 8742             17 years old   Male              12th grade   1.85  6.069554
## 8743             17 years old   Male              11th grade   1.88  6.167979
## 8744             16 years old   Male              10th grade   1.70  5.577428
## 8745             16 years old   Male              11th grade   1.73  5.675853
## 8746             17 years old Female              12th grade   1.70  5.577428
## 8747             15 years old Female              10th grade     NA        NA
## 8748    18 years old or older Female              12th grade   1.57  5.150919
## 8749             16 years old   Male              11th grade   1.78  5.839895
## 8750             16 years old   Male              10th grade   1.60  5.249344
## 8751             16 years old   Male              11th grade   1.80  5.905512
## 8752             17 years old   Male              12th grade   1.78  5.839895
## 8753             16 years old   Male              10th grade   1.68  5.511811
## 8754    18 years old or older Female              12th grade   1.57  5.150919
## 8755             17 years old Female              11th grade   1.57  5.150919
## 8756             16 years old   Male              10th grade   1.70  5.577428
## 8757             17 years old Female              11th grade   1.60  5.249344
## 8758             15 years old   Male              10th grade   1.80  5.905512
## 8759    18 years old or older Female              12th grade   1.60  5.249344
## 8760             17 years old   Male              11th grade   1.78  5.839895
## 8761             16 years old   Male              10th grade   1.88  6.167979
## 8762             13 years old   Male               9th grade     NA        NA
## 8763             17 years old   Male              12th grade   1.83  6.003937
## 8764             16 years old   Male              10th grade     NA        NA
## 8765    18 years old or older   Male              12th grade   1.83  6.003937
## 8766             17 years old Female              11th grade   1.63  5.347769
## 8767             16 years old Female              10th grade   1.60  5.249344
## 8768             17 years old   Male              11th grade   1.80  5.905512
## 8769             17 years old Female              12th grade   1.63  5.347769
## 8770    18 years old or older   Male              12th grade   1.83  6.003937
## 8771             16 years old   Male              11th grade   1.85  6.069554
## 8772             16 years old   Male              10th grade   1.70  5.577428
## 8773             17 years old   Male              11th grade   1.68  5.511811
## 8774             16 years old   Male              10th grade   1.68  5.511811
## 8775    18 years old or older   Male              12th grade   1.90  6.233596
## 8776             17 years old Female              11th grade   1.70  5.577428
## 8777    18 years old or older   Male              12th grade   1.75  5.741470
## 8778             16 years old Female              10th grade   1.73  5.675853
## 8779             17 years old   Male              12th grade     NA        NA
## 8780             17 years old Female              11th grade   1.57  5.150919
## 8781             16 years old Female              10th grade   1.68  5.511811
## 8782             17 years old Female              11th grade   1.65  5.413386
## 8783             16 years old   Male              10th grade   1.73  5.675853
## 8784    18 years old or older   Male              12th grade   1.85  6.069554
## 8785             17 years old Female              11th grade   1.57  5.150919
## 8786             17 years old Female              12th grade   1.68  5.511811
## 8787             17 years old Female              12th grade   1.57  5.150919
## 8788             16 years old Female              10th grade   1.60  5.249344
## 8789             17 years old Female              12th grade   1.55  5.085302
## 8790             17 years old Female              11th grade   1.57  5.150919
## 8791             17 years old   Male              11th grade   1.85  6.069554
## 8792    18 years old or older   Male              12th grade   1.78  5.839895
## 8793             16 years old Female              10th grade   1.65  5.413386
## 8794    18 years old or older   Male              12th grade   1.73  5.675853
## 8795             17 years old   Male              11th grade   1.70  5.577428
## 8796             16 years old Female              10th grade   1.57  5.150919
## 8797    18 years old or older   Male              12th grade   1.78  5.839895
## 8798             17 years old   <NA>              12th grade     NA        NA
## 8799    18 years old or older Female              12th grade   1.63  5.347769
## 8800    18 years old or older Female              12th grade   1.55  5.085302
## 8801             17 years old Female              12th grade   1.57  5.150919
## 8802             16 years old Female              11th grade   1.60  5.249344
## 8803             17 years old   Male              11th grade   1.68  5.511811
## 8804             17 years old   <NA>              11th grade     NA        NA
## 8805             16 years old   Male              11th grade   1.85  6.069554
## 8806             17 years old Female              11th grade   1.68  5.511811
## 8807             17 years old   Male              11th grade   1.83  6.003937
## 8808             17 years old   Male              11th grade   1.70  5.577428
## 8809             16 years old   Male              11th grade   1.80  5.905512
## 8810    18 years old or older   Male              11th grade   1.80  5.905512
## 8811             16 years old   Male              11th grade   1.90  6.233596
## 8812    18 years old or older Female              11th grade   1.75  5.741470
## 8813             17 years old   Male              11th grade   1.78  5.839895
## 8814             17 years old Female              11th grade   1.73  5.675853
## 8815             17 years old   Male              11th grade   1.85  6.069554
## 8816             15 years old Female               9th grade   1.57  5.150919
## 8817             15 years old Female               9th grade   1.70  5.577428
## 8818             16 years old   Male              10th grade     NA        NA
## 8819             15 years old   Male               9th grade   1.83  6.003937
## 8820             16 years old Female              10th grade   1.75  5.741470
## 8821             16 years old   Male              10th grade   1.80  5.905512
## 8822             16 years old Female              10th grade   1.63  5.347769
## 8823             17 years old   Male              10th grade     NA        NA
## 8824             16 years old   Male               9th grade   1.68  5.511811
## 8825             17 years old   Male              10th grade   1.75  5.741470
## 8826             15 years old Female               9th grade   1.57  5.150919
## 8827             15 years old Female              10th grade   1.60  5.249344
## 8828             15 years old Female              10th grade   1.65  5.413386
## 8829             16 years old Female              10th grade   1.57  5.150919
## 8830             15 years old Female               9th grade   1.63  5.347769
## 8831             16 years old Female              10th grade   1.57  5.150919
## 8832             14 years old Female               9th grade   1.55  5.085302
## 8833             17 years old   Male              10th grade   1.80  5.905512
## 8834             17 years old   Male              11th grade   1.88  6.167979
## 8835             16 years old Female              10th grade   1.73  5.675853
## 8836             14 years old Female               9th grade   1.73  5.675853
## 8837             15 years old Female               9th grade   1.68  5.511811
## 8838             16 years old   Male              10th grade   1.63  5.347769
## 8839             15 years old Female               9th grade   1.60  5.249344
## 8840             16 years old Female              10th grade   1.60  5.249344
## 8841             15 years old Female               9th grade   1.75  5.741470
## 8842             16 years old Female              10th grade   1.63  5.347769
## 8843             14 years old   Male               9th grade   1.70  5.577428
## 8844             17 years old Female              10th grade   1.65  5.413386
## 8845             14 years old   Male               9th grade   1.83  6.003937
## 8846             16 years old Female              10th grade   1.63  5.347769
## 8847             16 years old Female              10th grade   1.63  5.347769
## 8848             17 years old Female              10th grade   1.60  5.249344
## 8849    18 years old or older   Male              12th grade   1.90  6.233596
## 8850             17 years old   Male              11th grade   1.75  5.741470
## 8851    18 years old or older Female              11th grade   1.60  5.249344
## 8852             16 years old Female              11th grade   1.68  5.511811
## 8853             17 years old   Male              11th grade   1.90  6.233596
## 8854             16 years old Female              10th grade   1.60  5.249344
## 8855    18 years old or older   Male              12th grade   1.70  5.577428
## 8856             16 years old   Male              10th grade   1.60  5.249344
## 8857    18 years old or older Female              12th grade   1.70  5.577428
## 8858             15 years old Female              10th grade   1.60  5.249344
## 8859    18 years old or older   Male              11th grade   1.73  5.675853
## 8860             16 years old Female              10th grade   1.75  5.741470
## 8861    18 years old or older Female              12th grade   1.60  5.249344
## 8862             17 years old Female              10th grade   1.78  5.839895
## 8863             17 years old Female              11th grade   1.57  5.150919
## 8864    18 years old or older Female              12th grade   1.68  5.511811
## 8865    18 years old or older Female              11th grade   1.55  5.085302
## 8866             16 years old Female              10th grade   1.57  5.150919
## 8867             17 years old Female              11th grade   1.57  5.150919
## 8868             16 years old   Male              10th grade   1.75  5.741470
## 8869             17 years old Female              11th grade   1.57  5.150919
## 8870             16 years old   Male              10th grade   1.65  5.413386
## 8871             16 years old Female              10th grade   1.63  5.347769
## 8872    18 years old or older Female              12th grade   1.60  5.249344
## 8873             17 years old   Male              11th grade   1.63  5.347769
## 8874             17 years old   Male              10th grade   1.70  5.577428
## 8875             15 years old Female              10th grade   1.57  5.150919
## 8876             16 years old Female              10th grade   1.55  5.085302
## 8877    18 years old or older   Male              12th grade   1.85  6.069554
## 8878             16 years old Female              10th grade   1.55  5.085302
## 8879             16 years old   Male              10th grade   1.83  6.003937
## 8880    18 years old or older   Male              12th grade   1.85  6.069554
## 8881             16 years old   Male              10th grade   1.68  5.511811
## 8882             16 years old   Male              10th grade   1.78  5.839895
## 8883             17 years old Female              11th grade   1.70  5.577428
## 8884             17 years old Female              11th grade   1.78  5.839895
## 8885             17 years old Female              11th grade   1.55  5.085302
## 8886             17 years old Female              11th grade   1.60  5.249344
## 8887             15 years old Female              10th grade   1.65  5.413386
## 8888             16 years old Female              10th grade   1.60  5.249344
## 8889             15 years old   Male               9th grade   1.75  5.741470
## 8890             16 years old Female              11th grade   1.63  5.347769
## 8891             17 years old Female              12th grade   1.57  5.150919
## 8892             14 years old Female               9th grade   1.60  5.249344
## 8893             17 years old Female              11th grade   1.68  5.511811
## 8894             16 years old   Male              10th grade   1.90  6.233596
## 8895             17 years old   Male              10th grade   1.75  5.741470
## 8896             15 years old   Male               9th grade   1.80  5.905512
## 8897             16 years old Female              11th grade   1.73  5.675853
## 8898    18 years old or older   Male              12th grade   1.78  5.839895
## 8899    18 years old or older Female              12th grade   1.68  5.511811
## 8900             15 years old Female               9th grade   1.65  5.413386
## 8901             17 years old Female              11th grade   1.57  5.150919
## 8902             15 years old   Male              10th grade   1.75  5.741470
## 8903             14 years old Female               9th grade   1.63  5.347769
## 8904    18 years old or older   Male              12th grade   1.70  5.577428
## 8905             17 years old   Male              12th grade   1.88  6.167979
## 8906             15 years old Female               9th grade   1.60  5.249344
## 8907             17 years old   Male              11th grade   2.01  6.594488
## 8908             16 years old   Male              10th grade   1.80  5.905512
## 8909             16 years old   Male              10th grade   1.78  5.839895
## 8910             15 years old Female               9th grade   1.63  5.347769
## 8911             17 years old   <NA>              11th grade     NA        NA
## 8912    18 years old or older Female              12th grade   1.60  5.249344
## 8913             15 years old Female               9th grade   1.57  5.150919
## 8914             17 years old Female              11th grade   1.63  5.347769
## 8915             16 years old Female              10th grade   1.70  5.577428
## 8916             16 years old Female              10th grade   1.73  5.675853
## 8917             15 years old Female               9th grade   1.63  5.347769
## 8918             16 years old Female              11th grade   1.68  5.511811
## 8919    18 years old or older Female              12th grade   1.78  5.839895
## 8920             15 years old   Male               9th grade   1.78  5.839895
## 8921             17 years old Female              11th grade   1.70  5.577428
## 8922             15 years old Female              10th grade   1.55  5.085302
## 8923             17 years old   Male              11th grade   1.80  5.905512
## 8924    18 years old or older   Male              12th grade   1.88  6.167979
## 8925             14 years old Female               9th grade   1.70  5.577428
## 8926             17 years old Female              11th grade   1.65  5.413386
## 8927             16 years old Female              10th grade   1.60  5.249344
## 8928             16 years old   Male              10th grade   1.70  5.577428
## 8929             15 years old Female               9th grade   1.63  5.347769
## 8930             17 years old   Male              11th grade   1.83  6.003937
## 8931    18 years old or older Female              12th grade   1.63  5.347769
## 8932    18 years old or older   Male              12th grade   1.75  5.741470
## 8933             17 years old Female              11th grade   1.78  5.839895
## 8934             16 years old Female              10th grade   1.55  5.085302
## 8935             16 years old   Male              10th grade   1.83  6.003937
## 8936             14 years old   Male               9th grade   1.78  5.839895
## 8937             17 years old   Male              11th grade   1.78  5.839895
## 8938             17 years old Female              12th grade   1.68  5.511811
## 8939    18 years old or older   Male              12th grade   1.78  5.839895
## 8940             15 years old   Male               9th grade   1.90  6.233596
## 8941             17 years old   Male              11th grade   1.96  6.430446
## 8942             15 years old   Male              10th grade   1.90  6.233596
## 8943             15 years old Female              10th grade   1.68  5.511811
## 8944             15 years old   Male               9th grade   1.65  5.413386
## 8945    18 years old or older Female              12th grade   1.60  5.249344
## 8946    18 years old or older   Male              12th grade   1.83  6.003937
## 8947             15 years old Female               9th grade   1.52  4.986877
## 8948             17 years old Female              11th grade     NA        NA
## 8949             16 years old Female              10th grade   1.70  5.577428
## 8950             14 years old Female               9th grade   1.60  5.249344
## 8951             15 years old Female              10th grade   1.75  5.741470
## 8952             15 years old Female               9th grade   1.52  4.986877
## 8953    18 years old or older Female              11th grade   1.78  5.839895
## 8954    18 years old or older   Male              12th grade   1.88  6.167979
## 8955             15 years old Female               9th grade   1.65  5.413386
## 8956             17 years old Female              11th grade   1.68  5.511811
## 8957             16 years old Female              10th grade   1.57  5.150919
## 8958             16 years old   Male              10th grade   1.68  5.511811
## 8959             15 years old   Male               9th grade   1.63  5.347769
## 8960             16 years old   Male              11th grade   1.83  6.003937
## 8961             15 years old Female               9th grade   1.63  5.347769
## 8962    18 years old or older Female              11th grade   1.55  5.085302
## 8963             16 years old Female              10th grade   1.57  5.150919
## 8964             15 years old Female              10th grade   1.70  5.577428
## 8965             15 years old   Male               9th grade   1.68  5.511811
## 8966             17 years old Female              11th grade     NA        NA
## 8967             17 years old   Male              12th grade   1.68  5.511811
## 8968    18 years old or older   Male              12th grade   1.80  5.905512
## 8969             15 years old Female               9th grade   1.63  5.347769
## 8970             16 years old Female              10th grade   1.52  4.986877
## 8971             17 years old Female              10th grade   1.57  5.150919
## 8972             16 years old Female               9th grade   1.50  4.921260
## 8973             17 years old   Male              11th grade   1.68  5.511811
## 8974             16 years old Female              11th grade   1.70  5.577428
## 8975             15 years old Female              10th grade   1.60  5.249344
## 8976             17 years old   Male              11th grade   1.83  6.003937
## 8977    18 years old or older   Male              12th grade   1.68  5.511811
## 8978             17 years old   Male              12th grade   1.90  6.233596
## 8979             15 years old   Male               9th grade   1.70  5.577428
## 8980             17 years old   Male              11th grade   1.85  6.069554
## 8981             16 years old Female              10th grade   1.63  5.347769
## 8982             16 years old Female              10th grade   1.75  5.741470
## 8983             14 years old Female               9th grade   1.52  4.986877
## 8984             17 years old Female              11th grade   1.55  5.085302
## 8985             17 years old   Male              12th grade   1.60  5.249344
## 8986             15 years old Female               9th grade   1.60  5.249344
## 8987             17 years old Female              11th grade   1.57  5.150919
## 8988             16 years old Female              10th grade   1.60  5.249344
## 8989             16 years old   Male              10th grade   1.85  6.069554
## 8990             15 years old   Male              10th grade   1.70  5.577428
## 8991             17 years old Female              11th grade   1.63  5.347769
## 8992    18 years old or older Female              12th grade   1.73  5.675853
## 8993    18 years old or older Female              12th grade   1.57  5.150919
## 8994             17 years old   Male              11th grade   1.80  5.905512
## 8995             15 years old Female              10th grade   1.68  5.511811
## 8996             16 years old Female              10th grade   1.60  5.249344
## 8997             15 years old   Male               9th grade   1.75  5.741470
## 8998    18 years old or older   Male              11th grade   1.85  6.069554
## 8999             17 years old   Male              12th grade   1.73  5.675853
## 9000    18 years old or older   Male              12th grade   1.73  5.675853
## 9001             14 years old Female               9th grade     NA        NA
## 9002             16 years old Female              11th grade   1.73  5.675853
## 9003             15 years old Female              10th grade   1.63  5.347769
## 9004             15 years old Female              10th grade   1.73  5.675853
## 9005             15 years old Female               9th grade   1.57  5.150919
## 9006             17 years old   Male              11th grade   1.80  5.905512
## 9007    18 years old or older Female              12th grade   1.63  5.347769
## 9008    18 years old or older Female              12th grade   1.63  5.347769
## 9009             14 years old Female               9th grade   1.60  5.249344
## 9010             17 years old   Male              11th grade   1.73  5.675853
## 9011             16 years old Female              10th grade   1.65  5.413386
## 9012             17 years old   Male              11th grade   1.80  5.905512
## 9013             15 years old Female               9th grade   1.63  5.347769
## 9014             16 years old   Male              11th grade   1.83  6.003937
## 9015    18 years old or older Female              12th grade   1.40  4.593176
## 9016    18 years old or older   Male              12th grade   1.75  5.741470
## 9017             14 years old   Male               9th grade   1.75  5.741470
## 9018             16 years old   Male              11th grade   1.88  6.167979
## 9019             15 years old Female              10th grade   1.63  5.347769
## 9020             15 years old Female              10th grade   1.63  5.347769
## 9021             15 years old   Male               9th grade   1.85  6.069554
## 9022             15 years old   Male               9th grade   1.57  5.150919
## 9023             16 years old   Male              11th grade   1.70  5.577428
## 9024             15 years old Female              10th grade   1.63  5.347769
## 9025             15 years old Female              10th grade   1.73  5.675853
## 9026             15 years old   Male               9th grade   1.65  5.413386
## 9027             17 years old   Male              11th grade   2.03  6.660105
## 9028             17 years old   Male              12th grade   1.73  5.675853
## 9029             17 years old   Male              12th grade   1.83  6.003937
## 9030             16 years old   Male              10th grade   1.75  5.741470
## 9031             16 years old   Male              11th grade   1.78  5.839895
## 9032             17 years old   Male              12th grade   1.85  6.069554
## 9033             17 years old   Male              11th grade   1.83  6.003937
## 9034    18 years old or older Female              12th grade   1.60  5.249344
## 9035    18 years old or older   Male              12th grade   1.83  6.003937
## 9036    18 years old or older   Male              11th grade   1.80  5.905512
## 9037    18 years old or older   Male              12th grade   1.75  5.741470
## 9038    18 years old or older Female              12th grade   1.73  5.675853
## 9039             16 years old Female              11th grade   1.60  5.249344
## 9040             17 years old   Male              12th grade   1.85  6.069554
## 9041    18 years old or older Female              12th grade   1.55  5.085302
## 9042             17 years old   Male              11th grade   1.88  6.167979
## 9043             17 years old Female              12th grade   1.73  5.675853
## 9044    18 years old or older   Male              12th grade     NA        NA
## 9045    18 years old or older   Male              11th grade   1.80  5.905512
## 9046             17 years old   Male              12th grade   1.83  6.003937
## 9047             17 years old Female              12th grade   1.63  5.347769
## 9048             17 years old   Male              12th grade   1.83  6.003937
## 9049             17 years old   Male              11th grade   1.80  5.905512
## 9050    18 years old or older Female              12th grade   1.55  5.085302
## 9051             17 years old Female              11th grade   1.65  5.413386
## 9052    18 years old or older   Male              12th grade   1.80  5.905512
## 9053             17 years old   Male              12th grade   1.83  6.003937
## 9054             16 years old   Male              11th grade   1.78  5.839895
## 9055    18 years old or older Female              12th grade   1.65  5.413386
## 9056    18 years old or older   Male              12th grade   1.78  5.839895
## 9057             17 years old Female              11th grade   1.57  5.150919
## 9058             17 years old Female              12th grade   1.65  5.413386
## 9059             16 years old   Male              11th grade   1.78  5.839895
## 9060    18 years old or older   Male              12th grade   1.90  6.233596
## 9061    18 years old or older Female              12th grade   1.63  5.347769
## 9062             17 years old   Male              11th grade   1.88  6.167979
## 9063    18 years old or older Female              12th grade   1.60  5.249344
## 9064             17 years old Female              11th grade     NA        NA
## 9065             17 years old   Male              12th grade   1.60  5.249344
## 9066             17 years old   Male              12th grade   1.83  6.003937
## 9067    18 years old or older   Male              12th grade   1.90  6.233596
## 9068             17 years old Female              12th grade   1.63  5.347769
## 9069    18 years old or older Female              12th grade   1.57  5.150919
## 9070    18 years old or older   Male              12th grade   1.78  5.839895
## 9071             17 years old   Male              12th grade   1.88  6.167979
## 9072             16 years old Female              10th grade   1.63  5.347769
## 9073             16 years old Female              11th grade   1.63  5.347769
## 9074             15 years old   Male              10th grade   1.85  6.069554
## 9075             15 years old   Male              10th grade   1.70  5.577428
## 9076             15 years old   Male              10th grade   1.70  5.577428
## 9077             17 years old   Male              11th grade   1.90  6.233596
## 9078             15 years old Female              10th grade   1.70  5.577428
## 9079             17 years old Female              11th grade   1.70  5.577428
## 9080             16 years old   Male              10th grade   1.78  5.839895
## 9081             16 years old   Male              10th grade   1.83  6.003937
## 9082             16 years old   Male              10th grade   1.90  6.233596
## 9083             17 years old   Male              11th grade   1.75  5.741470
## 9084             17 years old   Male              11th grade   1.78  5.839895
## 9085    18 years old or older Female              11th grade   1.65  5.413386
## 9086             17 years old Female              10th grade   1.60  5.249344
## 9087             14 years old   Male               9th grade   1.73  5.675853
## 9088             15 years old Female               9th grade   1.55  5.085302
## 9089    18 years old or older   Male              11th grade   1.78  5.839895
## 9090             15 years old   Male              10th grade   1.78  5.839895
## 9091             14 years old Female               9th grade   1.52  4.986877
## 9092             16 years old Female              10th grade   1.55  5.085302
## 9093             17 years old Female              10th grade   1.65  5.413386
## 9094             15 years old Female               9th grade   1.75  5.741470
## 9095             17 years old   Male              11th grade   1.78  5.839895
## 9096             15 years old Female              10th grade   1.75  5.741470
## 9097             15 years old Female               9th grade   1.68  5.511811
## 9098             17 years old Female              11th grade   1.57  5.150919
## 9099             16 years old Female              10th grade   1.57  5.150919
## 9100    18 years old or older   Male              11th grade   1.65  5.413386
## 9101             15 years old   Male              10th grade   1.96  6.430446
## 9102             15 years old Female              10th grade   1.60  5.249344
## 9103             15 years old Female              10th grade   1.60  5.249344
## 9104             16 years old Female              11th grade   1.60  5.249344
## 9105             16 years old Female              10th grade   1.52  4.986877
## 9106             14 years old Female               9th grade   1.70  5.577428
## 9107             17 years old Female              10th grade   1.50  4.921260
## 9108             17 years old   Male              11th grade   1.80  5.905512
## 9109             16 years old Female              10th grade   1.52  4.986877
## 9110             16 years old Female              10th grade   1.60  5.249344
## 9111             16 years old Female              10th grade   1.65  5.413386
## 9112             15 years old   Male               9th grade   1.83  6.003937
## 9113             15 years old   Male               9th grade   1.83  6.003937
## 9114             15 years old Female               9th grade   1.70  5.577428
## 9115             15 years old Female               9th grade   1.52  4.986877
## 9116             14 years old   Male               9th grade   1.65  5.413386
## 9117             15 years old   Male               9th grade   1.65  5.413386
## 9118             15 years old   Male               9th grade   1.83  6.003937
## 9119             14 years old Female               9th grade   1.60  5.249344
## 9120             15 years old   Male               9th grade   1.78  5.839895
## 9121             15 years old   Male               9th grade   1.73  5.675853
## 9122             15 years old   Male               9th grade   1.70  5.577428
## 9123             15 years old Female               9th grade   1.65  5.413386
## 9124             15 years old Female               9th grade   1.60  5.249344
## 9125             16 years old   Male               9th grade   1.75  5.741470
## 9126             16 years old Female               9th grade   1.63  5.347769
## 9127             15 years old   Male               9th grade   1.63  5.347769
## 9128             14 years old Female               9th grade   1.63  5.347769
## 9129             15 years old   Male               9th grade   1.60  5.249344
## 9130             17 years old   Male              11th grade   1.78  5.839895
## 9131             15 years old   Male               9th grade   1.75  5.741470
## 9132             17 years old Female              11th grade   1.63  5.347769
## 9133             17 years old   Male              11th grade   1.63  5.347769
## 9134             16 years old Female              10th grade   1.65  5.413386
## 9135             15 years old   Male               9th grade     NA        NA
## 9136             14 years old Female               9th grade   1.65  5.413386
## 9137             16 years old   Male              11th grade   1.73  5.675853
## 9138    18 years old or older   Male              11th grade   1.80  5.905512
## 9139             16 years old   Male              10th grade   1.80  5.905512
## 9140             16 years old   Male               9th grade   1.80  5.905512
## 9141    18 years old or older Female              11th grade   1.83  6.003937
## 9142             17 years old   Male              10th grade   1.70  5.577428
## 9143             15 years old   Male               9th grade   1.70  5.577428
## 9144             16 years old   Male              10th grade   1.93  6.332021
## 9145             15 years old Female               9th grade   1.63  5.347769
## 9146             15 years old Female               9th grade   1.55  5.085302
## 9147             17 years old Female              11th grade     NA        NA
## 9148             16 years old   Male              10th grade   1.83  6.003937
## 9149             15 years old   Male               9th grade   1.80  5.905512
## 9150             17 years old   Male              10th grade     NA        NA
## 9151             16 years old   Male              10th grade   1.90  6.233596
## 9152             16 years old Female              10th grade   1.63  5.347769
## 9153             14 years old   Male               9th grade   1.57  5.150919
## 9154             16 years old Female               9th grade   1.63  5.347769
## 9155             16 years old Female              11th grade   1.63  5.347769
## 9156             16 years old   Male              10th grade   1.78  5.839895
## 9157             15 years old Female               9th grade   1.68  5.511811
## 9158             17 years old   Male              11th grade   1.83  6.003937
## 9159             15 years old Female               9th grade   1.68  5.511811
## 9160             16 years old   Male              11th grade   1.88  6.167979
## 9161             15 years old Female               9th grade   1.88  6.167979
## 9162    18 years old or older Female              11th grade   1.63  5.347769
## 9163             17 years old   Male              11th grade   1.85  6.069554
## 9164             15 years old Female               9th grade   1.70  5.577428
## 9165             16 years old   Male              11th grade   1.80  5.905512
## 9166             15 years old   Male               9th grade   1.68  5.511811
## 9167             15 years old Female               9th grade   1.55  5.085302
## 9168             17 years old   Male              11th grade   1.80  5.905512
## 9169             16 years old   Male               9th grade   1.80  5.905512
## 9170             17 years old   Male              11th grade   1.70  5.577428
## 9171             15 years old Female               9th grade   1.78  5.839895
## 9172             16 years old Female              11th grade   1.55  5.085302
## 9173             15 years old Female              10th grade   1.63  5.347769
## 9174             15 years old Female               9th grade     NA        NA
## 9175             16 years old Female              11th grade     NA        NA
## 9176             15 years old Female               9th grade   1.57  5.150919
## 9177             17 years old   Male              11th grade   1.78  5.839895
## 9178             16 years old   Male              10th grade   1.78  5.839895
## 9179             17 years old   Male              12th grade     NA        NA
## 9180             17 years old Female              11th grade   1.52  4.986877
## 9181             17 years old Female              11th grade   1.52  4.986877
## 9182             16 years old   Male              10th grade   1.88  6.167979
## 9183             14 years old Female               9th grade   1.57  5.150919
## 9184             17 years old   Male              11th grade   1.90  6.233596
## 9185             14 years old Female               9th grade   1.65  5.413386
## 9186             16 years old   Male              11th grade   1.75  5.741470
## 9187             16 years old Female              11th grade   1.70  5.577428
## 9188             17 years old Female              10th grade   1.75  5.741470
## 9189             14 years old Female               9th grade   1.57  5.150919
## 9190             15 years old   Male              10th grade   1.78  5.839895
## 9191             14 years old Female               9th grade   1.65  5.413386
## 9192             17 years old Female              11th grade   1.57  5.150919
## 9193             15 years old   Male               9th grade   1.78  5.839895
## 9194             15 years old   Male               9th grade   1.78  5.839895
## 9195             14 years old   Male               9th grade   1.75  5.741470
## 9196             16 years old   Male              11th grade   1.93  6.332021
## 9197             17 years old Female              11th grade   1.57  5.150919
## 9198             17 years old   Male              10th grade     NA        NA
## 9199             15 years old Female               9th grade   1.52  4.986877
## 9200             14 years old Female               9th grade   1.70  5.577428
## 9201             16 years old   Male               9th grade   1.85  6.069554
## 9202             14 years old   Male               9th grade   1.80  5.905512
## 9203             17 years old Female              12th grade   1.73  5.675853
## 9204             17 years old   Male              12th grade   1.98  6.496063
## 9205             15 years old   Male              10th grade   1.73  5.675853
## 9206             15 years old Female              10th grade   1.60  5.249344
## 9207             17 years old   Male              12th grade   1.73  5.675853
## 9208    18 years old or older Female              12th grade   1.65  5.413386
## 9209             16 years old   Male              10th grade     NA        NA
## 9210             17 years old   Male              12th grade   1.80  5.905512
## 9211             16 years old   Male              10th grade   1.73  5.675853
## 9212    18 years old or older Female              12th grade   1.63  5.347769
## 9213             15 years old Female              10th grade   1.65  5.413386
## 9214             15 years old   Male              10th grade   1.68  5.511811
## 9215             15 years old   Male              10th grade   1.78  5.839895
## 9216    18 years old or older   Male              12th grade   1.78  5.839895
## 9217    18 years old or older   Male              12th grade   1.80  5.905512
## 9218             16 years old   Male              10th grade   1.57  5.150919
## 9219             17 years old   Male              12th grade   1.88  6.167979
## 9220             15 years old   Male              10th grade   1.78  5.839895
## 9221    18 years old or older   Male              12th grade   1.73  5.675853
## 9222    18 years old or older   Male              12th grade   1.75  5.741470
## 9223             16 years old   Male              10th grade   1.90  6.233596
## 9224    18 years old or older   Male              12th grade   1.90  6.233596
## 9225             16 years old   Male              10th grade   1.90  6.233596
## 9226    18 years old or older Female              12th grade   1.65  5.413386
## 9227             15 years old   Male              10th grade   1.83  6.003937
## 9228    18 years old or older Female              12th grade   1.65  5.413386
## 9229             17 years old   Male              12th grade   1.83  6.003937
## 9230             16 years old   Male              10th grade     NA        NA
## 9231    18 years old or older Female              12th grade   1.70  5.577428
## 9232             16 years old   Male              10th grade   1.83  6.003937
## 9233    18 years old or older Female              12th grade   1.63  5.347769
## 9234    18 years old or older Female              12th grade   1.57  5.150919
## 9235             16 years old Female              10th grade   1.57  5.150919
## 9236             17 years old   Male              12th grade   1.73  5.675853
## 9237             16 years old   Male              10th grade   1.83  6.003937
## 9238    18 years old or older   Male              12th grade   1.80  5.905512
## 9239    18 years old or older   Male              12th grade   1.85  6.069554
## 9240             16 years old Female              10th grade   1.65  5.413386
## 9241             16 years old   Male              10th grade   1.98  6.496063
## 9242             14 years old Female               9th grade   1.63  5.347769
## 9243             14 years old   Male               9th grade   1.65  5.413386
## 9244             16 years old   Male              10th grade   1.70  5.577428
## 9245             15 years old   Male               9th grade   1.83  6.003937
## 9246    18 years old or older Female              12th grade   1.65  5.413386
## 9247             16 years old   Male              10th grade   1.90  6.233596
## 9248    18 years old or older   Male              12th grade   1.90  6.233596
## 9249             16 years old   Male              10th grade   1.75  5.741470
## 9250             15 years old Female               9th grade   1.57  5.150919
## 9251             17 years old   Male              12th grade   1.80  5.905512
## 9252    18 years old or older   Male              11th grade   1.73  5.675853
## 9253             16 years old Female              10th grade   1.55  5.085302
## 9254    18 years old or older   Male              12th grade   1.60  5.249344
## 9255             16 years old Female              10th grade   1.50  4.921260
## 9256             17 years old   Male              12th grade   1.68  5.511811
## 9257             14 years old   Male               9th grade   1.65  5.413386
## 9258    18 years old or older Female              12th grade   1.55  5.085302
## 9259    18 years old or older   Male              12th grade   1.75  5.741470
## 9260             17 years old   Male              11th grade   1.85  6.069554
## 9261             17 years old Female              11th grade   1.68  5.511811
## 9262    18 years old or older   Male              12th grade   1.80  5.905512
## 9263             17 years old   Male              11th grade   1.80  5.905512
## 9264             15 years old   Male              10th grade   1.65  5.413386
## 9265             15 years old Female               9th grade   1.78  5.839895
## 9266             17 years old   Male              12th grade   1.73  5.675853
## 9267             17 years old   Male              12th grade   1.78  5.839895
## 9268             15 years old   Male              10th grade   1.83  6.003937
## 9269             14 years old Female               9th grade     NA        NA
## 9270             17 years old Female              12th grade   1.55  5.085302
## 9271             17 years old   Male              11th grade   1.68  5.511811
## 9272             15 years old   Male               9th grade   1.78  5.839895
## 9273             17 years old Female              12th grade   1.57  5.150919
## 9274             17 years old   Male              11th grade   1.88  6.167979
## 9275             15 years old   Male               9th grade   1.78  5.839895
## 9276    18 years old or older Female              12th grade   1.63  5.347769
## 9277             16 years old Female              11th grade   1.63  5.347769
## 9278             15 years old   Male              10th grade   1.83  6.003937
## 9279             15 years old Female               9th grade     NA        NA
## 9280    18 years old or older   Male              12th grade   1.80  5.905512
## 9281             17 years old   Male              11th grade   1.75  5.741470
## 9282             16 years old   Male              10th grade   1.78  5.839895
## 9283             17 years old Female              12th grade   1.57  5.150919
## 9284             17 years old Female              11th grade   1.60  5.249344
## 9285             15 years old   Male              10th grade   1.85  6.069554
## 9286             15 years old Female               9th grade     NA        NA
## 9287    18 years old or older Female              12th grade   1.60  5.249344
## 9288             17 years old   Male              11th grade   1.75  5.741470
## 9289             15 years old   Male              10th grade   1.70  5.577428
## 9290             15 years old   Male               9th grade   1.70  5.577428
## 9291    18 years old or older   Male              12th grade   1.73  5.675853
## 9292             17 years old   Male              11th grade   1.83  6.003937
## 9293             16 years old Female              10th grade   1.55  5.085302
## 9294             14 years old   Male               9th grade   1.60  5.249344
## 9295             15 years old   Male              10th grade   1.75  5.741470
## 9296             14 years old   Male               9th grade   1.75  5.741470
## 9297             15 years old Female              10th grade     NA        NA
## 9298             14 years old   Male               9th grade   1.75  5.741470
## 9299             17 years old Female              12th grade   1.57  5.150919
## 9300             17 years old   Male              11th grade   1.70  5.577428
## 9301             15 years old Female              10th grade   1.50  4.921260
## 9302             15 years old   Male               9th grade   1.65  5.413386
## 9303             17 years old Female              12th grade   1.73  5.675853
## 9304             16 years old   Male              11th grade   1.78  5.839895
## 9305             16 years old   Male              10th grade   1.78  5.839895
## 9306             14 years old Female               9th grade     NA        NA
## 9307             17 years old   Male              12th grade   1.78  5.839895
## 9308             17 years old   Male              11th grade   1.68  5.511811
## 9309             16 years old Female              10th grade   1.83  6.003937
## 9310             14 years old   Male               9th grade   1.78  5.839895
## 9311             17 years old Female              12th grade     NA        NA
## 9312             17 years old   Male              11th grade   1.83  6.003937
## 9313             17 years old   Male              12th grade   1.85  6.069554
## 9314             17 years old   Male              11th grade   1.93  6.332021
## 9315             17 years old Female              12th grade     NA        NA
## 9316             16 years old Female              11th grade   1.60  5.249344
## 9317             15 years old   Male               9th grade     NA        NA
## 9318    18 years old or older   Male              12th grade   1.80  5.905512
## 9319             16 years old Female              11th grade   1.73  5.675853
## 9320    18 years old or older   Male              12th grade   1.83  6.003937
## 9321             16 years old Female              11th grade   1.68  5.511811
## 9322             15 years old Female               9th grade   1.55  5.085302
## 9323    18 years old or older Female              12th grade   1.63  5.347769
## 9324             17 years old Female              12th grade   1.47  4.822835
## 9325             15 years old   Male              10th grade   1.78  5.839895
## 9326             17 years old   Male              11th grade   1.78  5.839895
## 9327             14 years old   Male               9th grade   1.63  5.347769
## 9328             17 years old   Male              12th grade   1.85  6.069554
## 9329             15 years old Female              10th grade   1.63  5.347769
## 9330             16 years old   Male              11th grade   1.80  5.905512
## 9331             14 years old Female               9th grade   1.60  5.249344
## 9332             16 years old   Male              10th grade   1.88  6.167979
## 9333             17 years old   Male              11th grade   1.75  5.741470
## 9334             14 years old   Male               9th grade   1.90  6.233596
## 9335             17 years old   Male              12th grade     NA        NA
## 9336             17 years old Female              12th grade   1.68  5.511811
## 9337             16 years old   Male              10th grade   1.83  6.003937
## 9338             17 years old   Male              11th grade   1.80  5.905512
## 9339             17 years old Female              12th grade   1.60  5.249344
## 9340             15 years old   Male              10th grade   1.75  5.741470
## 9341             16 years old Female              11th grade   1.68  5.511811
## 9342             16 years old   Male              10th grade   1.75  5.741470
## 9343    18 years old or older Female              12th grade   1.60  5.249344
## 9344             16 years old   Male              10th grade   1.90  6.233596
## 9345             17 years old Female              11th grade   1.60  5.249344
## 9346             15 years old Female               9th grade   1.65  5.413386
## 9347    18 years old or older   Male              12th grade   1.70  5.577428
## 9348             16 years old   Male              11th grade   1.80  5.905512
## 9349             15 years old   Male               9th grade   1.68  5.511811
## 9350    18 years old or older Female              12th grade     NA        NA
## 9351             14 years old   Male               9th grade   1.78  5.839895
## 9352    18 years old or older   Male              12th grade   1.85  6.069554
## 9353             17 years old Female              12th grade   1.52  4.986877
## 9354             17 years old   Male              11th grade   1.83  6.003937
## 9355             15 years old   Male              10th grade   1.63  5.347769
## 9356             17 years old   Male              11th grade   1.70  5.577428
## 9357             16 years old Female               9th grade   1.70  5.577428
## 9358    18 years old or older Female              12th grade   1.75  5.741470
## 9359             16 years old Female              10th grade   1.47  4.822835
## 9360             16 years old Female              11th grade   1.73  5.675853
## 9361             15 years old Female               9th grade   1.45  4.757218
## 9362             17 years old Female              12th grade   1.57  5.150919
## 9363             15 years old Female              10th grade   1.65  5.413386
## 9364             16 years old   Male              11th grade   1.83  6.003937
## 9365             15 years old Female               9th grade   1.65  5.413386
## 9366             17 years old   Male              12th grade   1.83  6.003937
## 9367             17 years old   <NA>              11th grade     NA        NA
## 9368             14 years old Female               9th grade     NA        NA
## 9369             17 years old   Male              12th grade   1.73  5.675853
## 9370    18 years old or older   Male              12th grade   1.83  6.003937
## 9371             17 years old   Male              12th grade   1.75  5.741470
## 9372             16 years old Female              10th grade   1.70  5.577428
## 9373             17 years old   Male              11th grade   1.68  5.511811
## 9374             15 years old   Male               9th grade   1.68  5.511811
## 9375             17 years old Female              12th grade   1.68  5.511811
## 9376             14 years old   Male               9th grade     NA        NA
## 9377             17 years old Female              12th grade   1.68  5.511811
## 9378             16 years old Female              10th grade   1.55  5.085302
## 9379             16 years old Female              11th grade   1.65  5.413386
## 9380             15 years old   Male               9th grade   1.63  5.347769
## 9381    18 years old or older Female              12th grade   1.50  4.921260
## 9382             15 years old   Male              10th grade   1.60  5.249344
## 9383             16 years old Female              11th grade   1.55  5.085302
## 9384             15 years old   Male               9th grade   1.68  5.511811
## 9385             15 years old   Male               9th grade   1.68  5.511811
## 9386    18 years old or older Female              12th grade   1.63  5.347769
## 9387             16 years old   Male              10th grade   1.85  6.069554
## 9388             16 years old   Male              11th grade   1.80  5.905512
## 9389             14 years old Female               9th grade     NA        NA
## 9390    18 years old or older Female              12th grade   1.55  5.085302
## 9391             16 years old   Male              10th grade   1.73  5.675853
## 9392             17 years old   Male              11th grade   1.80  5.905512
## 9393             15 years old   Male               9th grade   1.83  6.003937
## 9394    18 years old or older   Male              11th grade   1.70  5.577428
## 9395             14 years old   Male               9th grade   1.70  5.577428
## 9396             17 years old   Male              12th grade   1.78  5.839895
## 9397    18 years old or older Female              12th grade   1.52  4.986877
## 9398             15 years old   Male               9th grade   1.78  5.839895
## 9399             17 years old Female              12th grade   1.63  5.347769
## 9400             17 years old Female              12th grade   1.45  4.757218
## 9401             17 years old Female              11th grade   1.60  5.249344
## 9402             16 years old Female               9th grade   1.63  5.347769
## 9403             14 years old Female               9th grade     NA        NA
## 9404             15 years old Female               9th grade   1.50  4.921260
## 9405    18 years old or older   Male              12th grade   1.80  5.905512
## 9406             17 years old   Male              11th grade   1.70  5.577428
## 9407             17 years old Female              12th grade   1.73  5.675853
## 9408             16 years old Female              11th grade   1.57  5.150919
## 9409             16 years old   Male               9th grade   1.73  5.675853
## 9410             15 years old Female               9th grade   1.57  5.150919
## 9411             15 years old   Male              10th grade   1.80  5.905512
## 9412    18 years old or older Female              12th grade   1.73  5.675853
## 9413             17 years old Female              12th grade     NA        NA
## 9414             16 years old Female              11th grade   1.60  5.249344
## 9415             16 years old   Male              10th grade   1.88  6.167979
## 9416             14 years old Female               9th grade   1.35  4.429134
## 9417             15 years old   Male              10th grade   1.65  5.413386
## 9418             16 years old Female              11th grade   1.60  5.249344
## 9419    18 years old or older   Male              12th grade   1.73  5.675853
## 9420             17 years old   Male              11th grade   1.78  5.839895
## 9421             15 years old   Male               9th grade   1.73  5.675853
## 9422             14 years old   Male               9th grade   1.83  6.003937
## 9423             16 years old Female              10th grade   1.50  4.921260
## 9424    18 years old or older   Male              12th grade   1.80  5.905512
## 9425             17 years old Female              11th grade   1.63  5.347769
## 9426             17 years old   Male              12th grade   1.73  5.675853
## 9427             16 years old   Male              11th grade   1.85  6.069554
## 9428             15 years old Female               9th grade   1.63  5.347769
## 9429             15 years old   Male               9th grade   1.78  5.839895
## 9430             17 years old Female              10th grade   1.60  5.249344
## 9431             17 years old   Male              11th grade   1.75  5.741470
## 9432    18 years old or older   Male              12th grade   1.80  5.905512
## 9433             16 years old   Male              11th grade   1.68  5.511811
## 9434             15 years old   Male               9th grade   1.70  5.577428
## 9435             15 years old Female               9th grade   1.63  5.347769
## 9436             15 years old Female              10th grade   1.57  5.150919
## 9437             17 years old Female              12th grade   1.55  5.085302
## 9438             16 years old   Male              11th grade   1.73  5.675853
## 9439             17 years old   Male              12th grade   1.73  5.675853
## 9440             16 years old Female              11th grade   1.57  5.150919
## 9441             14 years old Female               9th grade   1.75  5.741470
## 9442             15 years old Female               9th grade     NA        NA
## 9443             16 years old Female              10th grade   1.63  5.347769
## 9444    18 years old or older   Male              12th grade   1.90  6.233596
## 9445    18 years old or older Female              12th grade   1.60  5.249344
## 9446             15 years old   Male               9th grade   1.75  5.741470
## 9447             15 years old Female               9th grade   1.75  5.741470
## 9448             15 years old Female              10th grade   1.45  4.757218
## 9449             15 years old   Male              10th grade   1.73  5.675853
## 9450    18 years old or older   Male              12th grade   1.70  5.577428
## 9451             17 years old Female              12th grade   1.68  5.511811
## 9452             14 years old Female               9th grade   1.60  5.249344
## 9453             15 years old   Male               9th grade   1.73  5.675853
## 9454             16 years old   Male              10th grade   1.60  5.249344
## 9455             17 years old Female              11th grade   1.63  5.347769
## 9456             16 years old Female              11th grade   1.83  6.003937
## 9457             15 years old Female               9th grade   1.52  4.986877
## 9458             15 years old Female               9th grade     NA        NA
## 9459             15 years old   Male               9th grade   1.63  5.347769
## 9460             15 years old Female               9th grade     NA        NA
## 9461             14 years old   Male               9th grade   1.52  4.986877
## 9462             15 years old   Male               9th grade   1.75  5.741470
## 9463             16 years old   Male              10th grade   1.70  5.577428
## 9464             17 years old   Male              12th grade   1.70  5.577428
## 9465             16 years old   Male              11th grade   1.70  5.577428
## 9466             17 years old Female              12th grade   1.60  5.249344
## 9467             17 years old   Male              11th grade   1.85  6.069554
## 9468             15 years old   Male               9th grade   1.63  5.347769
## 9469             14 years old   Male               9th grade   1.68  5.511811
## 9470             15 years old   Male              10th grade   1.68  5.511811
## 9471             15 years old   Male              10th grade   1.70  5.577428
## 9472             17 years old   Male              12th grade   1.85  6.069554
## 9473             15 years old Female               9th grade   1.65  5.413386
## 9474             15 years old   Male               9th grade   1.73  5.675853
## 9475             17 years old   Male              11th grade   1.83  6.003937
## 9476             15 years old Female              10th grade   1.73  5.675853
## 9477             17 years old Female              12th grade   1.68  5.511811
## 9478             17 years old Female              12th grade   1.60  5.249344
## 9479             14 years old Female               9th grade     NA        NA
## 9480             14 years old Female               9th grade   1.70  5.577428
## 9481             15 years old   Male              10th grade   1.68  5.511811
## 9482             17 years old   Male              12th grade   1.78  5.839895
## 9483             17 years old Female              11th grade   1.60  5.249344
## 9484             17 years old Female              12th grade   1.68  5.511811
## 9485             15 years old Female               9th grade   1.63  5.347769
## 9486             14 years old   Male               9th grade   1.73  5.675853
## 9487             16 years old   Male              10th grade     NA        NA
## 9488    18 years old or older   Male              12th grade   1.80  5.905512
## 9489             16 years old   Male              11th grade   1.80  5.905512
## 9490             17 years old   Male              11th grade   1.78  5.839895
## 9491             15 years old   Male               9th grade   1.88  6.167979
## 9492             14 years old Female               9th grade   1.57  5.150919
## 9493             15 years old Female              10th grade   1.70  5.577428
## 9494             14 years old   Male               9th grade     NA        NA
## 9495             14 years old Female               9th grade   1.60  5.249344
## 9496             16 years old Female              10th grade   1.68  5.511811
## 9497             15 years old Female              10th grade   1.75  5.741470
## 9498             17 years old Female              12th grade   1.60  5.249344
## 9499    18 years old or older   Male              11th grade   1.83  6.003937
## 9500             17 years old   Male              11th grade   1.63  5.347769
## 9501             14 years old   Male               9th grade   1.65  5.413386
## 9502             15 years old   Male               9th grade   1.78  5.839895
## 9503    18 years old or older Female              12th grade   1.57  5.150919
## 9504             17 years old Female              11th grade   1.60  5.249344
## 9505             17 years old   Male              12th grade   1.73  5.675853
## 9506             14 years old   Male               9th grade     NA        NA
## 9507             15 years old Female              10th grade   1.50  4.921260
## 9508    18 years old or older   Male              12th grade   1.83  6.003937
## 9509             17 years old   Male              12th grade   1.80  5.905512
## 9510             16 years old Female              11th grade     NA        NA
## 9511             16 years old Female              10th grade   1.55  5.085302
## 9512             17 years old Female              11th grade   1.63  5.347769
## 9513    18 years old or older Female              12th grade   1.57  5.150919
## 9514             16 years old Female              11th grade   1.63  5.347769
## 9515             14 years old Female               9th grade     NA        NA
## 9516             15 years old   Male               9th grade   1.70  5.577428
## 9517             14 years old Female               9th grade   1.65  5.413386
## 9518             15 years old Female               9th grade   1.70  5.577428
## 9519             14 years old Female               9th grade   1.70  5.577428
## 9520             14 years old Female               9th grade     NA        NA
## 9521             15 years old Female               9th grade   1.60  5.249344
## 9522             16 years old Female              10th grade     NA        NA
## 9523             15 years old Female              10th grade   1.65  5.413386
## 9524             16 years old   Male              11th grade   1.73  5.675853
## 9525             17 years old   Male              11th grade   1.73  5.675853
## 9526             14 years old   Male               9th grade   1.78  5.839895
## 9527             16 years old   Male               9th grade   1.83  6.003937
## 9528             15 years old   Male              10th grade   1.75  5.741470
## 9529             17 years old Female              12th grade   1.73  5.675853
## 9530             16 years old   Male              11th grade   1.68  5.511811
## 9531             16 years old   Male              11th grade   1.83  6.003937
## 9532             14 years old Female               9th grade   1.70  5.577428
## 9533             14 years old Female               9th grade   1.68  5.511811
## 9534             16 years old Female              10th grade     NA        NA
## 9535             16 years old   Male              10th grade   1.75  5.741470
## 9536             17 years old   Male              11th grade   1.73  5.675853
## 9537             16 years old Female              11th grade   1.50  4.921260
## 9538             16 years old   Male              11th grade   1.73  5.675853
## 9539    18 years old or older   Male              12th grade   1.83  6.003937
## 9540             15 years old   Male               9th grade   1.68  5.511811
## 9541             15 years old   Male               9th grade   1.75  5.741470
## 9542             15 years old Female              10th grade   1.57  5.150919
## 9543    18 years old or older Female              11th grade     NA        NA
## 9544             17 years old   Male              12th grade   1.68  5.511811
## 9545             14 years old   Male               9th grade   1.83  6.003937
## 9546    18 years old or older   Male              12th grade   1.75  5.741470
## 9547             16 years old Female              10th grade   1.65  5.413386
## 9548             17 years old Female              11th grade   1.50  4.921260
## 9549             16 years old   Male              11th grade   1.88  6.167979
## 9550             15 years old Female              10th grade     NA        NA
## 9551             17 years old   Male              11th grade   1.73  5.675853
## 9552             15 years old Female               9th grade   1.70  5.577428
## 9553             15 years old Female               9th grade   1.60  5.249344
## 9554             16 years old   Male              10th grade   1.80  5.905512
## 9555             16 years old   Male               9th grade   1.73  5.675853
## 9556             16 years old Female              11th grade   1.63  5.347769
## 9557             17 years old Female              12th grade   1.65  5.413386
## 9558             17 years old Female              11th grade   1.65  5.413386
## 9559             17 years old   Male              11th grade   1.83  6.003937
## 9560             14 years old Female               9th grade   1.65  5.413386
## 9561             15 years old   Male               9th grade   1.60  5.249344
## 9562             16 years old Female              10th grade   1.65  5.413386
## 9563             15 years old   Male              10th grade   1.75  5.741470
## 9564             17 years old   Male              11th grade   1.78  5.839895
## 9565             14 years old Female               9th grade   1.60  5.249344
## 9566             14 years old   Male               9th grade   1.78  5.839895
## 9567             16 years old   Male              10th grade   1.75  5.741470
## 9568             16 years old Female              11th grade   1.68  5.511811
## 9569             14 years old Female               9th grade   1.63  5.347769
## 9570             15 years old Female               9th grade   1.63  5.347769
## 9571             16 years old Female              10th grade   1.65  5.413386
## 9572             16 years old   <NA>              10th grade     NA        NA
## 9573             17 years old   Male              12th grade   1.90  6.233596
## 9574    18 years old or older   Male              12th grade   1.83  6.003937
## 9575             15 years old Female              10th grade   1.63  5.347769
## 9576             15 years old Female               9th grade   1.60  5.249344
## 9577             15 years old Female               9th grade   1.68  5.511811
## 9578             15 years old Female              10th grade     NA        NA
## 9579             16 years old Female              10th grade   1.60  5.249344
## 9580             16 years old Female              11th grade   1.57  5.150919
## 9581             17 years old   Male              12th grade     NA        NA
## 9582             17 years old Female              10th grade   1.70  5.577428
## 9583             14 years old Female               9th grade   1.60  5.249344
## 9584             15 years old   Male               9th grade   1.63  5.347769
## 9585             15 years old Female              10th grade   1.73  5.675853
## 9586             17 years old   Male              11th grade   1.63  5.347769
## 9587             16 years old   Male              11th grade   1.80  5.905512
## 9588             16 years old   Male              12th grade   1.85  6.069554
## 9589             14 years old Female               9th grade   1.65  5.413386
## 9590             15 years old Female               9th grade   1.50  4.921260
## 9591             17 years old   Male              11th grade   1.83  6.003937
## 9592             15 years old   Male               9th grade   1.68  5.511811
## 9593             17 years old   Male              11th grade   1.78  5.839895
## 9594             14 years old Female               9th grade   1.70  5.577428
## 9595             14 years old Female               9th grade   1.70  5.577428
## 9596    18 years old or older   Male              12th grade   1.63  5.347769
## 9597             17 years old Female              11th grade   1.60  5.249344
## 9598    18 years old or older   Male              12th grade   1.80  5.905512
## 9599             17 years old Female              11th grade   1.80  5.905512
## 9600    18 years old or older   Male              12th grade   1.88  6.167979
## 9601    18 years old or older Female              12th grade   1.63  5.347769
## 9602             17 years old Female              11th grade   1.60  5.249344
## 9603    18 years old or older Female              12th grade   1.63  5.347769
## 9604    18 years old or older   Male              12th grade   1.70  5.577428
## 9605    18 years old or older   Male              12th grade   1.83  6.003937
## 9606    18 years old or older   Male              12th grade   1.83  6.003937
## 9607             17 years old Female              12th grade   1.78  5.839895
## 9608    18 years old or older   Male              12th grade   1.90  6.233596
## 9609    18 years old or older   Male              12th grade   1.80  5.905512
## 9610    18 years old or older Female              12th grade   1.60  5.249344
## 9611             17 years old Female              11th grade   1.57  5.150919
## 9612    18 years old or older Female              12th grade   1.63  5.347769
## 9613    18 years old or older   Male              12th grade   1.80  5.905512
## 9614    18 years old or older Female              11th grade   1.60  5.249344
## 9615    18 years old or older Female              12th grade   1.60  5.249344
## 9616    18 years old or older   Male              12th grade   1.78  5.839895
## 9617             17 years old Female              11th grade   1.63  5.347769
## 9618             17 years old   Male              12th grade   1.73  5.675853
## 9619             17 years old Female              11th grade     NA        NA
## 9620             17 years old   Male              12th grade   1.68  5.511811
## 9621    18 years old or older   Male              12th grade   1.85  6.069554
## 9622             16 years old   Male              11th grade   1.73  5.675853
## 9623    18 years old or older Female              12th grade   1.70  5.577428
## 9624    18 years old or older   Male              12th grade   1.90  6.233596
## 9625             16 years old Female              11th grade   1.75  5.741470
## 9626             15 years old   Male               9th grade   1.80  5.905512
## 9627             17 years old   Male              11th grade   1.96  6.430446
## 9628             16 years old   Male               9th grade   1.70  5.577428
## 9629             17 years old   Male              11th grade     NA        NA
## 9630             15 years old Female               9th grade   1.57  5.150919
## 9631             16 years old Female              10th grade   1.60  5.249344
## 9632             15 years old   Male               9th grade   1.85  6.069554
## 9633             17 years old   Male              12th grade   1.83  6.003937
## 9634             16 years old   Male               9th grade   1.65  5.413386
## 9635             16 years old   Male              10th grade   1.68  5.511811
## 9636             17 years old   Male              10th grade   1.85  6.069554
## 9637             15 years old Female               9th grade   1.70  5.577428
## 9638             17 years old   Male              10th grade   1.80  5.905512
## 9639             15 years old   Male               9th grade   1.75  5.741470
## 9640             17 years old   Male              11th grade   1.88  6.167979
## 9641             15 years old   Male               9th grade   1.65  5.413386
## 9642  12 years old or younger Female Ungraded or other grade     NA        NA
## 9643             15 years old Female               9th grade   1.68  5.511811
## 9644             17 years old   Male              11th grade   1.73  5.675853
## 9645             14 years old   Male               9th grade   1.78  5.839895
## 9646             15 years old Female              10th grade   1.60  5.249344
## 9647             14 years old Female               9th grade   1.70  5.577428
## 9648             17 years old   Male              11th grade   1.73  5.675853
## 9649             15 years old   Male               9th grade   1.80  5.905512
## 9650             15 years old   Male               9th grade   1.78  5.839895
## 9651             17 years old Female              11th grade     NA        NA
## 9652             15 years old   Male               9th grade   1.73  5.675853
## 9653             16 years old   Male              10th grade   1.73  5.675853
## 9654             16 years old Female              10th grade   1.52  4.986877
## 9655             15 years old   Male               9th grade   1.83  6.003937
## 9656             17 years old   Male              10th grade   1.80  5.905512
## 9657             16 years old   Male              10th grade   1.83  6.003937
## 9658             14 years old Female               9th grade   1.65  5.413386
## 9659             15 years old   Male               9th grade   1.78  5.839895
## 9660             15 years old Female               9th grade   1.68  5.511811
## 9661             16 years old   Male              10th grade   1.78  5.839895
## 9662             16 years old   Male              10th grade   1.63  5.347769
## 9663             15 years old   Male               9th grade   1.73  5.675853
## 9664             15 years old   Male               9th grade   1.65  5.413386
## 9665             17 years old Female              11th grade   1.63  5.347769
## 9666             15 years old   Male               9th grade   1.78  5.839895
## 9667             17 years old Female              11th grade   1.63  5.347769
## 9668             17 years old   Male              11th grade   1.73  5.675853
## 9669             14 years old   Male               9th grade   1.60  5.249344
## 9670             16 years old Female               9th grade   1.60  5.249344
## 9671             17 years old   Male              11th grade   1.80  5.905512
## 9672             16 years old   Male              10th grade   1.70  5.577428
## 9673             16 years old   Male              10th grade   1.83  6.003937
## 9674             15 years old Female               9th grade   1.63  5.347769
## 9675             15 years old Female              10th grade   1.57  5.150919
## 9676             15 years old Female               9th grade     NA        NA
## 9677             17 years old Female              11th grade   1.65  5.413386
## 9678             17 years old Female              11th grade   1.65  5.413386
## 9679             15 years old Female               9th grade   1.70  5.577428
## 9680             16 years old   Male              10th grade   1.73  5.675853
## 9681             16 years old Female              10th grade   1.65  5.413386
## 9682             16 years old Female               9th grade   1.65  5.413386
## 9683             17 years old   Male              11th grade   1.83  6.003937
## 9684             15 years old   Male               9th grade   1.78  5.839895
## 9685             17 years old   Male              11th grade   1.83  6.003937
## 9686             15 years old Female               9th grade   1.68  5.511811
## 9687             17 years old Female              11th grade   1.52  4.986877
## 9688             17 years old   Male              11th grade     NA        NA
## 9689             14 years old Female               9th grade     NA        NA
## 9690             15 years old   Male               9th grade   1.83  6.003937
## 9691             16 years old   Male              10th grade   1.85  6.069554
## 9692             15 years old Female              10th grade   1.75  5.741470
## 9693             16 years old Female              10th grade   1.68  5.511811
## 9694             16 years old   Male              10th grade   1.90  6.233596
## 9695             16 years old Female              10th grade   1.68  5.511811
## 9696             16 years old Female              10th grade   1.60  5.249344
## 9697             15 years old   Male               9th grade   1.52  4.986877
## 9698             17 years old   Male              10th grade   1.83  6.003937
## 9699             16 years old Female              10th grade   1.68  5.511811
## 9700             16 years old   Male               9th grade   1.80  5.905512
## 9701             16 years old   Male              10th grade   1.83  6.003937
## 9702             15 years old Female               9th grade   1.68  5.511811
## 9703             15 years old   Male               9th grade   1.63  5.347769
## 9704             16 years old   Male              10th grade   1.70  5.577428
## 9705             16 years old Female              10th grade   1.75  5.741470
## 9706             15 years old   Male               9th grade   1.83  6.003937
## 9707             16 years old Female              10th grade   1.57  5.150919
## 9708             16 years old Female              10th grade   1.57  5.150919
## 9709             16 years old   Male              10th grade   1.75  5.741470
## 9710    18 years old or older Female              12th grade   1.65  5.413386
## 9711    18 years old or older   Male              12th grade   1.70  5.577428
## 9712    18 years old or older   Male              12th grade   1.73  5.675853
## 9713    18 years old or older Female              12th grade   1.68  5.511811
## 9714    18 years old or older Female              12th grade   1.68  5.511811
## 9715    18 years old or older Female              12th grade   1.60  5.249344
## 9716    18 years old or older   Male              12th grade   1.73  5.675853
## 9717             17 years old   Male              12th grade   1.78  5.839895
## 9718    18 years old or older Female              12th grade   1.68  5.511811
## 9719    18 years old or older Female              12th grade   1.55  5.085302
## 9720    18 years old or older Female              12th grade   1.80  5.905512
## 9721             15 years old   Male               9th grade   1.73  5.675853
## 9722             15 years old   Male               9th grade   1.73  5.675853
## 9723             15 years old   Male               9th grade   1.85  6.069554
## 9724             16 years old Female              10th grade   1.55  5.085302
## 9725             16 years old   Male              11th grade   1.78  5.839895
## 9726             17 years old   Male              12th grade   1.83  6.003937
## 9727             16 years old   Male              11th grade   1.83  6.003937
## 9728    18 years old or older   Male              12th grade   1.83  6.003937
## 9729             16 years old Female              10th grade   1.65  5.413386
## 9730             14 years old   Male               9th grade     NA        NA
## 9731             15 years old   Male              10th grade   1.68  5.511811
## 9732             17 years old Female              11th grade   1.63  5.347769
## 9733    18 years old or older   Male              12th grade   1.88  6.167979
## 9734             16 years old   Male              10th grade   1.73  5.675853
## 9735             15 years old Female               9th grade   1.78  5.839895
## 9736             15 years old Female               9th grade     NA        NA
## 9737             16 years old Female              10th grade   1.52  4.986877
## 9738             17 years old   Male              11th grade     NA        NA
## 9739             17 years old   Male              12th grade   1.73  5.675853
## 9740    18 years old or older   Male              11th grade   1.88  6.167979
## 9741             17 years old Female              12th grade   1.65  5.413386
## 9742             16 years old Female              11th grade   1.78  5.839895
## 9743             15 years old   Male               9th grade   1.78  5.839895
## 9744             16 years old   Male              11th grade   1.83  6.003937
## 9745             16 years old Female              11th grade   1.68  5.511811
## 9746             17 years old   Male              12th grade   1.83  6.003937
## 9747             14 years old Female               9th grade   1.52  4.986877
## 9748             15 years old   Male               9th grade   1.78  5.839895
## 9749             15 years old   Male              10th grade   1.70  5.577428
## 9750             17 years old Female              11th grade   1.52  4.986877
## 9751             17 years old   Male              12th grade   1.65  5.413386
## 9752             16 years old   Male              11th grade   1.83  6.003937
## 9753    18 years old or older Female              12th grade   1.68  5.511811
## 9754             16 years old   Male              10th grade   1.65  5.413386
## 9755             16 years old   Male              10th grade   1.68  5.511811
## 9756             15 years old   Male               9th grade   1.70  5.577428
## 9757             16 years old   Male              10th grade   1.70  5.577428
## 9758             16 years old Female              11th grade   1.70  5.577428
## 9759             17 years old   Male              12th grade   1.70  5.577428
## 9760             16 years old Female              10th grade   1.73  5.675853
## 9761    18 years old or older Female              12th grade   1.73  5.675853
## 9762             15 years old Female              10th grade   1.57  5.150919
## 9763             15 years old   Male               9th grade   1.85  6.069554
## 9764             14 years old   Male               9th grade   1.80  5.905512
## 9765             16 years old   Male              10th grade   1.75  5.741470
## 9766             16 years old   Male              11th grade   1.83  6.003937
## 9767             17 years old Female              11th grade   1.75  5.741470
## 9768             17 years old Female              12th grade   1.65  5.413386
## 9769             15 years old   Male              10th grade   1.70  5.577428
## 9770             16 years old Female               9th grade   1.55  5.085302
## 9771             15 years old Female               9th grade   1.70  5.577428
## 9772    18 years old or older   Male              12th grade   1.68  5.511811
## 9773             17 years old Female              10th grade   1.73  5.675853
## 9774             14 years old   Male               9th grade   1.85  6.069554
## 9775             16 years old   Male              10th grade   1.57  5.150919
## 9776             17 years old   Male              11th grade   1.78  5.839895
## 9777             17 years old Female              12th grade   1.55  5.085302
## 9778    18 years old or older Female              12th grade   1.57  5.150919
## 9779             16 years old Female              10th grade   1.80  5.905512
## 9780             15 years old   Male               9th grade   1.90  6.233596
## 9781             15 years old Female               9th grade   1.60  5.249344
## 9782             16 years old Female              10th grade   1.60  5.249344
## 9783             16 years old   Male              11th grade     NA        NA
## 9784    18 years old or older   Male                    <NA>   1.78  5.839895
## 9785    18 years old or older   Male              12th grade   1.70  5.577428
## 9786             17 years old   Male              12th grade   1.65  5.413386
## 9787             16 years old Female              10th grade   1.63  5.347769
## 9788             15 years old   Male               9th grade   1.60  5.249344
## 9789             15 years old   Male               9th grade   1.80  5.905512
## 9790             16 years old   Male              10th grade   1.85  6.069554
## 9791             17 years old   Male              11th grade   1.88  6.167979
## 9792             17 years old Female              12th grade   1.68  5.511811
## 9793             16 years old   Male              11th grade   1.73  5.675853
## 9794    18 years old or older   Male              12th grade   1.68  5.511811
## 9795             16 years old   Male              10th grade   1.73  5.675853
## 9796             14 years old Female               9th grade   1.63  5.347769
## 9797             14 years old   Male               9th grade   1.78  5.839895
## 9798             16 years old   Male              10th grade   1.80  5.905512
## 9799             16 years old Female              11th grade   1.63  5.347769
## 9800             17 years old Female              12th grade   1.73  5.675853
## 9801             17 years old Female              11th grade   1.65  5.413386
## 9802             17 years old   Male              12th grade   1.85  6.069554
## 9803             16 years old   Male              10th grade   1.85  6.069554
## 9804             14 years old Female               9th grade   1.70  5.577428
## 9805             14 years old   Male               9th grade   1.83  6.003937
## 9806             16 years old   Male              10th grade     NA        NA
## 9807    18 years old or older   Male              12th grade   1.70  5.577428
## 9808             17 years old   Male              12th grade   1.83  6.003937
## 9809             17 years old Female              12th grade   1.60  5.249344
## 9810             16 years old   Male              10th grade     NA        NA
## 9811             15 years old Female              10th grade   1.65  5.413386
## 9812             15 years old   Male               9th grade   1.80  5.905512
## 9813             17 years old   Male              12th grade   1.63  5.347769
## 9814             17 years old Female              11th grade   1.68  5.511811
## 9815             17 years old Female              12th grade   1.68  5.511811
## 9816             15 years old Female              10th grade   1.63  5.347769
## 9817             15 years old Female               9th grade   1.50  4.921260
## 9818             14 years old Female               9th grade     NA        NA
## 9819             17 years old   Male              12th grade   1.88  6.167979
## 9820             16 years old Female              11th grade   1.65  5.413386
## 9821    18 years old or older   Male              12th grade   1.78  5.839895
## 9822             16 years old Female              10th grade   1.57  5.150919
## 9823             15 years old   Male               9th grade     NA        NA
## 9824             15 years old   Male              10th grade   1.78  5.839895
## 9825             16 years old Female              11th grade   1.60  5.249344
## 9826             17 years old Female              12th grade   1.68  5.511811
## 9827             16 years old   Male              10th grade   1.73  5.675853
## 9828             14 years old   Male               9th grade   1.78  5.839895
## 9829             15 years old Female              10th grade   1.63  5.347769
## 9830             16 years old   Male              11th grade   1.96  6.430446
## 9831    18 years old or older   Male              12th grade   1.78  5.839895
## 9832             16 years old   Male              11th grade   1.90  6.233596
## 9833    18 years old or older   Male              12th grade   1.88  6.167979
## 9834             16 years old   Male              10th grade   1.75  5.741470
## 9835             15 years old   Male               9th grade   1.60  5.249344
## 9836             15 years old Female              10th grade     NA        NA
## 9837             16 years old   Male              10th grade   1.83  6.003937
## 9838             17 years old   Male              11th grade   1.73  5.675853
## 9839    18 years old or older   Male              12th grade   1.60  5.249344
## 9840             17 years old   Male              11th grade   1.80  5.905512
## 9841    18 years old or older   Male              12th grade   1.80  5.905512
## 9842             16 years old   Male              10th grade   1.80  5.905512
## 9843             15 years old   Male               9th grade   1.90  6.233596
## 9844             15 years old   Male               9th grade   1.68  5.511811
## 9845             16 years old Female              10th grade   1.65  5.413386
## 9846             17 years old Female              11th grade   1.57  5.150919
## 9847             17 years old Female              12th grade   1.55  5.085302
## 9848    18 years old or older   Male              12th grade   1.83  6.003937
## 9849             16 years old   Male              10th grade   1.70  5.577428
## 9850             14 years old   Male               9th grade   1.73  5.675853
## 9851             16 years old Female               9th grade     NA        NA
## 9852             16 years old   Male              10th grade   1.63  5.347769
## 9853             17 years old Female              11th grade   1.63  5.347769
## 9854    18 years old or older Female              12th grade   1.55  5.085302
## 9855             17 years old   Male              11th grade   1.65  5.413386
## 9856    18 years old or older   Male              12th grade   1.83  6.003937
## 9857             16 years old Female              10th grade   1.60  5.249344
## 9858             15 years old   Male               9th grade   1.75  5.741470
## 9859             15 years old Female               9th grade   1.45  4.757218
## 9860             15 years old Female              10th grade   1.55  5.085302
## 9861             17 years old Female              11th grade   1.65  5.413386
## 9862             17 years old   Male              11th grade   1.85  6.069554
## 9863    18 years old or older Female              12th grade   1.50  4.921260
## 9864             14 years old Female               9th grade   1.68  5.511811
## 9865             15 years old   Male               9th grade   1.80  5.905512
## 9866             15 years old Female              10th grade   1.65  5.413386
## 9867             16 years old   Male              11th grade   1.80  5.905512
## 9868             16 years old Female              11th grade   1.65  5.413386
## 9869    18 years old or older   Male              12th grade   1.85  6.069554
## 9870             14 years old   Male               9th grade   1.83  6.003937
## 9871             15 years old Female               9th grade   1.73  5.675853
## 9872             15 years old Female               9th grade   1.63  5.347769
## 9873             17 years old   Male              11th grade   1.73  5.675853
## 9874             16 years old Female              11th grade   1.65  5.413386
## 9875             17 years old Female              12th grade   1.70  5.577428
## 9876             16 years old Female              10th grade   1.68  5.511811
## 9877             15 years old   Male               9th grade   1.63  5.347769
## 9878             15 years old Female              10th grade   1.68  5.511811
## 9879             17 years old   Male              12th grade   1.78  5.839895
## 9880             17 years old Female              12th grade   1.73  5.675853
## 9881             17 years old   Male              11th grade   1.63  5.347769
## 9882    18 years old or older Female              12th grade   1.68  5.511811
## 9883             16 years old Female              10th grade     NA        NA
## 9884             15 years old   Male              10th grade   1.78  5.839895
## 9885             15 years old   Male               9th grade   1.78  5.839895
## 9886             15 years old   Male              10th grade   1.75  5.741470
## 9887             16 years old   Male              11th grade   1.78  5.839895
## 9888             17 years old   Male              12th grade   1.83  6.003937
## 9889    18 years old or older Female              12th grade     NA        NA
## 9890             17 years old   Male              12th grade   1.63  5.347769
## 9891             17 years old Female              10th grade   1.55  5.085302
## 9892             14 years old   Male               9th grade   1.65  5.413386
## 9893             15 years old Female               9th grade   1.83  6.003937
## 9894             17 years old   Male              11th grade   1.80  5.905512
## 9895             17 years old   Male              11th grade   1.75  5.741470
## 9896             16 years old Female              11th grade   1.68  5.511811
## 9897             17 years old Female              11th grade   1.70  5.577428
## 9898             17 years old Female              11th grade   1.55  5.085302
## 9899             16 years old Female              11th grade   1.63  5.347769
## 9900             17 years old Female              11th grade   1.63  5.347769
## 9901             17 years old   Male              11th grade   1.83  6.003937
## 9902             17 years old Female              11th grade   1.68  5.511811
## 9903             17 years old Female              11th grade   1.60  5.249344
## 9904             17 years old Female              11th grade   1.63  5.347769
## 9905             16 years old Female              11th grade   1.63  5.347769
## 9906    18 years old or older   Male              12th grade   1.73  5.675853
## 9907    18 years old or older Female              12th grade   1.47  4.822835
## 9908             17 years old Female              12th grade   1.65  5.413386
## 9909    18 years old or older   Male              12th grade   1.73  5.675853
## 9910             17 years old   Male              12th grade   1.73  5.675853
## 9911             16 years old Female              10th grade   1.57  5.150919
## 9912    18 years old or older   Male              12th grade     NA        NA
## 9913             15 years old   Male               9th grade   1.68  5.511811
## 9914             15 years old   Male               9th grade   1.85  6.069554
## 9915             14 years old Female               9th grade   1.70  5.577428
## 9916             14 years old   Male               9th grade   1.68  5.511811
## 9917             15 years old Female               9th grade   1.65  5.413386
## 9918             17 years old   Male              11th grade     NA        NA
## 9919             16 years old   Male              11th grade   1.73  5.675853
## 9920    18 years old or older   Male              12th grade   1.75  5.741470
## 9921             17 years old   Male              12th grade   1.83  6.003937
## 9922             16 years old   Male              10th grade     NA        NA
## 9923             15 years old   Male               9th grade   1.65  5.413386
## 9924             14 years old   Male               9th grade   1.65  5.413386
## 9925             16 years old   Male              10th grade   1.73  5.675853
## 9926             16 years old   Male              11th grade   1.78  5.839895
## 9927             17 years old   Male              12th grade   1.83  6.003937
## 9928    18 years old or older Female              12th grade   1.65  5.413386
## 9929             16 years old   Male              10th grade   1.80  5.905512
## 9930             14 years old Female               9th grade   1.50  4.921260
## 9931             14 years old Female               9th grade     NA        NA
## 9932             17 years old Female              11th grade   1.55  5.085302
## 9933             17 years old Female              11th grade     NA        NA
## 9934             17 years old Female              12th grade   1.63  5.347769
## 9935             17 years old Female              12th grade   1.65  5.413386
## 9936             15 years old Female               9th grade   1.57  5.150919
## 9937             14 years old Female               9th grade   1.57  5.150919
## 9938             16 years old   Male              10th grade   1.83  6.003937
## 9939             17 years old Female              11th grade   1.70  5.577428
## 9940             16 years old   Male              11th grade   1.75  5.741470
## 9941    18 years old or older Female              12th grade   1.63  5.347769
## 9942             17 years old Female              12th grade   1.57  5.150919
## 9943             16 years old   Male              10th grade   1.80  5.905512
## 9944             15 years old Female               9th grade   1.60  5.249344
## 9945             15 years old Female               9th grade   1.60  5.249344
## 9946             16 years old   Male              10th grade   1.80  5.905512
## 9947             16 years old   Male              11th grade   1.88  6.167979
## 9948             16 years old Female              11th grade   1.57  5.150919
## 9949             17 years old Female              12th grade   1.60  5.249344
## 9950             17 years old   Male              12th grade   1.88  6.167979
## 9951             15 years old   Male              10th grade   1.83  6.003937
## 9952             14 years old Female               9th grade   1.65  5.413386
## 9953             15 years old   <NA>               9th grade     NA        NA
## 9954             16 years old   Male              10th grade   1.65  5.413386
## 9955             16 years old Female              11th grade   1.70  5.577428
## 9956             16 years old   Male              11th grade   1.88  6.167979
## 9957    18 years old or older   Male              12th grade   1.80  5.905512
## 9958    18 years old or older Female              12th grade   1.60  5.249344
## 9959             16 years old Female              10th grade   1.68  5.511811
## 9960             14 years old Female               9th grade     NA        NA
## 9961             16 years old   Male              10th grade   1.85  6.069554
## 9962             16 years old   Male              11th grade   1.75  5.741470
## 9963    18 years old or older   Male              12th grade   1.85  6.069554
## 9964             15 years old Female              10th grade     NA        NA
## 9965             14 years old Female               9th grade   1.65  5.413386
## 9966             15 years old Female               9th grade     NA        NA
## 9967             15 years old   Male              10th grade   1.90  6.233596
## 9968             17 years old   Male              11th grade   1.80  5.905512
## 9969             16 years old   Male              11th grade   1.78  5.839895
## 9970    18 years old or older   Male              12th grade   1.83  6.003937
## 9971             16 years old Female              10th grade   1.55  5.085302
## 9972             15 years old   Male               9th grade     NA        NA
## 9973             17 years old Female              11th grade   1.65  5.413386
## 9974             16 years old   Male              11th grade     NA        NA
## 9975    18 years old or older Female              12th grade   1.57  5.150919
## 9976             15 years old Female              10th grade   1.73  5.675853
## 9977             15 years old   Male               9th grade   1.52  4.986877
## 9978             17 years old Female              11th grade   1.68  5.511811
## 9979             16 years old Female              11th grade   1.70  5.577428
## 9980    18 years old or older   Male              12th grade   1.85  6.069554
## 9981    18 years old or older   Male              12th grade   1.78  5.839895
## 9982             16 years old Female              10th grade   1.65  5.413386
## 9983             15 years old Female              10th grade   1.60  5.249344
## 9984             17 years old   Male              11th grade   1.78  5.839895
## 9985             17 years old Female              12th grade   1.60  5.249344
## 9986             15 years old Female              10th grade   1.70  5.577428
## 9987             14 years old Female               9th grade   1.65  5.413386
## 9988             14 years old Female               9th grade     NA        NA
## 9989             17 years old   Male              11th grade   1.75  5.741470
## 9990             16 years old   Male              11th grade   1.75  5.741470
## 9991             17 years old   Male              12th grade   1.70  5.577428
## 9992    18 years old or older Female              12th grade   1.57  5.150919
## 9993             15 years old Female              10th grade   1.68  5.511811
## 9994             14 years old   Male               9th grade   1.85  6.069554
## 9995             15 years old   Male              10th grade   1.70  5.577428
## 9996             16 years old Female              11th grade     NA        NA
## 9997    18 years old or older   Male              12th grade   1.68  5.511811
## 9998    18 years old or older   Male              12th grade   1.80  5.905512
## 9999             15 years old   Male              10th grade   1.65  5.413386
## 10000            14 years old Female               9th grade   1.65  5.413386
## 10001            15 years old Female              10th grade   1.70  5.577428
## 10002            14 years old Female               9th grade   1.63  5.347769
## 10003            17 years old   Male              11th grade   1.88  6.167979
## 10004   18 years old or older Female              12th grade   1.63  5.347769
## 10005            16 years old   Male              10th grade   1.78  5.839895
## 10006            14 years old   Male               9th grade   1.70  5.577428
## 10007            14 years old   Male               9th grade   1.70  5.577428
## 10008            15 years old   Male              10th grade   1.83  6.003937
## 10009            16 years old   Male              11th grade   1.80  5.905512
## 10010   18 years old or older Female              11th grade   1.57  5.150919
## 10011            17 years old   Male              12th grade   1.80  5.905512
## 10012   18 years old or older   Male              12th grade   1.88  6.167979
## 10013            15 years old Female               9th grade   1.60  5.249344
## 10014            15 years old Female              10th grade   1.73  5.675853
## 10015            16 years old Female              11th grade   1.63  5.347769
## 10016   18 years old or older   Male              12th grade   1.80  5.905512
## 10017            15 years old   Male              10th grade   1.75  5.741470
## 10018            14 years old   Male               9th grade   1.68  5.511811
## 10019            15 years old   Male               9th grade   1.78  5.839895
## 10020            17 years old Female              11th grade   1.78  5.839895
## 10021            17 years old   Male              11th grade   1.88  6.167979
## 10022            17 years old   Male              12th grade   1.75  5.741470
## 10023            17 years old Female              12th grade     NA        NA
## 10024            16 years old   Male              10th grade   1.75  5.741470
## 10025            15 years old Female               9th grade   1.70  5.577428
## 10026            16 years old   Male              10th grade   1.75  5.741470
## 10027            17 years old   Male              11th grade   1.80  5.905512
## 10028            17 years old Female              11th grade   1.60  5.249344
## 10029            17 years old   Male              12th grade   1.80  5.905512
## 10030            17 years old   Male              12th grade   1.90  6.233596
## 10031            15 years old Female              10th grade   1.68  5.511811
## 10032            16 years old Female              10th grade   1.63  5.347769
## 10033            14 years old   Male               9th grade   1.68  5.511811
## 10034            15 years old Female              10th grade   1.73  5.675853
## 10035            17 years old   Male              11th grade   1.80  5.905512
## 10036   18 years old or older Female              12th grade   1.68  5.511811
## 10037            17 years old   Male              12th grade   1.78  5.839895
## 10038            17 years old Female              12th grade   1.70  5.577428
## 10039            15 years old   Male              10th grade   1.78  5.839895
## 10040            16 years old   Male              10th grade   1.75  5.741470
## 10041            15 years old Female              10th grade   1.57  5.150919
## 10042            16 years old   Male              10th grade   1.83  6.003937
## 10043            17 years old Female              11th grade   1.63  5.347769
## 10044            17 years old   Male              11th grade   1.88  6.167979
## 10045            17 years old   Male              12th grade     NA        NA
## 10046            17 years old   Male              12th grade   1.78  5.839895
## 10047            16 years old Female              10th grade   1.73  5.675853
## 10048            14 years old Female               9th grade   1.40  4.593176
## 10049            16 years old   Male              10th grade   1.73  5.675853
## 10050            17 years old   Male              11th grade     NA        NA
## 10051            17 years old   Male              11th grade   1.75  5.741470
## 10052   18 years old or older   Male              12th grade   1.80  5.905512
## 10053   18 years old or older   Male              12th grade   1.80  5.905512
## 10054            16 years old   Male              10th grade   1.73  5.675853
## 10055            14 years old   Male               9th grade   1.65  5.413386
## 10056            15 years old   Male               9th grade   1.75  5.741470
## 10057            16 years old   Male              10th grade   1.80  5.905512
## 10058            16 years old   Male              11th grade   1.85  6.069554
## 10059            17 years old   Male              11th grade   1.73  5.675853
## 10060   18 years old or older   Male              12th grade   1.90  6.233596
## 10061            15 years old   Male              10th grade   1.63  5.347769
## 10062            14 years old Female               9th grade   1.60  5.249344
## 10063            15 years old Female               9th grade   1.45  4.757218
## 10064            16 years old   Male              10th grade   1.73  5.675853
## 10065            16 years old   Male              11th grade   1.73  5.675853
## 10066            16 years old Female              11th grade   1.55  5.085302
## 10067            17 years old   Male              12th grade   1.88  6.167979
## 10068   18 years old or older Female              12th grade   1.57  5.150919
## 10069            16 years old Female              10th grade   1.57  5.150919
## 10070            14 years old   <NA>               9th grade     NA        NA
## 10071            15 years old   Male               9th grade   1.80  5.905512
## 10072            17 years old   Male              11th grade   1.63  5.347769
## 10073            17 years old   Male              11th grade   1.70  5.577428
## 10074            17 years old   Male              11th grade   1.70  5.577428
## 10075            17 years old   Male              11th grade   1.96  6.430446
## 10076   18 years old or older   Male              11th grade   1.83  6.003937
## 10077            17 years old Female              12th grade     NA        NA
## 10078            15 years old   Male               9th grade   1.70  5.577428
## 10079            16 years old   Male              11th grade   1.78  5.839895
## 10080   18 years old or older Female Ungraded or other grade   1.55  5.085302
## 10081                    <NA> Female              11th grade     NA        NA
## 10082            17 years old   Male              12th grade   1.70  5.577428
## 10083            15 years old   Male               9th grade   1.83  6.003937
## 10084            17 years old Female              12th grade   1.70  5.577428
## 10085            15 years old   Male               9th grade   1.75  5.741470
## 10086            16 years old Female              11th grade   1.55  5.085302
## 10087            17 years old   Male              12th grade   1.80  5.905512
## 10088            15 years old   Male               9th grade   1.65  5.413386
## 10089            17 years old Female              11th grade   1.52  4.986877
## 10090            16 years old   Male              11th grade   1.60  5.249344
## 10091   18 years old or older   Male              12th grade   1.96  6.430446
## 10092            16 years old   Male              11th grade   1.60  5.249344
## 10093   18 years old or older   <NA>              12th grade     NA        NA
## 10094            17 years old Female              11th grade   1.52  4.986877
## 10095   18 years old or older   Male              12th grade   1.88  6.167979
## 10096            14 years old   Male               9th grade   1.80  5.905512
## 10097   18 years old or older   Male              12th grade   1.70  5.577428
## 10098            16 years old   Male              11th grade   1.78  5.839895
## 10099   18 years old or older   Male              12th grade   1.96  6.430446
## 10100            16 years old   Male              11th grade     NA        NA
## 10101            17 years old   Male              12th grade   1.73  5.675853
## 10102            14 years old Female               9th grade   1.60  5.249344
## 10103            16 years old   Male              11th grade   1.70  5.577428
## 10104            16 years old   Male              11th grade   1.75  5.741470
## 10105   18 years old or older Female              12th grade   1.52  4.986877
## 10106            15 years old   Male               9th grade     NA        NA
## 10107            17 years old Female              11th grade   1.52  4.986877
## 10108   18 years old or older   Male              12th grade   1.68  5.511811
## 10109            15 years old Female               9th grade   1.63  5.347769
## 10110            17 years old Female              11th grade   1.63  5.347769
## 10111            16 years old Female              11th grade   1.60  5.249344
## 10112            15 years old Female              10th grade   1.63  5.347769
## 10113            16 years old Female              10th grade   1.68  5.511811
## 10114            16 years old Female              10th grade   1.60  5.249344
## 10115            15 years old Female              10th grade     NA        NA
## 10116            16 years old Female              11th grade   1.60  5.249344
## 10117            15 years old Female              10th grade   1.60  5.249344
## 10118            16 years old Female              10th grade   1.63  5.347769
## 10119            17 years old   Male              12th grade   1.70  5.577428
## 10120            15 years old   Male               9th grade   1.63  5.347769
## 10121            17 years old Female              11th grade     NA        NA
## 10122            16 years old   Male              10th grade   1.65  5.413386
## 10123            17 years old Female              12th grade     NA        NA
## 10124            16 years old Female              11th grade   1.55  5.085302
## 10125            16 years old Female              10th grade   1.55  5.085302
## 10126            17 years old   Male              11th grade   1.85  6.069554
## 10127            16 years old Female              10th grade   1.68  5.511811
## 10128            14 years old   Male               9th grade   1.68  5.511811
## 10129            15 years old   Male              10th grade   1.80  5.905512
## 10130            15 years old   Male               9th grade   1.85  6.069554
## 10131            15 years old Female               9th grade   1.78  5.839895
## 10132            16 years old Female              11th grade   1.63  5.347769
## 10133            16 years old   Male              11th grade   1.96  6.430446
## 10134            15 years old   Male               9th grade   1.73  5.675853
## 10135            17 years old Female              11th grade     NA        NA
## 10136            17 years old Female              11th grade   1.50  4.921260
## 10137            15 years old Female               9th grade   1.50  4.921260
## 10138            17 years old Female              11th grade   1.63  5.347769
## 10139            16 years old Female              11th grade     NA        NA
## 10140            15 years old Female               9th grade   1.63  5.347769
## 10141            16 years old   Male              10th grade   1.73  5.675853
## 10142            15 years old   Male               9th grade   1.90  6.233596
## 10143            14 years old Female               9th grade   1.57  5.150919
## 10144            16 years old   Male              11th grade     NA        NA
## 10145            17 years old Female              11th grade   1.65  5.413386
## 10146            14 years old   Male               9th grade   1.93  6.332021
## 10147            15 years old   Male              10th grade   1.68  5.511811
## 10148            14 years old Female               9th grade   1.52  4.986877
## 10149            14 years old   Male               9th grade   1.80  5.905512
## 10150            17 years old   Male              11th grade   1.88  6.167979
## 10151            16 years old Female              11th grade     NA        NA
## 10152            15 years old Female               9th grade   1.55  5.085302
## 10153            16 years old Female              11th grade   1.55  5.085302
## 10154            17 years old Female              11th grade   1.40  4.593176
## 10155            15 years old   Male               9th grade   1.65  5.413386
## 10156            14 years old   Male               9th grade   1.78  5.839895
## 10157            14 years old Female               9th grade   1.52  4.986877
## 10158            16 years old   Male              11th grade   1.80  5.905512
## 10159            17 years old Female              11th grade   1.52  4.986877
## 10160            15 years old Female               9th grade   1.75  5.741470
## 10161            15 years old Female              10th grade   1.63  5.347769
## 10162            14 years old   Male               9th grade   1.83  6.003937
## 10163            15 years old Female               9th grade   1.68  5.511811
## 10164            17 years old   Male              11th grade   1.70  5.577428
## 10165            16 years old   Male              11th grade   1.63  5.347769
## 10166            15 years old   Male               9th grade   1.63  5.347769
## 10167            15 years old Female              10th grade   1.68  5.511811
## 10168            15 years old Female               9th grade   1.70  5.577428
## 10169            15 years old   Male               9th grade   1.83  6.003937
## 10170            17 years old Female              11th grade   1.70  5.577428
## 10171            16 years old   Male              11th grade   1.73  5.675853
## 10172            15 years old   Male               9th grade   1.65  5.413386
## 10173            16 years old   Male              10th grade   1.73  5.675853
## 10174            15 years old   Male               9th grade   1.65  5.413386
## 10175            14 years old Female               9th grade   1.75  5.741470
## 10176            16 years old   Male              11th grade   1.80  5.905512
## 10177            17 years old Female              11th grade   1.83  6.003937
## 10178            14 years old Female               9th grade   1.63  5.347769
## 10179            15 years old   Male              10th grade   1.70  5.577428
## 10180            15 years old Female               9th grade   1.63  5.347769
## 10181            15 years old Female               9th grade   1.63  5.347769
## 10182            16 years old   Male              11th grade   1.73  5.675853
## 10183            15 years old Female               9th grade   1.57  5.150919
## 10184            16 years old   Male              10th grade   1.83  6.003937
## 10185            14 years old Female               9th grade   1.63  5.347769
## 10186            15 years old   Male               9th grade   1.80  5.905512
## 10187            16 years old Female              10th grade   1.60  5.249344
## 10188            14 years old   Male               9th grade   1.57  5.150919
## 10189            15 years old   Male               9th grade   1.60  5.249344
## 10190            16 years old Female              11th grade   1.60  5.249344
## 10191            14 years old   Male               9th grade   1.68  5.511811
## 10192            15 years old Female              10th grade   1.57  5.150919
## 10193            15 years old Female               9th grade   1.57  5.150919
## 10194            17 years old Female              11th grade   1.70  5.577428
## 10195            17 years old   Male              11th grade   1.88  6.167979
## 10196            14 years old   Male               9th grade   1.60  5.249344
## 10197            17 years old Female              11th grade   1.52  4.986877
## 10198            17 years old Female              11th grade   1.65  5.413386
## 10199            15 years old Female               9th grade   1.73  5.675853
## 10200            16 years old   Male              10th grade   1.88  6.167979
## 10201            14 years old Female               9th grade   1.57  5.150919
## 10202            15 years old   Male               9th grade   1.88  6.167979
## 10203            16 years old   Male              11th grade   1.85  6.069554
## 10204            14 years old   Male               9th grade   1.73  5.675853
## 10205            15 years old   Male               9th grade   1.80  5.905512
## 10206            17 years old Female              11th grade   1.65  5.413386
## 10207            15 years old Female               9th grade   1.57  5.150919
## 10208            15 years old   Male              10th grade   1.68  5.511811
## 10209            14 years old Female               9th grade   1.75  5.741470
## 10210            15 years old   Male               9th grade   1.75  5.741470
## 10211            17 years old   Male              11th grade   1.70  5.577428
## 10212            14 years old   Male               9th grade   1.63  5.347769
## 10213            15 years old Female              10th grade   1.60  5.249344
## 10214            14 years old   Male               9th grade   1.68  5.511811
## 10215            15 years old   Male               9th grade   1.80  5.905512
## 10216            16 years old Female              11th grade   1.50  4.921260
## 10217            15 years old   Male               9th grade   1.60  5.249344
## 10218            16 years old Female              10th grade     NA        NA
## 10219            15 years old   Male               9th grade   1.73  5.675853
## 10220            15 years old   Male               9th grade   1.70  5.577428
## 10221   18 years old or older   Male              12th grade   1.85  6.069554
## 10222            17 years old   Male              12th grade   1.83  6.003937
## 10223            17 years old   Male              12th grade   1.75  5.741470
## 10224            16 years old Female              10th grade   1.63  5.347769
## 10225            17 years old   Male              12th grade   1.75  5.741470
## 10226            16 years old   Male              10th grade   1.85  6.069554
## 10227            17 years old   Male              12th grade   1.78  5.839895
## 10228            17 years old   Male              12th grade   1.83  6.003937
## 10229            16 years old   Male              10th grade   1.75  5.741470
## 10230            17 years old   Male              12th grade   1.88  6.167979
## 10231   18 years old or older Female              12th grade   1.60  5.249344
## 10232            16 years old   Male              10th grade   1.73  5.675853
## 10233            16 years old Female              10th grade   1.63  5.347769
## 10234   18 years old or older   Male              12th grade   1.83  6.003937
## 10235            17 years old   Male              12th grade   1.80  5.905512
## 10236            17 years old   Male              12th grade   1.78  5.839895
## 10237            16 years old   Male              10th grade   1.75  5.741470
## 10238   18 years old or older Female              12th grade   1.68  5.511811
## 10239   18 years old or older   Male              12th grade   1.68  5.511811
## 10240   18 years old or older Female              12th grade   1.52  4.986877
## 10241            15 years old Female              10th grade   1.52  4.986877
## 10242   18 years old or older Female              12th grade   1.75  5.741470
## 10243 12 years old or younger   Male              12th grade     NA        NA
## 10244            15 years old Female              10th grade   1.63  5.347769
## 10245            17 years old Female              12th grade   1.60  5.249344
## 10246            16 years old Female              10th grade   1.55  5.085302
## 10247   18 years old or older Female              12th grade   1.70  5.577428
## 10248   18 years old or older   Male              12th grade   1.73  5.675853
## 10249   18 years old or older   Male              12th grade   1.85  6.069554
## 10250            15 years old   Male              10th grade   1.75  5.741470
## 10251            15 years old Female              10th grade   1.65  5.413386
## 10252   18 years old or older Female              12th grade   1.63  5.347769
## 10253            17 years old Female              12th grade   1.70  5.577428
## 10254   18 years old or older Female              12th grade   1.70  5.577428
## 10255            16 years old Female              10th grade   1.65  5.413386
## 10256   18 years old or older   Male              12th grade   1.80  5.905512
## 10257            16 years old   Male              10th grade   1.73  5.675853
## 10258            16 years old Female              10th grade   1.65  5.413386
## 10259   18 years old or older Female              12th grade   1.57  5.150919
## 10260   18 years old or older   Male              12th grade   1.88  6.167979
## 10261   18 years old or older Female              12th grade   1.60  5.249344
## 10262            16 years old Female              10th grade   1.63  5.347769
## 10263            17 years old Female              12th grade   1.57  5.150919
## 10264   18 years old or older   Male              12th grade   1.93  6.332021
## 10265   18 years old or older Female              12th grade   1.63  5.347769
## 10266            17 years old Female              12th grade   1.60  5.249344
## 10267            17 years old   Male              12th grade   1.73  5.675853
## 10268            17 years old   Male              12th grade   1.83  6.003937
## 10269   18 years old or older Female              12th grade   1.50  4.921260
## 10270   18 years old or older Female              12th grade   1.68  5.511811
## 10271   18 years old or older   Male              12th grade   1.75  5.741470
## 10272            15 years old   Male              10th grade   1.70  5.577428
## 10273            17 years old Female              12th grade   1.70  5.577428
## 10274   18 years old or older   Male              12th grade   1.83  6.003937
## 10275   18 years old or older   Male              12th grade   1.75  5.741470
## 10276            16 years old   Male              10th grade   1.73  5.675853
## 10277   18 years old or older   Male              12th grade   1.83  6.003937
## 10278            16 years old   Male              10th grade   1.80  5.905512
## 10279            17 years old   Male              11th grade     NA        NA
## 10280            15 years old Female               9th grade   1.52  4.986877
## 10281            16 years old Female              11th grade   1.60  5.249344
## 10282            15 years old Female               9th grade   1.65  5.413386
## 10283            16 years old Female              11th grade   1.55  5.085302
## 10284            15 years old Female               9th grade   1.60  5.249344
## 10285            15 years old   Male               9th grade   1.85  6.069554
## 10286            17 years old   Male              11th grade   1.83  6.003937
## 10287            16 years old   Male               9th grade   1.88  6.167979
## 10288            17 years old   Male              11th grade   1.93  6.332021
## 10289            14 years old Female               9th grade   1.75  5.741470
## 10290            17 years old Female              11th grade   1.75  5.741470
## 10291            14 years old Female               9th grade   1.68  5.511811
## 10292            14 years old   Male               9th grade   1.70  5.577428
## 10293            14 years old Female               9th grade   1.63  5.347769
## 10294            16 years old Female              11th grade   1.73  5.675853
## 10295            14 years old Female               9th grade   1.68  5.511811
## 10296            16 years old Female              11th grade     NA        NA
## 10297            15 years old Female               9th grade   1.75  5.741470
## 10298            16 years old   Male              11th grade   1.80  5.905512
## 10299            14 years old   Male               9th grade   1.85  6.069554
## 10300            17 years old   Male              11th grade   1.88  6.167979
## 10301            15 years old Female               9th grade   1.80  5.905512
## 10302            16 years old Female              11th grade   1.65  5.413386
## 10303            17 years old Female              12th grade   1.65  5.413386
## 10304            15 years old   Male               9th grade   1.60  5.249344
## 10305            14 years old Female               9th grade   1.75  5.741470
## 10306            17 years old Female              12th grade   1.68  5.511811
## 10307   18 years old or older   Male              12th grade   1.83  6.003937
## 10308   18 years old or older Female              12th grade     NA        NA
## 10309            15 years old Female              10th grade   1.60  5.249344
## 10310            17 years old Female              12th grade   1.68  5.511811
## 10311            15 years old Female              10th grade   1.63  5.347769
## 10312   18 years old or older Female              12th grade   1.60  5.249344
## 10313            16 years old Female              10th grade   1.60  5.249344
## 10314            17 years old Female                    <NA>   1.70  5.577428
## 10315            16 years old   Male              10th grade   1.80  5.905512
## 10316   18 years old or older Female              12th grade   1.60  5.249344
## 10317            16 years old Female              10th grade   1.65  5.413386
## 10318            16 years old   Male              10th grade   1.78  5.839895
## 10319            15 years old Female              10th grade   1.75  5.741470
## 10320            16 years old Female              10th grade   1.63  5.347769
## 10321            16 years old Female              10th grade     NA        NA
## 10322   18 years old or older   Male              12th grade   1.98  6.496063
## 10323            15 years old   Male              10th grade   1.75  5.741470
## 10324   18 years old or older Female              12th grade   1.73  5.675853
## 10325            15 years old   Male              10th grade   1.75  5.741470
## 10326            17 years old Female              12th grade   1.75  5.741470
## 10327            15 years old   Male              10th grade   1.83  6.003937
## 10328            17 years old   Male              12th grade   1.83  6.003937
## 10329            16 years old Female              10th grade   1.68  5.511811
## 10330            15 years old Female              10th grade   1.57  5.150919
## 10331            15 years old Female              10th grade   1.50  4.921260
## 10332            17 years old   Male              12th grade   1.90  6.233596
## 10333            15 years old Female              10th grade   1.55  5.085302
## 10334            17 years old   Male              12th grade   1.96  6.430446
## 10335            15 years old   Male              10th grade   1.78  5.839895
## 10336   18 years old or older   Male              12th grade   1.78  5.839895
## 10337            16 years old Female              10th grade   1.63  5.347769
## 10338            17 years old Female              12th grade   1.63  5.347769
## 10339            16 years old Female              10th grade   1.60  5.249344
## 10340            15 years old   Male              10th grade   1.65  5.413386
## 10341            16 years old Female              10th grade   1.57  5.150919
## 10342            17 years old Female              12th grade   1.70  5.577428
## 10343            16 years old   Male              10th grade     NA        NA
## 10344            14 years old   Male               9th grade     NA        NA
## 10345            14 years old Female               9th grade   1.65  5.413386
## 10346            16 years old   Male Ungraded or other grade   1.70  5.577428
## 10347            14 years old Female               9th grade     NA        NA
## 10348            17 years old   Male              11th grade   1.90  6.233596
## 10349            15 years old   Male               9th grade   1.83  6.003937
## 10350            15 years old Female               9th grade   1.68  5.511811
## 10351            17 years old Female              11th grade   1.42  4.658793
## 10352            15 years old Female               9th grade     NA        NA
## 10353            17 years old Female              11th grade   1.52  4.986877
## 10354            16 years old Female               9th grade   1.70  5.577428
## 10355            16 years old Female              11th grade     NA        NA
## 10356            15 years old   Male               9th grade   1.88  6.167979
## 10357            14 years old   Male               9th grade   1.70  5.577428
## 10358            17 years old   Male              11th grade   1.85  6.069554
## 10359            14 years old   Male               9th grade   1.63  5.347769
## 10360            17 years old   Male              11th grade   1.80  5.905512
## 10361            15 years old Female              10th grade   1.63  5.347769
## 10362            14 years old   Male               9th grade   1.65  5.413386
## 10363            17 years old Female              11th grade   1.73  5.675853
## 10364            16 years old   Male              11th grade   1.83  6.003937
## 10365            15 years old   Male              10th grade   1.80  5.905512
## 10366            17 years old   Male              11th grade   1.65  5.413386
## 10367            16 years old Female              10th grade   1.52  4.986877
## 10368            15 years old   Male               9th grade   1.83  6.003937
## 10369            15 years old   Male              10th grade     NA        NA
## 10370            14 years old Female               9th grade     NA        NA
## 10371            17 years old   Male              11th grade   1.68  5.511811
## 10372            15 years old   Male              10th grade   1.68  5.511811
## 10373            16 years old   Male              11th grade   1.78  5.839895
## 10374            14 years old   Male               9th grade   1.73  5.675853
## 10375            17 years old   Male              11th grade   1.60  5.249344
## 10376   18 years old or older Female              12th grade   1.52  4.986877
## 10377            14 years old Female               9th grade   1.52  4.986877
## 10378            15 years old   Male              10th grade   1.75  5.741470
## 10379   18 years old or older Female              11th grade   1.60  5.249344
## 10380            15 years old Female              10th grade   1.55  5.085302
## 10381            17 years old   Male              11th grade   1.63  5.347769
## 10382            16 years old Female              10th grade   1.57  5.150919
## 10383            15 years old Female               9th grade   1.57  5.150919
## 10384            16 years old   Male              11th grade   1.98  6.496063
## 10385            16 years old   Male              10th grade   1.70  5.577428
## 10386            14 years old Female               9th grade   1.60  5.249344
## 10387            15 years old Female               9th grade   1.52  4.986877
## 10388            15 years old Female               9th grade   1.52  4.986877
## 10389            15 years old   Male               9th grade   1.88  6.167979
## 10390            15 years old Female               9th grade   1.60  5.249344
## 10391            15 years old   Male               9th grade   1.70  5.577428
## 10392            15 years old   Male               9th grade   1.65  5.413386
## 10393            14 years old Female               9th grade   1.50  4.921260
## 10394            15 years old   Male               9th grade   1.80  5.905512
## 10395            15 years old   Male              10th grade   1.80  5.905512
## 10396            15 years old Female              10th grade   1.65  5.413386
## 10397            15 years old Female               9th grade     NA        NA
## 10398            15 years old Female               9th grade     NA        NA
## 10399            16 years old Female              10th grade   1.60  5.249344
## 10400            16 years old   Male              10th grade   1.80  5.905512
## 10401            15 years old   Male              10th grade   1.75  5.741470
## 10402            15 years old   Male               9th grade   1.73  5.675853
## 10403            14 years old Female               9th grade   1.57  5.150919
## 10404            16 years old   Male              10th grade   1.78  5.839895
## 10405            16 years old Female              10th grade   1.65  5.413386
## 10406            16 years old   Male              10th grade   1.78  5.839895
## 10407            16 years old   Male              10th grade   1.78  5.839895
## 10408            16 years old Female              10th grade   1.80  5.905512
## 10409            16 years old   Male              10th grade   1.83  6.003937
## 10410            15 years old Female              10th grade     NA        NA
## 10411            16 years old Female              10th grade   1.65  5.413386
## 10412            14 years old Female               9th grade   1.70  5.577428
## 10413            16 years old   Male              10th grade   1.83  6.003937
## 10414            15 years old   Male              10th grade   1.78  5.839895
## 10415            14 years old Female               9th grade   1.57  5.150919
## 10416            14 years old   Male               9th grade   1.75  5.741470
## 10417            15 years old   Male               9th grade   1.73  5.675853
## 10418            15 years old Female              10th grade   1.55  5.085302
## 10419            16 years old   Male                    <NA>   1.83  6.003937
## 10420            14 years old   Male               9th grade   1.75  5.741470
## 10421            16 years old Female              10th grade   1.68  5.511811
## 10422            16 years old   Male              10th grade   1.75  5.741470
## 10423            15 years old   Male               9th grade   1.68  5.511811
## 10424            15 years old   Male               9th grade   1.70  5.577428
## 10425            16 years old Female              10th grade   1.68  5.511811
## 10426            16 years old Female              10th grade   1.57  5.150919
## 10427            15 years old Female              10th grade   1.60  5.249344
## 10428            14 years old   Male               9th grade   1.68  5.511811
## 10429            16 years old   Male              10th grade   1.85  6.069554
## 10430            14 years old   Male               9th grade   1.57  5.150919
## 10431            16 years old   Male              10th grade   1.55  5.085302
## 10432            14 years old   Male               9th grade   1.73  5.675853
## 10433            16 years old Female              10th grade   1.63  5.347769
## 10434            15 years old Female               9th grade   1.55  5.085302
## 10435            16 years old Female              10th grade   1.55  5.085302
## 10436            14 years old Female               9th grade   1.60  5.249344
## 10437            15 years old   Male               9th grade   1.80  5.905512
## 10438            15 years old Female               9th grade     NA        NA
## 10439            16 years old   Male              10th grade   1.85  6.069554
## 10440            14 years old   Male               9th grade   1.63  5.347769
## 10441            16 years old   Male              10th grade   1.90  6.233596
## 10442            16 years old Female              10th grade   1.60  5.249344
## 10443            14 years old Female               9th grade   1.55  5.085302
## 10444            15 years old Female               9th grade   1.68  5.511811
## 10445            16 years old Female              10th grade   1.75  5.741470
## 10446            14 years old Female               9th grade   1.60  5.249344
## 10447            17 years old   Male              11th grade   1.65  5.413386
## 10448            17 years old   Male              11th grade   1.73  5.675853
## 10449            17 years old Female              12th grade   1.57  5.150919
## 10450            17 years old Female              11th grade     NA        NA
## 10451            17 years old   Male              11th grade   1.85  6.069554
## 10452            16 years old   Male              11th grade   1.83  6.003937
## 10453   18 years old or older Female              12th grade   1.73  5.675853
## 10454   18 years old or older   Male              12th grade   1.78  5.839895
## 10455            17 years old   Male              12th grade   1.68  5.511811
## 10456            17 years old Female              11th grade   1.63  5.347769
## 10457            17 years old   Male              12th grade   1.73  5.675853
## 10458            16 years old Female              11th grade   1.60  5.249344
## 10459            17 years old Female              11th grade     NA        NA
## 10460   18 years old or older   Male              12th grade   1.83  6.003937
## 10461            17 years old Female              11th grade     NA        NA
## 10462            17 years old Female              12th grade   1.68  5.511811
## 10463   18 years old or older   Male              12th grade   1.88  6.167979
## 10464   18 years old or older Female              12th grade   1.65  5.413386
## 10465   18 years old or older Female              12th grade   1.68  5.511811
## 10466            17 years old   Male              12th grade   1.78  5.839895
## 10467   18 years old or older   Male              12th grade   1.78  5.839895
## 10468            16 years old Female              10th grade   1.60  5.249344
## 10469            17 years old Female              11th grade   1.78  5.839895
## 10470            17 years old   Male              12th grade   1.65  5.413386
## 10471   18 years old or older Female              12th grade   1.65  5.413386
## 10472            17 years old   Male              11th grade   1.73  5.675853
## 10473            17 years old   Male              11th grade   1.88  6.167979
## 10474            16 years old   Male              11th grade   1.78  5.839895
## 10475   18 years old or older Female              11th grade     NA        NA
## 10476            17 years old Female              11th grade   1.60  5.249344
## 10477            17 years old Female              11th grade   1.65  5.413386
## 10478            16 years old Female              11th grade   1.73  5.675853
## 10479            17 years old   Male              11th grade   1.80  5.905512
## 10480   18 years old or older   Male              12th grade   1.85  6.069554
## 10481   18 years old or older Female              11th grade   1.60  5.249344
## 10482            17 years old   Male              11th grade   1.73  5.675853
## 10483   18 years old or older   Male              12th grade   1.75  5.741470
## 10484            17 years old   Male              11th grade   1.75  5.741470
## 10485   18 years old or older Female              12th grade   1.65  5.413386
## 10486            16 years old Female              11th grade   1.65  5.413386
## 10487   18 years old or older   Male              12th grade   1.70  5.577428
## 10488            17 years old   Male              11th grade   1.78  5.839895
## 10489            17 years old Female              12th grade   1.63  5.347769
## 10490            17 years old   Male              12th grade   1.75  5.741470
## 10491            16 years old   Male              11th grade   1.70  5.577428
## 10492            17 years old   Male              12th grade   1.80  5.905512
## 10493            16 years old Female              11th grade   1.68  5.511811
## 10494            16 years old Female              11th grade   1.52  4.986877
## 10495            17 years old   Male              12th grade   1.80  5.905512
## 10496            16 years old Female              10th grade   1.65  5.413386
## 10497            15 years old Female              10th grade   1.68  5.511811
## 10498            17 years old   Male              10th grade   1.75  5.741470
## 10499            16 years old Female              10th grade   1.68  5.511811
## 10500            16 years old Female              10th grade   1.60  5.249344
## 10501            15 years old   Male              10th grade   1.70  5.577428
## 10502            15 years old Female              10th grade   1.65  5.413386
## 10503            15 years old Female              10th grade   1.63  5.347769
## 10504            17 years old   Male              11th grade   1.90  6.233596
## 10505            15 years old Female              10th grade   1.68  5.511811
## 10506            15 years old Female               9th grade   1.60  5.249344
## 10507            15 years old   Male               9th grade   1.75  5.741470
## 10508            15 years old   Male               9th grade   1.83  6.003937
## 10509            15 years old   Male               9th grade   1.83  6.003937
## 10510            15 years old   Male               9th grade   1.88  6.167979
## 10511            16 years old   Male              10th grade   1.75  5.741470
## 10512            16 years old   Male               9th grade   1.68  5.511811
## 10513            16 years old   Male              10th grade   1.80  5.905512
## 10514            17 years old   Male              11th grade   1.65  5.413386
## 10515            17 years old   Male              11th grade   1.70  5.577428
## 10516            15 years old   Male               9th grade   1.70  5.577428
## 10517            17 years old   Male              10th grade   1.73  5.675853
## 10518            15 years old   Male               9th grade   1.85  6.069554
## 10519            16 years old Female              10th grade   1.55  5.085302
## 10520   18 years old or older Female              12th grade   1.55  5.085302
## 10521            14 years old Female               9th grade   1.55  5.085302
## 10522            16 years old Female              10th grade   1.80  5.905512
## 10523            16 years old Female              10th grade   1.50  4.921260
## 10524            16 years old   Male              10th grade   1.73  5.675853
## 10525            15 years old   Male               9th grade   1.70  5.577428
## 10526            14 years old Female               9th grade     NA        NA
## 10527            15 years old   Male               9th grade   1.75  5.741470
## 10528            17 years old Female              11th grade   1.60  5.249344
## 10529            17 years old Female              12th grade   1.63  5.347769
## 10530            15 years old   <NA>              10th grade     NA        NA
## 10531            17 years old   Male              11th grade   1.73  5.675853
## 10532   18 years old or older   Male              12th grade   1.80  5.905512
## 10533            17 years old   Male              11th grade   1.78  5.839895
## 10534            17 years old Female              11th grade     NA        NA
## 10535   18 years old or older   Male              12th grade   1.96  6.430446
## 10536            17 years old   Male              12th grade   1.80  5.905512
## 10537            17 years old Female              11th grade   1.50  4.921260
## 10538            15 years old   Male               9th grade   1.73  5.675853
## 10539            15 years old   Male              10th grade   1.78  5.839895
## 10540            14 years old Female               9th grade   1.60  5.249344
## 10541            15 years old   Male               9th grade   1.83  6.003937
## 10542            15 years old Female               9th grade   1.63  5.347769
## 10543            15 years old Female               9th grade   1.57  5.150919
## 10544            15 years old Female                    <NA>   1.60  5.249344
## 10545            15 years old   Male              10th grade   1.78  5.839895
## 10546            14 years old   Male               9th grade   1.78  5.839895
## 10547            15 years old   Male               9th grade   1.75  5.741470
## 10548            15 years old Female               9th grade   1.60  5.249344
## 10549            15 years old Female               9th grade   1.65  5.413386
## 10550            14 years old Female               9th grade   1.65  5.413386
## 10551            15 years old Female               9th grade   1.73  5.675853
## 10552            14 years old   Male               9th grade   1.70  5.577428
## 10553            14 years old   Male               9th grade   1.75  5.741470
## 10554            14 years old Female               9th grade   1.55  5.085302
## 10555            14 years old   Male               9th grade   1.68  5.511811
## 10556            17 years old   Male              10th grade   1.80  5.905512
## 10557            16 years old Female              10th grade   1.68  5.511811
## 10558            16 years old Female              11th grade   1.70  5.577428
## 10559   18 years old or older Female              12th grade   1.57  5.150919
## 10560   18 years old or older Female              12th grade   1.60  5.249344
## 10561            16 years old Female              10th grade   1.68  5.511811
## 10562            15 years old Female              10th grade   1.60  5.249344
## 10563            17 years old Female              11th grade   1.70  5.577428
## 10564            16 years old Female              10th grade     NA        NA
## 10565   18 years old or older   Male              12th grade   1.80  5.905512
## 10566            17 years old Female              11th grade   1.60  5.249344
## 10567            16 years old Female              11th grade   1.57  5.150919
## 10568            17 years old   Male              11th grade   1.78  5.839895
## 10569            17 years old Female              11th grade     NA        NA
## 10570            16 years old Female              11th grade     NA        NA
## 10571            17 years old   Male              11th grade   1.90  6.233596
## 10572            17 years old Female              11th grade   1.63  5.347769
## 10573            17 years old Female              11th grade   1.68  5.511811
## 10574            16 years old Female              11th grade   1.78  5.839895
## 10575            16 years old   Male              10th grade     NA        NA
## 10576            16 years old Female              10th grade   1.80  5.905512
## 10577            15 years old Female              10th grade     NA        NA
## 10578            16 years old Female              10th grade   1.63  5.347769
## 10579            15 years old Female              10th grade   1.63  5.347769
## 10580            15 years old Female              10th grade   1.57  5.150919
## 10581            16 years old   Male              10th grade   1.78  5.839895
## 10582            16 years old Female              10th grade   1.60  5.249344
## 10583            16 years old   Male              10th grade   1.70  5.577428
## 10584            16 years old   Male              10th grade   1.80  5.905512
## 10585            15 years old   Male              10th grade   1.83  6.003937
## 10586            15 years old   Male               9th grade   1.73  5.675853
## 10587            14 years old Female               9th grade     NA        NA
## 10588            14 years old Female               9th grade   1.57  5.150919
## 10589            14 years old   Male               9th grade   1.70  5.577428
## 10590            15 years old   Male               9th grade   1.83  6.003937
## 10591            15 years old Female               9th grade   1.47  4.822835
## 10592            15 years old Female               9th grade   1.75  5.741470
## 10593            15 years old Female               9th grade     NA        NA
## 10594            14 years old   Male               9th grade   1.83  6.003937
## 10595            15 years old   Male               9th grade   1.73  5.675853
## 10596            14 years old Female               9th grade     NA        NA
## 10597            14 years old Female               9th grade   1.70  5.577428
## 10598            14 years old   Male               9th grade   1.83  6.003937
## 10599            16 years old   Male               9th grade   1.75  5.741470
## 10600            14 years old Female               9th grade     NA        NA
## 10601            15 years old Female               9th grade   1.52  4.986877
## 10602            16 years old   Male               9th grade   1.85  6.069554
## 10603            15 years old Female               9th grade   1.57  5.150919
## 10604            14 years old   Male               9th grade   1.78  5.839895
## 10605            16 years old   Male               9th grade   1.75  5.741470
## 10606            16 years old   Male               9th grade   1.75  5.741470
## 10607            16 years old Female              10th grade   1.57  5.150919
## 10608            15 years old   Male               9th grade   1.78  5.839895
## 10609            14 years old Female               9th grade   1.65  5.413386
## 10610            14 years old Female               9th grade     NA        NA
## 10611            14 years old Female                    <NA>   1.68  5.511811
## 10612            16 years old Female               9th grade   1.68  5.511811
## 10613            15 years old Female               9th grade   1.83  6.003937
## 10614            14 years old   Male               9th grade     NA        NA
## 10615            15 years old Female               9th grade   1.65  5.413386
## 10616            15 years old Female              10th grade   1.65  5.413386
## 10617            17 years old   Male              10th grade   1.80  5.905512
## 10618            16 years old   Male              10th grade   1.75  5.741470
## 10619            15 years old   Male              10th grade   1.83  6.003937
## 10620            17 years old Female              11th grade   1.63  5.347769
## 10621            15 years old Female              10th grade   1.70  5.577428
## 10622            16 years old Female              10th grade   1.80  5.905512
## 10623   18 years old or older   Male              11th grade   1.90  6.233596
## 10624   18 years old or older   Male              12th grade   1.73  5.675853
## 10625            15 years old Female              10th grade   1.57  5.150919
## 10626            16 years old Female              11th grade   1.50  4.921260
## 10627            17 years old Female              11th grade   1.60  5.249344
## 10628            15 years old Female              10th grade   1.70  5.577428
## 10629            16 years old   Male              11th grade   1.73  5.675853
## 10630            16 years old Female              10th grade   1.68  5.511811
## 10631            15 years old   Male              10th grade   1.75  5.741470
## 10632            16 years old   Male              10th grade   1.73  5.675853
## 10633            16 years old   Male              10th grade   1.83  6.003937
## 10634            15 years old   Male               9th grade   1.65  5.413386
## 10635            15 years old   Male               9th grade   1.78  5.839895
## 10636            17 years old Female              10th grade   1.78  5.839895
## 10637            16 years old   Male              10th grade     NA        NA
## 10638 12 years old or younger Female Ungraded or other grade     NA        NA
## 10639            16 years old Female              10th grade   1.50  4.921260
## 10640            15 years old   Male              10th grade   1.73  5.675853
## 10641            16 years old Female              11th grade   1.57  5.150919
## 10642            14 years old   Male               9th grade     NA        NA
## 10643            16 years old   Male              10th grade   1.85  6.069554
## 10644            16 years old Female              10th grade   1.63  5.347769
## 10645            17 years old   Male              10th grade   1.88  6.167979
## 10646            15 years old Female               9th grade   1.73  5.675853
## 10647            16 years old   Male              10th grade   1.65  5.413386
## 10648            15 years old   Male               9th grade   1.83  6.003937
## 10649            15 years old   Male               9th grade   1.75  5.741470
## 10650            17 years old   Male              10th grade   1.88  6.167979
## 10651            15 years old   Male               9th grade   1.78  5.839895
## 10652            15 years old   Male               9th grade   1.83  6.003937
## 10653            15 years old Female               9th grade   1.57  5.150919
## 10654            14 years old Female               9th grade   1.63  5.347769
## 10655            15 years old Female               9th grade   1.55  5.085302
## 10656            15 years old   Male               9th grade   1.73  5.675853
## 10657            14 years old Female               9th grade   1.70  5.577428
## 10658            16 years old Female              10th grade   1.57  5.150919
## 10659            14 years old Female               9th grade   1.57  5.150919
## 10660            15 years old   Male               9th grade   1.78  5.839895
## 10661            14 years old   Male               9th grade   1.65  5.413386
## 10662            16 years old   Male               9th grade   1.83  6.003937
## 10663            14 years old Female               9th grade   1.73  5.675853
## 10664            14 years old Female               9th grade   1.57  5.150919
## 10665            14 years old Female               9th grade   1.60  5.249344
## 10666            15 years old   Male               9th grade   1.70  5.577428
## 10667            14 years old   Male               9th grade   1.68  5.511811
## 10668            17 years old Female              11th grade   1.52  4.986877
## 10669            15 years old Female              10th grade   1.65  5.413386
## 10670            15 years old Female              10th grade   1.52  4.986877
## 10671            16 years old Female              10th grade   1.63  5.347769
## 10672            16 years old Female              10th grade   1.68  5.511811
## 10673            16 years old   Male              10th grade   1.75  5.741470
## 10674            15 years old   Male              10th grade   1.78  5.839895
## 10675            16 years old   Male              10th grade   1.83  6.003937
## 10676            16 years old Female              10th grade   1.60  5.249344
## 10677            16 years old   Male              10th grade   1.85  6.069554
## 10678            16 years old Female              10th grade   1.68  5.511811
## 10679            17 years old Female              11th grade   1.57  5.150919
## 10680            15 years old Female              10th grade   1.68  5.511811
## 10681            15 years old Female              10th grade   1.60  5.249344
## 10682            15 years old Female              10th grade   1.65  5.413386
## 10683            16 years old Female              10th grade   1.73  5.675853
## 10684            17 years old   Male              11th grade   1.73  5.675853
## 10685            16 years old   Male              10th grade   1.70  5.577428
## 10686            16 years old Female              10th grade     NA        NA
## 10687            17 years old   Male              11th grade   1.78  5.839895
## 10688            17 years old   Male              11th grade   1.78  5.839895
## 10689   18 years old or older   Male              11th grade   1.83  6.003937
## 10690            17 years old Female              11th grade   1.70  5.577428
## 10691            17 years old Female              11th grade   1.73  5.675853
## 10692            17 years old Female              12th grade   1.60  5.249344
## 10693            16 years old   Male              11th grade   1.83  6.003937
## 10694            17 years old Female              12th grade   1.57  5.150919
## 10695            17 years old Female              11th grade   1.63  5.347769
## 10696            16 years old   Male              11th grade   1.63  5.347769
## 10697   18 years old or older   Male              12th grade   1.83  6.003937
## 10698            17 years old Female              12th grade   1.63  5.347769
## 10699   18 years old or older Female              12th grade   1.55  5.085302
## 10700            17 years old   Male              11th grade   1.70  5.577428
## 10701            17 years old Female              11th grade   1.57  5.150919
## 10702   18 years old or older   Male              12th grade   1.88  6.167979
## 10703   18 years old or older   Male              11th grade   1.75  5.741470
## 10704            16 years old Female              11th grade     NA        NA
## 10705            16 years old Female              11th grade   1.70  5.577428
## 10706            17 years old   Male              11th grade   1.73  5.675853
## 10707            16 years old   Male              10th grade   1.98  6.496063
## 10708            16 years old   Male              11th grade   1.88  6.167979
## 10709            14 years old Female               9th grade   1.57  5.150919
## 10710            17 years old   Male              11th grade   1.65  5.413386
## 10711            17 years old Female              12th grade   1.68  5.511811
## 10712   18 years old or older Female              12th grade   1.68  5.511811
## 10713            17 years old   Male              12th grade   1.85  6.069554
## 10714   18 years old or older Female              12th grade   1.60  5.249344
## 10715   18 years old or older   Male              12th grade   1.78  5.839895
## 10716   18 years old or older Female              12th grade   1.65  5.413386
## 10717   18 years old or older Female              12th grade   1.63  5.347769
## 10718   18 years old or older Female              12th grade   1.57  5.150919
## 10719            17 years old Female              12th grade   1.75  5.741470
## 10720   18 years old or older   Male              12th grade   1.93  6.332021
## 10721   18 years old or older   Male              12th grade   1.75  5.741470
## 10722   18 years old or older Female              12th grade   1.73  5.675853
## 10723            17 years old Female              12th grade   1.73  5.675853
## 10724            17 years old Female              12th grade   1.60  5.249344
## 10725            17 years old Female              12th grade   1.60  5.249344
## 10726   18 years old or older Female              12th grade   1.75  5.741470
## 10727   18 years old or older   Male              12th grade   1.78  5.839895
## 10728   18 years old or older   Male              12th grade   1.83  6.003937
## 10729   18 years old or older Female              12th grade   1.55  5.085302
## 10730            17 years old Female              12th grade   1.60  5.249344
## 10731            17 years old Female              12th grade   1.55  5.085302
## 10732   18 years old or older   Male              12th grade   1.78  5.839895
## 10733   18 years old or older Female              12th grade   1.63  5.347769
## 10734            17 years old   Male              12th grade   1.70  5.577428
## 10735            17 years old Female              12th grade   1.73  5.675853
## 10736            17 years old   Male              12th grade   1.90  6.233596
## 10737   18 years old or older Female              12th grade   1.60  5.249344
## 10738            17 years old   Male              12th grade   1.80  5.905512
## 10739            17 years old Female              12th grade   1.55  5.085302
## 10740   18 years old or older   Male              12th grade   1.90  6.233596
## 10741            17 years old Female              12th grade   1.73  5.675853
## 10742   18 years old or older Female              12th grade   1.60  5.249344
## 10743            16 years old Female              11th grade   1.65  5.413386
## 10744            17 years old   Male              11th grade   1.85  6.069554
## 10745            17 years old   Male              11th grade   1.68  5.511811
## 10746            16 years old   Male              11th grade   1.83  6.003937
## 10747            17 years old Female              11th grade     NA        NA
## 10748            16 years old Female              11th grade   1.63  5.347769
## 10749            17 years old   Male              11th grade   1.70  5.577428
## 10750            16 years old Female              10th grade   1.57  5.150919
## 10751            16 years old   Male              10th grade   1.75  5.741470
## 10752            15 years old Female              10th grade     NA        NA
## 10753            15 years old   Male              10th grade   1.63  5.347769
## 10754            16 years old Female              10th grade   1.68  5.511811
## 10755            15 years old   Male              10th grade   2.01  6.594488
## 10756            15 years old Female              10th grade   1.65  5.413386
## 10757            15 years old Female              10th grade   1.60  5.249344
## 10758            16 years old   Male              10th grade   1.78  5.839895
## 10759            16 years old Female              10th grade   1.65  5.413386
## 10760            15 years old Female              10th grade   1.60  5.249344
## 10761            16 years old   Male              10th grade   1.75  5.741470
## 10762            15 years old   Male              10th grade   1.78  5.839895
## 10763            15 years old Female              10th grade   1.60  5.249344
## 10764            15 years old   Male              10th grade   1.80  5.905512
## 10765            15 years old   Male              10th grade     NA        NA
## 10766            16 years old Female              10th grade   1.57  5.150919
## 10767            15 years old   Male              10th grade   1.65  5.413386
## 10768            15 years old   Male              10th grade     NA        NA
## 10769            15 years old Female              10th grade   1.52  4.986877
## 10770            16 years old Female              10th grade   1.60  5.249344
## 10771            15 years old   Male              10th grade   1.78  5.839895
## 10772            15 years old Female              10th grade   1.75  5.741470
## 10773            16 years old Female              10th grade   1.57  5.150919
## 10774            16 years old Female              10th grade   1.63  5.347769
## 10775            15 years old   Male              10th grade   1.88  6.167979
## 10776            16 years old   Male              10th grade   1.80  5.905512
## 10777            15 years old Female              10th grade   1.60  5.249344
## 10778            15 years old   Male              10th grade     NA        NA
## 10779   18 years old or older   Male              12th grade   1.78  5.839895
## 10780            16 years old   Male              10th grade   1.80  5.905512
## 10781            17 years old Female              12th grade   1.57  5.150919
## 10782            15 years old   Male              10th grade   1.85  6.069554
## 10783            16 years old   Male              11th grade   1.75  5.741470
## 10784            17 years old Female              11th grade   1.70  5.577428
## 10785            15 years old   Male              10th grade   1.80  5.905512
## 10786            15 years old   Male              10th grade   1.65  5.413386
## 10787            17 years old Female              11th grade   1.63  5.347769
## 10788   18 years old or older   Male              12th grade   1.83  6.003937
## 10789            16 years old Female              10th grade   1.65  5.413386
## 10790            15 years old   Male              10th grade   1.75  5.741470
## 10791            16 years old   Male              10th grade   1.80  5.905512
## 10792            17 years old   Male              12th grade   1.73  5.675853
## 10793            15 years old Female               9th grade   1.65  5.413386
## 10794            16 years old Female              11th grade   1.47  4.822835
## 10795            15 years old   Male              10th grade   1.70  5.577428
## 10796            15 years old Female              10th grade   1.68  5.511811
## 10797            15 years old   Male              10th grade   1.85  6.069554
## 10798            14 years old Female               9th grade   1.52  4.986877
## 10799            16 years old   Male              11th grade   1.78  5.839895
## 10800            15 years old Female               9th grade     NA        NA
## 10801            16 years old Female              10th grade     NA        NA
## 10802   18 years old or older   Male              12th grade   1.78  5.839895
## 10803            14 years old   Male               9th grade   1.65  5.413386
## 10804            15 years old Female              10th grade     NA        NA
## 10805            15 years old Female              10th grade   1.65  5.413386
## 10806            16 years old Female              10th grade   1.65  5.413386
## 10807            16 years old   Male              10th grade     NA        NA
## 10808            14 years old   Male               9th grade   1.60  5.249344
## 10809            16 years old   Male              10th grade     NA        NA
## 10810            14 years old   Male               9th grade   1.70  5.577428
## 10811            15 years old   Male               9th grade   1.75  5.741470
## 10812            15 years old Female               9th grade   1.60  5.249344
## 10813            16 years old   Male              10th grade   1.83  6.003937
## 10814            17 years old   Male              11th grade   1.80  5.905512
## 10815            15 years old   Male               9th grade   1.75  5.741470
## 10816            16 years old Female              10th grade   1.60  5.249344
## 10817            16 years old Female              11th grade   1.55  5.085302
## 10818            14 years old   Male               9th grade   1.63  5.347769
## 10819            16 years old Female              11th grade   1.65  5.413386
## 10820            17 years old Female              11th grade     NA        NA
## 10821            15 years old Female               9th grade   1.60  5.249344
## 10822            14 years old Female               9th grade     NA        NA
## 10823            14 years old Female               9th grade   1.52  4.986877
## 10824            15 years old Female              10th grade   1.57  5.150919
## 10825            16 years old Female              10th grade     NA        NA
## 10826            16 years old Female              10th grade   1.68  5.511811
## 10827            16 years old Female              10th grade   1.70  5.577428
## 10828            15 years old Female               9th grade     NA        NA
## 10829            15 years old Female               9th grade   1.63  5.347769
## 10830            15 years old Female              10th grade   1.55  5.085302
## 10831            16 years old Female              11th grade   1.60  5.249344
## 10832            15 years old Female              10th grade   1.63  5.347769
## 10833   18 years old or older Female              12th grade     NA        NA
## 10834            17 years old Female              11th grade     NA        NA
## 10835            15 years old Female               9th grade     NA        NA
## 10836            16 years old Female              10th grade   1.68  5.511811
## 10837            15 years old   Male               9th grade   1.75  5.741470
## 10838            17 years old   Male              11th grade   1.73  5.675853
## 10839            14 years old Female               9th grade     NA        NA
## 10840            15 years old   Male               9th grade   1.80  5.905512
## 10841            14 years old   Male               9th grade   1.73  5.675853
## 10842            14 years old Female               9th grade   1.57  5.150919
## 10843            14 years old   Male               9th grade   1.78  5.839895
## 10844            14 years old Female               9th grade   1.60  5.249344
## 10845            15 years old   Male               9th grade   1.80  5.905512
## 10846            14 years old   Male               9th grade   1.63  5.347769
## 10847            14 years old   Male               9th grade   1.83  6.003937
## 10848            14 years old Female               9th grade   1.60  5.249344
## 10849            14 years old Female               9th grade   1.70  5.577428
## 10850            15 years old   Male               9th grade   1.75  5.741470
## 10851            15 years old   Male               9th grade   1.70  5.577428
## 10852            14 years old   Male               9th grade   1.80  5.905512
## 10853            14 years old   Male               9th grade   1.73  5.675853
## 10854            15 years old   Male               9th grade   1.80  5.905512
## 10855            15 years old   Male              10th grade   1.73  5.675853
## 10856            15 years old Female              10th grade   1.65  5.413386
## 10857            15 years old   Male              10th grade   1.85  6.069554
## 10858            15 years old Female              10th grade   1.57  5.150919
## 10859            17 years old Female              10th grade   1.57  5.150919
## 10860            15 years old Female              10th grade   1.57  5.150919
## 10861            16 years old   Male              10th grade     NA        NA
## 10862            15 years old   Male              10th grade   1.83  6.003937
## 10863            15 years old   Male              10th grade   1.78  5.839895
## 10864            16 years old   Male              10th grade   1.83  6.003937
## 10865            16 years old   Male              10th grade   1.85  6.069554
## 10866            15 years old   Male              10th grade     NA        NA
## 10867            15 years old Female              10th grade   1.60  5.249344
## 10868            16 years old   Male              10th grade   1.73  5.675853
## 10869            15 years old   Male              10th grade   1.73  5.675853
## 10870            15 years old   Male              10th grade     NA        NA
## 10871            16 years old Female              11th grade     NA        NA
## 10872            17 years old Female              11th grade   1.57  5.150919
## 10873            16 years old Female              11th grade     NA        NA
## 10874            17 years old   Male              11th grade   1.68  5.511811
## 10875            16 years old Female              11th grade   1.52  4.986877
## 10876            17 years old   Male              11th grade   1.85  6.069554
## 10877            16 years old Female              11th grade   1.55  5.085302
## 10878            16 years old   Male              11th grade   1.70  5.577428
## 10879            16 years old   Male              11th grade   1.60  5.249344
## 10880   18 years old or older   Male              11th grade     NA        NA
## 10881            15 years old   Male              10th grade   1.68  5.511811
## 10882   18 years old or older   Male              12th grade   1.65  5.413386
## 10883            16 years old   Male              11th grade   1.73  5.675853
## 10884            16 years old   Male              11th grade   1.75  5.741470
## 10885            16 years old Female              10th grade   1.63  5.347769
## 10886            15 years old   Male              10th grade   1.83  6.003937
## 10887            16 years old Female              10th grade   1.57  5.150919
## 10888            17 years old   Male              11th grade   1.68  5.511811
## 10889            17 years old   Male              11th grade   1.80  5.905512
## 10890            16 years old Female              11th grade   1.57  5.150919
## 10891            17 years old Female              11th grade   1.55  5.085302
## 10892            16 years old   Male              10th grade   1.68  5.511811
## 10893            16 years old   Male              11th grade   1.65  5.413386
## 10894            15 years old Female              10th grade     NA        NA
## 10895            15 years old   Male              10th grade   1.75  5.741470
## 10896            15 years old Female              10th grade   1.55  5.085302
## 10897            16 years old Female              11th grade   1.70  5.577428
## 10898            16 years old   Male              11th grade   1.75  5.741470
## 10899            17 years old   Male              11th grade   1.75  5.741470
## 10900   18 years old or older Female                    <NA>   1.75  5.741470
## 10901            17 years old   Male              12th grade   1.70  5.577428
## 10902            17 years old Female              12th grade   1.52  4.986877
## 10903            17 years old   Male              12th grade   1.85  6.069554
## 10904            17 years old   Male              12th grade     NA        NA
## 10905            17 years old   Male              12th grade   1.78  5.839895
## 10906            17 years old   Male              12th grade   1.85  6.069554
## 10907   18 years old or older Female              12th grade   1.73  5.675853
## 10908   18 years old or older Female              12th grade   1.63  5.347769
## 10909            17 years old Female              12th grade   1.55  5.085302
## 10910   18 years old or older   Male              12th grade   1.70  5.577428
## 10911   18 years old or older   Male              12th grade     NA        NA
## 10912            17 years old   Male              12th grade   1.68  5.511811
## 10913            17 years old   Male              12th grade     NA        NA
## 10914            17 years old   Male              12th grade   1.73  5.675853
## 10915   18 years old or older   Male              12th grade   1.70  5.577428
## 10916            17 years old   Male              12th grade   1.83  6.003937
## 10917            17 years old Female              12th grade   1.57  5.150919
## 10918            17 years old   Male              12th grade   1.83  6.003937
## 10919            15 years old Female               9th grade   1.60  5.249344
## 10920            15 years old   Male               9th grade   1.57  5.150919
## 10921            15 years old Female               9th grade   1.65  5.413386
## 10922            15 years old Female               9th grade   1.70  5.577428
## 10923            15 years old   Male               9th grade   1.63  5.347769
## 10924            15 years old Female               9th grade   1.75  5.741470
## 10925            15 years old Female               9th grade   1.52  4.986877
## 10926            15 years old Female               9th grade   1.55  5.085302
## 10927            15 years old   Male               9th grade   1.70  5.577428
## 10928            15 years old Female               9th grade   1.68  5.511811
## 10929            15 years old   Male               9th grade   1.70  5.577428
## 10930            14 years old Female               9th grade   1.78  5.839895
## 10931            15 years old   Male               9th grade   1.63  5.347769
## 10932            15 years old   Male               9th grade   1.70  5.577428
## 10933            14 years old Female               9th grade   1.55  5.085302
## 10934            14 years old Female               9th grade     NA        NA
## 10935            15 years old   Male               9th grade   1.65  5.413386
## 10936            14 years old   Male               9th grade   1.63  5.347769
## 10937            15 years old   Male               9th grade   1.78  5.839895
## 10938            14 years old   Male               9th grade   1.73  5.675853
## 10939            16 years old   Male              11th grade   1.88  6.167979
## 10940            17 years old Female              11th grade   1.57  5.150919
## 10941            15 years old   Male              10th grade   1.83  6.003937
## 10942            16 years old Female              11th grade   1.57  5.150919
## 10943            16 years old   Male              11th grade   1.83  6.003937
## 10944            16 years old Female              10th grade   1.80  5.905512
## 10945            16 years old Female              10th grade     NA        NA
## 10946            15 years old   Male              10th grade   1.90  6.233596
## 10947            16 years old Female              11th grade   1.52  4.986877
## 10948            16 years old Female              11th grade     NA        NA
## 10949            16 years old   Male              10th grade   1.68  5.511811
## 10950            15 years old   Male              10th grade   1.85  6.069554
## 10951            16 years old   Male              10th grade   1.70  5.577428
## 10952            15 years old   Male              10th grade   1.80  5.905512
## 10953            15 years old Female              10th grade   1.52  4.986877
## 10954            15 years old Female              10th grade   1.70  5.577428
## 10955            17 years old   Male              12th grade   1.80  5.905512
## 10956            15 years old   Male              10th grade   1.70  5.577428
## 10957            17 years old Female              11th grade   1.73  5.675853
## 10958            16 years old   Male              11th grade   1.63  5.347769
## 10959            15 years old Female              10th grade   1.65  5.413386
## 10960            16 years old Female              10th grade   1.60  5.249344
## 10961            15 years old   Male               9th grade   1.55  5.085302
## 10962            15 years old Female               9th grade   1.68  5.511811
## 10963            14 years old   Male               9th grade   1.73  5.675853
## 10964            14 years old Female               9th grade   1.65  5.413386
## 10965            14 years old Female               9th grade   1.65  5.413386
## 10966            14 years old Female               9th grade   1.65  5.413386
## 10967            15 years old   Male               9th grade   1.65  5.413386
## 10968            15 years old   Male               9th grade   1.63  5.347769
## 10969            14 years old Female               9th grade   1.55  5.085302
## 10970            14 years old Female               9th grade   1.57  5.150919
## 10971            14 years old Female               9th grade     NA        NA
## 10972            15 years old   Male               9th grade   1.78  5.839895
## 10973            14 years old   Male               9th grade   1.60  5.249344
## 10974            14 years old   Male               9th grade   1.73  5.675853
## 10975            14 years old   Male               9th grade   1.73  5.675853
## 10976            14 years old   Male                    <NA>   1.73  5.675853
## 10977            14 years old Female               9th grade   1.60  5.249344
## 10978            15 years old Female               9th grade     NA        NA
## 10979            14 years old Female               9th grade   1.68  5.511811
## 10980            15 years old Female               9th grade   1.70  5.577428
## 10981            15 years old Female               9th grade   1.63  5.347769
## 10982            14 years old Female               9th grade   1.52  4.986877
## 10983            14 years old Female               9th grade   1.50  4.921260
## 10984            15 years old   Male               9th grade   1.65  5.413386
## 10985            14 years old   Male               9th grade   1.68  5.511811
## 10986            14 years old   Male               9th grade   1.73  5.675853
## 10987            14 years old Female               9th grade   1.52  4.986877
## 10988            15 years old   Male               9th grade   1.68  5.511811
## 10989            14 years old   Male               9th grade   1.70  5.577428
## 10990            15 years old Female               9th grade   1.73  5.675853
## 10991            14 years old   Male               9th grade   1.70  5.577428
## 10992            15 years old Female               9th grade     NA        NA
## 10993            14 years old Female               9th grade     NA        NA
## 10994            14 years old Female               9th grade   1.55  5.085302
## 10995            14 years old Female               9th grade   1.63  5.347769
## 10996            14 years old   Male               9th grade   1.73  5.675853
## 10997            15 years old Female               9th grade   1.65  5.413386
## 10998            15 years old Female               9th grade   1.63  5.347769
## 10999            14 years old Female               9th grade   1.57  5.150919
## 11000            15 years old Female               9th grade   1.63  5.347769
## 11001            14 years old Female               9th grade   1.63  5.347769
## 11002            15 years old Female               9th grade   1.52  4.986877
## 11003            15 years old Female               9th grade   1.65  5.413386
## 11004            14 years old Female               9th grade   1.73  5.675853
## 11005                    <NA> Female               9th grade     NA        NA
## 11006            14 years old   Male               9th grade   1.73  5.675853
## 11007            15 years old Female               9th grade   1.55  5.085302
## 11008            14 years old   Male               9th grade   1.68  5.511811
## 11009            14 years old   Male               9th grade   1.75  5.741470
## 11010            15 years old   Male               9th grade   1.83  6.003937
## 11011            15 years old   Male               9th grade   1.68  5.511811
## 11012            14 years old   Male               9th grade   1.65  5.413386
## 11013            14 years old   Male               9th grade   1.73  5.675853
## 11014                    <NA>   Male               9th grade     NA        NA
## 11015            14 years old   Male               9th grade   1.60  5.249344
## 11016            14 years old   Male               9th grade   1.80  5.905512
## 11017            14 years old   Male               9th grade   1.70  5.577428
## 11018            14 years old   Male               9th grade   1.65  5.413386
## 11019            15 years old Female               9th grade   1.57  5.150919
## 11020            14 years old   Male               9th grade   1.68  5.511811
## 11021            14 years old Female               9th grade   1.55  5.085302
## 11022            14 years old Female               9th grade   1.65  5.413386
## 11023            15 years old Female               9th grade   1.65  5.413386
## 11024            16 years old   Male              10th grade   1.75  5.741470
## 11025            16 years old Female              10th grade   1.50  4.921260
## 11026            15 years old Female              10th grade   1.52  4.986877
## 11027            16 years old Female              10th grade   1.60  5.249344
## 11028            15 years old Female              10th grade   1.68  5.511811
## 11029            16 years old   Male              10th grade   1.68  5.511811
## 11030            15 years old   Male              10th grade   1.65  5.413386
## 11031            16 years old Female              10th grade   1.52  4.986877
## 11032            15 years old   Male              10th grade   1.78  5.839895
## 11033            16 years old   Male              10th grade   1.73  5.675853
## 11034            15 years old   Male              10th grade   1.78  5.839895
## 11035            16 years old   Male              10th grade   1.73  5.675853
## 11036            16 years old   Male              10th grade   1.73  5.675853
## 11037            15 years old Female              10th grade   1.57  5.150919
## 11038            15 years old   Male              10th grade   1.78  5.839895
## 11039            16 years old   Male              10th grade   1.75  5.741470
## 11040            16 years old   Male              10th grade   1.78  5.839895
## 11041            16 years old   Male              10th grade   1.70  5.577428
## 11042            15 years old   Male              10th grade   1.80  5.905512
## 11043            15 years old   Male              10th grade   1.70  5.577428
## 11044            16 years old   Male              10th grade   1.75  5.741470
## 11045            16 years old Female              10th grade   1.55  5.085302
## 11046            16 years old Female              10th grade   1.42  4.658793
## 11047            15 years old Female              10th grade   1.50  4.921260
## 11048            15 years old Female              10th grade   1.57  5.150919
## 11049            16 years old Female              10th grade   1.63  5.347769
## 11050            16 years old Female              10th grade   1.65  5.413386
## 11051            15 years old Female              10th grade   1.55  5.085302
## 11052            16 years old   Male              10th grade   1.75  5.741470
## 11053            15 years old Female              10th grade   1.65  5.413386
## 11054            15 years old Female              10th grade     NA        NA
## 11055            15 years old Female              10th grade   1.60  5.249344
## 11056            14 years old Female               9th grade   1.52  4.986877
## 11057            15 years old Female               9th grade   1.45  4.757218
## 11058            14 years old Female               9th grade   1.52  4.986877
## 11059            15 years old Female               9th grade   1.52  4.986877
## 11060            14 years old   Male               9th grade   1.63  5.347769
## 11061            17 years old Female              11th grade   1.52  4.986877
## 11062            16 years old Female              11th grade   1.70  5.577428
## 11063            16 years old Female              11th grade   1.63  5.347769
## 11064            17 years old Female              11th grade   1.52  4.986877
## 11065            16 years old Female              11th grade   1.52  4.986877
## 11066            16 years old Female              11th grade   1.63  5.347769
## 11067            17 years old Female              11th grade   1.65  5.413386
## 11068            16 years old   Male              11th grade   1.65  5.413386
## 11069            16 years old Female              11th grade   1.65  5.413386
## 11070            17 years old Female              11th grade   1.63  5.347769
## 11071            17 years old   Male              11th grade   1.70  5.577428
## 11072            17 years old Female              11th grade   1.52  4.986877
## 11073            14 years old   Male               9th grade   1.55  5.085302
## 11074            15 years old   Male               9th grade   1.70  5.577428
## 11075            14 years old   Male               9th grade   1.83  6.003937
## 11076            14 years old Female               9th grade   1.50  4.921260
## 11077            14 years old Female               9th grade   1.45  4.757218
## 11078            15 years old Female               9th grade   1.50  4.921260
## 11079            15 years old Female               9th grade   1.63  5.347769
## 11080            14 years old   <NA>               9th grade     NA        NA
## 11081            14 years old Female               9th grade   1.52  4.986877
## 11082            14 years old Female               9th grade   1.55  5.085302
## 11083            14 years old Female               9th grade   1.57  5.150919
## 11084            15 years old Female               9th grade   1.57  5.150919
## 11085            14 years old Female               9th grade   1.65  5.413386
## 11086            15 years old Female               9th grade   1.68  5.511811
## 11087            15 years old   Male               9th grade   1.63  5.347769
## 11088            16 years old   Male              10th grade   1.80  5.905512
## 11089            15 years old   Male              10th grade   1.83  6.003937
## 11090            16 years old Female              10th grade   1.55  5.085302
## 11091            17 years old Female              11th grade   1.55  5.085302
## 11092            15 years old Female               9th grade   1.68  5.511811
## 11093            16 years old   Male              10th grade   1.73  5.675853
## 11094            16 years old   Male              10th grade   1.78  5.839895
## 11095            15 years old Female              10th grade   1.70  5.577428
## 11096            15 years old   Male              10th grade   1.63  5.347769
## 11097            16 years old Female              10th grade   1.47  4.822835
## 11098            15 years old Female              10th grade   1.55  5.085302
## 11099            16 years old   Male              10th grade   1.65  5.413386
## 11100            16 years old   Male               9th grade   1.88  6.167979
## 11101            16 years old   Male              10th grade   1.73  5.675853
## 11102            16 years old   Male              10th grade   1.78  5.839895
## 11103            15 years old   Male              10th grade   1.60  5.249344
## 11104            16 years old   Male              10th grade   1.83  6.003937
## 11105            15 years old Female              10th grade   1.65  5.413386
## 11106            15 years old   Male              10th grade   1.73  5.675853
## 11107            16 years old   Male              10th grade   1.75  5.741470
## 11108            16 years old   Male              10th grade   1.90  6.233596
## 11109            15 years old Female              10th grade   1.57  5.150919
## 11110            15 years old   Male              10th grade   1.68  5.511811
## 11111            15 years old   Male              10th grade   1.78  5.839895
##       weight weight_lbs         Sexual_identity Neg_mental_health
## 1      81.65  180.00441          Gay or lesbian             Never
## 2         NA         NA Heterosexual (straight)         Sometimes
## 3      74.84  164.99118                Bisexual            Rarely
## 4         NA         NA Heterosexual (straight)         Sometimes
## 5      56.70  125.00000 Heterosexual (straight)         Sometimes
## 6      72.58  160.00882 Heterosexual (straight)              <NA>
## 7      74.84  164.99118 Heterosexual (straight)         Sometimes
## 8      73.48  161.99295                Bisexual            Rarely
## 9      61.24  135.00882                Bisexual         Sometimes
## 10     53.07  116.99735                Bisexual             Never
## 11     63.50  139.99118 Heterosexual (straight)             Never
## 12     72.12  158.99471 Heterosexual (straight)             Never
## 13     65.77  144.99559 Heterosexual (straight)             Never
## 14    136.08  300.00000 Heterosexual (straight)             Never
## 15     73.94  163.00705 Heterosexual (straight)             Never
## 16     97.52  214.99118                Not sure  Most of the time
## 17    122.47  269.99559 Heterosexual (straight)             Never
## 18     68.04  150.00000 Heterosexual (straight)         Sometimes
## 19     49.90  110.00882                Bisexual         Sometimes
## 20     52.16  114.99118 Heterosexual (straight)         Sometimes
## 21        NA         NA                Bisexual         Sometimes
## 22    131.54  289.99118 Heterosexual (straight)         Sometimes
## 23     95.26  210.00882 Heterosexual (straight)            Rarely
## 24     83.01  183.00265 Heterosexual (straight)             Never
## 25     59.88  132.01058                Bisexual            Rarely
## 26     68.04  150.00000          Gay or lesbian  Most of the time
## 27     47.17  103.99030          Some other way            Always
## 28     74.84  164.99118 Heterosexual (straight)             Never
## 29     83.92  185.00882 Heterosexual (straight)         Sometimes
## 30     74.84  164.99118 Heterosexual (straight)         Sometimes
## 31     63.50  139.99118 Heterosexual (straight)            Rarely
## 32     70.31  155.00441          Some other way            Rarely
## 33     79.38  175.00000 Heterosexual (straight)             Never
## 34     63.50  139.99118 Heterosexual (straight)  Most of the time
## 35     62.60  138.00705                Bisexual            Always
## 36     69.85  153.99030 Heterosexual (straight)            Rarely
## 37     53.07  116.99735 Heterosexual (straight)         Sometimes
## 38    111.13  244.99559 Heterosexual (straight)             Never
## 39    122.47  269.99559 Heterosexual (straight)            Rarely
## 40     70.31  155.00441 Heterosexual (straight)             Never
## 41     57.15  125.99206 Heterosexual (straight)            Rarely
## 42     56.70  125.00000 Heterosexual (straight)             Never
## 43     44.45   97.99383 Heterosexual (straight)  Most of the time
## 44     73.48  161.99295                Bisexual         Sometimes
## 45     79.38  175.00000 Heterosexual (straight)            Always
## 46     83.92  185.00882 Heterosexual (straight)            Rarely
## 47     54.89  121.00970 Heterosexual (straight)            Always
## 48     70.76  155.99647                Bisexual  Most of the time
## 49     49.90  110.00882 Heterosexual (straight)  Most of the time
## 50     56.70  125.00000          Some other way  Most of the time
## 51     53.52  117.98942                Bisexual             Never
## 52     72.58  160.00882 Heterosexual (straight)         Sometimes
## 53     99.79  219.99559 Heterosexual (straight)             Never
## 54     77.11  169.99559 Heterosexual (straight)            Rarely
## 55     80.74  177.99824 Heterosexual (straight)            Rarely
## 56     86.18  189.99118 Heterosexual (straight)            Rarely
## 57        NA         NA Heterosexual (straight)            Rarely
## 58    122.47  269.99559 Heterosexual (straight)            Rarely
## 59     61.24  135.00882          Gay or lesbian             Never
## 60        NA         NA          Gay or lesbian            Always
## 61     65.77  144.99559 Heterosexual (straight)            Rarely
## 62    111.13  244.99559                Not sure            Rarely
## 63     70.31  155.00441 Heterosexual (straight)             Never
## 64     65.77  144.99559          Gay or lesbian         Sometimes
## 65     40.82   89.99118                Bisexual             Never
## 66     54.43  119.99559 Heterosexual (straight)            Rarely
## 67     61.24  135.00882 Heterosexual (straight)         Sometimes
## 68     86.18  189.99118 Heterosexual (straight)            Rarely
## 69    113.40  250.00000 Heterosexual (straight)            Always
## 70     61.24  135.00882 Heterosexual (straight)             Never
## 71     68.04  150.00000 Heterosexual (straight)         Sometimes
## 72     83.92  185.00882                Bisexual             Never
## 73     79.38  175.00000 Heterosexual (straight)  Most of the time
## 74     54.43  119.99559 Heterosexual (straight)         Sometimes
## 75     90.72  200.00000 Heterosexual (straight)              <NA>
## 76     56.70  125.00000 Heterosexual (straight)         Sometimes
## 77     90.72  200.00000 Heterosexual (straight)             Never
## 78     74.39  163.99912 Heterosexual (straight)  Most of the time
## 79     46.72  102.99824          Gay or lesbian            Rarely
## 80     58.51  128.99030 Heterosexual (straight)         Sometimes
## 81     72.58  160.00882 Heterosexual (straight)            Rarely
## 82     44.45   97.99383          Some other way  Most of the time
## 83     81.65  180.00441                Not sure            Always
## 84     89.81  197.99383                Bisexual  Most of the time
## 85     70.31  155.00441 Heterosexual (straight)         Sometimes
## 86     61.69  136.00088 Heterosexual (straight)         Sometimes
## 87    113.40  250.00000          Gay or lesbian         Sometimes
## 88     74.84  164.99118 Heterosexual (straight)             Never
## 89     62.60  138.00705 Heterosexual (straight)            Rarely
## 90     71.67  158.00265 Heterosexual (straight)            Rarely
## 91     54.43  119.99559 Heterosexual (straight)             Never
## 92     67.59  149.00794 Heterosexual (straight)            Rarely
## 93        NA         NA                Not sure  Most of the time
## 94     63.50  139.99118 Heterosexual (straight)         Sometimes
## 95     83.92  185.00882 Heterosexual (straight)  Most of the time
## 96     72.58  160.00882                Not sure             Never
## 97     66.68  147.00176 Heterosexual (straight)  Most of the time
## 98     72.58  160.00882 Heterosexual (straight)             Never
## 99     78.02  172.00176 Heterosexual (straight)             Never
## 100    74.84  164.99118 Heterosexual (straight)  Most of the time
## 101    50.80  111.99295 Heterosexual (straight)            Always
## 102   108.86  239.99118 Heterosexual (straight)            Rarely
## 103    56.70  125.00000 Heterosexual (straight)         Sometimes
## 104    79.38  175.00000 Heterosexual (straight)            Rarely
## 105    72.58  160.00882 Heterosexual (straight)         Sometimes
## 106    58.97  130.00441 Heterosexual (straight)         Sometimes
## 107    53.07  116.99735 Heterosexual (straight)         Sometimes
## 108    66.23  146.00970                Bisexual  Most of the time
## 109    62.14  136.99295          Some other way            Always
## 110    83.92  185.00882 Heterosexual (straight)            Always
## 111    89.81  197.99383 Heterosexual (straight)            Rarely
## 112    97.52  214.99118 Heterosexual (straight)         Sometimes
## 113    54.43  119.99559 Heterosexual (straight)         Sometimes
## 114    72.58  160.00882                Bisexual  Most of the time
## 115    54.89  121.00970 Heterosexual (straight)            Rarely
## 116    63.50  139.99118 Heterosexual (straight)         Sometimes
## 117    77.11  169.99559 Heterosexual (straight)         Sometimes
## 118    62.60  138.00705                Bisexual            Always
## 119    68.04  150.00000                Bisexual            Always
## 120    83.92  185.00882 Heterosexual (straight)         Sometimes
## 121    88.91  196.00970                Bisexual            Always
## 122    78.93  174.00794 Heterosexual (straight)            Always
## 123    49.90  110.00882 Heterosexual (straight)             Never
## 124    54.89  121.00970          Some other way         Sometimes
## 125    97.52  214.99118 Heterosexual (straight)             Never
## 126    71.22  157.01058 Heterosexual (straight)            Always
## 127    66.23  146.00970 Heterosexual (straight)            Rarely
## 128    64.86  142.98942 Heterosexual (straight)             Never
## 129    68.04  150.00000                Bisexual            Rarely
## 130    68.04  150.00000          Some other way  Most of the time
## 131    70.31  155.00441 Heterosexual (straight)             Never
## 132    77.11  169.99559 Heterosexual (straight)  Most of the time
## 133    48.54  107.01058 Heterosexual (straight)  Most of the time
## 134    83.92  185.00882 Heterosexual (straight)         Sometimes
## 135    99.79  219.99559 Heterosexual (straight)         Sometimes
## 136       NA         NA Heterosexual (straight)             Never
## 137   104.33  230.00441 Heterosexual (straight)            Rarely
## 138    68.04  150.00000 Heterosexual (straight)             Never
## 139    56.70  125.00000 Heterosexual (straight)  Most of the time
## 140    60.33  133.00265 Heterosexual (straight)             Never
## 141    68.04  150.00000 Heterosexual (straight)            Rarely
## 142    54.43  119.99559 Heterosexual (straight)         Sometimes
## 143    68.04  150.00000 Heterosexual (straight)              <NA>
## 144    56.70  125.00000 Heterosexual (straight)             Never
## 145   111.13  244.99559 Heterosexual (straight)             Never
## 146    99.79  219.99559 Heterosexual (straight)            Rarely
## 147    40.82   89.99118                Not sure  Most of the time
## 148    61.24  135.00882 Heterosexual (straight)            Rarely
## 149    97.98  216.00529          Gay or lesbian            Rarely
## 150    75.30  166.00529 Heterosexual (straight)             Never
## 151    64.86  142.98942 Heterosexual (straight)         Sometimes
## 152    86.18  189.99118 Heterosexual (straight)            Rarely
## 153    60.78  133.99471 Heterosexual (straight)         Sometimes
## 154    82.56  182.01058                Bisexual         Sometimes
## 155    70.76  155.99647 Heterosexual (straight)         Sometimes
## 156   131.54  289.99118 Heterosexual (straight)  Most of the time
## 157    70.76  155.99647 Heterosexual (straight)             Never
## 158   127.01  280.00441 Heterosexual (straight)  Most of the time
## 159       NA         NA          Some other way  Most of the time
## 160    73.03  161.00088 Heterosexual (straight)            Rarely
## 161       NA         NA Heterosexual (straight)            Rarely
## 162    75.30  166.00529 Heterosexual (straight)             Never
## 163    79.83  175.99206                Bisexual            Rarely
## 164   104.33  230.00441 Heterosexual (straight)  Most of the time
## 165    68.95  152.00617 Heterosexual (straight)         Sometimes
## 166    66.23  146.00970 Heterosexual (straight)         Sometimes
## 167    88.45  194.99559 Heterosexual (straight)             Never
## 168       NA         NA Heterosexual (straight)             Never
## 169    53.52  117.98942 Heterosexual (straight)            Rarely
## 170       NA         NA                Bisexual         Sometimes
## 171    63.50  139.99118 Heterosexual (straight)             Never
## 172    88.91  196.00970 Heterosexual (straight)            Rarely
## 173    77.11  169.99559 Heterosexual (straight)  Most of the time
## 174    56.70  125.00000 Heterosexual (straight)  Most of the time
## 175    50.35  111.00088 Heterosexual (straight)             Never
## 176    58.97  130.00441 Heterosexual (straight)            Always
## 177    54.43  119.99559 Heterosexual (straight)            Always
## 178    47.17  103.99030 Heterosexual (straight)  Most of the time
## 179    64.41  141.99735          Gay or lesbian         Sometimes
## 180    92.99  205.00441 Heterosexual (straight)             Never
## 181    52.62  116.00529                Bisexual             Never
## 182    61.24  135.00882 Heterosexual (straight)             Never
## 183   172.37  380.00441 Heterosexual (straight)         Sometimes
## 184    55.79  122.99383 Heterosexual (straight)            Rarely
## 185    70.76  155.99647                Bisexual  Most of the time
## 186       NA         NA Heterosexual (straight)             Never
## 187    76.20  167.98942 Heterosexual (straight)  Most of the time
## 188    52.16  114.99118 Heterosexual (straight)  Most of the time
## 189    97.52  214.99118 Heterosexual (straight)            Rarely
## 190    79.38  175.00000                Not sure  Most of the time
## 191    84.37  186.00088 Heterosexual (straight)         Sometimes
## 192    77.11  169.99559                Bisexual         Sometimes
## 193    50.80  111.99295 Heterosexual (straight)         Sometimes
## 194    68.04  150.00000                Bisexual  Most of the time
## 195   111.13  244.99559 Heterosexual (straight)             Never
## 196   102.06  225.00000 Heterosexual (straight)  Most of the time
## 197    59.88  132.01058 Heterosexual (straight)            Rarely
## 198    68.49  150.99206 Heterosexual (straight)            Rarely
## 199    58.97  130.00441          Some other way         Sometimes
## 200    56.70  125.00000          Gay or lesbian  Most of the time
## 201    86.18  189.99118                Bisexual            Always
## 202    86.64  191.00529          Some other way         Sometimes
## 203    58.97  130.00441 Heterosexual (straight)         Sometimes
## 204   117.94  260.00882                Bisexual         Sometimes
## 205    73.94  163.00705 Heterosexual (straight)         Sometimes
## 206    77.11  169.99559 Heterosexual (straight)         Sometimes
## 207       NA         NA Heterosexual (straight)  Most of the time
## 208   102.97  227.00617 Heterosexual (straight)            Rarely
## 209    61.24  135.00882 Heterosexual (straight)            Rarely
## 210    63.50  139.99118 Heterosexual (straight)         Sometimes
## 211    68.04  150.00000 Heterosexual (straight)         Sometimes
## 212    68.04  150.00000 Heterosexual (straight)             Never
## 213       NA         NA Heterosexual (straight)  Most of the time
## 214    88.45  194.99559 Heterosexual (straight)             Never
## 215       NA         NA          Gay or lesbian         Sometimes
## 216    87.09  191.99735 Heterosexual (straight)             Never
## 217    98.88  217.98942 Heterosexual (straight)            Always
## 218    56.70  125.00000 Heterosexual (straight)            Rarely
## 219    82.56  182.01058                Bisexual         Sometimes
## 220    59.42  130.99647 Heterosexual (straight)            Always
## 221    73.03  161.00088                Not sure             Never
## 222    58.97  130.00441 Heterosexual (straight)            Always
## 223   107.05  236.00088 Heterosexual (straight)  Most of the time
## 224    72.58  160.00882 Heterosexual (straight)             Never
## 225    54.43  119.99559 Heterosexual (straight)             Never
## 226    61.24  135.00882          Gay or lesbian            Rarely
## 227    86.18  189.99118 Heterosexual (straight)             Never
## 228   114.31  252.00617 Heterosexual (straight)         Sometimes
## 229    61.24  135.00882 Heterosexual (straight)  Most of the time
## 230    71.22  157.01058 Heterosexual (straight)             Never
## 231    72.12  158.99471                Not sure            Always
## 232    54.89  121.00970          Gay or lesbian  Most of the time
## 233    63.50  139.99118 Heterosexual (straight)              <NA>
## 234    63.50  139.99118 Heterosexual (straight)            Always
## 235    49.90  110.00882 Heterosexual (straight)             Never
## 236    92.53  203.99030                Bisexual             Never
## 237    52.16  114.99118 Heterosexual (straight)  Most of the time
## 238    85.28  188.00705          Gay or lesbian         Sometimes
## 239    58.06  127.99824 Heterosexual (straight)             Never
## 240    61.24  135.00882 Heterosexual (straight)            Rarely
## 241    68.04  150.00000                Bisexual  Most of the time
## 242    68.04  150.00000                Bisexual             Never
## 243    48.54  107.01058                Not sure             Never
## 244    62.14  136.99295 Heterosexual (straight)         Sometimes
## 245    53.98  119.00353 Heterosexual (straight)         Sometimes
## 246    85.73  188.99912          Gay or lesbian         Sometimes
## 247    61.24  135.00882 Heterosexual (straight)             Never
## 248    61.24  135.00882 Heterosexual (straight)         Sometimes
## 249    56.70  125.00000 Heterosexual (straight)         Sometimes
## 250    54.43  119.99559 Heterosexual (straight)             Never
## 251    55.34  122.00176 Heterosexual (straight)              <NA>
## 252    60.78  133.99471 Heterosexual (straight)            Rarely
## 253   147.42  325.00000 Heterosexual (straight)            Rarely
## 254    58.97  130.00441 Heterosexual (straight)            Rarely
## 255    56.70  125.00000 Heterosexual (straight)            Rarely
## 256       NA         NA Heterosexual (straight)         Sometimes
## 257       NA         NA Heterosexual (straight)            Rarely
## 258    54.43  119.99559          Some other way            Always
## 259    90.72  200.00000 Heterosexual (straight)             Never
## 260       NA         NA Heterosexual (straight)            Rarely
## 261    61.24  135.00882 Heterosexual (straight)  Most of the time
## 262    54.43  119.99559 Heterosexual (straight)  Most of the time
## 263    49.90  110.00882 Heterosexual (straight)         Sometimes
## 264    50.80  111.99295 Heterosexual (straight)         Sometimes
## 265       NA         NA Heterosexual (straight)              <NA>
## 266    58.97  130.00441 Heterosexual (straight)             Never
## 267    65.77  144.99559 Heterosexual (straight)            Rarely
## 268   106.60  235.00882 Heterosexual (straight)  Most of the time
## 269    61.24  135.00882 Heterosexual (straight)            Rarely
## 270    81.65  180.00441 Heterosexual (straight)             Never
## 271       NA         NA                Not sure         Sometimes
## 272    81.65  180.00441 Heterosexual (straight)         Sometimes
## 273       NA         NA                Bisexual         Sometimes
## 274    52.16  114.99118 Heterosexual (straight)         Sometimes
## 275    81.65  180.00441                Bisexual  Most of the time
## 276    68.04  150.00000 Heterosexual (straight)            Rarely
## 277    58.97  130.00441 Heterosexual (straight)  Most of the time
## 278   131.54  289.99118 Heterosexual (straight)            Rarely
## 279    67.13  147.99383                Bisexual         Sometimes
## 280    84.37  186.00088 Heterosexual (straight)              <NA>
## 281    89.36  197.00176 Heterosexual (straight)              <NA>
## 282    55.79  122.99383 Heterosexual (straight)            Rarely
## 283    72.58  160.00882                Bisexual  Most of the time
## 284       NA         NA                Bisexual  Most of the time
## 285    63.05  138.99912 Heterosexual (straight)             Never
## 286    74.84  164.99118 Heterosexual (straight)             Never
## 287    88.45  194.99559 Heterosexual (straight)         Sometimes
## 288    58.97  130.00441 Heterosexual (straight)         Sometimes
## 289    61.24  135.00882                Bisexual            Always
## 290    61.24  135.00882 Heterosexual (straight)            Always
## 291    72.58  160.00882 Heterosexual (straight)             Never
## 292    63.50  139.99118 Heterosexual (straight)            Always
## 293    65.77  144.99559 Heterosexual (straight)             Never
## 294   104.33  230.00441 Heterosexual (straight)         Sometimes
## 295    54.89  121.00970 Heterosexual (straight)            Rarely
## 296    66.68  147.00176 Heterosexual (straight)             Never
## 297    54.43  119.99559 Heterosexual (straight)  Most of the time
## 298    81.19  178.99030 Heterosexual (straight)            Rarely
## 299   124.74  275.00000 Heterosexual (straight)         Sometimes
## 300    59.42  130.99647 Heterosexual (straight)             Never
## 301    70.31  155.00441 Heterosexual (straight)  Most of the time
## 302       NA         NA Heterosexual (straight)         Sometimes
## 303    53.98  119.00353 Heterosexual (straight)             Never
## 304    81.65  180.00441 Heterosexual (straight)  Most of the time
## 305    62.60  138.00705 Heterosexual (straight)             Never
## 306    87.09  191.99735 Heterosexual (straight)         Sometimes
## 307   113.40  250.00000 Heterosexual (straight)         Sometimes
## 308    50.80  111.99295 Heterosexual (straight)         Sometimes
## 309    46.27  102.00617                Bisexual         Sometimes
## 310    82.10  180.99647 Heterosexual (straight)            Rarely
## 311    61.24  135.00882                Bisexual         Sometimes
## 312    40.82   89.99118 Heterosexual (straight)            Rarely
## 313    97.98  216.00529          Gay or lesbian         Sometimes
## 314       NA         NA Heterosexual (straight)              <NA>
## 315       NA         NA                Bisexual  Most of the time
## 316    79.38  175.00000 Heterosexual (straight)         Sometimes
## 317    92.99  205.00441 Heterosexual (straight)              <NA>
## 318    68.04  150.00000                Not sure         Sometimes
## 319    66.23  146.00970 Heterosexual (straight)             Never
## 320    86.18  189.99118 Heterosexual (straight)         Sometimes
## 321    53.07  116.99735                Bisexual  Most of the time
## 322       NA         NA                Not sure         Sometimes
## 323    49.44  108.99471 Heterosexual (straight)            Rarely
## 324    49.90  110.00882 Heterosexual (straight)            Rarely
## 325       NA         NA Heterosexual (straight)  Most of the time
## 326    49.90  110.00882 Heterosexual (straight)            Rarely
## 327    68.04  150.00000 Heterosexual (straight)             Never
## 328    63.05  138.99912 Heterosexual (straight)              <NA>
## 329       NA         NA                Bisexual         Sometimes
## 330       NA         NA                Bisexual            Always
## 331    62.60  138.00705                Bisexual            Rarely
## 332    67.59  149.00794 Heterosexual (straight)            Rarely
## 333       NA         NA Heterosexual (straight)            Rarely
## 334    88.91  196.00970                Not sure             Never
## 335   108.41  238.99912 Heterosexual (straight)            Rarely
## 336    56.70  125.00000 Heterosexual (straight)            Always
## 337    52.16  114.99118 Heterosexual (straight)  Most of the time
## 338    54.43  119.99559 Heterosexual (straight)         Sometimes
## 339    79.38  175.00000 Heterosexual (straight)            Always
## 340    68.04  150.00000 Heterosexual (straight)  Most of the time
## 341    61.24  135.00882 Heterosexual (straight)             Never
## 342   108.86  239.99118 Heterosexual (straight)            Rarely
## 343       NA         NA Heterosexual (straight)            Rarely
## 344    58.51  128.99030 Heterosexual (straight)            Rarely
## 345    67.13  147.99383 Heterosexual (straight)             Never
## 346    82.56  182.01058                Bisexual         Sometimes
## 347   101.15  222.99383 Heterosexual (straight)            Rarely
## 348    62.14  136.99295 Heterosexual (straight)              <NA>
## 349    72.12  158.99471                Bisexual             Never
## 350    68.04  150.00000 Heterosexual (straight)            Always
## 351    49.90  110.00882                Bisexual  Most of the time
## 352    49.90  110.00882 Heterosexual (straight)             Never
## 353    42.18   92.98942                Not sure  Most of the time
## 354    58.97  130.00441 Heterosexual (straight)            Rarely
## 355    96.62  213.00705 Heterosexual (straight)            Rarely
## 356    79.38  175.00000 Heterosexual (straight)            Rarely
## 357    61.24  135.00882                Bisexual         Sometimes
## 358    44.45   97.99383          Some other way            Always
## 359    54.43  119.99559 Heterosexual (straight)  Most of the time
## 360   113.40  250.00000 Heterosexual (straight)  Most of the time
## 361    58.97  130.00441 Heterosexual (straight)  Most of the time
## 362    54.43  119.99559 Heterosexual (straight)            Rarely
## 363    56.70  125.00000 Heterosexual (straight)             Never
## 364    52.62  116.00529 Heterosexual (straight)         Sometimes
## 365    74.84  164.99118 Heterosexual (straight)            Rarely
## 366    83.92  185.00882                Not sure  Most of the time
## 367    76.20  167.98942 Heterosexual (straight)            Rarely
## 368    47.17  103.99030 Heterosexual (straight)  Most of the time
## 369    56.70  125.00000 Heterosexual (straight)            Rarely
## 370    79.38  175.00000 Heterosexual (straight)  Most of the time
## 371    49.90  110.00882 Heterosexual (straight)            Rarely
## 372    60.78  133.99471 Heterosexual (straight)  Most of the time
## 373    83.92  185.00882 Heterosexual (straight)         Sometimes
## 374    83.46  183.99471          Some other way         Sometimes
## 375    52.16  114.99118                Bisexual  Most of the time
## 376    47.63  105.00441 Heterosexual (straight)  Most of the time
## 377    56.25  124.00794                Not sure  Most of the time
## 378    45.36  100.00000 Heterosexual (straight)  Most of the time
## 379    49.90  110.00882 Heterosexual (straight)         Sometimes
## 380    56.70  125.00000 Heterosexual (straight)         Sometimes
## 381    52.62  116.00529 Heterosexual (straight)  Most of the time
## 382    65.32  144.00353 Heterosexual (straight)             Never
## 383    68.04  150.00000 Heterosexual (straight)            Always
## 384    57.61  127.00617 Heterosexual (straight)         Sometimes
## 385    57.61  127.00617 Heterosexual (straight)             Never
## 386    56.70  125.00000 Heterosexual (straight)  Most of the time
## 387    48.99  108.00265 Heterosexual (straight)         Sometimes
## 388    72.58  160.00882 Heterosexual (straight)            Rarely
## 389    56.70  125.00000 Heterosexual (straight)            Rarely
## 390    70.31  155.00441 Heterosexual (straight)            Rarely
## 391    63.50  139.99118 Heterosexual (straight)             Never
## 392    81.65  180.00441 Heterosexual (straight)         Sometimes
## 393    48.54  107.01058 Heterosexual (straight)  Most of the time
## 394    68.04  150.00000 Heterosexual (straight)         Sometimes
## 395    72.58  160.00882 Heterosexual (straight)            Rarely
## 396       NA         NA Heterosexual (straight)            Rarely
## 397    78.02  172.00176 Heterosexual (straight)            Rarely
## 398    58.06  127.99824 Heterosexual (straight)         Sometimes
## 399    77.11  169.99559 Heterosexual (straight)             Never
## 400    74.84  164.99118 Heterosexual (straight)         Sometimes
## 401    58.06  127.99824 Heterosexual (straight)         Sometimes
## 402    51.26  113.00705 Heterosexual (straight)            Always
## 403    86.18  189.99118 Heterosexual (straight)             Never
## 404    61.69  136.00088 Heterosexual (straight)             Never
## 405    61.24  135.00882 Heterosexual (straight)         Sometimes
## 406    87.09  191.99735 Heterosexual (straight)  Most of the time
## 407    72.58  160.00882 Heterosexual (straight)             Never
## 408    58.97  130.00441 Heterosexual (straight)  Most of the time
## 409    68.95  152.00617 Heterosexual (straight)            Rarely
## 410    54.43  119.99559                Bisexual            Rarely
## 411    70.31  155.00441 Heterosexual (straight)         Sometimes
## 412    70.31  155.00441 Heterosexual (straight)         Sometimes
## 413    68.04  150.00000 Heterosexual (straight)         Sometimes
## 414    83.01  183.00265 Heterosexual (straight)             Never
## 415    66.23  146.00970 Heterosexual (straight)         Sometimes
## 416    64.86  142.98942 Heterosexual (straight)            Rarely
## 417   117.94  260.00882 Heterosexual (straight)         Sometimes
## 418    54.43  119.99559 Heterosexual (straight)            Rarely
## 419    61.24  135.00882 Heterosexual (straight)            Rarely
## 420    65.77  144.99559 Heterosexual (straight)            Rarely
## 421    52.16  114.99118 Heterosexual (straight)  Most of the time
## 422    60.33  133.00265 Heterosexual (straight)            Rarely
## 423    83.92  185.00882 Heterosexual (straight)         Sometimes
## 424    65.32  144.00353 Heterosexual (straight)         Sometimes
## 425    58.97  130.00441 Heterosexual (straight)             Never
## 426    77.11  169.99559          Gay or lesbian  Most of the time
## 427    58.97  130.00441 Heterosexual (straight)            Rarely
## 428    54.43  119.99559 Heterosexual (straight)            Rarely
## 429    50.80  111.99295 Heterosexual (straight)         Sometimes
## 430    69.40  152.99824                Not sure         Sometimes
## 431    99.79  219.99559 Heterosexual (straight)             Never
## 432    74.84  164.99118 Heterosexual (straight)         Sometimes
## 433    72.58  160.00882 Heterosexual (straight)            Rarely
## 434    58.97  130.00441 Heterosexual (straight)            Rarely
## 435    68.04  150.00000 Heterosexual (straight)            Rarely
## 436    74.84  164.99118 Heterosexual (straight)         Sometimes
## 437    79.38  175.00000 Heterosexual (straight)            Always
## 438    77.11  169.99559 Heterosexual (straight)         Sometimes
## 439    61.24  135.00882 Heterosexual (straight)            Rarely
## 440   104.33  230.00441 Heterosexual (straight)  Most of the time
## 441    68.95  152.00617          Gay or lesbian              <NA>
## 442    61.24  135.00882 Heterosexual (straight)         Sometimes
## 443       NA         NA          Gay or lesbian  Most of the time
## 444    97.52  214.99118 Heterosexual (straight)         Sometimes
## 445    68.95  152.00617 Heterosexual (straight)             Never
## 446    67.13  147.99383 Heterosexual (straight)            Rarely
## 447    56.70  125.00000 Heterosexual (straight)            Rarely
## 448    79.38  175.00000 Heterosexual (straight)             Never
## 449    70.76  155.99647                Bisexual  Most of the time
## 450    56.70  125.00000 Heterosexual (straight)         Sometimes
## 451       NA         NA Heterosexual (straight)         Sometimes
## 452    58.97  130.00441                Bisexual         Sometimes
## 453    40.82   89.99118 Heterosexual (straight)            Rarely
## 454    56.25  124.00794 Heterosexual (straight)         Sometimes
## 455    49.44  108.99471 Heterosexual (straight)            Rarely
## 456    72.58  160.00882 Heterosexual (straight)            Rarely
## 457    85.73  188.99912 Heterosexual (straight)             Never
## 458    90.72  200.00000 Heterosexual (straight)             Never
## 459    87.54  192.98942 Heterosexual (straight)             Never
## 460    77.11  169.99559 Heterosexual (straight)             Never
## 461    86.18  189.99118 Heterosexual (straight)             Never
## 462   104.33  230.00441          Some other way            Always
## 463    97.98  216.00529 Heterosexual (straight)             Never
## 464    61.24  135.00882 Heterosexual (straight)             Never
## 465    83.92  185.00882 Heterosexual (straight)             Never
## 466    70.31  155.00441 Heterosexual (straight)             Never
## 467    77.11  169.99559 Heterosexual (straight)         Sometimes
## 468    89.36  197.00176 Heterosexual (straight)             Never
## 469   113.40  250.00000 Heterosexual (straight)             Never
## 470    63.50  139.99118 Heterosexual (straight)  Most of the time
## 471    57.61  127.00617 Heterosexual (straight)            Rarely
## 472    52.16  114.99118 Heterosexual (straight)            Rarely
## 473    49.90  110.00882 Heterosexual (straight)         Sometimes
## 474    52.16  114.99118 Heterosexual (straight)            Rarely
## 475    46.72  102.99824 Heterosexual (straight)  Most of the time
## 476    81.65  180.00441 Heterosexual (straight)             Never
## 477    68.04  150.00000                Bisexual  Most of the time
## 478    64.86  142.98942 Heterosexual (straight)            Rarely
## 479       NA         NA Heterosexual (straight)             Never
## 480       NA         NA          Gay or lesbian            Always
## 481    65.77  144.99559 Heterosexual (straight)            Rarely
## 482    81.65  180.00441 Heterosexual (straight)         Sometimes
## 483    62.60  138.00705          Gay or lesbian         Sometimes
## 484    48.08  105.99647 Heterosexual (straight)         Sometimes
## 485    47.63  105.00441 Heterosexual (straight)            Rarely
## 486    79.38  175.00000 Heterosexual (straight)              <NA>
## 487       NA         NA                Bisexual             Never
## 488    61.24  135.00882 Heterosexual (straight)            Rarely
## 489    68.04  150.00000 Heterosexual (straight)             Never
## 490    86.18  189.99118 Heterosexual (straight)             Never
## 491    96.62  213.00705 Heterosexual (straight)         Sometimes
## 492       NA         NA Heterosexual (straight)             Never
## 493   120.20  264.99118 Heterosexual (straight)         Sometimes
## 494       NA         NA Heterosexual (straight)         Sometimes
## 495    81.65  180.00441 Heterosexual (straight)  Most of the time
## 496    63.50  139.99118          Gay or lesbian  Most of the time
## 497    65.77  144.99559 Heterosexual (straight)         Sometimes
## 498    68.04  150.00000                Bisexual  Most of the time
## 499   127.01  280.00441 Heterosexual (straight)         Sometimes
## 500       NA         NA          Gay or lesbian             Never
## 501    61.24  135.00882 Heterosexual (straight)         Sometimes
## 502       NA         NA                Bisexual            Rarely
## 503    43.09   94.99559                Not sure         Sometimes
## 504    58.51  128.99030 Heterosexual (straight)              <NA>
## 505    71.22  157.01058 Heterosexual (straight)         Sometimes
## 506    45.36  100.00000 Heterosexual (straight)             Never
## 507    56.70  125.00000 Heterosexual (straight)         Sometimes
## 508    54.43  119.99559 Heterosexual (straight)         Sometimes
## 509    61.24  135.00882 Heterosexual (straight)            Rarely
## 510    63.50  139.99118          Gay or lesbian            Always
## 511    63.50  139.99118 Heterosexual (straight)             Never
## 512    44.45   97.99383          Some other way         Sometimes
## 513    58.97  130.00441 Heterosexual (straight)              <NA>
## 514   117.94  260.00882 Heterosexual (straight)            Rarely
## 515    63.50  139.99118 Heterosexual (straight)             Never
## 516    99.79  219.99559                Bisexual         Sometimes
## 517    61.24  135.00882          Gay or lesbian            Always
## 518    74.84  164.99118 Heterosexual (straight)             Never
## 519   104.33  230.00441          Gay or lesbian         Sometimes
## 520    68.04  150.00000 Heterosexual (straight)            Rarely
## 521    72.58  160.00882          Gay or lesbian  Most of the time
## 522    67.59  149.00794 Heterosexual (straight)            Rarely
## 523    54.43  119.99559 Heterosexual (straight)            Always
## 524       NA         NA Heterosexual (straight)             Never
## 525    99.79  219.99559 Heterosexual (straight)            Rarely
## 526    99.79  219.99559 Heterosexual (straight)             Never
## 527    97.52  214.99118          Some other way         Sometimes
## 528    53.52  117.98942 Heterosexual (straight)            Rarely
## 529    72.58  160.00882 Heterosexual (straight)  Most of the time
## 530    63.50  139.99118                Bisexual         Sometimes
## 531    68.04  150.00000          Some other way  Most of the time
## 532    61.24  135.00882 Heterosexual (straight)         Sometimes
## 533    65.77  144.99559 Heterosexual (straight)  Most of the time
## 534       NA         NA Heterosexual (straight)            Rarely
## 535    74.84  164.99118 Heterosexual (straight)              <NA>
## 536    67.13  147.99383 Heterosexual (straight)            Rarely
## 537    60.78  133.99471 Heterosexual (straight)         Sometimes
## 538    54.89  121.00970          Some other way         Sometimes
## 539    58.97  130.00441 Heterosexual (straight)            Rarely
## 540    70.31  155.00441                Not sure            Rarely
## 541    63.50  139.99118 Heterosexual (straight)            Rarely
## 542    61.24  135.00882 Heterosexual (straight)            Always
## 543    72.58  160.00882 Heterosexual (straight)            Rarely
## 544    56.25  124.00794 Heterosexual (straight)              <NA>
## 545    68.04  150.00000                Bisexual         Sometimes
## 546    58.97  130.00441 Heterosexual (straight)  Most of the time
## 547    83.92  185.00882 Heterosexual (straight)  Most of the time
## 548    64.41  141.99735 Heterosexual (straight)         Sometimes
## 549    52.16  114.99118                Bisexual  Most of the time
## 550    47.63  105.00441 Heterosexual (straight)            Always
## 551       NA         NA Heterosexual (straight)              <NA>
## 552    54.43  119.99559                Not sure            Always
## 553   102.97  227.00617 Heterosexual (straight)  Most of the time
## 554    68.04  150.00000 Heterosexual (straight)             Never
## 555    57.15  125.99206          Some other way         Sometimes
## 556    95.26  210.00882 Heterosexual (straight)  Most of the time
## 557    74.84  164.99118 Heterosexual (straight)             Never
## 558       NA         NA Heterosexual (straight)         Sometimes
## 559    52.16  114.99118 Heterosexual (straight)              <NA>
## 560    59.88  132.01058          Some other way         Sometimes
## 561    53.52  117.98942                Not sure         Sometimes
## 562       NA         NA Heterosexual (straight)             Never
## 563    63.50  139.99118 Heterosexual (straight)         Sometimes
## 564       NA         NA Heterosexual (straight)         Sometimes
## 565    48.54  107.01058                Not sure  Most of the time
## 566    56.70  125.00000 Heterosexual (straight)  Most of the time
## 567    56.70  125.00000 Heterosexual (straight)             Never
## 568    63.50  139.99118 Heterosexual (straight)             Never
## 569    61.24  135.00882 Heterosexual (straight)            Rarely
## 570    92.99  205.00441 Heterosexual (straight)              <NA>
## 571    83.92  185.00882 Heterosexual (straight)            Rarely
## 572       NA         NA Heterosexual (straight)  Most of the time
## 573    82.56  182.01058 Heterosexual (straight)            Rarely
## 574    50.80  111.99295 Heterosexual (straight)              <NA>
## 575    94.35  208.00265                Bisexual  Most of the time
## 576   105.24  232.01058 Heterosexual (straight)             Never
## 577       NA         NA                Bisexual            Always
## 578    77.11  169.99559          Some other way            Rarely
## 579    88.45  194.99559 Heterosexual (straight)         Sometimes
## 580       NA         NA Heterosexual (straight)         Sometimes
## 581    44.45   97.99383 Heterosexual (straight)  Most of the time
## 582    77.11  169.99559 Heterosexual (straight)            Rarely
## 583    72.58  160.00882 Heterosexual (straight)  Most of the time
## 584    63.50  139.99118 Heterosexual (straight)         Sometimes
## 585    90.72  200.00000 Heterosexual (straight)             Never
## 586    79.38  175.00000          Some other way  Most of the time
## 587   104.33  230.00441 Heterosexual (straight)             Never
## 588    90.72  200.00000 Heterosexual (straight)         Sometimes
## 589    90.72  200.00000          Gay or lesbian  Most of the time
## 590    76.20  167.98942 Heterosexual (straight)              <NA>
## 591    63.96  141.00529 Heterosexual (straight)  Most of the time
## 592    68.95  152.00617 Heterosexual (straight)              <NA>
## 593    42.64   94.00353 Heterosexual (straight)  Most of the time
## 594    46.27  102.00617                Not sure         Sometimes
## 595    52.16  114.99118                Not sure         Sometimes
## 596       NA         NA Heterosexual (straight)             Never
## 597    58.97  130.00441 Heterosexual (straight)         Sometimes
## 598    79.38  175.00000 Heterosexual (straight)  Most of the time
## 599   127.01  280.00441 Heterosexual (straight)             Never
## 600    93.90  207.01058 Heterosexual (straight)            Always
## 601    83.92  185.00882 Heterosexual (straight)              <NA>
## 602    44.45   97.99383 Heterosexual (straight)         Sometimes
## 603    71.22  157.01058          Some other way            Always
## 604    48.99  108.00265 Heterosexual (straight)             Never
## 605       NA         NA Heterosexual (straight)            Always
## 606    52.16  114.99118 Heterosexual (straight)         Sometimes
## 607    52.16  114.99118 Heterosexual (straight)  Most of the time
## 608    72.58  160.00882 Heterosexual (straight)         Sometimes
## 609    65.77  144.99559 Heterosexual (straight)         Sometimes
## 610    65.77  144.99559          Gay or lesbian         Sometimes
## 611    58.06  127.99824 Heterosexual (straight)            Always
## 612    86.18  189.99118 Heterosexual (straight)             Never
## 613       NA         NA                Bisexual              <NA>
## 614    70.31  155.00441 Heterosexual (straight)         Sometimes
## 615    61.24  135.00882          Some other way              <NA>
## 616       NA         NA          Some other way         Sometimes
## 617    70.31  155.00441 Heterosexual (straight)  Most of the time
## 618    63.50  139.99118                Not sure            Always
## 619    65.77  144.99559          Some other way            Rarely
## 620    52.16  114.99118 Heterosexual (straight)            Rarely
## 621    72.58  160.00882                Not sure         Sometimes
## 622    72.58  160.00882 Heterosexual (straight)             Never
## 623    62.60  138.00705 Heterosexual (straight)         Sometimes
## 624       NA         NA Heterosexual (straight)  Most of the time
## 625       NA         NA Heterosexual (straight)         Sometimes
## 626    70.31  155.00441 Heterosexual (straight)  Most of the time
## 627    58.97  130.00441 Heterosexual (straight)             Never
## 628    60.78  133.99471 Heterosexual (straight)             Never
## 629    72.58  160.00882 Heterosexual (straight)             Never
## 630    79.38  175.00000 Heterosexual (straight)         Sometimes
## 631    58.06  127.99824 Heterosexual (straight)            Rarely
## 632    50.35  111.00088                Bisexual            Always
## 633    72.58  160.00882 Heterosexual (straight)         Sometimes
## 634    68.04  150.00000 Heterosexual (straight)         Sometimes
## 635       NA         NA Heterosexual (straight)         Sometimes
## 636    52.16  114.99118 Heterosexual (straight)             Never
## 637    49.90  110.00882 Heterosexual (straight)            Rarely
## 638    53.07  116.99735 Heterosexual (straight)         Sometimes
## 639    47.17  103.99030 Heterosexual (straight)  Most of the time
## 640    55.79  122.99383                Bisexual  Most of the time
## 641    97.52  214.99118 Heterosexual (straight)  Most of the time
## 642    48.54  107.01058 Heterosexual (straight)            Rarely
## 643    90.72  200.00000          Some other way            Always
## 644    55.79  122.99383 Heterosexual (straight)         Sometimes
## 645    58.97  130.00441 Heterosexual (straight)             Never
## 646    66.23  146.00970 Heterosexual (straight)             Never
## 647    81.65  180.00441 Heterosexual (straight)  Most of the time
## 648    51.71  113.99912 Heterosexual (straight)         Sometimes
## 649    80.74  177.99824 Heterosexual (straight)            Rarely
## 650    71.67  158.00265 Heterosexual (straight)         Sometimes
## 651    83.46  183.99471 Heterosexual (straight)            Rarely
## 652    54.43  119.99559 Heterosexual (straight)         Sometimes
## 653    65.77  144.99559 Heterosexual (straight)             Never
## 654    63.50  139.99118                Bisexual  Most of the time
## 655    74.84  164.99118 Heterosexual (straight)            Rarely
## 656    54.43  119.99559 Heterosexual (straight)             Never
## 657    81.65  180.00441          Some other way  Most of the time
## 658       NA         NA Heterosexual (straight)              <NA>
## 659    66.68  147.00176 Heterosexual (straight)  Most of the time
## 660    52.16  114.99118 Heterosexual (straight)            Rarely
## 661       NA         NA Heterosexual (straight)            Rarely
## 662    49.90  110.00882 Heterosexual (straight)            Rarely
## 663    43.09   94.99559                Not sure  Most of the time
## 664    65.77  144.99559 Heterosexual (straight)             Never
## 665    52.16  114.99118 Heterosexual (straight)              <NA>
## 666   127.01  280.00441 Heterosexual (straight)  Most of the time
## 667    58.97  130.00441 Heterosexual (straight)  Most of the time
## 668    58.97  130.00441 Heterosexual (straight)             Never
## 669   117.94  260.00882 Heterosexual (straight)             Never
## 670    65.77  144.99559 Heterosexual (straight)  Most of the time
## 671    63.50  139.99118 Heterosexual (straight)  Most of the time
## 672    65.77  144.99559 Heterosexual (straight)            Rarely
## 673    68.95  152.00617 Heterosexual (straight)  Most of the time
## 674    90.72  200.00000 Heterosexual (straight)            Rarely
## 675   113.40  250.00000 Heterosexual (straight)            Rarely
## 676    63.50  139.99118 Heterosexual (straight)             Never
## 677    79.83  175.99206 Heterosexual (straight)  Most of the time
## 678    58.97  130.00441 Heterosexual (straight)            Rarely
## 679    78.93  174.00794 Heterosexual (straight)            Rarely
## 680    90.72  200.00000 Heterosexual (straight)            Always
## 681    51.26  113.00705                Bisexual         Sometimes
## 682    47.63  105.00441 Heterosexual (straight)             Never
## 683    81.65  180.00441                Bisexual  Most of the time
## 684    59.42  130.99647 Heterosexual (straight)         Sometimes
## 685    49.44  108.99471 Heterosexual (straight)  Most of the time
## 686    56.70  125.00000 Heterosexual (straight)             Never
## 687    65.77  144.99559                Bisexual         Sometimes
## 688    54.43  119.99559 Heterosexual (straight)  Most of the time
## 689    72.58  160.00882 Heterosexual (straight)            Rarely
## 690    58.97  130.00441 Heterosexual (straight)             Never
## 691       NA         NA                Bisexual  Most of the time
## 692       NA         NA Heterosexual (straight)             Never
## 693    70.31  155.00441                Bisexual            Always
## 694    68.04  150.00000 Heterosexual (straight)            Rarely
## 695       NA         NA Heterosexual (straight)         Sometimes
## 696    74.84  164.99118                Not sure  Most of the time
## 697    63.50  139.99118 Heterosexual (straight)         Sometimes
## 698   106.60  235.00882 Heterosexual (straight)            Rarely
## 699    90.72  200.00000 Heterosexual (straight)             Never
## 700    57.61  127.00617 Heterosexual (straight)            Rarely
## 701    72.58  160.00882 Heterosexual (straight)            Rarely
## 702    83.01  183.00265 Heterosexual (straight)         Sometimes
## 703    90.27  199.00794 Heterosexual (straight)             Never
## 704    84.37  186.00088 Heterosexual (straight)            Always
## 705    53.07  116.99735 Heterosexual (straight)            Rarely
## 706    52.16  114.99118                Not sure         Sometimes
## 707    91.17  200.99206 Heterosexual (straight)            Rarely
## 708    63.50  139.99118 Heterosexual (straight)         Sometimes
## 709    78.02  172.00176 Heterosexual (straight)            Rarely
## 710    99.79  219.99559 Heterosexual (straight)             Never
## 711    49.90  110.00882                Bisexual         Sometimes
## 712    73.94  163.00705          Some other way             Never
## 713    48.08  105.99647                Bisexual         Sometimes
## 714    73.03  161.00088 Heterosexual (straight)            Rarely
## 715    72.58  160.00882 Heterosexual (straight)             Never
## 716    54.89  121.00970          Some other way            Always
## 717    90.72  200.00000 Heterosexual (straight)             Never
## 718    74.84  164.99118          Some other way  Most of the time
## 719    61.24  135.00882 Heterosexual (straight)  Most of the time
## 720    63.50  139.99118 Heterosexual (straight)         Sometimes
## 721    90.72  200.00000          Some other way            Always
## 722    52.16  114.99118 Heterosexual (straight)              <NA>
## 723    90.72  200.00000 Heterosexual (straight)            Rarely
## 724    45.81  100.99206 Heterosexual (straight)            Rarely
## 725    51.71  113.99912 Heterosexual (straight)         Sometimes
## 726    47.63  105.00441                Bisexual         Sometimes
## 727    81.65  180.00441 Heterosexual (straight)         Sometimes
## 728    54.43  119.99559                Bisexual  Most of the time
## 729    54.43  119.99559 Heterosexual (straight)            Rarely
## 730    77.11  169.99559                Not sure            Rarely
## 731   102.06  225.00000          Some other way  Most of the time
## 732    65.32  144.00353          Some other way         Sometimes
## 733    61.24  135.00882 Heterosexual (straight)         Sometimes
## 734       NA         NA Heterosexual (straight)  Most of the time
## 735    58.97  130.00441 Heterosexual (straight)            Rarely
## 736    56.70  125.00000 Heterosexual (straight)  Most of the time
## 737    55.34  122.00176 Heterosexual (straight)             Never
## 738    70.31  155.00441 Heterosexual (straight)         Sometimes
## 739       NA         NA                Bisexual         Sometimes
## 740    97.52  214.99118 Heterosexual (straight)             Never
## 741    61.69  136.00088          Gay or lesbian            Rarely
## 742       NA         NA Heterosexual (straight)         Sometimes
## 743   104.33  230.00441 Heterosexual (straight)            Rarely
## 744    77.11  169.99559 Heterosexual (straight)             Never
## 745    63.50  139.99118 Heterosexual (straight)         Sometimes
## 746    55.79  122.99383 Heterosexual (straight)         Sometimes
## 747    54.43  119.99559 Heterosexual (straight)         Sometimes
## 748   102.06  225.00000                Bisexual         Sometimes
## 749       NA         NA Heterosexual (straight)  Most of the time
## 750    68.04  150.00000                Bisexual         Sometimes
## 751    77.11  169.99559 Heterosexual (straight)         Sometimes
## 752    58.97  130.00441                Bisexual            Rarely
## 753    62.14  136.99295 Heterosexual (straight)  Most of the time
## 754    70.76  155.99647          Some other way  Most of the time
## 755    81.65  180.00441 Heterosexual (straight)            Rarely
## 756    72.58  160.00882          Gay or lesbian  Most of the time
## 757       NA         NA Heterosexual (straight)            Rarely
## 758    92.99  205.00441 Heterosexual (straight)             Never
## 759    97.52  214.99118 Heterosexual (straight)            Rarely
## 760    68.04  150.00000                Not sure         Sometimes
## 761    83.92  185.00882 Heterosexual (straight)            Always
## 762    49.44  108.99471 Heterosexual (straight)            Always
## 763    88.45  194.99559 Heterosexual (straight)            Rarely
## 764    77.11  169.99559 Heterosexual (straight)            Rarely
## 765    75.75  166.99735 Heterosexual (straight)            Rarely
## 766    63.50  139.99118                Bisexual  Most of the time
## 767    74.84  164.99118                Bisexual         Sometimes
## 768    86.18  189.99118 Heterosexual (straight)         Sometimes
## 769    97.52  214.99118 Heterosexual (straight)         Sometimes
## 770    85.28  188.00705 Heterosexual (straight)         Sometimes
## 771   115.67  255.00441 Heterosexual (straight)            Rarely
## 772    63.50  139.99118                Bisexual            Always
## 773    58.97  130.00441                Bisexual         Sometimes
## 774    48.54  107.01058 Heterosexual (straight)         Sometimes
## 775    65.77  144.99559 Heterosexual (straight)            Rarely
## 776    62.60  138.00705 Heterosexual (straight)         Sometimes
## 777    61.24  135.00882          Gay or lesbian            Rarely
## 778    69.85  153.99030          Gay or lesbian            Rarely
## 779    88.45  194.99559 Heterosexual (straight)  Most of the time
## 780    63.50  139.99118                Bisexual         Sometimes
## 781       NA         NA                Bisexual              <NA>
## 782       NA         NA                Bisexual         Sometimes
## 783       NA         NA          Gay or lesbian             Never
## 784       NA         NA                Bisexual         Sometimes
## 785       NA         NA                Bisexual              <NA>
## 786       NA         NA                Bisexual              <NA>
## 787       NA         NA                Bisexual         Sometimes
## 788       NA         NA          Some other way         Sometimes
## 789       NA         NA          Gay or lesbian         Sometimes
## 790       NA         NA          Some other way         Sometimes
## 791       NA         NA                Bisexual              <NA>
## 792       NA         NA          Gay or lesbian         Sometimes
## 793       NA         NA                Bisexual            Always
## 794       NA         NA                Not sure              <NA>
## 795       NA         NA                Bisexual              <NA>
## 796       NA         NA                Not sure              <NA>
## 797       NA         NA          Gay or lesbian              <NA>
## 798       NA         NA          Gay or lesbian         Sometimes
## 799       NA         NA                Bisexual              <NA>
## 800       NA         NA                Bisexual             Never
## 801       NA         NA                Bisexual            Always
## 802       NA         NA                Not sure            Always
## 803       NA         NA                Bisexual              <NA>
## 804       NA         NA                Bisexual              <NA>
## 805       NA         NA          Gay or lesbian              <NA>
## 806       NA         NA          Gay or lesbian             Never
## 807       NA         NA                Bisexual         Sometimes
## 808       NA         NA                Bisexual              <NA>
## 809       NA         NA          Some other way            Always
## 810    58.97  130.00441 Heterosexual (straight)  Most of the time
## 811    92.99  205.00441 Heterosexual (straight)            Rarely
## 812    66.68  147.00176                Bisexual            Always
## 813    62.60  138.00705 Heterosexual (straight)  Most of the time
## 814   111.13  244.99559 Heterosexual (straight)            Always
## 815    57.61  127.00617 Heterosexual (straight)  Most of the time
## 816    61.69  136.00088 Heterosexual (straight)             Never
## 817   103.87  228.99030 Heterosexual (straight)             Never
## 818    53.52  117.98942          Gay or lesbian         Sometimes
## 819    92.99  205.00441 Heterosexual (straight)            Always
## 820    83.92  185.00882 Heterosexual (straight)  Most of the time
## 821    52.16  114.99118 Heterosexual (straight)            Always
## 822    65.77  144.99559 Heterosexual (straight)            Rarely
## 823    56.70  125.00000                Bisexual  Most of the time
## 824    65.32  144.00353 Heterosexual (straight)             Never
## 825    57.15  125.99206 Heterosexual (straight)         Sometimes
## 826    63.50  139.99118 Heterosexual (straight)  Most of the time
## 827    77.11  169.99559 Heterosexual (straight)         Sometimes
## 828    53.07  116.99735                Bisexual  Most of the time
## 829    90.72  200.00000 Heterosexual (straight)         Sometimes
## 830    56.70  125.00000 Heterosexual (straight)         Sometimes
## 831    49.90  110.00882 Heterosexual (straight)         Sometimes
## 832    68.04  150.00000 Heterosexual (straight)            Rarely
## 833    68.04  150.00000 Heterosexual (straight)            Rarely
## 834       NA         NA Heterosexual (straight)             Never
## 835    54.43  119.99559 Heterosexual (straight)         Sometimes
## 836    79.38  175.00000 Heterosexual (straight)         Sometimes
## 837    48.54  107.01058 Heterosexual (straight)         Sometimes
## 838    74.84  164.99118 Heterosexual (straight)            Always
## 839       NA         NA Heterosexual (straight)            Rarely
## 840    63.05  138.99912 Heterosexual (straight)         Sometimes
## 841    49.90  110.00882 Heterosexual (straight)            Rarely
## 842       NA         NA                Bisexual            Always
## 843    68.04  150.00000 Heterosexual (straight)         Sometimes
## 844    90.72  200.00000 Heterosexual (straight)            Rarely
## 845    60.78  133.99471 Heterosexual (straight)            Rarely
## 846    56.70  125.00000                Bisexual  Most of the time
## 847    73.94  163.00705 Heterosexual (straight)            Rarely
## 848    70.31  155.00441 Heterosexual (straight)            Rarely
## 849       NA         NA          Some other way            Rarely
## 850    70.31  155.00441                Bisexual         Sometimes
## 851    52.16  114.99118 Heterosexual (straight)            Rarely
## 852    54.43  119.99559 Heterosexual (straight)            Rarely
## 853    68.04  150.00000 Heterosexual (straight)         Sometimes
## 854    44.00   97.00176                Bisexual  Most of the time
## 855    77.11  169.99559 Heterosexual (straight)         Sometimes
## 856    74.84  164.99118 Heterosexual (straight)         Sometimes
## 857    58.51  128.99030 Heterosexual (straight)         Sometimes
## 858    58.97  130.00441 Heterosexual (straight)            Always
## 859    65.77  144.99559 Heterosexual (straight)         Sometimes
## 860    78.02  172.00176 Heterosexual (straight)             Never
## 861    90.27  199.00794          Some other way         Sometimes
## 862   116.12  255.99647                Not sure  Most of the time
## 863    76.20  167.98942 Heterosexual (straight)            Rarely
## 864    54.43  119.99559 Heterosexual (straight)            Rarely
## 865    58.97  130.00441 Heterosexual (straight)         Sometimes
## 866    53.98  119.00353 Heterosexual (straight)  Most of the time
## 867    47.63  105.00441 Heterosexual (straight)            Rarely
## 868    58.97  130.00441 Heterosexual (straight)         Sometimes
## 869    68.04  150.00000 Heterosexual (straight)         Sometimes
## 870    48.08  105.99647                Bisexual            Rarely
## 871    49.90  110.00882                Not sure            Always
## 872    61.24  135.00882 Heterosexual (straight)             Never
## 873       NA         NA                Bisexual         Sometimes
## 874    52.16  114.99118          Gay or lesbian             Never
## 875       NA         NA Heterosexual (straight)  Most of the time
## 876    54.43  119.99559          Gay or lesbian         Sometimes
## 877    72.58  160.00882 Heterosexual (straight)             Never
## 878    68.04  150.00000                Not sure              <NA>
## 879    79.38  175.00000 Heterosexual (straight)             Never
## 880    60.78  133.99471 Heterosexual (straight)            Rarely
## 881       NA         NA Heterosexual (straight)         Sometimes
## 882    94.80  208.99471          Gay or lesbian  Most of the time
## 883    77.11  169.99559 Heterosexual (straight)         Sometimes
## 884    89.81  197.99383 Heterosexual (straight)             Never
## 885    99.79  219.99559 Heterosexual (straight)            Rarely
## 886       NA         NA Heterosexual (straight)         Sometimes
## 887   108.86  239.99118          Some other way  Most of the time
## 888    63.50  139.99118 Heterosexual (straight)         Sometimes
## 889    68.04  150.00000 Heterosexual (straight)             Never
## 890    51.26  113.00705 Heterosexual (straight)             Never
## 891    56.70  125.00000                Not sure            Always
## 892       NA         NA                Bisexual         Sometimes
## 893    63.50  139.99118 Heterosexual (straight)            Always
## 894       NA         NA          Some other way            Always
## 895    39.01   86.00088 Heterosexual (straight)            Rarely
## 896       NA         NA          Some other way  Most of the time
## 897    60.78  133.99471 Heterosexual (straight)             Never
## 898    61.69  136.00088 Heterosexual (straight)             Never
## 899       NA         NA          Some other way            Always
## 900    63.50  139.99118 Heterosexual (straight)  Most of the time
## 901    49.90  110.00882 Heterosexual (straight)             Never
## 902    68.04  150.00000                Bisexual  Most of the time
## 903    43.09   94.99559 Heterosexual (straight)            Rarely
## 904    70.31  155.00441 Heterosexual (straight)         Sometimes
## 905    79.38  175.00000 Heterosexual (straight)            Rarely
## 906       NA         NA Heterosexual (straight)             Never
## 907    63.50  139.99118 Heterosexual (straight)            Rarely
## 908    83.92  185.00882 Heterosexual (straight)  Most of the time
## 909    54.43  119.99559 Heterosexual (straight)             Never
## 910    55.34  122.00176 Heterosexual (straight)             Never
## 911    56.70  125.00000 Heterosexual (straight)            Always
## 912    81.65  180.00441                Bisexual            Rarely
## 913    48.08  105.99647 Heterosexual (straight)         Sometimes
## 914    64.86  142.98942 Heterosexual (straight)         Sometimes
## 915   141.52  311.99295          Some other way         Sometimes
## 916    54.43  119.99559 Heterosexual (straight)  Most of the time
## 917    69.85  153.99030                Bisexual  Most of the time
## 918    68.04  150.00000 Heterosexual (straight)            Always
## 919    72.58  160.00882 Heterosexual (straight)             Never
## 920       NA         NA Heterosexual (straight)            Rarely
## 921    55.79  122.99383 Heterosexual (straight)            Rarely
## 922    80.74  177.99824 Heterosexual (straight)  Most of the time
## 923    58.97  130.00441 Heterosexual (straight)         Sometimes
## 924    76.66  169.00353 Heterosexual (straight)             Never
## 925   104.33  230.00441 Heterosexual (straight)            Rarely
## 926    57.15  125.99206 Heterosexual (straight)             Never
## 927    66.23  146.00970          Some other way            Always
## 928       NA         NA Heterosexual (straight)         Sometimes
## 929    85.28  188.00705 Heterosexual (straight)  Most of the time
## 930    77.57  171.00970                Bisexual             Never
## 931       NA         NA Heterosexual (straight)         Sometimes
## 932   113.40  250.00000 Heterosexual (straight)              <NA>
## 933    61.24  135.00882                Bisexual  Most of the time
## 934    68.04  150.00000          Some other way  Most of the time
## 935       NA         NA Heterosexual (straight)             Never
## 936   102.06  225.00000 Heterosexual (straight)         Sometimes
## 937       NA         NA Heterosexual (straight)            Rarely
## 938    58.97  130.00441 Heterosexual (straight)             Never
## 939    81.65  180.00441 Heterosexual (straight)         Sometimes
## 940   136.08  300.00000                Not sure            Always
## 941    47.17  103.99030 Heterosexual (straight)             Never
## 942    52.16  114.99118 Heterosexual (straight)            Rarely
## 943    84.37  186.00088 Heterosexual (straight)            Rarely
## 944    49.90  110.00882 Heterosexual (straight)            Rarely
## 945    65.77  144.99559 Heterosexual (straight)             Never
## 946       NA         NA Heterosexual (straight)             Never
## 947    46.27  102.00617                Bisexual            Always
## 948    79.38  175.00000 Heterosexual (straight)         Sometimes
## 949    58.97  130.00441 Heterosexual (straight)         Sometimes
## 950    83.92  185.00882                Not sure         Sometimes
## 951       NA         NA Heterosexual (straight)             Never
## 952    55.79  122.99383 Heterosexual (straight)  Most of the time
## 953    44.91   99.00794                Bisexual            Rarely
## 954    54.43  119.99559 Heterosexual (straight)            Rarely
## 955    77.11  169.99559          Gay or lesbian             Never
## 956    71.22  157.01058 Heterosexual (straight)         Sometimes
## 957    49.90  110.00882 Heterosexual (straight)             Never
## 958    83.92  185.00882                Bisexual            Always
## 959    74.84  164.99118 Heterosexual (straight)            Rarely
## 960    83.01  183.00265 Heterosexual (straight)         Sometimes
## 961    54.43  119.99559                Bisexual            Rarely
## 962    58.97  130.00441 Heterosexual (straight)             Never
## 963    58.97  130.00441 Heterosexual (straight)  Most of the time
## 964    81.65  180.00441 Heterosexual (straight)         Sometimes
## 965    55.79  122.99383 Heterosexual (straight)         Sometimes
## 966    68.04  150.00000 Heterosexual (straight)              <NA>
## 967    45.36  100.00000 Heterosexual (straight)             Never
## 968   111.13  244.99559 Heterosexual (straight)            Always
## 969    90.72  200.00000 Heterosexual (straight)             Never
## 970    59.42  130.99647 Heterosexual (straight)         Sometimes
## 971    52.16  114.99118 Heterosexual (straight)            Rarely
## 972    76.66  169.00353 Heterosexual (straight)            Rarely
## 973       NA         NA Heterosexual (straight)             Never
## 974       NA         NA Heterosexual (straight)              <NA>
## 975    63.50  139.99118 Heterosexual (straight)  Most of the time
## 976   100.70  222.00176 Heterosexual (straight)              <NA>
## 977    62.60  138.00705 Heterosexual (straight)         Sometimes
## 978    70.31  155.00441 Heterosexual (straight)             Never
## 979    56.70  125.00000 Heterosexual (straight)             Never
## 980    90.72  200.00000                Bisexual             Never
## 981    45.36  100.00000 Heterosexual (straight)            Rarely
## 982    58.97  130.00441 Heterosexual (straight)              <NA>
## 983    43.09   94.99559 Heterosexual (straight)         Sometimes
## 984    81.65  180.00441 Heterosexual (straight)         Sometimes
## 985    61.24  135.00882 Heterosexual (straight)            Rarely
## 986    78.02  172.00176 Heterosexual (straight)         Sometimes
## 987    63.50  139.99118 Heterosexual (straight)             Never
## 988    84.82  186.99295          Gay or lesbian         Sometimes
## 989    56.70  125.00000 Heterosexual (straight)         Sometimes
## 990    56.70  125.00000 Heterosexual (straight)            Rarely
## 991   122.47  269.99559 Heterosexual (straight)             Never
## 992    56.70  125.00000                Bisexual         Sometimes
## 993    84.82  186.99295                Bisexual         Sometimes
## 994    54.43  119.99559          Some other way  Most of the time
## 995    63.50  139.99118                Bisexual  Most of the time
## 996       NA         NA                Bisexual            Always
## 997    65.77  144.99559 Heterosexual (straight)             Never
## 998    90.72  200.00000 Heterosexual (straight)            Always
## 999       NA         NA                Not sure         Sometimes
## 1000   63.50  139.99118 Heterosexual (straight)  Most of the time
## 1001      NA         NA Heterosexual (straight)  Most of the time
## 1002   69.40  152.99824 Heterosexual (straight)             Never
## 1003   54.43  119.99559 Heterosexual (straight)             Never
## 1004      NA         NA Heterosexual (straight)            Rarely
## 1005   65.77  144.99559 Heterosexual (straight)         Sometimes
## 1006   71.67  158.00265 Heterosexual (straight)            Rarely
## 1007  103.87  228.99030 Heterosexual (straight)            Always
## 1008   55.34  122.00176                Not sure  Most of the time
## 1009   77.11  169.99559                Not sure  Most of the time
## 1010  104.33  230.00441 Heterosexual (straight)         Sometimes
## 1011      NA         NA          Some other way            Always
## 1012   47.63  105.00441 Heterosexual (straight)             Never
## 1013   87.09  191.99735 Heterosexual (straight)         Sometimes
## 1014   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1015      NA         NA Heterosexual (straight)         Sometimes
## 1016      NA         NA Heterosexual (straight)            Rarely
## 1017   98.88  217.98942                Bisexual             Never
## 1018   61.24  135.00882 Heterosexual (straight)  Most of the time
## 1019   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1020   72.58  160.00882 Heterosexual (straight)             Never
## 1021   70.31  155.00441 Heterosexual (straight)             Never
## 1022   58.97  130.00441 Heterosexual (straight)            Always
## 1023   90.72  200.00000                Bisexual  Most of the time
## 1024   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1025      NA         NA                Bisexual              <NA>
## 1026   52.16  114.99118          Gay or lesbian  Most of the time
## 1027   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1028   79.38  175.00000 Heterosexual (straight)             Never
## 1029   68.04  150.00000 Heterosexual (straight)             Never
## 1030      NA         NA Heterosexual (straight)             Never
## 1031  113.40  250.00000                Not sure         Sometimes
## 1032   48.99  108.00265                Not sure  Most of the time
## 1033   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1034   56.70  125.00000                Bisexual         Sometimes
## 1035   72.58  160.00882 Heterosexual (straight)             Never
## 1036   72.58  160.00882 Heterosexual (straight)         Sometimes
## 1037   54.43  119.99559 Heterosexual (straight)            Rarely
## 1038   79.38  175.00000                Bisexual  Most of the time
## 1039   81.65  180.00441 Heterosexual (straight)             Never
## 1040   95.26  210.00882 Heterosexual (straight)  Most of the time
## 1041   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1042   59.88  132.01058 Heterosexual (straight)         Sometimes
## 1043   73.48  161.99295 Heterosexual (straight)         Sometimes
## 1044   96.16  211.99295 Heterosexual (straight)         Sometimes
## 1045      NA         NA Heterosexual (straight)         Sometimes
## 1046      NA         NA          Some other way         Sometimes
## 1047   54.43  119.99559 Heterosexual (straight)            Always
## 1048      NA         NA                Bisexual  Most of the time
## 1049   84.82  186.99295 Heterosexual (straight)             Never
## 1050   62.14  136.99295 Heterosexual (straight)  Most of the time
## 1051   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1052   81.65  180.00441 Heterosexual (straight)            Rarely
## 1053   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1054   56.70  125.00000 Heterosexual (straight)             Never
## 1055      NA         NA Heterosexual (straight)         Sometimes
## 1056      NA         NA                Not sure             Never
## 1057   74.84  164.99118 Heterosexual (straight)            Rarely
## 1058   46.27  102.00617 Heterosexual (straight)              <NA>
## 1059   44.45   97.99383 Heterosexual (straight)              <NA>
## 1060   58.51  128.99030 Heterosexual (straight)            Rarely
## 1061   37.20   82.01058 Heterosexual (straight)         Sometimes
## 1062      NA         NA Heterosexual (straight)             Never
## 1063   71.67  158.00265 Heterosexual (straight)             Never
## 1064   56.25  124.00794                Bisexual         Sometimes
## 1065  136.08  300.00000 Heterosexual (straight)  Most of the time
## 1066   75.75  166.99735 Heterosexual (straight)             Never
## 1067   58.97  130.00441 Heterosexual (straight)             Never
## 1068  108.86  239.99118 Heterosexual (straight)            Rarely
## 1069  136.08  300.00000 Heterosexual (straight)         Sometimes
## 1070      NA         NA Heterosexual (straight)         Sometimes
## 1071   61.24  135.00882 Heterosexual (straight)  Most of the time
## 1072   62.60  138.00705 Heterosexual (straight)         Sometimes
## 1073   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1074   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1075      NA         NA          Some other way         Sometimes
## 1076   44.45   97.99383 Heterosexual (straight)         Sometimes
## 1077   81.65  180.00441 Heterosexual (straight)            Rarely
## 1078   80.29  177.00617 Heterosexual (straight)  Most of the time
## 1079   52.16  114.99118 Heterosexual (straight)             Never
## 1080   72.58  160.00882 Heterosexual (straight)             Never
## 1081  102.06  225.00000 Heterosexual (straight)             Never
## 1082   65.77  144.99559 Heterosexual (straight)  Most of the time
## 1083   88.45  194.99559 Heterosexual (straight)            Rarely
## 1084   51.71  113.99912 Heterosexual (straight)            Rarely
## 1085   72.58  160.00882                Not sure            Rarely
## 1086   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1087   45.36  100.00000                Bisexual         Sometimes
## 1088   67.59  149.00794 Heterosexual (straight)  Most of the time
## 1089      NA         NA          Some other way             Never
## 1090      NA         NA          Gay or lesbian            Always
## 1091      NA         NA Heterosexual (straight)              <NA>
## 1092      NA         NA                Not sure         Sometimes
## 1093      NA         NA Heterosexual (straight)         Sometimes
## 1094   72.58  160.00882          Some other way  Most of the time
## 1095   61.24  135.00882 Heterosexual (straight)            Rarely
## 1096   56.70  125.00000                Bisexual  Most of the time
## 1097   62.60  138.00705                Not sure  Most of the time
## 1098   58.51  128.99030 Heterosexual (straight)            Rarely
## 1099   55.79  122.99383          Gay or lesbian  Most of the time
## 1100   54.89  121.00970 Heterosexual (straight)            Always
## 1101   95.26  210.00882 Heterosexual (straight)  Most of the time
## 1102   51.26  113.00705 Heterosexual (straight)            Rarely
## 1103   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1104   65.32  144.00353 Heterosexual (straight)         Sometimes
## 1105   51.26  113.00705 Heterosexual (straight)         Sometimes
## 1106   44.45   97.99383 Heterosexual (straight)         Sometimes
## 1107  106.60  235.00882 Heterosexual (straight)            Rarely
## 1108   58.97  130.00441 Heterosexual (straight)            Rarely
## 1109   92.99  205.00441                Bisexual  Most of the time
## 1110   56.70  125.00000                Not sure         Sometimes
## 1111   62.60  138.00705 Heterosexual (straight)             Never
## 1112   85.73  188.99912 Heterosexual (straight)            Always
## 1113   45.36  100.00000 Heterosexual (straight)            Rarely
## 1114   95.26  210.00882 Heterosexual (straight)            Rarely
## 1115   48.99  108.00265                Bisexual  Most of the time
## 1116   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1117      NA         NA Heterosexual (straight)            Rarely
## 1118   61.24  135.00882 Heterosexual (straight)            Rarely
## 1119   79.38  175.00000 Heterosexual (straight)         Sometimes
## 1120   81.65  180.00441                Not sure         Sometimes
## 1121  127.01  280.00441 Heterosexual (straight)            Always
## 1122      NA         NA          Some other way            Rarely
## 1123   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1124   58.97  130.00441                Bisexual            Always
## 1125   54.43  119.99559 Heterosexual (straight)            Rarely
## 1126   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1127  108.86  239.99118 Heterosexual (straight)         Sometimes
## 1128   69.40  152.99824 Heterosexual (straight)         Sometimes
## 1129  106.60  235.00882                Bisexual            Always
## 1130   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1131   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1132   49.90  110.00882 Heterosexual (straight)             Never
## 1133      NA         NA Heterosexual (straight)            Rarely
## 1134   47.63  105.00441                Bisexual  Most of the time
## 1135   75.75  166.99735                Bisexual         Sometimes
## 1136   72.58  160.00882 Heterosexual (straight)            Rarely
## 1137   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1138   79.38  175.00000 Heterosexual (straight)  Most of the time
## 1139   61.24  135.00882 Heterosexual (straight)            Rarely
## 1140   63.50  139.99118 Heterosexual (straight)  Most of the time
## 1141   54.43  119.99559          Gay or lesbian         Sometimes
## 1142   65.32  144.00353 Heterosexual (straight)  Most of the time
## 1143   63.50  139.99118 Heterosexual (straight)            Rarely
## 1144   43.09   94.99559          Some other way  Most of the time
## 1145   72.58  160.00882 Heterosexual (straight)         Sometimes
## 1146   89.81  197.99383 Heterosexual (straight)         Sometimes
## 1147   81.19  178.99030 Heterosexual (straight)            Always
## 1148   81.65  180.00441 Heterosexual (straight)             Never
## 1149   78.02  172.00176          Some other way  Most of the time
## 1150   87.54  192.98942 Heterosexual (straight)            Rarely
## 1151      NA         NA                Not sure            Rarely
## 1152      NA         NA                Bisexual         Sometimes
## 1153   49.44  108.99471 Heterosexual (straight)         Sometimes
## 1154   67.13  147.99383 Heterosexual (straight)             Never
## 1155   65.77  144.99559 Heterosexual (straight)            Rarely
## 1156   72.58  160.00882 Heterosexual (straight)            Rarely
## 1157   63.50  139.99118 Heterosexual (straight)            Rarely
## 1158      NA         NA                Not sure  Most of the time
## 1159   58.97  130.00441 Heterosexual (straight)            Rarely
## 1160   38.56   85.00882 Heterosexual (straight)            Rarely
## 1161   63.50  139.99118 Heterosexual (straight)            Always
## 1162  102.06  225.00000 Heterosexual (straight)         Sometimes
## 1163   81.65  180.00441 Heterosexual (straight)            Rarely
## 1164   66.23  146.00970 Heterosexual (straight)            Rarely
## 1165   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1166   54.43  119.99559          Gay or lesbian         Sometimes
## 1167   74.84  164.99118                Bisexual  Most of the time
## 1168   97.07  213.99912 Heterosexual (straight)            Rarely
## 1169   74.84  164.99118 Heterosexual (straight)         Sometimes
## 1170      NA         NA Heterosexual (straight)            Rarely
## 1171   70.76  155.99647 Heterosexual (straight)         Sometimes
## 1172   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1173   74.84  164.99118                Bisexual  Most of the time
## 1174  108.86  239.99118 Heterosexual (straight)             Never
## 1175   74.84  164.99118 Heterosexual (straight)            Always
## 1176   58.06  127.99824                Bisexual            Always
## 1177   52.16  114.99118 Heterosexual (straight)            Rarely
## 1178   52.16  114.99118                Bisexual         Sometimes
## 1179   65.77  144.99559                Bisexual         Sometimes
## 1180   66.68  147.00176                Not sure            Rarely
## 1181   61.24  135.00882 Heterosexual (straight)            Rarely
## 1182   66.23  146.00970 Heterosexual (straight)            Rarely
## 1183   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1184      NA         NA                Not sure  Most of the time
## 1185   63.50  139.99118 Heterosexual (straight)            Always
## 1186   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1187      NA         NA Heterosexual (straight)             Never
## 1188   61.24  135.00882 Heterosexual (straight)            Rarely
## 1189      NA         NA Heterosexual (straight)              <NA>
## 1190   52.16  114.99118 Heterosexual (straight)  Most of the time
## 1191   66.23  146.00970 Heterosexual (straight)         Sometimes
## 1192   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1193   74.84  164.99118 Heterosexual (straight)             Never
## 1194   61.24  135.00882          Gay or lesbian  Most of the time
## 1195      NA         NA Heterosexual (straight)            Rarely
## 1196   63.50  139.99118          Some other way         Sometimes
## 1197   64.41  141.99735 Heterosexual (straight)            Rarely
## 1198   72.58  160.00882 Heterosexual (straight)            Rarely
## 1199   52.62  116.00529          Some other way         Sometimes
## 1200   40.82   89.99118          Some other way         Sometimes
## 1201   53.52  117.98942 Heterosexual (straight)             Never
## 1202   64.41  141.99735 Heterosexual (straight)         Sometimes
## 1203   64.41  141.99735 Heterosexual (straight)            Rarely
## 1204      NA         NA                Bisexual            Rarely
## 1205   63.50  139.99118                Bisexual  Most of the time
## 1206   68.04  150.00000                Bisexual         Sometimes
## 1207   72.58  160.00882 Heterosexual (straight)             Never
## 1208   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1209  102.06  225.00000 Heterosexual (straight)             Never
## 1210   52.16  114.99118          Gay or lesbian  Most of the time
## 1211   97.52  214.99118                Not sure  Most of the time
## 1212   76.66  169.00353 Heterosexual (straight)         Sometimes
## 1213   70.31  155.00441 Heterosexual (straight)            Rarely
## 1214   52.16  114.99118 Heterosexual (straight)            Rarely
## 1215   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1216   77.11  169.99559                Bisexual  Most of the time
## 1217   40.82   89.99118 Heterosexual (straight)              <NA>
## 1218   70.31  155.00441 Heterosexual (straight)            Rarely
## 1219      NA         NA          Gay or lesbian  Most of the time
## 1220   40.37   88.99912 Heterosexual (straight)            Rarely
## 1221   63.96  141.00529 Heterosexual (straight)             Never
## 1222   68.04  150.00000 Heterosexual (straight)            Rarely
## 1223   63.50  139.99118                Bisexual            Rarely
## 1224   51.71  113.99912 Heterosexual (straight)  Most of the time
## 1225   54.43  119.99559                Bisexual            Always
## 1226   49.90  110.00882 Heterosexual (straight)            Rarely
## 1227   61.24  135.00882 Heterosexual (straight)            Rarely
## 1228   52.16  114.99118                Bisexual            Always
## 1229   45.81  100.99206 Heterosexual (straight)  Most of the time
## 1230   49.90  110.00882          Some other way         Sometimes
## 1231   54.89  121.00970 Heterosexual (straight)  Most of the time
## 1232   48.99  108.00265                Bisexual            Always
## 1233   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1234   71.67  158.00265 Heterosexual (straight)  Most of the time
## 1235      NA         NA Heterosexual (straight)         Sometimes
## 1236   56.70  125.00000                Bisexual  Most of the time
## 1237   51.71  113.99912                Not sure  Most of the time
## 1238   58.06  127.99824          Gay or lesbian  Most of the time
## 1239   52.16  114.99118 Heterosexual (straight)            Rarely
## 1240   94.35  208.00265 Heterosexual (straight)             Never
## 1241   72.58  160.00882                Bisexual         Sometimes
## 1242   74.84  164.99118 Heterosexual (straight)         Sometimes
## 1243   54.43  119.99559 Heterosexual (straight)  Most of the time
## 1244   43.09   94.99559          Some other way  Most of the time
## 1245   70.31  155.00441 Heterosexual (straight)  Most of the time
## 1246   49.90  110.00882 Heterosexual (straight)             Never
## 1247   67.59  149.00794          Some other way         Sometimes
## 1248      NA         NA Heterosexual (straight)  Most of the time
## 1249   49.90  110.00882          Some other way            Always
## 1250   72.58  160.00882 Heterosexual (straight)  Most of the time
## 1251   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1252   47.63  105.00441          Gay or lesbian  Most of the time
## 1253   74.84  164.99118 Heterosexual (straight)            Rarely
## 1254   65.77  144.99559                Bisexual         Sometimes
## 1255   45.36  100.00000 Heterosexual (straight)         Sometimes
## 1256   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1257   95.26  210.00882 Heterosexual (straight)         Sometimes
## 1258   94.80  208.99471 Heterosexual (straight)            Rarely
## 1259   54.89  121.00970 Heterosexual (straight)             Never
## 1260   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1261   62.60  138.00705 Heterosexual (straight)         Sometimes
## 1262   53.07  116.99735 Heterosexual (straight)            Rarely
## 1263   47.63  105.00441          Some other way            Rarely
## 1264   60.78  133.99471 Heterosexual (straight)         Sometimes
## 1265  108.86  239.99118 Heterosexual (straight)             Never
## 1266   83.92  185.00882 Heterosexual (straight)             Never
## 1267   71.67  158.00265 Heterosexual (straight)         Sometimes
## 1268      NA         NA                Bisexual              <NA>
## 1269   45.81  100.99206                Not sure            Rarely
## 1270   77.57  171.00970                Not sure             Never
## 1271   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1272   90.72  200.00000 Heterosexual (straight)         Sometimes
## 1273  108.86  239.99118 Heterosexual (straight)             Never
## 1274   36.29   80.00441 Heterosexual (straight)         Sometimes
## 1275   51.26  113.00705 Heterosexual (straight)         Sometimes
## 1276   67.13  147.99383 Heterosexual (straight)             Never
## 1277   52.16  114.99118 Heterosexual (straight)            Always
## 1278   61.69  136.00088 Heterosexual (straight)         Sometimes
## 1279   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1280   57.15  125.99206 Heterosexual (straight)         Sometimes
## 1281   56.70  125.00000                Bisexual  Most of the time
## 1282      NA         NA Heterosexual (straight)              <NA>
## 1283   58.97  130.00441                Not sure         Sometimes
## 1284      NA         NA Heterosexual (straight)             Never
## 1285      NA         NA Heterosexual (straight)             Never
## 1286   61.69  136.00088                Not sure            Rarely
## 1287   62.60  138.00705                Bisexual  Most of the time
## 1288      NA         NA          Some other way  Most of the time
## 1289   79.38  175.00000          Gay or lesbian         Sometimes
## 1290   70.31  155.00441 Heterosexual (straight)            Rarely
## 1291   55.34  122.00176 Heterosexual (straight)         Sometimes
## 1292   61.24  135.00882 Heterosexual (straight)            Rarely
## 1293   86.18  189.99118 Heterosexual (straight)            Rarely
## 1294   88.45  194.99559 Heterosexual (straight)            Rarely
## 1295   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1296   46.27  102.00617                Not sure  Most of the time
## 1297   54.43  119.99559 Heterosexual (straight)            Rarely
## 1298      NA         NA Heterosexual (straight)         Sometimes
## 1299   45.81  100.99206 Heterosexual (straight)         Sometimes
## 1300   77.11  169.99559 Heterosexual (straight)            Always
## 1301   94.35  208.00265 Heterosexual (straight)  Most of the time
## 1302   64.41  141.99735 Heterosexual (straight)            Rarely
## 1303   58.97  130.00441 Heterosexual (straight)            Rarely
## 1304  132.45  291.99735 Heterosexual (straight)         Sometimes
## 1305   58.06  127.99824 Heterosexual (straight)              <NA>
## 1306   56.70  125.00000 Heterosexual (straight)             Never
## 1307   63.50  139.99118                Bisexual  Most of the time
## 1308   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1309   75.30  166.00529 Heterosexual (straight)            Rarely
## 1310   53.52  117.98942                Bisexual            Rarely
## 1311   46.27  102.00617                Bisexual             Never
## 1312   41.73   91.99735 Heterosexual (straight)         Sometimes
## 1313   77.11  169.99559                Bisexual            Always
## 1314   83.46  183.99471 Heterosexual (straight)  Most of the time
## 1315   43.09   94.99559 Heterosexual (straight)            Always
## 1316   44.00   97.00176 Heterosexual (straight)         Sometimes
## 1317      NA         NA Heterosexual (straight)            Rarely
## 1318   85.73  188.99912 Heterosexual (straight)  Most of the time
## 1319   72.58  160.00882 Heterosexual (straight)             Never
## 1320      NA         NA Heterosexual (straight)  Most of the time
## 1321   40.82   89.99118 Heterosexual (straight)         Sometimes
## 1322   83.92  185.00882 Heterosexual (straight)            Always
## 1323   77.11  169.99559 Heterosexual (straight)             Never
## 1324   90.72  200.00000 Heterosexual (straight)            Always
## 1325   62.14  136.99295 Heterosexual (straight)            Rarely
## 1326   45.36  100.00000 Heterosexual (straight)         Sometimes
## 1327   58.97  130.00441                Bisexual            Rarely
## 1328   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1329   57.61  127.00617 Heterosexual (straight)  Most of the time
## 1330   43.09   94.99559 Heterosexual (straight)         Sometimes
## 1331      NA         NA                Bisexual  Most of the time
## 1332      NA         NA Heterosexual (straight)            Rarely
## 1333   65.77  144.99559                Bisexual  Most of the time
## 1334   47.63  105.00441 Heterosexual (straight)            Rarely
## 1335   64.86  142.98942 Heterosexual (straight)         Sometimes
## 1336   41.28   91.00529 Heterosexual (straight)  Most of the time
## 1337   44.00   97.00176                Not sure            Always
## 1338   52.16  114.99118 Heterosexual (straight)              <NA>
## 1339   61.24  135.00882 Heterosexual (straight)             Never
## 1340   66.23  146.00970 Heterosexual (straight)              <NA>
## 1341   63.96  141.00529 Heterosexual (straight)             Never
## 1342   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1343   64.41  141.99735 Heterosexual (straight)  Most of the time
## 1344   64.86  142.98942 Heterosexual (straight)         Sometimes
## 1345   90.72  200.00000 Heterosexual (straight)            Rarely
## 1346   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1347   58.06  127.99824 Heterosexual (straight)            Always
## 1348   52.16  114.99118 Heterosexual (straight)             Never
## 1349   43.09   94.99559 Heterosexual (straight)             Never
## 1350   55.79  122.99383 Heterosexual (straight)         Sometimes
## 1351   63.50  139.99118                Bisexual         Sometimes
## 1352   45.36  100.00000 Heterosexual (straight)            Rarely
## 1353   61.24  135.00882 Heterosexual (straight)            Rarely
## 1354      NA         NA Heterosexual (straight)            Rarely
## 1355   72.58  160.00882                Bisexual         Sometimes
## 1356      NA         NA          Gay or lesbian         Sometimes
## 1357   70.31  155.00441 Heterosexual (straight)         Sometimes
## 1358   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1359   81.65  180.00441 Heterosexual (straight)             Never
## 1360   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1361   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1362   55.79  122.99383 Heterosexual (straight)         Sometimes
## 1363   43.09   94.99559 Heterosexual (straight)  Most of the time
## 1364   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1365   52.16  114.99118 Heterosexual (straight)             Never
## 1366   58.97  130.00441 Heterosexual (straight)             Never
## 1367   44.45   97.99383 Heterosexual (straight)         Sometimes
## 1368   80.29  177.00617 Heterosexual (straight)            Rarely
## 1369   79.38  175.00000 Heterosexual (straight)            Rarely
## 1370   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1371   68.04  150.00000                Bisexual         Sometimes
## 1372   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1373   74.84  164.99118                Bisexual         Sometimes
## 1374   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1375   55.79  122.99383 Heterosexual (straight)            Rarely
## 1376   49.90  110.00882                Bisexual  Most of the time
## 1377   74.84  164.99118 Heterosexual (straight)            Rarely
## 1378   79.38  175.00000 Heterosexual (straight)         Sometimes
## 1379      NA         NA Heterosexual (straight)  Most of the time
## 1380   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1381   63.50  139.99118          Some other way              <NA>
## 1382  102.06  225.00000 Heterosexual (straight)         Sometimes
## 1383   47.63  105.00441 Heterosexual (straight)  Most of the time
## 1384   47.63  105.00441 Heterosexual (straight)         Sometimes
## 1385      NA         NA Heterosexual (straight)             Never
## 1386   99.79  219.99559 Heterosexual (straight)            Rarely
## 1387   74.84  164.99118 Heterosexual (straight)         Sometimes
## 1388   63.50  139.99118 Heterosexual (straight)             Never
## 1389   58.51  128.99030 Heterosexual (straight)            Rarely
## 1390   65.77  144.99559 Heterosexual (straight)             Never
## 1391   45.36  100.00000          Gay or lesbian  Most of the time
## 1392   54.89  121.00970                Bisexual         Sometimes
## 1393      NA         NA Heterosexual (straight)         Sometimes
## 1394   61.24  135.00882                Bisexual            Rarely
## 1395   45.36  100.00000 Heterosexual (straight)  Most of the time
## 1396   54.43  119.99559                Not sure            Rarely
## 1397   48.99  108.00265 Heterosexual (straight)             Never
## 1398   66.23  146.00970 Heterosexual (straight)            Rarely
## 1399   47.17  103.99030 Heterosexual (straight)            Rarely
## 1400   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1401   61.24  135.00882                Not sure            Rarely
## 1402   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1403   83.92  185.00882 Heterosexual (straight)  Most of the time
## 1404   81.65  180.00441 Heterosexual (straight)         Sometimes
## 1405   38.56   85.00882 Heterosexual (straight)             Never
## 1406   47.63  105.00441 Heterosexual (straight)         Sometimes
## 1407   58.06  127.99824 Heterosexual (straight)         Sometimes
## 1408      NA         NA                Not sure  Most of the time
## 1409   53.52  117.98942 Heterosexual (straight)         Sometimes
## 1410   63.50  139.99118 Heterosexual (straight)            Rarely
## 1411   52.16  114.99118 Heterosexual (straight)            Rarely
## 1412   58.51  128.99030 Heterosexual (straight)  Most of the time
## 1413   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1414   79.38  175.00000                Bisexual            Always
## 1415   67.59  149.00794 Heterosexual (straight)         Sometimes
## 1416   67.13  147.99383 Heterosexual (straight)         Sometimes
## 1417   61.24  135.00882 Heterosexual (straight)            Rarely
## 1418   53.52  117.98942 Heterosexual (straight)         Sometimes
## 1419   68.04  150.00000          Gay or lesbian         Sometimes
## 1420   59.88  132.01058 Heterosexual (straight)         Sometimes
## 1421   63.50  139.99118                Not sure         Sometimes
## 1422   47.63  105.00441 Heterosexual (straight)         Sometimes
## 1423   50.80  111.99295 Heterosexual (straight)             Never
## 1424   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1425      NA         NA Heterosexual (straight)              <NA>
## 1426   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1427   49.90  110.00882 Heterosexual (straight)            Rarely
## 1428   52.62  116.00529 Heterosexual (straight)  Most of the time
## 1429   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1430   56.70  125.00000                Bisexual            Always
## 1431   51.71  113.99912 Heterosexual (straight)            Rarely
## 1432      NA         NA Heterosexual (straight)  Most of the time
## 1433   43.09   94.99559 Heterosexual (straight)         Sometimes
## 1434   70.31  155.00441 Heterosexual (straight)             Never
## 1435   99.79  219.99559                Bisexual            Always
## 1436   61.24  135.00882 Heterosexual (straight)            Rarely
## 1437   81.65  180.00441 Heterosexual (straight)             Never
## 1438   63.50  139.99118                Bisexual            Always
## 1439   58.97  130.00441                Not sure         Sometimes
## 1440   59.88  132.01058 Heterosexual (straight)            Rarely
## 1441   72.58  160.00882 Heterosexual (straight)  Most of the time
## 1442   63.50  139.99118                Bisexual         Sometimes
## 1443   77.11  169.99559 Heterosexual (straight)         Sometimes
## 1444   43.55   96.00970 Heterosexual (straight)              <NA>
## 1445   86.18  189.99118          Some other way            Always
## 1446   43.09   94.99559 Heterosexual (straight)  Most of the time
## 1447   76.20  167.98942                Bisexual         Sometimes
## 1448   57.15  125.99206 Heterosexual (straight)         Sometimes
## 1449   81.65  180.00441 Heterosexual (straight)              <NA>
## 1450      NA         NA Heterosexual (straight)         Sometimes
## 1451   56.70  125.00000          Some other way         Sometimes
## 1452   56.70  125.00000                Bisexual  Most of the time
## 1453   69.85  153.99030 Heterosexual (straight)            Always
## 1454   77.57  171.00970 Heterosexual (straight)         Sometimes
## 1455   51.26  113.00705 Heterosexual (straight)            Rarely
## 1456   74.84  164.99118 Heterosexual (straight)            Rarely
## 1457   69.40  152.99824 Heterosexual (straight)            Rarely
## 1458   81.65  180.00441                Bisexual  Most of the time
## 1459      NA         NA Heterosexual (straight)         Sometimes
## 1460   48.54  107.01058                Not sure  Most of the time
## 1461   53.52  117.98942 Heterosexual (straight)            Rarely
## 1462   90.72  200.00000          Gay or lesbian            Always
## 1463   46.27  102.00617                Bisexual         Sometimes
## 1464   68.04  150.00000                Bisexual  Most of the time
## 1465   50.35  111.00088 Heterosexual (straight)         Sometimes
## 1466      NA         NA Heterosexual (straight)              <NA>
## 1467   72.58  160.00882 Heterosexual (straight)         Sometimes
## 1468   54.43  119.99559 Heterosexual (straight)             Never
## 1469   83.92  185.00882 Heterosexual (straight)  Most of the time
## 1470   58.51  128.99030 Heterosexual (straight)         Sometimes
## 1471   41.28   91.00529          Some other way  Most of the time
## 1472      NA         NA Heterosexual (straight)              <NA>
## 1473  122.47  269.99559 Heterosexual (straight)            Always
## 1474   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1475   61.24  135.00882 Heterosexual (straight)  Most of the time
## 1476   83.92  185.00882 Heterosexual (straight)         Sometimes
## 1477   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1478   86.18  189.99118 Heterosexual (straight)         Sometimes
## 1479      NA         NA Heterosexual (straight)             Never
## 1480   72.58  160.00882 Heterosexual (straight)            Rarely
## 1481      NA         NA Heterosexual (straight)         Sometimes
## 1482   49.44  108.99471 Heterosexual (straight)         Sometimes
## 1483   56.70  125.00000                Not sure  Most of the time
## 1484      NA         NA Heterosexual (straight)              <NA>
## 1485   95.71  211.00088 Heterosexual (straight)            Rarely
## 1486   54.43  119.99559 Heterosexual (straight)  Most of the time
## 1487   65.77  144.99559 Heterosexual (straight)         Sometimes
## 1488   62.60  138.00705 Heterosexual (straight)             Never
## 1489      NA         NA                Not sure         Sometimes
## 1490   90.72  200.00000 Heterosexual (straight)         Sometimes
## 1491      NA         NA                Not sure  Most of the time
## 1492   58.51  128.99030 Heterosexual (straight)         Sometimes
## 1493   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1494   52.62  116.00529 Heterosexual (straight)            Rarely
## 1495   57.15  125.99206                Bisexual  Most of the time
## 1496      NA         NA Heterosexual (straight)             Never
## 1497   88.45  194.99559 Heterosexual (straight)             Never
## 1498   58.51  128.99030          Some other way         Sometimes
## 1499   68.04  150.00000 Heterosexual (straight)            Rarely
## 1500      NA         NA Heterosexual (straight)         Sometimes
## 1501   56.70  125.00000                Bisexual  Most of the time
## 1502   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1503      NA         NA Heterosexual (straight)         Sometimes
## 1504   57.15  125.99206 Heterosexual (straight)         Sometimes
## 1505   47.63  105.00441 Heterosexual (straight)            Rarely
## 1506   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1507   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1508   72.58  160.00882 Heterosexual (straight)            Rarely
## 1509      NA         NA Heterosexual (straight)             Never
## 1510      NA         NA                Bisexual         Sometimes
## 1511   48.54  107.01058                Bisexual         Sometimes
## 1512   56.70  125.00000 Heterosexual (straight)  Most of the time
## 1513   57.61  127.00617 Heterosexual (straight)             Never
## 1514   44.45   97.99383 Heterosexual (straight)            Rarely
## 1515   52.16  114.99118                Bisexual            Rarely
## 1516   72.58  160.00882                Not sure            Rarely
## 1517      NA         NA Heterosexual (straight)            Rarely
## 1518   68.04  150.00000 Heterosexual (straight)  Most of the time
## 1519   54.43  119.99559 Heterosexual (straight)            Rarely
## 1520   47.63  105.00441                Bisexual         Sometimes
## 1521   55.79  122.99383                Bisexual         Sometimes
## 1522   51.26  113.00705 Heterosexual (straight)  Most of the time
## 1523   54.43  119.99559 Heterosexual (straight)  Most of the time
## 1524      NA         NA                Bisexual            Always
## 1525   68.04  150.00000 Heterosexual (straight)             Never
## 1526   56.25  124.00794          Some other way         Sometimes
## 1527   68.95  152.00617          Gay or lesbian  Most of the time
## 1528   54.43  119.99559                Bisexual         Sometimes
## 1529   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1530   49.44  108.99471                Bisexual  Most of the time
## 1531  117.94  260.00882 Heterosexual (straight)  Most of the time
## 1532   47.17  103.99030 Heterosexual (straight)  Most of the time
## 1533   54.43  119.99559                Bisexual  Most of the time
## 1534   74.84  164.99118 Heterosexual (straight)         Sometimes
## 1535   70.31  155.00441 Heterosexual (straight)             Never
## 1536   60.33  133.00265                Bisexual  Most of the time
## 1537   73.94  163.00705 Heterosexual (straight)            Rarely
## 1538   63.50  139.99118                Bisexual            Always
## 1539   72.58  160.00882                Bisexual  Most of the time
## 1540   90.72  200.00000 Heterosexual (straight)         Sometimes
## 1541  111.13  244.99559 Heterosexual (straight)             Never
## 1542   52.16  114.99118 Heterosexual (straight)         Sometimes
## 1543   36.29   80.00441 Heterosexual (straight)            Rarely
## 1544   68.04  150.00000 Heterosexual (straight)             Never
## 1545   89.81  197.99383 Heterosexual (straight)  Most of the time
## 1546      NA         NA Heterosexual (straight)         Sometimes
## 1547   44.00   97.00176                Bisexual  Most of the time
## 1548   63.50  139.99118 Heterosexual (straight)            Rarely
## 1549   61.24  135.00882                Bisexual         Sometimes
## 1550   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1551   49.90  110.00882 Heterosexual (straight)            Always
## 1552   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1553   86.18  189.99118                Bisexual         Sometimes
## 1554   71.22  157.01058                Not sure            Rarely
## 1555   97.52  214.99118 Heterosexual (straight)              <NA>
## 1556   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1557   61.24  135.00882                Bisexual            Rarely
## 1558   58.97  130.00441                Bisexual         Sometimes
## 1559   63.50  139.99118 Heterosexual (straight)             Never
## 1560      NA         NA                Bisexual  Most of the time
## 1561      NA         NA          Gay or lesbian            Always
## 1562   62.60  138.00705          Some other way         Sometimes
## 1563   54.43  119.99559 Heterosexual (straight)            Rarely
## 1564   77.11  169.99559 Heterosexual (straight)            Always
## 1565   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1566   58.97  130.00441          Some other way         Sometimes
## 1567   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1568   70.31  155.00441                Bisexual            Always
## 1569   54.43  119.99559 Heterosexual (straight)            Rarely
## 1570   79.38  175.00000 Heterosexual (straight)            Rarely
## 1571   63.50  139.99118 Heterosexual (straight)             Never
## 1572   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1573  108.86  239.99118 Heterosexual (straight)         Sometimes
## 1574   74.84  164.99118 Heterosexual (straight)            Always
## 1575   90.72  200.00000 Heterosexual (straight)            Rarely
## 1576   49.90  110.00882                Bisexual         Sometimes
## 1577   59.88  132.01058                Not sure            Rarely
## 1578   83.92  185.00882 Heterosexual (straight)            Rarely
## 1579   52.16  114.99118 Heterosexual (straight)  Most of the time
## 1580   91.63  202.00617 Heterosexual (straight)             Never
## 1581      NA         NA                Bisexual         Sometimes
## 1582  111.13  244.99559 Heterosexual (straight)             Never
## 1583   86.18  189.99118 Heterosexual (straight)         Sometimes
## 1584   63.50  139.99118                Bisexual  Most of the time
## 1585   50.80  111.99295                Bisexual         Sometimes
## 1586   61.24  135.00882 Heterosexual (straight)            Rarely
## 1587   49.90  110.00882 Heterosexual (straight)             Never
## 1588   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1589   68.04  150.00000 Heterosexual (straight)             Never
## 1590   58.97  130.00441          Some other way  Most of the time
## 1591   49.90  110.00882 Heterosexual (straight)            Rarely
## 1592   72.12  158.99471 Heterosexual (straight)            Rarely
## 1593   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1594   68.04  150.00000 Heterosexual (straight)            Rarely
## 1595   72.58  160.00882                Bisexual         Sometimes
## 1596   58.06  127.99824 Heterosexual (straight)  Most of the time
## 1597   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1598   44.45   97.99383 Heterosexual (straight)            Rarely
## 1599   44.45   97.99383                Not sure            Rarely
## 1600   88.45  194.99559 Heterosexual (straight)  Most of the time
## 1601   72.58  160.00882                Not sure         Sometimes
## 1602   57.15  125.99206 Heterosexual (straight)  Most of the time
## 1603   54.43  119.99559 Heterosexual (straight)             Never
## 1604   37.65   83.00265                Bisexual             Never
## 1605   90.72  200.00000                Bisexual         Sometimes
## 1606      NA         NA Heterosexual (straight)         Sometimes
## 1607   57.15  125.99206 Heterosexual (straight)            Rarely
## 1608   88.45  194.99559 Heterosexual (straight)  Most of the time
## 1609   72.58  160.00882 Heterosexual (straight)         Sometimes
## 1610   70.76  155.99647 Heterosexual (straight)            Rarely
## 1611   70.76  155.99647 Heterosexual (straight)            Rarely
## 1612   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1613   79.38  175.00000 Heterosexual (straight)            Rarely
## 1614   48.08  105.99647 Heterosexual (straight)            Always
## 1615   68.04  150.00000 Heterosexual (straight)             Never
## 1616   90.72  200.00000 Heterosexual (straight)         Sometimes
## 1617   83.92  185.00882 Heterosexual (straight)         Sometimes
## 1618   47.63  105.00441 Heterosexual (straight)  Most of the time
## 1619      NA         NA Heterosexual (straight)             Never
## 1620   53.98  119.00353                Bisexual  Most of the time
## 1621   77.11  169.99559 Heterosexual (straight)            Rarely
## 1622   51.71  113.99912 Heterosexual (straight)  Most of the time
## 1623   58.97  130.00441 Heterosexual (straight)             Never
## 1624   47.63  105.00441 Heterosexual (straight)            Rarely
## 1625   53.07  116.99735 Heterosexual (straight)            Rarely
## 1626   74.84  164.99118 Heterosexual (straight)  Most of the time
## 1627   67.13  147.99383 Heterosexual (straight)  Most of the time
## 1628   60.33  133.00265 Heterosexual (straight)  Most of the time
## 1629      NA         NA          Some other way         Sometimes
## 1630   53.07  116.99735 Heterosexual (straight)            Rarely
## 1631   61.24  135.00882 Heterosexual (straight)  Most of the time
## 1632   56.70  125.00000          Some other way  Most of the time
## 1633   62.14  136.99295 Heterosexual (straight)         Sometimes
## 1634   81.65  180.00441                Bisexual  Most of the time
## 1635   69.40  152.99824                Bisexual            Rarely
## 1636   70.31  155.00441 Heterosexual (straight)            Rarely
## 1637   61.24  135.00882 Heterosexual (straight)            Rarely
## 1638   55.34  122.00176          Gay or lesbian            Always
## 1639   56.70  125.00000 Heterosexual (straight)            Rarely
## 1640   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1641   53.07  116.99735 Heterosexual (straight)         Sometimes
## 1642   71.22  157.01058 Heterosexual (straight)            Rarely
## 1643   70.31  155.00441 Heterosexual (straight)         Sometimes
## 1644      NA         NA Heterosexual (straight)  Most of the time
## 1645   56.25  124.00794                Bisexual  Most of the time
## 1646   63.05  138.99912 Heterosexual (straight)  Most of the time
## 1647   53.07  116.99735          Gay or lesbian  Most of the time
## 1648   72.58  160.00882 Heterosexual (straight)             Never
## 1649      NA         NA Heterosexual (straight)              <NA>
## 1650   81.65  180.00441 Heterosexual (straight)             Never
## 1651   56.70  125.00000 Heterosexual (straight)  Most of the time
## 1652   85.28  188.00705          Some other way         Sometimes
## 1653   58.97  130.00441 Heterosexual (straight)  Most of the time
## 1654      NA         NA Heterosexual (straight)            Rarely
## 1655      NA         NA Heterosexual (straight)            Always
## 1656   52.16  114.99118 Heterosexual (straight)  Most of the time
## 1657   65.77  144.99559          Gay or lesbian              <NA>
## 1658   58.06  127.99824 Heterosexual (straight)         Sometimes
## 1659   68.04  150.00000                Bisexual  Most of the time
## 1660   61.24  135.00882                Bisexual  Most of the time
## 1661   68.04  150.00000          Gay or lesbian            Always
## 1662   86.18  189.99118 Heterosexual (straight)              <NA>
## 1663      NA         NA          Some other way  Most of the time
## 1664   52.16  114.99118          Some other way         Sometimes
## 1665   50.35  111.00088 Heterosexual (straight)  Most of the time
## 1666   57.15  125.99206 Heterosexual (straight)            Always
## 1667   54.43  119.99559 Heterosexual (straight)  Most of the time
## 1668   65.77  144.99559 Heterosexual (straight)         Sometimes
## 1669   74.84  164.99118 Heterosexual (straight)         Sometimes
## 1670   58.97  130.00441                Not sure  Most of the time
## 1671   93.90  207.01058                Bisexual  Most of the time
## 1672   92.99  205.00441 Heterosexual (straight)            Rarely
## 1673      NA         NA Heterosexual (straight)             Never
## 1674   65.77  144.99559 Heterosexual (straight)  Most of the time
## 1675   63.50  139.99118          Some other way            Always
## 1676      NA         NA          Some other way  Most of the time
## 1677      NA         NA          Some other way            Always
## 1678   52.16  114.99118                Bisexual  Most of the time
## 1679  141.52  311.99295          Some other way  Most of the time
## 1680   45.36  100.00000                Not sure  Most of the time
## 1681   51.71  113.99912 Heterosexual (straight)  Most of the time
## 1682   62.14  136.99295 Heterosexual (straight)            Rarely
## 1683      NA         NA Heterosexual (straight)              <NA>
## 1684      NA         NA          Some other way            Always
## 1685   43.09   94.99559          Some other way  Most of the time
## 1686   63.96  141.00529          Gay or lesbian            Always
## 1687   56.70  125.00000 Heterosexual (straight)             Never
## 1688   56.25  124.00794                Bisexual  Most of the time
## 1689  104.33  230.00441 Heterosexual (straight)             Never
## 1690   68.04  150.00000 Heterosexual (straight)  Most of the time
## 1691   54.43  119.99559                Not sure  Most of the time
## 1692   46.72  102.99824 Heterosexual (straight)         Sometimes
## 1693   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1694   68.04  150.00000                Not sure  Most of the time
## 1695   54.43  119.99559 Heterosexual (straight)  Most of the time
## 1696   81.65  180.00441                Bisexual         Sometimes
## 1697   58.97  130.00441 Heterosexual (straight)            Rarely
## 1698   99.79  219.99559 Heterosexual (straight)            Rarely
## 1699   49.90  110.00882 Heterosexual (straight)            Rarely
## 1700      NA         NA Heterosexual (straight)         Sometimes
## 1701   83.01  183.00265 Heterosexual (straight)         Sometimes
## 1702  101.61  224.00794 Heterosexual (straight)  Most of the time
## 1703  115.21  253.99030 Heterosexual (straight)            Rarely
## 1704   46.72  102.99824                Bisexual            Always
## 1705      NA         NA                Not sure  Most of the time
## 1706   77.11  169.99559          Some other way            Always
## 1707   64.86  142.98942                Bisexual  Most of the time
## 1708   75.75  166.99735 Heterosexual (straight)  Most of the time
## 1709  142.88  314.99118                Not sure            Always
## 1710   44.00   97.00176 Heterosexual (straight)             Never
## 1711   81.65  180.00441 Heterosexual (straight)            Rarely
## 1712      NA         NA          Some other way  Most of the time
## 1713   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1714      NA         NA                Bisexual         Sometimes
## 1715   52.16  114.99118 Heterosexual (straight)            Rarely
## 1716   59.88  132.01058                Bisexual         Sometimes
## 1717      NA         NA Heterosexual (straight)            Rarely
## 1718   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1719   49.90  110.00882 Heterosexual (straight)  Most of the time
## 1720   88.45  194.99559 Heterosexual (straight)             Never
## 1721   59.42  130.99647 Heterosexual (straight)  Most of the time
## 1722   58.97  130.00441                Bisexual         Sometimes
## 1723   72.58  160.00882 Heterosexual (straight)            Rarely
## 1724   63.50  139.99118                Bisexual  Most of the time
## 1725      NA         NA                Not sure            Rarely
## 1726   58.06  127.99824 Heterosexual (straight)         Sometimes
## 1727   47.63  105.00441 Heterosexual (straight)         Sometimes
## 1728      NA         NA Heterosexual (straight)         Sometimes
## 1729   56.25  124.00794 Heterosexual (straight)             Never
## 1730   86.18  189.99118 Heterosexual (straight)  Most of the time
## 1731   86.18  189.99118                Bisexual            Always
## 1732   47.63  105.00441                Bisexual            Rarely
## 1733   77.11  169.99559 Heterosexual (straight)             Never
## 1734      NA         NA                Not sure              <NA>
## 1735   51.26  113.00705                Bisexual         Sometimes
## 1736   63.50  139.99118          Gay or lesbian  Most of the time
## 1737   61.24  135.00882 Heterosexual (straight)            Rarely
## 1738   63.50  139.99118 Heterosexual (straight)  Most of the time
## 1739   58.97  130.00441                Bisexual            Rarely
## 1740   58.97  130.00441 Heterosexual (straight)  Most of the time
## 1741   79.38  175.00000 Heterosexual (straight)            Rarely
## 1742   65.77  144.99559 Heterosexual (straight)            Rarely
## 1743   99.79  219.99559          Some other way         Sometimes
## 1744   47.63  105.00441 Heterosexual (straight)  Most of the time
## 1745   86.18  189.99118 Heterosexual (straight)         Sometimes
## 1746   44.45   97.99383                Not sure            Rarely
## 1747   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1748   60.33  133.00265                Bisexual         Sometimes
## 1749   61.69  136.00088 Heterosexual (straight)  Most of the time
## 1750   99.79  219.99559 Heterosexual (straight)            Rarely
## 1751   53.52  117.98942                Not sure         Sometimes
## 1752   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1753      NA         NA Heterosexual (straight)         Sometimes
## 1754   50.80  111.99295                Bisexual             Never
## 1755   72.58  160.00882          Gay or lesbian            Rarely
## 1756   53.52  117.98942                Bisexual            Rarely
## 1757   90.72  200.00000                Not sure            Rarely
## 1758  122.47  269.99559                Bisexual         Sometimes
## 1759   90.72  200.00000                Not sure         Sometimes
## 1760   72.58  160.00882 Heterosexual (straight)             Never
## 1761   61.69  136.00088                Not sure         Sometimes
## 1762   52.16  114.99118                Not sure         Sometimes
## 1763   57.15  125.99206 Heterosexual (straight)             Never
## 1764   58.06  127.99824                Bisexual  Most of the time
## 1765   70.76  155.99647 Heterosexual (straight)             Never
## 1766   43.55   96.00970 Heterosexual (straight)         Sometimes
## 1767   49.44  108.99471 Heterosexual (straight)             Never
## 1768   45.36  100.00000                Bisexual         Sometimes
## 1769   73.48  161.99295                Bisexual  Most of the time
## 1770   74.84  164.99118 Heterosexual (straight)            Rarely
## 1771   48.08  105.99647                Bisexual         Sometimes
## 1772   68.04  150.00000 Heterosexual (straight)         Sometimes
## 1773   65.77  144.99559 Heterosexual (straight)            Rarely
## 1774   43.09   94.99559                Not sure  Most of the time
## 1775   54.43  119.99559                Bisexual            Always
## 1776   57.15  125.99206 Heterosexual (straight)         Sometimes
## 1777   77.11  169.99559          Some other way         Sometimes
## 1778   45.36  100.00000 Heterosexual (straight)            Rarely
## 1779   58.06  127.99824 Heterosexual (straight)         Sometimes
## 1780   47.63  105.00441 Heterosexual (straight)  Most of the time
## 1781   61.24  135.00882 Heterosexual (straight)  Most of the time
## 1782   93.90  207.01058 Heterosexual (straight)            Rarely
## 1783   39.92   88.00705 Heterosexual (straight)            Always
## 1784   52.16  114.99118          Gay or lesbian         Sometimes
## 1785  108.86  239.99118 Heterosexual (straight)            Rarely
## 1786   90.72  200.00000 Heterosexual (straight)         Sometimes
## 1787   45.36  100.00000 Heterosexual (straight)             Never
## 1788      NA         NA Heterosexual (straight)            Rarely
## 1789   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1790   62.60  138.00705                Bisexual         Sometimes
## 1791   45.36  100.00000 Heterosexual (straight)             Never
## 1792   83.92  185.00882 Heterosexual (straight)         Sometimes
## 1793      NA         NA          Some other way  Most of the time
## 1794   58.97  130.00441 Heterosexual (straight)              <NA>
## 1795   70.76  155.99647 Heterosexual (straight)            Rarely
## 1796      NA         NA Heterosexual (straight)            Rarely
## 1797  126.10  277.99824 Heterosexual (straight)             Never
## 1798   90.72  200.00000          Some other way  Most of the time
## 1799   57.15  125.99206 Heterosexual (straight)  Most of the time
## 1800   65.77  144.99559 Heterosexual (straight)            Rarely
## 1801   86.18  189.99118                Bisexual  Most of the time
## 1802   62.60  138.00705          Gay or lesbian            Always
## 1803   83.92  185.00882          Some other way  Most of the time
## 1804   58.97  130.00441 Heterosexual (straight)            Rarely
## 1805   58.97  130.00441 Heterosexual (straight)            Rarely
## 1806   63.50  139.99118 Heterosexual (straight)            Rarely
## 1807   58.97  130.00441          Gay or lesbian  Most of the time
## 1808      NA         NA Heterosexual (straight)              <NA>
## 1809   63.50  139.99118 Heterosexual (straight)  Most of the time
## 1810   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1811   47.63  105.00441                Not sure            Always
## 1812   68.04  150.00000          Gay or lesbian         Sometimes
## 1813   46.72  102.99824                Bisexual         Sometimes
## 1814      NA         NA                Bisexual         Sometimes
## 1815   54.43  119.99559 Heterosexual (straight)            Rarely
## 1816   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1817      NA         NA Heterosexual (straight)             Never
## 1818   79.83  175.99206 Heterosexual (straight)  Most of the time
## 1819   57.61  127.00617 Heterosexual (straight)             Never
## 1820      NA         NA Heterosexual (straight)              <NA>
## 1821   63.50  139.99118          Gay or lesbian         Sometimes
## 1822   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1823   60.33  133.00265 Heterosexual (straight)         Sometimes
## 1824   45.36  100.00000 Heterosexual (straight)         Sometimes
## 1825   75.30  166.00529 Heterosexual (straight)  Most of the time
## 1826   49.90  110.00882 Heterosexual (straight)            Always
## 1827   34.93   77.00617                Bisexual         Sometimes
## 1828   54.43  119.99559          Some other way  Most of the time
## 1829   90.72  200.00000 Heterosexual (straight)            Rarely
## 1830   47.17  103.99030 Heterosexual (straight)            Rarely
## 1831   53.07  116.99735 Heterosexual (straight)            Rarely
## 1832   72.58  160.00882 Heterosexual (straight)              <NA>
## 1833   50.35  111.00088 Heterosexual (straight)         Sometimes
## 1834      NA         NA Heterosexual (straight)             Never
## 1835   83.92  185.00882 Heterosexual (straight)            Rarely
## 1836   99.79  219.99559 Heterosexual (straight)         Sometimes
## 1837   61.69  136.00088                Bisexual            Always
## 1838   43.55   96.00970 Heterosexual (straight)         Sometimes
## 1839   79.38  175.00000 Heterosexual (straight)  Most of the time
## 1840   68.95  152.00617 Heterosexual (straight)            Always
## 1841   40.82   89.99118 Heterosexual (straight)            Always
## 1842   56.70  125.00000 Heterosexual (straight)             Never
## 1843   51.71  113.99912          Some other way            Always
## 1844   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1845   54.43  119.99559 Heterosexual (straight)              <NA>
## 1846   79.38  175.00000                Not sure  Most of the time
## 1847   72.58  160.00882 Heterosexual (straight)            Rarely
## 1848   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1849   72.58  160.00882 Heterosexual (straight)         Sometimes
## 1850   57.15  125.99206                Bisexual            Always
## 1851      NA         NA Heterosexual (straight)            Rarely
## 1852      NA         NA Heterosexual (straight)              <NA>
## 1853   70.31  155.00441 Heterosexual (straight)            Rarely
## 1854   56.70  125.00000                Bisexual             Never
## 1855   68.04  150.00000 Heterosexual (straight)            Always
## 1856   72.58  160.00882 Heterosexual (straight)            Rarely
## 1857   70.31  155.00441 Heterosexual (straight)  Most of the time
## 1858   72.58  160.00882 Heterosexual (straight)             Never
## 1859      NA         NA                Bisexual              <NA>
## 1860   53.52  117.98942 Heterosexual (straight)              <NA>
## 1861      NA         NA                Not sure             Never
## 1862   52.16  114.99118 Heterosexual (straight)  Most of the time
## 1863   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1864   71.67  158.00265 Heterosexual (straight)            Always
## 1865   63.50  139.99118 Heterosexual (straight)             Never
## 1866   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1867      NA         NA Heterosexual (straight)            Rarely
## 1868   52.16  114.99118 Heterosexual (straight)             Never
## 1869   54.43  119.99559                Bisexual  Most of the time
## 1870   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1871   66.68  147.00176 Heterosexual (straight)            Always
## 1872   49.90  110.00882 Heterosexual (straight)         Sometimes
## 1873   72.58  160.00882 Heterosexual (straight)            Always
## 1874   43.09   94.99559 Heterosexual (straight)  Most of the time
## 1875      NA         NA                Not sure  Most of the time
## 1876   70.31  155.00441 Heterosexual (straight)             Never
## 1877      NA         NA                Bisexual            Always
## 1878   52.16  114.99118 Heterosexual (straight)             Never
## 1879   54.43  119.99559                Not sure         Sometimes
## 1880  104.33  230.00441 Heterosexual (straight)             Never
## 1881   45.36  100.00000 Heterosexual (straight)         Sometimes
## 1882   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1883   74.84  164.99118 Heterosexual (straight)             Never
## 1884   46.27  102.00617 Heterosexual (straight)            Rarely
## 1885      NA         NA          Some other way            Always
## 1886   63.50  139.99118 Heterosexual (straight)            Always
## 1887      NA         NA Heterosexual (straight)             Never
## 1888   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1889   55.34  122.00176 Heterosexual (straight)  Most of the time
## 1890   53.98  119.00353 Heterosexual (straight)            Always
## 1891   61.24  135.00882 Heterosexual (straight)            Rarely
## 1892   67.59  149.00794                Bisexual         Sometimes
## 1893   65.77  144.99559 Heterosexual (straight)             Never
## 1894   70.31  155.00441 Heterosexual (straight)             Never
## 1895   99.79  219.99559 Heterosexual (straight)         Sometimes
## 1896   61.24  135.00882                Bisexual              <NA>
## 1897   68.04  150.00000 Heterosexual (straight)  Most of the time
## 1898   52.62  116.00529 Heterosexual (straight)         Sometimes
## 1899   47.63  105.00441 Heterosexual (straight)         Sometimes
## 1900   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1901   68.04  150.00000 Heterosexual (straight)            Rarely
## 1902   47.63  105.00441 Heterosexual (straight)  Most of the time
## 1903   63.50  139.99118 Heterosexual (straight)            Rarely
## 1904   46.72  102.99824 Heterosexual (straight)  Most of the time
## 1905   61.24  135.00882                Not sure            Rarely
## 1906   45.36  100.00000          Gay or lesbian         Sometimes
## 1907   43.09   94.99559                Not sure            Always
## 1908   88.91  196.00970 Heterosexual (straight)         Sometimes
## 1909      NA         NA                Not sure            Rarely
## 1910   75.75  166.99735 Heterosexual (straight)            Rarely
## 1911   57.61  127.00617 Heterosexual (straight)             Never
## 1912   54.43  119.99559 Heterosexual (straight)             Never
## 1913   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1914   50.80  111.99295          Gay or lesbian  Most of the time
## 1915   64.41  141.99735 Heterosexual (straight)            Rarely
## 1916   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1917      NA         NA Heterosexual (straight)            Rarely
## 1918   72.58  160.00882 Heterosexual (straight)             Never
## 1919   52.62  116.00529                Not sure         Sometimes
## 1920      NA         NA Heterosexual (straight)         Sometimes
## 1921      NA         NA          Some other way         Sometimes
## 1922   82.56  182.01058 Heterosexual (straight)             Never
## 1923   49.90  110.00882          Some other way            Always
## 1924   78.93  174.00794 Heterosexual (straight)            Rarely
## 1925   65.77  144.99559                Bisexual         Sometimes
## 1926   86.18  189.99118 Heterosexual (straight)  Most of the time
## 1927   58.97  130.00441                Bisexual  Most of the time
## 1928   56.70  125.00000 Heterosexual (straight)         Sometimes
## 1929   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1930   61.24  135.00882 Heterosexual (straight)         Sometimes
## 1931   65.77  144.99559 Heterosexual (straight)             Never
## 1932   81.65  180.00441          Gay or lesbian         Sometimes
## 1933   58.97  130.00441 Heterosexual (straight)            Rarely
## 1934   63.50  139.99118 Heterosexual (straight)         Sometimes
## 1935   59.88  132.01058 Heterosexual (straight)             Never
## 1936   68.04  150.00000 Heterosexual (straight)            Rarely
## 1937   78.02  172.00176 Heterosexual (straight)         Sometimes
## 1938  104.33  230.00441 Heterosexual (straight)         Sometimes
## 1939   70.31  155.00441 Heterosexual (straight)  Most of the time
## 1940   71.67  158.00265 Heterosexual (straight)            Rarely
## 1941   52.16  114.99118 Heterosexual (straight)            Rarely
## 1942   65.77  144.99559 Heterosexual (straight)            Rarely
## 1943   56.70  125.00000 Heterosexual (straight)  Most of the time
## 1944   63.50  139.99118 Heterosexual (straight)             Never
## 1945   54.43  119.99559 Heterosexual (straight)            Rarely
## 1946   72.58  160.00882 Heterosexual (straight)         Sometimes
## 1947   88.45  194.99559 Heterosexual (straight)         Sometimes
## 1948   56.70  125.00000                Bisexual         Sometimes
## 1949   81.65  180.00441 Heterosexual (straight)         Sometimes
## 1950   83.01  183.00265 Heterosexual (straight)         Sometimes
## 1951   73.94  163.00705 Heterosexual (straight)            Rarely
## 1952   65.77  144.99559 Heterosexual (straight)            Always
## 1953      NA         NA Heterosexual (straight)         Sometimes
## 1954      NA         NA Heterosexual (straight)         Sometimes
## 1955   52.62  116.00529 Heterosexual (straight)  Most of the time
## 1956   74.84  164.99118                Bisexual            Always
## 1957   54.43  119.99559 Heterosexual (straight)             Never
## 1958      NA         NA          Some other way            Always
## 1959      NA         NA Heterosexual (straight)             Never
## 1960   54.43  119.99559 Heterosexual (straight)         Sometimes
## 1961   50.80  111.99295 Heterosexual (straight)         Sometimes
## 1962   48.54  107.01058 Heterosexual (straight)  Most of the time
## 1963   74.84  164.99118 Heterosexual (straight)         Sometimes
## 1964   45.36  100.00000                Bisexual            Always
## 1965   56.70  125.00000 Heterosexual (straight)             Never
## 1966   60.78  133.99471 Heterosexual (straight)         Sometimes
## 1967   68.04  150.00000 Heterosexual (straight)            Rarely
## 1968      NA         NA                Bisexual            Rarely
## 1969   54.43  119.99559 Heterosexual (straight)  Most of the time
## 1970   47.63  105.00441                Not sure  Most of the time
## 1971      NA         NA Heterosexual (straight)  Most of the time
## 1972   54.43  119.99559 Heterosexual (straight)             Never
## 1973   55.79  122.99383 Heterosexual (straight)  Most of the time
## 1974      NA         NA Heterosexual (straight)             Never
## 1975   65.77  144.99559 Heterosexual (straight)            Rarely
## 1976      NA         NA Heterosexual (straight)         Sometimes
## 1977   45.36  100.00000 Heterosexual (straight)         Sometimes
## 1978   61.24  135.00882 Heterosexual (straight)  Most of the time
## 1979   65.77  144.99559 Heterosexual (straight)            Rarely
## 1980   86.18  189.99118 Heterosexual (straight)             Never
## 1981   74.84  164.99118 Heterosexual (straight)            Rarely
## 1982   45.36  100.00000 Heterosexual (straight)            Rarely
## 1983   65.77  144.99559 Heterosexual (straight)            Rarely
## 1984   72.58  160.00882 Heterosexual (straight)  Most of the time
## 1985   45.36  100.00000 Heterosexual (straight)            Rarely
## 1986   65.77  144.99559                Bisexual         Sometimes
## 1987  101.61  224.00794 Heterosexual (straight)         Sometimes
## 1988   42.64   94.00353          Gay or lesbian  Most of the time
## 1989   56.70  125.00000                Not sure         Sometimes
## 1990   58.97  130.00441 Heterosexual (straight)         Sometimes
## 1991  124.29  274.00794                Bisexual  Most of the time
## 1992   54.43  119.99559 Heterosexual (straight)             Never
## 1993   61.24  135.00882 Heterosexual (straight)             Never
## 1994  104.33  230.00441                Bisexual  Most of the time
## 1995   54.89  121.00970                Bisexual  Most of the time
## 1996   92.53  203.99030 Heterosexual (straight)  Most of the time
## 1997   45.36  100.00000                Bisexual  Most of the time
## 1998   77.11  169.99559 Heterosexual (straight)            Rarely
## 1999   79.38  175.00000 Heterosexual (straight)         Sometimes
## 2000      NA         NA                Bisexual         Sometimes
## 2001   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2002   50.80  111.99295 Heterosexual (straight)         Sometimes
## 2003   83.92  185.00882 Heterosexual (straight)  Most of the time
## 2004   53.52  117.98942                Bisexual            Rarely
## 2005   49.90  110.00882 Heterosexual (straight)  Most of the time
## 2006   58.97  130.00441 Heterosexual (straight)             Never
## 2007   53.07  116.99735 Heterosexual (straight)         Sometimes
## 2008   56.70  125.00000                Bisexual  Most of the time
## 2009   70.31  155.00441 Heterosexual (straight)         Sometimes
## 2010   60.78  133.99471          Some other way  Most of the time
## 2011   74.84  164.99118 Heterosexual (straight)             Never
## 2012   81.19  178.99030                Not sure            Always
## 2013   58.06  127.99824          Gay or lesbian  Most of the time
## 2014   56.70  125.00000 Heterosexual (straight)  Most of the time
## 2015   77.57  171.00970 Heterosexual (straight)            Rarely
## 2016   70.31  155.00441 Heterosexual (straight)             Never
## 2017   52.16  114.99118          Gay or lesbian  Most of the time
## 2018   90.72  200.00000                Not sure         Sometimes
## 2019   71.67  158.00265                Bisexual         Sometimes
## 2020   55.79  122.99383                Bisexual  Most of the time
## 2021   48.08  105.99647 Heterosexual (straight)         Sometimes
## 2022   57.61  127.00617 Heterosexual (straight)  Most of the time
## 2023   54.89  121.00970 Heterosexual (straight)         Sometimes
## 2024   53.52  117.98942 Heterosexual (straight)            Always
## 2025   74.84  164.99118 Heterosexual (straight)  Most of the time
## 2026   95.26  210.00882 Heterosexual (straight)         Sometimes
## 2027   76.20  167.98942 Heterosexual (straight)         Sometimes
## 2028   64.41  141.99735 Heterosexual (straight)            Rarely
## 2029   65.77  144.99559                Bisexual  Most of the time
## 2030   50.35  111.00088          Some other way         Sometimes
## 2031   65.77  144.99559 Heterosexual (straight)  Most of the time
## 2032   48.99  108.00265 Heterosexual (straight)         Sometimes
## 2033   77.11  169.99559 Heterosexual (straight)            Rarely
## 2034   68.04  150.00000                Bisexual         Sometimes
## 2035  111.13  244.99559 Heterosexual (straight)            Rarely
## 2036   45.36  100.00000 Heterosexual (straight)         Sometimes
## 2037   88.45  194.99559 Heterosexual (straight)         Sometimes
## 2038   74.84  164.99118 Heterosexual (straight)         Sometimes
## 2039   49.44  108.99471                Not sure  Most of the time
## 2040   42.64   94.00353                Bisexual  Most of the time
## 2041   60.33  133.00265 Heterosexual (straight)         Sometimes
## 2042   55.34  122.00176 Heterosexual (straight)  Most of the time
## 2043   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2044   79.38  175.00000 Heterosexual (straight)  Most of the time
## 2045   54.43  119.99559 Heterosexual (straight)            Rarely
## 2046   77.11  169.99559 Heterosexual (straight)            Always
## 2047   64.41  141.99735                Not sure             Never
## 2048   52.16  114.99118 Heterosexual (straight)             Never
## 2049   81.65  180.00441 Heterosexual (straight)            Rarely
## 2050   48.99  108.00265 Heterosexual (straight)            Rarely
## 2051   56.70  125.00000                Bisexual  Most of the time
## 2052   61.24  135.00882                Bisexual            Always
## 2053   46.72  102.99824                Bisexual  Most of the time
## 2054   81.65  180.00441 Heterosexual (straight)            Always
## 2055   48.54  107.01058                Bisexual         Sometimes
## 2056      NA         NA                Bisexual         Sometimes
## 2057   61.24  135.00882 Heterosexual (straight)  Most of the time
## 2058   72.58  160.00882 Heterosexual (straight)             Never
## 2059   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2060   73.48  161.99295 Heterosexual (straight)         Sometimes
## 2061   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2062   65.77  144.99559 Heterosexual (straight)  Most of the time
## 2063   83.92  185.00882          Gay or lesbian  Most of the time
## 2064   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2065   58.97  130.00441 Heterosexual (straight)            Always
## 2066   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2067   45.36  100.00000                Bisexual            Rarely
## 2068   58.97  130.00441 Heterosexual (straight)             Never
## 2069   54.43  119.99559                Bisexual  Most of the time
## 2070   61.24  135.00882          Gay or lesbian         Sometimes
## 2071   68.04  150.00000                Bisexual         Sometimes
## 2072      NA         NA                Not sure            Rarely
## 2073   61.24  135.00882 Heterosexual (straight)         Sometimes
## 2074   90.72  200.00000 Heterosexual (straight)            Rarely
## 2075   81.65  180.00441          Gay or lesbian         Sometimes
## 2076   68.04  150.00000                Bisexual         Sometimes
## 2077   58.97  130.00441 Heterosexual (straight)            Rarely
## 2078   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2079   95.26  210.00882 Heterosexual (straight)            Rarely
## 2080   53.52  117.98942 Heterosexual (straight)  Most of the time
## 2081   65.77  144.99559 Heterosexual (straight)             Never
## 2082   56.70  125.00000          Gay or lesbian              <NA>
## 2083   61.69  136.00088          Some other way            Always
## 2084   55.34  122.00176 Heterosexual (straight)         Sometimes
## 2085   52.16  114.99118 Heterosexual (straight)  Most of the time
## 2086   54.89  121.00970                Bisexual  Most of the time
## 2087   63.05  138.99912 Heterosexual (straight)             Never
## 2088   45.36  100.00000                Bisexual         Sometimes
## 2089   54.43  119.99559                Not sure  Most of the time
## 2090   49.44  108.99471 Heterosexual (straight)         Sometimes
## 2091      NA         NA Heterosexual (straight)             Never
## 2092   59.88  132.01058                Bisexual  Most of the time
## 2093   56.70  125.00000                Not sure  Most of the time
## 2094      NA         NA                Bisexual         Sometimes
## 2095   99.79  219.99559                Bisexual         Sometimes
## 2096   57.61  127.00617 Heterosexual (straight)            Rarely
## 2097   46.27  102.00617 Heterosexual (straight)  Most of the time
## 2098   51.26  113.00705                Bisexual  Most of the time
## 2099   52.16  114.99118 Heterosexual (straight)             Never
## 2100   53.07  116.99735 Heterosexual (straight)            Rarely
## 2101   70.76  155.99647                Bisexual  Most of the time
## 2102   58.06  127.99824                Bisexual  Most of the time
## 2103   60.78  133.99471 Heterosexual (straight)         Sometimes
## 2104  113.40  250.00000 Heterosexual (straight)             Never
## 2105      NA         NA Heterosexual (straight)         Sometimes
## 2106      NA         NA                Not sure  Most of the time
## 2107   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2108   46.27  102.00617 Heterosexual (straight)  Most of the time
## 2109   52.16  114.99118                Bisexual         Sometimes
## 2110      NA         NA Heterosexual (straight)         Sometimes
## 2111   63.50  139.99118 Heterosexual (straight)         Sometimes
## 2112   45.36  100.00000          Some other way            Always
## 2113   90.72  200.00000 Heterosexual (straight)            Rarely
## 2114   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2115   49.90  110.00882 Heterosexual (straight)  Most of the time
## 2116   65.77  144.99559                Not sure            Rarely
## 2117   63.50  139.99118          Gay or lesbian         Sometimes
## 2118      NA         NA Heterosexual (straight)              <NA>
## 2119   40.82   89.99118 Heterosexual (straight)         Sometimes
## 2120   53.52  117.98942 Heterosexual (straight)  Most of the time
## 2121   71.67  158.00265                Bisexual         Sometimes
## 2122   83.01  183.00265 Heterosexual (straight)            Rarely
## 2123   54.43  119.99559 Heterosexual (straight)             Never
## 2124   67.13  147.99383 Heterosexual (straight)            Rarely
## 2125   54.43  119.99559 Heterosexual (straight)            Always
## 2126   42.64   94.00353          Some other way            Rarely
## 2127   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2128   47.63  105.00441 Heterosexual (straight)         Sometimes
## 2129   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2130   45.81  100.99206 Heterosexual (straight)  Most of the time
## 2131   83.92  185.00882 Heterosexual (straight)            Always
## 2132   68.95  152.00617 Heterosexual (straight)         Sometimes
## 2133   68.04  150.00000          Some other way  Most of the time
## 2134   45.36  100.00000 Heterosexual (straight)  Most of the time
## 2135   64.41  141.99735                Not sure  Most of the time
## 2136   46.27  102.00617 Heterosexual (straight)         Sometimes
## 2137   54.43  119.99559 Heterosexual (straight)            Rarely
## 2138   44.45   97.99383 Heterosexual (straight)  Most of the time
## 2139   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2140   65.77  144.99559 Heterosexual (straight)            Rarely
## 2141   56.70  125.00000 Heterosexual (straight)            Rarely
## 2142   54.43  119.99559                Bisexual         Sometimes
## 2143   54.43  119.99559          Some other way  Most of the time
## 2144   67.13  147.99383 Heterosexual (straight)  Most of the time
## 2145   56.70  125.00000 Heterosexual (straight)  Most of the time
## 2146   48.54  107.01058 Heterosexual (straight)         Sometimes
## 2147  111.13  244.99559 Heterosexual (straight)            Always
## 2148   54.43  119.99559          Gay or lesbian  Most of the time
## 2149   75.75  166.99735 Heterosexual (straight)            Rarely
## 2150   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2151   58.51  128.99030 Heterosexual (straight)         Sometimes
## 2152      NA         NA                Bisexual            Rarely
## 2153   81.65  180.00441                Bisexual         Sometimes
## 2154   56.70  125.00000          Some other way             Never
## 2155   56.70  125.00000 Heterosexual (straight)            Rarely
## 2156   76.20  167.98942 Heterosexual (straight)         Sometimes
## 2157   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2158   68.04  150.00000          Gay or lesbian            Rarely
## 2159   78.02  172.00176 Heterosexual (straight)            Rarely
## 2160   86.18  189.99118 Heterosexual (straight)            Rarely
## 2161   77.11  169.99559 Heterosexual (straight)             Never
## 2162      NA         NA Heterosexual (straight)             Never
## 2163   52.16  114.99118 Heterosexual (straight)         Sometimes
## 2164  108.86  239.99118          Some other way  Most of the time
## 2165   86.18  189.99118 Heterosexual (straight)         Sometimes
## 2166  108.86  239.99118 Heterosexual (straight)            Rarely
## 2167  113.40  250.00000 Heterosexual (straight)             Never
## 2168  120.66  266.00529                Bisexual            Always
## 2169   65.77  144.99559 Heterosexual (straight)            Rarely
## 2170   39.46   86.99295 Heterosexual (straight)         Sometimes
## 2171   45.36  100.00000          Gay or lesbian            Always
## 2172      NA         NA                Bisexual  Most of the time
## 2173   81.65  180.00441 Heterosexual (straight)  Most of the time
## 2174   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2175   92.99  205.00441 Heterosexual (straight)            Always
## 2176   81.65  180.00441 Heterosexual (straight)              <NA>
## 2177   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2178  149.69  330.00441 Heterosexual (straight)            Rarely
## 2179   58.06  127.99824 Heterosexual (straight)         Sometimes
## 2180   91.17  200.99206 Heterosexual (straight)         Sometimes
## 2181   61.69  136.00088          Gay or lesbian         Sometimes
## 2182   53.52  117.98942 Heterosexual (straight)         Sometimes
## 2183   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2184   56.70  125.00000 Heterosexual (straight)  Most of the time
## 2185      NA         NA Heterosexual (straight)             Never
## 2186   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2187   61.24  135.00882 Heterosexual (straight)         Sometimes
## 2188   52.16  114.99118 Heterosexual (straight)  Most of the time
## 2189   61.24  135.00882                Bisexual         Sometimes
## 2190   45.36  100.00000 Heterosexual (straight)            Rarely
## 2191   58.97  130.00441          Gay or lesbian            Always
## 2192   77.11  169.99559 Heterosexual (straight)            Rarely
## 2193   73.94  163.00705 Heterosexual (straight)  Most of the time
## 2194   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2195   64.41  141.99735          Gay or lesbian            Rarely
## 2196   49.90  110.00882 Heterosexual (straight)         Sometimes
## 2197   90.72  200.00000 Heterosexual (straight)  Most of the time
## 2198   62.60  138.00705          Gay or lesbian  Most of the time
## 2199   54.43  119.99559 Heterosexual (straight)  Most of the time
## 2200   76.20  167.98942 Heterosexual (straight)         Sometimes
## 2201   78.47  172.99383 Heterosexual (straight)            Rarely
## 2202   72.58  160.00882          Some other way            Rarely
## 2203   72.12  158.99471 Heterosexual (straight)         Sometimes
## 2204   68.04  150.00000 Heterosexual (straight)            Rarely
## 2205   65.77  144.99559 Heterosexual (straight)  Most of the time
## 2206   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2207      NA         NA Heterosexual (straight)            Rarely
## 2208   65.77  144.99559 Heterosexual (straight)            Rarely
## 2209   90.72  200.00000 Heterosexual (straight)         Sometimes
## 2210   58.97  130.00441          Gay or lesbian         Sometimes
## 2211   83.92  185.00882                Not sure  Most of the time
## 2212   75.30  166.00529 Heterosexual (straight)  Most of the time
## 2213   70.31  155.00441 Heterosexual (straight)         Sometimes
## 2214  142.43  313.99912          Gay or lesbian  Most of the time
## 2215   67.59  149.00794 Heterosexual (straight)         Sometimes
## 2216   64.41  141.99735 Heterosexual (straight)         Sometimes
## 2217   72.58  160.00882                Bisexual  Most of the time
## 2218   68.04  150.00000 Heterosexual (straight)              <NA>
## 2219   83.92  185.00882 Heterosexual (straight)             Never
## 2220   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2221   79.38  175.00000 Heterosexual (straight)            Rarely
## 2222   61.24  135.00882 Heterosexual (straight)            Rarely
## 2223   53.52  117.98942 Heterosexual (straight)            Rarely
## 2224   57.61  127.00617 Heterosexual (straight)            Rarely
## 2225   48.54  107.01058 Heterosexual (straight)         Sometimes
## 2226   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2227   45.36  100.00000 Heterosexual (straight)            Rarely
## 2228   56.25  124.00794 Heterosexual (straight)             Never
## 2229   43.55   96.00970          Some other way         Sometimes
## 2230   54.43  119.99559 Heterosexual (straight)            Rarely
## 2231   31.75   69.99559 Heterosexual (straight)            Rarely
## 2232   65.77  144.99559 Heterosexual (straight)             Never
## 2233   99.79  219.99559          Some other way  Most of the time
## 2234   56.70  125.00000 Heterosexual (straight)  Most of the time
## 2235   72.58  160.00882 Heterosexual (straight)  Most of the time
## 2236   61.69  136.00088 Heterosexual (straight)            Rarely
## 2237      NA         NA Heterosexual (straight)  Most of the time
## 2238   57.15  125.99206 Heterosexual (straight)            Rarely
## 2239   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2240      NA         NA Heterosexual (straight)             Never
## 2241   54.43  119.99559          Gay or lesbian            Always
## 2242   43.09   94.99559 Heterosexual (straight)         Sometimes
## 2243   49.90  110.00882 Heterosexual (straight)             Never
## 2244   77.11  169.99559 Heterosexual (straight)  Most of the time
## 2245   61.24  135.00882 Heterosexual (straight)            Rarely
## 2246   46.27  102.00617                Bisexual         Sometimes
## 2247   77.57  171.00970 Heterosexual (straight)  Most of the time
## 2248      NA         NA Heterosexual (straight)         Sometimes
## 2249   52.16  114.99118 Heterosexual (straight)             Never
## 2250   56.25  124.00794 Heterosexual (straight)            Rarely
## 2251   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2252   55.34  122.00176 Heterosexual (straight)         Sometimes
## 2253      NA         NA Heterosexual (straight)         Sometimes
## 2254   68.04  150.00000 Heterosexual (straight)            Rarely
## 2255   76.20  167.98942 Heterosexual (straight)             Never
## 2256   92.99  205.00441 Heterosexual (straight)            Rarely
## 2257   61.24  135.00882          Gay or lesbian            Always
## 2258      NA         NA Heterosexual (straight)             Never
## 2259   59.42  130.99647 Heterosexual (straight)             Never
## 2260   58.97  130.00441 Heterosexual (straight)             Never
## 2261   70.76  155.99647                Bisexual            Rarely
## 2262  104.33  230.00441                Not sure         Sometimes
## 2263  113.40  250.00000 Heterosexual (straight)            Rarely
## 2264   49.90  110.00882 Heterosexual (straight)             Never
## 2265   68.04  150.00000 Heterosexual (straight)            Rarely
## 2266   43.09   94.99559 Heterosexual (straight)         Sometimes
## 2267  113.40  250.00000 Heterosexual (straight)            Always
## 2268   74.84  164.99118 Heterosexual (straight)  Most of the time
## 2269   65.77  144.99559 Heterosexual (straight)             Never
## 2270   61.24  135.00882 Heterosexual (straight)             Never
## 2271   55.34  122.00176                Bisexual  Most of the time
## 2272   58.97  130.00441 Heterosexual (straight)            Always
## 2273   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2274   65.77  144.99559 Heterosexual (straight)  Most of the time
## 2275   72.58  160.00882                Bisexual         Sometimes
## 2276   56.70  125.00000 Heterosexual (straight)            Always
## 2277      NA         NA Heterosexual (straight)         Sometimes
## 2278  103.87  228.99030 Heterosexual (straight)         Sometimes
## 2279   74.84  164.99118                Bisexual  Most of the time
## 2280   63.50  139.99118 Heterosexual (straight)  Most of the time
## 2281   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2282   77.57  171.00970 Heterosexual (straight)             Never
## 2283   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2284   44.45   97.99383                Bisexual  Most of the time
## 2285   62.60  138.00705                Not sure            Rarely
## 2286   81.65  180.00441 Heterosexual (straight)         Sometimes
## 2287   97.52  214.99118 Heterosexual (straight)             Never
## 2288   53.98  119.00353 Heterosexual (straight)         Sometimes
## 2289   93.90  207.01058 Heterosexual (straight)         Sometimes
## 2290      NA         NA Heterosexual (straight)  Most of the time
## 2291   63.50  139.99118 Heterosexual (straight)             Never
## 2292  108.86  239.99118 Heterosexual (straight)            Rarely
## 2293   51.71  113.99912 Heterosexual (straight)         Sometimes
## 2294   73.94  163.00705                Not sure  Most of the time
## 2295   68.95  152.00617                Not sure            Rarely
## 2296   68.04  150.00000 Heterosexual (straight)  Most of the time
## 2297   78.93  174.00794 Heterosexual (straight)            Rarely
## 2298   93.90  207.01058          Some other way  Most of the time
## 2299   68.95  152.00617 Heterosexual (straight)            Rarely
## 2300   42.64   94.00353 Heterosexual (straight)  Most of the time
## 2301      NA         NA Heterosexual (straight)             Never
## 2302   49.90  110.00882 Heterosexual (straight)  Most of the time
## 2303   54.43  119.99559 Heterosexual (straight)            Rarely
## 2304   49.90  110.00882                Not sure  Most of the time
## 2305   74.84  164.99118 Heterosexual (straight)            Rarely
## 2306   48.99  108.00265 Heterosexual (straight)         Sometimes
## 2307   64.41  141.99735 Heterosexual (straight)         Sometimes
## 2308   56.70  125.00000 Heterosexual (straight)            Rarely
## 2309   70.31  155.00441          Gay or lesbian            Always
## 2310   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2311   68.04  150.00000 Heterosexual (straight)             Never
## 2312   74.84  164.99118 Heterosexual (straight)            Rarely
## 2313   68.95  152.00617 Heterosexual (straight)             Never
## 2314   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2315      NA         NA                Bisexual            Always
## 2316   75.30  166.00529 Heterosexual (straight)         Sometimes
## 2317   49.90  110.00882 Heterosexual (straight)            Always
## 2318  140.62  310.00882 Heterosexual (straight)            Rarely
## 2319   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2320   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2321   65.77  144.99559 Heterosexual (straight)            Rarely
## 2322   86.18  189.99118 Heterosexual (straight)            Rarely
## 2323   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2324   72.58  160.00882 Heterosexual (straight)            Rarely
## 2325   80.74  177.99824                Bisexual  Most of the time
## 2326   77.11  169.99559 Heterosexual (straight)         Sometimes
## 2327   83.92  185.00882 Heterosexual (straight)             Never
## 2328   78.47  172.99383 Heterosexual (straight)         Sometimes
## 2329   81.65  180.00441 Heterosexual (straight)            Rarely
## 2330      NA         NA          Some other way  Most of the time
## 2331   81.65  180.00441 Heterosexual (straight)            Rarely
## 2332   63.50  139.99118 Heterosexual (straight)            Rarely
## 2333  115.67  255.00441                Bisexual  Most of the time
## 2334   79.38  175.00000 Heterosexual (straight)              <NA>
## 2335   72.58  160.00882                Bisexual             Never
## 2336   65.77  144.99559 Heterosexual (straight)             Never
## 2337   52.16  114.99118 Heterosexual (straight)         Sometimes
## 2338   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2339   48.08  105.99647 Heterosexual (straight)            Rarely
## 2340   58.97  130.00441 Heterosexual (straight)             Never
## 2341   74.84  164.99118 Heterosexual (straight)             Never
## 2342   47.63  105.00441 Heterosexual (straight)  Most of the time
## 2343      NA         NA                Bisexual  Most of the time
## 2344   65.77  144.99559 Heterosexual (straight)         Sometimes
## 2345   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2346   68.49  150.99206 Heterosexual (straight)         Sometimes
## 2347   85.73  188.99912 Heterosexual (straight)         Sometimes
## 2348   81.65  180.00441 Heterosexual (straight)             Never
## 2349   68.04  150.00000                Bisexual            Always
## 2350      NA         NA Heterosexual (straight)              <NA>
## 2351  104.33  230.00441                Not sure  Most of the time
## 2352      NA         NA Heterosexual (straight)         Sometimes
## 2353   33.57   74.00794 Heterosexual (straight)         Sometimes
## 2354   58.06  127.99824 Heterosexual (straight)         Sometimes
## 2355   63.50  139.99118 Heterosexual (straight)  Most of the time
## 2356   86.18  189.99118 Heterosexual (straight)             Never
## 2357      NA         NA Heterosexual (straight)             Never
## 2358   65.77  144.99559 Heterosexual (straight)            Rarely
## 2359   54.43  119.99559 Heterosexual (straight)             Never
## 2360   62.14  136.99295 Heterosexual (straight)         Sometimes
## 2361   81.65  180.00441 Heterosexual (straight)         Sometimes
## 2362   40.82   89.99118                Bisexual            Always
## 2363   77.11  169.99559 Heterosexual (straight)         Sometimes
## 2364   99.79  219.99559 Heterosexual (straight)             Never
## 2365   86.18  189.99118 Heterosexual (straight)  Most of the time
## 2366   63.50  139.99118 Heterosexual (straight)            Rarely
## 2367   95.26  210.00882 Heterosexual (straight)             Never
## 2368   97.07  213.99912                Bisexual         Sometimes
## 2369   72.58  160.00882 Heterosexual (straight)            Rarely
## 2370   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2371   70.31  155.00441                Bisexual  Most of the time
## 2372   65.77  144.99559                Bisexual  Most of the time
## 2373   86.18  189.99118                Bisexual            Always
## 2374   41.28   91.00529 Heterosexual (straight)         Sometimes
## 2375   90.72  200.00000 Heterosexual (straight)         Sometimes
## 2376   83.92  185.00882 Heterosexual (straight)  Most of the time
## 2377   74.84  164.99118 Heterosexual (straight)  Most of the time
## 2378      NA         NA                Bisexual            Rarely
## 2379   45.36  100.00000          Gay or lesbian         Sometimes
## 2380   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2381   59.88  132.01058                Bisexual         Sometimes
## 2382   81.65  180.00441 Heterosexual (straight)         Sometimes
## 2383   60.78  133.99471 Heterosexual (straight)  Most of the time
## 2384   48.99  108.00265 Heterosexual (straight)         Sometimes
## 2385   81.65  180.00441 Heterosexual (straight)             Never
## 2386   88.45  194.99559 Heterosexual (straight)             Never
## 2387   86.18  189.99118 Heterosexual (straight)         Sometimes
## 2388  130.18  286.99295 Heterosexual (straight)         Sometimes
## 2389      NA         NA Heterosexual (straight)             Never
## 2390   53.98  119.00353 Heterosexual (straight)             Never
## 2391  106.60  235.00882          Gay or lesbian             Never
## 2392   43.55   96.00970                Not sure  Most of the time
## 2393   57.15  125.99206 Heterosexual (straight)         Sometimes
## 2394   70.31  155.00441 Heterosexual (straight)            Rarely
## 2395      NA         NA                Bisexual  Most of the time
## 2396   79.38  175.00000 Heterosexual (straight)            Rarely
## 2397  104.33  230.00441 Heterosexual (straight)         Sometimes
## 2398   84.82  186.99295 Heterosexual (straight)         Sometimes
## 2399  104.33  230.00441 Heterosexual (straight)            Rarely
## 2400   51.26  113.00705 Heterosexual (straight)         Sometimes
## 2401  108.86  239.99118 Heterosexual (straight)            Rarely
## 2402   68.04  150.00000 Heterosexual (straight)            Rarely
## 2403   77.57  171.00970 Heterosexual (straight)             Never
## 2404   65.32  144.00353 Heterosexual (straight)  Most of the time
## 2405   90.72  200.00000 Heterosexual (straight)         Sometimes
## 2406   67.13  147.99383 Heterosexual (straight)            Rarely
## 2407   54.43  119.99559 Heterosexual (straight)             Never
## 2408   50.35  111.00088 Heterosexual (straight)  Most of the time
## 2409   68.04  150.00000 Heterosexual (straight)             Never
## 2410  129.28  285.00882 Heterosexual (straight)            Always
## 2411   50.80  111.99295                Bisexual            Always
## 2412   63.50  139.99118 Heterosexual (straight)            Rarely
## 2413   65.77  144.99559                Bisexual         Sometimes
## 2414      NA         NA Heterosexual (straight)         Sometimes
## 2415   61.24  135.00882 Heterosexual (straight)         Sometimes
## 2416   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2417   52.16  114.99118 Heterosexual (straight)            Rarely
## 2418   81.65  180.00441 Heterosexual (straight)             Never
## 2419   57.15  125.99206          Some other way  Most of the time
## 2420   56.70  125.00000 Heterosexual (straight)            Rarely
## 2421      NA         NA Heterosexual (straight)         Sometimes
## 2422   83.92  185.00882 Heterosexual (straight)            Rarely
## 2423   54.43  119.99559 Heterosexual (straight)             Never
## 2424   73.94  163.00705 Heterosexual (straight)            Always
## 2425   92.99  205.00441 Heterosexual (straight)             Never
## 2426   68.04  150.00000 Heterosexual (straight)  Most of the time
## 2427      NA         NA          Gay or lesbian            Rarely
## 2428   92.99  205.00441                Bisexual         Sometimes
## 2429   68.04  150.00000 Heterosexual (straight)  Most of the time
## 2430   45.36  100.00000                Bisexual         Sometimes
## 2431  150.14  330.99647 Heterosexual (straight)         Sometimes
## 2432   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2433   88.91  196.00970 Heterosexual (straight)            Rarely
## 2434   49.90  110.00882                Bisexual            Always
## 2435   58.06  127.99824 Heterosexual (straight)            Rarely
## 2436   45.36  100.00000 Heterosexual (straight)             Never
## 2437   48.08  105.99647 Heterosexual (straight)  Most of the time
## 2438   81.19  178.99030 Heterosexual (straight)  Most of the time
## 2439  120.20  264.99118                Bisexual         Sometimes
## 2440   68.95  152.00617 Heterosexual (straight)            Always
## 2441   78.02  172.00176 Heterosexual (straight)  Most of the time
## 2442  104.33  230.00441                Bisexual  Most of the time
## 2443   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2444   58.97  130.00441                Not sure  Most of the time
## 2445      NA         NA Heterosexual (straight)             Never
## 2446   58.97  130.00441 Heterosexual (straight)            Rarely
## 2447   73.03  161.00088 Heterosexual (straight)             Never
## 2448   58.97  130.00441          Gay or lesbian  Most of the time
## 2449   52.16  114.99118                Bisexual  Most of the time
## 2450   99.79  219.99559 Heterosexual (straight)             Never
## 2451   89.36  197.00176 Heterosexual (straight)            Rarely
## 2452   62.14  136.99295 Heterosexual (straight)         Sometimes
## 2453      NA         NA Heterosexual (straight)             Never
## 2454   79.38  175.00000 Heterosexual (straight)             Never
## 2455   47.17  103.99030                Not sure  Most of the time
## 2456   54.43  119.99559 Heterosexual (straight)  Most of the time
## 2457   63.50  139.99118          Some other way  Most of the time
## 2458   53.98  119.00353 Heterosexual (straight)            Rarely
## 2459      NA         NA                Bisexual  Most of the time
## 2460      NA         NA          Gay or lesbian             Never
## 2461   81.65  180.00441 Heterosexual (straight)             Never
## 2462   62.14  136.99295          Gay or lesbian         Sometimes
## 2463   71.67  158.00265          Gay or lesbian             Never
## 2464   54.43  119.99559 Heterosexual (straight)             Never
## 2465   56.70  125.00000 Heterosexual (straight)            Always
## 2466   82.56  182.01058                Bisexual            Always
## 2467   71.67  158.00265                Bisexual  Most of the time
## 2468   72.58  160.00882 Heterosexual (straight)  Most of the time
## 2469   54.43  119.99559 Heterosexual (straight)             Never
## 2470   63.50  139.99118 Heterosexual (straight)             Never
## 2471  129.28  285.00882 Heterosexual (straight)            Always
## 2472   58.97  130.00441          Gay or lesbian         Sometimes
## 2473   58.06  127.99824 Heterosexual (straight)            Rarely
## 2474   40.82   89.99118 Heterosexual (straight)            Rarely
## 2475      NA         NA                Not sure         Sometimes
## 2476   54.43  119.99559 Heterosexual (straight)            Rarely
## 2477   82.56  182.01058                Bisexual  Most of the time
## 2478   48.99  108.00265 Heterosexual (straight)            Rarely
## 2479   49.90  110.00882                Not sure         Sometimes
## 2480   72.58  160.00882 Heterosexual (straight)             Never
## 2481   50.80  111.99295                Bisexual         Sometimes
## 2482  158.76  350.00000                Bisexual            Always
## 2483   61.69  136.00088 Heterosexual (straight)            Always
## 2484   61.24  135.00882 Heterosexual (straight)            Rarely
## 2485   61.24  135.00882 Heterosexual (straight)         Sometimes
## 2486   63.50  139.99118          Gay or lesbian         Sometimes
## 2487   72.12  158.99471                Not sure             Never
## 2488   81.65  180.00441 Heterosexual (straight)         Sometimes
## 2489   54.43  119.99559 Heterosexual (straight)            Rarely
## 2490   89.81  197.99383 Heterosexual (straight)              <NA>
## 2491   83.92  185.00882 Heterosexual (straight)            Rarely
## 2492   45.36  100.00000                Not sure            Always
## 2493      NA         NA Heterosexual (straight)            Rarely
## 2494   65.77  144.99559 Heterosexual (straight)            Rarely
## 2495   58.97  130.00441 Heterosexual (straight)            Always
## 2496   79.38  175.00000 Heterosexual (straight)             Never
## 2497   58.97  130.00441 Heterosexual (straight)            Always
## 2498   68.04  150.00000 Heterosexual (straight)  Most of the time
## 2499   72.58  160.00882 Heterosexual (straight)  Most of the time
## 2500  139.71  308.00265 Heterosexual (straight)             Never
## 2501      NA         NA Heterosexual (straight)  Most of the time
## 2502   86.64  191.00529 Heterosexual (straight)             Never
## 2503   61.69  136.00088 Heterosexual (straight)            Rarely
## 2504   52.16  114.99118 Heterosexual (straight)         Sometimes
## 2505   56.70  125.00000 Heterosexual (straight)            Rarely
## 2506      NA         NA Heterosexual (straight)              <NA>
## 2507   74.84  164.99118                Bisexual  Most of the time
## 2508   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2509   49.90  110.00882 Heterosexual (straight)         Sometimes
## 2510   52.16  114.99118 Heterosexual (straight)            Rarely
## 2511   62.60  138.00705 Heterosexual (straight)             Never
## 2512   83.92  185.00882 Heterosexual (straight)  Most of the time
## 2513   86.18  189.99118 Heterosexual (straight)            Rarely
## 2514   90.72  200.00000 Heterosexual (straight)            Rarely
## 2515   63.96  141.00529 Heterosexual (straight)         Sometimes
## 2516   99.79  219.99559 Heterosexual (straight)            Rarely
## 2517   56.70  125.00000 Heterosexual (straight)            Rarely
## 2518   63.50  139.99118 Heterosexual (straight)             Never
## 2519   54.43  119.99559          Gay or lesbian  Most of the time
## 2520      NA         NA Heterosexual (straight)         Sometimes
## 2521  108.86  239.99118 Heterosexual (straight)            Rarely
## 2522   51.71  113.99912 Heterosexual (straight)            Rarely
## 2523   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2524   61.24  135.00882 Heterosexual (straight)         Sometimes
## 2525   70.76  155.99647 Heterosexual (straight)            Rarely
## 2526   68.04  150.00000          Some other way            Always
## 2527   54.43  119.99559          Gay or lesbian            Always
## 2528   54.89  121.00970 Heterosexual (straight)  Most of the time
## 2529   84.37  186.00088                Bisexual         Sometimes
## 2530  143.34  316.00529                Not sure         Sometimes
## 2531   73.94  163.00705 Heterosexual (straight)         Sometimes
## 2532  102.06  225.00000 Heterosexual (straight)         Sometimes
## 2533   68.04  150.00000 Heterosexual (straight)            Rarely
## 2534   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2535      NA         NA Heterosexual (straight)         Sometimes
## 2536   68.04  150.00000 Heterosexual (straight)             Never
## 2537   90.72  200.00000 Heterosexual (straight)             Never
## 2538   49.90  110.00882 Heterosexual (straight)         Sometimes
## 2539   77.11  169.99559 Heterosexual (straight)         Sometimes
## 2540   53.52  117.98942 Heterosexual (straight)              <NA>
## 2541      NA         NA Heterosexual (straight)  Most of the time
## 2542      NA         NA Heterosexual (straight)         Sometimes
## 2543   65.77  144.99559                Bisexual         Sometimes
## 2544  104.33  230.00441 Heterosexual (straight)            Rarely
## 2545   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2546   71.22  157.01058 Heterosexual (straight)            Always
## 2547   61.24  135.00882 Heterosexual (straight)         Sometimes
## 2548   54.43  119.99559 Heterosexual (straight)             Never
## 2549  101.15  222.99383                Bisexual         Sometimes
## 2550   54.43  119.99559 Heterosexual (straight)  Most of the time
## 2551      NA         NA Heterosexual (straight)             Never
## 2552   90.72  200.00000                Bisexual            Always
## 2553   61.24  135.00882 Heterosexual (straight)            Always
## 2554   98.43  216.99735 Heterosexual (straight)             Never
## 2555   65.77  144.99559 Heterosexual (straight)         Sometimes
## 2556   77.11  169.99559                Bisexual         Sometimes
## 2557   77.11  169.99559 Heterosexual (straight)            Always
## 2558  117.94  260.00882 Heterosexual (straight)         Sometimes
## 2559   90.72  200.00000 Heterosexual (straight)         Sometimes
## 2560   79.38  175.00000 Heterosexual (straight)             Never
## 2561   58.97  130.00441                Bisexual            Always
## 2562   65.77  144.99559 Heterosexual (straight)            Rarely
## 2563      NA         NA Heterosexual (straight)             Never
## 2564   68.04  150.00000                Bisexual  Most of the time
## 2565   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2566   65.77  144.99559 Heterosexual (straight)         Sometimes
## 2567   62.60  138.00705                Bisexual            Always
## 2568   53.52  117.98942 Heterosexual (straight)             Never
## 2569   63.50  139.99118 Heterosexual (straight)             Never
## 2570   54.43  119.99559                Bisexual            Always
## 2571   73.48  161.99295 Heterosexual (straight)         Sometimes
## 2572   99.79  219.99559                Bisexual         Sometimes
## 2573   65.77  144.99559                Bisexual         Sometimes
## 2574   90.72  200.00000          Some other way         Sometimes
## 2575   86.18  189.99118 Heterosexual (straight)  Most of the time
## 2576   58.97  130.00441 Heterosexual (straight)            Rarely
## 2577   77.11  169.99559 Heterosexual (straight)         Sometimes
## 2578  104.33  230.00441          Some other way         Sometimes
## 2579   65.77  144.99559          Some other way            Always
## 2580   65.77  144.99559 Heterosexual (straight)         Sometimes
## 2581   72.58  160.00882 Heterosexual (straight)  Most of the time
## 2582   59.88  132.01058 Heterosexual (straight)         Sometimes
## 2583   59.88  132.01058 Heterosexual (straight)         Sometimes
## 2584   49.90  110.00882 Heterosexual (straight)            Rarely
## 2585   52.16  114.99118 Heterosexual (straight)            Rarely
## 2586   61.24  135.00882                Not sure  Most of the time
## 2587   83.92  185.00882 Heterosexual (straight)            Always
## 2588   52.16  114.99118          Some other way            Rarely
## 2589   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2590   64.41  141.99735          Some other way         Sometimes
## 2591   51.71  113.99912 Heterosexual (straight)         Sometimes
## 2592   45.36  100.00000 Heterosexual (straight)  Most of the time
## 2593   72.58  160.00882          Some other way              <NA>
## 2594   61.24  135.00882 Heterosexual (straight)  Most of the time
## 2595   88.45  194.99559                Not sure            Rarely
## 2596   90.72  200.00000 Heterosexual (straight)         Sometimes
## 2597   72.58  160.00882 Heterosexual (straight)             Never
## 2598   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2599  129.28  285.00882                Bisexual            Rarely
## 2600   60.78  133.99471 Heterosexual (straight)            Rarely
## 2601   65.77  144.99559 Heterosexual (straight)            Rarely
## 2602   37.20   82.01058 Heterosexual (straight)            Always
## 2603   56.70  125.00000 Heterosexual (straight)            Rarely
## 2604   59.42  130.99647                Bisexual            Rarely
## 2605   68.04  150.00000 Heterosexual (straight)            Always
## 2606   42.18   92.98942          Gay or lesbian         Sometimes
## 2607   77.11  169.99559 Heterosexual (straight)         Sometimes
## 2608   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2609   68.04  150.00000                Bisexual             Never
## 2610  113.40  250.00000 Heterosexual (straight)            Always
## 2611      NA         NA Heterosexual (straight)            Rarely
## 2612   77.57  171.00970          Some other way  Most of the time
## 2613   77.11  169.99559 Heterosexual (straight)  Most of the time
## 2614   95.26  210.00882          Gay or lesbian         Sometimes
## 2615   68.04  150.00000                Not sure  Most of the time
## 2616   63.50  139.99118 Heterosexual (straight)         Sometimes
## 2617   86.18  189.99118          Gay or lesbian         Sometimes
## 2618  124.74  275.00000 Heterosexual (straight)         Sometimes
## 2619   47.63  105.00441 Heterosexual (straight)            Rarely
## 2620   86.64  191.00529          Some other way  Most of the time
## 2621   39.92   88.00705 Heterosexual (straight)         Sometimes
## 2622   47.63  105.00441 Heterosexual (straight)         Sometimes
## 2623  115.67  255.00441 Heterosexual (straight)         Sometimes
## 2624   98.43  216.99735                Bisexual             Never
## 2625   63.50  139.99118 Heterosexual (straight)         Sometimes
## 2626   51.71  113.99912                Not sure  Most of the time
## 2627   63.50  139.99118 Heterosexual (straight)         Sometimes
## 2628   83.01  183.00265 Heterosexual (straight)            Rarely
## 2629   55.79  122.99383                Bisexual             Never
## 2630   54.43  119.99559          Gay or lesbian         Sometimes
## 2631   68.95  152.00617 Heterosexual (straight)             Never
## 2632   65.32  144.00353 Heterosexual (straight)             Never
## 2633   59.88  132.01058 Heterosexual (straight)         Sometimes
## 2634  117.03  258.00265 Heterosexual (straight)         Sometimes
## 2635   63.50  139.99118 Heterosexual (straight)            Rarely
## 2636   80.29  177.00617                Not sure         Sometimes
## 2637   70.76  155.99647 Heterosexual (straight)         Sometimes
## 2638   98.43  216.99735                Bisexual  Most of the time
## 2639  104.33  230.00441                Bisexual         Sometimes
## 2640   52.62  116.00529 Heterosexual (straight)         Sometimes
## 2641   76.66  169.00353 Heterosexual (straight)             Never
## 2642   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2643   63.50  139.99118 Heterosexual (straight)             Never
## 2644   78.47  172.99383                Bisexual         Sometimes
## 2645      NA         NA                Bisexual         Sometimes
## 2646   45.36  100.00000 Heterosexual (straight)            Rarely
## 2647   63.50  139.99118 Heterosexual (straight)            Rarely
## 2648   54.43  119.99559 Heterosexual (straight)  Most of the time
## 2649   54.43  119.99559 Heterosexual (straight)            Rarely
## 2650   53.07  116.99735 Heterosexual (straight)         Sometimes
## 2651   49.44  108.99471 Heterosexual (straight)         Sometimes
## 2652      NA         NA Heterosexual (straight)            Always
## 2653   48.54  107.01058 Heterosexual (straight)             Never
## 2654      NA         NA                Bisexual         Sometimes
## 2655   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2656   49.90  110.00882 Heterosexual (straight)         Sometimes
## 2657   90.27  199.00794                Bisexual         Sometimes
## 2658   56.70  125.00000          Some other way         Sometimes
## 2659   71.67  158.00265                Not sure         Sometimes
## 2660      NA         NA Heterosexual (straight)            Rarely
## 2661   79.38  175.00000 Heterosexual (straight)         Sometimes
## 2662   47.17  103.99030 Heterosexual (straight)         Sometimes
## 2663   51.71  113.99912 Heterosexual (straight)            Rarely
## 2664  132.00  291.00529 Heterosexual (straight)             Never
## 2665   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2666   54.43  119.99559                Not sure         Sometimes
## 2667   68.04  150.00000                Bisexual            Rarely
## 2668   62.60  138.00705 Heterosexual (straight)         Sometimes
## 2669   77.11  169.99559 Heterosexual (straight)         Sometimes
## 2670   71.67  158.00265 Heterosexual (straight)  Most of the time
## 2671   74.84  164.99118                Not sure  Most of the time
## 2672   68.04  150.00000 Heterosexual (straight)            Always
## 2673   63.50  139.99118          Some other way         Sometimes
## 2674  107.05  236.00088          Gay or lesbian         Sometimes
## 2675   52.16  114.99118 Heterosexual (straight)         Sometimes
## 2676   48.99  108.00265          Gay or lesbian  Most of the time
## 2677   56.70  125.00000          Gay or lesbian            Always
## 2678   43.09   94.99559 Heterosexual (straight)             Never
## 2679   53.98  119.00353                Not sure  Most of the time
## 2680   56.70  125.00000 Heterosexual (straight)            Rarely
## 2681   48.99  108.00265 Heterosexual (straight)         Sometimes
## 2682   91.17  200.99206 Heterosexual (straight)             Never
## 2683  106.60  235.00882 Heterosexual (straight)         Sometimes
## 2684   38.56   85.00882          Some other way             Never
## 2685   53.07  116.99735          Gay or lesbian  Most of the time
## 2686   69.85  153.99030 Heterosexual (straight)  Most of the time
## 2687   54.43  119.99559 Heterosexual (straight)            Always
## 2688   72.58  160.00882          Gay or lesbian            Always
## 2689   99.79  219.99559                Bisexual         Sometimes
## 2690   90.72  200.00000                Bisexual             Never
## 2691   58.97  130.00441 Heterosexual (straight)             Never
## 2692   72.58  160.00882 Heterosexual (straight)              <NA>
## 2693   63.50  139.99118 Heterosexual (straight)            Rarely
## 2694   99.79  219.99559 Heterosexual (straight)            Rarely
## 2695   57.61  127.00617 Heterosexual (straight)         Sometimes
## 2696   76.20  167.98942 Heterosexual (straight)         Sometimes
## 2697  108.86  239.99118 Heterosexual (straight)              <NA>
## 2698   53.98  119.00353 Heterosexual (straight)  Most of the time
## 2699   54.43  119.99559                Bisexual  Most of the time
## 2700   81.65  180.00441                Bisexual         Sometimes
## 2701   63.05  138.99912 Heterosexual (straight)            Always
## 2702   68.04  150.00000                Bisexual            Rarely
## 2703   44.91   99.00794                Bisexual  Most of the time
## 2704   49.90  110.00882                Bisexual         Sometimes
## 2705   59.88  132.01058                Not sure  Most of the time
## 2706   56.70  125.00000 Heterosexual (straight)             Never
## 2707   82.56  182.01058 Heterosexual (straight)         Sometimes
## 2708   92.99  205.00441 Heterosexual (straight)            Rarely
## 2709  104.33  230.00441 Heterosexual (straight)            Always
## 2710   63.50  139.99118          Some other way            Always
## 2711   90.27  199.00794 Heterosexual (straight)         Sometimes
## 2712   40.82   89.99118 Heterosexual (straight)            Rarely
## 2713   68.04  150.00000          Some other way  Most of the time
## 2714   74.84  164.99118 Heterosexual (straight)             Never
## 2715   40.37   88.99912                Not sure         Sometimes
## 2716  117.94  260.00882                Bisexual             Never
## 2717   49.90  110.00882 Heterosexual (straight)  Most of the time
## 2718   54.43  119.99559 Heterosexual (straight)             Never
## 2719   68.04  150.00000                Bisexual  Most of the time
## 2720   90.72  200.00000          Some other way  Most of the time
## 2721      NA         NA Heterosexual (straight)         Sometimes
## 2722   81.65  180.00441 Heterosexual (straight)         Sometimes
## 2723   65.77  144.99559                Bisexual         Sometimes
## 2724  108.86  239.99118 Heterosexual (straight)            Always
## 2725  104.33  230.00441 Heterosexual (straight)            Rarely
## 2726  117.94  260.00882                Bisexual  Most of the time
## 2727   54.43  119.99559 Heterosexual (straight)             Never
## 2728   68.04  150.00000                Not sure         Sometimes
## 2729   64.41  141.99735 Heterosexual (straight)  Most of the time
## 2730   63.50  139.99118 Heterosexual (straight)            Rarely
## 2731   78.93  174.00794 Heterosexual (straight)              <NA>
## 2732   78.02  172.00176                Bisexual         Sometimes
## 2733   70.31  155.00441 Heterosexual (straight)             Never
## 2734   57.61  127.00617 Heterosexual (straight)         Sometimes
## 2735   74.84  164.99118 Heterosexual (straight)         Sometimes
## 2736   48.99  108.00265                Not sure         Sometimes
## 2737   86.18  189.99118 Heterosexual (straight)            Always
## 2738   74.39  163.99912 Heterosexual (straight)  Most of the time
## 2739   66.23  146.00970                Not sure            Always
## 2740   52.16  114.99118 Heterosexual (straight)         Sometimes
## 2741   44.45   97.99383                Bisexual  Most of the time
## 2742   49.90  110.00882 Heterosexual (straight)         Sometimes
## 2743   79.38  175.00000 Heterosexual (straight)             Never
## 2744   60.33  133.00265 Heterosexual (straight)         Sometimes
## 2745   49.90  110.00882 Heterosexual (straight)             Never
## 2746   95.26  210.00882 Heterosexual (straight)             Never
## 2747   88.00  194.00353 Heterosexual (straight)            Always
## 2748   55.34  122.00176          Gay or lesbian         Sometimes
## 2749   57.15  125.99206 Heterosexual (straight)              <NA>
## 2750   58.97  130.00441 Heterosexual (straight)             Never
## 2751   49.90  110.00882 Heterosexual (straight)             Never
## 2752   76.20  167.98942 Heterosexual (straight)             Never
## 2753   61.69  136.00088 Heterosexual (straight)         Sometimes
## 2754   56.25  124.00794 Heterosexual (straight)  Most of the time
## 2755   34.02   75.00000 Heterosexual (straight)         Sometimes
## 2756   49.90  110.00882                Bisexual  Most of the time
## 2757   56.70  125.00000 Heterosexual (straight)            Rarely
## 2758   40.82   89.99118 Heterosexual (straight)             Never
## 2759   74.84  164.99118 Heterosexual (straight)         Sometimes
## 2760   70.76  155.99647 Heterosexual (straight)            Rarely
## 2761   47.63  105.00441                Bisexual  Most of the time
## 2762   47.63  105.00441          Some other way             Never
## 2763   61.24  135.00882                Bisexual  Most of the time
## 2764   40.82   89.99118 Heterosexual (straight)            Rarely
## 2765   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2766   52.16  114.99118                Not sure         Sometimes
## 2767   71.67  158.00265                Bisexual         Sometimes
## 2768  116.58  257.01058 Heterosexual (straight)         Sometimes
## 2769   84.37  186.00088 Heterosexual (straight)         Sometimes
## 2770   77.11  169.99559          Gay or lesbian             Never
## 2771   65.77  144.99559          Some other way  Most of the time
## 2772   56.70  125.00000 Heterosexual (straight)              <NA>
## 2773      NA         NA          Some other way  Most of the time
## 2774   54.43  119.99559 Heterosexual (straight)             Never
## 2775   65.77  144.99559 Heterosexual (straight)            Rarely
## 2776   55.79  122.99383 Heterosexual (straight)         Sometimes
## 2777   54.43  119.99559 Heterosexual (straight)  Most of the time
## 2778   68.04  150.00000          Gay or lesbian            Rarely
## 2779   68.04  150.00000 Heterosexual (straight)  Most of the time
## 2780   92.08  202.99824 Heterosexual (straight)         Sometimes
## 2781   54.43  119.99559                Bisexual         Sometimes
## 2782   65.77  144.99559 Heterosexual (straight)  Most of the time
## 2783   83.92  185.00882                Bisexual            Always
## 2784   67.59  149.00794                Bisexual         Sometimes
## 2785  115.67  255.00441                Bisexual  Most of the time
## 2786   64.86  142.98942          Some other way            Always
## 2787   86.18  189.99118 Heterosexual (straight)             Never
## 2788   72.58  160.00882 Heterosexual (straight)             Never
## 2789   61.69  136.00088                Bisexual  Most of the time
## 2790   72.58  160.00882 Heterosexual (straight)             Never
## 2791   95.26  210.00882 Heterosexual (straight)             Never
## 2792   43.55   96.00970          Some other way  Most of the time
## 2793  113.40  250.00000 Heterosexual (straight)            Rarely
## 2794   90.72  200.00000          Gay or lesbian         Sometimes
## 2795   67.59  149.00794          Gay or lesbian            Rarely
## 2796   63.50  139.99118 Heterosexual (straight)            Rarely
## 2797   55.79  122.99383 Heterosexual (straight)            Rarely
## 2798   52.16  114.99118 Heterosexual (straight)  Most of the time
## 2799   63.50  139.99118 Heterosexual (straight)             Never
## 2800   47.63  105.00441 Heterosexual (straight)         Sometimes
## 2801   95.26  210.00882 Heterosexual (straight)            Rarely
## 2802   49.90  110.00882                Not sure            Rarely
## 2803   48.99  108.00265 Heterosexual (straight)  Most of the time
## 2804   77.11  169.99559 Heterosexual (straight)            Rarely
## 2805      NA         NA Heterosexual (straight)  Most of the time
## 2806   58.97  130.00441 Heterosexual (straight)            Always
## 2807   61.24  135.00882 Heterosexual (straight)             Never
## 2808   77.11  169.99559 Heterosexual (straight)         Sometimes
## 2809   54.43  119.99559 Heterosexual (straight)  Most of the time
## 2810   55.79  122.99383 Heterosexual (straight)             Never
## 2811   88.45  194.99559 Heterosexual (straight)            Rarely
## 2812   68.95  152.00617 Heterosexual (straight)             Never
## 2813   99.79  219.99559 Heterosexual (straight)            Rarely
## 2814   74.84  164.99118 Heterosexual (straight)         Sometimes
## 2815  106.60  235.00882 Heterosexual (straight)            Rarely
## 2816   78.02  172.00176 Heterosexual (straight)         Sometimes
## 2817   52.16  114.99118 Heterosexual (straight)            Rarely
## 2818   69.85  153.99030                Bisexual         Sometimes
## 2819   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2820  108.86  239.99118 Heterosexual (straight)         Sometimes
## 2821   49.90  110.00882 Heterosexual (straight)         Sometimes
## 2822   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2823      NA         NA Heterosexual (straight)  Most of the time
## 2824   68.04  150.00000 Heterosexual (straight)            Rarely
## 2825   74.84  164.99118                Not sure            Rarely
## 2826      NA         NA Heterosexual (straight)         Sometimes
## 2827   81.19  178.99030 Heterosexual (straight)             Never
## 2828   59.88  132.01058          Gay or lesbian              <NA>
## 2829   61.24  135.00882          Gay or lesbian  Most of the time
## 2830   76.20  167.98942 Heterosexual (straight)            Always
## 2831   58.97  130.00441 Heterosexual (straight)             Never
## 2832   74.84  164.99118 Heterosexual (straight)             Never
## 2833   54.43  119.99559 Heterosexual (straight)             Never
## 2834   78.93  174.00794                Bisexual         Sometimes
## 2835   48.99  108.00265 Heterosexual (straight)            Always
## 2836   59.88  132.01058 Heterosexual (straight)             Never
## 2837   58.51  128.99030 Heterosexual (straight)         Sometimes
## 2838   92.53  203.99030 Heterosexual (straight)             Never
## 2839   57.61  127.00617          Gay or lesbian  Most of the time
## 2840   52.16  114.99118          Gay or lesbian            Rarely
## 2841   52.16  114.99118 Heterosexual (straight)            Always
## 2842   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2843   52.62  116.00529                Bisexual         Sometimes
## 2844   58.97  130.00441                Bisexual  Most of the time
## 2845   68.04  150.00000                Bisexual  Most of the time
## 2846      NA         NA          Some other way            Always
## 2847   47.63  105.00441 Heterosexual (straight)         Sometimes
## 2848   46.72  102.99824 Heterosexual (straight)            Always
## 2849   90.72  200.00000 Heterosexual (straight)             Never
## 2850   49.90  110.00882 Heterosexual (straight)         Sometimes
## 2851   58.97  130.00441                Bisexual              <NA>
## 2852      NA         NA                Not sure             Never
## 2853   58.97  130.00441                Bisexual  Most of the time
## 2854   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2855      NA         NA Heterosexual (straight)  Most of the time
## 2856   92.99  205.00441 Heterosexual (straight)             Never
## 2857      NA         NA Heterosexual (straight)         Sometimes
## 2858   90.72  200.00000 Heterosexual (straight)            Rarely
## 2859   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2860   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2861   47.63  105.00441                Bisexual         Sometimes
## 2862   52.16  114.99118 Heterosexual (straight)            Rarely
## 2863   83.01  183.00265 Heterosexual (straight)         Sometimes
## 2864   53.07  116.99735 Heterosexual (straight)         Sometimes
## 2865   65.77  144.99559 Heterosexual (straight)             Never
## 2866      NA         NA                Not sure             Never
## 2867   81.65  180.00441          Some other way            Always
## 2868   68.04  150.00000                Bisexual  Most of the time
## 2869   44.00   97.00176                Bisexual            Always
## 2870   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2871   56.70  125.00000 Heterosexual (straight)         Sometimes
## 2872   79.83  175.99206                Bisexual            Always
## 2873   48.08  105.99647 Heterosexual (straight)         Sometimes
## 2874   88.45  194.99559 Heterosexual (straight)         Sometimes
## 2875   73.48  161.99295 Heterosexual (straight)             Never
## 2876   44.00   97.00176 Heterosexual (straight)         Sometimes
## 2877   79.83  175.99206 Heterosexual (straight)             Never
## 2878   83.01  183.00265                Bisexual  Most of the time
## 2879   61.69  136.00088 Heterosexual (straight)            Always
## 2880   58.97  130.00441          Some other way         Sometimes
## 2881   52.62  116.00529 Heterosexual (straight)  Most of the time
## 2882   48.08  105.99647                Bisexual         Sometimes
## 2883   77.57  171.00970 Heterosexual (straight)  Most of the time
## 2884   65.32  144.00353 Heterosexual (straight)            Always
## 2885   80.74  177.99824 Heterosexual (straight)             Never
## 2886   56.70  125.00000 Heterosexual (straight)            Rarely
## 2887  100.70  222.00176 Heterosexual (straight)             Never
## 2888      NA         NA          Gay or lesbian            Always
## 2889   63.50  139.99118 Heterosexual (straight)         Sometimes
## 2890   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2891   53.07  116.99735 Heterosexual (straight)            Always
## 2892      NA         NA          Gay or lesbian            Always
## 2893   47.63  105.00441 Heterosexual (straight)            Rarely
## 2894  117.94  260.00882 Heterosexual (straight)  Most of the time
## 2895   70.31  155.00441 Heterosexual (straight)         Sometimes
## 2896   60.78  133.99471                Not sure         Sometimes
## 2897   81.65  180.00441 Heterosexual (straight)  Most of the time
## 2898   56.70  125.00000 Heterosexual (straight)            Rarely
## 2899   58.06  127.99824 Heterosexual (straight)  Most of the time
## 2900   56.70  125.00000          Some other way            Always
## 2901   45.36  100.00000 Heterosexual (straight)             Never
## 2902   52.16  114.99118 Heterosexual (straight)         Sometimes
## 2903   58.97  130.00441 Heterosexual (straight)         Sometimes
## 2904   79.83  175.99206 Heterosexual (straight)              <NA>
## 2905   53.07  116.99735          Some other way  Most of the time
## 2906   58.97  130.00441 Heterosexual (straight)  Most of the time
## 2907   45.36  100.00000 Heterosexual (straight)            Rarely
## 2908   80.29  177.00617 Heterosexual (straight)         Sometimes
## 2909   86.18  189.99118 Heterosexual (straight)             Never
## 2910   56.70  125.00000 Heterosexual (straight)             Never
## 2911   68.04  150.00000 Heterosexual (straight)            Rarely
## 2912   74.84  164.99118 Heterosexual (straight)             Never
## 2913  111.13  244.99559 Heterosexual (straight)             Never
## 2914   63.50  139.99118 Heterosexual (straight)            Rarely
## 2915   74.84  164.99118          Some other way            Always
## 2916   70.31  155.00441          Some other way  Most of the time
## 2917   45.81  100.99206 Heterosexual (straight)         Sometimes
## 2918   63.96  141.00529 Heterosexual (straight)         Sometimes
## 2919   99.79  219.99559 Heterosexual (straight)         Sometimes
## 2920   68.04  150.00000 Heterosexual (straight)         Sometimes
## 2921   58.97  130.00441                Bisexual         Sometimes
## 2922   61.24  135.00882 Heterosexual (straight)             Never
## 2923   66.23  146.00970          Some other way  Most of the time
## 2924   54.43  119.99559 Heterosexual (straight)         Sometimes
## 2925   52.16  114.99118 Heterosexual (straight)  Most of the time
## 2926   62.14  136.99295 Heterosexual (straight)         Sometimes
## 2927   70.31  155.00441 Heterosexual (straight)         Sometimes
## 2928   48.99  108.00265 Heterosexual (straight)            Always
## 2929   70.31  155.00441 Heterosexual (straight)             Never
## 2930   71.67  158.00265 Heterosexual (straight)         Sometimes
## 2931   58.97  130.00441 Heterosexual (straight)              <NA>
## 2932   74.84  164.99118 Heterosexual (straight)             Never
## 2933  117.94  260.00882 Heterosexual (straight)             Never
## 2934   72.58  160.00882 Heterosexual (straight)            Rarely
## 2935   68.04  150.00000                Bisexual         Sometimes
## 2936   58.51  128.99030 Heterosexual (straight)         Sometimes
## 2937   54.43  119.99559 Heterosexual (straight)            Rarely
## 2938   47.63  105.00441 Heterosexual (straight)         Sometimes
## 2939   59.88  132.01058 Heterosexual (straight)             Never
## 2940   61.24  135.00882          Gay or lesbian            Always
## 2941   73.48  161.99295 Heterosexual (straight)         Sometimes
## 2942   80.74  177.99824 Heterosexual (straight)  Most of the time
## 2943   65.77  144.99559 Heterosexual (straight)         Sometimes
## 2944   56.70  125.00000 Heterosexual (straight)             Never
## 2945   61.24  135.00882                Bisexual  Most of the time
## 2946   83.92  185.00882 Heterosexual (straight)             Never
## 2947   59.88  132.01058                Not sure  Most of the time
## 2948   54.43  119.99559 Heterosexual (straight)             Never
## 2949   74.84  164.99118 Heterosexual (straight)         Sometimes
## 2950   61.24  135.00882 Heterosexual (straight)         Sometimes
## 2951   58.51  128.99030 Heterosexual (straight)  Most of the time
## 2952   40.82   89.99118          Some other way            Always
## 2953   67.59  149.00794 Heterosexual (straight)         Sometimes
## 2954   49.90  110.00882          Some other way            Always
## 2955   52.16  114.99118                Bisexual  Most of the time
## 2956   90.72  200.00000          Some other way  Most of the time
## 2957   47.63  105.00441          Gay or lesbian            Rarely
## 2958   40.82   89.99118 Heterosexual (straight)  Most of the time
## 2959   83.46  183.99471 Heterosexual (straight)            Rarely
## 2960   74.84  164.99118 Heterosexual (straight)              <NA>
## 2961   74.84  164.99118 Heterosexual (straight)             Never
## 2962  140.16  308.99471                Not sure            Always
## 2963   47.63  105.00441 Heterosexual (straight)            Always
## 2964   61.24  135.00882 Heterosexual (straight)             Never
## 2965   74.84  164.99118 Heterosexual (straight)             Never
## 2966   92.53  203.99030          Gay or lesbian         Sometimes
## 2967   88.45  194.99559 Heterosexual (straight)            Rarely
## 2968   68.04  150.00000 Heterosexual (straight)            Rarely
## 2969   72.58  160.00882 Heterosexual (straight)            Rarely
## 2970   52.16  114.99118 Heterosexual (straight)            Rarely
## 2971   46.72  102.99824                Bisexual            Always
## 2972   61.24  135.00882          Some other way            Rarely
## 2973   47.17  103.99030 Heterosexual (straight)         Sometimes
## 2974   60.33  133.00265 Heterosexual (straight)             Never
## 2975   43.55   96.00970 Heterosexual (straight)  Most of the time
## 2976   53.52  117.98942 Heterosexual (straight)            Rarely
## 2977   58.06  127.99824 Heterosexual (straight)         Sometimes
## 2978   81.65  180.00441                Not sure            Always
## 2979   76.20  167.98942 Heterosexual (straight)  Most of the time
## 2980   65.77  144.99559                Not sure            Always
## 2981      NA         NA                Not sure  Most of the time
## 2982   52.16  114.99118 Heterosexual (straight)             Never
## 2983   63.50  139.99118 Heterosexual (straight)             Never
## 2984   63.50  139.99118 Heterosexual (straight)         Sometimes
## 2985   65.77  144.99559 Heterosexual (straight)             Never
## 2986   68.95  152.00617 Heterosexual (straight)         Sometimes
## 2987   61.24  135.00882 Heterosexual (straight)            Rarely
## 2988   58.97  130.00441                Bisexual              <NA>
## 2989   48.08  105.99647 Heterosexual (straight)         Sometimes
## 2990   72.58  160.00882 Heterosexual (straight)         Sometimes
## 2991   50.80  111.99295 Heterosexual (straight)            Rarely
## 2992   71.22  157.01058 Heterosexual (straight)            Rarely
## 2993   43.09   94.99559 Heterosexual (straight)            Rarely
## 2994      NA         NA          Gay or lesbian            Always
## 2995   43.55   96.00970                Bisexual            Always
## 2996  106.14  233.99471 Heterosexual (straight)         Sometimes
## 2997   48.99  108.00265 Heterosexual (straight)         Sometimes
## 2998   58.97  130.00441 Heterosexual (straight)             Never
## 2999   88.00  194.00353          Some other way  Most of the time
## 3000   65.77  144.99559 Heterosexual (straight)             Never
## 3001   83.92  185.00882 Heterosexual (straight)            Rarely
## 3002      NA         NA Heterosexual (straight)             Never
## 3003   43.09   94.99559 Heterosexual (straight)  Most of the time
## 3004   65.77  144.99559                Bisexual  Most of the time
## 3005      NA         NA Heterosexual (straight)  Most of the time
## 3006   43.55   96.00970 Heterosexual (straight)            Rarely
## 3007      NA         NA Heterosexual (straight)  Most of the time
## 3008   88.45  194.99559                Not sure             Never
## 3009   81.65  180.00441          Gay or lesbian            Rarely
## 3010      NA         NA          Gay or lesbian         Sometimes
## 3011   54.43  119.99559 Heterosexual (straight)            Always
## 3012   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3013   56.70  125.00000 Heterosexual (straight)            Rarely
## 3014   67.13  147.99383                Bisexual  Most of the time
## 3015   61.24  135.00882 Heterosexual (straight)            Rarely
## 3016   72.58  160.00882 Heterosexual (straight)            Rarely
## 3017   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3018   48.54  107.01058 Heterosexual (straight)            Always
## 3019      NA         NA Heterosexual (straight)         Sometimes
## 3020   72.58  160.00882 Heterosexual (straight)             Never
## 3021   77.11  169.99559 Heterosexual (straight)             Never
## 3022   77.11  169.99559 Heterosexual (straight)             Never
## 3023   74.39  163.99912                Bisexual  Most of the time
## 3024   77.11  169.99559 Heterosexual (straight)  Most of the time
## 3025      NA         NA Heterosexual (straight)            Rarely
## 3026   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3027   63.50  139.99118 Heterosexual (straight)            Always
## 3028   95.71  211.00088                Bisexual  Most of the time
## 3029   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3030   99.79  219.99559          Some other way  Most of the time
## 3031   68.95  152.00617 Heterosexual (straight)            Rarely
## 3032   62.14  136.99295 Heterosexual (straight)         Sometimes
## 3033   74.84  164.99118          Gay or lesbian         Sometimes
## 3034      NA         NA Heterosexual (straight)            Rarely
## 3035   43.55   96.00970                Bisexual         Sometimes
## 3036   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3037   71.22  157.01058                Bisexual            Always
## 3038   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3039  132.45  291.99735 Heterosexual (straight)         Sometimes
## 3040   37.65   83.00265 Heterosexual (straight)         Sometimes
## 3041   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3042   65.77  144.99559 Heterosexual (straight)             Never
## 3043   60.33  133.00265 Heterosexual (straight)         Sometimes
## 3044   77.11  169.99559 Heterosexual (straight)            Rarely
## 3045   66.23  146.00970 Heterosexual (straight)            Rarely
## 3046   90.72  200.00000 Heterosexual (straight)             Never
## 3047   58.97  130.00441          Gay or lesbian         Sometimes
## 3048   68.04  150.00000 Heterosexual (straight)  Most of the time
## 3049   77.11  169.99559 Heterosexual (straight)             Never
## 3050   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3051   79.38  175.00000 Heterosexual (straight)  Most of the time
## 3052      NA         NA Heterosexual (straight)  Most of the time
## 3053  158.76  350.00000          Some other way            Always
## 3054  111.13  244.99559 Heterosexual (straight)             Never
## 3055   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3056   86.18  189.99118 Heterosexual (straight)             Never
## 3057   54.89  121.00970                Bisexual  Most of the time
## 3058   54.43  119.99559 Heterosexual (straight)             Never
## 3059   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3060   83.92  185.00882 Heterosexual (straight)            Rarely
## 3061   64.86  142.98942                Not sure            Rarely
## 3062  102.06  225.00000 Heterosexual (straight)  Most of the time
## 3063   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3064   54.43  119.99559                Bisexual            Always
## 3065   68.04  150.00000 Heterosexual (straight)         Sometimes
## 3066   47.63  105.00441          Some other way            Always
## 3067   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3068   56.70  125.00000          Gay or lesbian  Most of the time
## 3069   95.26  210.00882 Heterosexual (straight)  Most of the time
## 3070   61.24  135.00882                Bisexual         Sometimes
## 3071  131.54  289.99118 Heterosexual (straight)            Rarely
## 3072   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3073   56.70  125.00000 Heterosexual (straight)            Rarely
## 3074   68.04  150.00000 Heterosexual (straight)            Always
## 3075   88.91  196.00970 Heterosexual (straight)             Never
## 3076   65.77  144.99559 Heterosexual (straight)            Rarely
## 3077   90.72  200.00000 Heterosexual (straight)         Sometimes
## 3078   65.77  144.99559                Bisexual  Most of the time
## 3079   64.86  142.98942 Heterosexual (straight)  Most of the time
## 3080   90.72  200.00000                Bisexual         Sometimes
## 3081   49.90  110.00882 Heterosexual (straight)            Rarely
## 3082   47.63  105.00441 Heterosexual (straight)         Sometimes
## 3083   65.77  144.99559 Heterosexual (straight)  Most of the time
## 3084   81.65  180.00441 Heterosexual (straight)            Rarely
## 3085   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3086  104.33  230.00441          Gay or lesbian            Always
## 3087   54.89  121.00970 Heterosexual (straight)            Rarely
## 3088   83.46  183.99471 Heterosexual (straight)             Never
## 3089   52.62  116.00529 Heterosexual (straight)            Always
## 3090   99.79  219.99559 Heterosexual (straight)  Most of the time
## 3091   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3092   61.24  135.00882 Heterosexual (straight)  Most of the time
## 3093   56.70  125.00000                Bisexual            Always
## 3094   65.77  144.99559 Heterosexual (straight)            Rarely
## 3095      NA         NA Heterosexual (straight)              <NA>
## 3096   53.07  116.99735 Heterosexual (straight)         Sometimes
## 3097   50.35  111.00088          Gay or lesbian         Sometimes
## 3098      NA         NA Heterosexual (straight)             Never
## 3099   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3100   68.04  150.00000 Heterosexual (straight)             Never
## 3101   56.70  125.00000 Heterosexual (straight)             Never
## 3102   56.25  124.00794                Bisexual             Never
## 3103   65.77  144.99559          Some other way         Sometimes
## 3104   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3105   48.54  107.01058 Heterosexual (straight)             Never
## 3106   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3107   54.43  119.99559 Heterosexual (straight)            Always
## 3108   78.02  172.00176 Heterosexual (straight)         Sometimes
## 3109   75.75  166.99735                Bisexual            Always
## 3110   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3111   90.72  200.00000 Heterosexual (straight)            Rarely
## 3112   72.58  160.00882 Heterosexual (straight)            Rarely
## 3113   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3114   79.38  175.00000 Heterosexual (straight)            Rarely
## 3115   56.70  125.00000 Heterosexual (straight)            Always
## 3116   58.97  130.00441 Heterosexual (straight)             Never
## 3117   62.14  136.99295 Heterosexual (straight)            Always
## 3118   65.77  144.99559                Bisexual            Rarely
## 3119   65.77  144.99559 Heterosexual (straight)            Rarely
## 3120      NA         NA Heterosexual (straight)             Never
## 3121   93.44  205.99647 Heterosexual (straight)            Rarely
## 3122   70.31  155.00441 Heterosexual (straight)             Never
## 3123   69.85  153.99030 Heterosexual (straight)         Sometimes
## 3124  113.40  250.00000 Heterosexual (straight)         Sometimes
## 3125   70.31  155.00441 Heterosexual (straight)            Rarely
## 3126   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3127      NA         NA Heterosexual (straight)  Most of the time
## 3128   68.04  150.00000 Heterosexual (straight)  Most of the time
## 3129   50.80  111.99295 Heterosexual (straight)             Never
## 3130  104.33  230.00441 Heterosexual (straight)         Sometimes
## 3131   80.74  177.99824 Heterosexual (straight)             Never
## 3132   62.60  138.00705 Heterosexual (straight)             Never
## 3133   49.90  110.00882          Gay or lesbian         Sometimes
## 3134   49.44  108.99471 Heterosexual (straight)            Rarely
## 3135      NA         NA          Some other way  Most of the time
## 3136   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3137   68.04  150.00000 Heterosexual (straight)            Rarely
## 3138   53.52  117.98942                Not sure  Most of the time
## 3139   81.65  180.00441 Heterosexual (straight)            Always
## 3140   68.49  150.99206 Heterosexual (straight)            Rarely
## 3141   64.41  141.99735 Heterosexual (straight)             Never
## 3142   66.23  146.00970                Bisexual             Never
## 3143   68.04  150.00000 Heterosexual (straight)         Sometimes
## 3144   74.84  164.99118 Heterosexual (straight)             Never
## 3145  102.06  225.00000 Heterosexual (straight)             Never
## 3146   68.95  152.00617 Heterosexual (straight)         Sometimes
## 3147   59.88  132.01058 Heterosexual (straight)         Sometimes
## 3148   68.04  150.00000 Heterosexual (straight)            Rarely
## 3149   56.70  125.00000                Bisexual  Most of the time
## 3150   72.58  160.00882 Heterosexual (straight)             Never
## 3151   49.90  110.00882 Heterosexual (straight)            Always
## 3152   68.04  150.00000                Bisexual  Most of the time
## 3153  122.47  269.99559 Heterosexual (straight)             Never
## 3154   76.20  167.98942 Heterosexual (straight)             Never
## 3155   71.22  157.01058 Heterosexual (straight)             Never
## 3156   78.93  174.00794 Heterosexual (straight)             Never
## 3157   79.38  175.00000 Heterosexual (straight)         Sometimes
## 3158   49.90  110.00882                Bisexual  Most of the time
## 3159   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3160   91.17  200.99206          Some other way  Most of the time
## 3161   50.80  111.99295 Heterosexual (straight)         Sometimes
## 3162   70.31  155.00441          Gay or lesbian  Most of the time
## 3163   56.70  125.00000 Heterosexual (straight)             Never
## 3164   58.97  130.00441                Bisexual            Always
## 3165   64.41  141.99735 Heterosexual (straight)             Never
## 3166   61.24  135.00882 Heterosexual (straight)            Rarely
## 3167   97.52  214.99118 Heterosexual (straight)         Sometimes
## 3168   61.24  135.00882 Heterosexual (straight)            Always
## 3169   67.13  147.99383 Heterosexual (straight)  Most of the time
## 3170   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3171   66.23  146.00970 Heterosexual (straight)         Sometimes
## 3172   61.24  135.00882 Heterosexual (straight)             Never
## 3173   68.04  150.00000 Heterosexual (straight)            Always
## 3174   86.18  189.99118 Heterosexual (straight)  Most of the time
## 3175   97.52  214.99118 Heterosexual (straight)             Never
## 3176   77.11  169.99559 Heterosexual (straight)  Most of the time
## 3177   86.18  189.99118 Heterosexual (straight)             Never
## 3178      NA         NA                Bisexual         Sometimes
## 3179   53.52  117.98942                Bisexual         Sometimes
## 3180   72.58  160.00882                Bisexual  Most of the time
## 3181   43.55   96.00970                Not sure            Rarely
## 3182   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3183   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3184   68.95  152.00617 Heterosexual (straight)             Never
## 3185   80.29  177.00617                Not sure            Always
## 3186   63.50  139.99118 Heterosexual (straight)             Never
## 3187   76.66  169.00353 Heterosexual (straight)            Rarely
## 3188   74.84  164.99118 Heterosexual (straight)  Most of the time
## 3189   70.31  155.00441          Some other way            Rarely
## 3190   77.11  169.99559 Heterosexual (straight)            Rarely
## 3191  102.06  225.00000 Heterosexual (straight)             Never
## 3192   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3193   83.01  183.00265 Heterosexual (straight)  Most of the time
## 3194   69.40  152.99824 Heterosexual (straight)             Never
## 3195   99.79  219.99559                Bisexual         Sometimes
## 3196   67.13  147.99383 Heterosexual (straight)             Never
## 3197   70.31  155.00441 Heterosexual (straight)            Always
## 3198   63.96  141.00529 Heterosexual (straight)  Most of the time
## 3199   68.04  150.00000 Heterosexual (straight)            Rarely
## 3200   52.16  114.99118                Bisexual            Always
## 3201   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3202   67.13  147.99383 Heterosexual (straight)             Never
## 3203   68.04  150.00000          Some other way            Always
## 3204      NA         NA Heterosexual (straight)            Rarely
## 3205   79.38  175.00000 Heterosexual (straight)            Rarely
## 3206   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3207   61.24  135.00882 Heterosexual (straight)            Rarely
## 3208   67.13  147.99383 Heterosexual (straight)            Always
## 3209   40.82   89.99118 Heterosexual (straight)             Never
## 3210  107.96  238.00705 Heterosexual (straight)             Never
## 3211   63.50  139.99118 Heterosexual (straight)            Rarely
## 3212   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3213   68.04  150.00000 Heterosexual (straight)            Rarely
## 3214   44.45   97.99383 Heterosexual (straight)            Rarely
## 3215   47.63  105.00441 Heterosexual (straight)  Most of the time
## 3216  111.13  244.99559 Heterosexual (straight)            Rarely
## 3217   68.04  150.00000 Heterosexual (straight)  Most of the time
## 3218   72.58  160.00882 Heterosexual (straight)             Never
## 3219   61.24  135.00882 Heterosexual (straight)            Rarely
## 3220   73.48  161.99295 Heterosexual (straight)         Sometimes
## 3221   61.24  135.00882 Heterosexual (straight)             Never
## 3222   99.79  219.99559 Heterosexual (straight)            Rarely
## 3223   63.50  139.99118 Heterosexual (straight)            Rarely
## 3224   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3225   97.07  213.99912                Bisexual            Rarely
## 3226      NA         NA Heterosexual (straight)            Rarely
## 3227   52.16  114.99118 Heterosexual (straight)            Rarely
## 3228   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3229   51.26  113.00705 Heterosexual (straight)         Sometimes
## 3230   45.36  100.00000 Heterosexual (straight)            Rarely
## 3231      NA         NA Heterosexual (straight)             Never
## 3232   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3233   72.58  160.00882 Heterosexual (straight)             Never
## 3234   72.58  160.00882 Heterosexual (straight)             Never
## 3235   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3236   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3237      NA         NA Heterosexual (straight)  Most of the time
## 3238   80.74  177.99824 Heterosexual (straight)            Rarely
## 3239   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3240   70.76  155.99647 Heterosexual (straight)  Most of the time
## 3241   51.71  113.99912 Heterosexual (straight)  Most of the time
## 3242   48.99  108.00265 Heterosexual (straight)         Sometimes
## 3243   66.68  147.00176 Heterosexual (straight)            Rarely
## 3244      NA         NA Heterosexual (straight)         Sometimes
## 3245   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3246   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3247   52.62  116.00529 Heterosexual (straight)            Rarely
## 3248      NA         NA Heterosexual (straight)            Rarely
## 3249   94.35  208.00265 Heterosexual (straight)            Always
## 3250   49.90  110.00882 Heterosexual (straight)  Most of the time
## 3251   65.77  144.99559 Heterosexual (straight)             Never
## 3252   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3253   99.79  219.99559 Heterosexual (straight)            Rarely
## 3254   72.58  160.00882 Heterosexual (straight)             Never
## 3255   99.79  219.99559 Heterosexual (straight)            Always
## 3256   58.51  128.99030 Heterosexual (straight)            Rarely
## 3257   97.52  214.99118 Heterosexual (straight)             Never
## 3258   68.04  150.00000 Heterosexual (straight)         Sometimes
## 3259   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3260   55.34  122.00176                Bisexual  Most of the time
## 3261   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3262   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3263   95.26  210.00882 Heterosexual (straight)             Never
## 3264   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3265   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3266   74.84  164.99118 Heterosexual (straight)         Sometimes
## 3267  101.61  224.00794 Heterosexual (straight)         Sometimes
## 3268  104.33  230.00441 Heterosexual (straight)         Sometimes
## 3269   88.45  194.99559 Heterosexual (straight)            Rarely
## 3270   68.04  150.00000                Bisexual            Always
## 3271   77.11  169.99559 Heterosexual (straight)             Never
## 3272   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3273      NA         NA Heterosexual (straight)             Never
## 3274   60.78  133.99471 Heterosexual (straight)            Rarely
## 3275   83.92  185.00882 Heterosexual (straight)            Rarely
## 3276   53.07  116.99735 Heterosexual (straight)         Sometimes
## 3277   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3278   63.50  139.99118 Heterosexual (straight)             Never
## 3279   63.50  139.99118 Heterosexual (straight)             Never
## 3280   54.43  119.99559 Heterosexual (straight)            Always
## 3281   47.63  105.00441                Bisexual         Sometimes
## 3282  122.47  269.99559 Heterosexual (straight)            Rarely
## 3283   69.85  153.99030 Heterosexual (straight)            Always
## 3284  104.33  230.00441 Heterosexual (straight)            Rarely
## 3285   78.47  172.99383 Heterosexual (straight)            Rarely
## 3286   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3287   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3288   74.84  164.99118 Heterosexual (straight)            Rarely
## 3289   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3290  113.40  250.00000 Heterosexual (straight)         Sometimes
## 3291   74.84  164.99118 Heterosexual (straight)            Rarely
## 3292   72.58  160.00882 Heterosexual (straight)            Rarely
## 3293   54.43  119.99559 Heterosexual (straight)            Rarely
## 3294   88.45  194.99559 Heterosexual (straight)         Sometimes
## 3295   79.38  175.00000                Bisexual  Most of the time
## 3296   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3297   68.04  150.00000 Heterosexual (straight)         Sometimes
## 3298   47.63  105.00441 Heterosexual (straight)  Most of the time
## 3299   47.63  105.00441 Heterosexual (straight)         Sometimes
## 3300   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3301   70.76  155.99647 Heterosexual (straight)  Most of the time
## 3302   71.22  157.01058 Heterosexual (straight)            Rarely
## 3303   63.50  139.99118                Bisexual            Rarely
## 3304      NA         NA Heterosexual (straight)         Sometimes
## 3305   93.44  205.99647 Heterosexual (straight)         Sometimes
## 3306   58.97  130.00441                Not sure  Most of the time
## 3307   53.07  116.99735 Heterosexual (straight)            Rarely
## 3308   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3309   90.72  200.00000 Heterosexual (straight)         Sometimes
## 3310   68.04  150.00000 Heterosexual (straight)            Rarely
## 3311   80.74  177.99824 Heterosexual (straight)             Never
## 3312   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3313   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3314   54.43  119.99559 Heterosexual (straight)             Never
## 3315   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3316      NA         NA Heterosexual (straight)            Always
## 3317   68.04  150.00000 Heterosexual (straight)             Never
## 3318   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3319   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3320   74.84  164.99118 Heterosexual (straight)         Sometimes
## 3321   65.77  144.99559 Heterosexual (straight)             Never
## 3322   65.77  144.99559 Heterosexual (straight)            Rarely
## 3323   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3324   96.62  213.00705          Gay or lesbian            Always
## 3325   62.60  138.00705 Heterosexual (straight)            Rarely
## 3326   65.32  144.00353 Heterosexual (straight)            Rarely
## 3327   77.11  169.99559 Heterosexual (straight)  Most of the time
## 3328   79.38  175.00000          Some other way            Always
## 3329   49.90  110.00882 Heterosexual (straight)             Never
## 3330   49.90  110.00882 Heterosexual (straight)  Most of the time
## 3331   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3332   53.07  116.99735 Heterosexual (straight)         Sometimes
## 3333   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3334   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3335   97.52  214.99118 Heterosexual (straight)            Rarely
## 3336   68.04  150.00000 Heterosexual (straight)         Sometimes
## 3337   56.70  125.00000 Heterosexual (straight)            Always
## 3338   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3339   48.99  108.00265 Heterosexual (straight)  Most of the time
## 3340   58.97  130.00441 Heterosexual (straight)             Never
## 3341   68.04  150.00000 Heterosexual (straight)  Most of the time
## 3342   61.24  135.00882 Heterosexual (straight)             Never
## 3343   74.84  164.99118 Heterosexual (straight)         Sometimes
## 3344   54.43  119.99559 Heterosexual (straight)            Always
## 3345   58.97  130.00441 Heterosexual (straight)            Rarely
## 3346   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3347   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3348   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3349  117.94  260.00882 Heterosexual (straight)         Sometimes
## 3350   79.38  175.00000          Some other way              <NA>
## 3351   68.04  150.00000 Heterosexual (straight)            Always
## 3352   74.84  164.99118 Heterosexual (straight)  Most of the time
## 3353   69.85  153.99030 Heterosexual (straight)            Rarely
## 3354   83.92  185.00882                Not sure         Sometimes
## 3355      NA         NA Heterosexual (straight)            Rarely
## 3356   54.43  119.99559 Heterosexual (straight)             Never
## 3357   62.60  138.00705 Heterosexual (straight)            Rarely
## 3358   62.14  136.99295 Heterosexual (straight)             Never
## 3359   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3360   65.77  144.99559 Heterosexual (straight)            Always
## 3361   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3362   58.51  128.99030 Heterosexual (straight)            Rarely
## 3363   54.43  119.99559 Heterosexual (straight)            Rarely
## 3364   65.77  144.99559 Heterosexual (straight)             Never
## 3365   57.61  127.00617 Heterosexual (straight)  Most of the time
## 3366   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3367   62.14  136.99295 Heterosexual (straight)             Never
## 3368   63.50  139.99118 Heterosexual (straight)            Rarely
## 3369   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3370   73.94  163.00705 Heterosexual (straight)            Rarely
## 3371  115.67  255.00441 Heterosexual (straight)             Never
## 3372   81.65  180.00441 Heterosexual (straight)         Sometimes
## 3373   97.07  213.99912                Bisexual         Sometimes
## 3374   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3375   95.26  210.00882 Heterosexual (straight)  Most of the time
## 3376   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3377   79.38  175.00000 Heterosexual (straight)            Rarely
## 3378   72.58  160.00882 Heterosexual (straight)            Rarely
## 3379   52.16  114.99118 Heterosexual (straight)              <NA>
## 3380   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3381   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3382   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3383   68.04  150.00000 Heterosexual (straight)  Most of the time
## 3384   46.72  102.99824                Bisexual  Most of the time
## 3385   70.31  155.00441 Heterosexual (straight)            Rarely
## 3386      NA         NA Heterosexual (straight)             Never
## 3387      NA         NA Heterosexual (straight)         Sometimes
## 3388   49.44  108.99471 Heterosexual (straight)  Most of the time
## 3389   51.71  113.99912 Heterosexual (straight)         Sometimes
## 3390      NA         NA Heterosexual (straight)         Sometimes
## 3391   49.90  110.00882 Heterosexual (straight)            Always
## 3392      NA         NA Heterosexual (straight)            Rarely
## 3393      NA         NA Heterosexual (straight)         Sometimes
## 3394      NA         NA Heterosexual (straight)              <NA>
## 3395   61.69  136.00088 Heterosexual (straight)         Sometimes
## 3396   63.50  139.99118 Heterosexual (straight)            Rarely
## 3397   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3398   77.11  169.99559 Heterosexual (straight)            Rarely
## 3399      NA         NA Heterosexual (straight)            Rarely
## 3400   65.77  144.99559 Heterosexual (straight)            Always
## 3401   81.65  180.00441 Heterosexual (straight)             Never
## 3402   72.58  160.00882 Heterosexual (straight)             Never
## 3403   63.50  139.99118 Heterosexual (straight)             Never
## 3404   81.65  180.00441 Heterosexual (straight)            Rarely
## 3405   56.70  125.00000 Heterosexual (straight)             Never
## 3406   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3407      NA         NA Heterosexual (straight)  Most of the time
## 3408   58.97  130.00441          Gay or lesbian            Rarely
## 3409   74.84  164.99118          Some other way            Always
## 3410   54.43  119.99559 Heterosexual (straight)              <NA>
## 3411   45.36  100.00000 Heterosexual (straight)             Never
## 3412   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3413   71.67  158.00265 Heterosexual (straight)             Never
## 3414   72.58  160.00882 Heterosexual (straight)  Most of the time
## 3415   72.58  160.00882 Heterosexual (straight)            Rarely
## 3416   62.14  136.99295 Heterosexual (straight)         Sometimes
## 3417   63.96  141.00529 Heterosexual (straight)            Rarely
## 3418   68.04  150.00000 Heterosexual (straight)            Rarely
## 3419   52.16  114.99118 Heterosexual (straight)             Never
## 3420   49.44  108.99471 Heterosexual (straight)  Most of the time
## 3421   64.41  141.99735 Heterosexual (straight)             Never
## 3422   83.46  183.99471 Heterosexual (straight)         Sometimes
## 3423   99.79  219.99559 Heterosexual (straight)            Rarely
## 3424   86.18  189.99118 Heterosexual (straight)         Sometimes
## 3425   72.58  160.00882 Heterosexual (straight)            Rarely
## 3426   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3427  129.73  286.00088                Bisexual            Rarely
## 3428   99.79  219.99559 Heterosexual (straight)            Rarely
## 3429      NA         NA Heterosexual (straight)  Most of the time
## 3430   74.84  164.99118          Some other way  Most of the time
## 3431   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3432   86.18  189.99118 Heterosexual (straight)            Always
## 3433  126.10  277.99824 Heterosexual (straight)  Most of the time
## 3434   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3435      NA         NA Heterosexual (straight)  Most of the time
## 3436   68.04  150.00000 Heterosexual (straight)            Rarely
## 3437  104.33  230.00441                Bisexual            Always
## 3438   81.65  180.00441 Heterosexual (straight)            Always
## 3439   90.27  199.00794 Heterosexual (straight)  Most of the time
## 3440   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3441   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3442   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3443   53.98  119.00353 Heterosexual (straight)            Rarely
## 3444   56.70  125.00000          Gay or lesbian            Always
## 3445  120.20  264.99118 Heterosexual (straight)             Never
## 3446   80.29  177.00617 Heterosexual (straight)  Most of the time
## 3447   88.00  194.00353 Heterosexual (straight)  Most of the time
## 3448   61.24  135.00882 Heterosexual (straight)            Always
## 3449   53.52  117.98942 Heterosexual (straight)  Most of the time
## 3450   86.18  189.99118          Some other way            Always
## 3451   72.58  160.00882 Heterosexual (straight)             Never
## 3452   97.52  214.99118 Heterosexual (straight)             Never
## 3453   78.93  174.00794 Heterosexual (straight)            Rarely
## 3454   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3455   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3456   52.62  116.00529                Not sure            Always
## 3457   61.69  136.00088 Heterosexual (straight)         Sometimes
## 3458   73.03  161.00088 Heterosexual (straight)             Never
## 3459   81.65  180.00441 Heterosexual (straight)             Never
## 3460   56.70  125.00000 Heterosexual (straight)            Rarely
## 3461   54.43  119.99559 Heterosexual (straight)             Never
## 3462   66.23  146.00970 Heterosexual (straight)  Most of the time
## 3463   74.84  164.99118 Heterosexual (straight)             Never
## 3464   97.52  214.99118 Heterosexual (straight)            Rarely
## 3465   52.16  114.99118                Bisexual  Most of the time
## 3466   99.79  219.99559                Bisexual         Sometimes
## 3467   65.77  144.99559                Bisexual            Rarely
## 3468   90.27  199.00794 Heterosexual (straight)            Rarely
## 3469   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3470      NA         NA Heterosexual (straight)  Most of the time
## 3471   95.26  210.00882 Heterosexual (straight)         Sometimes
## 3472  125.19  275.99206 Heterosexual (straight)            Always
## 3473   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3474   54.43  119.99559          Gay or lesbian  Most of the time
## 3475   74.84  164.99118 Heterosexual (straight)         Sometimes
## 3476   61.24  135.00882 Heterosexual (straight)             Never
## 3477   56.25  124.00794 Heterosexual (straight)  Most of the time
## 3478   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3479   81.65  180.00441 Heterosexual (straight)         Sometimes
## 3480   58.97  130.00441 Heterosexual (straight)            Always
## 3481   52.16  114.99118 Heterosexual (straight)            Rarely
## 3482   92.99  205.00441 Heterosexual (straight)  Most of the time
## 3483   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3484   75.75  166.99735 Heterosexual (straight)         Sometimes
## 3485      NA         NA                Bisexual  Most of the time
## 3486   90.72  200.00000 Heterosexual (straight)  Most of the time
## 3487  136.08  300.00000                Bisexual  Most of the time
## 3488   49.90  110.00882 Heterosexual (straight)  Most of the time
## 3489   71.67  158.00265 Heterosexual (straight)         Sometimes
## 3490   72.58  160.00882          Some other way  Most of the time
## 3491   68.49  150.99206          Some other way  Most of the time
## 3492   74.84  164.99118 Heterosexual (straight)            Always
## 3493   63.05  138.99912 Heterosexual (straight)         Sometimes
## 3494   36.29   80.00441 Heterosexual (straight)            Rarely
## 3495   70.31  155.00441 Heterosexual (straight)            Rarely
## 3496   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3497   68.04  150.00000                Not sure         Sometimes
## 3498   64.41  141.99735 Heterosexual (straight)            Always
## 3499   47.63  105.00441 Heterosexual (straight)  Most of the time
## 3500   56.70  125.00000                Bisexual  Most of the time
## 3501   67.13  147.99383 Heterosexual (straight)         Sometimes
## 3502   50.80  111.99295 Heterosexual (straight)             Never
## 3503   54.43  119.99559                Bisexual  Most of the time
## 3504   71.22  157.01058 Heterosexual (straight)              <NA>
## 3505   81.65  180.00441                Bisexual  Most of the time
## 3506   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3507   81.65  180.00441 Heterosexual (straight)  Most of the time
## 3508   90.72  200.00000 Heterosexual (straight)  Most of the time
## 3509   72.58  160.00882 Heterosexual (straight)  Most of the time
## 3510   46.72  102.99824          Gay or lesbian            Rarely
## 3511   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3512   65.77  144.99559          Some other way            Always
## 3513   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3514   52.16  114.99118          Gay or lesbian  Most of the time
## 3515   59.42  130.99647 Heterosexual (straight)  Most of the time
## 3516   61.24  135.00882 Heterosexual (straight)            Rarely
## 3517   47.17  103.99030 Heterosexual (straight)             Never
## 3518   68.04  150.00000 Heterosexual (straight)              <NA>
## 3519   58.97  130.00441                Bisexual            Always
## 3520   92.08  202.99824 Heterosexual (straight)  Most of the time
## 3521   88.45  194.99559          Gay or lesbian  Most of the time
## 3522   72.58  160.00882 Heterosexual (straight)            Rarely
## 3523   90.72  200.00000 Heterosexual (straight)            Rarely
## 3524   52.16  114.99118 Heterosexual (straight)            Rarely
## 3525   39.46   86.99295 Heterosexual (straight)            Always
## 3526      NA         NA Heterosexual (straight)  Most of the time
## 3527   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3528   69.40  152.99824 Heterosexual (straight)            Rarely
## 3529   68.04  150.00000 Heterosexual (straight)             Never
## 3530   61.24  135.00882 Heterosexual (straight)  Most of the time
## 3531   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3532      NA         NA Heterosexual (straight)         Sometimes
## 3533      NA         NA Heterosexual (straight)            Always
## 3534   45.81  100.99206 Heterosexual (straight)         Sometimes
## 3535   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3536   92.99  205.00441 Heterosexual (straight)  Most of the time
## 3537   71.67  158.00265 Heterosexual (straight)             Never
## 3538   56.70  125.00000 Heterosexual (straight)             Never
## 3539   76.20  167.98942 Heterosexual (straight)             Never
## 3540   69.85  153.99030 Heterosexual (straight)            Rarely
## 3541   45.36  100.00000                Bisexual            Always
## 3542   73.48  161.99295 Heterosexual (straight)            Rarely
## 3543      NA         NA Heterosexual (straight)  Most of the time
## 3544   54.43  119.99559 Heterosexual (straight)            Rarely
## 3545   46.27  102.00617 Heterosexual (straight)  Most of the time
## 3546   81.65  180.00441 Heterosexual (straight)  Most of the time
## 3547   68.04  150.00000 Heterosexual (straight)             Never
## 3548   97.52  214.99118 Heterosexual (straight)            Rarely
## 3549   68.49  150.99206 Heterosexual (straight)            Rarely
## 3550   77.11  169.99559 Heterosexual (straight)             Never
## 3551   49.90  110.00882 Heterosexual (straight)            Rarely
## 3552   58.97  130.00441 Heterosexual (straight)              <NA>
## 3553   65.77  144.99559 Heterosexual (straight)  Most of the time
## 3554   49.90  110.00882 Heterosexual (straight)            Rarely
## 3555   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3556   86.18  189.99118 Heterosexual (straight)         Sometimes
## 3557   56.25  124.00794                Bisexual         Sometimes
## 3558  120.20  264.99118                Bisexual             Never
## 3559   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3560   86.18  189.99118 Heterosexual (straight)         Sometimes
## 3561      NA         NA Heterosexual (straight)         Sometimes
## 3562   49.44  108.99471 Heterosexual (straight)         Sometimes
## 3563   77.11  169.99559          Gay or lesbian         Sometimes
## 3564   70.31  155.00441 Heterosexual (straight)             Never
## 3565   58.97  130.00441 Heterosexual (straight)             Never
## 3566   49.90  110.00882 Heterosexual (straight)  Most of the time
## 3567   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3568   61.24  135.00882                Bisexual  Most of the time
## 3569      NA         NA Heterosexual (straight)         Sometimes
## 3570   72.58  160.00882 Heterosexual (straight)             Never
## 3571   86.18  189.99118 Heterosexual (straight)         Sometimes
## 3572   63.50  139.99118 Heterosexual (straight)            Always
## 3573   88.45  194.99559 Heterosexual (straight)             Never
## 3574   63.50  139.99118 Heterosexual (straight)            Rarely
## 3575   79.38  175.00000 Heterosexual (straight)            Rarely
## 3576   77.11  169.99559                Not sure             Never
## 3577   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3578   49.90  110.00882                Bisexual  Most of the time
## 3579   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3580   90.72  200.00000 Heterosexual (straight)  Most of the time
## 3581   60.33  133.00265 Heterosexual (straight)         Sometimes
## 3582   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3583   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3584      NA         NA Heterosexual (straight)         Sometimes
## 3585   54.43  119.99559 Heterosexual (straight)            Rarely
## 3586   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3587   92.99  205.00441          Some other way            Rarely
## 3588   81.65  180.00441 Heterosexual (straight)            Rarely
## 3589   61.24  135.00882 Heterosexual (straight)             Never
## 3590   48.99  108.00265                Bisexual  Most of the time
## 3591   61.24  135.00882 Heterosexual (straight)  Most of the time
## 3592   79.38  175.00000 Heterosexual (straight)         Sometimes
## 3593   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3594   81.65  180.00441 Heterosexual (straight)             Never
## 3595   49.44  108.99471                Bisexual  Most of the time
## 3596   64.41  141.99735                Bisexual  Most of the time
## 3597   97.52  214.99118 Heterosexual (straight)         Sometimes
## 3598   70.31  155.00441                Bisexual  Most of the time
## 3599   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3600      NA         NA          Some other way            Always
## 3601   44.45   97.99383 Heterosexual (straight)  Most of the time
## 3602   88.91  196.00970 Heterosexual (straight)  Most of the time
## 3603  104.33  230.00441 Heterosexual (straight)            Rarely
## 3604   74.84  164.99118 Heterosexual (straight)         Sometimes
## 3605   58.06  127.99824 Heterosexual (straight)            Rarely
## 3606   88.45  194.99559 Heterosexual (straight)             Never
## 3607   68.04  150.00000 Heterosexual (straight)  Most of the time
## 3608   83.92  185.00882 Heterosexual (straight)            Always
## 3609   57.61  127.00617                Bisexual  Most of the time
## 3610   49.90  110.00882          Some other way            Rarely
## 3611  120.20  264.99118 Heterosexual (straight)            Always
## 3612   65.77  144.99559                Bisexual            Rarely
## 3613   47.17  103.99030          Some other way            Always
## 3614   51.26  113.00705                Not sure            Always
## 3615   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3616   78.02  172.00176 Heterosexual (straight)            Rarely
## 3617   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3618   44.45   97.99383 Heterosexual (straight)            Always
## 3619   58.51  128.99030 Heterosexual (straight)            Rarely
## 3620   49.44  108.99471 Heterosexual (straight)            Rarely
## 3621   52.16  114.99118 Heterosexual (straight)            Always
## 3622   61.69  136.00088 Heterosexual (straight)            Always
## 3623   61.69  136.00088 Heterosexual (straight)         Sometimes
## 3624   99.79  219.99559          Some other way  Most of the time
## 3625   70.31  155.00441 Heterosexual (straight)            Rarely
## 3626   81.65  180.00441                Not sure  Most of the time
## 3627   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3628   79.38  175.00000 Heterosexual (straight)         Sometimes
## 3629      NA         NA Heterosexual (straight)            Always
## 3630   56.70  125.00000                Bisexual  Most of the time
## 3631   45.36  100.00000 Heterosexual (straight)         Sometimes
## 3632   49.90  110.00882 Heterosexual (straight)            Rarely
## 3633  112.49  247.99383 Heterosexual (straight)            Rarely
## 3634   76.20  167.98942                Bisexual            Rarely
## 3635   67.59  149.00794 Heterosexual (straight)            Rarely
## 3636      NA         NA Heterosexual (straight)             Never
## 3637   74.84  164.99118 Heterosexual (straight)  Most of the time
## 3638   79.83  175.99206 Heterosexual (straight)            Rarely
## 3639   62.60  138.00705 Heterosexual (straight)  Most of the time
## 3640   95.26  210.00882 Heterosexual (straight)            Rarely
## 3641   69.85  153.99030 Heterosexual (straight)         Sometimes
## 3642   72.58  160.00882 Heterosexual (straight)             Never
## 3643   71.22  157.01058 Heterosexual (straight)            Rarely
## 3644   57.15  125.99206 Heterosexual (straight)         Sometimes
## 3645   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3646   56.70  125.00000 Heterosexual (straight)             Never
## 3647   72.58  160.00882 Heterosexual (straight)             Never
## 3648   70.31  155.00441 Heterosexual (straight)            Rarely
## 3649   74.39  163.99912 Heterosexual (straight)         Sometimes
## 3650   81.65  180.00441 Heterosexual (straight)            Rarely
## 3651   89.36  197.00176 Heterosexual (straight)         Sometimes
## 3652   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3653   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3654      NA         NA Heterosexual (straight)         Sometimes
## 3655   68.04  150.00000                Bisexual            Always
## 3656   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3657   52.16  114.99118 Heterosexual (straight)            Rarely
## 3658   83.92  185.00882 Heterosexual (straight)  Most of the time
## 3659   72.58  160.00882          Some other way         Sometimes
## 3660   74.84  164.99118 Heterosexual (straight)             Never
## 3661   54.43  119.99559          Gay or lesbian         Sometimes
## 3662   90.72  200.00000 Heterosexual (straight)  Most of the time
## 3663   86.18  189.99118          Some other way  Most of the time
## 3664   55.34  122.00176 Heterosexual (straight)             Never
## 3665   63.50  139.99118 Heterosexual (straight)            Rarely
## 3666   64.41  141.99735 Heterosexual (straight)            Rarely
## 3667   58.97  130.00441 Heterosexual (straight)             Never
## 3668   55.79  122.99383 Heterosexual (straight)            Rarely
## 3669   77.11  169.99559 Heterosexual (straight)            Rarely
## 3670   74.84  164.99118 Heterosexual (straight)              <NA>
## 3671   92.99  205.00441 Heterosexual (straight)  Most of the time
## 3672   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3673  102.06  225.00000                Not sure            Always
## 3674   86.18  189.99118 Heterosexual (straight)            Rarely
## 3675   51.26  113.00705 Heterosexual (straight)         Sometimes
## 3676  106.60  235.00882 Heterosexual (straight)            Rarely
## 3677   65.77  144.99559 Heterosexual (straight)             Never
## 3678   77.11  169.99559 Heterosexual (straight)             Never
## 3679   83.92  185.00882                Not sure         Sometimes
## 3680   45.36  100.00000          Some other way         Sometimes
## 3681   92.53  203.99030 Heterosexual (straight)            Rarely
## 3682      NA         NA Heterosexual (straight)            Rarely
## 3683   43.09   94.99559          Gay or lesbian         Sometimes
## 3684   59.88  132.01058                Bisexual         Sometimes
## 3685      NA         NA          Gay or lesbian              <NA>
## 3686      NA         NA Heterosexual (straight)             Never
## 3687      NA         NA Heterosexual (straight)             Never
## 3688   88.45  194.99559 Heterosexual (straight)            Rarely
## 3689   97.52  214.99118 Heterosexual (straight)            Rarely
## 3690   86.18  189.99118 Heterosexual (straight)            Rarely
## 3691   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3692   67.13  147.99383 Heterosexual (straight)         Sometimes
## 3693   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3694   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3695   56.70  125.00000 Heterosexual (straight)            Rarely
## 3696   81.65  180.00441 Heterosexual (straight)  Most of the time
## 3697   61.24  135.00882          Some other way         Sometimes
## 3698   65.77  144.99559 Heterosexual (straight)  Most of the time
## 3699   79.38  175.00000 Heterosexual (straight)         Sometimes
## 3700   97.52  214.99118 Heterosexual (straight)             Never
## 3701  102.06  225.00000 Heterosexual (straight)         Sometimes
## 3702   74.39  163.99912 Heterosexual (straight)         Sometimes
## 3703   84.82  186.99295 Heterosexual (straight)            Rarely
## 3704   71.67  158.00265                Not sure            Rarely
## 3705   81.65  180.00441 Heterosexual (straight)  Most of the time
## 3706   54.43  119.99559 Heterosexual (straight)             Never
## 3707   77.11  169.99559 Heterosexual (straight)  Most of the time
## 3708   68.04  150.00000 Heterosexual (straight)             Never
## 3709      NA         NA                Not sure              <NA>
## 3710   65.77  144.99559                Bisexual         Sometimes
## 3711   86.18  189.99118 Heterosexual (straight)             Never
## 3712   68.49  150.99206 Heterosexual (straight)            Rarely
## 3713   88.45  194.99559 Heterosexual (straight)  Most of the time
## 3714   63.50  139.99118 Heterosexual (straight)            Rarely
## 3715   65.77  144.99559 Heterosexual (straight)            Rarely
## 3716   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3717   99.79  219.99559 Heterosexual (straight)            Rarely
## 3718   49.90  110.00882 Heterosexual (straight)             Never
## 3719   58.97  130.00441 Heterosexual (straight)            Rarely
## 3720   71.67  158.00265 Heterosexual (straight)             Never
## 3721   77.11  169.99559 Heterosexual (straight)            Rarely
## 3722   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3723   81.65  180.00441 Heterosexual (straight)            Rarely
## 3724   88.45  194.99559 Heterosexual (straight)             Never
## 3725   99.79  219.99559 Heterosexual (straight)            Rarely
## 3726   75.75  166.99735 Heterosexual (straight)             Never
## 3727   88.45  194.99559 Heterosexual (straight)            Rarely
## 3728      NA         NA Heterosexual (straight)             Never
## 3729   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3730      NA         NA                Bisexual              <NA>
## 3731   80.74  177.99824 Heterosexual (straight)             Never
## 3732  102.06  225.00000 Heterosexual (straight)            Always
## 3733   68.04  150.00000 Heterosexual (straight)            Rarely
## 3734   83.01  183.00265 Heterosexual (straight)         Sometimes
## 3735   84.37  186.00088 Heterosexual (straight)         Sometimes
## 3736   96.62  213.00705 Heterosexual (straight)         Sometimes
## 3737   61.24  135.00882 Heterosexual (straight)             Never
## 3738   65.77  144.99559 Heterosexual (straight)             Never
## 3739   58.97  130.00441 Heterosexual (straight)             Never
## 3740   72.58  160.00882 Heterosexual (straight)            Rarely
## 3741   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3742   79.38  175.00000 Heterosexual (straight)             Never
## 3743   65.77  144.99559 Heterosexual (straight)  Most of the time
## 3744   73.03  161.00088 Heterosexual (straight)             Never
## 3745   80.29  177.00617 Heterosexual (straight)            Rarely
## 3746   70.31  155.00441 Heterosexual (straight)             Never
## 3747   63.50  139.99118 Heterosexual (straight)             Never
## 3748   75.75  166.99735 Heterosexual (straight)         Sometimes
## 3749   59.88  132.01058 Heterosexual (straight)             Never
## 3750   58.97  130.00441 Heterosexual (straight)             Never
## 3751   61.24  135.00882 Heterosexual (straight)             Never
## 3752   77.11  169.99559 Heterosexual (straight)            Rarely
## 3753      NA         NA Heterosexual (straight)             Never
## 3754   56.70  125.00000 Heterosexual (straight)             Never
## 3755   72.58  160.00882 Heterosexual (straight)            Rarely
## 3756   73.94  163.00705                Bisexual  Most of the time
## 3757   60.33  133.00265                Bisexual         Sometimes
## 3758   78.02  172.00176 Heterosexual (straight)         Sometimes
## 3759   87.09  191.99735 Heterosexual (straight)            Rarely
## 3760   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3761   94.35  208.00265 Heterosexual (straight)         Sometimes
## 3762  112.49  247.99383 Heterosexual (straight)         Sometimes
## 3763   54.43  119.99559 Heterosexual (straight)             Never
## 3764   81.65  180.00441 Heterosexual (straight)            Rarely
## 3765   65.32  144.00353 Heterosexual (straight)         Sometimes
## 3766   61.24  135.00882 Heterosexual (straight)             Never
## 3767   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3768   88.45  194.99559 Heterosexual (straight)         Sometimes
## 3769   79.38  175.00000 Heterosexual (straight)             Never
## 3770   72.58  160.00882 Heterosexual (straight)  Most of the time
## 3771   81.65  180.00441 Heterosexual (straight)  Most of the time
## 3772  147.42  325.00000 Heterosexual (straight)         Sometimes
## 3773   88.45  194.99559 Heterosexual (straight)  Most of the time
## 3774   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3775   72.58  160.00882 Heterosexual (straight)             Never
## 3776   58.97  130.00441 Heterosexual (straight)            Always
## 3777   87.09  191.99735 Heterosexual (straight)            Rarely
## 3778   68.04  150.00000 Heterosexual (straight)            Rarely
## 3779   86.18  189.99118                Not sure         Sometimes
## 3780  113.40  250.00000 Heterosexual (straight)            Rarely
## 3781   56.70  125.00000          Gay or lesbian  Most of the time
## 3782   72.12  158.99471 Heterosexual (straight)  Most of the time
## 3783   52.16  114.99118 Heterosexual (straight)            Rarely
## 3784   79.38  175.00000          Gay or lesbian  Most of the time
## 3785  104.33  230.00441 Heterosexual (straight)  Most of the time
## 3786   92.99  205.00441                Bisexual         Sometimes
## 3787   49.44  108.99471 Heterosexual (straight)  Most of the time
## 3788   61.69  136.00088 Heterosexual (straight)         Sometimes
## 3789   58.97  130.00441 Heterosexual (straight)             Never
## 3790   55.34  122.00176 Heterosexual (straight)  Most of the time
## 3791   47.63  105.00441 Heterosexual (straight)            Rarely
## 3792   99.79  219.99559 Heterosexual (straight)         Sometimes
## 3793   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3794   81.65  180.00441 Heterosexual (straight)            Rarely
## 3795   71.67  158.00265                Bisexual         Sometimes
## 3796   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3797   81.65  180.00441 Heterosexual (straight)  Most of the time
## 3798   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3799   56.70  125.00000 Heterosexual (straight)  Most of the time
## 3800      NA         NA                Not sure             Never
## 3801   86.18  189.99118 Heterosexual (straight)            Rarely
## 3802   74.84  164.99118 Heterosexual (straight)             Never
## 3803   58.97  130.00441 Heterosexual (straight)            Always
## 3804   97.07  213.99912 Heterosexual (straight)            Rarely
## 3805   53.98  119.00353 Heterosexual (straight)         Sometimes
## 3806   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3807   53.98  119.00353 Heterosexual (straight)         Sometimes
## 3808   74.84  164.99118                Bisexual  Most of the time
## 3809   63.50  139.99118 Heterosexual (straight)            Rarely
## 3810   95.26  210.00882 Heterosexual (straight)         Sometimes
## 3811   58.97  130.00441 Heterosexual (straight)             Never
## 3812   43.55   96.00970 Heterosexual (straight)         Sometimes
## 3813   70.31  155.00441 Heterosexual (straight)            Rarely
## 3814   60.33  133.00265 Heterosexual (straight)         Sometimes
## 3815   44.00   97.00176                Bisexual  Most of the time
## 3816   52.16  114.99118 Heterosexual (straight)  Most of the time
## 3817   68.04  150.00000 Heterosexual (straight)             Never
## 3818   83.92  185.00882 Heterosexual (straight)  Most of the time
## 3819   90.72  200.00000 Heterosexual (straight)             Never
## 3820   68.95  152.00617                Bisexual            Rarely
## 3821   73.48  161.99295 Heterosexual (straight)         Sometimes
## 3822   58.06  127.99824 Heterosexual (straight)             Never
## 3823   95.26  210.00882 Heterosexual (straight)         Sometimes
## 3824  117.94  260.00882 Heterosexual (straight)            Rarely
## 3825   69.40  152.99824 Heterosexual (straight)  Most of the time
## 3826   77.11  169.99559 Heterosexual (straight)            Rarely
## 3827   71.22  157.01058 Heterosexual (straight)         Sometimes
## 3828   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3829   49.90  110.00882 Heterosexual (straight)            Rarely
## 3830   61.24  135.00882          Some other way            Rarely
## 3831   43.09   94.99559          Gay or lesbian  Most of the time
## 3832   63.50  139.99118 Heterosexual (straight)             Never
## 3833   82.56  182.01058 Heterosexual (straight)            Rarely
## 3834   86.18  189.99118 Heterosexual (straight)  Most of the time
## 3835   70.31  155.00441                Bisexual  Most of the time
## 3836   49.90  110.00882 Heterosexual (straight)             Never
## 3837   62.60  138.00705                Bisexual         Sometimes
## 3838   81.65  180.00441                Bisexual  Most of the time
## 3839   62.14  136.99295 Heterosexual (straight)             Never
## 3840   48.99  108.00265          Gay or lesbian             Never
## 3841   57.15  125.99206 Heterosexual (straight)  Most of the time
## 3842   76.20  167.98942 Heterosexual (straight)            Rarely
## 3843      NA         NA Heterosexual (straight)             Never
## 3844   63.50  139.99118 Heterosexual (straight)            Rarely
## 3845   61.24  135.00882 Heterosexual (straight)            Rarely
## 3846  104.33  230.00441          Some other way            Rarely
## 3847   47.17  103.99030          Gay or lesbian            Always
## 3848  147.42  325.00000 Heterosexual (straight)         Sometimes
## 3849   44.45   97.99383          Some other way         Sometimes
## 3850   41.73   91.99735 Heterosexual (straight)            Always
## 3851   63.50  139.99118 Heterosexual (straight)            Rarely
## 3852      NA         NA Heterosexual (straight)         Sometimes
## 3853   82.56  182.01058 Heterosexual (straight)  Most of the time
## 3854   44.91   99.00794 Heterosexual (straight)            Always
## 3855  107.96  238.00705 Heterosexual (straight)             Never
## 3856  100.25  221.00970 Heterosexual (straight)            Rarely
## 3857   57.15  125.99206 Heterosexual (straight)            Rarely
## 3858   63.50  139.99118 Heterosexual (straight)            Always
## 3859      NA         NA                Bisexual              <NA>
## 3860   54.43  119.99559          Some other way  Most of the time
## 3861   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3862      NA         NA Heterosexual (straight)             Never
## 3863   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3864   64.86  142.98942 Heterosexual (straight)         Sometimes
## 3865   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3866   68.04  150.00000 Heterosexual (straight)             Never
## 3867   52.16  114.99118 Heterosexual (straight)             Never
## 3868   75.75  166.99735 Heterosexual (straight)            Rarely
## 3869   54.43  119.99559 Heterosexual (straight)            Rarely
## 3870   76.20  167.98942 Heterosexual (straight)            Rarely
## 3871  106.60  235.00882 Heterosexual (straight)  Most of the time
## 3872  111.13  244.99559 Heterosexual (straight)            Always
## 3873   79.38  175.00000 Heterosexual (straight)            Rarely
## 3874   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3875   68.04  150.00000 Heterosexual (straight)            Rarely
## 3876   91.17  200.99206 Heterosexual (straight)            Always
## 3877   83.92  185.00882 Heterosexual (straight)            Rarely
## 3878   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3879   81.65  180.00441 Heterosexual (straight)         Sometimes
## 3880   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3881   70.31  155.00441 Heterosexual (straight)         Sometimes
## 3882   77.11  169.99559                Not sure              <NA>
## 3883   79.38  175.00000 Heterosexual (straight)            Rarely
## 3884   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3885   70.31  155.00441 Heterosexual (straight)             Never
## 3886   61.24  135.00882 Heterosexual (straight)            Rarely
## 3887   58.97  130.00441 Heterosexual (straight)         Sometimes
## 3888   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3889   56.70  125.00000                Not sure  Most of the time
## 3890   68.04  150.00000 Heterosexual (straight)            Rarely
## 3891   61.24  135.00882 Heterosexual (straight)            Always
## 3892   50.80  111.99295 Heterosexual (straight)            Rarely
## 3893   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3894   65.77  144.99559 Heterosexual (straight)             Never
## 3895   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3896   75.75  166.99735 Heterosexual (straight)  Most of the time
## 3897  108.86  239.99118 Heterosexual (straight)  Most of the time
## 3898   77.11  169.99559 Heterosexual (straight)         Sometimes
## 3899      NA         NA Heterosexual (straight)         Sometimes
## 3900   63.50  139.99118 Heterosexual (straight)  Most of the time
## 3901   49.44  108.99471                Bisexual         Sometimes
## 3902   52.16  114.99118 Heterosexual (straight)         Sometimes
## 3903   51.71  113.99912                Bisexual  Most of the time
## 3904   68.04  150.00000 Heterosexual (straight)         Sometimes
## 3905   48.99  108.00265 Heterosexual (straight)  Most of the time
## 3906   54.89  121.00970 Heterosexual (straight)         Sometimes
## 3907   92.99  205.00441 Heterosexual (straight)             Never
## 3908   61.24  135.00882 Heterosexual (straight)             Never
## 3909   63.05  138.99912 Heterosexual (straight)  Most of the time
## 3910   75.75  166.99735 Heterosexual (straight)         Sometimes
## 3911      NA         NA                Bisexual            Always
## 3912   53.98  119.00353 Heterosexual (straight)         Sometimes
## 3913   58.97  130.00441 Heterosexual (straight)              <NA>
## 3914   45.81  100.99206 Heterosexual (straight)         Sometimes
## 3915   70.76  155.99647 Heterosexual (straight)         Sometimes
## 3916   49.44  108.99471 Heterosexual (straight)  Most of the time
## 3917   79.38  175.00000 Heterosexual (straight)             Never
## 3918   54.89  121.00970 Heterosexual (straight)            Rarely
## 3919   74.84  164.99118 Heterosexual (straight)             Never
## 3920   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3921   49.90  110.00882 Heterosexual (straight)         Sometimes
## 3922   83.92  185.00882          Some other way  Most of the time
## 3923   58.97  130.00441 Heterosexual (straight)             Never
## 3924   79.38  175.00000 Heterosexual (straight)  Most of the time
## 3925   81.65  180.00441 Heterosexual (straight)         Sometimes
## 3926   58.97  130.00441 Heterosexual (straight)            Rarely
## 3927   61.24  135.00882 Heterosexual (straight)            Rarely
## 3928   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3929  113.40  250.00000 Heterosexual (straight)             Never
## 3930   49.90  110.00882 Heterosexual (straight)            Rarely
## 3931   70.31  155.00441 Heterosexual (straight)  Most of the time
## 3932   83.92  185.00882 Heterosexual (straight)         Sometimes
## 3933   52.16  114.99118                Bisexual  Most of the time
## 3934   63.50  139.99118 Heterosexual (straight)            Rarely
## 3935   58.97  130.00441 Heterosexual (straight)            Rarely
## 3936   56.70  125.00000 Heterosexual (straight)            Rarely
## 3937   69.40  152.99824 Heterosexual (straight)             Never
## 3938   81.65  180.00441 Heterosexual (straight)  Most of the time
## 3939   83.92  185.00882 Heterosexual (straight)            Rarely
## 3940   61.24  135.00882 Heterosexual (straight)             Never
## 3941   61.24  135.00882 Heterosexual (straight)             Never
## 3942   58.97  130.00441 Heterosexual (straight)  Most of the time
## 3943      NA         NA Heterosexual (straight)  Most of the time
## 3944   64.86  142.98942          Gay or lesbian  Most of the time
## 3945   68.04  150.00000 Heterosexual (straight)            Rarely
## 3946   67.59  149.00794 Heterosexual (straight)         Sometimes
## 3947   58.06  127.99824 Heterosexual (straight)            Rarely
## 3948   79.38  175.00000 Heterosexual (straight)             Never
## 3949   68.04  150.00000 Heterosexual (straight)            Rarely
## 3950   74.84  164.99118                Not sure  Most of the time
## 3951   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3952   62.60  138.00705 Heterosexual (straight)         Sometimes
## 3953   45.81  100.99206 Heterosexual (straight)            Rarely
## 3954   55.79  122.99383 Heterosexual (straight)         Sometimes
## 3955   81.65  180.00441 Heterosexual (straight)         Sometimes
## 3956   56.70  125.00000 Heterosexual (straight)         Sometimes
## 3957   54.43  119.99559 Heterosexual (straight)  Most of the time
## 3958   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3959   54.43  119.99559 Heterosexual (straight)            Rarely
## 3960   40.82   89.99118 Heterosexual (straight)         Sometimes
## 3961   56.25  124.00794 Heterosexual (straight)  Most of the time
## 3962  108.86  239.99118 Heterosexual (straight)            Rarely
## 3963   71.22  157.01058                Bisexual             Never
## 3964  113.40  250.00000 Heterosexual (straight)  Most of the time
## 3965   58.97  130.00441 Heterosexual (straight)              <NA>
## 3966   68.04  150.00000          Some other way            Always
## 3967   57.15  125.99206 Heterosexual (straight)  Most of the time
## 3968   64.86  142.98942 Heterosexual (straight)             Never
## 3969      NA         NA Heterosexual (straight)  Most of the time
## 3970   79.38  175.00000 Heterosexual (straight)             Never
## 3971   68.04  150.00000 Heterosexual (straight)  Most of the time
## 3972   81.65  180.00441 Heterosexual (straight)            Always
## 3973      NA         NA Heterosexual (straight)              <NA>
## 3974   83.92  185.00882                Bisexual  Most of the time
## 3975   92.99  205.00441 Heterosexual (straight)         Sometimes
## 3976   72.58  160.00882 Heterosexual (straight)         Sometimes
## 3977   74.84  164.99118 Heterosexual (straight)            Rarely
## 3978   54.43  119.99559 Heterosexual (straight)         Sometimes
## 3979   65.77  144.99559 Heterosexual (straight)  Most of the time
## 3980   83.01  183.00265          Some other way            Rarely
## 3981   79.38  175.00000 Heterosexual (straight)             Never
## 3982   95.26  210.00882 Heterosexual (straight)  Most of the time
## 3983   95.26  210.00882                Bisexual  Most of the time
## 3984   61.24  135.00882 Heterosexual (straight)            Always
## 3985   61.24  135.00882 Heterosexual (straight)         Sometimes
## 3986  131.54  289.99118 Heterosexual (straight)  Most of the time
## 3987   44.91   99.00794                Bisexual            Always
## 3988   46.27  102.00617 Heterosexual (straight)              <NA>
## 3989   52.16  114.99118 Heterosexual (straight)  Most of the time
## 3990   42.18   92.98942 Heterosexual (straight)         Sometimes
## 3991   72.58  160.00882                Bisexual         Sometimes
## 3992   61.24  135.00882 Heterosexual (straight)  Most of the time
## 3993   49.90  110.00882                Bisexual            Always
## 3994   56.70  125.00000 Heterosexual (straight)             Never
## 3995   63.50  139.99118 Heterosexual (straight)         Sometimes
## 3996   53.52  117.98942 Heterosexual (straight)              <NA>
## 3997   65.77  144.99559 Heterosexual (straight)         Sometimes
## 3998   57.61  127.00617 Heterosexual (straight)             Never
## 3999   70.31  155.00441 Heterosexual (straight)  Most of the time
## 4000   59.88  132.01058 Heterosexual (straight)            Rarely
## 4001   61.24  135.00882 Heterosexual (straight)            Rarely
## 4002   68.04  150.00000 Heterosexual (straight)              <NA>
## 4003   77.11  169.99559 Heterosexual (straight)            Rarely
## 4004   70.31  155.00441 Heterosexual (straight)            Rarely
## 4005      NA         NA                Not sure         Sometimes
## 4006   65.77  144.99559                Not sure  Most of the time
## 4007   58.06  127.99824 Heterosexual (straight)              <NA>
## 4008   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4009   55.34  122.00176 Heterosexual (straight)         Sometimes
## 4010   56.70  125.00000 Heterosexual (straight)  Most of the time
## 4011  113.40  250.00000 Heterosexual (straight)            Rarely
## 4012   77.11  169.99559 Heterosexual (straight)            Always
## 4013      NA         NA          Gay or lesbian         Sometimes
## 4014   53.98  119.00353 Heterosexual (straight)         Sometimes
## 4015  108.86  239.99118                Bisexual         Sometimes
## 4016   49.90  110.00882                Not sure  Most of the time
## 4017   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4018   54.89  121.00970          Gay or lesbian         Sometimes
## 4019   40.82   89.99118 Heterosexual (straight)            Rarely
## 4020   45.36  100.00000 Heterosexual (straight)  Most of the time
## 4021   56.70  125.00000 Heterosexual (straight)            Rarely
## 4022  104.33  230.00441 Heterosexual (straight)            Rarely
## 4023   51.71  113.99912 Heterosexual (straight)            Rarely
## 4024   77.57  171.00970          Some other way              <NA>
## 4025      NA         NA Heterosexual (straight)         Sometimes
## 4026  102.06  225.00000                Not sure         Sometimes
## 4027   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4028   48.54  107.01058 Heterosexual (straight)             Never
## 4029   47.63  105.00441 Heterosexual (straight)            Rarely
## 4030  102.06  225.00000                Not sure         Sometimes
## 4031   68.04  150.00000 Heterosexual (straight)             Never
## 4032   61.69  136.00088 Heterosexual (straight)              <NA>
## 4033   68.95  152.00617 Heterosexual (straight)             Never
## 4034   78.47  172.99383                Bisexual  Most of the time
## 4035   58.97  130.00441 Heterosexual (straight)  Most of the time
## 4036   56.70  125.00000 Heterosexual (straight)             Never
## 4037      NA         NA Heterosexual (straight)            Rarely
## 4038      NA         NA Heterosexual (straight)         Sometimes
## 4039   58.97  130.00441 Heterosexual (straight)            Always
## 4040   83.92  185.00882 Heterosexual (straight)             Never
## 4041   71.22  157.01058 Heterosexual (straight)             Never
## 4042   43.09   94.99559          Some other way              <NA>
## 4043  111.13  244.99559 Heterosexual (straight)         Sometimes
## 4044   53.52  117.98942                Bisexual  Most of the time
## 4045      NA         NA          Gay or lesbian              <NA>
## 4046   69.40  152.99824 Heterosexual (straight)  Most of the time
## 4047   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4048   49.90  110.00882 Heterosexual (straight)            Rarely
## 4049   79.38  175.00000 Heterosexual (straight)  Most of the time
## 4050  108.86  239.99118 Heterosexual (straight)              <NA>
## 4051   67.13  147.99383                Not sure  Most of the time
## 4052   71.22  157.01058 Heterosexual (straight)         Sometimes
## 4053   89.81  197.99383 Heterosexual (straight)  Most of the time
## 4054   90.72  200.00000 Heterosexual (straight)         Sometimes
## 4055   54.43  119.99559                Bisexual            Always
## 4056   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4057   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4058   76.66  169.00353 Heterosexual (straight)              <NA>
## 4059   58.06  127.99824 Heterosexual (straight)            Rarely
## 4060   95.26  210.00882                Bisexual  Most of the time
## 4061  127.92  282.01058 Heterosexual (straight)              <NA>
## 4062   61.24  135.00882 Heterosexual (straight)             Never
## 4063  124.74  275.00000 Heterosexual (straight)         Sometimes
## 4064   44.45   97.99383                Bisexual  Most of the time
## 4065   48.99  108.00265 Heterosexual (straight)            Rarely
## 4066   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4067   95.26  210.00882 Heterosexual (straight)            Rarely
## 4068   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4069   58.97  130.00441 Heterosexual (straight)              <NA>
## 4070  104.33  230.00441 Heterosexual (straight)  Most of the time
## 4071   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4072   83.92  185.00882 Heterosexual (straight)             Never
## 4073   86.18  189.99118 Heterosexual (straight)  Most of the time
## 4074   74.84  164.99118 Heterosexual (straight)            Always
## 4075  140.62  310.00882 Heterosexual (straight)         Sometimes
## 4076   71.67  158.00265 Heterosexual (straight)         Sometimes
## 4077   61.24  135.00882 Heterosexual (straight)            Rarely
## 4078      NA         NA          Gay or lesbian            Always
## 4079      NA         NA          Gay or lesbian            Rarely
## 4080   86.18  189.99118 Heterosexual (straight)             Never
## 4081   66.23  146.00970 Heterosexual (straight)  Most of the time
## 4082   48.99  108.00265 Heterosexual (straight)         Sometimes
## 4083   68.49  150.99206 Heterosexual (straight)         Sometimes
## 4084   58.51  128.99030          Some other way         Sometimes
## 4085   74.84  164.99118          Some other way            Rarely
## 4086   79.38  175.00000                Bisexual              <NA>
## 4087   74.84  164.99118 Heterosexual (straight)            Rarely
## 4088   58.06  127.99824 Heterosexual (straight)             Never
## 4089      NA         NA Heterosexual (straight)            Rarely
## 4090   45.36  100.00000 Heterosexual (straight)  Most of the time
## 4091   58.06  127.99824          Some other way              <NA>
## 4092   71.22  157.01058 Heterosexual (straight)             Never
## 4093   73.94  163.00705 Heterosexual (straight)            Rarely
## 4094   46.72  102.99824 Heterosexual (straight)             Never
## 4095   48.99  108.00265 Heterosexual (straight)  Most of the time
## 4096   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4097   41.28   91.00529 Heterosexual (straight)  Most of the time
## 4098   55.79  122.99383 Heterosexual (straight)              <NA>
## 4099   66.68  147.00176 Heterosexual (straight)             Never
## 4100  136.08  300.00000 Heterosexual (straight)              <NA>
## 4101   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4102   59.88  132.01058 Heterosexual (straight)             Never
## 4103   50.80  111.99295 Heterosexual (straight)  Most of the time
## 4104   94.35  208.00265 Heterosexual (straight)            Rarely
## 4105   61.24  135.00882 Heterosexual (straight)              <NA>
## 4106   65.77  144.99559 Heterosexual (straight)             Never
## 4107   54.89  121.00970 Heterosexual (straight)  Most of the time
## 4108   56.25  124.00794 Heterosexual (straight)  Most of the time
## 4109   39.92   88.00705 Heterosexual (straight)  Most of the time
## 4110   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4111   65.77  144.99559 Heterosexual (straight)             Never
## 4112   68.04  150.00000 Heterosexual (straight)  Most of the time
## 4113   63.05  138.99912 Heterosexual (straight)         Sometimes
## 4114      NA         NA Heterosexual (straight)              <NA>
## 4115   53.52  117.98942 Heterosexual (straight)             Never
## 4116   68.04  150.00000 Heterosexual (straight)  Most of the time
## 4117   55.79  122.99383 Heterosexual (straight)             Never
## 4118   68.49  150.99206                Bisexual         Sometimes
## 4119   72.58  160.00882 Heterosexual (straight)            Rarely
## 4120      NA         NA Heterosexual (straight)             Never
## 4121   58.06  127.99824 Heterosexual (straight)              <NA>
## 4122   56.70  125.00000 Heterosexual (straight)  Most of the time
## 4123   86.18  189.99118 Heterosexual (straight)              <NA>
## 4124   51.26  113.00705 Heterosexual (straight)  Most of the time
## 4125   58.97  130.00441          Some other way  Most of the time
## 4126   82.56  182.01058                Bisexual         Sometimes
## 4127  102.06  225.00000 Heterosexual (straight)  Most of the time
## 4128   72.58  160.00882 Heterosexual (straight)              <NA>
## 4129   90.72  200.00000 Heterosexual (straight)         Sometimes
## 4130   43.09   94.99559 Heterosexual (straight)         Sometimes
## 4131  106.60  235.00882 Heterosexual (straight)             Never
## 4132   55.79  122.99383                Not sure            Always
## 4133   59.88  132.01058 Heterosexual (straight)         Sometimes
## 4134   54.43  119.99559 Heterosexual (straight)            Always
## 4135   56.70  125.00000 Heterosexual (straight)            Rarely
## 4136   72.58  160.00882 Heterosexual (straight)            Rarely
## 4137   86.18  189.99118                Bisexual         Sometimes
## 4138   77.11  169.99559 Heterosexual (straight)            Rarely
## 4139   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4140   61.69  136.00088 Heterosexual (straight)             Never
## 4141   67.13  147.99383 Heterosexual (straight)            Always
## 4142   63.50  139.99118                Bisexual  Most of the time
## 4143   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4144   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4145   89.81  197.99383                Bisexual  Most of the time
## 4146   72.58  160.00882 Heterosexual (straight)             Never
## 4147   68.04  150.00000 Heterosexual (straight)            Always
## 4148   50.80  111.99295 Heterosexual (straight)            Always
## 4149   71.67  158.00265 Heterosexual (straight)  Most of the time
## 4150   79.38  175.00000 Heterosexual (straight)         Sometimes
## 4151   82.56  182.01058 Heterosexual (straight)         Sometimes
## 4152      NA         NA Heterosexual (straight)              <NA>
## 4153  110.22  242.98942 Heterosexual (straight)             Never
## 4154   63.50  139.99118 Heterosexual (straight)            Rarely
## 4155   67.13  147.99383 Heterosexual (straight)             Never
## 4156   43.09   94.99559 Heterosexual (straight)  Most of the time
## 4157      NA         NA Heterosexual (straight)  Most of the time
## 4158   79.38  175.00000 Heterosexual (straight)            Rarely
## 4159   56.70  125.00000 Heterosexual (straight)             Never
## 4160   45.36  100.00000 Heterosexual (straight)         Sometimes
## 4161   68.04  150.00000 Heterosexual (straight)  Most of the time
## 4162   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4163   54.43  119.99559                Bisexual         Sometimes
## 4164   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4165   86.18  189.99118 Heterosexual (straight)         Sometimes
## 4166   54.43  119.99559 Heterosexual (straight)  Most of the time
## 4167      NA         NA          Gay or lesbian  Most of the time
## 4168   63.50  139.99118 Heterosexual (straight)            Rarely
## 4169   54.43  119.99559 Heterosexual (straight)            Rarely
## 4170      NA         NA Heterosexual (straight)         Sometimes
## 4171   77.11  169.99559 Heterosexual (straight)            Rarely
## 4172   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4173   68.04  150.00000 Heterosexual (straight)             Never
## 4174   63.50  139.99118 Heterosexual (straight)             Never
## 4175   91.17  200.99206 Heterosexual (straight)            Rarely
## 4176   65.77  144.99559 Heterosexual (straight)            Rarely
## 4177   86.18  189.99118 Heterosexual (straight)         Sometimes
## 4178      NA         NA Heterosexual (straight)            Rarely
## 4179   58.97  130.00441 Heterosexual (straight)  Most of the time
## 4180   38.56   85.00882 Heterosexual (straight)            Rarely
## 4181   63.50  139.99118 Heterosexual (straight)              <NA>
## 4182      NA         NA Heterosexual (straight)  Most of the time
## 4183   77.11  169.99559 Heterosexual (straight)             Never
## 4184   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4185   95.26  210.00882 Heterosexual (straight)         Sometimes
## 4186      NA         NA                Not sure            Always
## 4187   63.50  139.99118 Heterosexual (straight)            Rarely
## 4188   49.90  110.00882          Gay or lesbian  Most of the time
## 4189   99.79  219.99559 Heterosexual (straight)            Rarely
## 4190   56.70  125.00000 Heterosexual (straight)            Rarely
## 4191   65.77  144.99559 Heterosexual (straight)            Always
## 4192   95.26  210.00882 Heterosexual (straight)         Sometimes
## 4193   95.26  210.00882                Not sure            Always
## 4194      NA         NA Heterosexual (straight)             Never
## 4195   83.92  185.00882 Heterosexual (straight)            Always
## 4196   45.36  100.00000 Heterosexual (straight)             Never
## 4197   52.16  114.99118 Heterosexual (straight)         Sometimes
## 4198   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4199   48.08  105.99647 Heterosexual (straight)            Rarely
## 4200   61.24  135.00882                Bisexual  Most of the time
## 4201   97.52  214.99118 Heterosexual (straight)  Most of the time
## 4202   57.15  125.99206 Heterosexual (straight)  Most of the time
## 4203   68.04  150.00000 Heterosexual (straight)             Never
## 4204      NA         NA                Bisexual  Most of the time
## 4205   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4206   81.65  180.00441 Heterosexual (straight)         Sometimes
## 4207   57.15  125.99206 Heterosexual (straight)            Rarely
## 4208   47.63  105.00441 Heterosexual (straight)  Most of the time
## 4209   54.43  119.99559 Heterosexual (straight)  Most of the time
## 4210   68.04  150.00000 Heterosexual (straight)             Never
## 4211   51.26  113.00705 Heterosexual (straight)         Sometimes
## 4212   74.84  164.99118 Heterosexual (straight)             Never
## 4213   49.44  108.99471 Heterosexual (straight)  Most of the time
## 4214   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4215   74.39  163.99912 Heterosexual (straight)         Sometimes
## 4216   58.97  130.00441 Heterosexual (straight)             Never
## 4217      NA         NA Heterosexual (straight)  Most of the time
## 4218   72.58  160.00882 Heterosexual (straight)              <NA>
## 4219   90.72  200.00000                Bisexual            Rarely
## 4220      NA         NA Heterosexual (straight)              <NA>
## 4221      NA         NA Heterosexual (straight)            Rarely
## 4222   58.97  130.00441 Heterosexual (straight)            Rarely
## 4223   57.61  127.00617 Heterosexual (straight)  Most of the time
## 4224   81.65  180.00441 Heterosexual (straight)             Never
## 4225   58.97  130.00441 Heterosexual (straight)            Rarely
## 4226   72.58  160.00882                Bisexual  Most of the time
## 4227   79.38  175.00000 Heterosexual (straight)            Always
## 4228   54.43  119.99559 Heterosexual (straight)             Never
## 4229   77.11  169.99559 Heterosexual (straight)              <NA>
## 4230   80.29  177.00617 Heterosexual (straight)         Sometimes
## 4231   63.50  139.99118 Heterosexual (straight)              <NA>
## 4232   98.43  216.99735                Bisexual            Always
## 4233   52.16  114.99118 Heterosexual (straight)            Rarely
## 4234   54.43  119.99559 Heterosexual (straight)             Never
## 4235   61.24  135.00882                Bisexual              <NA>
## 4236   70.31  155.00441 Heterosexual (straight)             Never
## 4237   72.58  160.00882 Heterosexual (straight)             Never
## 4238   90.72  200.00000                Bisexual  Most of the time
## 4239   54.43  119.99559 Heterosexual (straight)              <NA>
## 4240   58.97  130.00441                Bisexual              <NA>
## 4241   42.18   92.98942                Bisexual  Most of the time
## 4242   52.62  116.00529                Bisexual            Always
## 4243   61.69  136.00088                Bisexual             Never
## 4244   58.97  130.00441 Heterosexual (straight)  Most of the time
## 4245   64.86  142.98942 Heterosexual (straight)             Never
## 4246      NA         NA Heterosexual (straight)             Never
## 4247   58.51  128.99030 Heterosexual (straight)         Sometimes
## 4248   58.06  127.99824                Bisexual         Sometimes
## 4249      NA         NA                Not sure         Sometimes
## 4250   72.58  160.00882 Heterosexual (straight)            Rarely
## 4251   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4252   63.50  139.99118 Heterosexual (straight)             Never
## 4253   45.36  100.00000 Heterosexual (straight)         Sometimes
## 4254   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4255   46.72  102.99824                Not sure            Always
## 4256   86.18  189.99118 Heterosexual (straight)         Sometimes
## 4257   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4258   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4259   77.11  169.99559                Bisexual            Always
## 4260   70.31  155.00441 Heterosexual (straight)            Rarely
## 4261   44.00   97.00176 Heterosexual (straight)             Never
## 4262   56.70  125.00000 Heterosexual (straight)             Never
## 4263   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4264   65.77  144.99559 Heterosexual (straight)             Never
## 4265   83.92  185.00882                Not sure  Most of the time
## 4266   59.88  132.01058 Heterosexual (straight)         Sometimes
## 4267      NA         NA Heterosexual (straight)         Sometimes
## 4268   47.63  105.00441 Heterosexual (straight)             Never
## 4269   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4270   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4271   77.11  169.99559 Heterosexual (straight)             Never
## 4272   58.97  130.00441 Heterosexual (straight)             Never
## 4273   52.16  114.99118 Heterosexual (straight)            Always
## 4274   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4275   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4276   65.77  144.99559 Heterosexual (straight)  Most of the time
## 4277   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4278   73.03  161.00088 Heterosexual (straight)            Rarely
## 4279   50.80  111.99295 Heterosexual (straight)             Never
## 4280   59.88  132.01058 Heterosexual (straight)  Most of the time
## 4281   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4282   80.74  177.99824 Heterosexual (straight)  Most of the time
## 4283   94.80  208.99471 Heterosexual (straight)            Rarely
## 4284   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4285   72.58  160.00882 Heterosexual (straight)             Never
## 4286   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4287   60.78  133.99471 Heterosexual (straight)         Sometimes
## 4288   65.77  144.99559 Heterosexual (straight)             Never
## 4289   56.70  125.00000 Heterosexual (straight)             Never
## 4290   61.24  135.00882 Heterosexual (straight)            Rarely
## 4291   68.04  150.00000 Heterosexual (straight)            Rarely
## 4292   58.97  130.00441 Heterosexual (straight)            Rarely
## 4293      NA         NA Heterosexual (straight)             Never
## 4294   57.61  127.00617                Bisexual  Most of the time
## 4295   68.04  150.00000 Heterosexual (straight)             Never
## 4296   54.43  119.99559                Bisexual         Sometimes
## 4297   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4298   56.70  125.00000                Not sure  Most of the time
## 4299   48.99  108.00265          Some other way            Rarely
## 4300   64.41  141.99735 Heterosexual (straight)             Never
## 4301   71.67  158.00265 Heterosexual (straight)         Sometimes
## 4302   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4303   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4304   62.60  138.00705 Heterosexual (straight)         Sometimes
## 4305   61.69  136.00088 Heterosexual (straight)         Sometimes
## 4306   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4307   47.63  105.00441 Heterosexual (straight)         Sometimes
## 4308   64.41  141.99735 Heterosexual (straight)         Sometimes
## 4309   58.06  127.99824          Some other way         Sometimes
## 4310   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4311   77.11  169.99559 Heterosexual (straight)            Rarely
## 4312   49.90  110.00882 Heterosexual (straight)            Rarely
## 4313   58.97  130.00441 Heterosexual (straight)             Never
## 4314   57.61  127.00617 Heterosexual (straight)            Rarely
## 4315   65.77  144.99559 Heterosexual (straight)  Most of the time
## 4316   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4317   58.97  130.00441 Heterosexual (straight)            Rarely
## 4318   58.51  128.99030 Heterosexual (straight)  Most of the time
## 4319   63.50  139.99118                Not sure  Most of the time
## 4320   62.60  138.00705 Heterosexual (straight)         Sometimes
## 4321   56.70  125.00000 Heterosexual (straight)            Rarely
## 4322   62.60  138.00705 Heterosexual (straight)            Rarely
## 4323   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4324   59.42  130.99647 Heterosexual (straight)         Sometimes
## 4325   86.18  189.99118 Heterosexual (straight)            Always
## 4326   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4327   90.72  200.00000 Heterosexual (straight)         Sometimes
## 4328   47.63  105.00441 Heterosexual (straight)         Sometimes
## 4329   61.24  135.00882 Heterosexual (straight)            Always
## 4330   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4331   71.22  157.01058 Heterosexual (straight)         Sometimes
## 4332   85.73  188.99912 Heterosexual (straight)            Always
## 4333   92.99  205.00441 Heterosexual (straight)             Never
## 4334   81.65  180.00441 Heterosexual (straight)         Sometimes
## 4335   66.68  147.00176 Heterosexual (straight)             Never
## 4336   68.04  150.00000 Heterosexual (straight)  Most of the time
## 4337   48.54  107.01058 Heterosexual (straight)         Sometimes
## 4338   52.16  114.99118                Not sure            Always
## 4339  108.86  239.99118 Heterosexual (straight)         Sometimes
## 4340   77.11  169.99559 Heterosexual (straight)         Sometimes
## 4341   74.84  164.99118 Heterosexual (straight)             Never
## 4342   73.94  163.00705          Some other way            Always
## 4343   54.89  121.00970 Heterosexual (straight)  Most of the time
## 4344   61.24  135.00882 Heterosexual (straight)            Rarely
## 4345  122.47  269.99559 Heterosexual (straight)             Never
## 4346   51.26  113.00705 Heterosexual (straight)            Rarely
## 4347   86.18  189.99118 Heterosexual (straight)             Never
## 4348      NA         NA Heterosexual (straight)         Sometimes
## 4349   48.54  107.01058 Heterosexual (straight)  Most of the time
## 4350  145.15  319.99559 Heterosexual (straight)  Most of the time
## 4351  110.22  242.98942 Heterosexual (straight)         Sometimes
## 4352   61.24  135.00882 Heterosexual (straight)             Never
## 4353   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4354   90.72  200.00000 Heterosexual (straight)            Rarely
## 4355  113.40  250.00000 Heterosexual (straight)         Sometimes
## 4356      NA         NA          Some other way  Most of the time
## 4357      NA         NA Heterosexual (straight)            Always
## 4358  101.61  224.00794          Some other way         Sometimes
## 4359  138.35  305.00441 Heterosexual (straight)            Rarely
## 4360   55.79  122.99383 Heterosexual (straight)             Never
## 4361   52.16  114.99118 Heterosexual (straight)             Never
## 4362   86.18  189.99118 Heterosexual (straight)            Rarely
## 4363   48.99  108.00265 Heterosexual (straight)         Sometimes
## 4364   48.99  108.00265 Heterosexual (straight)            Rarely
## 4365   65.77  144.99559          Gay or lesbian             Never
## 4366   61.24  135.00882 Heterosexual (straight)            Rarely
## 4367   72.58  160.00882 Heterosexual (straight)             Never
## 4368  104.33  230.00441 Heterosexual (straight)            Rarely
## 4369   37.65   83.00265 Heterosexual (straight)             Never
## 4370   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4371   45.81  100.99206 Heterosexual (straight)         Sometimes
## 4372   63.50  139.99118 Heterosexual (straight)            Rarely
## 4373   50.80  111.99295 Heterosexual (straight)  Most of the time
## 4374  109.77  241.99735 Heterosexual (straight)            Rarely
## 4375   92.99  205.00441 Heterosexual (straight)            Rarely
## 4376   77.57  171.00970                Bisexual  Most of the time
## 4377   77.11  169.99559 Heterosexual (straight)         Sometimes
## 4378   86.18  189.99118 Heterosexual (straight)             Never
## 4379   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4380      NA         NA Heterosexual (straight)         Sometimes
## 4381  113.40  250.00000 Heterosexual (straight)  Most of the time
## 4382   72.58  160.00882 Heterosexual (straight)  Most of the time
## 4383  124.74  275.00000 Heterosexual (straight)         Sometimes
## 4384   47.63  105.00441          Some other way  Most of the time
## 4385   70.31  155.00441 Heterosexual (straight)             Never
## 4386      NA         NA Heterosexual (straight)  Most of the time
## 4387   68.04  150.00000 Heterosexual (straight)  Most of the time
## 4388   79.38  175.00000 Heterosexual (straight)            Rarely
## 4389   74.84  164.99118 Heterosexual (straight)         Sometimes
## 4390   72.58  160.00882 Heterosexual (straight)            Rarely
## 4391      NA         NA          Some other way         Sometimes
## 4392   42.18   92.98942 Heterosexual (straight)         Sometimes
## 4393   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4394      NA         NA Heterosexual (straight)             Never
## 4395   81.65  180.00441 Heterosexual (straight)            Rarely
## 4396   52.62  116.00529          Gay or lesbian  Most of the time
## 4397   61.24  135.00882                Bisexual            Always
## 4398   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4399   64.86  142.98942 Heterosexual (straight)             Never
## 4400  104.33  230.00441 Heterosexual (straight)  Most of the time
## 4401   95.26  210.00882 Heterosexual (straight)  Most of the time
## 4402   86.18  189.99118 Heterosexual (straight)            Rarely
## 4403   44.00   97.00176 Heterosexual (straight)  Most of the time
## 4404   54.43  119.99559                Bisexual            Rarely
## 4405   83.92  185.00882 Heterosexual (straight)         Sometimes
## 4406   81.65  180.00441 Heterosexual (straight)             Never
## 4407  113.40  250.00000 Heterosexual (straight)  Most of the time
## 4408   76.66  169.00353 Heterosexual (straight)            Always
## 4409   95.26  210.00882 Heterosexual (straight)         Sometimes
## 4410  121.11  266.99735                Bisexual  Most of the time
## 4411      NA         NA          Some other way  Most of the time
## 4412   83.92  185.00882                Bisexual         Sometimes
## 4413   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4414   54.89  121.00970 Heterosexual (straight)         Sometimes
## 4415   88.45  194.99559 Heterosexual (straight)             Never
## 4416   65.77  144.99559 Heterosexual (straight)             Never
## 4417   59.88  132.01058 Heterosexual (straight)  Most of the time
## 4418   72.58  160.00882 Heterosexual (straight)  Most of the time
## 4419   52.16  114.99118                Bisexual  Most of the time
## 4420   63.96  141.00529 Heterosexual (straight)            Rarely
## 4421   77.57  171.00970          Gay or lesbian            Always
## 4422      NA         NA                Bisexual         Sometimes
## 4423   65.77  144.99559 Heterosexual (straight)            Always
## 4424   79.83  175.99206 Heterosexual (straight)            Always
## 4425   45.81  100.99206          Some other way  Most of the time
## 4426   96.62  213.00705 Heterosexual (straight)         Sometimes
## 4427   65.32  144.00353          Some other way         Sometimes
## 4428   83.46  183.99471 Heterosexual (straight)  Most of the time
## 4429   73.94  163.00705 Heterosexual (straight)  Most of the time
## 4430   58.97  130.00441 Heterosexual (straight)            Rarely
## 4431   74.84  164.99118 Heterosexual (straight)            Rarely
## 4432   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4433   81.65  180.00441                Bisexual  Most of the time
## 4434   48.08  105.99647 Heterosexual (straight)  Most of the time
## 4435   58.97  130.00441 Heterosexual (straight)             Never
## 4436   58.97  130.00441 Heterosexual (straight)            Rarely
## 4437   90.72  200.00000          Some other way            Always
## 4438   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4439   57.61  127.00617 Heterosexual (straight)            Rarely
## 4440   79.83  175.99206 Heterosexual (straight)         Sometimes
## 4441   54.43  119.99559                Bisexual  Most of the time
## 4442  102.06  225.00000 Heterosexual (straight)            Rarely
## 4443  106.60  235.00882 Heterosexual (straight)  Most of the time
## 4444   49.44  108.99471 Heterosexual (straight)  Most of the time
## 4445   68.04  150.00000 Heterosexual (straight)             Never
## 4446   77.11  169.99559 Heterosexual (straight)         Sometimes
## 4447   78.47  172.99383 Heterosexual (straight)         Sometimes
## 4448   73.94  163.00705 Heterosexual (straight)            Rarely
## 4449      NA         NA          Gay or lesbian            Rarely
## 4450   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4451   97.98  216.00529 Heterosexual (straight)            Rarely
## 4452   73.94  163.00705 Heterosexual (straight)             Never
## 4453   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4454   81.65  180.00441 Heterosexual (straight)            Rarely
## 4455   97.52  214.99118          Some other way  Most of the time
## 4456   79.83  175.99206 Heterosexual (straight)             Never
## 4457   56.70  125.00000 Heterosexual (straight)            Rarely
## 4458   61.69  136.00088 Heterosexual (straight)  Most of the time
## 4459   74.84  164.99118 Heterosexual (straight)            Rarely
## 4460   53.98  119.00353 Heterosexual (straight)             Never
## 4461   82.56  182.01058 Heterosexual (straight)            Rarely
## 4462   70.31  155.00441 Heterosexual (straight)            Rarely
## 4463      NA         NA Heterosexual (straight)            Always
## 4464   58.06  127.99824 Heterosexual (straight)             Never
## 4465   76.20  167.98942 Heterosexual (straight)            Rarely
## 4466   74.84  164.99118 Heterosexual (straight)             Never
## 4467      NA         NA          Gay or lesbian  Most of the time
## 4468   68.04  150.00000 Heterosexual (straight)             Never
## 4469   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4470   53.98  119.00353 Heterosexual (straight)         Sometimes
## 4471   77.11  169.99559 Heterosexual (straight)            Rarely
## 4472   56.70  125.00000                Bisexual              <NA>
## 4473   72.58  160.00882 Heterosexual (straight)            Rarely
## 4474   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4475   73.94  163.00705 Heterosexual (straight)            Rarely
## 4476   45.81  100.99206 Heterosexual (straight)             Never
## 4477   94.35  208.00265          Some other way  Most of the time
## 4478      NA         NA Heterosexual (straight)  Most of the time
## 4479   44.00   97.00176          Gay or lesbian            Always
## 4480   44.91   99.00794                Bisexual            Rarely
## 4481   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4482      NA         NA Heterosexual (straight)             Never
## 4483   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4484   55.79  122.99383 Heterosexual (straight)  Most of the time
## 4485   72.58  160.00882 Heterosexual (straight)            Always
## 4486   70.31  155.00441 Heterosexual (straight)             Never
## 4487   88.00  194.00353 Heterosexual (straight)              <NA>
## 4488   58.97  130.00441 Heterosexual (straight)  Most of the time
## 4489   65.77  144.99559                Bisexual            Rarely
## 4490  124.74  275.00000 Heterosexual (straight)         Sometimes
## 4491   52.62  116.00529 Heterosexual (straight)         Sometimes
## 4492   47.63  105.00441                Not sure            Rarely
## 4493   61.24  135.00882 Heterosexual (straight)              <NA>
## 4494   68.04  150.00000 Heterosexual (straight)            Rarely
## 4495   68.04  150.00000          Some other way  Most of the time
## 4496   93.44  205.99647 Heterosexual (straight)            Rarely
## 4497   70.31  155.00441                Not sure  Most of the time
## 4498   64.86  142.98942 Heterosexual (straight)         Sometimes
## 4499   54.43  119.99559 Heterosexual (straight)  Most of the time
## 4500   63.50  139.99118 Heterosexual (straight)            Rarely
## 4501   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4502   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4503   79.38  175.00000 Heterosexual (straight)  Most of the time
## 4504   83.92  185.00882 Heterosexual (straight)         Sometimes
## 4505   88.45  194.99559 Heterosexual (straight)            Rarely
## 4506   63.50  139.99118 Heterosexual (straight)            Rarely
## 4507   55.34  122.00176 Heterosexual (straight)            Rarely
## 4508   68.95  152.00617 Heterosexual (straight)            Rarely
## 4509   95.26  210.00882 Heterosexual (straight)  Most of the time
## 4510   68.04  150.00000 Heterosexual (straight)            Rarely
## 4511   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4512   64.41  141.99735                Bisexual  Most of the time
## 4513   67.59  149.00794 Heterosexual (straight)             Never
## 4514   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4515   47.63  105.00441 Heterosexual (straight)         Sometimes
## 4516   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4517   49.90  110.00882 Heterosexual (straight)            Rarely
## 4518   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4519   46.27  102.00617 Heterosexual (straight)         Sometimes
## 4520   63.50  139.99118 Heterosexual (straight)            Rarely
## 4521   55.79  122.99383 Heterosexual (straight)         Sometimes
## 4522   63.50  139.99118 Heterosexual (straight)             Never
## 4523   86.18  189.99118 Heterosexual (straight)            Always
## 4524   56.70  125.00000 Heterosexual (straight)  Most of the time
## 4525   68.04  150.00000          Some other way  Most of the time
## 4526   65.77  144.99559                Bisexual            Always
## 4527   72.58  160.00882 Heterosexual (straight)            Rarely
## 4528   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4529   47.63  105.00441 Heterosexual (straight)         Sometimes
## 4530  106.60  235.00882 Heterosexual (straight)             Never
## 4531   68.04  150.00000 Heterosexual (straight)            Always
## 4532   62.14  136.99295 Heterosexual (straight)            Rarely
## 4533  120.20  264.99118 Heterosexual (straight)            Rarely
## 4534   58.97  130.00441 Heterosexual (straight)             Never
## 4535   81.65  180.00441          Some other way  Most of the time
## 4536   77.11  169.99559 Heterosexual (straight)             Never
## 4537   62.60  138.00705          Some other way  Most of the time
## 4538   99.79  219.99559                Not sure            Rarely
## 4539   63.05  138.99912          Gay or lesbian             Never
## 4540   56.70  125.00000 Heterosexual (straight)            Rarely
## 4541   57.61  127.00617 Heterosexual (straight)  Most of the time
## 4542   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4543   54.89  121.00970 Heterosexual (straight)         Sometimes
## 4544   63.50  139.99118                Bisexual  Most of the time
## 4545   72.58  160.00882 Heterosexual (straight)             Never
## 4546   79.38  175.00000          Some other way            Always
## 4547   69.40  152.99824 Heterosexual (straight)         Sometimes
## 4548   73.03  161.00088 Heterosexual (straight)         Sometimes
## 4549   69.85  153.99030 Heterosexual (straight)         Sometimes
## 4550   95.26  210.00882 Heterosexual (straight)            Rarely
## 4551   45.36  100.00000                Not sure  Most of the time
## 4552   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4553   61.24  135.00882                Bisexual  Most of the time
## 4554   49.90  110.00882                Bisexual            Always
## 4555   54.43  119.99559          Gay or lesbian  Most of the time
## 4556   79.38  175.00000                Not sure  Most of the time
## 4557   51.71  113.99912                Bisexual         Sometimes
## 4558   68.04  150.00000          Gay or lesbian  Most of the time
## 4559   82.56  182.01058 Heterosexual (straight)             Never
## 4560   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4561   68.04  150.00000 Heterosexual (straight)            Rarely
## 4562   67.13  147.99383 Heterosexual (straight)            Rarely
## 4563   58.97  130.00441 Heterosexual (straight)            Rarely
## 4564   65.77  144.99559 Heterosexual (straight)  Most of the time
## 4565   59.88  132.01058 Heterosexual (straight)            Rarely
## 4566   63.50  139.99118                Not sure  Most of the time
## 4567   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4568   52.62  116.00529 Heterosexual (straight)            Always
## 4569   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4570   54.43  119.99559                Bisexual  Most of the time
## 4571   54.43  119.99559                Bisexual         Sometimes
## 4572   72.58  160.00882          Some other way  Most of the time
## 4573   59.88  132.01058          Some other way         Sometimes
## 4574   54.43  119.99559          Gay or lesbian  Most of the time
## 4575   87.54  192.98942                Not sure  Most of the time
## 4576   63.50  139.99118                Not sure  Most of the time
## 4577   68.04  150.00000                Not sure         Sometimes
## 4578   58.97  130.00441          Gay or lesbian  Most of the time
## 4579  117.94  260.00882          Gay or lesbian  Most of the time
## 4580   63.50  139.99118                Bisexual  Most of the time
## 4581   61.24  135.00882          Gay or lesbian         Sometimes
## 4582   77.11  169.99559          Some other way         Sometimes
## 4583   74.39  163.99912          Some other way            Always
## 4584   77.11  169.99559                Not sure  Most of the time
## 4585   49.90  110.00882 Heterosexual (straight)  Most of the time
## 4586   61.24  135.00882          Gay or lesbian  Most of the time
## 4587   56.70  125.00000                Bisexual  Most of the time
## 4588   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4589      NA         NA          Some other way         Sometimes
## 4590   88.45  194.99559 Heterosexual (straight)  Most of the time
## 4591   56.70  125.00000                Bisexual         Sometimes
## 4592   54.43  119.99559                Bisexual  Most of the time
## 4593      NA         NA                Bisexual  Most of the time
## 4594   86.18  189.99118          Some other way         Sometimes
## 4595   52.16  114.99118          Gay or lesbian         Sometimes
## 4596   70.31  155.00441                Bisexual         Sometimes
## 4597   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4598   58.06  127.99824                Bisexual            Always
## 4599  108.86  239.99118 Heterosexual (straight)            Rarely
## 4600   83.92  185.00882 Heterosexual (straight)         Sometimes
## 4601   68.04  150.00000 Heterosexual (straight)            Rarely
## 4602   81.65  180.00441                Bisexual             Never
## 4603   68.95  152.00617 Heterosexual (straight)  Most of the time
## 4604   81.65  180.00441 Heterosexual (straight)         Sometimes
## 4605   59.42  130.99647 Heterosexual (straight)             Never
## 4606      NA         NA Heterosexual (straight)             Never
## 4607   74.84  164.99118                Bisexual         Sometimes
## 4608   78.47  172.99383 Heterosexual (straight)         Sometimes
## 4609  108.86  239.99118 Heterosexual (straight)         Sometimes
## 4610   99.79  219.99559                Bisexual  Most of the time
## 4611   68.04  150.00000 Heterosexual (straight)            Rarely
## 4612   89.81  197.99383                Bisexual         Sometimes
## 4613   53.52  117.98942 Heterosexual (straight)            Rarely
## 4614   52.16  114.99118 Heterosexual (straight)            Always
## 4615   84.82  186.99295 Heterosexual (straight)            Rarely
## 4616   69.85  153.99030 Heterosexual (straight)            Always
## 4617   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4618  104.33  230.00441 Heterosexual (straight)         Sometimes
## 4619   49.90  110.00882 Heterosexual (straight)            Always
## 4620   83.01  183.00265 Heterosexual (straight)            Rarely
## 4621  143.79  316.99735 Heterosexual (straight)             Never
## 4622   69.85  153.99030 Heterosexual (straight)             Never
## 4623   78.47  172.99383 Heterosexual (straight)         Sometimes
## 4624   56.25  124.00794 Heterosexual (straight)             Never
## 4625  101.61  224.00794 Heterosexual (straight)         Sometimes
## 4626   56.70  125.00000 Heterosexual (straight)            Rarely
## 4627   82.56  182.01058                Bisexual            Rarely
## 4628      NA         NA Heterosexual (straight)         Sometimes
## 4629   67.13  147.99383 Heterosexual (straight)         Sometimes
## 4630      NA         NA Heterosexual (straight)         Sometimes
## 4631   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4632   95.26  210.00882 Heterosexual (straight)         Sometimes
## 4633   76.20  167.98942 Heterosexual (straight)  Most of the time
## 4634  101.15  222.99383 Heterosexual (straight)         Sometimes
## 4635   61.69  136.00088 Heterosexual (straight)  Most of the time
## 4636   56.70  125.00000 Heterosexual (straight)            Rarely
## 4637  127.01  280.00441 Heterosexual (straight)             Never
## 4638   44.45   97.99383          Gay or lesbian         Sometimes
## 4639  158.76  350.00000 Heterosexual (straight)            Rarely
## 4640   53.98  119.00353 Heterosexual (straight)            Rarely
## 4641   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4642   88.45  194.99559 Heterosexual (straight)         Sometimes
## 4643   83.92  185.00882 Heterosexual (straight)             Never
## 4644   68.04  150.00000 Heterosexual (straight)             Never
## 4645   78.47  172.99383 Heterosexual (straight)             Never
## 4646   49.90  110.00882 Heterosexual (straight)  Most of the time
## 4647   95.26  210.00882 Heterosexual (straight)         Sometimes
## 4648   83.92  185.00882 Heterosexual (straight)             Never
## 4649      NA         NA Heterosexual (straight)            Always
## 4650   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4651   46.27  102.00617                Bisexual              <NA>
## 4652   63.50  139.99118          Some other way  Most of the time
## 4653   71.22  157.01058 Heterosexual (straight)             Never
## 4654  130.18  286.99295                Bisexual  Most of the time
## 4655   65.32  144.00353 Heterosexual (straight)            Rarely
## 4656   83.92  185.00882 Heterosexual (straight)             Never
## 4657  104.33  230.00441 Heterosexual (straight)            Rarely
## 4658   73.03  161.00088 Heterosexual (straight)            Always
## 4659   53.98  119.00353                Bisexual            Always
## 4660   79.38  175.00000 Heterosexual (straight)             Never
## 4661   56.70  125.00000 Heterosexual (straight)             Never
## 4662   55.34  122.00176 Heterosexual (straight)            Rarely
## 4663   68.04  150.00000 Heterosexual (straight)  Most of the time
## 4664   84.37  186.00088 Heterosexual (straight)             Never
## 4665   80.74  177.99824          Some other way         Sometimes
## 4666      NA         NA Heterosexual (straight)         Sometimes
## 4667   52.16  114.99118                Not sure         Sometimes
## 4668   74.39  163.99912 Heterosexual (straight)            Rarely
## 4669   81.65  180.00441 Heterosexual (straight)             Never
## 4670  115.67  255.00441                Bisexual            Rarely
## 4671  103.42  227.99824 Heterosexual (straight)             Never
## 4672   81.65  180.00441          Gay or lesbian  Most of the time
## 4673   47.63  105.00441 Heterosexual (straight)  Most of the time
## 4674   76.20  167.98942 Heterosexual (straight)            Always
## 4675   58.97  130.00441 Heterosexual (straight)  Most of the time
## 4676   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4677      NA         NA          Some other way  Most of the time
## 4678   98.43  216.99735 Heterosexual (straight)         Sometimes
## 4679   92.99  205.00441                Bisexual  Most of the time
## 4680   88.45  194.99559 Heterosexual (straight)             Never
## 4681   90.72  200.00000 Heterosexual (straight)             Never
## 4682   98.88  217.98942          Some other way         Sometimes
## 4683   99.79  219.99559                Bisexual  Most of the time
## 4684   68.04  150.00000          Some other way            Always
## 4685   78.93  174.00794 Heterosexual (straight)             Never
## 4686   74.84  164.99118 Heterosexual (straight)         Sometimes
## 4687   43.09   94.99559 Heterosexual (straight)         Sometimes
## 4688   64.41  141.99735 Heterosexual (straight)            Always
## 4689  102.06  225.00000 Heterosexual (straight)         Sometimes
## 4690   68.04  150.00000                Not sure  Most of the time
## 4691   63.50  139.99118 Heterosexual (straight)             Never
## 4692   63.96  141.00529 Heterosexual (straight)            Rarely
## 4693   64.41  141.99735 Heterosexual (straight)            Rarely
## 4694   90.72  200.00000 Heterosexual (straight)             Never
## 4695   72.58  160.00882 Heterosexual (straight)            Rarely
## 4696   55.79  122.99383          Gay or lesbian         Sometimes
## 4697   70.31  155.00441 Heterosexual (straight)            Rarely
## 4698   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4699   70.31  155.00441 Heterosexual (straight)            Rarely
## 4700   82.56  182.01058 Heterosexual (straight)         Sometimes
## 4701  121.11  266.99735 Heterosexual (straight)            Rarely
## 4702   54.43  119.99559 Heterosexual (straight)             Never
## 4703   74.84  164.99118 Heterosexual (straight)            Rarely
## 4704   74.84  164.99118 Heterosexual (straight)            Rarely
## 4705   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4706   61.24  135.00882 Heterosexual (straight)             Never
## 4707   71.67  158.00265 Heterosexual (straight)            Rarely
## 4708   69.40  152.99824 Heterosexual (straight)            Rarely
## 4709   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4710   66.68  147.00176 Heterosexual (straight)         Sometimes
## 4711   65.77  144.99559 Heterosexual (straight)             Never
## 4712   99.79  219.99559 Heterosexual (straight)         Sometimes
## 4713   99.79  219.99559 Heterosexual (straight)            Rarely
## 4714  102.06  225.00000                Not sure         Sometimes
## 4715   50.80  111.99295 Heterosexual (straight)  Most of the time
## 4716  104.33  230.00441          Gay or lesbian         Sometimes
## 4717   73.48  161.99295                Bisexual              <NA>
## 4718   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4719   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4720   90.72  200.00000                Bisexual  Most of the time
## 4721   71.67  158.00265 Heterosexual (straight)            Rarely
## 4722      NA         NA Heterosexual (straight)             Never
## 4723   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4724   63.50  139.99118 Heterosexual (straight)            Rarely
## 4725   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4726   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4727   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4728      NA         NA          Gay or lesbian            Always
## 4729      NA         NA Heterosexual (straight)         Sometimes
## 4730   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4731   89.81  197.99383 Heterosexual (straight)            Always
## 4732   49.90  110.00882 Heterosexual (straight)  Most of the time
## 4733   45.36  100.00000          Some other way  Most of the time
## 4734   65.32  144.00353 Heterosexual (straight)         Sometimes
## 4735   76.66  169.00353 Heterosexual (straight)             Never
## 4736   51.26  113.00705 Heterosexual (straight)  Most of the time
## 4737   64.41  141.99735 Heterosexual (straight)         Sometimes
## 4738   80.74  177.99824                Bisexual  Most of the time
## 4739   72.58  160.00882 Heterosexual (straight)            Rarely
## 4740   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4741   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4742   81.65  180.00441                Not sure  Most of the time
## 4743   43.09   94.99559                Bisexual             Never
## 4744   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4745   79.38  175.00000 Heterosexual (straight)             Never
## 4746   66.23  146.00970 Heterosexual (straight)  Most of the time
## 4747   78.93  174.00794 Heterosexual (straight)            Rarely
## 4748   59.88  132.01058 Heterosexual (straight)  Most of the time
## 4749   72.58  160.00882 Heterosexual (straight)             Never
## 4750   77.11  169.99559 Heterosexual (straight)         Sometimes
## 4751   58.97  130.00441 Heterosexual (straight)            Rarely
## 4752      NA         NA                Not sure         Sometimes
## 4753   55.34  122.00176                Bisexual            Always
## 4754   50.35  111.00088          Gay or lesbian            Always
## 4755   54.43  119.99559 Heterosexual (straight)  Most of the time
## 4756   58.97  130.00441                Bisexual  Most of the time
## 4757   77.11  169.99559 Heterosexual (straight)            Rarely
## 4758   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4759      NA         NA Heterosexual (straight)         Sometimes
## 4760   90.72  200.00000 Heterosexual (straight)            Rarely
## 4761   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4762   51.71  113.99912 Heterosexual (straight)         Sometimes
## 4763   58.97  130.00441                Not sure  Most of the time
## 4764   58.97  130.00441 Heterosexual (straight)             Never
## 4765   63.50  139.99118 Heterosexual (straight)            Rarely
## 4766   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4767      NA         NA Heterosexual (straight)  Most of the time
## 4768   72.58  160.00882          Gay or lesbian         Sometimes
## 4769   61.24  135.00882 Heterosexual (straight)            Rarely
## 4770   87.09  191.99735 Heterosexual (straight)             Never
## 4771   45.36  100.00000 Heterosexual (straight)         Sometimes
## 4772   90.72  200.00000 Heterosexual (straight)         Sometimes
## 4773      NA         NA Heterosexual (straight)            Rarely
## 4774   96.16  211.99295 Heterosexual (straight)  Most of the time
## 4775  108.86  239.99118          Gay or lesbian  Most of the time
## 4776   53.07  116.99735 Heterosexual (straight)  Most of the time
## 4777   59.88  132.01058 Heterosexual (straight)  Most of the time
## 4778   52.16  114.99118 Heterosexual (straight)            Rarely
## 4779   79.38  175.00000 Heterosexual (straight)             Never
## 4780   54.43  119.99559 Heterosexual (straight)         Sometimes
## 4781   73.48  161.99295 Heterosexual (straight)             Never
## 4782   49.90  110.00882 Heterosexual (straight)  Most of the time
## 4783   63.50  139.99118 Heterosexual (straight)             Never
## 4784   61.24  135.00882 Heterosexual (straight)            Rarely
## 4785   54.43  119.99559 Heterosexual (straight)  Most of the time
## 4786   54.43  119.99559                Bisexual         Sometimes
## 4787   58.06  127.99824 Heterosexual (straight)            Rarely
## 4788   48.99  108.00265 Heterosexual (straight)  Most of the time
## 4789   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4790   52.16  114.99118                Bisexual         Sometimes
## 4791   78.02  172.00176 Heterosexual (straight)            Rarely
## 4792   58.97  130.00441 Heterosexual (straight)  Most of the time
## 4793   74.84  164.99118 Heterosexual (straight)            Rarely
## 4794   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4795   58.06  127.99824 Heterosexual (straight)             Never
## 4796      NA         NA          Gay or lesbian  Most of the time
## 4797   81.65  180.00441                Bisexual         Sometimes
## 4798   58.97  130.00441 Heterosexual (straight)         Sometimes
## 4799   58.97  130.00441          Some other way  Most of the time
## 4800   61.24  135.00882          Gay or lesbian  Most of the time
## 4801   52.16  114.99118 Heterosexual (straight)         Sometimes
## 4802   70.31  155.00441 Heterosexual (straight)  Most of the time
## 4803   71.22  157.01058 Heterosexual (straight)  Most of the time
## 4804   47.63  105.00441                Bisexual            Always
## 4805   49.90  110.00882 Heterosexual (straight)         Sometimes
## 4806   67.13  147.99383 Heterosexual (straight)            Rarely
## 4807   86.18  189.99118 Heterosexual (straight)  Most of the time
## 4808   45.81  100.99206          Some other way            Always
## 4809   60.78  133.99471 Heterosexual (straight)            Rarely
## 4810   99.79  219.99559 Heterosexual (straight)         Sometimes
## 4811   56.70  125.00000                Bisexual         Sometimes
## 4812   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4813  136.08  300.00000 Heterosexual (straight)            Always
## 4814   63.50  139.99118 Heterosexual (straight)             Never
## 4815   79.38  175.00000 Heterosexual (straight)  Most of the time
## 4816   83.92  185.00882 Heterosexual (straight)             Never
## 4817   54.43  119.99559 Heterosexual (straight)  Most of the time
## 4818   45.36  100.00000 Heterosexual (straight)  Most of the time
## 4819   63.96  141.00529 Heterosexual (straight)  Most of the time
## 4820   95.26  210.00882 Heterosexual (straight)         Sometimes
## 4821  107.05  236.00088 Heterosexual (straight)            Rarely
## 4822   68.04  150.00000                Bisexual         Sometimes
## 4823   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4824   54.43  119.99559 Heterosexual (straight)            Always
## 4825   77.11  169.99559 Heterosexual (straight)  Most of the time
## 4826   61.69  136.00088 Heterosexual (straight)            Rarely
## 4827   52.16  114.99118                Bisexual  Most of the time
## 4828   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4829   62.60  138.00705 Heterosexual (straight)         Sometimes
## 4830   54.43  119.99559 Heterosexual (straight)             Never
## 4831   48.99  108.00265                Bisexual            Rarely
## 4832   72.58  160.00882 Heterosexual (straight)            Rarely
## 4833   71.22  157.01058 Heterosexual (straight)         Sometimes
## 4834   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4835   65.77  144.99559 Heterosexual (straight)             Never
## 4836   51.26  113.00705 Heterosexual (straight)             Never
## 4837   59.88  132.01058                Bisexual            Always
## 4838   90.72  200.00000 Heterosexual (straight)  Most of the time
## 4839  127.01  280.00441 Heterosexual (straight)         Sometimes
## 4840   63.50  139.99118 Heterosexual (straight)             Never
## 4841   68.04  150.00000 Heterosexual (straight)            Rarely
## 4842   97.98  216.00529          Some other way  Most of the time
## 4843  111.13  244.99559 Heterosexual (straight)            Rarely
## 4844   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4845   68.04  150.00000 Heterosexual (straight)            Rarely
## 4846   58.97  130.00441 Heterosexual (straight)            Rarely
## 4847   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4848   43.55   96.00970 Heterosexual (straight)             Never
## 4849   54.43  119.99559 Heterosexual (straight)            Rarely
## 4850   64.41  141.99735 Heterosexual (straight)         Sometimes
## 4851   63.50  139.99118 Heterosexual (straight)            Always
## 4852   81.65  180.00441                Bisexual            Always
## 4853  136.08  300.00000 Heterosexual (straight)  Most of the time
## 4854   72.58  160.00882 Heterosexual (straight)            Always
## 4855   78.93  174.00794 Heterosexual (straight)            Rarely
## 4856      NA         NA Heterosexual (straight)  Most of the time
## 4857   83.92  185.00882 Heterosexual (straight)            Rarely
## 4858  108.86  239.99118 Heterosexual (straight)            Rarely
## 4859   90.72  200.00000 Heterosexual (straight)  Most of the time
## 4860   63.50  139.99118 Heterosexual (straight)            Rarely
## 4861      NA         NA Heterosexual (straight)         Sometimes
## 4862      NA         NA Heterosexual (straight)         Sometimes
## 4863   58.97  130.00441 Heterosexual (straight)            Rarely
## 4864   88.45  194.99559 Heterosexual (straight)             Never
## 4865   67.59  149.00794 Heterosexual (straight)             Never
## 4866   86.18  189.99118 Heterosexual (straight)             Never
## 4867   58.06  127.99824                Bisexual         Sometimes
## 4868   52.16  114.99118 Heterosexual (straight)             Never
## 4869   49.90  110.00882 Heterosexual (straight)            Rarely
## 4870   68.04  150.00000 Heterosexual (straight)            Always
## 4871   93.44  205.99647 Heterosexual (straight)            Rarely
## 4872   56.70  125.00000 Heterosexual (straight)  Most of the time
## 4873   90.72  200.00000 Heterosexual (straight)         Sometimes
## 4874   79.38  175.00000 Heterosexual (straight)            Rarely
## 4875   64.86  142.98942 Heterosexual (straight)            Rarely
## 4876   51.26  113.00705          Some other way         Sometimes
## 4877   74.84  164.99118 Heterosexual (straight)             Never
## 4878   58.06  127.99824 Heterosexual (straight)         Sometimes
## 4879   48.99  108.00265 Heterosexual (straight)         Sometimes
## 4880   63.50  139.99118 Heterosexual (straight)              <NA>
## 4881   63.50  139.99118 Heterosexual (straight)             Never
## 4882   57.61  127.00617          Some other way  Most of the time
## 4883      NA         NA          Some other way         Sometimes
## 4884  106.60  235.00882 Heterosexual (straight)            Rarely
## 4885   45.36  100.00000 Heterosexual (straight)            Rarely
## 4886   47.63  105.00441 Heterosexual (straight)  Most of the time
## 4887   58.97  130.00441 Heterosexual (straight)            Rarely
## 4888   51.71  113.99912 Heterosexual (straight)            Rarely
## 4889      NA         NA                Not sure            Rarely
## 4890   63.50  139.99118 Heterosexual (straight)            Always
## 4891   61.69  136.00088 Heterosexual (straight)            Rarely
## 4892   99.79  219.99559 Heterosexual (straight)            Rarely
## 4893   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4894  108.86  239.99118 Heterosexual (straight)         Sometimes
## 4895   56.70  125.00000 Heterosexual (straight)         Sometimes
## 4896      NA         NA Heterosexual (straight)         Sometimes
## 4897   54.43  119.99559                Bisexual  Most of the time
## 4898   58.97  130.00441 Heterosexual (straight)             Never
## 4899   62.60  138.00705 Heterosexual (straight)             Never
## 4900   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4901   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4902  108.86  239.99118 Heterosexual (straight)             Never
## 4903   90.72  200.00000 Heterosexual (straight)  Most of the time
## 4904   50.80  111.99295 Heterosexual (straight)            Rarely
## 4905   48.54  107.01058 Heterosexual (straight)  Most of the time
## 4906   48.99  108.00265 Heterosexual (straight)         Sometimes
## 4907   50.80  111.99295          Some other way            Always
## 4908   49.90  110.00882 Heterosexual (straight)            Rarely
## 4909   58.97  130.00441                Not sure  Most of the time
## 4910   68.04  150.00000                Bisexual  Most of the time
## 4911   79.38  175.00000          Some other way  Most of the time
## 4912   56.70  125.00000 Heterosexual (straight)            Rarely
## 4913   57.15  125.99206 Heterosexual (straight)         Sometimes
## 4914   70.31  155.00441 Heterosexual (straight)  Most of the time
## 4915   79.38  175.00000 Heterosexual (straight)            Rarely
## 4916   74.84  164.99118 Heterosexual (straight)  Most of the time
## 4917   79.38  175.00000 Heterosexual (straight)             Never
## 4918  104.33  230.00441                Bisexual         Sometimes
## 4919   58.97  130.00441 Heterosexual (straight)  Most of the time
## 4920   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4921   68.04  150.00000          Gay or lesbian         Sometimes
## 4922   67.59  149.00794 Heterosexual (straight)            Rarely
## 4923   69.85  153.99030 Heterosexual (straight)            Rarely
## 4924   92.08  202.99824 Heterosexual (straight)             Never
## 4925   44.00   97.00176 Heterosexual (straight)  Most of the time
## 4926   58.97  130.00441                Not sure  Most of the time
## 4927   61.24  135.00882 Heterosexual (straight)  Most of the time
## 4928   68.04  150.00000 Heterosexual (straight)  Most of the time
## 4929   81.65  180.00441                Bisexual         Sometimes
## 4930   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4931   63.50  139.99118                Not sure  Most of the time
## 4932   59.88  132.01058 Heterosexual (straight)            Rarely
## 4933   81.65  180.00441          Gay or lesbian            Always
## 4934   68.04  150.00000                Bisexual            Always
## 4935   63.50  139.99118 Heterosexual (straight)  Most of the time
## 4936   97.98  216.00529 Heterosexual (straight)            Rarely
## 4937   60.33  133.00265                Not sure  Most of the time
## 4938   61.69  136.00088 Heterosexual (straight)         Sometimes
## 4939   56.70  125.00000 Heterosexual (straight)  Most of the time
## 4940   52.16  114.99118 Heterosexual (straight)            Rarely
## 4941   78.02  172.00176 Heterosexual (straight)            Rarely
## 4942   71.22  157.01058 Heterosexual (straight)            Rarely
## 4943      NA         NA Heterosexual (straight)  Most of the time
## 4944   52.16  114.99118 Heterosexual (straight)            Rarely
## 4945   85.73  188.99912 Heterosexual (straight)  Most of the time
## 4946      NA         NA Heterosexual (straight)              <NA>
## 4947   49.90  110.00882 Heterosexual (straight)            Rarely
## 4948   61.24  135.00882          Gay or lesbian         Sometimes
## 4949   86.18  189.99118 Heterosexual (straight)            Rarely
## 4950   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4951   41.28   91.00529          Some other way            Always
## 4952   70.31  155.00441 Heterosexual (straight)         Sometimes
## 4953   44.45   97.99383 Heterosexual (straight)  Most of the time
## 4954   65.77  144.99559 Heterosexual (straight)            Rarely
## 4955   43.55   96.00970 Heterosexual (straight)            Always
## 4956   56.70  125.00000 Heterosexual (straight)            Rarely
## 4957   51.71  113.99912 Heterosexual (straight)            Rarely
## 4958   55.34  122.00176 Heterosexual (straight)         Sometimes
## 4959   97.52  214.99118 Heterosexual (straight)  Most of the time
## 4960   68.95  152.00617 Heterosexual (straight)            Always
## 4961  102.06  225.00000                Bisexual         Sometimes
## 4962   65.77  144.99559 Heterosexual (straight)         Sometimes
## 4963   68.04  150.00000 Heterosexual (straight)         Sometimes
## 4964   63.50  139.99118 Heterosexual (straight)         Sometimes
## 4965   72.58  160.00882 Heterosexual (straight)            Rarely
## 4966      NA         NA                Bisexual  Most of the time
## 4967   55.79  122.99383 Heterosexual (straight)  Most of the time
## 4968   81.65  180.00441          Some other way            Always
## 4969   52.16  114.99118          Some other way  Most of the time
## 4970   56.70  125.00000                Bisexual  Most of the time
## 4971   48.08  105.99647 Heterosexual (straight)            Always
## 4972   67.59  149.00794 Heterosexual (straight)             Never
## 4973  122.47  269.99559          Gay or lesbian         Sometimes
## 4974   61.69  136.00088                Bisexual  Most of the time
## 4975      NA         NA                Bisexual              <NA>
## 4976   70.31  155.00441 Heterosexual (straight)            Rarely
## 4977   72.58  160.00882 Heterosexual (straight)         Sometimes
## 4978   97.52  214.99118 Heterosexual (straight)            Rarely
## 4979   79.38  175.00000                Not sure         Sometimes
## 4980   80.74  177.99824 Heterosexual (straight)            Always
## 4981   57.15  125.99206 Heterosexual (straight)         Sometimes
## 4982   77.11  169.99559 Heterosexual (straight)            Rarely
## 4983   75.75  166.99735 Heterosexual (straight)             Never
## 4984   81.65  180.00441 Heterosexual (straight)            Rarely
## 4985   74.84  164.99118 Heterosexual (straight)         Sometimes
## 4986   90.72  200.00000 Heterosexual (straight)         Sometimes
## 4987   83.92  185.00882 Heterosexual (straight)  Most of the time
## 4988   61.69  136.00088 Heterosexual (straight)              <NA>
## 4989   63.50  139.99118 Heterosexual (straight)            Always
## 4990   69.85  153.99030                Bisexual  Most of the time
## 4991   57.15  125.99206 Heterosexual (straight)  Most of the time
## 4992   86.18  189.99118 Heterosexual (straight)         Sometimes
## 4993      NA         NA                Bisexual              <NA>
## 4994   61.24  135.00882 Heterosexual (straight)         Sometimes
## 4995   63.96  141.00529 Heterosexual (straight)  Most of the time
## 4996   90.72  200.00000          Some other way         Sometimes
## 4997   60.33  133.00265 Heterosexual (straight)  Most of the time
## 4998   59.88  132.01058 Heterosexual (straight)  Most of the time
## 4999   68.04  150.00000 Heterosexual (straight)  Most of the time
## 5000   74.84  164.99118 Heterosexual (straight)         Sometimes
## 5001   63.50  139.99118 Heterosexual (straight)            Rarely
## 5002   79.38  175.00000 Heterosexual (straight)         Sometimes
## 5003   74.84  164.99118 Heterosexual (straight)            Always
## 5004   86.18  189.99118          Gay or lesbian            Always
## 5005  102.06  225.00000                Bisexual            Always
## 5006   92.99  205.00441 Heterosexual (straight)            Rarely
## 5007   80.74  177.99824 Heterosexual (straight)            Rarely
## 5008   78.02  172.00176 Heterosexual (straight)            Rarely
## 5009   68.95  152.00617          Some other way  Most of the time
## 5010   99.79  219.99559 Heterosexual (straight)             Never
## 5011   63.50  139.99118 Heterosexual (straight)            Rarely
## 5012   78.02  172.00176 Heterosexual (straight)             Never
## 5013   78.47  172.99383          Gay or lesbian         Sometimes
## 5014   70.76  155.99647 Heterosexual (straight)         Sometimes
## 5015      NA         NA Heterosexual (straight)            Rarely
## 5016   57.15  125.99206 Heterosexual (straight)            Rarely
## 5017   70.31  155.00441 Heterosexual (straight)  Most of the time
## 5018   64.41  141.99735                Not sure  Most of the time
## 5019   93.44  205.99647 Heterosexual (straight)  Most of the time
## 5020   56.70  125.00000                Bisexual         Sometimes
## 5021  108.86  239.99118 Heterosexual (straight)         Sometimes
## 5022   56.25  124.00794 Heterosexual (straight)  Most of the time
## 5023   52.16  114.99118 Heterosexual (straight)            Rarely
## 5024   52.16  114.99118 Heterosexual (straight)            Rarely
## 5025  106.60  235.00882 Heterosexual (straight)             Never
## 5026   76.20  167.98942 Heterosexual (straight)  Most of the time
## 5027  127.01  280.00441 Heterosexual (straight)             Never
## 5028   54.43  119.99559 Heterosexual (straight)            Rarely
## 5029   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5030   58.51  128.99030 Heterosexual (straight)         Sometimes
## 5031   61.24  135.00882 Heterosexual (straight)            Rarely
## 5032   74.84  164.99118 Heterosexual (straight)         Sometimes
## 5033   49.90  110.00882 Heterosexual (straight)  Most of the time
## 5034   53.52  117.98942 Heterosexual (straight)  Most of the time
## 5035   99.79  219.99559                Not sure         Sometimes
## 5036      NA         NA                Not sure  Most of the time
## 5037   68.49  150.99206 Heterosexual (straight)            Always
## 5038   55.79  122.99383                Bisexual  Most of the time
## 5039   90.72  200.00000 Heterosexual (straight)         Sometimes
## 5040   76.20  167.98942 Heterosexual (straight)         Sometimes
## 5041   95.26  210.00882 Heterosexual (straight)             Never
## 5042   72.58  160.00882 Heterosexual (straight)             Never
## 5043      NA         NA Heterosexual (straight)            Rarely
## 5044   61.24  135.00882 Heterosexual (straight)            Rarely
## 5045   74.84  164.99118 Heterosexual (straight)            Rarely
## 5046   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5047   90.72  200.00000 Heterosexual (straight)            Rarely
## 5048   75.30  166.00529 Heterosexual (straight)            Always
## 5049   61.24  135.00882          Some other way  Most of the time
## 5050   47.63  105.00441 Heterosexual (straight)            Always
## 5051   73.48  161.99295 Heterosexual (straight)  Most of the time
## 5052      NA         NA Heterosexual (straight)             Never
## 5053   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5054   58.97  130.00441 Heterosexual (straight)             Never
## 5055   86.18  189.99118                Bisexual  Most of the time
## 5056   92.99  205.00441 Heterosexual (straight)             Never
## 5057   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5058  122.47  269.99559 Heterosexual (straight)            Rarely
## 5059   57.15  125.99206 Heterosexual (straight)         Sometimes
## 5060   45.36  100.00000 Heterosexual (straight)            Rarely
## 5061   68.04  150.00000 Heterosexual (straight)  Most of the time
## 5062   70.76  155.99647 Heterosexual (straight)            Rarely
## 5063   68.04  150.00000 Heterosexual (straight)            Always
## 5064   75.75  166.99735 Heterosexual (straight)  Most of the time
## 5065   86.18  189.99118 Heterosexual (straight)  Most of the time
## 5066   60.33  133.00265                Bisexual  Most of the time
## 5067   61.24  135.00882 Heterosexual (straight)         Sometimes
## 5068   49.90  110.00882                Bisexual  Most of the time
## 5069   56.70  125.00000 Heterosexual (straight)            Rarely
## 5070   70.31  155.00441 Heterosexual (straight)  Most of the time
## 5071   56.70  125.00000                Not sure  Most of the time
## 5072      NA         NA Heterosexual (straight)  Most of the time
## 5073   86.18  189.99118 Heterosexual (straight)             Never
## 5074   72.58  160.00882 Heterosexual (straight)  Most of the time
## 5075   51.71  113.99912 Heterosexual (straight)            Rarely
## 5076      NA         NA Heterosexual (straight)            Always
## 5077   57.61  127.00617 Heterosexual (straight)  Most of the time
## 5078   61.24  135.00882                Not sure         Sometimes
## 5079   66.23  146.00970 Heterosexual (straight)            Always
## 5080   79.38  175.00000 Heterosexual (straight)             Never
## 5081   89.81  197.99383                Not sure  Most of the time
## 5082   83.92  185.00882 Heterosexual (straight)            Rarely
## 5083   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5084   64.41  141.99735 Heterosexual (straight)            Always
## 5085   75.75  166.99735 Heterosexual (straight)            Always
## 5086   65.77  144.99559 Heterosexual (straight)             Never
## 5087   97.52  214.99118 Heterosexual (straight)         Sometimes
## 5088  116.12  255.99647                Bisexual  Most of the time
## 5089   45.36  100.00000 Heterosexual (straight)            Always
## 5090   68.04  150.00000 Heterosexual (straight)             Never
## 5091   65.32  144.00353                Bisexual            Rarely
## 5092   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5093   61.24  135.00882 Heterosexual (straight)         Sometimes
## 5094   95.26  210.00882 Heterosexual (straight)         Sometimes
## 5095   74.84  164.99118          Gay or lesbian  Most of the time
## 5096  104.33  230.00441                Not sure  Most of the time
## 5097   90.72  200.00000                Bisexual  Most of the time
## 5098   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5099   52.62  116.00529 Heterosexual (straight)         Sometimes
## 5100   56.70  125.00000                Not sure  Most of the time
## 5101   97.52  214.99118 Heterosexual (straight)            Rarely
## 5102  120.66  266.00529                Bisexual            Rarely
## 5103   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5104   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5105   49.90  110.00882 Heterosexual (straight)  Most of the time
## 5106   70.31  155.00441                Not sure         Sometimes
## 5107   68.04  150.00000 Heterosexual (straight)            Rarely
## 5108   88.91  196.00970          Gay or lesbian         Sometimes
## 5109   68.04  150.00000 Heterosexual (straight)             Never
## 5110   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5111      NA         NA                Not sure         Sometimes
## 5112   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5113  154.22  339.99118          Some other way            Always
## 5114   82.56  182.01058 Heterosexual (straight)         Sometimes
## 5115   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5116      NA         NA Heterosexual (straight)             Never
## 5117   83.92  185.00882 Heterosexual (straight)  Most of the time
## 5118  104.33  230.00441 Heterosexual (straight)            Rarely
## 5119   68.04  150.00000 Heterosexual (straight)             Never
## 5120   44.45   97.99383                Not sure  Most of the time
## 5121   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5122  117.94  260.00882 Heterosexual (straight)         Sometimes
## 5123   61.24  135.00882 Heterosexual (straight)            Rarely
## 5124   54.43  119.99559 Heterosexual (straight)            Rarely
## 5125   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5126   53.52  117.98942 Heterosexual (straight)            Rarely
## 5127   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5128      NA         NA Heterosexual (straight)            Rarely
## 5129   58.06  127.99824 Heterosexual (straight)            Rarely
## 5130   68.04  150.00000                Bisexual         Sometimes
## 5131   74.84  164.99118 Heterosexual (straight)             Never
## 5132   72.58  160.00882 Heterosexual (straight)            Rarely
## 5133  102.06  225.00000 Heterosexual (straight)             Never
## 5134   65.77  144.99559 Heterosexual (straight)            Rarely
## 5135   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5136   57.15  125.99206 Heterosexual (straight)         Sometimes
## 5137   61.24  135.00882 Heterosexual (straight)             Never
## 5138   56.25  124.00794 Heterosexual (straight)              <NA>
## 5139  100.70  222.00176 Heterosexual (straight)  Most of the time
## 5140  127.46  280.99647 Heterosexual (straight)            Rarely
## 5141   68.04  150.00000 Heterosexual (straight)            Always
## 5142   68.04  150.00000 Heterosexual (straight)            Rarely
## 5143   81.65  180.00441 Heterosexual (straight)            Rarely
## 5144   45.36  100.00000 Heterosexual (straight)         Sometimes
## 5145   55.34  122.00176 Heterosexual (straight)            Rarely
## 5146   44.45   97.99383 Heterosexual (straight)         Sometimes
## 5147   59.42  130.99647                Not sure  Most of the time
## 5148   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5149   79.38  175.00000 Heterosexual (straight)         Sometimes
## 5150   52.16  114.99118 Heterosexual (straight)            Always
## 5151   61.24  135.00882 Heterosexual (straight)            Rarely
## 5152   52.16  114.99118                Not sure         Sometimes
## 5153   63.50  139.99118 Heterosexual (straight)            Rarely
## 5154   58.97  130.00441 Heterosexual (straight)             Never
## 5155   70.31  155.00441 Heterosexual (straight)            Rarely
## 5156   56.70  125.00000 Heterosexual (straight)            Rarely
## 5157   70.31  155.00441 Heterosexual (straight)            Rarely
## 5158   67.59  149.00794          Gay or lesbian         Sometimes
## 5159   97.52  214.99118          Gay or lesbian  Most of the time
## 5160   77.11  169.99559 Heterosexual (straight)            Always
## 5161   56.70  125.00000 Heterosexual (straight)         Sometimes
## 5162   77.11  169.99559                Bisexual  Most of the time
## 5163   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5164      NA         NA Heterosexual (straight)              <NA>
## 5165   71.22  157.01058 Heterosexual (straight)              <NA>
## 5166   64.41  141.99735                Not sure            Always
## 5167   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5168   49.90  110.00882                Bisexual  Most of the time
## 5169   79.38  175.00000 Heterosexual (straight)             Never
## 5170   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5171   74.39  163.99912 Heterosexual (straight)              <NA>
## 5172   61.24  135.00882 Heterosexual (straight)            Rarely
## 5173   61.24  135.00882 Heterosexual (straight)             Never
## 5174   88.91  196.00970 Heterosexual (straight)            Rarely
## 5175   81.65  180.00441                Bisexual  Most of the time
## 5176   69.40  152.99824 Heterosexual (straight)         Sometimes
## 5177   64.86  142.98942 Heterosexual (straight)         Sometimes
## 5178   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5179   86.18  189.99118 Heterosexual (straight)  Most of the time
## 5180   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5181   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5182   88.91  196.00970                Not sure         Sometimes
## 5183   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5184   55.34  122.00176          Gay or lesbian         Sometimes
## 5185   63.50  139.99118 Heterosexual (straight)  Most of the time
## 5186   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5187   99.79  219.99559 Heterosexual (straight)  Most of the time
## 5188   53.52  117.98942                Bisexual  Most of the time
## 5189   59.88  132.01058 Heterosexual (straight)         Sometimes
## 5190   71.67  158.00265 Heterosexual (straight)  Most of the time
## 5191   53.98  119.00353 Heterosexual (straight)         Sometimes
## 5192   45.81  100.99206 Heterosexual (straight)             Never
## 5193   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5194   54.89  121.00970 Heterosexual (straight)            Rarely
## 5195   61.24  135.00882 Heterosexual (straight)         Sometimes
## 5196   56.70  125.00000                Not sure         Sometimes
## 5197   59.88  132.01058 Heterosexual (straight)             Never
## 5198   48.08  105.99647 Heterosexual (straight)         Sometimes
## 5199   76.20  167.98942 Heterosexual (straight)            Rarely
## 5200   88.91  196.00970                Not sure  Most of the time
## 5201   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5202   62.14  136.99295 Heterosexual (straight)  Most of the time
## 5203   66.68  147.00176                Not sure            Always
## 5204  102.06  225.00000 Heterosexual (straight)            Rarely
## 5205   51.71  113.99912 Heterosexual (straight)         Sometimes
## 5206   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5207   53.07  116.99735 Heterosexual (straight)  Most of the time
## 5208   72.58  160.00882                Bisexual            Always
## 5209   88.45  194.99559 Heterosexual (straight)         Sometimes
## 5210   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5211   62.60  138.00705                Bisexual  Most of the time
## 5212   88.45  194.99559 Heterosexual (straight)             Never
## 5213   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5214  106.60  235.00882 Heterosexual (straight)            Rarely
## 5215   56.70  125.00000 Heterosexual (straight)            Rarely
## 5216   47.63  105.00441                Bisexual  Most of the time
## 5217   63.50  139.99118 Heterosexual (straight)  Most of the time
## 5218   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5219   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5220   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5221   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5222   47.17  103.99030 Heterosexual (straight)            Rarely
## 5223   77.11  169.99559 Heterosexual (straight)            Rarely
## 5224   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5225   65.32  144.00353                Bisexual             Never
## 5226   63.50  139.99118 Heterosexual (straight)             Never
## 5227   86.18  189.99118 Heterosexual (straight)         Sometimes
## 5228   44.00   97.00176 Heterosexual (straight)         Sometimes
## 5229   74.84  164.99118 Heterosexual (straight)             Never
## 5230   74.84  164.99118 Heterosexual (straight)         Sometimes
## 5231   65.32  144.00353 Heterosexual (straight)            Rarely
## 5232   56.70  125.00000 Heterosexual (straight)  Most of the time
## 5233   49.90  110.00882 Heterosexual (straight)         Sometimes
## 5234   62.14  136.99295 Heterosexual (straight)  Most of the time
## 5235   79.38  175.00000 Heterosexual (straight)             Never
## 5236   52.16  114.99118 Heterosexual (straight)  Most of the time
## 5237   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5238  109.77  241.99735 Heterosexual (straight)  Most of the time
## 5239   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5240   80.74  177.99824 Heterosexual (straight)         Sometimes
## 5241   91.17  200.99206 Heterosexual (straight)  Most of the time
## 5242   79.38  175.00000          Some other way            Always
## 5243   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5244   65.77  144.99559                Bisexual            Rarely
## 5245   80.74  177.99824 Heterosexual (straight)         Sometimes
## 5246   68.04  150.00000                Not sure         Sometimes
## 5247   53.07  116.99735 Heterosexual (straight)         Sometimes
## 5248   77.11  169.99559 Heterosexual (straight)         Sometimes
## 5249   77.11  169.99559 Heterosexual (straight)  Most of the time
## 5250   40.82   89.99118                Not sure  Most of the time
## 5251   86.18  189.99118                Bisexual            Always
## 5252   78.93  174.00794 Heterosexual (straight)  Most of the time
## 5253   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5254      NA         NA          Some other way         Sometimes
## 5255   68.04  150.00000                Bisexual         Sometimes
## 5256   50.80  111.99295                Not sure         Sometimes
## 5257   48.99  108.00265 Heterosexual (straight)  Most of the time
## 5258   66.68  147.00176 Heterosexual (straight)  Most of the time
## 5259   61.24  135.00882 Heterosexual (straight)         Sometimes
## 5260   77.11  169.99559 Heterosexual (straight)             Never
## 5261   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5262   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5263   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5264      NA         NA Heterosexual (straight)            Rarely
## 5265   81.65  180.00441 Heterosexual (straight)             Never
## 5266   56.70  125.00000 Heterosexual (straight)         Sometimes
## 5267   58.97  130.00441          Some other way            Always
## 5268   72.58  160.00882 Heterosexual (straight)            Rarely
## 5269      NA         NA          Some other way            Rarely
## 5270   68.04  150.00000 Heterosexual (straight)  Most of the time
## 5271   63.50  139.99118 Heterosexual (straight)            Rarely
## 5272   65.77  144.99559 Heterosexual (straight)            Rarely
## 5273   74.84  164.99118 Heterosexual (straight)            Rarely
## 5274   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5275   60.78  133.99471 Heterosexual (straight)         Sometimes
## 5276   88.45  194.99559 Heterosexual (straight)            Rarely
## 5277   47.63  105.00441 Heterosexual (straight)         Sometimes
## 5278   44.00   97.00176                Bisexual  Most of the time
## 5279   69.40  152.99824          Gay or lesbian  Most of the time
## 5280   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5281   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5282   88.45  194.99559 Heterosexual (straight)         Sometimes
## 5283   58.97  130.00441          Some other way         Sometimes
## 5284   86.18  189.99118          Gay or lesbian         Sometimes
## 5285   52.16  114.99118          Gay or lesbian            Rarely
## 5286   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5287   49.90  110.00882 Heterosexual (straight)            Rarely
## 5288   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5289   47.63  105.00441 Heterosexual (straight)  Most of the time
## 5290   88.45  194.99559          Gay or lesbian             Never
## 5291   56.70  125.00000 Heterosexual (straight)            Rarely
## 5292   52.16  114.99118 Heterosexual (straight)            Always
## 5293   86.18  189.99118 Heterosexual (straight)  Most of the time
## 5294   61.24  135.00882          Some other way         Sometimes
## 5295   56.70  125.00000 Heterosexual (straight)  Most of the time
## 5296   74.39  163.99912 Heterosexual (straight)            Rarely
## 5297      NA         NA Heterosexual (straight)  Most of the time
## 5298   56.70  125.00000          Some other way  Most of the time
## 5299   74.84  164.99118 Heterosexual (straight)         Sometimes
## 5300   61.24  135.00882                Bisexual         Sometimes
## 5301   71.22  157.01058 Heterosexual (straight)            Rarely
## 5302   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5303   58.06  127.99824 Heterosexual (straight)            Rarely
## 5304   54.43  119.99559                Not sure  Most of the time
## 5305   43.09   94.99559                Bisexual            Always
## 5306   90.72  200.00000 Heterosexual (straight)            Rarely
## 5307   70.31  155.00441 Heterosexual (straight)            Rarely
## 5308   81.65  180.00441 Heterosexual (straight)            Rarely
## 5309   67.13  147.99383 Heterosexual (straight)         Sometimes
## 5310   49.90  110.00882 Heterosexual (straight)            Always
## 5311   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5312   87.09  191.99735 Heterosexual (straight)         Sometimes
## 5313   67.13  147.99383                Bisexual         Sometimes
## 5314   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5315   79.38  175.00000 Heterosexual (straight)         Sometimes
## 5316   67.13  147.99383 Heterosexual (straight)            Rarely
## 5317   61.69  136.00088                Not sure            Rarely
## 5318      NA         NA                Bisexual         Sometimes
## 5319   56.70  125.00000                Bisexual  Most of the time
## 5320   56.70  125.00000                Bisexual         Sometimes
## 5321   83.01  183.00265                Bisexual            Always
## 5322   65.77  144.99559                Bisexual         Sometimes
## 5323   65.77  144.99559 Heterosexual (straight)            Rarely
## 5324   52.16  114.99118 Heterosexual (straight)         Sometimes
## 5325   77.11  169.99559 Heterosexual (straight)             Never
## 5326   63.50  139.99118                Bisexual  Most of the time
## 5327   74.84  164.99118 Heterosexual (straight)            Rarely
## 5328   76.20  167.98942 Heterosexual (straight)             Never
## 5329   52.16  114.99118 Heterosexual (straight)         Sometimes
## 5330   58.06  127.99824                Bisexual         Sometimes
## 5331   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5332   79.38  175.00000 Heterosexual (straight)            Rarely
## 5333   62.60  138.00705 Heterosexual (straight)         Sometimes
## 5334   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5335   52.16  114.99118 Heterosexual (straight)            Rarely
## 5336   56.70  125.00000                Not sure  Most of the time
## 5337   54.89  121.00970 Heterosexual (straight)  Most of the time
## 5338   57.15  125.99206 Heterosexual (straight)         Sometimes
## 5339   95.26  210.00882 Heterosexual (straight)         Sometimes
## 5340   72.58  160.00882          Some other way         Sometimes
## 5341  108.86  239.99118 Heterosexual (straight)  Most of the time
## 5342   79.38  175.00000 Heterosexual (straight)            Rarely
## 5343   72.58  160.00882 Heterosexual (straight)  Most of the time
## 5344   51.71  113.99912                Bisexual            Always
## 5345   58.97  130.00441 Heterosexual (straight)             Never
## 5346   48.54  107.01058 Heterosexual (straight)         Sometimes
## 5347   54.43  119.99559 Heterosexual (straight)            Rarely
## 5348   55.79  122.99383 Heterosexual (straight)            Rarely
## 5349   72.58  160.00882 Heterosexual (straight)             Never
## 5350   50.35  111.00088                Bisexual            Rarely
## 5351   53.07  116.99735          Some other way         Sometimes
## 5352  104.33  230.00441 Heterosexual (straight)            Rarely
## 5353   97.52  214.99118 Heterosexual (straight)            Rarely
## 5354   65.77  144.99559 Heterosexual (straight)             Never
## 5355   35.38   77.99824                Bisexual            Always
## 5356   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5357  106.14  233.99471 Heterosexual (straight)            Rarely
## 5358   52.16  114.99118 Heterosexual (straight)             Never
## 5359   86.18  189.99118 Heterosexual (straight)            Rarely
## 5360   81.65  180.00441          Some other way            Rarely
## 5361   52.16  114.99118                Bisexual              <NA>
## 5362   63.05  138.99912 Heterosexual (straight)         Sometimes
## 5363   54.43  119.99559                Not sure  Most of the time
## 5364   86.18  189.99118 Heterosexual (straight)         Sometimes
## 5365   77.11  169.99559 Heterosexual (straight)         Sometimes
## 5366   68.04  150.00000 Heterosexual (straight)            Rarely
## 5367   63.50  139.99118 Heterosexual (straight)            Rarely
## 5368   48.08  105.99647 Heterosexual (straight)         Sometimes
## 5369      NA         NA Heterosexual (straight)         Sometimes
## 5370   70.31  155.00441 Heterosexual (straight)            Rarely
## 5371   50.80  111.99295 Heterosexual (straight)         Sometimes
## 5372  102.06  225.00000                Bisexual         Sometimes
## 5373   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5374   86.18  189.99118 Heterosexual (straight)         Sometimes
## 5375   90.72  200.00000 Heterosexual (straight)             Never
## 5376   81.65  180.00441 Heterosexual (straight)              <NA>
## 5377   49.44  108.99471 Heterosexual (straight)  Most of the time
## 5378   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5379   62.14  136.99295 Heterosexual (straight)            Rarely
## 5380      NA         NA Heterosexual (straight)  Most of the time
## 5381   53.52  117.98942 Heterosexual (straight)         Sometimes
## 5382   52.16  114.99118 Heterosexual (straight)            Rarely
## 5383   68.04  150.00000          Gay or lesbian            Always
## 5384   53.52  117.98942 Heterosexual (straight)  Most of the time
## 5385   70.31  155.00441 Heterosexual (straight)  Most of the time
## 5386   58.97  130.00441 Heterosexual (straight)             Never
## 5387   81.65  180.00441 Heterosexual (straight)            Rarely
## 5388   54.43  119.99559 Heterosexual (straight)            Rarely
## 5389   52.16  114.99118 Heterosexual (straight)            Always
## 5390   90.72  200.00000 Heterosexual (straight)            Rarely
## 5391   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5392      NA         NA          Some other way  Most of the time
## 5393  113.40  250.00000 Heterosexual (straight)            Always
## 5394   64.86  142.98942 Heterosexual (straight)             Never
## 5395   60.78  133.99471 Heterosexual (straight)  Most of the time
## 5396   46.72  102.99824                Not sure  Most of the time
## 5397  111.13  244.99559 Heterosexual (straight)         Sometimes
## 5398   61.24  135.00882                Not sure  Most of the time
## 5399   60.78  133.99471          Gay or lesbian            Rarely
## 5400   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5401   90.72  200.00000 Heterosexual (straight)            Rarely
## 5402   95.26  210.00882 Heterosexual (straight)            Always
## 5403   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5404  106.60  235.00882 Heterosexual (straight)            Always
## 5405   61.24  135.00882                Bisexual            Always
## 5406  104.33  230.00441 Heterosexual (straight)         Sometimes
## 5407   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5408   81.65  180.00441                Bisexual  Most of the time
## 5409   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5410      NA         NA                Bisexual             Never
## 5411   56.70  125.00000 Heterosexual (straight)  Most of the time
## 5412  101.61  224.00794                Not sure         Sometimes
## 5413      NA         NA Heterosexual (straight)             Never
## 5414   83.92  185.00882                Bisexual            Rarely
## 5415   68.04  150.00000 Heterosexual (straight)             Never
## 5416   73.94  163.00705                Bisexual            Always
## 5417   47.17  103.99030                Bisexual  Most of the time
## 5418   56.70  125.00000 Heterosexual (straight)         Sometimes
## 5419   49.90  110.00882 Heterosexual (straight)            Always
## 5420   51.71  113.99912 Heterosexual (straight)  Most of the time
## 5421   67.13  147.99383 Heterosexual (straight)             Never
## 5422   48.54  107.01058                Not sure            Always
## 5423   52.16  114.99118 Heterosexual (straight)             Never
## 5424   77.11  169.99559 Heterosexual (straight)             Never
## 5425   49.44  108.99471 Heterosexual (straight)         Sometimes
## 5426   74.84  164.99118 Heterosexual (straight)         Sometimes
## 5427   65.77  144.99559 Heterosexual (straight)             Never
## 5428   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5429      NA         NA Heterosexual (straight)             Never
## 5430   63.96  141.00529 Heterosexual (straight)  Most of the time
## 5431   87.54  192.98942 Heterosexual (straight)            Always
## 5432   83.92  185.00882 Heterosexual (straight)         Sometimes
## 5433   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5434   45.36  100.00000 Heterosexual (straight)         Sometimes
## 5435   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5436   81.65  180.00441 Heterosexual (straight)             Never
## 5437   74.84  164.99118 Heterosexual (straight)            Rarely
## 5438   50.35  111.00088          Some other way  Most of the time
## 5439   58.97  130.00441 Heterosexual (straight)            Rarely
## 5440   74.84  164.99118 Heterosexual (straight)             Never
## 5441   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5442   95.26  210.00882 Heterosexual (straight)             Never
## 5443   89.81  197.99383 Heterosexual (straight)             Never
## 5444   43.09   94.99559                Not sure         Sometimes
## 5445   58.51  128.99030 Heterosexual (straight)             Never
## 5446   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5447   86.18  189.99118                Bisexual            Always
## 5448   76.20  167.98942 Heterosexual (straight)             Never
## 5449   66.23  146.00970 Heterosexual (straight)         Sometimes
## 5450   52.16  114.99118 Heterosexual (straight)            Rarely
## 5451   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5452   56.70  125.00000 Heterosexual (straight)            Rarely
## 5453   58.51  128.99030 Heterosexual (straight)  Most of the time
## 5454   72.58  160.00882 Heterosexual (straight)  Most of the time
## 5455   83.92  185.00882 Heterosexual (straight)            Rarely
## 5456      NA         NA Heterosexual (straight)            Rarely
## 5457   99.34  219.00353 Heterosexual (straight)  Most of the time
## 5458      NA         NA          Gay or lesbian             Never
## 5459   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5460  115.67  255.00441 Heterosexual (straight)            Rarely
## 5461   56.70  125.00000 Heterosexual (straight)            Rarely
## 5462   68.95  152.00617 Heterosexual (straight)            Rarely
## 5463   53.52  117.98942 Heterosexual (straight)             Never
## 5464   67.59  149.00794 Heterosexual (straight)         Sometimes
## 5465   53.52  117.98942 Heterosexual (straight)            Always
## 5466   98.43  216.99735 Heterosexual (straight)         Sometimes
## 5467   51.26  113.00705 Heterosexual (straight)            Rarely
## 5468   86.18  189.99118 Heterosexual (straight)         Sometimes
## 5469   64.86  142.98942 Heterosexual (straight)  Most of the time
## 5470   59.42  130.99647 Heterosexual (straight)            Rarely
## 5471   68.95  152.00617                Not sure  Most of the time
## 5472   61.24  135.00882 Heterosexual (straight)            Rarely
## 5473   50.80  111.99295 Heterosexual (straight)  Most of the time
## 5474   52.16  114.99118 Heterosexual (straight)             Never
## 5475   45.36  100.00000 Heterosexual (straight)             Never
## 5476   68.04  150.00000                Bisexual            Always
## 5477   67.13  147.99383 Heterosexual (straight)  Most of the time
## 5478   48.99  108.00265                Bisexual  Most of the time
## 5479   57.15  125.99206 Heterosexual (straight)         Sometimes
## 5480  108.86  239.99118 Heterosexual (straight)             Never
## 5481   49.90  110.00882 Heterosexual (straight)            Rarely
## 5482   58.06  127.99824 Heterosexual (straight)             Never
## 5483   81.65  180.00441 Heterosexual (straight)            Rarely
## 5484   50.80  111.99295                Bisexual  Most of the time
## 5485      NA         NA          Some other way  Most of the time
## 5486   89.81  197.99383 Heterosexual (straight)         Sometimes
## 5487   61.24  135.00882          Some other way            Rarely
## 5488   70.31  155.00441                Bisexual         Sometimes
## 5489   74.84  164.99118                Bisexual  Most of the time
## 5490   56.70  125.00000          Some other way  Most of the time
## 5491  131.54  289.99118                Not sure         Sometimes
## 5492   48.54  107.01058 Heterosexual (straight)         Sometimes
## 5493   49.90  110.00882 Heterosexual (straight)            Always
## 5494   54.89  121.00970 Heterosexual (straight)         Sometimes
## 5495   71.67  158.00265 Heterosexual (straight)            Rarely
## 5496   54.43  119.99559 Heterosexual (straight)             Never
## 5497   79.38  175.00000 Heterosexual (straight)         Sometimes
## 5498   70.31  155.00441 Heterosexual (straight)         Sometimes
## 5499   90.72  200.00000 Heterosexual (straight)            Rarely
## 5500   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5501   79.38  175.00000 Heterosexual (straight)         Sometimes
## 5502   68.04  150.00000 Heterosexual (straight)             Never
## 5503   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5504  122.02  269.00353 Heterosexual (straight)  Most of the time
## 5505   61.24  135.00882 Heterosexual (straight)         Sometimes
## 5506   63.50  139.99118 Heterosexual (straight)            Rarely
## 5507   68.04  150.00000 Heterosexual (straight)  Most of the time
## 5508   68.49  150.99206                Bisexual         Sometimes
## 5509   52.16  114.99118                Not sure  Most of the time
## 5510   80.74  177.99824 Heterosexual (straight)         Sometimes
## 5511   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5512   81.65  180.00441 Heterosexual (straight)  Most of the time
## 5513   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5514   79.38  175.00000 Heterosexual (straight)  Most of the time
## 5515   63.50  139.99118 Heterosexual (straight)            Rarely
## 5516   49.90  110.00882 Heterosexual (straight)             Never
## 5517      NA         NA                Bisexual            Always
## 5518      NA         NA Heterosexual (straight)         Sometimes
## 5519   44.91   99.00794          Some other way  Most of the time
## 5520   56.70  125.00000 Heterosexual (straight)             Never
## 5521   58.06  127.99824 Heterosexual (straight)             Never
## 5522   63.50  139.99118 Heterosexual (straight)            Rarely
## 5523   52.16  114.99118 Heterosexual (straight)             Never
## 5524   90.72  200.00000 Heterosexual (straight)            Rarely
## 5525   54.43  119.99559                Bisexual  Most of the time
## 5526   50.35  111.00088 Heterosexual (straight)            Always
## 5527   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5528   50.80  111.99295 Heterosexual (straight)  Most of the time
## 5529   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5530   75.75  166.99735 Heterosexual (straight)  Most of the time
## 5531      NA         NA Heterosexual (straight)  Most of the time
## 5532   81.65  180.00441                Bisexual         Sometimes
## 5533   63.50  139.99118 Heterosexual (straight)  Most of the time
## 5534   49.90  110.00882 Heterosexual (straight)             Never
## 5535   56.70  125.00000                Bisexual         Sometimes
## 5536   45.36  100.00000                Bisexual         Sometimes
## 5537   43.55   96.00970                Bisexual  Most of the time
## 5538   63.50  139.99118 Heterosexual (straight)            Rarely
## 5539   72.58  160.00882 Heterosexual (straight)  Most of the time
## 5540   88.45  194.99559                Bisexual  Most of the time
## 5541   71.67  158.00265 Heterosexual (straight)  Most of the time
## 5542   45.36  100.00000 Heterosexual (straight)         Sometimes
## 5543  117.94  260.00882          Gay or lesbian  Most of the time
## 5544   54.43  119.99559 Heterosexual (straight)             Never
## 5545   58.97  130.00441                Bisexual              <NA>
## 5546   48.54  107.01058          Some other way  Most of the time
## 5547   56.25  124.00794                Bisexual         Sometimes
## 5548   58.97  130.00441                Bisexual            Rarely
## 5549   99.79  219.99559 Heterosexual (straight)            Rarely
## 5550   82.56  182.01058 Heterosexual (straight)  Most of the time
## 5551   52.16  114.99118 Heterosexual (straight)             Never
## 5552   70.31  155.00441 Heterosexual (straight)         Sometimes
## 5553   48.54  107.01058                Bisexual  Most of the time
## 5554   61.24  135.00882                Bisexual  Most of the time
## 5555   62.14  136.99295                Bisexual  Most of the time
## 5556      NA         NA                Bisexual            Always
## 5557   54.43  119.99559          Some other way              <NA>
## 5558   92.08  202.99824          Some other way         Sometimes
## 5559   54.43  119.99559 Heterosexual (straight)            Rarely
## 5560  102.06  225.00000                Not sure         Sometimes
## 5561   63.50  139.99118 Heterosexual (straight)            Rarely
## 5562      NA         NA Heterosexual (straight)         Sometimes
## 5563   52.62  116.00529 Heterosexual (straight)            Rarely
## 5564   45.36  100.00000 Heterosexual (straight)            Rarely
## 5565   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5566   56.70  125.00000 Heterosexual (straight)             Never
## 5567   64.86  142.98942                Not sure  Most of the time
## 5568   80.74  177.99824 Heterosexual (straight)            Rarely
## 5569   62.60  138.00705                Bisexual  Most of the time
## 5570  113.40  250.00000                Not sure         Sometimes
## 5571   54.43  119.99559                Not sure         Sometimes
## 5572   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5573   52.16  114.99118 Heterosexual (straight)         Sometimes
## 5574   58.97  130.00441 Heterosexual (straight)            Rarely
## 5575   62.60  138.00705 Heterosexual (straight)            Rarely
## 5576   51.71  113.99912                Bisexual  Most of the time
## 5577   57.61  127.00617 Heterosexual (straight)            Always
## 5578   49.90  110.00882          Some other way            Always
## 5579   56.70  125.00000                Bisexual            Always
## 5580   56.70  125.00000                Bisexual             Never
## 5581   88.45  194.99559 Heterosexual (straight)             Never
## 5582   79.38  175.00000 Heterosexual (straight)         Sometimes
## 5583   90.72  200.00000 Heterosexual (straight)             Never
## 5584   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5585   77.11  169.99559 Heterosexual (straight)             Never
## 5586   70.31  155.00441 Heterosexual (straight)             Never
## 5587   59.88  132.01058 Heterosexual (straight)            Rarely
## 5588   84.37  186.00088 Heterosexual (straight)  Most of the time
## 5589   54.43  119.99559 Heterosexual (straight)            Rarely
## 5590   74.84  164.99118 Heterosexual (straight)  Most of the time
## 5591  125.19  275.99206 Heterosexual (straight)             Never
## 5592   60.33  133.00265                Not sure  Most of the time
## 5593   52.16  114.99118 Heterosexual (straight)            Always
## 5594   43.09   94.99559 Heterosexual (straight)         Sometimes
## 5595  131.54  289.99118 Heterosexual (straight)         Sometimes
## 5596   48.54  107.01058 Heterosexual (straight)         Sometimes
## 5597   90.72  200.00000 Heterosexual (straight)            Rarely
## 5598   70.76  155.99647 Heterosexual (straight)             Never
## 5599   50.35  111.00088 Heterosexual (straight)         Sometimes
## 5600   54.43  119.99559 Heterosexual (straight)             Never
## 5601  111.13  244.99559 Heterosexual (straight)            Rarely
## 5602      NA         NA Heterosexual (straight)         Sometimes
## 5603   72.58  160.00882                Not sure         Sometimes
## 5604   68.04  150.00000 Heterosexual (straight)         Sometimes
## 5605   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5606   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5607   98.43  216.99735 Heterosexual (straight)             Never
## 5608   75.75  166.99735          Gay or lesbian         Sometimes
## 5609   56.70  125.00000 Heterosexual (straight)         Sometimes
## 5610   53.98  119.00353                Bisexual            Always
## 5611   49.90  110.00882 Heterosexual (straight)         Sometimes
## 5612   68.04  150.00000 Heterosexual (straight)              <NA>
## 5613   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5614      NA         NA Heterosexual (straight)         Sometimes
## 5615   61.69  136.00088                Not sure         Sometimes
## 5616   47.63  105.00441 Heterosexual (straight)            Rarely
## 5617   63.50  139.99118                Not sure            Rarely
## 5618   57.61  127.00617 Heterosexual (straight)         Sometimes
## 5619   69.40  152.99824 Heterosexual (straight)  Most of the time
## 5620   61.24  135.00882                Bisexual         Sometimes
## 5621   57.61  127.00617                Not sure  Most of the time
## 5622   86.18  189.99118 Heterosexual (straight)  Most of the time
## 5623   62.60  138.00705 Heterosexual (straight)             Never
## 5624  104.33  230.00441 Heterosexual (straight)  Most of the time
## 5625   70.31  155.00441 Heterosexual (straight)            Always
## 5626      NA         NA Heterosexual (straight)         Sometimes
## 5627   90.72  200.00000 Heterosexual (straight)  Most of the time
## 5628   49.90  110.00882 Heterosexual (straight)  Most of the time
## 5629   68.04  150.00000                Bisexual            Rarely
## 5630   59.42  130.99647                Not sure  Most of the time
## 5631      NA         NA Heterosexual (straight)         Sometimes
## 5632   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5633   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5634   72.58  160.00882          Gay or lesbian            Always
## 5635      NA         NA          Gay or lesbian            Always
## 5636   44.91   99.00794 Heterosexual (straight)         Sometimes
## 5637   54.43  119.99559 Heterosexual (straight)            Rarely
## 5638   66.68  147.00176          Gay or lesbian         Sometimes
## 5639   49.90  110.00882 Heterosexual (straight)  Most of the time
## 5640   53.07  116.99735                Not sure              <NA>
## 5641   54.43  119.99559 Heterosexual (straight)            Rarely
## 5642   53.98  119.00353 Heterosexual (straight)            Rarely
## 5643   47.63  105.00441 Heterosexual (straight)             Never
## 5644   49.90  110.00882 Heterosexual (straight)             Never
## 5645   52.16  114.99118 Heterosexual (straight)         Sometimes
## 5646   49.90  110.00882 Heterosexual (straight)            Rarely
## 5647   48.08  105.99647 Heterosexual (straight)            Rarely
## 5648   86.18  189.99118 Heterosexual (straight)         Sometimes
## 5649   57.61  127.00617                Not sure  Most of the time
## 5650   57.15  125.99206 Heterosexual (straight)         Sometimes
## 5651   59.88  132.01058                Not sure         Sometimes
## 5652   65.77  144.99559 Heterosexual (straight)            Rarely
## 5653   57.15  125.99206                Bisexual  Most of the time
## 5654   61.24  135.00882                Bisexual            Rarely
## 5655   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5656   56.70  125.00000 Heterosexual (straight)             Never
## 5657   81.65  180.00441 Heterosexual (straight)            Rarely
## 5658   54.43  119.99559                Bisexual  Most of the time
## 5659  122.47  269.99559 Heterosexual (straight)            Rarely
## 5660   52.16  114.99118 Heterosexual (straight)            Rarely
## 5661   72.58  160.00882 Heterosexual (straight)             Never
## 5662   49.90  110.00882 Heterosexual (straight)            Rarely
## 5663   45.36  100.00000 Heterosexual (straight)         Sometimes
## 5664   47.63  105.00441 Heterosexual (straight)  Most of the time
## 5665   78.47  172.99383 Heterosexual (straight)             Never
## 5666   67.13  147.99383          Gay or lesbian         Sometimes
## 5667   54.43  119.99559 Heterosexual (straight)             Never
## 5668   64.41  141.99735 Heterosexual (straight)         Sometimes
## 5669   76.20  167.98942 Heterosexual (straight)            Rarely
## 5670   97.07  213.99912                Bisexual         Sometimes
## 5671   52.16  114.99118 Heterosexual (straight)  Most of the time
## 5672   58.97  130.00441 Heterosexual (straight)            Rarely
## 5673   64.86  142.98942 Heterosexual (straight)  Most of the time
## 5674   63.50  139.99118                Not sure  Most of the time
## 5675   52.16  114.99118 Heterosexual (straight)         Sometimes
## 5676   45.36  100.00000                Bisexual  Most of the time
## 5677   56.70  125.00000 Heterosexual (straight)         Sometimes
## 5678   61.24  135.00882 Heterosexual (straight)         Sometimes
## 5679   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5680   89.36  197.00176 Heterosexual (straight)            Rarely
## 5681   70.31  155.00441 Heterosexual (straight)             Never
## 5682   78.02  172.00176 Heterosexual (straight)             Never
## 5683  134.72  297.00176 Heterosexual (straight)            Rarely
## 5684      NA         NA                Bisexual            Always
## 5685      NA         NA Heterosexual (straight)             Never
## 5686      NA         NA Heterosexual (straight)              <NA>
## 5687  106.14  233.99471 Heterosexual (straight)  Most of the time
## 5688   47.63  105.00441 Heterosexual (straight)            Rarely
## 5689   77.11  169.99559 Heterosexual (straight)             Never
## 5690      NA         NA Heterosexual (straight)            Rarely
## 5691   48.08  105.99647 Heterosexual (straight)  Most of the time
## 5692   83.46  183.99471 Heterosexual (straight)            Rarely
## 5693   44.00   97.00176 Heterosexual (straight)            Always
## 5694   77.57  171.00970 Heterosexual (straight)  Most of the time
## 5695   77.11  169.99559 Heterosexual (straight)         Sometimes
## 5696   63.50  139.99118 Heterosexual (straight)  Most of the time
## 5697   83.92  185.00882 Heterosexual (straight)         Sometimes
## 5698   77.11  169.99559 Heterosexual (straight)  Most of the time
## 5699   56.70  125.00000                Bisexual         Sometimes
## 5700   58.97  130.00441 Heterosexual (straight)             Never
## 5701   74.84  164.99118 Heterosexual (straight)  Most of the time
## 5702   68.04  150.00000 Heterosexual (straight)             Never
## 5703   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5704  140.62  310.00882 Heterosexual (straight)            Rarely
## 5705   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5706   62.60  138.00705 Heterosexual (straight)             Never
## 5707   86.18  189.99118 Heterosexual (straight)         Sometimes
## 5708  115.67  255.00441 Heterosexual (straight)         Sometimes
## 5709   75.75  166.99735                Bisexual            Always
## 5710   49.90  110.00882 Heterosexual (straight)            Always
## 5711   63.50  139.99118 Heterosexual (straight)         Sometimes
## 5712   70.31  155.00441 Heterosexual (straight)             Never
## 5713  167.38  369.00353 Heterosexual (straight)         Sometimes
## 5714   63.50  139.99118 Heterosexual (straight)            Always
## 5715   83.92  185.00882 Heterosexual (straight)            Rarely
## 5716   77.11  169.99559 Heterosexual (straight)            Rarely
## 5717   40.82   89.99118 Heterosexual (straight)             Never
## 5718  106.60  235.00882 Heterosexual (straight)         Sometimes
## 5719   54.43  119.99559 Heterosexual (straight)             Never
## 5720      NA         NA                Bisexual  Most of the time
## 5721   80.74  177.99824                Bisexual         Sometimes
## 5722   62.14  136.99295                Not sure            Always
## 5723   81.65  180.00441          Some other way         Sometimes
## 5724   95.26  210.00882 Heterosexual (straight)            Always
## 5725   99.79  219.99559 Heterosexual (straight)         Sometimes
## 5726   54.89  121.00970 Heterosexual (straight)         Sometimes
## 5727   64.41  141.99735 Heterosexual (straight)         Sometimes
## 5728   66.68  147.00176 Heterosexual (straight)            Rarely
## 5729   81.19  178.99030 Heterosexual (straight)            Rarely
## 5730   56.70  125.00000 Heterosexual (straight)            Rarely
## 5731   59.88  132.01058 Heterosexual (straight)         Sometimes
## 5732   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5733   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5734   66.68  147.00176 Heterosexual (straight)         Sometimes
## 5735   88.45  194.99559 Heterosexual (straight)            Always
## 5736   65.77  144.99559                Bisexual            Always
## 5737      NA         NA Heterosexual (straight)            Always
## 5738      NA         NA          Some other way  Most of the time
## 5739  117.94  260.00882 Heterosexual (straight)         Sometimes
## 5740   65.77  144.99559 Heterosexual (straight)             Never
## 5741   58.97  130.00441 Heterosexual (straight)            Rarely
## 5742   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5743      NA         NA Heterosexual (straight)            Always
## 5744   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5745   99.79  219.99559 Heterosexual (straight)            Always
## 5746   91.63  202.00617 Heterosexual (straight)         Sometimes
## 5747      NA         NA Heterosexual (straight)         Sometimes
## 5748   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5749  122.47  269.99559 Heterosexual (straight)  Most of the time
## 5750  112.95  249.00794 Heterosexual (straight)            Rarely
## 5751   70.31  155.00441 Heterosexual (straight)         Sometimes
## 5752   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5753   63.50  139.99118          Some other way            Always
## 5754   77.11  169.99559          Some other way         Sometimes
## 5755   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5756   54.89  121.00970 Heterosexual (straight)         Sometimes
## 5757   90.72  200.00000 Heterosexual (straight)            Rarely
## 5758      NA         NA Heterosexual (straight)         Sometimes
## 5759   53.07  116.99735 Heterosexual (straight)             Never
## 5760  111.13  244.99559 Heterosexual (straight)             Never
## 5761   54.43  119.99559                Not sure  Most of the time
## 5762   88.45  194.99559 Heterosexual (straight)             Never
## 5763   79.38  175.00000 Heterosexual (straight)            Always
## 5764   99.79  219.99559 Heterosexual (straight)         Sometimes
## 5765   84.82  186.99295 Heterosexual (straight)  Most of the time
## 5766   66.68  147.00176 Heterosexual (straight)            Rarely
## 5767  117.94  260.00882 Heterosexual (straight)         Sometimes
## 5768   58.97  130.00441 Heterosexual (straight)             Never
## 5769   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5770   74.84  164.99118                Bisexual            Rarely
## 5771   53.52  117.98942 Heterosexual (straight)            Rarely
## 5772   59.88  132.01058                Bisexual         Sometimes
## 5773   58.51  128.99030 Heterosexual (straight)         Sometimes
## 5774   67.13  147.99383 Heterosexual (straight)            Rarely
## 5775   53.07  116.99735                Bisexual         Sometimes
## 5776   63.50  139.99118 Heterosexual (straight)             Never
## 5777   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5778   82.10  180.99647                Not sure            Rarely
## 5779   81.65  180.00441                Bisexual              <NA>
## 5780   45.36  100.00000          Some other way  Most of the time
## 5781   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5782   70.31  155.00441 Heterosexual (straight)            Rarely
## 5783   68.04  150.00000 Heterosexual (straight)            Rarely
## 5784   47.63  105.00441 Heterosexual (straight)  Most of the time
## 5785   44.00   97.00176 Heterosexual (straight)            Rarely
## 5786      NA         NA          Some other way  Most of the time
## 5787  104.33  230.00441                Bisexual  Most of the time
## 5788  110.22  242.98942 Heterosexual (straight)         Sometimes
## 5789   72.58  160.00882 Heterosexual (straight)             Never
## 5790  117.94  260.00882 Heterosexual (straight)            Rarely
## 5791   83.92  185.00882 Heterosexual (straight)             Never
## 5792  129.28  285.00882 Heterosexual (straight)         Sometimes
## 5793   68.04  150.00000 Heterosexual (straight)            Rarely
## 5794  104.33  230.00441 Heterosexual (straight)         Sometimes
## 5795   72.58  160.00882 Heterosexual (straight)            Rarely
## 5796   63.50  139.99118 Heterosexual (straight)            Rarely
## 5797   58.06  127.99824                Not sure         Sometimes
## 5798  109.77  241.99735 Heterosexual (straight)         Sometimes
## 5799   57.61  127.00617                Not sure  Most of the time
## 5800   54.43  119.99559 Heterosexual (straight)             Never
## 5801   67.59  149.00794 Heterosexual (straight)         Sometimes
## 5802   73.94  163.00705 Heterosexual (straight)  Most of the time
## 5803   49.90  110.00882          Gay or lesbian         Sometimes
## 5804   53.52  117.98942                Bisexual            Rarely
## 5805      NA         NA                Bisexual         Sometimes
## 5806   83.92  185.00882                Bisexual              <NA>
## 5807   81.65  180.00441 Heterosexual (straight)             Never
## 5808   68.04  150.00000                Not sure         Sometimes
## 5809      NA         NA Heterosexual (straight)            Rarely
## 5810   46.27  102.00617 Heterosexual (straight)         Sometimes
## 5811   56.70  125.00000 Heterosexual (straight)            Rarely
## 5812   54.43  119.99559 Heterosexual (straight)             Never
## 5813   61.24  135.00882 Heterosexual (straight)         Sometimes
## 5814      NA         NA Heterosexual (straight)              <NA>
## 5815   77.11  169.99559          Some other way              <NA>
## 5816   79.38  175.00000 Heterosexual (straight)             Never
## 5817   58.06  127.99824 Heterosexual (straight)              <NA>
## 5818   85.73  188.99912 Heterosexual (straight)         Sometimes
## 5819   82.56  182.01058 Heterosexual (straight)              <NA>
## 5820   65.77  144.99559 Heterosexual (straight)              <NA>
## 5821   58.97  130.00441 Heterosexual (straight)             Never
## 5822   65.77  144.99559 Heterosexual (straight)              <NA>
## 5823   54.89  121.00970 Heterosexual (straight)         Sometimes
## 5824   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5825   90.72  200.00000 Heterosexual (straight)  Most of the time
## 5826   51.26  113.00705 Heterosexual (straight)              <NA>
## 5827   63.50  139.99118 Heterosexual (straight)             Never
## 5828   71.22  157.01058 Heterosexual (straight)            Rarely
## 5829   79.38  175.00000                Bisexual              <NA>
## 5830   58.51  128.99030                Bisexual             Never
## 5831   96.62  213.00705 Heterosexual (straight)            Rarely
## 5832      NA         NA Heterosexual (straight)            Rarely
## 5833   77.11  169.99559 Heterosexual (straight)              <NA>
## 5834      NA         NA                Bisexual         Sometimes
## 5835   88.45  194.99559 Heterosexual (straight)         Sometimes
## 5836   63.50  139.99118                Not sure         Sometimes
## 5837   95.26  210.00882                Not sure         Sometimes
## 5838      NA         NA Heterosexual (straight)              <NA>
## 5839   58.97  130.00441 Heterosexual (straight)              <NA>
## 5840   59.42  130.99647                Not sure         Sometimes
## 5841   65.77  144.99559 Heterosexual (straight)             Never
## 5842   56.70  125.00000                Not sure  Most of the time
## 5843   79.38  175.00000 Heterosexual (straight)             Never
## 5844   58.97  130.00441 Heterosexual (straight)            Rarely
## 5845   63.50  139.99118 Heterosexual (straight)            Rarely
## 5846   77.11  169.99559 Heterosexual (straight)            Rarely
## 5847   70.31  155.00441 Heterosexual (straight)              <NA>
## 5848   86.18  189.99118 Heterosexual (straight)            Always
## 5849   62.60  138.00705 Heterosexual (straight)  Most of the time
## 5850   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5851   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5852   76.20  167.98942 Heterosexual (straight)         Sometimes
## 5853   58.97  130.00441          Some other way              <NA>
## 5854   79.38  175.00000 Heterosexual (straight)              <NA>
## 5855   56.70  125.00000 Heterosexual (straight)              <NA>
## 5856   48.08  105.99647 Heterosexual (straight)  Most of the time
## 5857   81.65  180.00441 Heterosexual (straight)              <NA>
## 5858   81.65  180.00441                Not sure  Most of the time
## 5859  104.33  230.00441 Heterosexual (straight)            Rarely
## 5860   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5861   72.58  160.00882                Not sure              <NA>
## 5862   45.36  100.00000 Heterosexual (straight)         Sometimes
## 5863   81.65  180.00441 Heterosexual (straight)             Never
## 5864   83.92  185.00882 Heterosexual (straight)  Most of the time
## 5865   59.88  132.01058                Bisexual            Always
## 5866   65.77  144.99559 Heterosexual (straight)             Never
## 5867      NA         NA Heterosexual (straight)              <NA>
## 5868   49.90  110.00882          Some other way         Sometimes
## 5869   73.48  161.99295 Heterosexual (straight)         Sometimes
## 5870   74.84  164.99118 Heterosexual (straight)            Rarely
## 5871   63.50  139.99118 Heterosexual (straight)  Most of the time
## 5872   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5873  113.40  250.00000 Heterosexual (straight)             Never
## 5874   63.50  139.99118                Not sure         Sometimes
## 5875   72.58  160.00882 Heterosexual (straight)  Most of the time
## 5876   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5877   54.43  119.99559 Heterosexual (straight)            Rarely
## 5878   54.43  119.99559 Heterosexual (straight)         Sometimes
## 5879      NA         NA                Bisexual  Most of the time
## 5880   74.84  164.99118 Heterosexual (straight)  Most of the time
## 5881   57.61  127.00617 Heterosexual (straight)         Sometimes
## 5882   98.88  217.98942 Heterosexual (straight)            Rarely
## 5883      NA         NA Heterosexual (straight)         Sometimes
## 5884  115.67  255.00441 Heterosexual (straight)         Sometimes
## 5885   77.11  169.99559 Heterosexual (straight)             Never
## 5886      NA         NA          Some other way            Always
## 5887   44.45   97.99383          Some other way  Most of the time
## 5888   63.50  139.99118 Heterosexual (straight)  Most of the time
## 5889   56.25  124.00794 Heterosexual (straight)            Always
## 5890   72.12  158.99471 Heterosexual (straight)  Most of the time
## 5891      NA         NA Heterosexual (straight)  Most of the time
## 5892   71.22  157.01058          Some other way            Always
## 5893  104.33  230.00441          Some other way            Always
## 5894   58.97  130.00441          Some other way         Sometimes
## 5895   99.79  219.99559                Not sure  Most of the time
## 5896   52.16  114.99118 Heterosexual (straight)         Sometimes
## 5897  138.80  305.99647 Heterosexual (straight)            Always
## 5898   52.16  114.99118 Heterosexual (straight)  Most of the time
## 5899      NA         NA Heterosexual (straight)             Never
## 5900   61.24  135.00882          Gay or lesbian         Sometimes
## 5901   56.70  125.00000 Heterosexual (straight)         Sometimes
## 5902   77.11  169.99559 Heterosexual (straight)         Sometimes
## 5903   60.78  133.99471 Heterosexual (straight)         Sometimes
## 5904   76.20  167.98942 Heterosexual (straight)         Sometimes
## 5905   64.86  142.98942 Heterosexual (straight)  Most of the time
## 5906   63.50  139.99118 Heterosexual (straight)             Never
## 5907   65.32  144.00353                Not sure  Most of the time
## 5908   61.24  135.00882 Heterosexual (straight)            Rarely
## 5909   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5910   74.84  164.99118 Heterosexual (straight)            Rarely
## 5911   58.97  130.00441                Bisexual         Sometimes
## 5912   58.97  130.00441 Heterosexual (straight)            Always
## 5913   48.08  105.99647 Heterosexual (straight)         Sometimes
## 5914   61.24  135.00882                Bisexual  Most of the time
## 5915      NA         NA Heterosexual (straight)            Always
## 5916   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5917   79.38  175.00000                Bisexual         Sometimes
## 5918   44.45   97.99383          Gay or lesbian            Always
## 5919   62.60  138.00705 Heterosexual (straight)            Rarely
## 5920  104.33  230.00441 Heterosexual (straight)             Never
## 5921   67.59  149.00794 Heterosexual (straight)         Sometimes
## 5922   62.60  138.00705 Heterosexual (straight)            Always
## 5923      NA         NA Heterosexual (straight)             Never
## 5924   68.04  150.00000                Bisexual  Most of the time
## 5925   58.97  130.00441                Bisexual  Most of the time
## 5926   81.65  180.00441 Heterosexual (straight)         Sometimes
## 5927   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5928   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5929  154.68  341.00529 Heterosexual (straight)  Most of the time
## 5930   99.79  219.99559 Heterosexual (straight)         Sometimes
## 5931  100.70  222.00176                Not sure         Sometimes
## 5932   57.15  125.99206 Heterosexual (straight)  Most of the time
## 5933   92.99  205.00441                Not sure         Sometimes
## 5934   81.65  180.00441 Heterosexual (straight)            Rarely
## 5935   95.26  210.00882                Bisexual            Always
## 5936   65.77  144.99559 Heterosexual (straight)  Most of the time
## 5937   86.18  189.99118 Heterosexual (straight)  Most of the time
## 5938   63.50  139.99118 Heterosexual (straight)            Always
## 5939  104.33  230.00441 Heterosexual (straight)  Most of the time
## 5940   81.65  180.00441 Heterosexual (straight)            Always
## 5941   97.98  216.00529                Bisexual         Sometimes
## 5942  101.61  224.00794                Not sure             Never
## 5943   90.72  200.00000          Some other way  Most of the time
## 5944   63.96  141.00529 Heterosexual (straight)  Most of the time
## 5945   63.50  139.99118                Not sure            Always
## 5946   38.56   85.00882 Heterosexual (straight)            Rarely
## 5947   77.11  169.99559                Bisexual         Sometimes
## 5948   69.40  152.99824 Heterosexual (straight)            Rarely
## 5949   64.86  142.98942 Heterosexual (straight)            Rarely
## 5950   86.18  189.99118 Heterosexual (straight)            Rarely
## 5951   81.65  180.00441 Heterosexual (straight)  Most of the time
## 5952   71.22  157.01058 Heterosexual (straight)  Most of the time
## 5953   61.24  135.00882 Heterosexual (straight)             Never
## 5954   74.84  164.99118 Heterosexual (straight)         Sometimes
## 5955   90.72  200.00000 Heterosexual (straight)            Rarely
## 5956   49.90  110.00882 Heterosexual (straight)            Rarely
## 5957   61.24  135.00882 Heterosexual (straight)  Most of the time
## 5958   55.79  122.99383                Bisexual            Rarely
## 5959   55.79  122.99383                Not sure  Most of the time
## 5960   72.58  160.00882 Heterosexual (straight)  Most of the time
## 5961   97.98  216.00529 Heterosexual (straight)         Sometimes
## 5962   49.90  110.00882                Bisexual         Sometimes
## 5963   54.43  119.99559 Heterosexual (straight)  Most of the time
## 5964   68.04  150.00000          Some other way  Most of the time
## 5965   95.26  210.00882 Heterosexual (straight)            Rarely
## 5966   63.50  139.99118                Bisexual            Always
## 5967   73.03  161.00088 Heterosexual (straight)            Rarely
## 5968   72.58  160.00882 Heterosexual (straight)         Sometimes
## 5969   76.66  169.00353                Bisexual  Most of the time
## 5970   65.77  144.99559                Bisexual            Rarely
## 5971   63.50  139.99118 Heterosexual (straight)  Most of the time
## 5972      NA         NA Heterosexual (straight)         Sometimes
## 5973   47.63  105.00441                Not sure         Sometimes
## 5974      NA         NA          Gay or lesbian            Rarely
## 5975   68.95  152.00617 Heterosexual (straight)            Rarely
## 5976      NA         NA Heterosexual (straight)            Rarely
## 5977   53.07  116.99735 Heterosexual (straight)            Rarely
## 5978   63.50  139.99118                Bisexual         Sometimes
## 5979   70.76  155.99647 Heterosexual (straight)  Most of the time
## 5980  128.37  283.00265 Heterosexual (straight)         Sometimes
## 5981   81.65  180.00441          Gay or lesbian  Most of the time
## 5982   86.18  189.99118 Heterosexual (straight)            Always
## 5983   58.97  130.00441 Heterosexual (straight)  Most of the time
## 5984   81.19  178.99030 Heterosexual (straight)             Never
## 5985   58.97  130.00441 Heterosexual (straight)         Sometimes
## 5986   47.17  103.99030 Heterosexual (straight)  Most of the time
## 5987   58.06  127.99824                Bisexual  Most of the time
## 5988   56.70  125.00000                Not sure         Sometimes
## 5989   65.77  144.99559 Heterosexual (straight)         Sometimes
## 5990   45.36  100.00000 Heterosexual (straight)         Sometimes
## 5991   97.52  214.99118 Heterosexual (straight)            Rarely
## 5992   86.18  189.99118 Heterosexual (straight)         Sometimes
## 5993   49.44  108.99471                Bisexual            Always
## 5994      NA         NA                Bisexual         Sometimes
## 5995   72.58  160.00882 Heterosexual (straight)             Never
## 5996   97.52  214.99118 Heterosexual (straight)  Most of the time
## 5997   55.79  122.99383 Heterosexual (straight)  Most of the time
## 5998   83.92  185.00882 Heterosexual (straight)             Never
## 5999   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6000   79.38  175.00000 Heterosexual (straight)             Never
## 6001   72.58  160.00882 Heterosexual (straight)              <NA>
## 6002   59.88  132.01058                Bisexual         Sometimes
## 6003   56.70  125.00000                Bisexual            Always
## 6004   74.39  163.99912 Heterosexual (straight)             Never
## 6005   60.78  133.99471 Heterosexual (straight)            Rarely
## 6006   58.97  130.00441                Bisexual         Sometimes
## 6007   63.50  139.99118 Heterosexual (straight)            Rarely
## 6008   46.27  102.00617 Heterosexual (straight)         Sometimes
## 6009   86.18  189.99118 Heterosexual (straight)            Rarely
## 6010   45.36  100.00000 Heterosexual (straight)            Rarely
## 6011   68.04  150.00000          Some other way  Most of the time
## 6012   77.11  169.99559 Heterosexual (straight)            Rarely
## 6013   56.70  125.00000 Heterosexual (straight)            Always
## 6014   54.89  121.00970 Heterosexual (straight)            Rarely
## 6015   76.20  167.98942 Heterosexual (straight)            Rarely
## 6016  127.01  280.00441 Heterosexual (straight)         Sometimes
## 6017      NA         NA Heterosexual (straight)  Most of the time
## 6018  100.70  222.00176          Some other way            Always
## 6019   86.18  189.99118 Heterosexual (straight)             Never
## 6020   67.59  149.00794 Heterosexual (straight)            Always
## 6021   92.99  205.00441 Heterosexual (straight)             Never
## 6022   99.79  219.99559 Heterosexual (straight)             Never
## 6023   92.99  205.00441 Heterosexual (straight)            Rarely
## 6024   63.05  138.99912          Some other way             Never
## 6025   54.43  119.99559                Bisexual         Sometimes
## 6026      NA         NA Heterosexual (straight)              <NA>
## 6027   68.04  150.00000                Bisexual             Never
## 6028   69.85  153.99030 Heterosexual (straight)            Rarely
## 6029   58.97  130.00441 Heterosexual (straight)            Always
## 6030   88.91  196.00970 Heterosexual (straight)             Never
## 6031   99.34  219.00353 Heterosexual (straight)         Sometimes
## 6032   86.18  189.99118 Heterosexual (straight)             Never
## 6033   80.29  177.00617 Heterosexual (straight)         Sometimes
## 6034   52.16  114.99118          Gay or lesbian  Most of the time
## 6035   49.90  110.00882 Heterosexual (straight)  Most of the time
## 6036   61.24  135.00882 Heterosexual (straight)            Rarely
## 6037  102.51  225.99206 Heterosexual (straight)         Sometimes
## 6038   90.72  200.00000 Heterosexual (straight)            Always
## 6039   54.43  119.99559                Bisexual         Sometimes
## 6040   51.71  113.99912 Heterosexual (straight)            Rarely
## 6041   88.91  196.00970 Heterosexual (straight)         Sometimes
## 6042   86.18  189.99118 Heterosexual (straight)            Rarely
## 6043  112.49  247.99383 Heterosexual (straight)            Rarely
## 6044   99.79  219.99559 Heterosexual (straight)            Rarely
## 6045   70.76  155.99647                Bisexual  Most of the time
## 6046   60.33  133.00265 Heterosexual (straight)            Rarely
## 6047   68.04  150.00000 Heterosexual (straight)             Never
## 6048   56.70  125.00000                Bisexual         Sometimes
## 6049   84.82  186.99295 Heterosexual (straight)            Rarely
## 6050   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6051   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6052   58.97  130.00441 Heterosexual (straight)              <NA>
## 6053   58.97  130.00441 Heterosexual (straight)            Always
## 6054  104.33  230.00441                Bisexual  Most of the time
## 6055   57.61  127.00617                Bisexual  Most of the time
## 6056      NA         NA Heterosexual (straight)             Never
## 6057   63.50  139.99118          Gay or lesbian  Most of the time
## 6058   69.40  152.99824 Heterosexual (straight)            Rarely
## 6059  161.48  355.99647 Heterosexual (straight)            Rarely
## 6060   91.17  200.99206                Bisexual  Most of the time
## 6061   59.88  132.01058 Heterosexual (straight)         Sometimes
## 6062   90.72  200.00000 Heterosexual (straight)            Rarely
## 6063   68.04  150.00000 Heterosexual (straight)             Never
## 6064   69.40  152.99824 Heterosexual (straight)  Most of the time
## 6065  102.51  225.99206 Heterosexual (straight)  Most of the time
## 6066   43.09   94.99559 Heterosexual (straight)            Rarely
## 6067   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6068   60.33  133.00265                Not sure  Most of the time
## 6069      NA         NA Heterosexual (straight)            Rarely
## 6070   54.43  119.99559 Heterosexual (straight)             Never
## 6071      NA         NA Heterosexual (straight)             Never
## 6072   54.89  121.00970 Heterosexual (straight)         Sometimes
## 6073   54.43  119.99559 Heterosexual (straight)            Rarely
## 6074   58.97  130.00441 Heterosexual (straight)  Most of the time
## 6075   95.26  210.00882 Heterosexual (straight)            Rarely
## 6076   51.26  113.00705 Heterosexual (straight)  Most of the time
## 6077   80.74  177.99824 Heterosexual (straight)             Never
## 6078   57.15  125.99206 Heterosexual (straight)             Never
## 6079   58.97  130.00441 Heterosexual (straight)             Never
## 6080   74.84  164.99118 Heterosexual (straight)  Most of the time
## 6081   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6082   60.33  133.00265          Gay or lesbian  Most of the time
## 6083   49.90  110.00882 Heterosexual (straight)            Rarely
## 6084      NA         NA                Not sure  Most of the time
## 6085  124.74  275.00000 Heterosexual (straight)            Rarely
## 6086  106.60  235.00882 Heterosexual (straight)              <NA>
## 6087   72.58  160.00882 Heterosexual (straight)              <NA>
## 6088   68.04  150.00000 Heterosexual (straight)            Rarely
## 6089   62.60  138.00705 Heterosexual (straight)         Sometimes
## 6090   76.66  169.00353 Heterosexual (straight)             Never
## 6091      NA         NA                Bisexual  Most of the time
## 6092   63.50  139.99118                Not sure            Always
## 6093   81.65  180.00441 Heterosexual (straight)            Rarely
## 6094   49.90  110.00882                Not sure            Always
## 6095   61.24  135.00882 Heterosexual (straight)            Always
## 6096   79.83  175.99206                Bisexual  Most of the time
## 6097   87.54  192.98942 Heterosexual (straight)             Never
## 6098  116.12  255.99647 Heterosexual (straight)            Always
## 6099   49.44  108.99471                Bisexual             Never
## 6100   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6101      NA         NA Heterosexual (straight)             Never
## 6102   54.43  119.99559                Bisexual            Always
## 6103      NA         NA                Not sure  Most of the time
## 6104   97.07  213.99912 Heterosexual (straight)         Sometimes
## 6105   81.65  180.00441 Heterosexual (straight)            Rarely
## 6106   54.43  119.99559                Bisexual              <NA>
## 6107   62.60  138.00705 Heterosexual (straight)  Most of the time
## 6108   68.95  152.00617 Heterosexual (straight)         Sometimes
## 6109   49.44  108.99471 Heterosexual (straight)         Sometimes
## 6110   60.33  133.00265                Bisexual         Sometimes
## 6111   72.58  160.00882                Not sure            Always
## 6112   68.95  152.00617 Heterosexual (straight)              <NA>
## 6113   68.04  150.00000 Heterosexual (straight)         Sometimes
## 6114   45.81  100.99206 Heterosexual (straight)         Sometimes
## 6115   93.44  205.99647          Gay or lesbian         Sometimes
## 6116   57.15  125.99206 Heterosexual (straight)             Never
## 6117   61.24  135.00882                Bisexual            Rarely
## 6118   68.04  150.00000 Heterosexual (straight)             Never
## 6119   70.31  155.00441 Heterosexual (straight)            Rarely
## 6120   77.11  169.99559 Heterosexual (straight)             Never
## 6121      NA         NA                Bisexual  Most of the time
## 6122   58.97  130.00441 Heterosexual (straight)            Rarely
## 6123   59.88  132.01058                Bisexual            Always
## 6124   76.20  167.98942 Heterosexual (straight)              <NA>
## 6125   83.92  185.00882 Heterosexual (straight)             Never
## 6126   56.70  125.00000 Heterosexual (straight)              <NA>
## 6127   61.24  135.00882 Heterosexual (straight)             Never
## 6128  111.13  244.99559 Heterosexual (straight)             Never
## 6129   97.52  214.99118 Heterosexual (straight)             Never
## 6130   63.50  139.99118 Heterosexual (straight)  Most of the time
## 6131  102.06  225.00000 Heterosexual (straight)            Rarely
## 6132   90.72  200.00000 Heterosexual (straight)         Sometimes
## 6133      NA         NA                Bisexual             Never
## 6134   52.16  114.99118 Heterosexual (straight)            Rarely
## 6135   45.36  100.00000 Heterosexual (straight)            Always
## 6136   58.97  130.00441 Heterosexual (straight)             Never
## 6137      NA         NA          Gay or lesbian             Never
## 6138   53.52  117.98942 Heterosexual (straight)  Most of the time
## 6139   68.04  150.00000 Heterosexual (straight)              <NA>
## 6140   61.24  135.00882 Heterosexual (straight)         Sometimes
## 6141      NA         NA Heterosexual (straight)             Never
## 6142   54.43  119.99559 Heterosexual (straight)            Rarely
## 6143   80.74  177.99824 Heterosexual (straight)             Never
## 6144   68.04  150.00000 Heterosexual (straight)            Always
## 6145      NA         NA Heterosexual (straight)             Never
## 6146   90.72  200.00000 Heterosexual (straight)              <NA>
## 6147   71.67  158.00265 Heterosexual (straight)            Rarely
## 6148   48.99  108.00265 Heterosexual (straight)  Most of the time
## 6149   61.24  135.00882 Heterosexual (straight)  Most of the time
## 6150   68.04  150.00000 Heterosexual (straight)         Sometimes
## 6151   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6152   76.66  169.00353 Heterosexual (straight)            Always
## 6153   68.04  150.00000 Heterosexual (straight)             Never
## 6154   72.58  160.00882 Heterosexual (straight)         Sometimes
## 6155   86.18  189.99118 Heterosexual (straight)  Most of the time
## 6156  107.05  236.00088 Heterosexual (straight)         Sometimes
## 6157   58.06  127.99824                Not sure            Always
## 6158   62.14  136.99295                Bisexual         Sometimes
## 6159      NA         NA                Bisexual  Most of the time
## 6160      NA         NA Heterosexual (straight)         Sometimes
## 6161   50.80  111.99295                Bisexual         Sometimes
## 6162   84.37  186.00088 Heterosexual (straight)             Never
## 6163   54.43  119.99559 Heterosexual (straight)              <NA>
## 6164   81.65  180.00441 Heterosexual (straight)         Sometimes
## 6165      NA         NA Heterosexual (straight)         Sometimes
## 6166   82.56  182.01058 Heterosexual (straight)             Never
## 6167   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6168   74.84  164.99118 Heterosexual (straight)            Rarely
## 6169   86.18  189.99118 Heterosexual (straight)             Never
## 6170   82.10  180.99647 Heterosexual (straight)         Sometimes
## 6171   55.34  122.00176                Not sure         Sometimes
## 6172  156.49  344.99559 Heterosexual (straight)         Sometimes
## 6173   58.06  127.99824                Bisexual            Always
## 6174   97.52  214.99118 Heterosexual (straight)              <NA>
## 6175  107.50  236.99295 Heterosexual (straight)            Rarely
## 6176   68.04  150.00000 Heterosexual (straight)         Sometimes
## 6177   54.43  119.99559          Some other way  Most of the time
## 6178   53.98  119.00353 Heterosexual (straight)            Always
## 6179   84.82  186.99295 Heterosexual (straight)            Rarely
## 6180   53.52  117.98942                Bisexual  Most of the time
## 6181   93.90  207.01058 Heterosexual (straight)  Most of the time
## 6182   60.33  133.00265                Bisexual         Sometimes
## 6183   44.91   99.00794          Some other way            Always
## 6184   63.50  139.99118 Heterosexual (straight)  Most of the time
## 6185   56.25  124.00794 Heterosexual (straight)  Most of the time
## 6186   97.52  214.99118 Heterosexual (straight)         Sometimes
## 6187   69.85  153.99030 Heterosexual (straight)         Sometimes
## 6188   52.62  116.00529 Heterosexual (straight)         Sometimes
## 6189   63.96  141.00529 Heterosexual (straight)            Rarely
## 6190   40.82   89.99118 Heterosexual (straight)         Sometimes
## 6191  113.40  250.00000 Heterosexual (straight)            Rarely
## 6192      NA         NA Heterosexual (straight)         Sometimes
## 6193   72.58  160.00882 Heterosexual (straight)         Sometimes
## 6194   83.92  185.00882 Heterosexual (straight)            Rarely
## 6195   66.68  147.00176                Not sure  Most of the time
## 6196   72.58  160.00882          Gay or lesbian              <NA>
## 6197   72.58  160.00882                Bisexual            Always
## 6198   71.22  157.01058 Heterosexual (straight)         Sometimes
## 6199   39.01   86.00088 Heterosexual (straight)  Most of the time
## 6200  113.40  250.00000 Heterosexual (straight)         Sometimes
## 6201   61.24  135.00882 Heterosexual (straight)         Sometimes
## 6202   58.97  130.00441 Heterosexual (straight)              <NA>
## 6203  127.01  280.00441 Heterosexual (straight)         Sometimes
## 6204   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6205   92.99  205.00441 Heterosexual (straight)             Never
## 6206  111.13  244.99559 Heterosexual (straight)             Never
## 6207   72.58  160.00882 Heterosexual (straight)  Most of the time
## 6208   56.70  125.00000 Heterosexual (straight)         Sometimes
## 6209   71.22  157.01058 Heterosexual (straight)            Rarely
## 6210  113.40  250.00000 Heterosexual (straight)            Rarely
## 6211   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6212      NA         NA                Bisexual            Always
## 6213   74.84  164.99118 Heterosexual (straight)            Rarely
## 6214   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6215   92.99  205.00441                Bisexual  Most of the time
## 6216  113.40  250.00000 Heterosexual (straight)              <NA>
## 6217   68.04  150.00000                Bisexual  Most of the time
## 6218   61.24  135.00882 Heterosexual (straight)             Never
## 6219      NA         NA                Not sure              <NA>
## 6220   81.19  178.99030 Heterosexual (straight)            Rarely
## 6221   94.80  208.99471 Heterosexual (straight)              <NA>
## 6222      NA         NA Heterosexual (straight)            Always
## 6223   73.48  161.99295 Heterosexual (straight)  Most of the time
## 6224   63.50  139.99118 Heterosexual (straight)            Rarely
## 6225  104.78  230.99647 Heterosexual (straight)  Most of the time
## 6226   57.15  125.99206 Heterosexual (straight)              <NA>
## 6227   94.35  208.00265          Gay or lesbian  Most of the time
## 6228   58.97  130.00441 Heterosexual (straight)             Never
## 6229   72.58  160.00882 Heterosexual (straight)         Sometimes
## 6230  104.33  230.00441 Heterosexual (straight)             Never
## 6231   58.97  130.00441 Heterosexual (straight)            Rarely
## 6232  121.11  266.99735 Heterosexual (straight)         Sometimes
## 6233   72.58  160.00882                Bisexual         Sometimes
## 6234   83.92  185.00882 Heterosexual (straight)              <NA>
## 6235   95.26  210.00882 Heterosexual (straight)              <NA>
## 6236   56.25  124.00794 Heterosexual (straight)              <NA>
## 6237   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6238   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6239   74.84  164.99118 Heterosexual (straight)              <NA>
## 6240   68.95  152.00617 Heterosexual (straight)            Rarely
## 6241      NA         NA Heterosexual (straight)             Never
## 6242   88.45  194.99559 Heterosexual (straight)         Sometimes
## 6243   49.90  110.00882 Heterosexual (straight)              <NA>
## 6244  113.40  250.00000                Bisexual            Always
## 6245   95.26  210.00882 Heterosexual (straight)             Never
## 6246   58.97  130.00441 Heterosexual (straight)            Rarely
## 6247   97.07  213.99912 Heterosexual (straight)             Never
## 6248   68.04  150.00000 Heterosexual (straight)             Never
## 6249      NA         NA Heterosexual (straight)             Never
## 6250   68.04  150.00000 Heterosexual (straight)            Rarely
## 6251   50.80  111.99295 Heterosexual (straight)             Never
## 6252   79.38  175.00000 Heterosexual (straight)            Rarely
## 6253      NA         NA Heterosexual (straight)         Sometimes
## 6254      NA         NA Heterosexual (straight)              <NA>
## 6255   61.24  135.00882 Heterosexual (straight)             Never
## 6256   81.65  180.00441 Heterosexual (straight)            Rarely
## 6257      NA         NA Heterosexual (straight)            Always
## 6258   49.90  110.00882 Heterosexual (straight)  Most of the time
## 6259   61.24  135.00882 Heterosexual (straight)             Never
## 6260      NA         NA Heterosexual (straight)         Sometimes
## 6261   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6262   59.88  132.01058 Heterosexual (straight)              <NA>
## 6263   55.79  122.99383 Heterosexual (straight)         Sometimes
## 6264      NA         NA Heterosexual (straight)             Never
## 6265      NA         NA                Bisexual            Always
## 6266   53.52  117.98942 Heterosexual (straight)  Most of the time
## 6267   56.70  125.00000 Heterosexual (straight)              <NA>
## 6268   77.11  169.99559 Heterosexual (straight)  Most of the time
## 6269   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6270   95.26  210.00882 Heterosexual (straight)            Rarely
## 6271   45.36  100.00000                Not sure         Sometimes
## 6272   54.43  119.99559 Heterosexual (straight)             Never
## 6273      NA         NA Heterosexual (straight)  Most of the time
## 6274      NA         NA Heterosexual (straight)             Never
## 6275      NA         NA Heterosexual (straight)         Sometimes
## 6276   66.68  147.00176 Heterosexual (straight)            Always
## 6277      NA         NA Heterosexual (straight)         Sometimes
## 6278   58.97  130.00441          Some other way         Sometimes
## 6279   68.04  150.00000 Heterosexual (straight)         Sometimes
## 6280   69.85  153.99030 Heterosexual (straight)            Rarely
## 6281   99.79  219.99559 Heterosexual (straight)            Rarely
## 6282   54.43  119.99559 Heterosexual (straight)              <NA>
## 6283   70.31  155.00441          Gay or lesbian              <NA>
## 6284  113.40  250.00000 Heterosexual (straight)              <NA>
## 6285   77.11  169.99559 Heterosexual (straight)         Sometimes
## 6286   58.97  130.00441          Gay or lesbian             Never
## 6287   88.45  194.99559 Heterosexual (straight)         Sometimes
## 6288   88.45  194.99559 Heterosexual (straight)             Never
## 6289   72.58  160.00882 Heterosexual (straight)             Never
## 6290   77.11  169.99559 Heterosexual (straight)            Rarely
## 6291   61.24  135.00882 Heterosexual (straight)            Rarely
## 6292   81.65  180.00441                Bisexual         Sometimes
## 6293   98.43  216.99735 Heterosexual (straight)         Sometimes
## 6294      NA         NA Heterosexual (straight)            Rarely
## 6295   68.04  150.00000                Not sure         Sometimes
## 6296   64.41  141.99735 Heterosexual (straight)              <NA>
## 6297   90.72  200.00000 Heterosexual (straight)             Never
## 6298   86.18  189.99118 Heterosexual (straight)             Never
## 6299   71.67  158.00265 Heterosexual (straight)  Most of the time
## 6300      NA         NA Heterosexual (straight)             Never
## 6301   49.90  110.00882 Heterosexual (straight)             Never
## 6302   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6303      NA         NA Heterosexual (straight)             Never
## 6304      NA         NA Heterosexual (straight)             Never
## 6305   50.80  111.99295 Heterosexual (straight)            Rarely
## 6306   65.77  144.99559 Heterosexual (straight)         Sometimes
## 6307   81.19  178.99030                Bisexual         Sometimes
## 6308   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6309   81.65  180.00441                Bisexual  Most of the time
## 6310  117.94  260.00882 Heterosexual (straight)  Most of the time
## 6311   52.16  114.99118 Heterosexual (straight)  Most of the time
## 6312   88.45  194.99559 Heterosexual (straight)            Rarely
## 6313   69.40  152.99824          Gay or lesbian         Sometimes
## 6314   53.52  117.98942                Bisexual         Sometimes
## 6315   53.98  119.00353 Heterosexual (straight)            Rarely
## 6316      NA         NA Heterosexual (straight)  Most of the time
## 6317   90.72  200.00000 Heterosexual (straight)            Always
## 6318      NA         NA Heterosexual (straight)             Never
## 6319      NA         NA                Bisexual  Most of the time
## 6320   58.97  130.00441 Heterosexual (straight)            Rarely
## 6321   46.27  102.00617 Heterosexual (straight)             Never
## 6322   53.52  117.98942 Heterosexual (straight)         Sometimes
## 6323   85.28  188.00705 Heterosexual (straight)            Always
## 6324   54.43  119.99559                Bisexual             Never
## 6325  111.59  246.00970 Heterosexual (straight)            Rarely
## 6326   83.92  185.00882                Not sure         Sometimes
## 6327   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6328   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6329   95.26  210.00882 Heterosexual (straight)         Sometimes
## 6330   52.16  114.99118 Heterosexual (straight)            Always
## 6331  106.60  235.00882 Heterosexual (straight)  Most of the time
## 6332   53.52  117.98942 Heterosexual (straight)         Sometimes
## 6333      NA         NA          Gay or lesbian  Most of the time
## 6334   66.23  146.00970 Heterosexual (straight)            Rarely
## 6335   88.45  194.99559 Heterosexual (straight)             Never
## 6336   68.04  150.00000 Heterosexual (straight)             Never
## 6337      NA         NA                Bisexual         Sometimes
## 6338   88.45  194.99559 Heterosexual (straight)            Always
## 6339   61.24  135.00882 Heterosexual (straight)             Never
## 6340   65.77  144.99559 Heterosexual (straight)         Sometimes
## 6341      NA         NA Heterosexual (straight)  Most of the time
## 6342   88.45  194.99559 Heterosexual (straight)             Never
## 6343   86.18  189.99118          Gay or lesbian            Always
## 6344      NA         NA                Not sure         Sometimes
## 6345   92.99  205.00441                Not sure  Most of the time
## 6346   67.13  147.99383          Some other way            Always
## 6347   50.80  111.99295 Heterosexual (straight)             Never
## 6348   49.90  110.00882 Heterosexual (straight)            Always
## 6349   45.36  100.00000 Heterosexual (straight)         Sometimes
## 6350   63.96  141.00529 Heterosexual (straight)            Rarely
## 6351   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6352   54.43  119.99559 Heterosexual (straight)             Never
## 6353   38.56   85.00882                Bisexual         Sometimes
## 6354   61.24  135.00882 Heterosexual (straight)  Most of the time
## 6355   52.62  116.00529 Heterosexual (straight)  Most of the time
## 6356   81.65  180.00441 Heterosexual (straight)            Always
## 6357   61.69  136.00088 Heterosexual (straight)  Most of the time
## 6358   69.40  152.99824 Heterosexual (straight)  Most of the time
## 6359  158.76  350.00000 Heterosexual (straight)         Sometimes
## 6360   53.07  116.99735 Heterosexual (straight)            Rarely
## 6361   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6362   61.24  135.00882                Bisexual            Rarely
## 6363   51.26  113.00705 Heterosexual (straight)         Sometimes
## 6364   56.70  125.00000                Bisexual             Never
## 6365   95.26  210.00882                Bisexual  Most of the time
## 6366   70.31  155.00441                Bisexual  Most of the time
## 6367      NA         NA                Bisexual  Most of the time
## 6368   90.72  200.00000 Heterosexual (straight)         Sometimes
## 6369   56.70  125.00000 Heterosexual (straight)  Most of the time
## 6370   70.31  155.00441 Heterosexual (straight)            Rarely
## 6371   45.81  100.99206                Bisexual             Never
## 6372   99.79  219.99559 Heterosexual (straight)            Rarely
## 6373   47.63  105.00441 Heterosexual (straight)  Most of the time
## 6374   70.31  155.00441 Heterosexual (straight)  Most of the time
## 6375   50.35  111.00088                Bisexual            Rarely
## 6376   61.24  135.00882 Heterosexual (straight)             Never
## 6377   72.58  160.00882 Heterosexual (straight)            Rarely
## 6378   53.52  117.98942          Gay or lesbian  Most of the time
## 6379  127.01  280.00441 Heterosexual (straight)  Most of the time
## 6380   56.70  125.00000 Heterosexual (straight)         Sometimes
## 6381  111.13  244.99559 Heterosexual (straight)  Most of the time
## 6382   88.45  194.99559                Bisexual         Sometimes
## 6383  104.33  230.00441 Heterosexual (straight)             Never
## 6384   43.09   94.99559 Heterosexual (straight)             Never
## 6385   49.90  110.00882                Not sure  Most of the time
## 6386   53.52  117.98942                Not sure            Rarely
## 6387   99.79  219.99559 Heterosexual (straight)         Sometimes
## 6388   75.75  166.99735 Heterosexual (straight)             Never
## 6389   79.83  175.99206 Heterosexual (straight)         Sometimes
## 6390   74.84  164.99118 Heterosexual (straight)             Never
## 6391   57.61  127.00617                Not sure            Rarely
## 6392   58.51  128.99030 Heterosexual (straight)              <NA>
## 6393   71.22  157.01058 Heterosexual (straight)             Never
## 6394   64.41  141.99735 Heterosexual (straight)  Most of the time
## 6395   50.80  111.99295                Bisexual            Always
## 6396   54.43  119.99559                Bisexual             Never
## 6397   49.90  110.00882 Heterosexual (straight)  Most of the time
## 6398  113.40  250.00000 Heterosexual (straight)            Rarely
## 6399   51.26  113.00705          Some other way            Always
## 6400   60.78  133.99471                Bisexual  Most of the time
## 6401   45.36  100.00000          Some other way  Most of the time
## 6402   62.60  138.00705 Heterosexual (straight)            Rarely
## 6403   58.97  130.00441                Not sure  Most of the time
## 6404  136.08  300.00000 Heterosexual (straight)             Never
## 6405   43.09   94.99559 Heterosexual (straight)             Never
## 6406   57.15  125.99206 Heterosexual (straight)  Most of the time
## 6407   72.58  160.00882 Heterosexual (straight)            Rarely
## 6408   42.18   92.98942                Bisexual            Always
## 6409   56.25  124.00794 Heterosexual (straight)             Never
## 6410  104.33  230.00441                Not sure            Rarely
## 6411   57.61  127.00617 Heterosexual (straight)            Rarely
## 6412   71.67  158.00265 Heterosexual (straight)         Sometimes
## 6413   50.80  111.99295 Heterosexual (straight)            Always
## 6414   79.38  175.00000 Heterosexual (straight)  Most of the time
## 6415   72.58  160.00882 Heterosexual (straight)             Never
## 6416  118.84  261.99295 Heterosexual (straight)              <NA>
## 6417   61.24  135.00882                Not sure            Rarely
## 6418   65.77  144.99559 Heterosexual (straight)         Sometimes
## 6419   92.99  205.00441 Heterosexual (straight)            Rarely
## 6420   57.15  125.99206 Heterosexual (straight)         Sometimes
## 6421      NA         NA Heterosexual (straight)             Never
## 6422   99.79  219.99559 Heterosexual (straight)            Always
## 6423   61.24  135.00882 Heterosexual (straight)            Always
## 6424   74.84  164.99118 Heterosexual (straight)  Most of the time
## 6425   65.77  144.99559 Heterosexual (straight)            Rarely
## 6426      NA         NA Heterosexual (straight)              <NA>
## 6427  108.86  239.99118 Heterosexual (straight)         Sometimes
## 6428   55.79  122.99383 Heterosexual (straight)             Never
## 6429   77.11  169.99559 Heterosexual (straight)         Sometimes
## 6430   59.88  132.01058 Heterosexual (straight)            Rarely
## 6431   99.79  219.99559 Heterosexual (straight)             Never
## 6432      NA         NA Heterosexual (straight)             Never
## 6433   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6434      NA         NA                Not sure              <NA>
## 6435   69.85  153.99030 Heterosexual (straight)            Rarely
## 6436   90.72  200.00000 Heterosexual (straight)              <NA>
## 6437   58.97  130.00441 Heterosexual (straight)            Rarely
## 6438   71.67  158.00265 Heterosexual (straight)             Never
## 6439   99.34  219.00353 Heterosexual (straight)         Sometimes
## 6440   45.36  100.00000                Bisexual            Always
## 6441  149.69  330.00441 Heterosexual (straight)             Never
## 6442   90.72  200.00000          Gay or lesbian         Sometimes
## 6443   43.09   94.99559          Some other way  Most of the time
## 6444   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6445   95.26  210.00882 Heterosexual (straight)  Most of the time
## 6446   81.65  180.00441 Heterosexual (straight)             Never
## 6447   72.12  158.99471 Heterosexual (straight)  Most of the time
## 6448   95.26  210.00882 Heterosexual (straight)         Sometimes
## 6449   54.89  121.00970 Heterosexual (straight)         Sometimes
## 6450   68.04  150.00000 Heterosexual (straight)             Never
## 6451      NA         NA Heterosexual (straight)             Never
## 6452   74.84  164.99118 Heterosexual (straight)            Rarely
## 6453   93.90  207.01058 Heterosexual (straight)         Sometimes
## 6454  130.64  288.00705          Gay or lesbian  Most of the time
## 6455   90.72  200.00000 Heterosexual (straight)            Rarely
## 6456  103.42  227.99824 Heterosexual (straight)            Rarely
## 6457  117.94  260.00882 Heterosexual (straight)             Never
## 6458   77.11  169.99559 Heterosexual (straight)         Sometimes
## 6459   74.39  163.99912 Heterosexual (straight)              <NA>
## 6460   46.27  102.00617 Heterosexual (straight)  Most of the time
## 6461      NA         NA                Not sure  Most of the time
## 6462   68.04  150.00000                Bisexual         Sometimes
## 6463   61.69  136.00088                Not sure            Rarely
## 6464   50.80  111.99295          Some other way         Sometimes
## 6465   86.18  189.99118 Heterosexual (straight)            Rarely
## 6466   45.36  100.00000                Bisexual             Never
## 6467   86.18  189.99118 Heterosexual (straight)             Never
## 6468   76.20  167.98942 Heterosexual (straight)         Sometimes
## 6469   70.31  155.00441 Heterosexual (straight)              <NA>
## 6470   51.71  113.99912 Heterosexual (straight)  Most of the time
## 6471   68.95  152.00617                Not sure            Always
## 6472   77.11  169.99559                Bisexual  Most of the time
## 6473   58.97  130.00441 Heterosexual (straight)  Most of the time
## 6474   53.98  119.00353 Heterosexual (straight)         Sometimes
## 6475   89.36  197.00176 Heterosexual (straight)         Sometimes
## 6476      NA         NA          Some other way            Always
## 6477   74.84  164.99118                Bisexual            Always
## 6478   66.68  147.00176 Heterosexual (straight)            Rarely
## 6479   49.90  110.00882 Heterosexual (straight)            Always
## 6480   70.31  155.00441 Heterosexual (straight)            Rarely
## 6481   63.96  141.00529 Heterosexual (straight)            Rarely
## 6482   68.04  150.00000 Heterosexual (straight)             Never
## 6483   97.52  214.99118 Heterosexual (straight)             Never
## 6484   62.60  138.00705 Heterosexual (straight)             Never
## 6485   52.16  114.99118 Heterosexual (straight)            Rarely
## 6486   83.92  185.00882 Heterosexual (straight)         Sometimes
## 6487   83.92  185.00882 Heterosexual (straight)  Most of the time
## 6488   79.38  175.00000 Heterosexual (straight)         Sometimes
## 6489   60.33  133.00265 Heterosexual (straight)  Most of the time
## 6490   51.71  113.99912                Not sure            Always
## 6491   99.79  219.99559 Heterosexual (straight)         Sometimes
## 6492      NA         NA Heterosexual (straight)              <NA>
## 6493   72.58  160.00882          Gay or lesbian              <NA>
## 6494   56.70  125.00000 Heterosexual (straight)             Never
## 6495   87.54  192.98942          Some other way         Sometimes
## 6496   52.16  114.99118          Some other way  Most of the time
## 6497   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6498   62.60  138.00705 Heterosexual (straight)  Most of the time
## 6499   81.65  180.00441 Heterosexual (straight)             Never
## 6500   78.93  174.00794 Heterosexual (straight)            Rarely
## 6501   72.58  160.00882          Gay or lesbian            Rarely
## 6502   65.77  144.99559 Heterosexual (straight)             Never
## 6503   58.97  130.00441 Heterosexual (straight)  Most of the time
## 6504   68.49  150.99206 Heterosexual (straight)             Never
## 6505   39.01   86.00088 Heterosexual (straight)             Never
## 6506   73.94  163.00705 Heterosexual (straight)  Most of the time
## 6507   58.97  130.00441 Heterosexual (straight)             Never
## 6508      NA         NA Heterosexual (straight)         Sometimes
## 6509   46.72  102.99824 Heterosexual (straight)             Never
## 6510      NA         NA                Bisexual  Most of the time
## 6511   55.79  122.99383 Heterosexual (straight)             Never
## 6512   74.84  164.99118 Heterosexual (straight)             Never
## 6513   63.50  139.99118 Heterosexual (straight)             Never
## 6514   49.44  108.99471 Heterosexual (straight)            Always
## 6515   53.52  117.98942 Heterosexual (straight)            Rarely
## 6516   63.50  139.99118                Bisexual         Sometimes
## 6517   79.38  175.00000 Heterosexual (straight)             Never
## 6518   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6519   74.84  164.99118 Heterosexual (straight)            Rarely
## 6520   58.97  130.00441 Heterosexual (straight)            Always
## 6521   40.82   89.99118 Heterosexual (straight)            Rarely
## 6522   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6523   86.18  189.99118 Heterosexual (straight)            Rarely
## 6524   52.16  114.99118 Heterosexual (straight)            Rarely
## 6525   86.18  189.99118 Heterosexual (straight)            Always
## 6526      NA         NA                Bisexual             Never
## 6527   83.92  185.00882 Heterosexual (straight)             Never
## 6528   96.16  211.99295 Heterosexual (straight)             Never
## 6529   51.71  113.99912          Some other way  Most of the time
## 6530   68.04  150.00000 Heterosexual (straight)  Most of the time
## 6531   49.90  110.00882 Heterosexual (straight)            Rarely
## 6532   61.69  136.00088 Heterosexual (straight)             Never
## 6533   61.24  135.00882          Gay or lesbian            Always
## 6534   81.65  180.00441          Some other way         Sometimes
## 6535   57.15  125.99206          Gay or lesbian            Rarely
## 6536   49.90  110.00882 Heterosexual (straight)             Never
## 6537   51.71  113.99912 Heterosexual (straight)         Sometimes
## 6538   58.97  130.00441 Heterosexual (straight)            Rarely
## 6539   52.16  114.99118 Heterosexual (straight)  Most of the time
## 6540   72.58  160.00882 Heterosexual (straight)            Always
## 6541  113.40  250.00000          Some other way  Most of the time
## 6542  122.47  269.99559 Heterosexual (straight)             Never
## 6543   42.64   94.00353 Heterosexual (straight)            Rarely
## 6544   77.11  169.99559 Heterosexual (straight)         Sometimes
## 6545   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6546   72.58  160.00882 Heterosexual (straight)              <NA>
## 6547   83.01  183.00265 Heterosexual (straight)            Rarely
## 6548  102.06  225.00000 Heterosexual (straight)             Never
## 6549   72.58  160.00882 Heterosexual (straight)             Never
## 6550   81.65  180.00441 Heterosexual (straight)             Never
## 6551   63.50  139.99118 Heterosexual (straight)            Rarely
## 6552   55.34  122.00176 Heterosexual (straight)         Sometimes
## 6553   62.60  138.00705 Heterosexual (straight)  Most of the time
## 6554   74.84  164.99118 Heterosexual (straight)            Rarely
## 6555   49.90  110.00882 Heterosexual (straight)            Rarely
## 6556   54.43  119.99559 Heterosexual (straight)            Always
## 6557   54.43  119.99559 Heterosexual (straight)            Rarely
## 6558   68.04  150.00000 Heterosexual (straight)             Never
## 6559   40.82   89.99118 Heterosexual (straight)             Never
## 6560      NA         NA                Not sure         Sometimes
## 6561      NA         NA Heterosexual (straight)              <NA>
## 6562   86.18  189.99118 Heterosexual (straight)            Rarely
## 6563   59.88  132.01058 Heterosexual (straight)              <NA>
## 6564   81.65  180.00441 Heterosexual (straight)         Sometimes
## 6565   72.58  160.00882 Heterosexual (straight)              <NA>
## 6566   49.90  110.00882 Heterosexual (straight)  Most of the time
## 6567   95.26  210.00882 Heterosexual (straight)            Rarely
## 6568   50.35  111.00088                Not sure  Most of the time
## 6569   49.90  110.00882 Heterosexual (straight)             Never
## 6570      NA         NA Heterosexual (straight)            Rarely
## 6571   89.36  197.00176 Heterosexual (straight)  Most of the time
## 6572   83.01  183.00265 Heterosexual (straight)         Sometimes
## 6573   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6574   40.37   88.99912 Heterosexual (straight)         Sometimes
## 6575   56.70  125.00000 Heterosexual (straight)            Rarely
## 6576   71.67  158.00265 Heterosexual (straight)            Rarely
## 6577      NA         NA Heterosexual (straight)         Sometimes
## 6578   56.70  125.00000 Heterosexual (straight)            Rarely
## 6579   81.19  178.99030          Some other way            Always
## 6580   58.06  127.99824 Heterosexual (straight)            Rarely
## 6581      NA         NA Heterosexual (straight)             Never
## 6582   77.11  169.99559 Heterosexual (straight)  Most of the time
## 6583   59.88  132.01058 Heterosexual (straight)             Never
## 6584   74.84  164.99118 Heterosexual (straight)  Most of the time
## 6585   57.61  127.00617 Heterosexual (straight)         Sometimes
## 6586   82.10  180.99647 Heterosexual (straight)             Never
## 6587      NA         NA                Not sure              <NA>
## 6588   61.24  135.00882 Heterosexual (straight)             Never
## 6589      NA         NA Heterosexual (straight)              <NA>
## 6590   77.11  169.99559 Heterosexual (straight)            Rarely
## 6591   65.32  144.00353 Heterosexual (straight)  Most of the time
## 6592   57.15  125.99206                Bisexual              <NA>
## 6593   53.52  117.98942 Heterosexual (straight)         Sometimes
## 6594      NA         NA                Not sure              <NA>
## 6595   67.59  149.00794 Heterosexual (straight)         Sometimes
## 6596   58.97  130.00441 Heterosexual (straight)              <NA>
## 6597      NA         NA          Gay or lesbian            Always
## 6598  112.95  249.00794                Bisexual             Never
## 6599      NA         NA Heterosexual (straight)            Always
## 6600   74.39  163.99912                Not sure         Sometimes
## 6601   48.99  108.00265 Heterosexual (straight)            Rarely
## 6602   67.13  147.99383 Heterosexual (straight)            Rarely
## 6603      NA         NA Heterosexual (straight)            Rarely
## 6604   68.04  150.00000 Heterosexual (straight)             Never
## 6605      NA         NA                Bisexual  Most of the time
## 6606   41.73   91.99735                Bisexual             Never
## 6607   92.08  202.99824 Heterosexual (straight)            Rarely
## 6608   49.44  108.99471 Heterosexual (straight)            Always
## 6609  104.33  230.00441 Heterosexual (straight)         Sometimes
## 6610   74.84  164.99118          Some other way  Most of the time
## 6611   58.97  130.00441 Heterosexual (straight)             Never
## 6612   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6613   57.61  127.00617 Heterosexual (straight)            Rarely
## 6614   44.91   99.00794                Bisexual  Most of the time
## 6615   60.78  133.99471 Heterosexual (straight)             Never
## 6616   65.77  144.99559 Heterosexual (straight)             Never
## 6617   60.33  133.00265                Bisexual         Sometimes
## 6618   82.56  182.01058 Heterosexual (straight)            Rarely
## 6619   53.07  116.99735 Heterosexual (straight)            Always
## 6620   53.98  119.00353 Heterosexual (straight)         Sometimes
## 6621   99.34  219.00353                Bisexual            Rarely
## 6622   90.72  200.00000          Gay or lesbian            Always
## 6623   86.18  189.99118                Bisexual  Most of the time
## 6624   56.70  125.00000 Heterosexual (straight)            Rarely
## 6625      NA         NA Heterosexual (straight)             Never
## 6626      NA         NA Heterosexual (straight)  Most of the time
## 6627   95.26  210.00882 Heterosexual (straight)  Most of the time
## 6628   86.18  189.99118 Heterosexual (straight)            Always
## 6629   57.15  125.99206 Heterosexual (straight)         Sometimes
## 6630   79.38  175.00000                Not sure         Sometimes
## 6631   54.43  119.99559 Heterosexual (straight)             Never
## 6632   63.05  138.99912                Not sure            Rarely
## 6633   60.78  133.99471 Heterosexual (straight)         Sometimes
## 6634   54.43  119.99559 Heterosexual (straight)            Rarely
## 6635   52.16  114.99118 Heterosexual (straight)            Rarely
## 6636   63.96  141.00529 Heterosexual (straight)            Rarely
## 6637   63.50  139.99118 Heterosexual (straight)             Never
## 6638      NA         NA Heterosexual (straight)             Never
## 6639  176.90  389.99118                Not sure            Always
## 6640   87.09  191.99735 Heterosexual (straight)         Sometimes
## 6641   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6642   54.43  119.99559                Bisexual  Most of the time
## 6643   65.77  144.99559                Bisexual  Most of the time
## 6644   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6645   81.65  180.00441                Bisexual         Sometimes
## 6646   57.15  125.99206 Heterosexual (straight)         Sometimes
## 6647   77.11  169.99559 Heterosexual (straight)             Never
## 6648   63.50  139.99118 Heterosexual (straight)             Never
## 6649   54.43  119.99559 Heterosexual (straight)            Rarely
## 6650   60.78  133.99471 Heterosexual (straight)         Sometimes
## 6651   74.84  164.99118 Heterosexual (straight)         Sometimes
## 6652   57.61  127.00617 Heterosexual (straight)             Never
## 6653      NA         NA Heterosexual (straight)              <NA>
## 6654   58.06  127.99824 Heterosexual (straight)             Never
## 6655   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6656   54.43  119.99559          Some other way  Most of the time
## 6657      NA         NA Heterosexual (straight)            Always
## 6658   56.70  125.00000 Heterosexual (straight)         Sometimes
## 6659   92.99  205.00441 Heterosexual (straight)  Most of the time
## 6660   52.16  114.99118                Bisexual         Sometimes
## 6661      NA         NA                Not sure         Sometimes
## 6662   53.52  117.98942 Heterosexual (straight)            Rarely
## 6663   54.43  119.99559 Heterosexual (straight)             Never
## 6664   63.50  139.99118                Not sure  Most of the time
## 6665   72.58  160.00882                Bisexual         Sometimes
## 6666   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6667   90.72  200.00000 Heterosexual (straight)             Never
## 6668   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6669      NA         NA                Not sure         Sometimes
## 6670   49.90  110.00882          Gay or lesbian         Sometimes
## 6671   65.32  144.00353 Heterosexual (straight)              <NA>
## 6672   70.76  155.99647                Not sure         Sometimes
## 6673   85.73  188.99912 Heterosexual (straight)         Sometimes
## 6674   79.38  175.00000 Heterosexual (straight)             Never
## 6675   81.65  180.00441 Heterosexual (straight)  Most of the time
## 6676   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6677   40.82   89.99118 Heterosexual (straight)         Sometimes
## 6678  117.03  258.00265 Heterosexual (straight)              <NA>
## 6679   65.77  144.99559 Heterosexual (straight)  Most of the time
## 6680      NA         NA          Gay or lesbian         Sometimes
## 6681   84.37  186.00088 Heterosexual (straight)            Rarely
## 6682   53.98  119.00353 Heterosexual (straight)            Always
## 6683   57.61  127.00617 Heterosexual (straight)         Sometimes
## 6684   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6685      NA         NA Heterosexual (straight)            Always
## 6686   50.35  111.00088 Heterosexual (straight)  Most of the time
## 6687   90.72  200.00000          Gay or lesbian             Never
## 6688   52.16  114.99118 Heterosexual (straight)            Rarely
## 6689   88.45  194.99559 Heterosexual (straight)         Sometimes
## 6690   54.43  119.99559 Heterosexual (straight)            Always
## 6691   45.36  100.00000 Heterosexual (straight)  Most of the time
## 6692   74.39  163.99912 Heterosexual (straight)            Rarely
## 6693   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6694   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6695   60.33  133.00265          Some other way            Rarely
## 6696   74.84  164.99118 Heterosexual (straight)  Most of the time
## 6697   79.38  175.00000 Heterosexual (straight)            Rarely
## 6698   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6699      NA         NA Heterosexual (straight)  Most of the time
## 6700      NA         NA Heterosexual (straight)            Always
## 6701   53.52  117.98942 Heterosexual (straight)  Most of the time
## 6702   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6703  108.86  239.99118 Heterosexual (straight)         Sometimes
## 6704   68.04  150.00000 Heterosexual (straight)             Never
## 6705   77.11  169.99559 Heterosexual (straight)         Sometimes
## 6706   46.72  102.99824 Heterosexual (straight)            Always
## 6707   42.64   94.00353                Bisexual            Always
## 6708   51.71  113.99912          Gay or lesbian             Never
## 6709      NA         NA                Not sure              <NA>
## 6710  111.13  244.99559 Heterosexual (straight)             Never
## 6711   74.84  164.99118 Heterosexual (straight)         Sometimes
## 6712   60.78  133.99471 Heterosexual (straight)         Sometimes
## 6713   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6714   81.65  180.00441          Gay or lesbian  Most of the time
## 6715   61.24  135.00882                Bisexual  Most of the time
## 6716   83.92  185.00882 Heterosexual (straight)            Rarely
## 6717   68.04  150.00000 Heterosexual (straight)             Never
## 6718   58.97  130.00441 Heterosexual (straight)            Rarely
## 6719   66.68  147.00176 Heterosexual (straight)            Rarely
## 6720   70.31  155.00441                Bisexual            Always
## 6721  108.86  239.99118 Heterosexual (straight)            Rarely
## 6722      NA         NA                Bisexual         Sometimes
## 6723   93.44  205.99647 Heterosexual (straight)            Rarely
## 6724   70.76  155.99647                Bisexual         Sometimes
## 6725  136.08  300.00000          Gay or lesbian  Most of the time
## 6726   72.12  158.99471 Heterosexual (straight)         Sometimes
## 6727   58.97  130.00441                Bisexual            Rarely
## 6728   58.97  130.00441                Bisexual            Always
## 6729   81.65  180.00441 Heterosexual (straight)  Most of the time
## 6730   54.43  119.99559          Gay or lesbian            Always
## 6731      NA         NA Heterosexual (straight)         Sometimes
## 6732  138.35  305.00441          Some other way            Always
## 6733   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6734      NA         NA Heterosexual (straight)         Sometimes
## 6735   48.99  108.00265 Heterosexual (straight)            Rarely
## 6736   70.31  155.00441 Heterosexual (straight)             Never
## 6737  122.47  269.99559 Heterosexual (straight)            Rarely
## 6738   56.70  125.00000 Heterosexual (straight)            Rarely
## 6739   72.58  160.00882 Heterosexual (straight)         Sometimes
## 6740   47.17  103.99030 Heterosexual (straight)            Rarely
## 6741   50.35  111.00088          Some other way         Sometimes
## 6742   58.06  127.99824          Gay or lesbian             Never
## 6743   90.72  200.00000 Heterosexual (straight)            Rarely
## 6744   43.09   94.99559 Heterosexual (straight)         Sometimes
## 6745   61.24  135.00882 Heterosexual (straight)  Most of the time
## 6746   74.84  164.99118 Heterosexual (straight)  Most of the time
## 6747   49.90  110.00882 Heterosexual (straight)         Sometimes
## 6748   58.97  130.00441 Heterosexual (straight)  Most of the time
## 6749   63.50  139.99118 Heterosexual (straight)            Rarely
## 6750   62.60  138.00705 Heterosexual (straight)            Rarely
## 6751   49.44  108.99471 Heterosexual (straight)  Most of the time
## 6752   83.01  183.00265 Heterosexual (straight)             Never
## 6753  113.40  250.00000 Heterosexual (straight)            Always
## 6754      NA         NA Heterosexual (straight)  Most of the time
## 6755   65.77  144.99559 Heterosexual (straight)            Rarely
## 6756   52.16  114.99118 Heterosexual (straight)            Rarely
## 6757   62.14  136.99295                Not sure  Most of the time
## 6758      NA         NA Heterosexual (straight)             Never
## 6759   39.46   86.99295                Bisexual  Most of the time
## 6760   61.24  135.00882 Heterosexual (straight)             Never
## 6761   54.43  119.99559 Heterosexual (straight)            Rarely
## 6762   43.09   94.99559 Heterosexual (straight)             Never
## 6763   59.88  132.01058 Heterosexual (straight)         Sometimes
## 6764   81.65  180.00441 Heterosexual (straight)             Never
## 6765   95.26  210.00882                Bisexual            Rarely
## 6766   70.31  155.00441 Heterosexual (straight)  Most of the time
## 6767   63.50  139.99118                Not sure             Never
## 6768   48.08  105.99647 Heterosexual (straight)             Never
## 6769   61.24  135.00882                Not sure             Never
## 6770   61.24  135.00882 Heterosexual (straight)            Rarely
## 6771   44.45   97.99383 Heterosexual (straight)  Most of the time
## 6772   73.48  161.99295 Heterosexual (straight)  Most of the time
## 6773   64.41  141.99735 Heterosexual (straight)            Always
## 6774      NA         NA Heterosexual (straight)         Sometimes
## 6775   62.60  138.00705 Heterosexual (straight)             Never
## 6776   62.60  138.00705 Heterosexual (straight)         Sometimes
## 6777      NA         NA Heterosexual (straight)         Sometimes
## 6778   48.99  108.00265                Not sure  Most of the time
## 6779   62.60  138.00705 Heterosexual (straight)            Rarely
## 6780   53.98  119.00353 Heterosexual (straight)             Never
## 6781   63.50  139.99118 Heterosexual (straight)            Rarely
## 6782   48.08  105.99647 Heterosexual (straight)         Sometimes
## 6783   47.63  105.00441 Heterosexual (straight)  Most of the time
## 6784  104.33  230.00441 Heterosexual (straight)         Sometimes
## 6785   83.92  185.00882 Heterosexual (straight)             Never
## 6786   54.43  119.99559                Bisexual            Always
## 6787   51.71  113.99912 Heterosexual (straight)            Rarely
## 6788   68.04  150.00000 Heterosexual (straight)  Most of the time
## 6789   83.92  185.00882                Bisexual  Most of the time
## 6790   64.41  141.99735 Heterosexual (straight)            Rarely
## 6791   64.86  142.98942 Heterosexual (straight)         Sometimes
## 6792   63.50  139.99118 Heterosexual (straight)             Never
## 6793   65.77  144.99559 Heterosexual (straight)            Rarely
## 6794   65.77  144.99559                Bisexual  Most of the time
## 6795   68.04  150.00000 Heterosexual (straight)            Rarely
## 6796   99.79  219.99559                Bisexual  Most of the time
## 6797   72.58  160.00882                Not sure            Always
## 6798   58.06  127.99824 Heterosexual (straight)         Sometimes
## 6799   64.41  141.99735                Not sure         Sometimes
## 6800   65.77  144.99559 Heterosexual (straight)         Sometimes
## 6801   54.43  119.99559 Heterosexual (straight)             Never
## 6802   54.43  119.99559 Heterosexual (straight)  Most of the time
## 6803   68.04  150.00000 Heterosexual (straight)  Most of the time
## 6804   53.52  117.98942 Heterosexual (straight)         Sometimes
## 6805   54.43  119.99559 Heterosexual (straight)            Rarely
## 6806   57.61  127.00617 Heterosexual (straight)            Rarely
## 6807   68.04  150.00000                Bisexual         Sometimes
## 6808   76.20  167.98942 Heterosexual (straight)         Sometimes
## 6809   63.05  138.99912 Heterosexual (straight)            Always
## 6810   54.43  119.99559 Heterosexual (straight)            Rarely
## 6811   49.90  110.00882 Heterosexual (straight)            Rarely
## 6812   61.24  135.00882 Heterosexual (straight)             Never
## 6813   57.15  125.99206 Heterosexual (straight)             Never
## 6814      NA         NA Heterosexual (straight)              <NA>
## 6815   61.24  135.00882 Heterosexual (straight)            Rarely
## 6816   53.52  117.98942                Bisexual         Sometimes
## 6817   80.74  177.99824 Heterosexual (straight)         Sometimes
## 6818      NA         NA Heterosexual (straight)         Sometimes
## 6819   74.84  164.99118 Heterosexual (straight)            Rarely
## 6820   74.84  164.99118 Heterosexual (straight)            Rarely
## 6821   68.04  150.00000 Heterosexual (straight)              <NA>
## 6822   95.26  210.00882 Heterosexual (straight)  Most of the time
## 6823      NA         NA                Bisexual            Rarely
## 6824   68.04  150.00000 Heterosexual (straight)  Most of the time
## 6825   61.24  135.00882 Heterosexual (straight)              <NA>
## 6826   76.20  167.98942 Heterosexual (straight)            Rarely
## 6827   72.58  160.00882                Not sure  Most of the time
## 6828      NA         NA Heterosexual (straight)            Always
## 6829   79.83  175.99206 Heterosexual (straight)         Sometimes
## 6830   56.70  125.00000 Heterosexual (straight)            Rarely
## 6831      NA         NA          Some other way             Never
## 6832   46.72  102.99824 Heterosexual (straight)  Most of the time
## 6833   65.77  144.99559          Gay or lesbian         Sometimes
## 6834   68.04  150.00000 Heterosexual (straight)             Never
## 6835   96.16  211.99295 Heterosexual (straight)            Rarely
## 6836   65.77  144.99559 Heterosexual (straight)  Most of the time
## 6837   74.84  164.99118 Heterosexual (straight)         Sometimes
## 6838   52.62  116.00529 Heterosexual (straight)             Never
## 6839   53.52  117.98942 Heterosexual (straight)  Most of the time
## 6840   57.15  125.99206 Heterosexual (straight)         Sometimes
## 6841   56.70  125.00000 Heterosexual (straight)  Most of the time
## 6842   91.63  202.00617 Heterosexual (straight)            Rarely
## 6843   60.78  133.99471 Heterosexual (straight)         Sometimes
## 6844   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6845   77.11  169.99559 Heterosexual (straight)            Rarely
## 6846   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6847   61.24  135.00882 Heterosexual (straight)         Sometimes
## 6848   72.58  160.00882 Heterosexual (straight)            Rarely
## 6849   63.50  139.99118                Bisexual         Sometimes
## 6850   56.70  125.00000                Not sure            Always
## 6851   56.70  125.00000          Gay or lesbian         Sometimes
## 6852   87.54  192.98942 Heterosexual (straight)         Sometimes
## 6853      NA         NA Heterosexual (straight)         Sometimes
## 6854   52.16  114.99118                Bisexual         Sometimes
## 6855   70.31  155.00441                Bisexual         Sometimes
## 6856   46.27  102.00617                Bisexual         Sometimes
## 6857   63.50  139.99118 Heterosexual (straight)  Most of the time
## 6858   53.52  117.98942                Not sure  Most of the time
## 6859   61.24  135.00882 Heterosexual (straight)            Rarely
## 6860   67.13  147.99383 Heterosexual (straight)  Most of the time
## 6861   56.70  125.00000 Heterosexual (straight)            Rarely
## 6862   61.24  135.00882 Heterosexual (straight)            Rarely
## 6863   52.16  114.99118                Bisexual  Most of the time
## 6864   63.50  139.99118 Heterosexual (straight)  Most of the time
## 6865   51.26  113.00705 Heterosexual (straight)            Rarely
## 6866   72.58  160.00882 Heterosexual (straight)         Sometimes
## 6867   68.95  152.00617 Heterosexual (straight)             Never
## 6868   83.92  185.00882          Some other way            Always
## 6869  127.01  280.00441 Heterosexual (straight)             Never
## 6870   59.88  132.01058                Not sure            Rarely
## 6871   47.63  105.00441 Heterosexual (straight)  Most of the time
## 6872   59.88  132.01058 Heterosexual (straight)         Sometimes
## 6873   48.08  105.99647                Not sure         Sometimes
## 6874   54.43  119.99559 Heterosexual (straight)            Rarely
## 6875   70.31  155.00441                Not sure  Most of the time
## 6876   65.77  144.99559                Bisexual         Sometimes
## 6877   54.43  119.99559 Heterosexual (straight)             Never
## 6878   63.50  139.99118 Heterosexual (straight)             Never
## 6879   56.70  125.00000                Bisexual             Never
## 6880   56.70  125.00000 Heterosexual (straight)         Sometimes
## 6881  113.40  250.00000 Heterosexual (straight)         Sometimes
## 6882   70.31  155.00441 Heterosexual (straight)            Rarely
## 6883   71.67  158.00265 Heterosexual (straight)         Sometimes
## 6884   54.43  119.99559 Heterosexual (straight)            Rarely
## 6885      NA         NA Heterosexual (straight)         Sometimes
## 6886   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6887   49.90  110.00882 Heterosexual (straight)             Never
## 6888   74.84  164.99118 Heterosexual (straight)             Never
## 6889      NA         NA Heterosexual (straight)            Rarely
## 6890   78.47  172.99383 Heterosexual (straight)            Rarely
## 6891      NA         NA Heterosexual (straight)             Never
## 6892   49.90  110.00882 Heterosexual (straight)            Rarely
## 6893   51.71  113.99912                Bisexual  Most of the time
## 6894   78.47  172.99383 Heterosexual (straight)            Rarely
## 6895   47.17  103.99030 Heterosexual (straight)         Sometimes
## 6896   57.61  127.00617 Heterosexual (straight)         Sometimes
## 6897   60.33  133.00265 Heterosexual (straight)            Rarely
## 6898   63.50  139.99118          Some other way         Sometimes
## 6899   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6900   61.24  135.00882 Heterosexual (straight)  Most of the time
## 6901      NA         NA Heterosexual (straight)         Sometimes
## 6902   58.97  130.00441 Heterosexual (straight)             Never
## 6903  108.86  239.99118 Heterosexual (straight)             Never
## 6904   81.65  180.00441 Heterosexual (straight)            Rarely
## 6905   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6906   68.04  150.00000 Heterosexual (straight)             Never
## 6907   75.75  166.99735 Heterosexual (straight)         Sometimes
## 6908   63.50  139.99118 Heterosexual (straight)            Rarely
## 6909   44.45   97.99383 Heterosexual (straight)  Most of the time
## 6910   56.70  125.00000 Heterosexual (straight)            Rarely
## 6911   61.24  135.00882                Not sure            Always
## 6912   66.23  146.00970 Heterosexual (straight)         Sometimes
## 6913   68.04  150.00000 Heterosexual (straight)            Rarely
## 6914   65.77  144.99559 Heterosexual (straight)         Sometimes
## 6915   45.36  100.00000 Heterosexual (straight)         Sometimes
## 6916   66.23  146.00970                Bisexual         Sometimes
## 6917      NA         NA Heterosexual (straight)         Sometimes
## 6918   68.04  150.00000 Heterosexual (straight)            Always
## 6919   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6920   68.04  150.00000                Bisexual         Sometimes
## 6921   70.31  155.00441 Heterosexual (straight)            Rarely
## 6922  180.99  399.00794 Heterosexual (straight)              <NA>
## 6923  111.13  244.99559 Heterosexual (straight)         Sometimes
## 6924   68.95  152.00617 Heterosexual (straight)         Sometimes
## 6925   64.41  141.99735          Some other way         Sometimes
## 6926   44.00   97.00176 Heterosexual (straight)  Most of the time
## 6927   68.95  152.00617                Bisexual         Sometimes
## 6928   68.04  150.00000 Heterosexual (straight)             Never
## 6929   62.14  136.99295          Some other way            Always
## 6930   94.35  208.00265 Heterosexual (straight)         Sometimes
## 6931   49.90  110.00882                Bisexual         Sometimes
## 6932   63.50  139.99118 Heterosexual (straight)         Sometimes
## 6933      NA         NA Heterosexual (straight)             Never
## 6934   70.76  155.99647 Heterosexual (straight)            Rarely
## 6935   57.15  125.99206                Bisexual  Most of the time
## 6936  104.33  230.00441                Bisexual            Rarely
## 6937   54.89  121.00970          Gay or lesbian  Most of the time
## 6938   83.46  183.99471 Heterosexual (straight)            Rarely
## 6939   54.43  119.99559                Not sure  Most of the time
## 6940   70.76  155.99647 Heterosexual (straight)            Rarely
## 6941      NA         NA Heterosexual (straight)            Rarely
## 6942   77.11  169.99559 Heterosexual (straight)             Never
## 6943   40.82   89.99118                Not sure            Always
## 6944   68.04  150.00000 Heterosexual (straight)            Rarely
## 6945   62.14  136.99295                Bisexual            Rarely
## 6946  108.86  239.99118                Bisexual            Always
## 6947   61.24  135.00882 Heterosexual (straight)             Never
## 6948   57.61  127.00617          Some other way            Always
## 6949   68.04  150.00000                Bisexual  Most of the time
## 6950   58.06  127.99824 Heterosexual (straight)         Sometimes
## 6951   69.40  152.99824          Gay or lesbian            Rarely
## 6952   52.16  114.99118 Heterosexual (straight)         Sometimes
## 6953      NA         NA                Not sure            Rarely
## 6954   95.26  210.00882 Heterosexual (straight)  Most of the time
## 6955   60.33  133.00265 Heterosexual (straight)            Rarely
## 6956   74.39  163.99912 Heterosexual (straight)             Never
## 6957   78.93  174.00794 Heterosexual (straight)            Rarely
## 6958   54.43  119.99559 Heterosexual (straight)         Sometimes
## 6959   80.29  177.00617                Bisexual            Rarely
## 6960   61.24  135.00882 Heterosexual (straight)            Always
## 6961   74.84  164.99118 Heterosexual (straight)            Rarely
## 6962   50.80  111.99295 Heterosexual (straight)         Sometimes
## 6963   61.24  135.00882 Heterosexual (straight)  Most of the time
## 6964   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6965   40.82   89.99118 Heterosexual (straight)         Sometimes
## 6966   72.58  160.00882 Heterosexual (straight)         Sometimes
## 6967   58.97  130.00441          Gay or lesbian             Never
## 6968   58.97  130.00441 Heterosexual (straight)         Sometimes
## 6969   51.26  113.00705          Some other way            Always
## 6970   87.09  191.99735          Some other way  Most of the time
## 6971   77.11  169.99559 Heterosexual (straight)         Sometimes
## 6972   62.60  138.00705          Some other way         Sometimes
## 6973   51.26  113.00705          Gay or lesbian  Most of the time
## 6974   66.68  147.00176 Heterosexual (straight)  Most of the time
## 6975   66.23  146.00970          Gay or lesbian         Sometimes
## 6976   65.77  144.99559                Not sure            Always
## 6977   71.22  157.01058 Heterosexual (straight)             Never
## 6978   61.24  135.00882 Heterosexual (straight)         Sometimes
## 6979   54.43  119.99559 Heterosexual (straight)             Never
## 6980      NA         NA                Bisexual         Sometimes
## 6981   81.19  178.99030                Bisexual  Most of the time
## 6982      NA         NA Heterosexual (straight)            Rarely
## 6983   47.17  103.99030 Heterosexual (straight)            Rarely
## 6984   65.77  144.99559 Heterosexual (straight)         Sometimes
## 6985   58.06  127.99824                Bisexual              <NA>
## 6986   61.24  135.00882          Some other way            Always
## 6987   56.70  125.00000                Not sure         Sometimes
## 6988   68.04  150.00000          Gay or lesbian             Never
## 6989   70.31  155.00441 Heterosexual (straight)            Rarely
## 6990   57.61  127.00617                Not sure         Sometimes
## 6991  111.13  244.99559          Some other way         Sometimes
## 6992   46.72  102.99824 Heterosexual (straight)            Always
## 6993      NA         NA Heterosexual (straight)         Sometimes
## 6994   74.84  164.99118          Gay or lesbian         Sometimes
## 6995   56.70  125.00000          Gay or lesbian  Most of the time
## 6996   59.88  132.01058 Heterosexual (straight)            Rarely
## 6997  122.93  271.00970          Some other way  Most of the time
## 6998   72.12  158.99471 Heterosexual (straight)         Sometimes
## 6999   77.11  169.99559 Heterosexual (straight)             Never
## 7000   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7001   58.51  128.99030 Heterosexual (straight)         Sometimes
## 7002   69.40  152.99824                Bisexual         Sometimes
## 7003   56.25  124.00794          Gay or lesbian            Rarely
## 7004   63.50  139.99118 Heterosexual (straight)         Sometimes
## 7005   59.42  130.99647                Not sure         Sometimes
## 7006   47.63  105.00441 Heterosexual (straight)            Rarely
## 7007   60.78  133.99471                Bisexual         Sometimes
## 7008   64.41  141.99735 Heterosexual (straight)            Rarely
## 7009   74.84  164.99118 Heterosexual (straight)            Rarely
## 7010   79.38  175.00000                Bisexual         Sometimes
## 7011   74.39  163.99912                Bisexual  Most of the time
## 7012   57.61  127.00617          Some other way              <NA>
## 7013   43.09   94.99559 Heterosexual (straight)         Sometimes
## 7014   60.78  133.99471                Bisexual            Always
## 7015   58.51  128.99030                Bisexual  Most of the time
## 7016   38.56   85.00882 Heterosexual (straight)         Sometimes
## 7017      NA         NA Heterosexual (straight)  Most of the time
## 7018   92.08  202.99824 Heterosexual (straight)            Rarely
## 7019   55.79  122.99383                Bisexual  Most of the time
## 7020   56.70  125.00000 Heterosexual (straight)  Most of the time
## 7021   57.15  125.99206          Some other way         Sometimes
## 7022   58.06  127.99824 Heterosexual (straight)         Sometimes
## 7023      NA         NA          Some other way  Most of the time
## 7024   78.02  172.00176          Some other way         Sometimes
## 7025   52.16  114.99118 Heterosexual (straight)            Rarely
## 7026   90.27  199.00794                Not sure         Sometimes
## 7027   58.97  130.00441                Bisexual            Rarely
## 7028   54.43  119.99559                Not sure         Sometimes
## 7029   63.50  139.99118 Heterosexual (straight)         Sometimes
## 7030   56.70  125.00000                Not sure  Most of the time
## 7031   71.67  158.00265          Some other way            Always
## 7032   58.06  127.99824 Heterosexual (straight)            Rarely
## 7033   49.90  110.00882 Heterosexual (straight)            Rarely
## 7034   52.62  116.00529                Bisexual         Sometimes
## 7035   59.42  130.99647 Heterosexual (straight)  Most of the time
## 7036   64.86  142.98942                Not sure         Sometimes
## 7037   77.11  169.99559 Heterosexual (straight)            Rarely
## 7038   81.65  180.00441 Heterosexual (straight)            Rarely
## 7039   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7040   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7041   67.13  147.99383 Heterosexual (straight)         Sometimes
## 7042   86.18  189.99118 Heterosexual (straight)  Most of the time
## 7043   70.76  155.99647                Bisexual         Sometimes
## 7044   59.88  132.01058 Heterosexual (straight)         Sometimes
## 7045   55.34  122.00176          Gay or lesbian            Always
## 7046   58.51  128.99030 Heterosexual (straight)            Rarely
## 7047   81.65  180.00441          Gay or lesbian         Sometimes
## 7048   53.52  117.98942                Bisexual  Most of the time
## 7049      NA         NA Heterosexual (straight)             Never
## 7050   83.92  185.00882 Heterosexual (straight)            Rarely
## 7051   70.31  155.00441 Heterosexual (straight)  Most of the time
## 7052      NA         NA                Bisexual  Most of the time
## 7053   44.91   99.00794                Not sure         Sometimes
## 7054   58.97  130.00441          Some other way            Always
## 7055   46.72  102.99824          Gay or lesbian  Most of the time
## 7056   71.67  158.00265 Heterosexual (straight)            Rarely
## 7057      NA         NA          Some other way         Sometimes
## 7058   58.06  127.99824 Heterosexual (straight)            Rarely
## 7059   44.91   99.00794 Heterosexual (straight)  Most of the time
## 7060   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7061   54.43  119.99559 Heterosexual (straight)             Never
## 7062   58.06  127.99824 Heterosexual (straight)            Rarely
## 7063   62.14  136.99295 Heterosexual (straight)            Rarely
## 7064   60.33  133.00265 Heterosexual (straight)            Rarely
## 7065   72.58  160.00882 Heterosexual (straight)         Sometimes
## 7066   54.43  119.99559 Heterosexual (straight)             Never
## 7067   72.58  160.00882 Heterosexual (straight)         Sometimes
## 7068   53.98  119.00353                Bisexual         Sometimes
## 7069   61.24  135.00882 Heterosexual (straight)         Sometimes
## 7070   87.09  191.99735 Heterosexual (straight)            Rarely
## 7071   72.58  160.00882 Heterosexual (straight)         Sometimes
## 7072   87.09  191.99735 Heterosexual (straight)            Rarely
## 7073   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7074   78.47  172.99383 Heterosexual (straight)         Sometimes
## 7075   72.58  160.00882                Not sure         Sometimes
## 7076  106.60  235.00882 Heterosexual (straight)  Most of the time
## 7077   65.77  144.99559                Bisexual         Sometimes
## 7078   81.65  180.00441 Heterosexual (straight)            Rarely
## 7079   63.50  139.99118 Heterosexual (straight)            Always
## 7080   54.43  119.99559 Heterosexual (straight)            Rarely
## 7081   58.97  130.00441 Heterosexual (straight)  Most of the time
## 7082   54.43  119.99559          Some other way            Always
## 7083   74.84  164.99118 Heterosexual (straight)             Never
## 7084   55.34  122.00176 Heterosexual (straight)         Sometimes
## 7085   70.31  155.00441 Heterosexual (straight)            Always
## 7086   45.36  100.00000 Heterosexual (straight)            Rarely
## 7087   64.86  142.98942 Heterosexual (straight)             Never
## 7088   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7089      NA         NA          Gay or lesbian  Most of the time
## 7090   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7091   70.31  155.00441          Some other way         Sometimes
## 7092   58.06  127.99824                Not sure            Always
## 7093   54.43  119.99559          Gay or lesbian             Never
## 7094      NA         NA                Not sure  Most of the time
## 7095   50.35  111.00088 Heterosexual (straight)            Rarely
## 7096  108.86  239.99118 Heterosexual (straight)            Rarely
## 7097   49.90  110.00882                Bisexual  Most of the time
## 7098   54.43  119.99559                Not sure         Sometimes
## 7099      NA         NA Heterosexual (straight)  Most of the time
## 7100      NA         NA Heterosexual (straight)         Sometimes
## 7101   68.04  150.00000 Heterosexual (straight)  Most of the time
## 7102   61.24  135.00882 Heterosexual (straight)            Rarely
## 7103   70.31  155.00441 Heterosexual (straight)         Sometimes
## 7104   50.80  111.99295 Heterosexual (straight)  Most of the time
## 7105   58.97  130.00441                Bisexual         Sometimes
## 7106   49.90  110.00882 Heterosexual (straight)  Most of the time
## 7107   48.99  108.00265                Bisexual         Sometimes
## 7108   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7109   49.44  108.99471 Heterosexual (straight)            Rarely
## 7110   68.04  150.00000 Heterosexual (straight)             Never
## 7111   63.50  139.99118 Heterosexual (straight)         Sometimes
## 7112      NA         NA Heterosexual (straight)         Sometimes
## 7113   47.17  103.99030 Heterosexual (straight)              <NA>
## 7114   81.65  180.00441          Some other way  Most of the time
## 7115   56.70  125.00000 Heterosexual (straight)            Rarely
## 7116   74.39  163.99912 Heterosexual (straight)            Rarely
## 7117   62.60  138.00705 Heterosexual (straight)            Rarely
## 7118      NA         NA Heterosexual (straight)            Rarely
## 7119   68.04  150.00000 Heterosexual (straight)             Never
## 7120   49.90  110.00882                Bisexual            Rarely
## 7121   68.04  150.00000 Heterosexual (straight)            Rarely
## 7122   50.80  111.99295 Heterosexual (straight)  Most of the time
## 7123   61.24  135.00882 Heterosexual (straight)             Never
## 7124   54.43  119.99559                Not sure         Sometimes
## 7125   79.38  175.00000 Heterosexual (straight)         Sometimes
## 7126   73.94  163.00705 Heterosexual (straight)             Never
## 7127   49.90  110.00882 Heterosexual (straight)            Rarely
## 7128   54.43  119.99559 Heterosexual (straight)            Rarely
## 7129   51.71  113.99912 Heterosexual (straight)         Sometimes
## 7130   47.63  105.00441                Bisexual  Most of the time
## 7131   56.25  124.00794 Heterosexual (straight)             Never
## 7132   45.36  100.00000 Heterosexual (straight)         Sometimes
## 7133   54.43  119.99559                Not sure  Most of the time
## 7134      NA         NA Heterosexual (straight)  Most of the time
## 7135   56.70  125.00000 Heterosexual (straight)             Never
## 7136   63.50  139.99118 Heterosexual (straight)            Always
## 7137   61.24  135.00882 Heterosexual (straight)         Sometimes
## 7138   72.58  160.00882 Heterosexual (straight)            Rarely
## 7139   47.63  105.00441 Heterosexual (straight)  Most of the time
## 7140   54.43  119.99559          Some other way         Sometimes
## 7141   45.36  100.00000 Heterosexual (straight)         Sometimes
## 7142   67.59  149.00794 Heterosexual (straight)             Never
## 7143   54.43  119.99559 Heterosexual (straight)            Rarely
## 7144   74.39  163.99912 Heterosexual (straight)            Rarely
## 7145   58.97  130.00441 Heterosexual (straight)             Never
## 7146   48.54  107.01058 Heterosexual (straight)            Always
## 7147   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7148   61.24  135.00882          Gay or lesbian  Most of the time
## 7149   86.18  189.99118 Heterosexual (straight)         Sometimes
## 7150   70.31  155.00441 Heterosexual (straight)         Sometimes
## 7151   56.70  125.00000 Heterosexual (straight)            Rarely
## 7152   58.97  130.00441 Heterosexual (straight)            Rarely
## 7153   68.04  150.00000 Heterosexual (straight)            Rarely
## 7154   48.99  108.00265 Heterosexual (straight)            Always
## 7155   62.60  138.00705 Heterosexual (straight)             Never
## 7156   68.04  150.00000 Heterosexual (straight)            Rarely
## 7157   65.77  144.99559 Heterosexual (straight)            Rarely
## 7158   63.50  139.99118 Heterosexual (straight)            Rarely
## 7159   49.90  110.00882 Heterosexual (straight)         Sometimes
## 7160   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7161   68.95  152.00617 Heterosexual (straight)            Rarely
## 7162   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7163   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7164   58.51  128.99030 Heterosexual (straight)            Rarely
## 7165   70.31  155.00441 Heterosexual (straight)            Rarely
## 7166   65.77  144.99559 Heterosexual (straight)            Rarely
## 7167   66.68  147.00176 Heterosexual (straight)  Most of the time
## 7168  108.86  239.99118          Some other way            Always
## 7169   61.24  135.00882 Heterosexual (straight)            Always
## 7170   73.03  161.00088          Gay or lesbian         Sometimes
## 7171   37.20   82.01058 Heterosexual (straight)            Rarely
## 7172   70.31  155.00441 Heterosexual (straight)            Rarely
## 7173   74.84  164.99118                Not sure         Sometimes
## 7174   70.31  155.00441 Heterosexual (straight)            Rarely
## 7175   68.04  150.00000 Heterosexual (straight)            Rarely
## 7176   70.31  155.00441 Heterosexual (straight)            Rarely
## 7177   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7178   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7179   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7180   90.72  200.00000 Heterosexual (straight)             Never
## 7181   67.13  147.99383 Heterosexual (straight)             Never
## 7182   62.60  138.00705                Not sure         Sometimes
## 7183  113.40  250.00000 Heterosexual (straight)         Sometimes
## 7184   53.52  117.98942 Heterosexual (straight)         Sometimes
## 7185   58.97  130.00441 Heterosexual (straight)             Never
## 7186   44.91   99.00794          Some other way  Most of the time
## 7187   52.16  114.99118 Heterosexual (straight)  Most of the time
## 7188   54.89  121.00970 Heterosexual (straight)             Never
## 7189   63.50  139.99118 Heterosexual (straight)  Most of the time
## 7190   43.09   94.99559 Heterosexual (straight)            Rarely
## 7191   54.43  119.99559                Bisexual              <NA>
## 7192   48.08  105.99647 Heterosexual (straight)         Sometimes
## 7193      NA         NA Heterosexual (straight)         Sometimes
## 7194   61.24  135.00882 Heterosexual (straight)            Rarely
## 7195   44.45   97.99383 Heterosexual (straight)  Most of the time
## 7196   52.16  114.99118 Heterosexual (straight)         Sometimes
## 7197   63.05  138.99912 Heterosexual (straight)         Sometimes
## 7198   65.77  144.99559 Heterosexual (straight)             Never
## 7199   68.04  150.00000                Not sure  Most of the time
## 7200   45.36  100.00000 Heterosexual (straight)         Sometimes
## 7201   68.04  150.00000          Gay or lesbian         Sometimes
## 7202   69.40  152.99824 Heterosexual (straight)             Never
## 7203   43.55   96.00970 Heterosexual (straight)         Sometimes
## 7204   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7205   45.36  100.00000                Bisexual              <NA>
## 7206   63.50  139.99118 Heterosexual (straight)             Never
## 7207   72.12  158.99471          Gay or lesbian            Rarely
## 7208   72.58  160.00882          Some other way         Sometimes
## 7209   86.18  189.99118 Heterosexual (straight)            Rarely
## 7210   49.90  110.00882 Heterosexual (straight)         Sometimes
## 7211   95.71  211.00088 Heterosexual (straight)              <NA>
## 7212   61.24  135.00882 Heterosexual (straight)             Never
## 7213   47.63  105.00441 Heterosexual (straight)         Sometimes
## 7214   79.38  175.00000 Heterosexual (straight)            Rarely
## 7215   61.24  135.00882 Heterosexual (straight)             Never
## 7216   64.41  141.99735                Bisexual             Never
## 7217  135.17  297.99383 Heterosexual (straight)              <NA>
## 7218   76.66  169.00353 Heterosexual (straight)         Sometimes
## 7219  136.08  300.00000 Heterosexual (straight)             Never
## 7220   52.16  114.99118                Bisexual         Sometimes
## 7221   95.26  210.00882 Heterosexual (straight)         Sometimes
## 7222   63.50  139.99118 Heterosexual (straight)             Never
## 7223   64.41  141.99735 Heterosexual (straight)            Rarely
## 7224   70.31  155.00441                Bisexual  Most of the time
## 7225      NA         NA Heterosexual (straight)            Rarely
## 7226   52.16  114.99118 Heterosexual (straight)             Never
## 7227   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7228   95.26  210.00882                Bisexual             Never
## 7229   60.33  133.00265 Heterosexual (straight)  Most of the time
## 7230   63.96  141.00529 Heterosexual (straight)              <NA>
## 7231   79.38  175.00000 Heterosexual (straight)            Rarely
## 7232   99.79  219.99559          Some other way            Rarely
## 7233  108.41  238.99912 Heterosexual (straight)             Never
## 7234   54.43  119.99559 Heterosexual (straight)             Never
## 7235   97.52  214.99118 Heterosexual (straight)            Rarely
## 7236   81.65  180.00441 Heterosexual (straight)            Rarely
## 7237   68.04  150.00000 Heterosexual (straight)            Always
## 7238   58.97  130.00441 Heterosexual (straight)            Rarely
## 7239   85.73  188.99912                Not sure            Always
## 7240   65.77  144.99559 Heterosexual (straight)         Sometimes
## 7241   51.71  113.99912 Heterosexual (straight)            Always
## 7242   44.91   99.00794 Heterosexual (straight)            Rarely
## 7243   58.97  130.00441 Heterosexual (straight)            Rarely
## 7244   48.08  105.99647 Heterosexual (straight)         Sometimes
## 7245   48.99  108.00265                Not sure            Always
## 7246   52.16  114.99118                Bisexual            Rarely
## 7247   47.63  105.00441 Heterosexual (straight)         Sometimes
## 7248   43.09   94.99559                Bisexual         Sometimes
## 7249   53.07  116.99735 Heterosexual (straight)         Sometimes
## 7250   73.48  161.99295 Heterosexual (straight)            Rarely
## 7251   58.97  130.00441 Heterosexual (straight)             Never
## 7252      NA         NA          Gay or lesbian            Always
## 7253   54.89  121.00970                Bisexual            Always
## 7254   77.11  169.99559 Heterosexual (straight)             Never
## 7255   50.80  111.99295                Bisexual            Rarely
## 7256   77.11  169.99559 Heterosexual (straight)            Rarely
## 7257   84.37  186.00088 Heterosexual (straight)            Rarely
## 7258   58.06  127.99824 Heterosexual (straight)            Rarely
## 7259   54.43  119.99559 Heterosexual (straight)             Never
## 7260   75.30  166.00529                Bisexual         Sometimes
## 7261   58.97  130.00441 Heterosexual (straight)  Most of the time
## 7262   54.43  119.99559 Heterosexual (straight)            Rarely
## 7263   65.77  144.99559 Heterosexual (straight)         Sometimes
## 7264   84.37  186.00088 Heterosexual (straight)         Sometimes
## 7265   56.70  125.00000 Heterosexual (straight)            Rarely
## 7266   58.97  130.00441                Bisexual  Most of the time
## 7267   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7268   70.31  155.00441                Not sure            Rarely
## 7269   63.50  139.99118 Heterosexual (straight)         Sometimes
## 7270   81.65  180.00441 Heterosexual (straight)             Never
## 7271   62.60  138.00705          Gay or lesbian         Sometimes
## 7272   52.62  116.00529                Bisexual  Most of the time
## 7273      NA         NA                Bisexual  Most of the time
## 7274   97.52  214.99118 Heterosexual (straight)            Rarely
## 7275   52.16  114.99118 Heterosexual (straight)         Sometimes
## 7276   74.84  164.99118 Heterosexual (straight)  Most of the time
## 7277   44.00   97.00176          Gay or lesbian  Most of the time
## 7278      NA         NA Heterosexual (straight)  Most of the time
## 7279   53.52  117.98942 Heterosexual (straight)             Never
## 7280   90.72  200.00000 Heterosexual (straight)             Never
## 7281   40.37   88.99912                Bisexual            Rarely
## 7282   47.63  105.00441                Bisexual            Rarely
## 7283   54.43  119.99559 Heterosexual (straight)  Most of the time
## 7284   52.62  116.00529 Heterosexual (straight)  Most of the time
## 7285   67.59  149.00794                Bisexual         Sometimes
## 7286   77.11  169.99559                Bisexual         Sometimes
## 7287   60.33  133.00265 Heterosexual (straight)            Rarely
## 7288   41.73   91.99735          Gay or lesbian         Sometimes
## 7289   53.52  117.98942 Heterosexual (straight)            Rarely
## 7290   65.77  144.99559 Heterosexual (straight)  Most of the time
## 7291   47.63  105.00441 Heterosexual (straight)            Rarely
## 7292  108.86  239.99118 Heterosexual (straight)            Rarely
## 7293   72.58  160.00882 Heterosexual (straight)            Rarely
## 7294   60.78  133.99471 Heterosexual (straight)            Always
## 7295   50.80  111.99295 Heterosexual (straight)  Most of the time
## 7296   54.43  119.99559                Not sure            Always
## 7297   65.77  144.99559 Heterosexual (straight)         Sometimes
## 7298   81.65  180.00441 Heterosexual (straight)  Most of the time
## 7299   90.72  200.00000 Heterosexual (straight)  Most of the time
## 7300   99.79  219.99559                Not sure  Most of the time
## 7301   57.15  125.99206 Heterosexual (straight)  Most of the time
## 7302   81.65  180.00441 Heterosexual (straight)            Rarely
## 7303  112.49  247.99383                Not sure            Rarely
## 7304   79.83  175.99206 Heterosexual (straight)         Sometimes
## 7305   63.50  139.99118                Bisexual            Always
## 7306   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7307   44.45   97.99383 Heterosexual (straight)              <NA>
## 7308   92.99  205.00441 Heterosexual (straight)  Most of the time
## 7309   49.90  110.00882                Not sure         Sometimes
## 7310   58.97  130.00441 Heterosexual (straight)            Rarely
## 7311   63.50  139.99118 Heterosexual (straight)            Always
## 7312   67.13  147.99383          Some other way            Always
## 7313   64.41  141.99735 Heterosexual (straight)  Most of the time
## 7314   65.77  144.99559                Bisexual  Most of the time
## 7315   49.44  108.99471 Heterosexual (straight)  Most of the time
## 7316   97.52  214.99118 Heterosexual (straight)             Never
## 7317      NA         NA Heterosexual (straight)  Most of the time
## 7318   90.72  200.00000 Heterosexual (straight)            Rarely
## 7319  108.86  239.99118 Heterosexual (straight)            Always
## 7320   81.65  180.00441 Heterosexual (straight)  Most of the time
## 7321   58.06  127.99824 Heterosexual (straight)  Most of the time
## 7322   58.06  127.99824 Heterosexual (straight)             Never
## 7323   72.58  160.00882 Heterosexual (straight)              <NA>
## 7324      NA         NA Heterosexual (straight)             Never
## 7325   69.40  152.99824 Heterosexual (straight)            Rarely
## 7326   54.43  119.99559 Heterosexual (straight)             Never
## 7327  111.13  244.99559 Heterosexual (straight)         Sometimes
## 7328      NA         NA                Bisexual  Most of the time
## 7329   61.24  135.00882 Heterosexual (straight)             Never
## 7330   49.44  108.99471                Bisexual              <NA>
## 7331   63.50  139.99118 Heterosexual (straight)            Rarely
## 7332   79.38  175.00000 Heterosexual (straight)  Most of the time
## 7333  108.41  238.99912 Heterosexual (straight)         Sometimes
## 7334   83.92  185.00882 Heterosexual (straight)  Most of the time
## 7335   74.84  164.99118                Not sure         Sometimes
## 7336   75.30  166.00529          Gay or lesbian            Always
## 7337   63.05  138.99912 Heterosexual (straight)         Sometimes
## 7338   54.43  119.99559 Heterosexual (straight)            Rarely
## 7339   50.35  111.00088 Heterosexual (straight)            Rarely
## 7340   68.04  150.00000 Heterosexual (straight)             Never
## 7341   53.52  117.98942          Gay or lesbian            Always
## 7342   92.99  205.00441 Heterosexual (straight)         Sometimes
## 7343   79.38  175.00000 Heterosexual (straight)             Never
## 7344  124.74  275.00000 Heterosexual (straight)             Never
## 7345   95.26  210.00882 Heterosexual (straight)         Sometimes
## 7346   55.79  122.99383 Heterosexual (straight)            Rarely
## 7347   75.30  166.00529 Heterosexual (straight)            Always
## 7348      NA         NA Heterosexual (straight)            Rarely
## 7349   75.30  166.00529 Heterosexual (straight)             Never
## 7350   49.90  110.00882 Heterosexual (straight)             Never
## 7351   79.38  175.00000 Heterosexual (straight)              <NA>
## 7352   90.72  200.00000                Bisexual  Most of the time
## 7353   72.58  160.00882 Heterosexual (straight)            Rarely
## 7354   53.07  116.99735 Heterosexual (straight)  Most of the time
## 7355  113.40  250.00000 Heterosexual (straight)              <NA>
## 7356   68.04  150.00000                Not sure         Sometimes
## 7357  113.40  250.00000 Heterosexual (straight)             Never
## 7358   53.07  116.99735 Heterosexual (straight)  Most of the time
## 7359   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7360   74.84  164.99118          Gay or lesbian            Always
## 7361   62.14  136.99295 Heterosexual (straight)              <NA>
## 7362  111.13  244.99559 Heterosexual (straight)             Never
## 7363   77.11  169.99559 Heterosexual (straight)             Never
## 7364   45.36  100.00000 Heterosexual (straight)            Rarely
## 7365   62.60  138.00705 Heterosexual (straight)            Rarely
## 7366   54.43  119.99559 Heterosexual (straight)            Rarely
## 7367   81.65  180.00441 Heterosexual (straight)            Always
## 7368   61.24  135.00882 Heterosexual (straight)            Rarely
## 7369   83.92  185.00882 Heterosexual (straight)         Sometimes
## 7370   52.62  116.00529          Gay or lesbian  Most of the time
## 7371      NA         NA Heterosexual (straight)             Never
## 7372   81.65  180.00441 Heterosexual (straight)             Never
## 7373   72.58  160.00882 Heterosexual (straight)            Rarely
## 7374   63.50  139.99118                Bisexual            Rarely
## 7375   75.30  166.00529 Heterosexual (straight)              <NA>
## 7376   65.32  144.00353 Heterosexual (straight)         Sometimes
## 7377   89.81  197.99383                Bisexual            Always
## 7378   73.94  163.00705                Bisexual         Sometimes
## 7379   61.24  135.00882 Heterosexual (straight)             Never
## 7380   60.78  133.99471 Heterosexual (straight)             Never
## 7381   65.77  144.99559 Heterosexual (straight)            Always
## 7382      NA         NA Heterosexual (straight)            Rarely
## 7383   80.74  177.99824 Heterosexual (straight)            Rarely
## 7384   64.41  141.99735 Heterosexual (straight)             Never
## 7385   86.18  189.99118 Heterosexual (straight)             Never
## 7386   46.27  102.00617                Bisexual         Sometimes
## 7387  113.40  250.00000 Heterosexual (straight)             Never
## 7388   66.68  147.00176 Heterosexual (straight)             Never
## 7389   60.78  133.99471 Heterosexual (straight)            Rarely
## 7390  119.75  263.99912 Heterosexual (straight)             Never
## 7391  130.64  288.00705 Heterosexual (straight)            Always
## 7392   54.43  119.99559                Bisexual         Sometimes
## 7393   79.38  175.00000          Some other way            Always
## 7394      NA         NA Heterosexual (straight)         Sometimes
## 7395   83.92  185.00882 Heterosexual (straight)  Most of the time
## 7396  107.05  236.00088 Heterosexual (straight)            Rarely
## 7397   88.45  194.99559 Heterosexual (straight)             Never
## 7398   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7399   77.11  169.99559          Gay or lesbian         Sometimes
## 7400   56.70  125.00000 Heterosexual (straight)  Most of the time
## 7401   81.65  180.00441 Heterosexual (straight)         Sometimes
## 7402   61.24  135.00882 Heterosexual (straight)             Never
## 7403   74.84  164.99118 Heterosexual (straight)            Rarely
## 7404   52.16  114.99118          Gay or lesbian             Never
## 7405   54.43  119.99559 Heterosexual (straight)  Most of the time
## 7406   61.24  135.00882 Heterosexual (straight)             Never
## 7407  104.33  230.00441 Heterosexual (straight)         Sometimes
## 7408   71.22  157.01058 Heterosexual (straight)  Most of the time
## 7409  172.37  380.00441 Heterosexual (straight)             Never
## 7410  102.06  225.00000 Heterosexual (straight)  Most of the time
## 7411   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7412   58.97  130.00441 Heterosexual (straight)             Never
## 7413   56.70  125.00000 Heterosexual (straight)            Rarely
## 7414   85.28  188.00705 Heterosexual (straight)         Sometimes
## 7415   72.58  160.00882 Heterosexual (straight)             Never
## 7416   74.84  164.99118 Heterosexual (straight)            Rarely
## 7417   68.04  150.00000 Heterosexual (straight)             Never
## 7418   61.69  136.00088 Heterosexual (straight)            Rarely
## 7419   58.97  130.00441 Heterosexual (straight)             Never
## 7420   63.50  139.99118 Heterosexual (straight)            Rarely
## 7421   52.62  116.00529 Heterosexual (straight)         Sometimes
## 7422  108.86  239.99118 Heterosexual (straight)            Rarely
## 7423   36.74   80.99647 Heterosexual (straight)  Most of the time
## 7424   61.69  136.00088 Heterosexual (straight)             Never
## 7425   65.77  144.99559 Heterosexual (straight)            Always
## 7426   66.23  146.00970 Heterosexual (straight)            Rarely
## 7427   70.31  155.00441 Heterosexual (straight)         Sometimes
## 7428   61.24  135.00882 Heterosexual (straight)            Rarely
## 7429   68.04  150.00000          Some other way              <NA>
## 7430   53.52  117.98942 Heterosexual (straight)         Sometimes
## 7431   68.95  152.00617 Heterosexual (straight)              <NA>
## 7432   52.16  114.99118 Heterosexual (straight)            Rarely
## 7433   55.79  122.99383 Heterosexual (straight)             Never
## 7434   61.24  135.00882 Heterosexual (straight)  Most of the time
## 7435   68.04  150.00000 Heterosexual (straight)             Never
## 7436   99.79  219.99559 Heterosexual (straight)         Sometimes
## 7437      NA         NA Heterosexual (straight)            Rarely
## 7438   94.35  208.00265 Heterosexual (straight)             Never
## 7439   53.07  116.99735 Heterosexual (straight)            Always
## 7440      NA         NA Heterosexual (straight)              <NA>
## 7441   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7442   48.08  105.99647          Gay or lesbian         Sometimes
## 7443   63.50  139.99118 Heterosexual (straight)            Rarely
## 7444   86.18  189.99118 Heterosexual (straight)         Sometimes
## 7445  127.01  280.00441 Heterosexual (straight)            Rarely
## 7446   52.16  114.99118 Heterosexual (straight)            Rarely
## 7447  104.33  230.00441 Heterosexual (straight)         Sometimes
## 7448   77.11  169.99559 Heterosexual (straight)             Never
## 7449   81.65  180.00441 Heterosexual (straight)         Sometimes
## 7450   81.65  180.00441 Heterosexual (straight)         Sometimes
## 7451   96.16  211.99295 Heterosexual (straight)         Sometimes
## 7452  131.54  289.99118 Heterosexual (straight)            Rarely
## 7453      NA         NA          Some other way            Always
## 7454   63.50  139.99118 Heterosexual (straight)             Never
## 7455   54.43  119.99559 Heterosexual (straight)            Always
## 7456      NA         NA                Bisexual         Sometimes
## 7457   77.11  169.99559          Some other way            Always
## 7458   58.97  130.00441 Heterosexual (straight)            Rarely
## 7459   79.38  175.00000 Heterosexual (straight)         Sometimes
## 7460   56.70  125.00000 Heterosexual (straight)             Never
## 7461   95.26  210.00882 Heterosexual (straight)              <NA>
## 7462   79.38  175.00000                Bisexual  Most of the time
## 7463  140.62  310.00882 Heterosexual (straight)            Rarely
## 7464      NA         NA          Gay or lesbian              <NA>
## 7465   79.38  175.00000 Heterosexual (straight)  Most of the time
## 7466      NA         NA Heterosexual (straight)             Never
## 7467   97.07  213.99912 Heterosexual (straight)  Most of the time
## 7468   72.58  160.00882 Heterosexual (straight)             Never
## 7469      NA         NA          Gay or lesbian         Sometimes
## 7470   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7471   55.34  122.00176 Heterosexual (straight)            Rarely
## 7472   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7473   61.24  135.00882 Heterosexual (straight)            Always
## 7474   90.72  200.00000 Heterosexual (straight)            Rarely
## 7475   52.62  116.00529 Heterosexual (straight)         Sometimes
## 7476   63.50  139.99118                Not sure  Most of the time
## 7477  127.01  280.00441 Heterosexual (straight)             Never
## 7478  113.40  250.00000 Heterosexual (straight)            Rarely
## 7479   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7480   77.11  169.99559                Not sure         Sometimes
## 7481   82.56  182.01058 Heterosexual (straight)             Never
## 7482   43.09   94.99559 Heterosexual (straight)            Rarely
## 7483      NA         NA Heterosexual (straight)            Always
## 7484   48.54  107.01058 Heterosexual (straight)            Always
## 7485   45.81  100.99206 Heterosexual (straight)            Rarely
## 7486   54.89  121.00970 Heterosexual (straight)         Sometimes
## 7487   83.92  185.00882 Heterosexual (straight)              <NA>
## 7488   69.40  152.99824 Heterosexual (straight)            Rarely
## 7489  127.01  280.00441 Heterosexual (straight)             Never
## 7490   79.38  175.00000 Heterosexual (straight)            Rarely
## 7491   57.15  125.99206 Heterosexual (straight)         Sometimes
## 7492      NA         NA Heterosexual (straight)             Never
## 7493   79.83  175.99206 Heterosexual (straight)         Sometimes
## 7494   55.79  122.99383 Heterosexual (straight)            Rarely
## 7495   81.65  180.00441 Heterosexual (straight)             Never
## 7496   65.77  144.99559 Heterosexual (straight)            Rarely
## 7497   54.43  119.99559                Bisexual         Sometimes
## 7498   74.39  163.99912 Heterosexual (straight)             Never
## 7499  149.69  330.00441 Heterosexual (straight)         Sometimes
## 7500   65.77  144.99559 Heterosexual (straight)  Most of the time
## 7501   68.04  150.00000 Heterosexual (straight)             Never
## 7502   53.98  119.00353 Heterosexual (straight)            Always
## 7503   70.31  155.00441 Heterosexual (straight)         Sometimes
## 7504   92.99  205.00441 Heterosexual (straight)            Rarely
## 7505   79.38  175.00000                Bisexual  Most of the time
## 7506   61.24  135.00882 Heterosexual (straight)             Never
## 7507   68.95  152.00617 Heterosexual (straight)  Most of the time
## 7508   54.43  119.99559 Heterosexual (straight)            Always
## 7509   74.84  164.99118 Heterosexual (straight)            Rarely
## 7510   86.18  189.99118 Heterosexual (straight)            Always
## 7511   61.24  135.00882 Heterosexual (straight)             Never
## 7512   52.62  116.00529 Heterosexual (straight)  Most of the time
## 7513   54.43  119.99559 Heterosexual (straight)  Most of the time
## 7514   86.18  189.99118 Heterosexual (straight)             Never
## 7515   53.07  116.99735 Heterosexual (straight)         Sometimes
## 7516   49.90  110.00882 Heterosexual (straight)         Sometimes
## 7517   71.67  158.00265 Heterosexual (straight)            Rarely
## 7518   58.06  127.99824          Some other way            Always
## 7519   63.50  139.99118 Heterosexual (straight)         Sometimes
## 7520  161.03  355.00441 Heterosexual (straight)  Most of the time
## 7521   61.69  136.00088                Not sure            Always
## 7522   68.04  150.00000                Bisexual  Most of the time
## 7523   52.16  114.99118                Bisexual  Most of the time
## 7524   51.26  113.00705 Heterosexual (straight)  Most of the time
## 7525  106.60  235.00882 Heterosexual (straight)         Sometimes
## 7526   68.04  150.00000                Bisexual  Most of the time
## 7527      NA         NA                Not sure         Sometimes
## 7528   49.90  110.00882 Heterosexual (straight)         Sometimes
## 7529  122.47  269.99559 Heterosexual (straight)            Always
## 7530   89.36  197.00176 Heterosexual (straight)  Most of the time
## 7531   51.71  113.99912 Heterosexual (straight)            Always
## 7532   83.92  185.00882 Heterosexual (straight)  Most of the time
## 7533      NA         NA Heterosexual (straight)  Most of the time
## 7534   62.14  136.99295                Bisexual             Never
## 7535   54.43  119.99559 Heterosexual (straight)  Most of the time
## 7536   58.51  128.99030 Heterosexual (straight)  Most of the time
## 7537   67.59  149.00794 Heterosexual (straight)            Rarely
## 7538  104.33  230.00441 Heterosexual (straight)             Never
## 7539   58.97  130.00441 Heterosexual (straight)  Most of the time
## 7540  108.86  239.99118                Bisexual            Always
## 7541   81.65  180.00441 Heterosexual (straight)              <NA>
## 7542   61.69  136.00088 Heterosexual (straight)            Always
## 7543   88.45  194.99559 Heterosexual (straight)            Rarely
## 7544   58.97  130.00441                Not sure  Most of the time
## 7545   69.85  153.99030 Heterosexual (straight)             Never
## 7546   44.45   97.99383 Heterosexual (straight)         Sometimes
## 7547   63.50  139.99118 Heterosexual (straight)         Sometimes
## 7548   54.43  119.99559 Heterosexual (straight)            Always
## 7549   65.77  144.99559 Heterosexual (straight)  Most of the time
## 7550   48.08  105.99647 Heterosexual (straight)             Never
## 7551      NA         NA                Bisexual         Sometimes
## 7552   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7553   58.97  130.00441 Heterosexual (straight)            Always
## 7554   97.52  214.99118 Heterosexual (straight)            Rarely
## 7555      NA         NA                Bisexual            Always
## 7556   98.43  216.99735 Heterosexual (straight)         Sometimes
## 7557   81.65  180.00441 Heterosexual (straight)            Rarely
## 7558   48.99  108.00265 Heterosexual (straight)            Rarely
## 7559   53.98  119.00353 Heterosexual (straight)  Most of the time
## 7560   72.58  160.00882 Heterosexual (straight)            Always
## 7561  113.40  250.00000                Bisexual         Sometimes
## 7562  115.21  253.99030 Heterosexual (straight)  Most of the time
## 7563   74.84  164.99118          Some other way            Always
## 7564   72.58  160.00882 Heterosexual (straight)            Always
## 7565   78.93  174.00794 Heterosexual (straight)             Never
## 7566   96.62  213.00705          Some other way         Sometimes
## 7567   72.58  160.00882 Heterosexual (straight)  Most of the time
## 7568   48.54  107.01058 Heterosexual (straight)             Never
## 7569   91.17  200.99206 Heterosexual (straight)            Rarely
## 7570   80.74  177.99824 Heterosexual (straight)             Never
## 7571   68.04  150.00000 Heterosexual (straight)            Rarely
## 7572   56.70  125.00000 Heterosexual (straight)            Always
## 7573   79.38  175.00000                Bisexual         Sometimes
## 7574   72.58  160.00882 Heterosexual (straight)  Most of the time
## 7575   66.23  146.00970                Bisexual  Most of the time
## 7576   97.98  216.00529          Some other way            Always
## 7577   90.27  199.00794                Bisexual  Most of the time
## 7578   58.06  127.99824                Not sure            Always
## 7579      NA         NA Heterosexual (straight)         Sometimes
## 7580   61.24  135.00882                Bisexual         Sometimes
## 7581   54.43  119.99559 Heterosexual (straight)            Rarely
## 7582   76.20  167.98942 Heterosexual (straight)             Never
## 7583   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7584   49.90  110.00882          Some other way         Sometimes
## 7585   46.72  102.99824                Bisexual         Sometimes
## 7586   79.38  175.00000 Heterosexual (straight)            Rarely
## 7587   68.04  150.00000          Some other way            Rarely
## 7588   52.16  114.99118 Heterosexual (straight)         Sometimes
## 7589   51.71  113.99912                Bisexual            Always
## 7590   79.38  175.00000 Heterosexual (straight)             Never
## 7591   81.65  180.00441                Bisexual         Sometimes
## 7592   44.45   97.99383                Bisexual            Always
## 7593      NA         NA Heterosexual (straight)         Sometimes
## 7594   60.33  133.00265                Bisexual  Most of the time
## 7595   65.77  144.99559 Heterosexual (straight)         Sometimes
## 7596   52.16  114.99118          Gay or lesbian         Sometimes
## 7597   65.77  144.99559                Bisexual  Most of the time
## 7598   73.94  163.00705 Heterosexual (straight)            Rarely
## 7599   63.50  139.99118                Bisexual  Most of the time
## 7600   79.38  175.00000 Heterosexual (straight)            Rarely
## 7601   77.11  169.99559 Heterosexual (straight)             Never
## 7602   72.58  160.00882 Heterosexual (straight)             Never
## 7603   59.88  132.01058          Some other way            Always
## 7604   74.84  164.99118 Heterosexual (straight)  Most of the time
## 7605   63.50  139.99118 Heterosexual (straight)            Always
## 7606   76.66  169.00353 Heterosexual (straight)             Never
## 7607   88.91  196.00970 Heterosexual (straight)         Sometimes
## 7608   68.04  150.00000 Heterosexual (straight)             Never
## 7609   44.00   97.00176                Bisexual  Most of the time
## 7610   70.31  155.00441 Heterosexual (straight)         Sometimes
## 7611   56.70  125.00000 Heterosexual (straight)  Most of the time
## 7612   55.79  122.99383                Bisexual            Rarely
## 7613   63.50  139.99118 Heterosexual (straight)            Always
## 7614  117.94  260.00882 Heterosexual (straight)         Sometimes
## 7615  106.60  235.00882 Heterosexual (straight)            Rarely
## 7616   57.61  127.00617          Gay or lesbian         Sometimes
## 7617   80.29  177.00617 Heterosexual (straight)            Rarely
## 7618   54.43  119.99559          Some other way  Most of the time
## 7619   60.78  133.99471 Heterosexual (straight)  Most of the time
## 7620   99.79  219.99559          Gay or lesbian  Most of the time
## 7621   54.43  119.99559 Heterosexual (straight)            Rarely
## 7622   50.35  111.00088 Heterosexual (straight)            Rarely
## 7623   68.04  150.00000 Heterosexual (straight)  Most of the time
## 7624   64.86  142.98942                Bisexual            Always
## 7625   49.90  110.00882          Some other way            Always
## 7626   67.13  147.99383          Gay or lesbian         Sometimes
## 7627   52.16  114.99118 Heterosexual (straight)             Never
## 7628   96.62  213.00705 Heterosexual (straight)            Rarely
## 7629   50.35  111.00088 Heterosexual (straight)         Sometimes
## 7630   78.93  174.00794 Heterosexual (straight)  Most of the time
## 7631   52.16  114.99118                Bisexual            Rarely
## 7632   61.24  135.00882 Heterosexual (straight)  Most of the time
## 7633   48.99  108.00265 Heterosexual (straight)  Most of the time
## 7634   61.24  135.00882 Heterosexual (straight)         Sometimes
## 7635   54.89  121.00970 Heterosexual (straight)         Sometimes
## 7636   74.84  164.99118 Heterosexual (straight)            Rarely
## 7637   79.38  175.00000 Heterosexual (straight)             Never
## 7638   79.38  175.00000 Heterosexual (straight)  Most of the time
## 7639   94.35  208.00265 Heterosexual (straight)            Rarely
## 7640   63.96  141.00529                Bisexual            Rarely
## 7641   68.04  150.00000 Heterosexual (straight)            Rarely
## 7642      NA         NA Heterosexual (straight)            Rarely
## 7643   60.33  133.00265 Heterosexual (straight)         Sometimes
## 7644   68.04  150.00000 Heterosexual (straight)            Rarely
## 7645   58.97  130.00441 Heterosexual (straight)            Rarely
## 7646   65.32  144.00353 Heterosexual (straight)         Sometimes
## 7647  122.47  269.99559                Not sure            Rarely
## 7648   54.43  119.99559 Heterosexual (straight)            Always
## 7649   37.20   82.01058 Heterosexual (straight)         Sometimes
## 7650   56.25  124.00794 Heterosexual (straight)             Never
## 7651   56.25  124.00794                Bisexual  Most of the time
## 7652   56.70  125.00000 Heterosexual (straight)            Rarely
## 7653   80.74  177.99824 Heterosexual (straight)            Always
## 7654   56.70  125.00000 Heterosexual (straight)            Rarely
## 7655   86.18  189.99118 Heterosexual (straight)         Sometimes
## 7656   81.65  180.00441                Bisexual            Always
## 7657   81.65  180.00441 Heterosexual (straight)         Sometimes
## 7658   61.24  135.00882 Heterosexual (straight)         Sometimes
## 7659  102.06  225.00000                Bisexual            Always
## 7660   65.77  144.99559 Heterosexual (straight)         Sometimes
## 7661   43.09   94.99559 Heterosexual (straight)  Most of the time
## 7662   90.72  200.00000 Heterosexual (straight)            Always
## 7663  113.40  250.00000 Heterosexual (straight)         Sometimes
## 7664   58.97  130.00441                Bisexual  Most of the time
## 7665   83.92  185.00882 Heterosexual (straight)            Rarely
## 7666   58.51  128.99030                Not sure         Sometimes
## 7667   58.97  130.00441 Heterosexual (straight)             Never
## 7668   46.72  102.99824 Heterosexual (straight)            Rarely
## 7669   74.84  164.99118 Heterosexual (straight)            Rarely
## 7670   70.31  155.00441 Heterosexual (straight)  Most of the time
## 7671   45.36  100.00000                Bisexual            Always
## 7672   65.77  144.99559 Heterosexual (straight)         Sometimes
## 7673   61.24  135.00882 Heterosexual (straight)             Never
## 7674   64.41  141.99735 Heterosexual (straight)            Rarely
## 7675   61.69  136.00088          Gay or lesbian  Most of the time
## 7676   70.31  155.00441 Heterosexual (straight)  Most of the time
## 7677   56.25  124.00794                Not sure            Always
## 7678   57.61  127.00617 Heterosexual (straight)            Rarely
## 7679   48.99  108.00265 Heterosexual (straight)            Rarely
## 7680   47.63  105.00441                Not sure  Most of the time
## 7681   68.04  150.00000 Heterosexual (straight)  Most of the time
## 7682   54.43  119.99559          Some other way            Always
## 7683   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7684   73.48  161.99295 Heterosexual (straight)  Most of the time
## 7685   70.31  155.00441 Heterosexual (straight)         Sometimes
## 7686   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7687  104.33  230.00441 Heterosexual (straight)            Rarely
## 7688   61.24  135.00882                Bisexual            Always
## 7689      NA         NA Heterosexual (straight)             Never
## 7690  108.86  239.99118 Heterosexual (straight)             Never
## 7691   52.16  114.99118 Heterosexual (straight)  Most of the time
## 7692   70.31  155.00441 Heterosexual (straight)         Sometimes
## 7693   53.52  117.98942          Some other way  Most of the time
## 7694  114.31  252.00617 Heterosexual (straight)         Sometimes
## 7695   81.65  180.00441 Heterosexual (straight)              <NA>
## 7696  108.86  239.99118 Heterosexual (straight)             Never
## 7697   62.14  136.99295 Heterosexual (straight)         Sometimes
## 7698  104.33  230.00441                Bisexual         Sometimes
## 7699   95.26  210.00882                Bisexual            Always
## 7700      NA         NA Heterosexual (straight)            Always
## 7701   88.45  194.99559 Heterosexual (straight)         Sometimes
## 7702  111.13  244.99559 Heterosexual (straight)  Most of the time
## 7703   68.04  150.00000                Bisexual         Sometimes
## 7704   81.65  180.00441                Bisexual  Most of the time
## 7705   54.43  119.99559                Bisexual         Sometimes
## 7706   56.25  124.00794 Heterosexual (straight)            Rarely
## 7707   64.86  142.98942 Heterosexual (straight)  Most of the time
## 7708   77.11  169.99559 Heterosexual (straight)             Never
## 7709   86.18  189.99118                Bisexual            Always
## 7710  102.06  225.00000                Bisexual             Never
## 7711   52.62  116.00529 Heterosexual (straight)  Most of the time
## 7712  102.06  225.00000 Heterosexual (straight)  Most of the time
## 7713   52.62  116.00529 Heterosexual (straight)            Rarely
## 7714   78.02  172.00176                Bisexual             Never
## 7715   63.50  139.99118          Some other way  Most of the time
## 7716   61.24  135.00882 Heterosexual (straight)            Rarely
## 7717   65.77  144.99559 Heterosexual (straight)            Rarely
## 7718   48.08  105.99647 Heterosexual (straight)  Most of the time
## 7719   48.08  105.99647 Heterosexual (straight)  Most of the time
## 7720   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7721   58.97  130.00441 Heterosexual (straight)            Always
## 7722   79.83  175.99206                Bisexual         Sometimes
## 7723   65.77  144.99559 Heterosexual (straight)         Sometimes
## 7724   95.71  211.00088 Heterosexual (straight)            Rarely
## 7725   68.04  150.00000 Heterosexual (straight)            Rarely
## 7726   77.11  169.99559                Bisexual  Most of the time
## 7727   63.50  139.99118 Heterosexual (straight)            Rarely
## 7728   81.65  180.00441                Bisexual         Sometimes
## 7729  104.33  230.00441 Heterosexual (straight)  Most of the time
## 7730   54.43  119.99559                Not sure  Most of the time
## 7731   92.99  205.00441                Bisexual         Sometimes
## 7732   62.60  138.00705 Heterosexual (straight)            Rarely
## 7733   40.82   89.99118                Bisexual         Sometimes
## 7734   86.18  189.99118 Heterosexual (straight)         Sometimes
## 7735   90.72  200.00000 Heterosexual (straight)  Most of the time
## 7736   65.32  144.00353 Heterosexual (straight)            Always
## 7737   53.98  119.00353                Bisexual  Most of the time
## 7738   86.18  189.99118          Gay or lesbian            Always
## 7739   51.71  113.99912                Bisexual  Most of the time
## 7740   43.09   94.99559 Heterosexual (straight)            Rarely
## 7741   79.38  175.00000                Bisexual         Sometimes
## 7742   45.36  100.00000 Heterosexual (straight)         Sometimes
## 7743   54.89  121.00970 Heterosexual (straight)            Rarely
## 7744   62.60  138.00705 Heterosexual (straight)         Sometimes
## 7745   51.71  113.99912                Bisexual         Sometimes
## 7746   86.18  189.99118 Heterosexual (straight)             Never
## 7747   99.79  219.99559                Bisexual  Most of the time
## 7748   61.24  135.00882 Heterosexual (straight)            Rarely
## 7749   79.38  175.00000 Heterosexual (straight)             Never
## 7750   56.70  125.00000 Heterosexual (straight)            Rarely
## 7751   68.95  152.00617 Heterosexual (straight)         Sometimes
## 7752  144.24  317.98942 Heterosexual (straight)         Sometimes
## 7753   61.69  136.00088 Heterosexual (straight)             Never
## 7754   56.70  125.00000 Heterosexual (straight)  Most of the time
## 7755   65.77  144.99559                Not sure         Sometimes
## 7756   48.54  107.01058 Heterosexual (straight)  Most of the time
## 7757   56.70  125.00000                Bisexual  Most of the time
## 7758   83.01  183.00265                Bisexual  Most of the time
## 7759      NA         NA Heterosexual (straight)         Sometimes
## 7760   81.65  180.00441 Heterosexual (straight)         Sometimes
## 7761   58.97  130.00441                Bisexual            Always
## 7762      NA         NA                Not sure             Never
## 7763   58.51  128.99030          Gay or lesbian            Always
## 7764  109.77  241.99735                Bisexual  Most of the time
## 7765   73.03  161.00088 Heterosexual (straight)  Most of the time
## 7766   52.16  114.99118 Heterosexual (straight)            Rarely
## 7767   92.99  205.00441 Heterosexual (straight)         Sometimes
## 7768   85.73  188.99912                Not sure            Rarely
## 7769  106.60  235.00882 Heterosexual (straight)         Sometimes
## 7770   86.18  189.99118 Heterosexual (straight)            Rarely
## 7771   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7772   59.42  130.99647 Heterosexual (straight)         Sometimes
## 7773   99.79  219.99559 Heterosexual (straight)  Most of the time
## 7774   54.43  119.99559 Heterosexual (straight)  Most of the time
## 7775   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7776   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7777   63.50  139.99118                Bisexual            Rarely
## 7778   49.90  110.00882 Heterosexual (straight)            Rarely
## 7779   73.94  163.00705 Heterosexual (straight)            Rarely
## 7780      NA         NA Heterosexual (straight)  Most of the time
## 7781   56.70  125.00000 Heterosexual (straight)            Rarely
## 7782   58.06  127.99824 Heterosexual (straight)  Most of the time
## 7783   77.11  169.99559 Heterosexual (straight)  Most of the time
## 7784   90.72  200.00000 Heterosexual (straight)         Sometimes
## 7785   85.28  188.00705 Heterosexual (straight)            Rarely
## 7786   47.63  105.00441                Bisexual  Most of the time
## 7787   72.58  160.00882 Heterosexual (straight)         Sometimes
## 7788   62.60  138.00705 Heterosexual (straight)  Most of the time
## 7789   95.26  210.00882 Heterosexual (straight)         Sometimes
## 7790  112.49  247.99383                Bisexual  Most of the time
## 7791   63.50  139.99118 Heterosexual (straight)  Most of the time
## 7792   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7793   70.31  155.00441 Heterosexual (straight)             Never
## 7794   62.60  138.00705 Heterosexual (straight)            Rarely
## 7795   65.77  144.99559 Heterosexual (straight)  Most of the time
## 7796   61.69  136.00088                Not sure  Most of the time
## 7797  131.09  288.99912                Bisexual  Most of the time
## 7798   65.77  144.99559 Heterosexual (straight)             Never
## 7799  131.54  289.99118 Heterosexual (straight)  Most of the time
## 7800   77.11  169.99559                Bisexual            Rarely
## 7801   86.18  189.99118 Heterosexual (straight)              <NA>
## 7802   47.63  105.00441          Some other way  Most of the time
## 7803  115.67  255.00441                Bisexual         Sometimes
## 7804   72.58  160.00882 Heterosexual (straight)            Rarely
## 7805   55.79  122.99383                Bisexual         Sometimes
## 7806   74.84  164.99118 Heterosexual (straight)             Never
## 7807   61.24  135.00882 Heterosexual (straight)            Rarely
## 7808   53.52  117.98942 Heterosexual (straight)         Sometimes
## 7809   53.98  119.00353 Heterosexual (straight)         Sometimes
## 7810   57.61  127.00617 Heterosexual (straight)  Most of the time
## 7811      NA         NA Heterosexual (straight)         Sometimes
## 7812   63.50  139.99118 Heterosexual (straight)         Sometimes
## 7813   79.38  175.00000                Bisexual            Rarely
## 7814   81.65  180.00441 Heterosexual (straight)            Always
## 7815   45.36  100.00000 Heterosexual (straight)  Most of the time
## 7816   66.23  146.00970 Heterosexual (straight)            Rarely
## 7817   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7818   57.61  127.00617 Heterosexual (straight)             Never
## 7819   52.16  114.99118 Heterosexual (straight)              <NA>
## 7820   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7821   83.92  185.00882 Heterosexual (straight)            Rarely
## 7822   56.70  125.00000 Heterosexual (straight)         Sometimes
## 7823   73.94  163.00705 Heterosexual (straight)         Sometimes
## 7824   94.35  208.00265 Heterosexual (straight)            Always
## 7825   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7826   79.38  175.00000 Heterosexual (straight)  Most of the time
## 7827   77.11  169.99559 Heterosexual (straight)            Rarely
## 7828   69.85  153.99030 Heterosexual (straight)  Most of the time
## 7829   63.50  139.99118                Not sure         Sometimes
## 7830   90.72  200.00000          Some other way         Sometimes
## 7831   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7832   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7833   65.77  144.99559 Heterosexual (straight)             Never
## 7834  105.24  232.01058 Heterosexual (straight)  Most of the time
## 7835   49.44  108.99471 Heterosexual (straight)         Sometimes
## 7836   78.47  172.99383                Bisexual         Sometimes
## 7837   68.04  150.00000                Bisexual         Sometimes
## 7838   81.65  180.00441                Bisexual         Sometimes
## 7839   72.58  160.00882 Heterosexual (straight)            Rarely
## 7840   68.04  150.00000          Gay or lesbian            Always
## 7841  106.60  235.00882 Heterosexual (straight)            Always
## 7842   70.31  155.00441 Heterosexual (straight)             Never
## 7843   96.62  213.00705                Not sure  Most of the time
## 7844  116.58  257.01058 Heterosexual (straight)  Most of the time
## 7845   74.84  164.99118 Heterosexual (straight)            Rarely
## 7846   58.51  128.99030                Bisexual            Always
## 7847   48.08  105.99647 Heterosexual (straight)  Most of the time
## 7848   77.11  169.99559 Heterosexual (straight)         Sometimes
## 7849   69.85  153.99030 Heterosexual (straight)             Never
## 7850   79.38  175.00000          Gay or lesbian         Sometimes
## 7851      NA         NA                Not sure         Sometimes
## 7852  117.94  260.00882 Heterosexual (straight)  Most of the time
## 7853   58.97  130.00441                Bisexual  Most of the time
## 7854   77.11  169.99559                Bisexual  Most of the time
## 7855   52.16  114.99118 Heterosexual (straight)         Sometimes
## 7856   68.04  150.00000                Bisexual  Most of the time
## 7857   66.68  147.00176 Heterosexual (straight)            Rarely
## 7858   79.38  175.00000                Bisexual         Sometimes
## 7859   65.77  144.99559 Heterosexual (straight)            Rarely
## 7860   69.85  153.99030 Heterosexual (straight)  Most of the time
## 7861  111.13  244.99559 Heterosexual (straight)             Never
## 7862   62.60  138.00705          Gay or lesbian             Never
## 7863   74.84  164.99118 Heterosexual (straight)              <NA>
## 7864   68.04  150.00000                Bisexual         Sometimes
## 7865  122.47  269.99559 Heterosexual (straight)             Never
## 7866   80.29  177.00617 Heterosexual (straight)         Sometimes
## 7867   45.36  100.00000          Some other way  Most of the time
## 7868   49.44  108.99471                Bisexual         Sometimes
## 7869   48.99  108.00265 Heterosexual (straight)         Sometimes
## 7870   88.45  194.99559 Heterosexual (straight)         Sometimes
## 7871   64.41  141.99735                Bisexual  Most of the time
## 7872   49.90  110.00882 Heterosexual (straight)         Sometimes
## 7873   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7874   50.35  111.00088                Bisexual         Sometimes
## 7875   61.69  136.00088 Heterosexual (straight)            Always
## 7876   63.05  138.99912 Heterosexual (straight)            Rarely
## 7877   67.13  147.99383 Heterosexual (straight)             Never
## 7878   61.24  135.00882 Heterosexual (straight)         Sometimes
## 7879   63.50  139.99118 Heterosexual (straight)            Rarely
## 7880   84.37  186.00088 Heterosexual (straight)            Rarely
## 7881   53.07  116.99735 Heterosexual (straight)             Never
## 7882   83.92  185.00882 Heterosexual (straight)             Never
## 7883   58.97  130.00441 Heterosexual (straight)         Sometimes
## 7884   72.58  160.00882                Bisexual            Always
## 7885   49.90  110.00882          Some other way         Sometimes
## 7886   77.11  169.99559 Heterosexual (straight)  Most of the time
## 7887      NA         NA Heterosexual (straight)            Rarely
## 7888   72.58  160.00882 Heterosexual (straight)         Sometimes
## 7889   47.63  105.00441 Heterosexual (straight)            Rarely
## 7890   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7891   54.43  119.99559          Some other way            Always
## 7892   75.30  166.00529 Heterosexual (straight)             Never
## 7893   89.36  197.00176 Heterosexual (straight)  Most of the time
## 7894   52.16  114.99118 Heterosexual (straight)             Never
## 7895   45.36  100.00000 Heterosexual (straight)            Always
## 7896   46.72  102.99824 Heterosexual (straight)            Rarely
## 7897   54.43  119.99559                Bisexual         Sometimes
## 7898   86.18  189.99118 Heterosexual (straight)         Sometimes
## 7899   61.24  135.00882 Heterosexual (straight)         Sometimes
## 7900   67.13  147.99383 Heterosexual (straight)            Rarely
## 7901      NA         NA Heterosexual (straight)             Never
## 7902   74.84  164.99118                Bisexual  Most of the time
## 7903   78.02  172.00176 Heterosexual (straight)  Most of the time
## 7904  113.40  250.00000 Heterosexual (straight)            Rarely
## 7905   53.52  117.98942 Heterosexual (straight)            Rarely
## 7906   63.50  139.99118          Gay or lesbian            Always
## 7907   64.86  142.98942 Heterosexual (straight)  Most of the time
## 7908   46.72  102.99824 Heterosexual (straight)  Most of the time
## 7909  111.13  244.99559 Heterosexual (straight)         Sometimes
## 7910   64.41  141.99735 Heterosexual (straight)            Rarely
## 7911   54.43  119.99559 Heterosexual (straight)            Rarely
## 7912   90.72  200.00000                Bisexual            Always
## 7913   64.86  142.98942 Heterosexual (straight)            Rarely
## 7914   71.67  158.00265 Heterosexual (straight)             Never
## 7915   50.80  111.99295 Heterosexual (straight)             Never
## 7916   69.85  153.99030 Heterosexual (straight)             Never
## 7917   56.70  125.00000 Heterosexual (straight)             Never
## 7918   88.45  194.99559 Heterosexual (straight)         Sometimes
## 7919   67.13  147.99383 Heterosexual (straight)            Rarely
## 7920   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7921   87.54  192.98942          Some other way  Most of the time
## 7922   95.26  210.00882 Heterosexual (straight)             Never
## 7923   88.45  194.99559 Heterosexual (straight)            Rarely
## 7924   90.72  200.00000 Heterosexual (straight)             Never
## 7925   99.79  219.99559 Heterosexual (straight)            Rarely
## 7926   77.11  169.99559 Heterosexual (straight)            Rarely
## 7927   95.26  210.00882 Heterosexual (straight)            Rarely
## 7928   51.26  113.00705 Heterosexual (straight)            Always
## 7929  102.06  225.00000 Heterosexual (straight)            Rarely
## 7930   76.20  167.98942 Heterosexual (straight)  Most of the time
## 7931  106.60  235.00882 Heterosexual (straight)  Most of the time
## 7932      NA         NA                Not sure            Rarely
## 7933  160.12  352.99824 Heterosexual (straight)  Most of the time
## 7934   63.50  139.99118 Heterosexual (straight)             Never
## 7935  100.25  221.00970 Heterosexual (straight)         Sometimes
## 7936   95.26  210.00882 Heterosexual (straight)            Always
## 7937   74.39  163.99912 Heterosexual (straight)            Rarely
## 7938   71.67  158.00265 Heterosexual (straight)         Sometimes
## 7939   88.91  196.00970                Not sure  Most of the time
## 7940   63.50  139.99118 Heterosexual (straight)            Rarely
## 7941   62.14  136.99295 Heterosexual (straight)  Most of the time
## 7942   45.81  100.99206 Heterosexual (straight)            Rarely
## 7943   49.44  108.99471 Heterosexual (straight)         Sometimes
## 7944   86.18  189.99118 Heterosexual (straight)  Most of the time
## 7945   83.01  183.00265 Heterosexual (straight)             Never
## 7946   48.99  108.00265 Heterosexual (straight)  Most of the time
## 7947   81.65  180.00441 Heterosexual (straight)         Sometimes
## 7948   81.65  180.00441 Heterosexual (straight)             Never
## 7949   68.04  150.00000                Bisexual            Always
## 7950   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7951   70.31  155.00441 Heterosexual (straight)            Rarely
## 7952   71.67  158.00265 Heterosexual (straight)            Rarely
## 7953   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7954   91.17  200.99206 Heterosexual (straight)             Never
## 7955  113.40  250.00000                Bisexual            Always
## 7956  108.86  239.99118 Heterosexual (straight)             Never
## 7957   40.82   89.99118 Heterosexual (straight)         Sometimes
## 7958   72.58  160.00882 Heterosexual (straight)             Never
## 7959   97.52  214.99118 Heterosexual (straight)  Most of the time
## 7960   58.51  128.99030 Heterosexual (straight)         Sometimes
## 7961   61.24  135.00882 Heterosexual (straight)         Sometimes
## 7962   54.43  119.99559 Heterosexual (straight)         Sometimes
## 7963   49.90  110.00882 Heterosexual (straight)         Sometimes
## 7964  110.22  242.98942 Heterosexual (straight)             Never
## 7965   47.63  105.00441 Heterosexual (straight)         Sometimes
## 7966   74.84  164.99118 Heterosexual (straight)         Sometimes
## 7967   73.48  161.99295 Heterosexual (straight)            Always
## 7968      NA         NA Heterosexual (straight)            Rarely
## 7969   83.92  185.00882 Heterosexual (straight)            Always
## 7970   68.04  150.00000 Heterosexual (straight)         Sometimes
## 7971   82.56  182.01058                Bisexual            Always
## 7972   77.11  169.99559 Heterosexual (straight)            Rarely
## 7973   86.18  189.99118 Heterosexual (straight)             Never
## 7974   61.24  135.00882 Heterosexual (straight)             Never
## 7975   56.70  125.00000 Heterosexual (straight)            Rarely
## 7976   62.60  138.00705 Heterosexual (straight)             Never
## 7977   72.58  160.00882 Heterosexual (straight)              <NA>
## 7978   86.18  189.99118                Bisexual  Most of the time
## 7979  141.98  313.00705 Heterosexual (straight)         Sometimes
## 7980   67.59  149.00794                Bisexual  Most of the time
## 7981  108.41  238.99912                Bisexual  Most of the time
## 7982   56.70  125.00000          Gay or lesbian  Most of the time
## 7983   61.24  135.00882 Heterosexual (straight)  Most of the time
## 7984   54.43  119.99559 Heterosexual (straight)             Never
## 7985   91.17  200.99206 Heterosexual (straight)            Always
## 7986  104.33  230.00441 Heterosexual (straight)            Rarely
## 7987   54.43  119.99559 Heterosexual (straight)  Most of the time
## 7988  127.01  280.00441 Heterosexual (straight)  Most of the time
## 7989   79.38  175.00000 Heterosexual (straight)            Rarely
## 7990  113.40  250.00000          Gay or lesbian  Most of the time
## 7991   61.24  135.00882 Heterosexual (straight)            Rarely
## 7992   99.79  219.99559                Bisexual  Most of the time
## 7993   61.69  136.00088 Heterosexual (straight)         Sometimes
## 7994   88.00  194.00353 Heterosexual (straight)         Sometimes
## 7995   45.36  100.00000                Bisexual         Sometimes
## 7996   61.24  135.00882 Heterosexual (straight)             Never
## 7997   70.31  155.00441 Heterosexual (straight)  Most of the time
## 7998   68.04  150.00000 Heterosexual (straight)            Rarely
## 7999   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8000   81.65  180.00441 Heterosexual (straight)             Never
## 8001   68.04  150.00000 Heterosexual (straight)             Never
## 8002   84.82  186.99295 Heterosexual (straight)  Most of the time
## 8003   58.06  127.99824 Heterosexual (straight)  Most of the time
## 8004   63.50  139.99118                Bisexual  Most of the time
## 8005   95.26  210.00882                Not sure         Sometimes
## 8006   49.90  110.00882                Not sure             Never
## 8007   51.26  113.00705 Heterosexual (straight)         Sometimes
## 8008   64.41  141.99735          Gay or lesbian            Always
## 8009  129.28  285.00882                Bisexual         Sometimes
## 8010   40.82   89.99118 Heterosexual (straight)         Sometimes
## 8011   74.84  164.99118 Heterosexual (straight)             Never
## 8012   70.31  155.00441                Bisexual            Rarely
## 8013   63.96  141.00529 Heterosexual (straight)  Most of the time
## 8014   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8015      NA         NA Heterosexual (straight)         Sometimes
## 8016   58.97  130.00441                Bisexual  Most of the time
## 8017   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8018   58.97  130.00441 Heterosexual (straight)              <NA>
## 8019   45.36  100.00000                Bisexual  Most of the time
## 8020  176.45  388.99912                Not sure            Always
## 8021   97.52  214.99118          Some other way         Sometimes
## 8022      NA         NA                Not sure  Most of the time
## 8023   52.16  114.99118 Heterosexual (straight)             Never
## 8024   70.31  155.00441 Heterosexual (straight)  Most of the time
## 8025   56.70  125.00000 Heterosexual (straight)            Rarely
## 8026   52.62  116.00529 Heterosexual (straight)            Rarely
## 8027   69.85  153.99030                Bisexual              <NA>
## 8028   63.96  141.00529 Heterosexual (straight)         Sometimes
## 8029   63.50  139.99118                Bisexual  Most of the time
## 8030   54.43  119.99559                Bisexual  Most of the time
## 8031      NA         NA Heterosexual (straight)         Sometimes
## 8032   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8033   84.37  186.00088 Heterosexual (straight)  Most of the time
## 8034   55.79  122.99383          Some other way  Most of the time
## 8035   31.30   69.00353 Heterosexual (straight)         Sometimes
## 8036   83.92  185.00882 Heterosexual (straight)            Always
## 8037   77.11  169.99559                Bisexual  Most of the time
## 8038   64.86  142.98942 Heterosexual (straight)            Rarely
## 8039   84.82  186.99295 Heterosexual (straight)         Sometimes
## 8040   57.15  125.99206                Bisexual  Most of the time
## 8041   64.86  142.98942          Gay or lesbian         Sometimes
## 8042   74.84  164.99118 Heterosexual (straight)         Sometimes
## 8043  117.94  260.00882 Heterosexual (straight)             Never
## 8044   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8045   47.63  105.00441                Bisexual            Always
## 8046   74.84  164.99118 Heterosexual (straight)  Most of the time
## 8047   54.43  119.99559          Some other way         Sometimes
## 8048   65.77  144.99559 Heterosexual (straight)            Rarely
## 8049   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8050   72.58  160.00882          Gay or lesbian            Rarely
## 8051   77.11  169.99559 Heterosexual (straight)            Always
## 8052   81.65  180.00441                Not sure         Sometimes
## 8053   79.83  175.99206          Some other way         Sometimes
## 8054   59.88  132.01058                Bisexual  Most of the time
## 8055   76.66  169.00353                Bisexual            Always
## 8056   54.43  119.99559 Heterosexual (straight)  Most of the time
## 8057   89.81  197.99383 Heterosexual (straight)         Sometimes
## 8058   79.38  175.00000 Heterosexual (straight)  Most of the time
## 8059   81.65  180.00441                Bisexual  Most of the time
## 8060   74.84  164.99118 Heterosexual (straight)         Sometimes
## 8061   67.59  149.00794 Heterosexual (straight)            Always
## 8062   58.97  130.00441 Heterosexual (straight)             Never
## 8063   63.50  139.99118 Heterosexual (straight)            Rarely
## 8064   81.65  180.00441 Heterosexual (straight)  Most of the time
## 8065   77.11  169.99559 Heterosexual (straight)             Never
## 8066   63.50  139.99118 Heterosexual (straight)            Always
## 8067   81.19  178.99030                Not sure            Rarely
## 8068      NA         NA Heterosexual (straight)         Sometimes
## 8069   63.50  139.99118 Heterosexual (straight)             Never
## 8070   61.24  135.00882                Not sure  Most of the time
## 8071   99.79  219.99559                Bisexual  Most of the time
## 8072   58.97  130.00441 Heterosexual (straight)  Most of the time
## 8073   98.88  217.98942          Some other way         Sometimes
## 8074   55.79  122.99383 Heterosexual (straight)  Most of the time
## 8075   49.90  110.00882 Heterosexual (straight)  Most of the time
## 8076      NA         NA                Bisexual            Rarely
## 8077   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8078  133.36  294.00353 Heterosexual (straight)             Never
## 8079   63.50  139.99118 Heterosexual (straight)             Never
## 8080   99.79  219.99559                Bisexual  Most of the time
## 8081      NA         NA          Some other way         Sometimes
## 8082  104.33  230.00441 Heterosexual (straight)            Rarely
## 8083   52.16  114.99118                Bisexual  Most of the time
## 8084   61.24  135.00882 Heterosexual (straight)            Rarely
## 8085  102.06  225.00000 Heterosexual (straight)         Sometimes
## 8086   96.16  211.99295 Heterosexual (straight)         Sometimes
## 8087   69.40  152.99824 Heterosexual (straight)         Sometimes
## 8088  117.94  260.00882 Heterosexual (straight)            Rarely
## 8089   75.30  166.00529 Heterosexual (straight)         Sometimes
## 8090  106.60  235.00882 Heterosexual (straight)            Rarely
## 8091  121.11  266.99735 Heterosexual (straight)            Rarely
## 8092   95.26  210.00882                Bisexual            Rarely
## 8093   85.28  188.00705 Heterosexual (straight)            Rarely
## 8094   83.92  185.00882 Heterosexual (straight)         Sometimes
## 8095   74.39  163.99912                Bisexual            Always
## 8096   58.97  130.00441 Heterosexual (straight)  Most of the time
## 8097   68.95  152.00617          Gay or lesbian            Always
## 8098   65.77  144.99559 Heterosexual (straight)         Sometimes
## 8099   68.04  150.00000 Heterosexual (straight)            Always
## 8100  124.74  275.00000 Heterosexual (straight)             Never
## 8101   49.90  110.00882                Bisexual            Always
## 8102   68.95  152.00617 Heterosexual (straight)            Rarely
## 8103   89.81  197.99383          Gay or lesbian            Rarely
## 8104   53.52  117.98942 Heterosexual (straight)  Most of the time
## 8105   86.18  189.99118 Heterosexual (straight)         Sometimes
## 8106   65.77  144.99559                Bisexual         Sometimes
## 8107   86.18  189.99118 Heterosexual (straight)             Never
## 8108   61.69  136.00088 Heterosexual (straight)             Never
## 8109      NA         NA Heterosexual (straight)             Never
## 8110   58.97  130.00441 Heterosexual (straight)         Sometimes
## 8111      NA         NA                Bisexual            Rarely
## 8112   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8113      NA         NA Heterosexual (straight)             Never
## 8114   65.77  144.99559 Heterosexual (straight)  Most of the time
## 8115   73.94  163.00705 Heterosexual (straight)  Most of the time
## 8116   95.26  210.00882 Heterosexual (straight)         Sometimes
## 8117  113.40  250.00000 Heterosexual (straight)         Sometimes
## 8118   44.91   99.00794          Some other way  Most of the time
## 8119   68.04  150.00000 Heterosexual (straight)            Rarely
## 8120      NA         NA Heterosexual (straight)            Rarely
## 8121   46.72  102.99824 Heterosexual (straight)         Sometimes
## 8122   56.70  125.00000                Bisexual            Always
## 8123   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8124   68.04  150.00000 Heterosexual (straight)             Never
## 8125      NA         NA                Not sure  Most of the time
## 8126      NA         NA          Some other way              <NA>
## 8127   97.52  214.99118 Heterosexual (straight)         Sometimes
## 8128   66.68  147.00176 Heterosexual (straight)            Rarely
## 8129      NA         NA                Bisexual  Most of the time
## 8130  127.01  280.00441                Bisexual  Most of the time
## 8131      NA         NA                Bisexual             Never
## 8132   71.22  157.01058 Heterosexual (straight)            Rarely
## 8133   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8134   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8135   56.25  124.00794 Heterosexual (straight)         Sometimes
## 8136   62.60  138.00705 Heterosexual (straight)  Most of the time
## 8137   49.90  110.00882 Heterosexual (straight)         Sometimes
## 8138   61.24  135.00882 Heterosexual (straight)            Rarely
## 8139   72.58  160.00882          Gay or lesbian  Most of the time
## 8140   54.89  121.00970 Heterosexual (straight)         Sometimes
## 8141  104.33  230.00441                Bisexual         Sometimes
## 8142   48.08  105.99647 Heterosexual (straight)  Most of the time
## 8143   36.29   80.00441          Some other way              <NA>
## 8144   52.16  114.99118          Gay or lesbian  Most of the time
## 8145  108.86  239.99118 Heterosexual (straight)            Rarely
## 8146   80.74  177.99824 Heterosexual (straight)            Rarely
## 8147   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8148   63.50  139.99118 Heterosexual (straight)             Never
## 8149   86.18  189.99118 Heterosexual (straight)         Sometimes
## 8150   96.62  213.00705 Heterosexual (straight)         Sometimes
## 8151   65.77  144.99559 Heterosexual (straight)         Sometimes
## 8152   90.72  200.00000 Heterosexual (straight)  Most of the time
## 8153   52.16  114.99118                Not sure            Rarely
## 8154   65.77  144.99559 Heterosexual (straight)            Rarely
## 8155   53.52  117.98942 Heterosexual (straight)  Most of the time
## 8156   65.77  144.99559 Heterosexual (straight)         Sometimes
## 8157   90.72  200.00000 Heterosexual (straight)  Most of the time
## 8158   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8159   54.43  119.99559                Bisexual            Rarely
## 8160  107.96  238.00705 Heterosexual (straight)  Most of the time
## 8161   58.51  128.99030 Heterosexual (straight)            Rarely
## 8162   83.92  185.00882 Heterosexual (straight)            Rarely
## 8163  127.01  280.00441 Heterosexual (straight)         Sometimes
## 8164   58.97  130.00441 Heterosexual (straight)            Rarely
## 8165   63.50  139.99118 Heterosexual (straight)             Never
## 8166   49.90  110.00882 Heterosexual (straight)            Rarely
## 8167   84.37  186.00088                Not sure             Never
## 8168   64.41  141.99735 Heterosexual (straight)            Rarely
## 8169   69.85  153.99030                Bisexual            Rarely
## 8170  113.40  250.00000 Heterosexual (straight)  Most of the time
## 8171   81.65  180.00441 Heterosexual (straight)            Rarely
## 8172   59.42  130.99647 Heterosexual (straight)            Rarely
## 8173   65.77  144.99559 Heterosexual (straight)         Sometimes
## 8174   65.77  144.99559 Heterosexual (straight)  Most of the time
## 8175      NA         NA Heterosexual (straight)            Rarely
## 8176   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8177      NA         NA Heterosexual (straight)  Most of the time
## 8178   90.72  200.00000                Not sure  Most of the time
## 8179   59.42  130.99647 Heterosexual (straight)            Rarely
## 8180  104.33  230.00441 Heterosexual (straight)         Sometimes
## 8181   60.78  133.99471                Bisexual  Most of the time
## 8182   62.60  138.00705          Gay or lesbian            Rarely
## 8183   65.77  144.99559 Heterosexual (straight)             Never
## 8184  113.85  250.99206 Heterosexual (straight)            Rarely
## 8185   77.11  169.99559                Bisexual  Most of the time
## 8186   66.23  146.00970          Gay or lesbian            Always
## 8187   52.16  114.99118 Heterosexual (straight)             Never
## 8188   73.94  163.00705 Heterosexual (straight)         Sometimes
## 8189   68.95  152.00617 Heterosexual (straight)             Never
## 8190   53.52  117.98942                Bisexual  Most of the time
## 8191   49.90  110.00882 Heterosexual (straight)         Sometimes
## 8192   50.35  111.00088 Heterosexual (straight)            Rarely
## 8193  124.74  275.00000 Heterosexual (straight)            Rarely
## 8194   81.65  180.00441 Heterosexual (straight)         Sometimes
## 8195   48.08  105.99647 Heterosexual (straight)              <NA>
## 8196  115.67  255.00441                Bisexual         Sometimes
## 8197   45.36  100.00000 Heterosexual (straight)             Never
## 8198   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8199   70.31  155.00441 Heterosexual (straight)             Never
## 8200   90.72  200.00000          Some other way            Rarely
## 8201   51.26  113.00705                Bisexual  Most of the time
## 8202   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8203   68.04  150.00000 Heterosexual (straight)             Never
## 8204   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8205   83.92  185.00882 Heterosexual (straight)  Most of the time
## 8206   72.58  160.00882 Heterosexual (straight)            Rarely
## 8207   99.79  219.99559 Heterosexual (straight)  Most of the time
## 8208   83.92  185.00882 Heterosexual (straight)             Never
## 8209   58.97  130.00441 Heterosexual (straight)  Most of the time
## 8210   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8211   53.07  116.99735 Heterosexual (straight)         Sometimes
## 8212   86.18  189.99118          Gay or lesbian  Most of the time
## 8213   45.36  100.00000 Heterosexual (straight)         Sometimes
## 8214   57.61  127.00617 Heterosexual (straight)         Sometimes
## 8215   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8216   70.31  155.00441 Heterosexual (straight)            Rarely
## 8217   68.04  150.00000 Heterosexual (straight)  Most of the time
## 8218   79.38  175.00000          Some other way             Never
## 8219   74.84  164.99118 Heterosexual (straight)  Most of the time
## 8220   55.79  122.99383                Bisexual  Most of the time
## 8221      NA         NA                Bisexual         Sometimes
## 8222   86.18  189.99118 Heterosexual (straight)             Never
## 8223   68.04  150.00000 Heterosexual (straight)            Rarely
## 8224   65.77  144.99559 Heterosexual (straight)  Most of the time
## 8225   52.62  116.00529 Heterosexual (straight)            Rarely
## 8226   90.72  200.00000 Heterosexual (straight)             Never
## 8227   77.11  169.99559                Bisexual         Sometimes
## 8228   42.18   92.98942 Heterosexual (straight)  Most of the time
## 8229  111.13  244.99559 Heterosexual (straight)         Sometimes
## 8230   83.46  183.99471 Heterosexual (straight)             Never
## 8231   81.65  180.00441 Heterosexual (straight)            Always
## 8232   70.31  155.00441 Heterosexual (straight)         Sometimes
## 8233   79.38  175.00000 Heterosexual (straight)  Most of the time
## 8234   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8235   81.65  180.00441          Some other way  Most of the time
## 8236   69.40  152.99824                Bisexual         Sometimes
## 8237   66.68  147.00176 Heterosexual (straight)            Rarely
## 8238   59.42  130.99647                Not sure         Sometimes
## 8239   58.97  130.00441 Heterosexual (straight)            Rarely
## 8240   53.07  116.99735 Heterosexual (straight)            Rarely
## 8241   81.65  180.00441 Heterosexual (straight)            Rarely
## 8242   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8243   82.10  180.99647 Heterosexual (straight)            Rarely
## 8244   57.61  127.00617 Heterosexual (straight)  Most of the time
## 8245   46.72  102.99824 Heterosexual (straight)  Most of the time
## 8246   79.38  175.00000 Heterosexual (straight)         Sometimes
## 8247   82.56  182.01058 Heterosexual (straight)  Most of the time
## 8248   90.72  200.00000                Bisexual  Most of the time
## 8249   65.77  144.99559                Bisexual            Always
## 8250   62.60  138.00705 Heterosexual (straight)         Sometimes
## 8251   62.60  138.00705 Heterosexual (straight)  Most of the time
## 8252   47.63  105.00441 Heterosexual (straight)         Sometimes
## 8253   63.50  139.99118 Heterosexual (straight)            Rarely
## 8254   72.58  160.00882 Heterosexual (straight)  Most of the time
## 8255   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8256   68.04  150.00000 Heterosexual (straight)            Rarely
## 8257   58.97  130.00441 Heterosexual (straight)         Sometimes
## 8258   68.04  150.00000 Heterosexual (straight)  Most of the time
## 8259   65.77  144.99559                Bisexual            Always
## 8260   45.36  100.00000                Bisexual  Most of the time
## 8261   81.65  180.00441 Heterosexual (straight)  Most of the time
## 8262   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8263   72.58  160.00882          Gay or lesbian  Most of the time
## 8264   53.52  117.98942 Heterosexual (straight)            Always
## 8265   51.71  113.99912                Bisexual         Sometimes
## 8266   58.97  130.00441 Heterosexual (straight)            Always
## 8267   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8268   65.77  144.99559 Heterosexual (straight)  Most of the time
## 8269   81.65  180.00441 Heterosexual (straight)            Rarely
## 8270   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8271   79.38  175.00000 Heterosexual (straight)             Never
## 8272   52.16  114.99118 Heterosexual (straight)             Never
## 8273   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8274   77.11  169.99559 Heterosexual (straight)             Never
## 8275   63.05  138.99912 Heterosexual (straight)  Most of the time
## 8276   52.16  114.99118                Not sure            Rarely
## 8277   44.45   97.99383                Not sure         Sometimes
## 8278   98.88  217.98942 Heterosexual (straight)         Sometimes
## 8279  122.93  271.00970 Heterosexual (straight)         Sometimes
## 8280   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8281   55.34  122.00176 Heterosexual (straight)  Most of the time
## 8282   68.04  150.00000 Heterosexual (straight)             Never
## 8283   74.39  163.99912                Not sure              <NA>
## 8284   61.24  135.00882          Gay or lesbian            Always
## 8285   61.69  136.00088 Heterosexual (straight)             Never
## 8286   79.38  175.00000 Heterosexual (straight)            Rarely
## 8287   59.42  130.99647 Heterosexual (straight)            Rarely
## 8288  127.01  280.00441 Heterosexual (straight)            Rarely
## 8289   49.90  110.00882                Bisexual         Sometimes
## 8290   72.58  160.00882          Gay or lesbian  Most of the time
## 8291  129.28  285.00882 Heterosexual (straight)  Most of the time
## 8292   47.63  105.00441 Heterosexual (straight)         Sometimes
## 8293   61.24  135.00882 Heterosexual (straight)            Rarely
## 8294   56.70  125.00000 Heterosexual (straight)             Never
## 8295   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8296   58.06  127.99824 Heterosexual (straight)  Most of the time
## 8297   93.44  205.99647                Bisexual         Sometimes
## 8298      NA         NA                Bisexual         Sometimes
## 8299   47.63  105.00441 Heterosexual (straight)            Rarely
## 8300   61.24  135.00882 Heterosexual (straight)            Rarely
## 8301  121.56  267.98942                Bisexual         Sometimes
## 8302   42.18   92.98942                Bisexual         Sometimes
## 8303   54.43  119.99559 Heterosexual (straight)             Never
## 8304   74.84  164.99118 Heterosexual (straight)         Sometimes
## 8305   61.24  135.00882                Bisexual  Most of the time
## 8306   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8307  151.96  335.00882 Heterosexual (straight)            Rarely
## 8308   90.72  200.00000 Heterosexual (straight)         Sometimes
## 8309  104.33  230.00441 Heterosexual (straight)             Never
## 8310   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8311   68.04  150.00000 Heterosexual (straight)  Most of the time
## 8312      NA         NA Heterosexual (straight)            Always
## 8313   63.50  139.99118 Heterosexual (straight)            Rarely
## 8314   86.18  189.99118                Not sure            Always
## 8315   63.50  139.99118 Heterosexual (straight)            Rarely
## 8316  104.33  230.00441 Heterosexual (straight)            Always
## 8317   94.35  208.00265                Bisexual  Most of the time
## 8318   68.04  150.00000 Heterosexual (straight)            Rarely
## 8319   72.58  160.00882 Heterosexual (straight)  Most of the time
## 8320   65.77  144.99559                Bisexual         Sometimes
## 8321   56.70  125.00000                Bisexual            Always
## 8322   68.04  150.00000                Bisexual            Always
## 8323  106.14  233.99471                Not sure         Sometimes
## 8324   56.70  125.00000                Bisexual  Most of the time
## 8325   47.63  105.00441 Heterosexual (straight)  Most of the time
## 8326      NA         NA                Not sure            Rarely
## 8327  104.33  230.00441 Heterosexual (straight)  Most of the time
## 8328   81.65  180.00441                Bisexual  Most of the time
## 8329   63.05  138.99912 Heterosexual (straight)            Always
## 8330   97.52  214.99118 Heterosexual (straight)         Sometimes
## 8331   73.94  163.00705 Heterosexual (straight)             Never
## 8332   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8333   79.38  175.00000 Heterosexual (straight)  Most of the time
## 8334   57.15  125.99206                Bisexual         Sometimes
## 8335   97.52  214.99118 Heterosexual (straight)         Sometimes
## 8336   87.09  191.99735 Heterosexual (straight)         Sometimes
## 8337   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8338   61.24  135.00882 Heterosexual (straight)            Rarely
## 8339   56.25  124.00794 Heterosexual (straight)  Most of the time
## 8340   70.31  155.00441 Heterosexual (straight)            Always
## 8341   72.58  160.00882 Heterosexual (straight)  Most of the time
## 8342   62.14  136.99295                Bisexual  Most of the time
## 8343   49.90  110.00882 Heterosexual (straight)  Most of the time
## 8344   86.18  189.99118 Heterosexual (straight)  Most of the time
## 8345   49.90  110.00882                Bisexual  Most of the time
## 8346   52.16  114.99118 Heterosexual (straight)  Most of the time
## 8347      NA         NA                Bisexual            Always
## 8348   90.72  200.00000                Not sure            Always
## 8349   74.84  164.99118 Heterosexual (straight)  Most of the time
## 8350   79.38  175.00000 Heterosexual (straight)         Sometimes
## 8351   60.33  133.00265 Heterosexual (straight)             Never
## 8352  131.09  288.99912 Heterosexual (straight)             Never
## 8353   55.34  122.00176 Heterosexual (straight)            Rarely
## 8354   48.54  107.01058          Some other way            Always
## 8355   58.97  130.00441 Heterosexual (straight)            Rarely
## 8356  115.21  253.99030          Some other way         Sometimes
## 8357   88.45  194.99559 Heterosexual (straight)         Sometimes
## 8358   74.84  164.99118                Bisexual            Always
## 8359   69.85  153.99030 Heterosexual (straight)            Rarely
## 8360   90.72  200.00000 Heterosexual (straight)  Most of the time
## 8361   90.72  200.00000 Heterosexual (straight)             Never
## 8362   61.24  135.00882                Bisexual            Always
## 8363   48.08  105.99647                Bisexual            Always
## 8364   80.74  177.99824                Not sure  Most of the time
## 8365   77.11  169.99559 Heterosexual (straight)             Never
## 8366   47.63  105.00441 Heterosexual (straight)         Sometimes
## 8367   72.58  160.00882 Heterosexual (straight)            Rarely
## 8368   95.26  210.00882 Heterosexual (straight)             Never
## 8369   72.58  160.00882 Heterosexual (straight)  Most of the time
## 8370   72.12  158.99471                Not sure         Sometimes
## 8371   92.08  202.99824 Heterosexual (straight)         Sometimes
## 8372  100.25  221.00970 Heterosexual (straight)            Always
## 8373   45.36  100.00000 Heterosexual (straight)            Always
## 8374   88.45  194.99559 Heterosexual (straight)            Rarely
## 8375   47.17  103.99030 Heterosexual (straight)         Sometimes
## 8376   52.16  114.99118                Bisexual         Sometimes
## 8377   58.97  130.00441 Heterosexual (straight)         Sometimes
## 8378   44.45   97.99383                Bisexual  Most of the time
## 8379   77.11  169.99559 Heterosexual (straight)         Sometimes
## 8380  144.70  319.00353 Heterosexual (straight)            Rarely
## 8381   72.58  160.00882 Heterosexual (straight)             Never
## 8382   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8383  109.77  241.99735 Heterosexual (straight)         Sometimes
## 8384   72.58  160.00882                Not sure            Always
## 8385   74.84  164.99118 Heterosexual (straight)            Rarely
## 8386   38.56   85.00882                Bisexual         Sometimes
## 8387   97.98  216.00529 Heterosexual (straight)         Sometimes
## 8388   53.52  117.98942 Heterosexual (straight)            Rarely
## 8389   73.48  161.99295 Heterosexual (straight)            Rarely
## 8390   57.15  125.99206                Bisexual  Most of the time
## 8391   38.56   85.00882                Bisexual  Most of the time
## 8392   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8393   86.18  189.99118                Not sure            Always
## 8394   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8395   49.90  110.00882 Heterosexual (straight)            Rarely
## 8396   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8397   81.65  180.00441 Heterosexual (straight)         Sometimes
## 8398   86.18  189.99118 Heterosexual (straight)         Sometimes
## 8399   68.04  150.00000 Heterosexual (straight)            Rarely
## 8400   58.97  130.00441 Heterosexual (straight)            Rarely
## 8401   53.07  116.99735                Bisexual            Always
## 8402   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8403   81.65  180.00441 Heterosexual (straight)         Sometimes
## 8404   58.06  127.99824 Heterosexual (straight)            Rarely
## 8405   92.53  203.99030 Heterosexual (straight)         Sometimes
## 8406  108.86  239.99118          Gay or lesbian         Sometimes
## 8407   70.31  155.00441          Some other way         Sometimes
## 8408   65.77  144.99559 Heterosexual (straight)  Most of the time
## 8409   49.90  110.00882                Bisexual  Most of the time
## 8410   59.88  132.01058 Heterosexual (straight)         Sometimes
## 8411   89.81  197.99383 Heterosexual (straight)  Most of the time
## 8412   76.20  167.98942 Heterosexual (straight)            Rarely
## 8413   47.63  105.00441 Heterosexual (straight)            Rarely
## 8414   49.90  110.00882                Bisexual         Sometimes
## 8415   65.77  144.99559 Heterosexual (straight)            Rarely
## 8416   54.43  119.99559                Bisexual            Always
## 8417   78.02  172.00176          Gay or lesbian  Most of the time
## 8418      NA         NA                Not sure         Sometimes
## 8419   88.00  194.00353                Bisexual  Most of the time
## 8420   53.98  119.00353 Heterosexual (straight)             Never
## 8421   44.45   97.99383 Heterosexual (straight)             Never
## 8422   43.09   94.99559 Heterosexual (straight)         Sometimes
## 8423   77.11  169.99559 Heterosexual (straight)  Most of the time
## 8424      NA         NA Heterosexual (straight)  Most of the time
## 8425   83.92  185.00882 Heterosexual (straight)             Never
## 8426   68.04  150.00000 Heterosexual (straight)            Rarely
## 8427   50.35  111.00088 Heterosexual (straight)  Most of the time
## 8428   63.50  139.99118 Heterosexual (straight)            Rarely
## 8429   54.43  119.99559 Heterosexual (straight)            Always
## 8430   83.92  185.00882                Bisexual            Always
## 8431   67.59  149.00794 Heterosexual (straight)  Most of the time
## 8432   74.84  164.99118 Heterosexual (straight)  Most of the time
## 8433   93.90  207.01058                Bisexual            Always
## 8434   89.81  197.99383                Not sure            Always
## 8435   68.04  150.00000 Heterosexual (straight)             Never
## 8436   70.76  155.99647 Heterosexual (straight)         Sometimes
## 8437   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8438  140.62  310.00882 Heterosexual (straight)  Most of the time
## 8439   50.80  111.99295                Bisexual         Sometimes
## 8440   58.97  130.00441 Heterosexual (straight)            Always
## 8441   52.16  114.99118 Heterosexual (straight)  Most of the time
## 8442      NA         NA                Bisexual         Sometimes
## 8443   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8444   44.00   97.00176 Heterosexual (straight)            Rarely
## 8445   72.58  160.00882                Bisexual  Most of the time
## 8446   51.26  113.00705 Heterosexual (straight)  Most of the time
## 8447   69.85  153.99030                Bisexual  Most of the time
## 8448  131.54  289.99118 Heterosexual (straight)            Always
## 8449   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8450   79.38  175.00000 Heterosexual (straight)             Never
## 8451   86.18  189.99118 Heterosexual (straight)             Never
## 8452   68.04  150.00000 Heterosexual (straight)            Rarely
## 8453   74.84  164.99118 Heterosexual (straight)            Rarely
## 8454   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8455   53.98  119.00353 Heterosexual (straight)  Most of the time
## 8456   77.11  169.99559 Heterosexual (straight)         Sometimes
## 8457   73.03  161.00088 Heterosexual (straight)            Rarely
## 8458  122.47  269.99559 Heterosexual (straight)            Rarely
## 8459      NA         NA                Not sure  Most of the time
## 8460   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8461   81.65  180.00441 Heterosexual (straight)            Rarely
## 8462  102.51  225.99206                Bisexual            Rarely
## 8463   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8464   83.46  183.99471 Heterosexual (straight)            Rarely
## 8465   63.05  138.99912 Heterosexual (straight)            Rarely
## 8466   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8467  108.86  239.99118 Heterosexual (straight)         Sometimes
## 8468   64.41  141.99735 Heterosexual (straight)  Most of the time
## 8469   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8470   85.28  188.00705                Not sure         Sometimes
## 8471   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8472   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8473   73.03  161.00088 Heterosexual (straight)             Never
## 8474   61.24  135.00882 Heterosexual (straight)            Rarely
## 8475  117.94  260.00882 Heterosexual (straight)         Sometimes
## 8476   58.97  130.00441 Heterosexual (straight)         Sometimes
## 8477      NA         NA Heterosexual (straight)  Most of the time
## 8478   83.92  185.00882 Heterosexual (straight)             Never
## 8479   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8480   82.10  180.99647 Heterosexual (straight)  Most of the time
## 8481   65.77  144.99559 Heterosexual (straight)         Sometimes
## 8482  180.99  399.00794 Heterosexual (straight)            Always
## 8483   66.23  146.00970 Heterosexual (straight)             Never
## 8484  106.60  235.00882 Heterosexual (straight)             Never
## 8485      NA         NA          Some other way  Most of the time
## 8486   44.45   97.99383 Heterosexual (straight)         Sometimes
## 8487  100.70  222.00176 Heterosexual (straight)            Always
## 8488   92.99  205.00441 Heterosexual (straight)  Most of the time
## 8489   58.06  127.99824          Some other way             Never
## 8490   53.07  116.99735                Not sure         Sometimes
## 8491   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8492   38.56   85.00882 Heterosexual (straight)  Most of the time
## 8493      NA         NA          Gay or lesbian         Sometimes
## 8494   70.31  155.00441 Heterosexual (straight)             Never
## 8495   63.50  139.99118                Bisexual            Rarely
## 8496      NA         NA Heterosexual (straight)            Rarely
## 8497   61.24  135.00882                Bisexual            Always
## 8498      NA         NA Heterosexual (straight)         Sometimes
## 8499   56.70  125.00000                Bisexual  Most of the time
## 8500      NA         NA Heterosexual (straight)             Never
## 8501   65.32  144.00353 Heterosexual (straight)  Most of the time
## 8502  107.05  236.00088 Heterosexual (straight)            Rarely
## 8503      NA         NA                Bisexual         Sometimes
## 8504   76.66  169.00353 Heterosexual (straight)         Sometimes
## 8505   95.26  210.00882                Not sure              <NA>
## 8506   79.38  175.00000 Heterosexual (straight)         Sometimes
## 8507   86.18  189.99118                Bisexual            Rarely
## 8508   75.30  166.00529                Bisexual  Most of the time
## 8509  104.33  230.00441                Bisexual         Sometimes
## 8510   81.65  180.00441 Heterosexual (straight)         Sometimes
## 8511   52.16  114.99118 Heterosexual (straight)            Rarely
## 8512   63.50  139.99118                Bisexual  Most of the time
## 8513   73.94  163.00705 Heterosexual (straight)             Never
## 8514      NA         NA                Not sure             Never
## 8515   52.16  114.99118                Bisexual         Sometimes
## 8516  127.01  280.00441 Heterosexual (straight)         Sometimes
## 8517   52.62  116.00529 Heterosexual (straight)         Sometimes
## 8518   80.74  177.99824 Heterosexual (straight)         Sometimes
## 8519   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8520   91.63  202.00617                Bisexual         Sometimes
## 8521  104.33  230.00441 Heterosexual (straight)         Sometimes
## 8522   95.26  210.00882          Some other way  Most of the time
## 8523   76.66  169.00353 Heterosexual (straight)         Sometimes
## 8524   49.90  110.00882 Heterosexual (straight)         Sometimes
## 8525   65.77  144.99559 Heterosexual (straight)             Never
## 8526   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8527   61.24  135.00882 Heterosexual (straight)            Rarely
## 8528  117.94  260.00882 Heterosexual (straight)         Sometimes
## 8529   61.24  135.00882 Heterosexual (straight)            Always
## 8530   62.60  138.00705 Heterosexual (straight)             Never
## 8531  117.94  260.00882 Heterosexual (straight)         Sometimes
## 8532   45.81  100.99206                Bisexual         Sometimes
## 8533   56.70  125.00000                Bisexual         Sometimes
## 8534  108.86  239.99118 Heterosexual (straight)         Sometimes
## 8535   80.74  177.99824 Heterosexual (straight)         Sometimes
## 8536   83.92  185.00882 Heterosexual (straight)  Most of the time
## 8537   50.80  111.99295 Heterosexual (straight)            Rarely
## 8538   86.18  189.99118 Heterosexual (straight)         Sometimes
## 8539   74.84  164.99118 Heterosexual (straight)  Most of the time
## 8540   95.26  210.00882 Heterosexual (straight)            Rarely
## 8541   40.82   89.99118 Heterosexual (straight)             Never
## 8542   71.22  157.01058 Heterosexual (straight)            Rarely
## 8543   54.43  119.99559 Heterosexual (straight)             Never
## 8544      NA         NA Heterosexual (straight)         Sometimes
## 8545   48.54  107.01058 Heterosexual (straight)            Rarely
## 8546  161.48  355.99647 Heterosexual (straight)             Never
## 8547   61.24  135.00882 Heterosexual (straight)            Rarely
## 8548   65.77  144.99559 Heterosexual (straight)         Sometimes
## 8549   49.90  110.00882 Heterosexual (straight)            Always
## 8550   88.00  194.00353 Heterosexual (straight)         Sometimes
## 8551   45.36  100.00000 Heterosexual (straight)            Rarely
## 8552   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8553   45.36  100.00000 Heterosexual (straight)  Most of the time
## 8554   86.18  189.99118 Heterosexual (straight)            Rarely
## 8555   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8556   81.65  180.00441 Heterosexual (straight)            Rarely
## 8557   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8558   90.72  200.00000 Heterosexual (straight)            Rarely
## 8559   99.79  219.99559                Not sure            Rarely
## 8560   52.16  114.99118 Heterosexual (straight)  Most of the time
## 8561   74.84  164.99118 Heterosexual (straight)            Rarely
## 8562   81.65  180.00441 Heterosexual (straight)  Most of the time
## 8563   49.90  110.00882 Heterosexual (straight)  Most of the time
## 8564   54.43  119.99559 Heterosexual (straight)             Never
## 8565   79.38  175.00000 Heterosexual (straight)             Never
## 8566   80.74  177.99824 Heterosexual (straight)         Sometimes
## 8567   59.88  132.01058 Heterosexual (straight)  Most of the time
## 8568   92.99  205.00441 Heterosexual (straight)         Sometimes
## 8569   70.31  155.00441 Heterosexual (straight)         Sometimes
## 8570   69.40  152.99824 Heterosexual (straight)            Rarely
## 8571   73.94  163.00705 Heterosexual (straight)  Most of the time
## 8572   56.70  125.00000                Bisexual  Most of the time
## 8573   89.36  197.00176 Heterosexual (straight)             Never
## 8574   56.70  125.00000 Heterosexual (straight)            Always
## 8575   76.20  167.98942 Heterosexual (straight)  Most of the time
## 8576   77.11  169.99559 Heterosexual (straight)             Never
## 8577   50.35  111.00088 Heterosexual (straight)         Sometimes
## 8578   77.11  169.99559 Heterosexual (straight)            Rarely
## 8579   68.04  150.00000                Bisexual  Most of the time
## 8580   58.97  130.00441 Heterosexual (straight)            Rarely
## 8581   68.04  150.00000 Heterosexual (straight)             Never
## 8582   94.35  208.00265 Heterosexual (straight)             Never
## 8583   81.65  180.00441 Heterosexual (straight)         Sometimes
## 8584   83.92  185.00882 Heterosexual (straight)            Always
## 8585   57.15  125.99206 Heterosexual (straight)              <NA>
## 8586   58.97  130.00441                Bisexual  Most of the time
## 8587      NA         NA                Not sure  Most of the time
## 8588   65.77  144.99559 Heterosexual (straight)             Never
## 8589   99.79  219.99559 Heterosexual (straight)            Always
## 8590  123.83  272.99383                Bisexual         Sometimes
## 8591      NA         NA          Gay or lesbian             Never
## 8592   50.80  111.99295 Heterosexual (straight)         Sometimes
## 8593   81.65  180.00441 Heterosexual (straight)         Sometimes
## 8594   77.11  169.99559 Heterosexual (straight)             Never
## 8595   77.11  169.99559 Heterosexual (straight)            Rarely
## 8596   84.82  186.99295 Heterosexual (straight)         Sometimes
## 8597  113.40  250.00000 Heterosexual (straight)  Most of the time
## 8598  122.47  269.99559 Heterosexual (straight)         Sometimes
## 8599   55.79  122.99383 Heterosexual (straight)         Sometimes
## 8600   79.38  175.00000                Not sure  Most of the time
## 8601   86.18  189.99118 Heterosexual (straight)             Never
## 8602   50.35  111.00088 Heterosexual (straight)             Never
## 8603   95.26  210.00882 Heterosexual (straight)            Rarely
## 8604   61.24  135.00882 Heterosexual (straight)             Never
## 8605   52.16  114.99118 Heterosexual (straight)         Sometimes
## 8606   83.46  183.99471 Heterosexual (straight)             Never
## 8607   83.92  185.00882 Heterosexual (straight)  Most of the time
## 8608   51.26  113.00705 Heterosexual (straight)            Always
## 8609   40.82   89.99118          Gay or lesbian             Never
## 8610   58.97  130.00441                Bisexual  Most of the time
## 8611   75.30  166.00529 Heterosexual (straight)            Always
## 8612   81.65  180.00441 Heterosexual (straight)             Never
## 8613   77.11  169.99559 Heterosexual (straight)  Most of the time
## 8614  104.33  230.00441 Heterosexual (straight)             Never
## 8615   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8616   54.43  119.99559 Heterosexual (straight)         Sometimes
## 8617   65.32  144.00353 Heterosexual (straight)  Most of the time
## 8618  140.62  310.00882 Heterosexual (straight)         Sometimes
## 8619  113.40  250.00000 Heterosexual (straight)  Most of the time
## 8620   81.65  180.00441 Heterosexual (straight)             Never
## 8621   48.99  108.00265                Bisexual  Most of the time
## 8622   99.79  219.99559 Heterosexual (straight)         Sometimes
## 8623   99.79  219.99559                Bisexual  Most of the time
## 8624   77.11  169.99559 Heterosexual (straight)         Sometimes
## 8625   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8626   54.43  119.99559 Heterosexual (straight)            Rarely
## 8627   54.43  119.99559                Not sure         Sometimes
## 8628   47.63  105.00441                Bisexual         Sometimes
## 8629   58.97  130.00441                Not sure            Rarely
## 8630   82.56  182.01058 Heterosexual (straight)            Rarely
## 8631   72.58  160.00882 Heterosexual (straight)  Most of the time
## 8632   76.20  167.98942 Heterosexual (straight)             Never
## 8633      NA         NA                Bisexual         Sometimes
## 8634   67.13  147.99383 Heterosexual (straight)            Rarely
## 8635   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8636   58.97  130.00441 Heterosexual (straight)            Rarely
## 8637   81.65  180.00441 Heterosexual (straight)             Never
## 8638   58.97  130.00441 Heterosexual (straight)            Rarely
## 8639   61.24  135.00882 Heterosexual (straight)            Rarely
## 8640  106.60  235.00882                Bisexual            Rarely
## 8641  122.47  269.99559 Heterosexual (straight)            Rarely
## 8642   68.04  150.00000 Heterosexual (straight)  Most of the time
## 8643   81.65  180.00441 Heterosexual (straight)            Rarely
## 8644   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8645   67.13  147.99383 Heterosexual (straight)         Sometimes
## 8646   63.50  139.99118 Heterosexual (straight)             Never
## 8647   49.90  110.00882 Heterosexual (straight)         Sometimes
## 8648   58.97  130.00441 Heterosexual (straight)            Rarely
## 8649   70.31  155.00441 Heterosexual (straight)         Sometimes
## 8650      NA         NA                Bisexual            Always
## 8651      NA         NA                Bisexual  Most of the time
## 8652   54.43  119.99559 Heterosexual (straight)             Never
## 8653      NA         NA Heterosexual (straight)            Rarely
## 8654   85.28  188.00705          Gay or lesbian  Most of the time
## 8655   45.36  100.00000 Heterosexual (straight)            Always
## 8656   65.77  144.99559 Heterosexual (straight)              <NA>
## 8657      NA         NA                Bisexual         Sometimes
## 8658      NA         NA          Gay or lesbian            Always
## 8659   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8660   53.98  119.00353 Heterosexual (straight)            Always
## 8661   45.36  100.00000                Bisexual            Always
## 8662   61.24  135.00882 Heterosexual (straight)             Never
## 8663      NA         NA                Bisexual            Rarely
## 8664      NA         NA Heterosexual (straight)              <NA>
## 8665      NA         NA                Bisexual         Sometimes
## 8666   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8667      NA         NA Heterosexual (straight)            Rarely
## 8668      NA         NA                Bisexual         Sometimes
## 8669      NA         NA Heterosexual (straight)              <NA>
## 8670   54.43  119.99559                Bisexual         Sometimes
## 8671   62.60  138.00705 Heterosexual (straight)              <NA>
## 8672      NA         NA Heterosexual (straight)         Sometimes
## 8673   45.36  100.00000 Heterosexual (straight)         Sometimes
## 8674   54.43  119.99559 Heterosexual (straight)             Never
## 8675      NA         NA                Bisexual            Always
## 8676   51.71  113.99912 Heterosexual (straight)            Rarely
## 8677   87.54  192.98942                Bisexual            Always
## 8678   56.25  124.00794 Heterosexual (straight)            Rarely
## 8679   74.84  164.99118 Heterosexual (straight)         Sometimes
## 8680   58.97  130.00441 Heterosexual (straight)            Rarely
## 8681   76.20  167.98942 Heterosexual (straight)             Never
## 8682   72.58  160.00882                Not sure         Sometimes
## 8683  106.60  235.00882 Heterosexual (straight)         Sometimes
## 8684      NA         NA Heterosexual (straight)              <NA>
## 8685   52.16  114.99118 Heterosexual (straight)  Most of the time
## 8686   76.66  169.00353 Heterosexual (straight)  Most of the time
## 8687      NA         NA          Some other way  Most of the time
## 8688      NA         NA Heterosexual (straight)             Never
## 8689   56.70  125.00000          Gay or lesbian         Sometimes
## 8690   61.24  135.00882 Heterosexual (straight)            Rarely
## 8691  109.77  241.99735                Bisexual            Always
## 8692   43.09   94.99559                Bisexual            Always
## 8693   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8694   83.92  185.00882 Heterosexual (straight)  Most of the time
## 8695      NA         NA Heterosexual (straight)  Most of the time
## 8696   65.77  144.99559                Bisexual         Sometimes
## 8697   56.70  125.00000 Heterosexual (straight)            Rarely
## 8698   40.82   89.99118                Not sure  Most of the time
## 8699      NA         NA Heterosexual (straight)            Rarely
## 8700   96.62  213.00705 Heterosexual (straight)            Rarely
## 8701   47.63  105.00441 Heterosexual (straight)             Never
## 8702   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8703   69.40  152.99824 Heterosexual (straight)  Most of the time
## 8704   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8705   67.13  147.99383                Bisexual  Most of the time
## 8706  108.41  238.99912 Heterosexual (straight)  Most of the time
## 8707  104.33  230.00441 Heterosexual (straight)         Sometimes
## 8708   56.70  125.00000                Bisexual             Never
## 8709   52.16  114.99118 Heterosexual (straight)             Never
## 8710   68.04  150.00000          Some other way  Most of the time
## 8711   55.79  122.99383 Heterosexual (straight)             Never
## 8712   65.77  144.99559                Not sure  Most of the time
## 8713   50.35  111.00088                Bisexual            Always
## 8714   49.90  110.00882                Bisexual  Most of the time
## 8715   45.36  100.00000 Heterosexual (straight)             Never
## 8716   52.16  114.99118          Some other way            Rarely
## 8717      NA         NA Heterosexual (straight)         Sometimes
## 8718  113.40  250.00000          Gay or lesbian            Always
## 8719   78.47  172.99383 Heterosexual (straight)            Rarely
## 8720   71.22  157.01058 Heterosexual (straight)            Rarely
## 8721   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8722  111.59  246.00970 Heterosexual (straight)            Rarely
## 8723   72.58  160.00882                Bisexual  Most of the time
## 8724   68.04  150.00000 Heterosexual (straight)  Most of the time
## 8725   79.38  175.00000 Heterosexual (straight)         Sometimes
## 8726  117.94  260.00882                Not sure  Most of the time
## 8727   55.34  122.00176 Heterosexual (straight)            Rarely
## 8728   63.50  139.99118                Not sure         Sometimes
## 8729      NA         NA Heterosexual (straight)         Sometimes
## 8730   61.24  135.00882                Bisexual         Sometimes
## 8731   88.45  194.99559 Heterosexual (straight)            Rarely
## 8732      NA         NA Heterosexual (straight)         Sometimes
## 8733   92.99  205.00441 Heterosexual (straight)            Rarely
## 8734   54.43  119.99559 Heterosexual (straight)             Never
## 8735  102.06  225.00000 Heterosexual (straight)         Sometimes
## 8736   68.04  150.00000 Heterosexual (straight)            Rarely
## 8737   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8738  133.81  294.99559 Heterosexual (straight)            Always
## 8739   72.58  160.00882                Bisexual  Most of the time
## 8740   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8741   86.18  189.99118                Not sure            Rarely
## 8742   88.45  194.99559 Heterosexual (straight)            Rarely
## 8743   92.99  205.00441 Heterosexual (straight)            Rarely
## 8744   83.01  183.00265 Heterosexual (straight)             Never
## 8745   63.50  139.99118 Heterosexual (straight)             Never
## 8746   99.79  219.99559 Heterosexual (straight)            Rarely
## 8747      NA         NA          Some other way  Most of the time
## 8748   56.70  125.00000 Heterosexual (straight)            Always
## 8749   93.44  205.99647 Heterosexual (straight)             Never
## 8750   54.43  119.99559 Heterosexual (straight)  Most of the time
## 8751   72.12  158.99471 Heterosexual (straight)         Sometimes
## 8752   86.18  189.99118 Heterosexual (straight)            Rarely
## 8753   68.04  150.00000 Heterosexual (straight)             Never
## 8754   83.46  183.99471 Heterosexual (straight)  Most of the time
## 8755   68.04  150.00000 Heterosexual (straight)            Rarely
## 8756   56.70  125.00000 Heterosexual (straight)            Rarely
## 8757   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8758  112.95  249.00794 Heterosexual (straight)  Most of the time
## 8759   48.08  105.99647 Heterosexual (straight)  Most of the time
## 8760   74.84  164.99118                Bisexual  Most of the time
## 8761  111.13  244.99559                Not sure            Rarely
## 8762      NA         NA Heterosexual (straight)            Rarely
## 8763  117.48  258.99471 Heterosexual (straight)            Rarely
## 8764      NA         NA          Some other way             Never
## 8765   58.97  130.00441                Not sure            Rarely
## 8766   54.43  119.99559                Bisexual            Always
## 8767   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8768   86.18  189.99118 Heterosexual (straight)            Rarely
## 8769   97.52  214.99118 Heterosexual (straight)             Never
## 8770  127.01  280.00441 Heterosexual (straight)         Sometimes
## 8771   70.31  155.00441 Heterosexual (straight)             Never
## 8772   63.50  139.99118 Heterosexual (straight)             Never
## 8773   56.70  125.00000 Heterosexual (straight)             Never
## 8774   58.51  128.99030 Heterosexual (straight)         Sometimes
## 8775   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8776   81.65  180.00441 Heterosexual (straight)         Sometimes
## 8777   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8778   49.90  110.00882          Gay or lesbian  Most of the time
## 8779      NA         NA Heterosexual (straight)              <NA>
## 8780   56.70  125.00000                Not sure         Sometimes
## 8781   68.95  152.00617                Bisexual  Most of the time
## 8782   65.77  144.99559 Heterosexual (straight)  Most of the time
## 8783   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8784   90.72  200.00000 Heterosexual (straight)              <NA>
## 8785   44.45   97.99383 Heterosexual (straight)         Sometimes
## 8786   62.14  136.99295 Heterosexual (straight)             Never
## 8787   47.63  105.00441 Heterosexual (straight)         Sometimes
## 8788   53.52  117.98942 Heterosexual (straight)            Always
## 8789   60.78  133.99471 Heterosexual (straight)              <NA>
## 8790   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8791   90.72  200.00000 Heterosexual (straight)         Sometimes
## 8792   86.18  189.99118 Heterosexual (straight)            Always
## 8793   58.97  130.00441 Heterosexual (straight)         Sometimes
## 8794   56.70  125.00000 Heterosexual (straight)            Rarely
## 8795   69.85  153.99030 Heterosexual (straight)         Sometimes
## 8796   49.90  110.00882          Gay or lesbian         Sometimes
## 8797   74.84  164.99118          Some other way         Sometimes
## 8798      NA         NA          Gay or lesbian  Most of the time
## 8799   65.77  144.99559                Bisexual  Most of the time
## 8800   58.51  128.99030 Heterosexual (straight)         Sometimes
## 8801   45.81  100.99206                Not sure              <NA>
## 8802   80.74  177.99824                Bisexual  Most of the time
## 8803   81.65  180.00441 Heterosexual (straight)             Never
## 8804      NA         NA          Some other way            Always
## 8805   63.96  141.00529                Bisexual         Sometimes
## 8806   56.25  124.00794                Bisexual            Rarely
## 8807   70.31  155.00441 Heterosexual (straight)  Most of the time
## 8808   65.32  144.00353 Heterosexual (straight)            Rarely
## 8809  136.08  300.00000 Heterosexual (straight)            Rarely
## 8810   88.45  194.99559 Heterosexual (straight)  Most of the time
## 8811   72.58  160.00882 Heterosexual (straight)             Never
## 8812   90.72  200.00000                Bisexual  Most of the time
## 8813   70.31  155.00441 Heterosexual (straight)             Never
## 8814  112.95  249.00794                Bisexual  Most of the time
## 8815   97.52  214.99118 Heterosexual (straight)         Sometimes
## 8816   54.43  119.99559 Heterosexual (straight)            Rarely
## 8817   68.04  150.00000                Not sure  Most of the time
## 8818      NA         NA Heterosexual (straight)             Never
## 8819   69.85  153.99030                Bisexual         Sometimes
## 8820  108.86  239.99118                Bisexual  Most of the time
## 8821  102.06  225.00000                Not sure  Most of the time
## 8822   49.90  110.00882 Heterosexual (straight)  Most of the time
## 8823      NA         NA Heterosexual (straight)         Sometimes
## 8824   70.31  155.00441 Heterosexual (straight)             Never
## 8825  113.40  250.00000 Heterosexual (straight)  Most of the time
## 8826   50.35  111.00088 Heterosexual (straight)  Most of the time
## 8827   49.90  110.00882 Heterosexual (straight)  Most of the time
## 8828   44.91   99.00794                Bisexual            Always
## 8829   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8830   48.99  108.00265 Heterosexual (straight)         Sometimes
## 8831   52.16  114.99118 Heterosexual (straight)  Most of the time
## 8832   43.09   94.99559 Heterosexual (straight)             Never
## 8833   90.72  200.00000 Heterosexual (straight)            Rarely
## 8834  111.13  244.99559 Heterosexual (straight)            Rarely
## 8835   61.24  135.00882                Not sure            Rarely
## 8836   63.50  139.99118                Bisexual         Sometimes
## 8837   49.90  110.00882          Gay or lesbian             Never
## 8838   47.63  105.00441                Not sure  Most of the time
## 8839   73.48  161.99295 Heterosexual (straight)         Sometimes
## 8840   44.00   97.00176                Bisexual  Most of the time
## 8841   52.16  114.99118                Not sure            Always
## 8842   55.34  122.00176 Heterosexual (straight)  Most of the time
## 8843   91.63  202.00617 Heterosexual (straight)         Sometimes
## 8844   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8845  106.60  235.00882 Heterosexual (straight)         Sometimes
## 8846   49.90  110.00882 Heterosexual (straight)  Most of the time
## 8847   78.47  172.99383 Heterosexual (straight)            Rarely
## 8848   88.45  194.99559 Heterosexual (straight)  Most of the time
## 8849   99.79  219.99559 Heterosexual (straight)         Sometimes
## 8850   86.18  189.99118 Heterosexual (straight)         Sometimes
## 8851   90.72  200.00000 Heterosexual (straight)             Never
## 8852   58.97  130.00441 Heterosexual (straight)             Never
## 8853   65.77  144.99559          Gay or lesbian         Sometimes
## 8854   52.62  116.00529 Heterosexual (straight)  Most of the time
## 8855   74.84  164.99118 Heterosexual (straight)            Rarely
## 8856  104.33  230.00441          Gay or lesbian  Most of the time
## 8857   72.58  160.00882          Some other way         Sometimes
## 8858   49.90  110.00882 Heterosexual (straight)         Sometimes
## 8859   88.91  196.00970 Heterosexual (straight)             Never
## 8860   86.18  189.99118                Bisexual            Rarely
## 8861   89.81  197.99383                Not sure  Most of the time
## 8862  106.60  235.00882                Bisexual  Most of the time
## 8863   58.97  130.00441                Bisexual            Always
## 8864   61.69  136.00088                Bisexual            Rarely
## 8865   56.70  125.00000 Heterosexual (straight)            Always
## 8866   56.70  125.00000 Heterosexual (straight)            Always
## 8867   54.43  119.99559 Heterosexual (straight)            Always
## 8868   68.04  150.00000 Heterosexual (straight)            Rarely
## 8869   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8870   68.04  150.00000 Heterosexual (straight)  Most of the time
## 8871   47.63  105.00441          Gay or lesbian            Always
## 8872   48.99  108.00265                Not sure  Most of the time
## 8873   56.70  125.00000 Heterosexual (straight)            Rarely
## 8874   86.18  189.99118 Heterosexual (straight)             Never
## 8875   49.90  110.00882                Not sure  Most of the time
## 8876   49.90  110.00882                Not sure            Always
## 8877   99.79  219.99559 Heterosexual (straight)         Sometimes
## 8878   56.70  125.00000                Bisexual  Most of the time
## 8879   68.04  150.00000          Some other way            Always
## 8880   79.38  175.00000                Bisexual  Most of the time
## 8881   54.43  119.99559                Bisexual  Most of the time
## 8882   79.38  175.00000 Heterosexual (straight)              <NA>
## 8883   67.13  147.99383                Bisexual            Always
## 8884   85.28  188.00705 Heterosexual (straight)         Sometimes
## 8885   48.99  108.00265 Heterosexual (straight)  Most of the time
## 8886   81.65  180.00441 Heterosexual (straight)  Most of the time
## 8887   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8888   51.71  113.99912 Heterosexual (straight)             Never
## 8889   72.58  160.00882 Heterosexual (straight)            Rarely
## 8890   60.78  133.99471 Heterosexual (straight)  Most of the time
## 8891   74.84  164.99118          Some other way         Sometimes
## 8892   65.77  144.99559                Bisexual  Most of the time
## 8893   97.52  214.99118 Heterosexual (straight)         Sometimes
## 8894   94.35  208.00265 Heterosexual (straight)            Rarely
## 8895   74.84  164.99118 Heterosexual (straight)            Rarely
## 8896   67.13  147.99383 Heterosexual (straight)            Rarely
## 8897   55.34  122.00176 Heterosexual (straight)         Sometimes
## 8898   65.77  144.99559 Heterosexual (straight)            Rarely
## 8899   61.24  135.00882 Heterosexual (straight)            Rarely
## 8900   52.16  114.99118 Heterosexual (straight)  Most of the time
## 8901   54.89  121.00970 Heterosexual (straight)         Sometimes
## 8902   61.24  135.00882 Heterosexual (straight)            Rarely
## 8903   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8904   67.13  147.99383 Heterosexual (straight)  Most of the time
## 8905   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8906   63.50  139.99118 Heterosexual (straight)  Most of the time
## 8907  129.28  285.00882 Heterosexual (straight)            Always
## 8908   72.58  160.00882 Heterosexual (straight)            Rarely
## 8909   77.11  169.99559 Heterosexual (straight)            Rarely
## 8910   56.70  125.00000 Heterosexual (straight)             Never
## 8911      NA         NA          Some other way            Always
## 8912   56.70  125.00000 Heterosexual (straight)         Sometimes
## 8913   48.08  105.99647 Heterosexual (straight)            Always
## 8914   99.79  219.99559                Not sure  Most of the time
## 8915   60.78  133.99471          Gay or lesbian  Most of the time
## 8916   68.04  150.00000                Not sure         Sometimes
## 8917   51.71  113.99912                Bisexual         Sometimes
## 8918   66.23  146.00970 Heterosexual (straight)             Never
## 8919   68.04  150.00000 Heterosexual (straight)         Sometimes
## 8920   65.77  144.99559 Heterosexual (straight)            Rarely
## 8921  117.03  258.00265                Bisexual         Sometimes
## 8922   72.58  160.00882 Heterosexual (straight)             Never
## 8923   86.18  189.99118 Heterosexual (straight)            Rarely
## 8924  117.94  260.00882                Bisexual  Most of the time
## 8925   52.16  114.99118 Heterosexual (straight)            Rarely
## 8926   52.16  114.99118 Heterosexual (straight)  Most of the time
## 8927   47.63  105.00441                Bisexual  Most of the time
## 8928   68.04  150.00000 Heterosexual (straight)             Never
## 8929   54.43  119.99559                Bisexual         Sometimes
## 8930  135.63  299.00794 Heterosexual (straight)             Never
## 8931  115.67  255.00441          Some other way         Sometimes
## 8932   54.43  119.99559                Not sure  Most of the time
## 8933   86.18  189.99118 Heterosexual (straight)         Sometimes
## 8934   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8935   74.84  164.99118 Heterosexual (straight)            Rarely
## 8936   56.70  125.00000 Heterosexual (straight)  Most of the time
## 8937   77.11  169.99559 Heterosexual (straight)            Rarely
## 8938   69.40  152.99824                Bisexual            Always
## 8939   84.37  186.00088                Not sure         Sometimes
## 8940   94.80  208.99471 Heterosexual (straight)            Rarely
## 8941   81.65  180.00441 Heterosexual (straight)  Most of the time
## 8942   86.18  189.99118 Heterosexual (straight)            Rarely
## 8943   74.84  164.99118                Not sure         Sometimes
## 8944   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8945   49.90  110.00882 Heterosexual (straight)             Never
## 8946   71.67  158.00265 Heterosexual (straight)         Sometimes
## 8947   78.02  172.00176 Heterosexual (straight)         Sometimes
## 8948      NA         NA Heterosexual (straight)            Rarely
## 8949   59.42  130.99647                Not sure  Most of the time
## 8950   44.00   97.00176                Bisexual  Most of the time
## 8951   53.98  119.00353 Heterosexual (straight)            Rarely
## 8952  106.60  235.00882 Heterosexual (straight)  Most of the time
## 8953  154.22  339.99118 Heterosexual (straight)  Most of the time
## 8954   87.54  192.98942 Heterosexual (straight)             Never
## 8955   70.76  155.99647 Heterosexual (straight)             Never
## 8956   58.97  130.00441 Heterosexual (straight)  Most of the time
## 8957   43.09   94.99559          Some other way  Most of the time
## 8958   49.90  110.00882 Heterosexual (straight)  Most of the time
## 8959   72.58  160.00882                Bisexual  Most of the time
## 8960   70.31  155.00441 Heterosexual (straight)            Rarely
## 8961   54.43  119.99559 Heterosexual (straight)             Never
## 8962   49.44  108.99471 Heterosexual (straight)            Always
## 8963   47.63  105.00441 Heterosexual (straight)         Sometimes
## 8964   77.11  169.99559                Bisexual  Most of the time
## 8965   58.06  127.99824                Bisexual         Sometimes
## 8966      NA         NA Heterosexual (straight)             Never
## 8967   72.58  160.00882                Bisexual         Sometimes
## 8968   95.26  210.00882 Heterosexual (straight)  Most of the time
## 8969   58.97  130.00441                Bisexual         Sometimes
## 8970   47.63  105.00441                Bisexual         Sometimes
## 8971   72.58  160.00882 Heterosexual (straight)         Sometimes
## 8972   57.15  125.99206          Some other way  Most of the time
## 8973  103.42  227.99824 Heterosexual (straight)  Most of the time
## 8974   58.97  130.00441 Heterosexual (straight)         Sometimes
## 8975   49.90  110.00882 Heterosexual (straight)            Rarely
## 8976   75.75  166.99735 Heterosexual (straight)            Always
## 8977   63.50  139.99118 Heterosexual (straight)         Sometimes
## 8978   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8979   74.84  164.99118 Heterosexual (straight)            Always
## 8980   92.99  205.00441 Heterosexual (straight)            Rarely
## 8981   65.32  144.00353 Heterosexual (straight)         Sometimes
## 8982   81.65  180.00441 Heterosexual (straight)  Most of the time
## 8983   54.43  119.99559          Gay or lesbian  Most of the time
## 8984   61.24  135.00882 Heterosexual (straight)         Sometimes
## 8985   90.72  200.00000 Heterosexual (straight)             Never
## 8986   49.90  110.00882 Heterosexual (straight)            Rarely
## 8987   57.61  127.00617 Heterosexual (straight)         Sometimes
## 8988   61.24  135.00882 Heterosexual (straight)  Most of the time
## 8989   65.77  144.99559 Heterosexual (straight)         Sometimes
## 8990   72.58  160.00882 Heterosexual (straight)            Rarely
## 8991   54.43  119.99559                Bisexual         Sometimes
## 8992  130.64  288.00705                Bisexual            Rarely
## 8993   76.66  169.00353 Heterosexual (straight)            Rarely
## 8994   56.70  125.00000          Some other way         Sometimes
## 8995   81.19  178.99030                Bisexual  Most of the time
## 8996   57.61  127.00617 Heterosexual (straight)            Rarely
## 8997   69.40  152.99824 Heterosexual (straight)         Sometimes
## 8998  106.14  233.99471 Heterosexual (straight)            Always
## 8999   74.84  164.99118 Heterosexual (straight)             Never
## 9000  120.20  264.99118 Heterosexual (straight)            Rarely
## 9001      NA         NA Heterosexual (straight)  Most of the time
## 9002   61.24  135.00882 Heterosexual (straight)  Most of the time
## 9003   49.90  110.00882 Heterosexual (straight)  Most of the time
## 9004   54.89  121.00970 Heterosexual (straight)         Sometimes
## 9005   60.78  133.99471                Not sure         Sometimes
## 9006   83.92  185.00882 Heterosexual (straight)             Never
## 9007   68.04  150.00000                Not sure  Most of the time
## 9008   54.89  121.00970 Heterosexual (straight)         Sometimes
## 9009   58.97  130.00441          Some other way         Sometimes
## 9010   76.20  167.98942 Heterosexual (straight)            Rarely
## 9011   47.63  105.00441 Heterosexual (straight)             Never
## 9012   77.11  169.99559 Heterosexual (straight)         Sometimes
## 9013   95.26  210.00882                Bisexual            Always
## 9014   76.66  169.00353 Heterosexual (straight)         Sometimes
## 9015   46.72  102.99824 Heterosexual (straight)  Most of the time
## 9016   97.52  214.99118                Bisexual            Rarely
## 9017   49.90  110.00882 Heterosexual (straight)  Most of the time
## 9018   81.65  180.00441 Heterosexual (straight)         Sometimes
## 9019   65.77  144.99559                Bisexual            Always
## 9020   54.43  119.99559 Heterosexual (straight)         Sometimes
## 9021   87.54  192.98942 Heterosexual (straight)            Always
## 9022   40.82   89.99118 Heterosexual (straight)         Sometimes
## 9023   62.60  138.00705 Heterosexual (straight)  Most of the time
## 9024   59.88  132.01058 Heterosexual (straight)              <NA>
## 9025   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9026   61.24  135.00882 Heterosexual (straight)             Never
## 9027  114.31  252.00617 Heterosexual (straight)             Never
## 9028   90.72  200.00000                Not sure         Sometimes
## 9029   74.84  164.99118 Heterosexual (straight)            Rarely
## 9030   79.38  175.00000 Heterosexual (straight)  Most of the time
## 9031   78.47  172.99383 Heterosexual (straight)         Sometimes
## 9032   81.65  180.00441                Bisexual            Always
## 9033  106.60  235.00882          Gay or lesbian            Rarely
## 9034   49.90  110.00882 Heterosexual (straight)              <NA>
## 9035  104.33  230.00441 Heterosexual (straight)             Never
## 9036   66.68  147.00176 Heterosexual (straight)            Always
## 9037   70.31  155.00441 Heterosexual (straight)             Never
## 9038   63.50  139.99118                Bisexual  Most of the time
## 9039   54.43  119.99559                Not sure            Always
## 9040   67.13  147.99383 Heterosexual (straight)              <NA>
## 9041   93.90  207.01058 Heterosexual (straight)            Rarely
## 9042   68.04  150.00000 Heterosexual (straight)             Never
## 9043   86.18  189.99118 Heterosexual (straight)  Most of the time
## 9044      NA         NA Heterosexual (straight)             Never
## 9045  104.33  230.00441                Bisexual             Never
## 9046   70.31  155.00441 Heterosexual (straight)            Rarely
## 9047   65.77  144.99559                Bisexual  Most of the time
## 9048   70.31  155.00441 Heterosexual (straight)            Always
## 9049  139.71  308.00265 Heterosexual (straight)             Never
## 9050   38.56   85.00882 Heterosexual (straight)            Always
## 9051   81.65  180.00441          Some other way  Most of the time
## 9052   79.38  175.00000 Heterosexual (straight)         Sometimes
## 9053   74.84  164.99118 Heterosexual (straight)             Never
## 9054   65.77  144.99559 Heterosexual (straight)            Rarely
## 9055   54.43  119.99559 Heterosexual (straight)              <NA>
## 9056   67.13  147.99383 Heterosexual (straight)            Always
## 9057   58.97  130.00441                Bisexual  Most of the time
## 9058  127.01  280.00441 Heterosexual (straight)  Most of the time
## 9059   82.10  180.99647 Heterosexual (straight)            Always
## 9060   76.20  167.98942 Heterosexual (straight)  Most of the time
## 9061   92.99  205.00441 Heterosexual (straight)  Most of the time
## 9062   81.65  180.00441 Heterosexual (straight)            Always
## 9063   52.16  114.99118 Heterosexual (straight)            Rarely
## 9064      NA         NA Heterosexual (straight)  Most of the time
## 9065   54.43  119.99559          Some other way  Most of the time
## 9066   86.18  189.99118 Heterosexual (straight)            Rarely
## 9067  103.87  228.99030 Heterosexual (straight)             Never
## 9068   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9069   58.06  127.99824                Bisexual            Rarely
## 9070   71.22  157.01058 Heterosexual (straight)             Never
## 9071  122.02  269.00353 Heterosexual (straight)            Rarely
## 9072   45.36  100.00000                Bisexual  Most of the time
## 9073   70.31  155.00441 Heterosexual (straight)            Always
## 9074   72.58  160.00882 Heterosexual (straight)             Never
## 9075   56.70  125.00000 Heterosexual (straight)             Never
## 9076   53.52  117.98942 Heterosexual (straight)         Sometimes
## 9077   97.52  214.99118 Heterosexual (straight)         Sometimes
## 9078   55.79  122.99383 Heterosexual (straight)         Sometimes
## 9079   75.75  166.99735 Heterosexual (straight)  Most of the time
## 9080   72.58  160.00882 Heterosexual (straight)         Sometimes
## 9081   71.67  158.00265 Heterosexual (straight)            Rarely
## 9082  113.40  250.00000 Heterosexual (straight)            Rarely
## 9083   63.50  139.99118 Heterosexual (straight)            Rarely
## 9084   88.45  194.99559 Heterosexual (straight)  Most of the time
## 9085   54.43  119.99559 Heterosexual (straight)            Always
## 9086   70.76  155.99647 Heterosexual (straight)  Most of the time
## 9087   79.38  175.00000 Heterosexual (straight)            Rarely
## 9088   58.06  127.99824                Bisexual              <NA>
## 9089   58.97  130.00441 Heterosexual (straight)            Rarely
## 9090   61.24  135.00882 Heterosexual (straight)            Rarely
## 9091   56.70  125.00000 Heterosexual (straight)  Most of the time
## 9092   54.43  119.99559          Some other way  Most of the time
## 9093   76.20  167.98942 Heterosexual (straight)            Rarely
## 9094   56.70  125.00000 Heterosexual (straight)            Rarely
## 9095   65.77  144.99559 Heterosexual (straight)             Never
## 9096   77.11  169.99559 Heterosexual (straight)         Sometimes
## 9097   90.72  200.00000 Heterosexual (straight)         Sometimes
## 9098   44.45   97.99383 Heterosexual (straight)            Always
## 9099   58.51  128.99030 Heterosexual (straight)            Rarely
## 9100   61.24  135.00882 Heterosexual (straight)         Sometimes
## 9101  105.69  233.00265 Heterosexual (straight)             Never
## 9102   68.04  150.00000                Bisexual         Sometimes
## 9103   58.97  130.00441          Gay or lesbian  Most of the time
## 9104   52.16  114.99118 Heterosexual (straight)  Most of the time
## 9105   62.60  138.00705 Heterosexual (straight)         Sometimes
## 9106   68.04  150.00000          Some other way            Always
## 9107   40.82   89.99118 Heterosexual (straight)            Always
## 9108   92.99  205.00441 Heterosexual (straight)             Never
## 9109   61.24  135.00882 Heterosexual (straight)            Rarely
## 9110   58.97  130.00441                Bisexual  Most of the time
## 9111   81.65  180.00441                Not sure         Sometimes
## 9112   85.28  188.00705 Heterosexual (straight)            Rarely
## 9113   74.84  164.99118 Heterosexual (straight)         Sometimes
## 9114   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9115   45.36  100.00000          Gay or lesbian            Always
## 9116   40.82   89.99118 Heterosexual (straight)            Rarely
## 9117   68.04  150.00000 Heterosexual (straight)            Rarely
## 9118   52.16  114.99118 Heterosexual (straight)         Sometimes
## 9119   56.70  125.00000 Heterosexual (straight)            Rarely
## 9120   61.24  135.00882          Gay or lesbian             Never
## 9121   67.13  147.99383 Heterosexual (straight)             Never
## 9122   45.36  100.00000 Heterosexual (straight)         Sometimes
## 9123   60.78  133.99471 Heterosexual (straight)  Most of the time
## 9124   54.43  119.99559 Heterosexual (straight)  Most of the time
## 9125   79.38  175.00000 Heterosexual (straight)             Never
## 9126   44.45   97.99383 Heterosexual (straight)  Most of the time
## 9127   43.09   94.99559 Heterosexual (straight)         Sometimes
## 9128   63.50  139.99118          Some other way  Most of the time
## 9129   72.58  160.00882 Heterosexual (straight)         Sometimes
## 9130   87.09  191.99735 Heterosexual (straight)         Sometimes
## 9131   55.79  122.99383 Heterosexual (straight)         Sometimes
## 9132   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9133   78.02  172.00176          Gay or lesbian  Most of the time
## 9134   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9135      NA         NA Heterosexual (straight)              <NA>
## 9136   62.60  138.00705 Heterosexual (straight)         Sometimes
## 9137   74.84  164.99118 Heterosexual (straight)            Rarely
## 9138   71.22  157.01058 Heterosexual (straight)            Rarely
## 9139  106.60  235.00882 Heterosexual (straight)         Sometimes
## 9140  109.77  241.99735 Heterosexual (straight)  Most of the time
## 9141   83.92  185.00882 Heterosexual (straight)  Most of the time
## 9142   90.72  200.00000 Heterosexual (straight)         Sometimes
## 9143   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9144   89.81  197.99383          Gay or lesbian         Sometimes
## 9145   62.60  138.00705                Bisexual            Always
## 9146   46.27  102.00617 Heterosexual (straight)         Sometimes
## 9147      NA         NA Heterosexual (straight)         Sometimes
## 9148  145.15  319.99559 Heterosexual (straight)            Rarely
## 9149   63.50  139.99118 Heterosexual (straight)  Most of the time
## 9150      NA         NA                Bisexual             Never
## 9151   95.26  210.00882 Heterosexual (straight)            Rarely
## 9152   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9153   36.29   80.00441 Heterosexual (straight)            Rarely
## 9154   78.47  172.99383 Heterosexual (straight)         Sometimes
## 9155   50.80  111.99295 Heterosexual (straight)            Always
## 9156   65.77  144.99559 Heterosexual (straight)             Never
## 9157   65.32  144.00353 Heterosexual (straight)         Sometimes
## 9158   84.82  186.99295 Heterosexual (straight)             Never
## 9159   44.45   97.99383 Heterosexual (straight)            Rarely
## 9160   81.65  180.00441 Heterosexual (straight)            Rarely
## 9161   81.65  180.00441 Heterosexual (straight)         Sometimes
## 9162   68.04  150.00000 Heterosexual (straight)            Always
## 9163   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9164   63.50  139.99118 Heterosexual (straight)            Rarely
## 9165   65.77  144.99559 Heterosexual (straight)             Never
## 9166   56.70  125.00000 Heterosexual (straight)             Never
## 9167   43.09   94.99559 Heterosexual (straight)         Sometimes
## 9168   82.56  182.01058 Heterosexual (straight)         Sometimes
## 9169   63.50  139.99118 Heterosexual (straight)            Rarely
## 9170   69.85  153.99030 Heterosexual (straight)  Most of the time
## 9171   68.04  150.00000 Heterosexual (straight)            Rarely
## 9172   54.43  119.99559 Heterosexual (straight)            Always
## 9173   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9174      NA         NA                Bisexual             Never
## 9175      NA         NA Heterosexual (straight)            Always
## 9176   50.35  111.00088 Heterosexual (straight)         Sometimes
## 9177   70.31  155.00441 Heterosexual (straight)  Most of the time
## 9178  104.33  230.00441 Heterosexual (straight)            Rarely
## 9179      NA         NA Heterosexual (straight)            Always
## 9180   46.72  102.99824 Heterosexual (straight)  Most of the time
## 9181   72.12  158.99471 Heterosexual (straight)         Sometimes
## 9182   81.65  180.00441 Heterosexual (straight)            Rarely
## 9183   46.27  102.00617 Heterosexual (straight)  Most of the time
## 9184  136.08  300.00000 Heterosexual (straight)             Never
## 9185   54.43  119.99559 Heterosexual (straight)         Sometimes
## 9186   59.88  132.01058 Heterosexual (straight)         Sometimes
## 9187   65.77  144.99559          Some other way  Most of the time
## 9188   68.95  152.00617                Bisexual         Sometimes
## 9189   43.09   94.99559 Heterosexual (straight)             Never
## 9190   74.84  164.99118 Heterosexual (straight)             Never
## 9191   56.70  125.00000 Heterosexual (straight)         Sometimes
## 9192   54.43  119.99559 Heterosexual (straight)            Always
## 9193   63.50  139.99118 Heterosexual (straight)             Never
## 9194   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9195  119.30  263.00705 Heterosexual (straight)         Sometimes
## 9196   95.26  210.00882 Heterosexual (straight)  Most of the time
## 9197   47.17  103.99030          Some other way  Most of the time
## 9198      NA         NA                Bisexual            Always
## 9199   70.31  155.00441 Heterosexual (straight)  Most of the time
## 9200   69.40  152.99824 Heterosexual (straight)            Rarely
## 9201  110.22  242.98942 Heterosexual (straight)         Sometimes
## 9202   72.58  160.00882 Heterosexual (straight)             Never
## 9203  113.40  250.00000                Not sure            Always
## 9204  119.30  263.00705 Heterosexual (straight)  Most of the time
## 9205   83.92  185.00882 Heterosexual (straight)             Never
## 9206   68.95  152.00617                Not sure  Most of the time
## 9207   83.92  185.00882 Heterosexual (straight)  Most of the time
## 9208   81.65  180.00441                Bisexual  Most of the time
## 9209      NA         NA          Gay or lesbian            Always
## 9210   96.62  213.00705 Heterosexual (straight)            Rarely
## 9211   83.92  185.00882 Heterosexual (straight)  Most of the time
## 9212   97.52  214.99118          Some other way         Sometimes
## 9213   54.89  121.00970 Heterosexual (straight)         Sometimes
## 9214   52.16  114.99118 Heterosexual (straight)            Rarely
## 9215   77.57  171.00970 Heterosexual (straight)            Rarely
## 9216   63.50  139.99118 Heterosexual (straight)             Never
## 9217  104.33  230.00441 Heterosexual (straight)             Never
## 9218   61.24  135.00882 Heterosexual (straight)             Never
## 9219   90.72  200.00000 Heterosexual (straight)             Never
## 9220   55.34  122.00176 Heterosexual (straight)             Never
## 9221   90.72  200.00000 Heterosexual (straight)         Sometimes
## 9222   72.58  160.00882 Heterosexual (straight)             Never
## 9223   83.01  183.00265 Heterosexual (straight)             Never
## 9224   79.83  175.99206 Heterosexual (straight)         Sometimes
## 9225   92.99  205.00441 Heterosexual (straight)         Sometimes
## 9226   83.92  185.00882 Heterosexual (straight)            Always
## 9227   86.18  189.99118 Heterosexual (straight)            Rarely
## 9228   88.00  194.00353 Heterosexual (straight)         Sometimes
## 9229  122.47  269.99559 Heterosexual (straight)         Sometimes
## 9230      NA         NA                Not sure             Never
## 9231   67.13  147.99383 Heterosexual (straight)  Most of the time
## 9232   88.45  194.99559 Heterosexual (straight)            Rarely
## 9233  108.86  239.99118 Heterosexual (straight)         Sometimes
## 9234   72.58  160.00882 Heterosexual (straight)         Sometimes
## 9235   61.24  135.00882 Heterosexual (straight)            Rarely
## 9236   79.83  175.99206 Heterosexual (straight)  Most of the time
## 9237   67.13  147.99383 Heterosexual (straight)            Rarely
## 9238   72.58  160.00882 Heterosexual (straight)             Never
## 9239  102.06  225.00000 Heterosexual (straight)              <NA>
## 9240   81.65  180.00441                Bisexual            Always
## 9241   88.45  194.99559 Heterosexual (straight)             Never
## 9242   54.43  119.99559          Some other way            Always
## 9243   61.24  135.00882 Heterosexual (straight)              <NA>
## 9244   56.70  125.00000          Some other way         Sometimes
## 9245   65.77  144.99559 Heterosexual (straight)            Rarely
## 9246  104.33  230.00441                Bisexual            Always
## 9247   72.58  160.00882                Bisexual         Sometimes
## 9248   74.84  164.99118 Heterosexual (straight)             Never
## 9249   82.56  182.01058                Not sure            Rarely
## 9250   61.24  135.00882                Bisexual            Always
## 9251   70.31  155.00441 Heterosexual (straight)         Sometimes
## 9252   83.92  185.00882 Heterosexual (straight)         Sometimes
## 9253   43.09   94.99559          Some other way  Most of the time
## 9254   63.50  139.99118 Heterosexual (straight)             Never
## 9255   54.43  119.99559 Heterosexual (straight)         Sometimes
## 9256   94.80  208.99471 Heterosexual (straight)            Rarely
## 9257   90.72  200.00000 Heterosexual (straight)         Sometimes
## 9258   45.36  100.00000 Heterosexual (straight)         Sometimes
## 9259   63.05  138.99912 Heterosexual (straight)         Sometimes
## 9260   63.50  139.99118 Heterosexual (straight)  Most of the time
## 9261   50.80  111.99295          Some other way  Most of the time
## 9262   86.18  189.99118 Heterosexual (straight)            Rarely
## 9263   68.04  150.00000 Heterosexual (straight)            Rarely
## 9264   88.45  194.99559 Heterosexual (straight)         Sometimes
## 9265   81.65  180.00441                Not sure         Sometimes
## 9266   55.34  122.00176 Heterosexual (straight)            Always
## 9267   70.76  155.99647 Heterosexual (straight)             Never
## 9268   81.65  180.00441 Heterosexual (straight)         Sometimes
## 9269      NA         NA                Not sure  Most of the time
## 9270   63.50  139.99118 Heterosexual (straight)  Most of the time
## 9271   60.78  133.99471 Heterosexual (straight)         Sometimes
## 9272   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9273   52.16  114.99118 Heterosexual (straight)  Most of the time
## 9274   97.52  214.99118 Heterosexual (straight)         Sometimes
## 9275   69.85  153.99030 Heterosexual (straight)             Never
## 9276   54.43  119.99559                Bisexual  Most of the time
## 9277   54.43  119.99559                Bisexual  Most of the time
## 9278   90.72  200.00000 Heterosexual (straight)  Most of the time
## 9279      NA         NA                Bisexual  Most of the time
## 9280   49.90  110.00882 Heterosexual (straight)  Most of the time
## 9281   54.43  119.99559 Heterosexual (straight)  Most of the time
## 9282   61.24  135.00882 Heterosexual (straight)         Sometimes
## 9283   53.98  119.00353 Heterosexual (straight)         Sometimes
## 9284   43.09   94.99559                Bisexual             Never
## 9285   72.58  160.00882 Heterosexual (straight)            Rarely
## 9286      NA         NA Heterosexual (straight)            Rarely
## 9287   53.98  119.00353 Heterosexual (straight)             Never
## 9288   77.11  169.99559 Heterosexual (straight)         Sometimes
## 9289   61.24  135.00882 Heterosexual (straight)             Never
## 9290   86.18  189.99118 Heterosexual (straight)             Never
## 9291   81.65  180.00441 Heterosexual (straight)             Never
## 9292  106.60  235.00882 Heterosexual (straight)         Sometimes
## 9293   65.77  144.99559 Heterosexual (straight)  Most of the time
## 9294   68.04  150.00000          Gay or lesbian            Rarely
## 9295   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9296  102.06  225.00000 Heterosexual (straight)            Rarely
## 9297      NA         NA Heterosexual (straight)            Rarely
## 9298  102.06  225.00000 Heterosexual (straight)            Rarely
## 9299   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9300   81.65  180.00441 Heterosexual (straight)            Rarely
## 9301   44.00   97.00176          Some other way            Always
## 9302   70.31  155.00441 Heterosexual (straight)            Rarely
## 9303   58.97  130.00441                Bisexual         Sometimes
## 9304   88.45  194.99559 Heterosexual (straight)  Most of the time
## 9305   61.24  135.00882 Heterosexual (straight)  Most of the time
## 9306      NA         NA Heterosexual (straight)         Sometimes
## 9307   90.72  200.00000 Heterosexual (straight)  Most of the time
## 9308   86.18  189.99118                Not sure            Always
## 9309   83.92  185.00882 Heterosexual (straight)         Sometimes
## 9310  119.30  263.00705 Heterosexual (straight)  Most of the time
## 9311      NA         NA Heterosexual (straight)            Always
## 9312   90.72  200.00000 Heterosexual (straight)         Sometimes
## 9313  122.47  269.99559 Heterosexual (straight)            Always
## 9314   90.72  200.00000                Bisexual         Sometimes
## 9315      NA         NA                Bisexual  Most of the time
## 9316   58.97  130.00441 Heterosexual (straight)            Always
## 9317      NA         NA Heterosexual (straight)            Rarely
## 9318   72.58  160.00882 Heterosexual (straight)            Rarely
## 9319   58.97  130.00441 Heterosexual (straight)  Most of the time
## 9320   95.26  210.00882 Heterosexual (straight)         Sometimes
## 9321   65.77  144.99559 Heterosexual (straight)            Rarely
## 9322   54.43  119.99559 Heterosexual (straight)         Sometimes
## 9323   49.90  110.00882 Heterosexual (straight)            Rarely
## 9324   46.72  102.99824                Not sure         Sometimes
## 9325   80.74  177.99824 Heterosexual (straight)  Most of the time
## 9326   68.04  150.00000 Heterosexual (straight)            Rarely
## 9327   58.97  130.00441 Heterosexual (straight)            Always
## 9328   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9329   56.70  125.00000 Heterosexual (straight)  Most of the time
## 9330   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9331   53.98  119.00353 Heterosexual (straight)         Sometimes
## 9332   81.65  180.00441 Heterosexual (straight)         Sometimes
## 9333   67.13  147.99383 Heterosexual (straight)  Most of the time
## 9334  131.09  288.99912 Heterosexual (straight)  Most of the time
## 9335      NA         NA Heterosexual (straight)             Never
## 9336   56.70  125.00000 Heterosexual (straight)            Rarely
## 9337   63.50  139.99118 Heterosexual (straight)            Rarely
## 9338  104.33  230.00441 Heterosexual (straight)  Most of the time
## 9339   54.43  119.99559 Heterosexual (straight)         Sometimes
## 9340   56.70  125.00000 Heterosexual (straight)         Sometimes
## 9341   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9342   71.67  158.00265 Heterosexual (straight)  Most of the time
## 9343   49.90  110.00882 Heterosexual (straight)  Most of the time
## 9344   79.38  175.00000 Heterosexual (straight)             Never
## 9345   52.16  114.99118 Heterosexual (straight)  Most of the time
## 9346   86.18  189.99118                Bisexual            Always
## 9347   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9348   73.48  161.99295 Heterosexual (straight)            Always
## 9349   55.79  122.99383 Heterosexual (straight)            Always
## 9350      NA         NA Heterosexual (straight)  Most of the time
## 9351   63.50  139.99118 Heterosexual (straight)              <NA>
## 9352   70.31  155.00441 Heterosexual (straight)            Rarely
## 9353   49.90  110.00882                Not sure         Sometimes
## 9354  100.70  222.00176 Heterosexual (straight)            Rarely
## 9355   47.63  105.00441 Heterosexual (straight)             Never
## 9356   66.68  147.00176 Heterosexual (straight)            Rarely
## 9357   59.88  132.01058 Heterosexual (straight)             Never
## 9358   63.50  139.99118 Heterosexual (straight)  Most of the time
## 9359   35.38   77.99824                Bisexual            Always
## 9360   52.62  116.00529                Bisexual         Sometimes
## 9361   41.73   91.99735 Heterosexual (straight)             Never
## 9362   52.16  114.99118 Heterosexual (straight)         Sometimes
## 9363   55.34  122.00176 Heterosexual (straight)            Rarely
## 9364  102.06  225.00000 Heterosexual (straight)            Rarely
## 9365   95.26  210.00882 Heterosexual (straight)  Most of the time
## 9366   58.97  130.00441 Heterosexual (straight)            Rarely
## 9367      NA         NA Heterosexual (straight)         Sometimes
## 9368      NA         NA Heterosexual (straight)            Rarely
## 9369   77.11  169.99559 Heterosexual (straight)             Never
## 9370   79.38  175.00000 Heterosexual (straight)            Rarely
## 9371   49.90  110.00882                Not sure         Sometimes
## 9372   81.65  180.00441 Heterosexual (straight)  Most of the time
## 9373   73.94  163.00705 Heterosexual (straight)            Rarely
## 9374   52.16  114.99118 Heterosexual (straight)  Most of the time
## 9375   54.43  119.99559 Heterosexual (straight)         Sometimes
## 9376      NA         NA Heterosexual (straight)         Sometimes
## 9377   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9378   35.38   77.99824                Bisexual         Sometimes
## 9379   63.50  139.99118                Bisexual            Rarely
## 9380   53.07  116.99735 Heterosexual (straight)            Rarely
## 9381   47.63  105.00441 Heterosexual (straight)            Rarely
## 9382   47.63  105.00441 Heterosexual (straight)         Sometimes
## 9383   52.16  114.99118                Bisexual         Sometimes
## 9384   75.75  166.99735          Gay or lesbian  Most of the time
## 9385   94.35  208.00265 Heterosexual (straight)             Never
## 9386   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9387   72.58  160.00882 Heterosexual (straight)             Never
## 9388   52.16  114.99118 Heterosexual (straight)         Sometimes
## 9389      NA         NA                Not sure            Rarely
## 9390   63.50  139.99118 Heterosexual (straight)            Always
## 9391   45.36  100.00000 Heterosexual (straight)  Most of the time
## 9392   92.99  205.00441 Heterosexual (straight)             Never
## 9393  103.42  227.99824 Heterosexual (straight)         Sometimes
## 9394   58.06  127.99824 Heterosexual (straight)         Sometimes
## 9395   71.22  157.01058 Heterosexual (straight)             Never
## 9396   61.24  135.00882 Heterosexual (straight)            Rarely
## 9397   58.97  130.00441                Bisexual            Always
## 9398   77.11  169.99559 Heterosexual (straight)             Never
## 9399   58.97  130.00441                Bisexual  Most of the time
## 9400   44.45   97.99383                Bisexual         Sometimes
## 9401   63.96  141.00529 Heterosexual (straight)         Sometimes
## 9402   83.46  183.99471 Heterosexual (straight)         Sometimes
## 9403      NA         NA Heterosexual (straight)         Sometimes
## 9404   64.86  142.98942                Bisexual  Most of the time
## 9405   72.58  160.00882 Heterosexual (straight)             Never
## 9406   68.04  150.00000 Heterosexual (straight)            Rarely
## 9407   98.88  217.98942          Some other way         Sometimes
## 9408   46.27  102.00617 Heterosexual (straight)            Rarely
## 9409   72.58  160.00882 Heterosexual (straight)         Sometimes
## 9410   70.31  155.00441                Bisexual  Most of the time
## 9411   78.47  172.99383 Heterosexual (straight)             Never
## 9412   81.65  180.00441          Gay or lesbian            Always
## 9413      NA         NA Heterosexual (straight)  Most of the time
## 9414   81.65  180.00441 Heterosexual (straight)  Most of the time
## 9415   81.65  180.00441 Heterosexual (straight)            Rarely
## 9416   56.70  125.00000                Not sure         Sometimes
## 9417   58.97  130.00441 Heterosexual (straight)            Rarely
## 9418   87.09  191.99735 Heterosexual (straight)         Sometimes
## 9419   63.50  139.99118 Heterosexual (straight)            Rarely
## 9420  102.06  225.00000 Heterosexual (straight)         Sometimes
## 9421   99.79  219.99559 Heterosexual (straight)             Never
## 9422   97.98  216.00529 Heterosexual (straight)  Most of the time
## 9423   62.60  138.00705 Heterosexual (straight)  Most of the time
## 9424   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9425   68.04  150.00000                Bisexual         Sometimes
## 9426   72.12  158.99471 Heterosexual (straight)            Rarely
## 9427   63.50  139.99118                Bisexual         Sometimes
## 9428   61.24  135.00882 Heterosexual (straight)  Most of the time
## 9429   81.65  180.00441 Heterosexual (straight)             Never
## 9430  103.87  228.99030 Heterosexual (straight)            Rarely
## 9431   95.26  210.00882 Heterosexual (straight)            Rarely
## 9432  128.37  283.00265 Heterosexual (straight)             Never
## 9433   90.72  200.00000 Heterosexual (straight)             Never
## 9434   74.84  164.99118 Heterosexual (straight)            Rarely
## 9435   68.04  150.00000 Heterosexual (straight)             Never
## 9436   79.38  175.00000 Heterosexual (straight)            Rarely
## 9437   65.77  144.99559 Heterosexual (straight)             Never
## 9438   60.33  133.00265 Heterosexual (straight)             Never
## 9439   53.07  116.99735 Heterosexual (straight)             Never
## 9440   63.50  139.99118 Heterosexual (straight)             Never
## 9441   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9442      NA         NA                Not sure             Never
## 9443   52.62  116.00529 Heterosexual (straight)         Sometimes
## 9444   89.81  197.99383 Heterosexual (straight)              <NA>
## 9445   81.65  180.00441                Bisexual         Sometimes
## 9446   99.79  219.99559 Heterosexual (straight)             Never
## 9447   64.86  142.98942 Heterosexual (straight)             Never
## 9448   53.07  116.99735 Heterosexual (straight)         Sometimes
## 9449   76.20  167.98942 Heterosexual (straight)             Never
## 9450   58.97  130.00441 Heterosexual (straight)             Never
## 9451   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9452   68.04  150.00000 Heterosexual (straight)            Always
## 9453   52.16  114.99118 Heterosexual (straight)             Never
## 9454   52.16  114.99118 Heterosexual (straight)  Most of the time
## 9455   80.74  177.99824 Heterosexual (straight)            Rarely
## 9456   83.92  185.00882                Bisexual         Sometimes
## 9457   54.43  119.99559                Bisexual  Most of the time
## 9458      NA         NA                Bisexual            Rarely
## 9459   52.16  114.99118 Heterosexual (straight)             Never
## 9460      NA         NA                Bisexual  Most of the time
## 9461   46.72  102.99824 Heterosexual (straight)             Never
## 9462   56.70  125.00000 Heterosexual (straight)            Rarely
## 9463   79.38  175.00000 Heterosexual (straight)             Never
## 9464   65.77  144.99559 Heterosexual (straight)            Rarely
## 9465   70.31  155.00441 Heterosexual (straight)             Never
## 9466   81.65  180.00441 Heterosexual (straight)             Never
## 9467   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9468   92.08  202.99824 Heterosexual (straight)         Sometimes
## 9469   90.72  200.00000          Gay or lesbian            Rarely
## 9470   64.41  141.99735 Heterosexual (straight)             Never
## 9471   74.84  164.99118 Heterosexual (straight)         Sometimes
## 9472   90.72  200.00000 Heterosexual (straight)             Never
## 9473   51.26  113.00705                Bisexual  Most of the time
## 9474   96.16  211.99295 Heterosexual (straight)             Never
## 9475  145.15  319.99559 Heterosexual (straight)             Never
## 9476   70.76  155.99647          Gay or lesbian         Sometimes
## 9477   63.05  138.99912                Bisexual         Sometimes
## 9478   80.29  177.00617          Some other way  Most of the time
## 9479      NA         NA Heterosexual (straight)         Sometimes
## 9480   81.65  180.00441 Heterosexual (straight)            Rarely
## 9481   64.86  142.98942 Heterosexual (straight)         Sometimes
## 9482   84.37  186.00088 Heterosexual (straight)            Rarely
## 9483   86.18  189.99118 Heterosexual (straight)         Sometimes
## 9484   77.11  169.99559 Heterosexual (straight)         Sometimes
## 9485   78.47  172.99383          Some other way            Always
## 9486   55.34  122.00176 Heterosexual (straight)             Never
## 9487      NA         NA Heterosexual (straight)              <NA>
## 9488   61.24  135.00882 Heterosexual (straight)            Rarely
## 9489   77.11  169.99559 Heterosexual (straight)             Never
## 9490   65.77  144.99559 Heterosexual (straight)             Never
## 9491  106.60  235.00882 Heterosexual (straight)         Sometimes
## 9492   43.55   96.00970                Bisexual            Always
## 9493   54.43  119.99559 Heterosexual (straight)  Most of the time
## 9494      NA         NA Heterosexual (straight)         Sometimes
## 9495   58.97  130.00441 Heterosexual (straight)  Most of the time
## 9496   71.67  158.00265 Heterosexual (straight)            Always
## 9497   86.18  189.99118                Bisexual  Most of the time
## 9498   68.95  152.00617 Heterosexual (straight)            Rarely
## 9499  113.40  250.00000 Heterosexual (straight)            Rarely
## 9500   78.02  172.00176          Gay or lesbian            Rarely
## 9501   52.16  114.99118 Heterosexual (straight)             Never
## 9502   89.81  197.99383 Heterosexual (straight)  Most of the time
## 9503   52.16  114.99118 Heterosexual (straight)            Always
## 9504   89.81  197.99383 Heterosexual (straight)            Always
## 9505   63.50  139.99118 Heterosexual (straight)             Never
## 9506      NA         NA Heterosexual (straight)            Always
## 9507   43.09   94.99559                Bisexual         Sometimes
## 9508   81.65  180.00441 Heterosexual (straight)             Never
## 9509   81.65  180.00441 Heterosexual (straight)         Sometimes
## 9510      NA         NA Heterosexual (straight)  Most of the time
## 9511   70.76  155.99647          Some other way         Sometimes
## 9512   63.50  139.99118                Not sure            Always
## 9513   81.65  180.00441 Heterosexual (straight)  Most of the time
## 9514   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9515      NA         NA Heterosexual (straight)            Always
## 9516   79.38  175.00000 Heterosexual (straight)         Sometimes
## 9517   63.50  139.99118                Bisexual         Sometimes
## 9518   65.77  144.99559 Heterosexual (straight)  Most of the time
## 9519  103.87  228.99030                Bisexual            Always
## 9520      NA         NA          Some other way            Always
## 9521   42.64   94.00353                Bisexual  Most of the time
## 9522      NA         NA Heterosexual (straight)             Never
## 9523  106.60  235.00882 Heterosexual (straight)            Rarely
## 9524   63.50  139.99118 Heterosexual (straight)             Never
## 9525   84.82  186.99295 Heterosexual (straight)             Never
## 9526   73.48  161.99295 Heterosexual (straight)            Rarely
## 9527   75.75  166.99735 Heterosexual (straight)             Never
## 9528   59.88  132.01058 Heterosexual (straight)             Never
## 9529   47.63  105.00441                Bisexual  Most of the time
## 9530   59.42  130.99647 Heterosexual (straight)             Never
## 9531   65.77  144.99559 Heterosexual (straight)             Never
## 9532   51.26  113.00705 Heterosexual (straight)         Sometimes
## 9533   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9534      NA         NA Heterosexual (straight)         Sometimes
## 9535   83.92  185.00882 Heterosexual (straight)            Rarely
## 9536   61.24  135.00882 Heterosexual (straight)             Never
## 9537   54.43  119.99559 Heterosexual (straight)             Never
## 9538   68.04  150.00000 Heterosexual (straight)              <NA>
## 9539   72.58  160.00882 Heterosexual (straight)             Never
## 9540   64.41  141.99735 Heterosexual (straight)            Rarely
## 9541   56.70  125.00000 Heterosexual (straight)         Sometimes
## 9542  127.01  280.00441                Bisexual            Always
## 9543      NA         NA          Gay or lesbian  Most of the time
## 9544  108.86  239.99118 Heterosexual (straight)            Rarely
## 9545   79.38  175.00000 Heterosexual (straight)  Most of the time
## 9546   66.23  146.00970 Heterosexual (straight)             Never
## 9547   61.69  136.00088                Not sure            Rarely
## 9548   41.28   91.00529 Heterosexual (straight)            Always
## 9549   77.11  169.99559 Heterosexual (straight)             Never
## 9550      NA         NA Heterosexual (straight)            Rarely
## 9551   92.99  205.00441 Heterosexual (straight)            Rarely
## 9552   79.38  175.00000          Gay or lesbian  Most of the time
## 9553   49.90  110.00882                Not sure         Sometimes
## 9554   47.17  103.99030 Heterosexual (straight)            Rarely
## 9555  112.04  247.00176 Heterosexual (straight)  Most of the time
## 9556   47.63  105.00441 Heterosexual (straight)         Sometimes
## 9557   83.92  185.00882 Heterosexual (straight)  Most of the time
## 9558   56.70  125.00000 Heterosexual (straight)            Rarely
## 9559   86.18  189.99118 Heterosexual (straight)             Never
## 9560   74.84  164.99118 Heterosexual (straight)            Rarely
## 9561   38.56   85.00882 Heterosexual (straight)            Rarely
## 9562  101.61  224.00794 Heterosexual (straight)             Never
## 9563   53.98  119.00353 Heterosexual (straight)             Never
## 9564   72.12  158.99471 Heterosexual (straight)              <NA>
## 9565   61.24  135.00882 Heterosexual (straight)  Most of the time
## 9566   58.97  130.00441 Heterosexual (straight)            Rarely
## 9567   72.58  160.00882                Not sure            Always
## 9568   58.51  128.99030 Heterosexual (straight)  Most of the time
## 9569   74.84  164.99118 Heterosexual (straight)         Sometimes
## 9570   70.31  155.00441 Heterosexual (straight)            Rarely
## 9571   61.69  136.00088 Heterosexual (straight)         Sometimes
## 9572      NA         NA Heterosexual (straight)             Never
## 9573   77.11  169.99559 Heterosexual (straight)            Rarely
## 9574   79.38  175.00000 Heterosexual (straight)  Most of the time
## 9575   83.92  185.00882                Bisexual            Always
## 9576   44.45   97.99383 Heterosexual (straight)         Sometimes
## 9577   80.29  177.00617                Bisexual  Most of the time
## 9578      NA         NA                Not sure             Never
## 9579   63.50  139.99118 Heterosexual (straight)             Never
## 9580  104.33  230.00441 Heterosexual (straight)            Rarely
## 9581      NA         NA          Gay or lesbian  Most of the time
## 9582   74.84  164.99118 Heterosexual (straight)         Sometimes
## 9583   70.76  155.99647 Heterosexual (straight)         Sometimes
## 9584   95.26  210.00882 Heterosexual (straight)             Never
## 9585   45.36  100.00000 Heterosexual (straight)         Sometimes
## 9586   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9587   74.84  164.99118 Heterosexual (straight)             Never
## 9588   92.08  202.99824 Heterosexual (straight)            Rarely
## 9589   63.50  139.99118          Gay or lesbian         Sometimes
## 9590   68.04  150.00000                Bisexual             Never
## 9591   78.93  174.00794 Heterosexual (straight)            Rarely
## 9592   52.16  114.99118 Heterosexual (straight)            Rarely
## 9593   61.24  135.00882 Heterosexual (straight)            Rarely
## 9594   63.50  139.99118          Gay or lesbian         Sometimes
## 9595   58.97  130.00441 Heterosexual (straight)  Most of the time
## 9596   56.70  125.00000 Heterosexual (straight)            Rarely
## 9597   86.18  189.99118 Heterosexual (straight)            Rarely
## 9598   63.50  139.99118 Heterosexual (straight)             Never
## 9599  116.12  255.99647 Heterosexual (straight)         Sometimes
## 9600   70.31  155.00441 Heterosexual (straight)            Rarely
## 9601   49.90  110.00882                Bisexual         Sometimes
## 9602   61.24  135.00882          Gay or lesbian  Most of the time
## 9603   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9604   78.02  172.00176                Bisexual  Most of the time
## 9605   56.70  125.00000          Gay or lesbian  Most of the time
## 9606   76.66  169.00353 Heterosexual (straight)             Never
## 9607   63.50  139.99118 Heterosexual (straight)            Rarely
## 9608  124.74  275.00000                Bisexual  Most of the time
## 9609   72.58  160.00882 Heterosexual (straight)  Most of the time
## 9610   55.79  122.99383                Bisexual         Sometimes
## 9611   54.43  119.99559 Heterosexual (straight)  Most of the time
## 9612  122.47  269.99559          Some other way         Sometimes
## 9613   90.72  200.00000 Heterosexual (straight)  Most of the time
## 9614   55.34  122.00176                Bisexual         Sometimes
## 9615   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9616   56.70  125.00000 Heterosexual (straight)  Most of the time
## 9617   69.85  153.99030                Bisexual  Most of the time
## 9618   63.50  139.99118                Bisexual  Most of the time
## 9619      NA         NA          Some other way  Most of the time
## 9620   72.58  160.00882 Heterosexual (straight)            Rarely
## 9621   63.50  139.99118 Heterosexual (straight)  Most of the time
## 9622   99.79  219.99559                Not sure  Most of the time
## 9623   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9624   90.72  200.00000 Heterosexual (straight)            Rarely
## 9625   63.50  139.99118                Not sure         Sometimes
## 9626   95.26  210.00882 Heterosexual (straight)            Rarely
## 9627   95.26  210.00882 Heterosexual (straight)  Most of the time
## 9628   58.97  130.00441 Heterosexual (straight)            Rarely
## 9629      NA         NA Heterosexual (straight)            Rarely
## 9630   35.38   77.99824 Heterosexual (straight)         Sometimes
## 9631   50.80  111.99295 Heterosexual (straight)         Sometimes
## 9632   56.70  125.00000 Heterosexual (straight)  Most of the time
## 9633  120.20  264.99118 Heterosexual (straight)         Sometimes
## 9634   52.16  114.99118 Heterosexual (straight)             Never
## 9635   61.24  135.00882          Some other way             Never
## 9636   79.38  175.00000                Bisexual         Sometimes
## 9637   70.31  155.00441 Heterosexual (straight)  Most of the time
## 9638   94.35  208.00265 Heterosexual (straight)            Rarely
## 9639   83.92  185.00882 Heterosexual (straight)            Rarely
## 9640   68.04  150.00000                Bisexual         Sometimes
## 9641   72.58  160.00882                Not sure            Rarely
## 9642      NA         NA Heterosexual (straight)            Always
## 9643   48.54  107.01058 Heterosexual (straight)         Sometimes
## 9644   65.77  144.99559 Heterosexual (straight)            Rarely
## 9645   88.45  194.99559 Heterosexual (straight)             Never
## 9646   48.54  107.01058 Heterosexual (straight)            Rarely
## 9647   90.72  200.00000                Not sure         Sometimes
## 9648   74.84  164.99118 Heterosexual (straight)            Rarely
## 9649   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9650   55.79  122.99383 Heterosexual (straight)            Rarely
## 9651      NA         NA Heterosexual (straight)            Rarely
## 9652   58.97  130.00441 Heterosexual (straight)            Rarely
## 9653   49.90  110.00882                Bisexual  Most of the time
## 9654   50.80  111.99295                Bisexual         Sometimes
## 9655   86.64  191.00529 Heterosexual (straight)         Sometimes
## 9656   61.24  135.00882 Heterosexual (straight)            Always
## 9657   65.77  144.99559                Bisexual         Sometimes
## 9658   52.16  114.99118          Gay or lesbian  Most of the time
## 9659   72.58  160.00882 Heterosexual (straight)         Sometimes
## 9660   76.20  167.98942                Bisexual  Most of the time
## 9661   63.50  139.99118 Heterosexual (straight)            Rarely
## 9662   57.15  125.99206                Bisexual  Most of the time
## 9663   58.97  130.00441 Heterosexual (straight)             Never
## 9664   46.72  102.99824 Heterosexual (straight)             Never
## 9665  136.08  300.00000 Heterosexual (straight)  Most of the time
## 9666   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9667   52.16  114.99118 Heterosexual (straight)         Sometimes
## 9668   68.04  150.00000 Heterosexual (straight)            Always
## 9669   47.63  105.00441 Heterosexual (straight)            Rarely
## 9670   50.80  111.99295 Heterosexual (straight)            Always
## 9671  122.47  269.99559 Heterosexual (straight)            Rarely
## 9672  106.60  235.00882 Heterosexual (straight)            Rarely
## 9673   70.31  155.00441                Bisexual         Sometimes
## 9674   54.43  119.99559                Bisexual            Rarely
## 9675   74.84  164.99118 Heterosexual (straight)            Rarely
## 9676      NA         NA Heterosexual (straight)         Sometimes
## 9677   66.23  146.00970 Heterosexual (straight)            Rarely
## 9678   81.65  180.00441 Heterosexual (straight)            Rarely
## 9679   52.16  114.99118 Heterosexual (straight)            Always
## 9680   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9681   53.52  117.98942                Bisexual  Most of the time
## 9682   61.24  135.00882                Bisexual  Most of the time
## 9683   97.52  214.99118 Heterosexual (straight)            Rarely
## 9684   90.72  200.00000                Bisexual            Rarely
## 9685   61.24  135.00882 Heterosexual (straight)         Sometimes
## 9686   61.24  135.00882          Some other way  Most of the time
## 9687   49.90  110.00882 Heterosexual (straight)            Rarely
## 9688      NA         NA          Gay or lesbian         Sometimes
## 9689      NA         NA          Gay or lesbian         Sometimes
## 9690   72.58  160.00882 Heterosexual (straight)         Sometimes
## 9691   81.65  180.00441 Heterosexual (straight)             Never
## 9692   79.38  175.00000                Bisexual  Most of the time
## 9693   60.33  133.00265 Heterosexual (straight)  Most of the time
## 9694   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9695   52.16  114.99118                Not sure         Sometimes
## 9696   56.70  125.00000                Bisexual  Most of the time
## 9697   43.09   94.99559 Heterosexual (straight)         Sometimes
## 9698   88.00  194.00353 Heterosexual (straight)         Sometimes
## 9699   86.18  189.99118 Heterosexual (straight)         Sometimes
## 9700  111.59  246.00970 Heterosexual (straight)         Sometimes
## 9701   65.77  144.99559 Heterosexual (straight)              <NA>
## 9702   58.97  130.00441 Heterosexual (straight)  Most of the time
## 9703   45.36  100.00000 Heterosexual (straight)             Never
## 9704   85.73  188.99912          Some other way            Rarely
## 9705   56.70  125.00000          Some other way         Sometimes
## 9706   61.24  135.00882 Heterosexual (straight)         Sometimes
## 9707   61.69  136.00088          Some other way         Sometimes
## 9708   77.11  169.99559                Bisexual  Most of the time
## 9709   58.97  130.00441 Heterosexual (straight)  Most of the time
## 9710   58.06  127.99824                Bisexual         Sometimes
## 9711   69.40  152.99824 Heterosexual (straight)            Always
## 9712  111.13  244.99559 Heterosexual (straight)            Always
## 9713   65.77  144.99559                Bisexual         Sometimes
## 9714   53.98  119.00353 Heterosexual (straight)  Most of the time
## 9715   60.78  133.99471 Heterosexual (straight)            Rarely
## 9716   81.65  180.00441 Heterosexual (straight)            Rarely
## 9717  116.12  255.99647 Heterosexual (straight)             Never
## 9718   49.90  110.00882                Bisexual         Sometimes
## 9719   48.99  108.00265 Heterosexual (straight)            Rarely
## 9720   62.60  138.00705 Heterosexual (straight)            Always
## 9721   84.37  186.00088 Heterosexual (straight)            Rarely
## 9722   56.70  125.00000 Heterosexual (straight)  Most of the time
## 9723   72.58  160.00882 Heterosexual (straight)             Never
## 9724   50.35  111.00088 Heterosexual (straight)         Sometimes
## 9725   79.38  175.00000 Heterosexual (straight)            Rarely
## 9726   79.38  175.00000 Heterosexual (straight)             Never
## 9727   90.72  200.00000                Bisexual  Most of the time
## 9728   88.45  194.99559 Heterosexual (straight)            Rarely
## 9729   72.58  160.00882 Heterosexual (straight)            Rarely
## 9730      NA         NA Heterosexual (straight)  Most of the time
## 9731   56.70  125.00000 Heterosexual (straight)            Rarely
## 9732   88.45  194.99559 Heterosexual (straight)            Always
## 9733   92.99  205.00441 Heterosexual (straight)            Rarely
## 9734  113.40  250.00000 Heterosexual (straight)            Rarely
## 9735  145.15  319.99559 Heterosexual (straight)  Most of the time
## 9736      NA         NA Heterosexual (straight)         Sometimes
## 9737   58.51  128.99030 Heterosexual (straight)  Most of the time
## 9738      NA         NA Heterosexual (straight)             Never
## 9739   63.50  139.99118          Gay or lesbian         Sometimes
## 9740   77.11  169.99559 Heterosexual (straight)  Most of the time
## 9741   63.50  139.99118 Heterosexual (straight)            Rarely
## 9742   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9743   58.97  130.00441          Gay or lesbian         Sometimes
## 9744   70.31  155.00441 Heterosexual (straight)         Sometimes
## 9745   58.97  130.00441 Heterosexual (straight)             Never
## 9746   72.58  160.00882                Bisexual  Most of the time
## 9747   49.90  110.00882 Heterosexual (straight)            Rarely
## 9748   90.72  200.00000 Heterosexual (straight)            Rarely
## 9749   54.89  121.00970 Heterosexual (straight)         Sometimes
## 9750   44.91   99.00794 Heterosexual (straight)  Most of the time
## 9751   61.24  135.00882                Bisexual  Most of the time
## 9752   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9753   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9754   61.24  135.00882 Heterosexual (straight)            Rarely
## 9755   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9756   49.90  110.00882 Heterosexual (straight)            Rarely
## 9757  113.40  250.00000 Heterosexual (straight)             Never
## 9758   74.84  164.99118 Heterosexual (straight)  Most of the time
## 9759  104.33  230.00441                Bisexual            Always
## 9760   90.72  200.00000 Heterosexual (straight)            Always
## 9761   74.84  164.99118          Gay or lesbian         Sometimes
## 9762   49.90  110.00882                Not sure  Most of the time
## 9763  101.15  222.99383 Heterosexual (straight)  Most of the time
## 9764   95.26  210.00882 Heterosexual (straight)  Most of the time
## 9765   58.97  130.00441 Heterosexual (straight)            Rarely
## 9766   83.92  185.00882 Heterosexual (straight)             Never
## 9767   61.24  135.00882 Heterosexual (straight)  Most of the time
## 9768   56.70  125.00000 Heterosexual (straight)            Rarely
## 9769   53.07  116.99735 Heterosexual (straight)  Most of the time
## 9770   96.62  213.00705          Some other way  Most of the time
## 9771   52.16  114.99118 Heterosexual (straight)         Sometimes
## 9772   61.24  135.00882                Not sure  Most of the time
## 9773   90.72  200.00000 Heterosexual (straight)            Always
## 9774   95.26  210.00882 Heterosexual (straight)            Rarely
## 9775   47.63  105.00441 Heterosexual (straight)            Rarely
## 9776  111.13  244.99559 Heterosexual (straight)            Always
## 9777   56.70  125.00000                Bisexual  Most of the time
## 9778  113.40  250.00000          Some other way  Most of the time
## 9779   70.31  155.00441                Bisexual            Rarely
## 9780   86.18  189.99118 Heterosexual (straight)  Most of the time
## 9781   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9782   56.70  125.00000 Heterosexual (straight)            Rarely
## 9783      NA         NA          Gay or lesbian            Rarely
## 9784   70.76  155.99647 Heterosexual (straight)         Sometimes
## 9785   68.95  152.00617 Heterosexual (straight)  Most of the time
## 9786   92.99  205.00441 Heterosexual (straight)         Sometimes
## 9787   57.15  125.99206                Bisexual  Most of the time
## 9788   52.16  114.99118 Heterosexual (straight)  Most of the time
## 9789   63.50  139.99118 Heterosexual (straight)            Rarely
## 9790   90.72  200.00000 Heterosexual (straight)            Rarely
## 9791   92.99  205.00441 Heterosexual (straight)            Rarely
## 9792   56.70  125.00000 Heterosexual (straight)         Sometimes
## 9793   49.90  110.00882 Heterosexual (straight)             Never
## 9794  129.28  285.00882 Heterosexual (straight)         Sometimes
## 9795   68.04  150.00000 Heterosexual (straight)            Rarely
## 9796   67.13  147.99383 Heterosexual (straight)            Always
## 9797   53.52  117.98942 Heterosexual (straight)             Never
## 9798   86.18  189.99118          Some other way  Most of the time
## 9799   55.34  122.00176          Gay or lesbian  Most of the time
## 9800   77.11  169.99559          Some other way         Sometimes
## 9801   81.65  180.00441                Bisexual         Sometimes
## 9802  110.22  242.98942 Heterosexual (straight)            Rarely
## 9803   83.92  185.00882 Heterosexual (straight)            Rarely
## 9804   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9805   61.24  135.00882 Heterosexual (straight)             Never
## 9806      NA         NA Heterosexual (straight)             Never
## 9807   65.77  144.99559 Heterosexual (straight)             Never
## 9808   83.92  185.00882 Heterosexual (straight)             Never
## 9809   59.88  132.01058 Heterosexual (straight)            Always
## 9810      NA         NA Heterosexual (straight)              <NA>
## 9811   58.97  130.00441 Heterosexual (straight)  Most of the time
## 9812   86.18  189.99118 Heterosexual (straight)         Sometimes
## 9813   63.50  139.99118 Heterosexual (straight)  Most of the time
## 9814   79.38  175.00000 Heterosexual (straight)            Rarely
## 9815   65.77  144.99559 Heterosexual (straight)  Most of the time
## 9816   54.43  119.99559 Heterosexual (straight)            Rarely
## 9817   40.82   89.99118 Heterosexual (straight)         Sometimes
## 9818      NA         NA Heterosexual (straight)            Rarely
## 9819   54.43  119.99559 Heterosexual (straight)            Always
## 9820   49.90  110.00882          Some other way            Always
## 9821  158.76  350.00000 Heterosexual (straight)  Most of the time
## 9822   54.43  119.99559 Heterosexual (straight)         Sometimes
## 9823      NA         NA Heterosexual (straight)             Never
## 9824   70.31  155.00441 Heterosexual (straight)         Sometimes
## 9825   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9826   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9827   67.13  147.99383 Heterosexual (straight)            Rarely
## 9828   65.77  144.99559 Heterosexual (straight)              <NA>
## 9829   51.71  113.99912 Heterosexual (straight)         Sometimes
## 9830   72.58  160.00882 Heterosexual (straight)             Never
## 9831   68.04  150.00000 Heterosexual (straight)            Rarely
## 9832  124.74  275.00000 Heterosexual (straight)            Rarely
## 9833   71.67  158.00265 Heterosexual (straight)             Never
## 9834   63.05  138.99912 Heterosexual (straight)            Rarely
## 9835   51.71  113.99912 Heterosexual (straight)  Most of the time
## 9836      NA         NA Heterosexual (straight)              <NA>
## 9837   81.65  180.00441 Heterosexual (straight)             Never
## 9838   61.24  135.00882 Heterosexual (straight)  Most of the time
## 9839   43.09   94.99559 Heterosexual (straight)            Rarely
## 9840   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9841   90.72  200.00000 Heterosexual (straight)            Always
## 9842   86.18  189.99118 Heterosexual (straight)             Never
## 9843   77.11  169.99559 Heterosexual (straight)  Most of the time
## 9844   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9845   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9846   60.78  133.99471 Heterosexual (straight)            Rarely
## 9847   58.06  127.99824 Heterosexual (straight)            Always
## 9848   86.18  189.99118 Heterosexual (straight)         Sometimes
## 9849   56.70  125.00000                Bisexual            Rarely
## 9850   68.04  150.00000 Heterosexual (straight)  Most of the time
## 9851      NA         NA Heterosexual (straight)  Most of the time
## 9852   45.36  100.00000          Gay or lesbian         Sometimes
## 9853   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9854   47.17  103.99030          Gay or lesbian            Always
## 9855   55.79  122.99383 Heterosexual (straight)            Rarely
## 9856   99.79  219.99559          Gay or lesbian  Most of the time
## 9857   72.58  160.00882          Some other way            Rarely
## 9858  113.40  250.00000 Heterosexual (straight)         Sometimes
## 9859   37.65   83.00265          Gay or lesbian              <NA>
## 9860   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9861   61.24  135.00882 Heterosexual (straight)         Sometimes
## 9862   65.77  144.99559 Heterosexual (straight)            Rarely
## 9863   44.45   97.99383 Heterosexual (straight)         Sometimes
## 9864   52.16  114.99118 Heterosexual (straight)            Rarely
## 9865   95.26  210.00882 Heterosexual (straight)            Rarely
## 9866   68.04  150.00000          Gay or lesbian         Sometimes
## 9867   72.58  160.00882 Heterosexual (straight)            Rarely
## 9868   52.16  114.99118 Heterosexual (straight)            Rarely
## 9869   85.73  188.99912 Heterosexual (straight)            Rarely
## 9870   65.77  144.99559                Not sure         Sometimes
## 9871   45.36  100.00000                Not sure         Sometimes
## 9872   45.36  100.00000 Heterosexual (straight)         Sometimes
## 9873  158.76  350.00000 Heterosexual (straight)            Rarely
## 9874   77.11  169.99559                Bisexual  Most of the time
## 9875   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9876   63.50  139.99118 Heterosexual (straight)         Sometimes
## 9877   58.97  130.00441                Bisexual  Most of the time
## 9878   49.90  110.00882 Heterosexual (straight)         Sometimes
## 9879   53.52  117.98942 Heterosexual (straight)            Always
## 9880   97.52  214.99118                Not sure            Always
## 9881   52.16  114.99118 Heterosexual (straight)         Sometimes
## 9882   53.52  117.98942          Gay or lesbian            Always
## 9883      NA         NA                Not sure  Most of the time
## 9884   68.95  152.00617 Heterosexual (straight)             Never
## 9885   60.78  133.99471 Heterosexual (straight)            Rarely
## 9886   61.24  135.00882                Not sure         Sometimes
## 9887   70.31  155.00441 Heterosexual (straight)            Rarely
## 9888   72.58  160.00882 Heterosexual (straight)         Sometimes
## 9889      NA         NA          Some other way            Rarely
## 9890   76.20  167.98942 Heterosexual (straight)             Never
## 9891   52.62  116.00529          Gay or lesbian         Sometimes
## 9892   71.22  157.01058 Heterosexual (straight)  Most of the time
## 9893   83.01  183.00265 Heterosexual (straight)         Sometimes
## 9894   83.92  185.00882                Bisexual  Most of the time
## 9895   64.86  142.98942 Heterosexual (straight)         Sometimes
## 9896   54.43  119.99559                Bisexual  Most of the time
## 9897   58.97  130.00441          Gay or lesbian            Rarely
## 9898   52.16  114.99118          Some other way  Most of the time
## 9899   52.16  114.99118 Heterosexual (straight)         Sometimes
## 9900   52.16  114.99118 Heterosexual (straight)             Never
## 9901   61.69  136.00088                Bisexual  Most of the time
## 9902   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9903   56.70  125.00000 Heterosexual (straight)  Most of the time
## 9904   61.24  135.00882 Heterosexual (straight)         Sometimes
## 9905   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9906   81.65  180.00441 Heterosexual (straight)  Most of the time
## 9907   46.72  102.99824 Heterosexual (straight)  Most of the time
## 9908   99.79  219.99559 Heterosexual (straight)         Sometimes
## 9909   88.45  194.99559 Heterosexual (straight)         Sometimes
## 9910   62.60  138.00705 Heterosexual (straight)            Rarely
## 9911   52.62  116.00529          Some other way         Sometimes
## 9912      NA         NA Heterosexual (straight)         Sometimes
## 9913   72.58  160.00882 Heterosexual (straight)  Most of the time
## 9914   63.50  139.99118                Bisexual  Most of the time
## 9915   81.65  180.00441          Gay or lesbian  Most of the time
## 9916   56.70  125.00000 Heterosexual (straight)            Rarely
## 9917   58.06  127.99824 Heterosexual (straight)            Rarely
## 9918      NA         NA Heterosexual (straight)            Always
## 9919   68.04  150.00000          Gay or lesbian  Most of the time
## 9920   61.24  135.00882 Heterosexual (straight)             Never
## 9921   95.26  210.00882 Heterosexual (straight)            Rarely
## 9922      NA         NA Heterosexual (straight)             Never
## 9923   53.52  117.98942 Heterosexual (straight)            Rarely
## 9924   81.65  180.00441          Gay or lesbian         Sometimes
## 9925   56.70  125.00000 Heterosexual (straight)              <NA>
## 9926   90.72  200.00000 Heterosexual (straight)  Most of the time
## 9927   72.58  160.00882 Heterosexual (straight)             Never
## 9928   61.24  135.00882 Heterosexual (straight)            Rarely
## 9929   68.04  150.00000 Heterosexual (straight)         Sometimes
## 9930   44.00   97.00176                Not sure            Always
## 9931      NA         NA                Bisexual         Sometimes
## 9932   48.99  108.00265 Heterosexual (straight)  Most of the time
## 9933      NA         NA                Not sure         Sometimes
## 9934  104.33  230.00441                Bisexual            Always
## 9935   67.13  147.99383                Not sure         Sometimes
## 9936   53.52  117.98942                Bisexual            Always
## 9937   63.50  139.99118 Heterosexual (straight)            Rarely
## 9938   52.62  116.00529 Heterosexual (straight)         Sometimes
## 9939   81.65  180.00441 Heterosexual (straight)  Most of the time
## 9940   70.31  155.00441 Heterosexual (straight)            Rarely
## 9941   47.63  105.00441 Heterosexual (straight)  Most of the time
## 9942   68.04  150.00000                Bisexual         Sometimes
## 9943   68.04  150.00000 Heterosexual (straight)             Never
## 9944   52.62  116.00529                Not sure         Sometimes
## 9945   58.97  130.00441 Heterosexual (straight)  Most of the time
## 9946   88.45  194.99559 Heterosexual (straight)         Sometimes
## 9947   86.18  189.99118          Some other way         Sometimes
## 9948   81.65  180.00441 Heterosexual (straight)            Rarely
## 9949   72.58  160.00882                Bisexual  Most of the time
## 9950   97.52  214.99118 Heterosexual (straight)            Rarely
## 9951  101.15  222.99383 Heterosexual (straight)         Sometimes
## 9952   79.38  175.00000 Heterosexual (straight)            Rarely
## 9953      NA         NA          Some other way            Always
## 9954   66.68  147.00176 Heterosexual (straight)            Rarely
## 9955   68.04  150.00000          Some other way         Sometimes
## 9956  104.33  230.00441 Heterosexual (straight)            Rarely
## 9957   68.04  150.00000 Heterosexual (straight)             Never
## 9958   54.89  121.00970 Heterosexual (straight)         Sometimes
## 9959   63.50  139.99118                Bisexual         Sometimes
## 9960      NA         NA                Not sure  Most of the time
## 9961   83.92  185.00882 Heterosexual (straight)            Rarely
## 9962   59.88  132.01058 Heterosexual (straight)             Never
## 9963   61.24  135.00882 Heterosexual (straight)             Never
## 9964      NA         NA          Some other way         Sometimes
## 9965   52.16  114.99118                Bisexual  Most of the time
## 9966      NA         NA                Bisexual  Most of the time
## 9967   74.84  164.99118 Heterosexual (straight)             Never
## 9968   63.96  141.00529 Heterosexual (straight)         Sometimes
## 9969   58.97  130.00441 Heterosexual (straight)         Sometimes
## 9970   95.26  210.00882 Heterosexual (straight)            Rarely
## 9971   54.43  119.99559 Heterosexual (straight)  Most of the time
## 9972      NA         NA Heterosexual (straight)         Sometimes
## 9973   55.79  122.99383                Bisexual            Always
## 9974      NA         NA Heterosexual (straight)         Sometimes
## 9975   50.80  111.99295 Heterosexual (straight)         Sometimes
## 9976   81.65  180.00441 Heterosexual (straight)         Sometimes
## 9977   78.02  172.00176 Heterosexual (straight)            Rarely
## 9978   60.33  133.00265 Heterosexual (straight)            Rarely
## 9979   69.40  152.99824                Bisexual  Most of the time
## 9980   81.65  180.00441 Heterosexual (straight)            Rarely
## 9981   81.65  180.00441 Heterosexual (straight)            Rarely
## 9982   70.31  155.00441 Heterosexual (straight)            Rarely
## 9983   52.62  116.00529          Some other way  Most of the time
## 9984   94.80  208.99471 Heterosexual (straight)            Rarely
## 9985   48.54  107.01058                Bisexual  Most of the time
## 9986   59.88  132.01058 Heterosexual (straight)         Sometimes
## 9987   57.15  125.99206                Bisexual            Always
## 9988      NA         NA Heterosexual (straight)         Sometimes
## 9989   68.95  152.00617 Heterosexual (straight)            Rarely
## 9990   77.11  169.99559 Heterosexual (straight)         Sometimes
## 9991   63.50  139.99118 Heterosexual (straight)            Rarely
## 9992   65.77  144.99559 Heterosexual (straight)         Sometimes
## 9993   65.77  144.99559                Bisexual         Sometimes
## 9994   97.52  214.99118 Heterosexual (straight)         Sometimes
## 9995   86.18  189.99118 Heterosexual (straight)         Sometimes
## 9996      NA         NA          Gay or lesbian  Most of the time
## 9997   81.65  180.00441 Heterosexual (straight)              <NA>
## 9998   68.04  150.00000                Bisexual  Most of the time
## 9999   58.51  128.99030 Heterosexual (straight)            Rarely
## 10000  47.63  105.00441 Heterosexual (straight)            Rarely
## 10001  58.97  130.00441                Not sure  Most of the time
## 10002  59.88  132.01058                Bisexual  Most of the time
## 10003  95.26  210.00882 Heterosexual (straight)  Most of the time
## 10004  53.98  119.00353                Bisexual            Always
## 10005  49.44  108.99471                Bisexual            Rarely
## 10006  58.97  130.00441 Heterosexual (straight)            Rarely
## 10007  54.43  119.99559 Heterosexual (straight)            Rarely
## 10008  72.58  160.00882 Heterosexual (straight)            Rarely
## 10009 138.35  305.00441 Heterosexual (straight)  Most of the time
## 10010  61.24  135.00882 Heterosexual (straight)            Rarely
## 10011  74.84  164.99118 Heterosexual (straight)              <NA>
## 10012  77.11  169.99559 Heterosexual (straight)         Sometimes
## 10013  49.90  110.00882          Gay or lesbian         Sometimes
## 10014  56.70  125.00000 Heterosexual (straight)            Always
## 10015  61.24  135.00882 Heterosexual (straight)         Sometimes
## 10016  74.84  164.99118 Heterosexual (straight)             Never
## 10017  82.56  182.01058 Heterosexual (straight)             Never
## 10018  86.18  189.99118 Heterosexual (straight)             Never
## 10019  64.86  142.98942 Heterosexual (straight)         Sometimes
## 10020  83.92  185.00882 Heterosexual (straight)         Sometimes
## 10021  68.04  150.00000 Heterosexual (straight)            Always
## 10022  72.58  160.00882 Heterosexual (straight)            Rarely
## 10023     NA         NA                Bisexual  Most of the time
## 10024  81.65  180.00441                Bisexual  Most of the time
## 10025  52.16  114.99118                Bisexual            Always
## 10026  52.16  114.99118 Heterosexual (straight)  Most of the time
## 10027  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10028  58.97  130.00441 Heterosexual (straight)            Always
## 10029  65.77  144.99559 Heterosexual (straight)             Never
## 10030  70.31  155.00441 Heterosexual (straight)            Rarely
## 10031  65.77  144.99559 Heterosexual (straight)            Rarely
## 10032  63.50  139.99118          Some other way              <NA>
## 10033  88.91  196.00970 Heterosexual (straight)            Rarely
## 10034  62.60  138.00705 Heterosexual (straight)         Sometimes
## 10035  58.97  130.00441 Heterosexual (straight)             Never
## 10036  68.04  150.00000                Bisexual  Most of the time
## 10037  68.04  150.00000 Heterosexual (straight)         Sometimes
## 10038  54.89  121.00970                Not sure  Most of the time
## 10039  68.04  150.00000 Heterosexual (straight)            Always
## 10040  68.04  150.00000 Heterosexual (straight)            Rarely
## 10041  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10042  74.84  164.99118          Some other way             Never
## 10043  80.74  177.99824 Heterosexual (straight)  Most of the time
## 10044 121.56  267.98942 Heterosexual (straight)             Never
## 10045     NA         NA Heterosexual (straight)         Sometimes
## 10046  70.31  155.00441 Heterosexual (straight)            Rarely
## 10047  71.67  158.00265                Bisexual            Always
## 10048  34.02   75.00000                Not sure         Sometimes
## 10049  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10050     NA         NA Heterosexual (straight)             Never
## 10051 127.01  280.00441 Heterosexual (straight)         Sometimes
## 10052  65.77  144.99559 Heterosexual (straight)              <NA>
## 10053 108.86  239.99118 Heterosexual (straight)             Never
## 10054  56.70  125.00000 Heterosexual (straight)            Rarely
## 10055  53.07  116.99735 Heterosexual (straight)            Rarely
## 10056  61.24  135.00882 Heterosexual (straight)            Rarely
## 10057  84.37  186.00088 Heterosexual (straight)         Sometimes
## 10058  84.82  186.99295 Heterosexual (straight)  Most of the time
## 10059  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10060  95.26  210.00882 Heterosexual (straight)  Most of the time
## 10061  72.58  160.00882 Heterosexual (straight)             Never
## 10062  47.63  105.00441 Heterosexual (straight)         Sometimes
## 10063  38.56   85.00882 Heterosexual (straight)             Never
## 10064  81.65  180.00441 Heterosexual (straight)  Most of the time
## 10065  70.31  155.00441 Heterosexual (straight)  Most of the time
## 10066  57.61  127.00617 Heterosexual (straight)             Never
## 10067  83.92  185.00882 Heterosexual (straight)             Never
## 10068  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10069  45.36  100.00000 Heterosexual (straight)  Most of the time
## 10070     NA         NA          Gay or lesbian         Sometimes
## 10071  52.16  114.99118 Heterosexual (straight)             Never
## 10072  43.55   96.00970 Heterosexual (straight)  Most of the time
## 10073  72.58  160.00882 Heterosexual (straight)             Never
## 10074  54.43  119.99559 Heterosexual (straight)            Always
## 10075  95.26  210.00882 Heterosexual (straight)         Sometimes
## 10076  65.77  144.99559 Heterosexual (straight)             Never
## 10077     NA         NA Heterosexual (straight)  Most of the time
## 10078  97.52  214.99118 Heterosexual (straight)              <NA>
## 10079  48.54  107.01058 Heterosexual (straight)             Never
## 10080  45.36  100.00000                Bisexual            Always
## 10081     NA         NA Heterosexual (straight)             Never
## 10082  68.49  150.99206 Heterosexual (straight)         Sometimes
## 10083 117.94  260.00882 Heterosexual (straight)            Rarely
## 10084  61.24  135.00882 Heterosexual (straight)            Rarely
## 10085  68.04  150.00000 Heterosexual (straight)         Sometimes
## 10086  59.88  132.01058 Heterosexual (straight)  Most of the time
## 10087  77.11  169.99559 Heterosexual (straight)              <NA>
## 10088  45.36  100.00000 Heterosexual (straight)             Never
## 10089  44.00   97.00176 Heterosexual (straight)         Sometimes
## 10090  58.97  130.00441 Heterosexual (straight)  Most of the time
## 10091  88.45  194.99559 Heterosexual (straight)             Never
## 10092  74.84  164.99118 Heterosexual (straight)            Rarely
## 10093     NA         NA                Bisexual  Most of the time
## 10094  49.90  110.00882 Heterosexual (straight)            Rarely
## 10095  99.79  219.99559                Not sure            Always
## 10096  90.27  199.00794 Heterosexual (straight)         Sometimes
## 10097  61.69  136.00088 Heterosexual (straight)         Sometimes
## 10098  59.88  132.01058 Heterosexual (straight)             Never
## 10099  82.10  180.99647 Heterosexual (straight)             Never
## 10100     NA         NA Heterosexual (straight)            Rarely
## 10101  88.45  194.99559                Bisexual  Most of the time
## 10102  61.24  135.00882 Heterosexual (straight)            Always
## 10103  63.96  141.00529 Heterosexual (straight)         Sometimes
## 10104  86.18  189.99118 Heterosexual (straight)         Sometimes
## 10105  65.77  144.99559                Bisexual         Sometimes
## 10106     NA         NA Heterosexual (straight)            Rarely
## 10107  43.09   94.99559 Heterosexual (straight)              <NA>
## 10108  62.60  138.00705 Heterosexual (straight)             Never
## 10109  88.00  194.00353 Heterosexual (straight)            Rarely
## 10110  87.54  192.98942                Bisexual  Most of the time
## 10111  54.43  119.99559                Bisexual             Never
## 10112  54.43  119.99559                Bisexual  Most of the time
## 10113  54.43  119.99559                Bisexual         Sometimes
## 10114  79.38  175.00000 Heterosexual (straight)  Most of the time
## 10115     NA         NA          Some other way            Always
## 10116  49.90  110.00882          Some other way  Most of the time
## 10117  45.36  100.00000 Heterosexual (straight)         Sometimes
## 10118  58.06  127.99824 Heterosexual (straight)            Always
## 10119  82.56  182.01058          Gay or lesbian  Most of the time
## 10120  58.97  130.00441 Heterosexual (straight)             Never
## 10121     NA         NA                Not sure            Rarely
## 10122  70.76  155.99647 Heterosexual (straight)            Rarely
## 10123     NA         NA Heterosexual (straight)         Sometimes
## 10124  53.07  116.99735          Some other way         Sometimes
## 10125  47.63  105.00441 Heterosexual (straight)  Most of the time
## 10126  97.52  214.99118 Heterosexual (straight)            Rarely
## 10127  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10128  88.00  194.00353 Heterosexual (straight)  Most of the time
## 10129  92.99  205.00441 Heterosexual (straight)            Rarely
## 10130  84.37  186.00088 Heterosexual (straight)             Never
## 10131  73.94  163.00705 Heterosexual (straight)            Always
## 10132  52.16  114.99118                Bisexual            Always
## 10133 149.69  330.00441 Heterosexual (straight)            Always
## 10134  57.15  125.99206 Heterosexual (straight)            Rarely
## 10135     NA         NA Heterosexual (straight)            Always
## 10136  44.45   97.99383          Some other way         Sometimes
## 10137  37.65   83.00265                Bisexual         Sometimes
## 10138  65.77  144.99559                Not sure         Sometimes
## 10139     NA         NA Heterosexual (straight)            Rarely
## 10140  59.88  132.01058 Heterosexual (straight)            Rarely
## 10141  65.77  144.99559 Heterosexual (straight)             Never
## 10142 140.62  310.00882 Heterosexual (straight)         Sometimes
## 10143  55.34  122.00176 Heterosexual (straight)         Sometimes
## 10144     NA         NA                Bisexual  Most of the time
## 10145  72.58  160.00882 Heterosexual (straight)         Sometimes
## 10146  90.72  200.00000                Bisexual         Sometimes
## 10147  56.70  125.00000 Heterosexual (straight)  Most of the time
## 10148  54.43  119.99559 Heterosexual (straight)            Rarely
## 10149  88.45  194.99559 Heterosexual (straight)  Most of the time
## 10150  88.91  196.00970 Heterosexual (straight)         Sometimes
## 10151     NA         NA Heterosexual (straight)  Most of the time
## 10152  55.34  122.00176 Heterosexual (straight)  Most of the time
## 10153  61.24  135.00882                Bisexual            Always
## 10154  61.24  135.00882                Bisexual            Always
## 10155  54.43  119.99559 Heterosexual (straight)             Never
## 10156  59.88  132.01058 Heterosexual (straight)            Always
## 10157  54.43  119.99559 Heterosexual (straight)  Most of the time
## 10158  96.16  211.99295 Heterosexual (straight)            Rarely
## 10159  49.90  110.00882 Heterosexual (straight)             Never
## 10160 124.74  275.00000 Heterosexual (straight)            Always
## 10161  58.51  128.99030 Heterosexual (straight)  Most of the time
## 10162  73.48  161.99295 Heterosexual (straight)            Rarely
## 10163  65.77  144.99559 Heterosexual (straight)         Sometimes
## 10164  61.69  136.00088 Heterosexual (straight)            Rarely
## 10165  49.90  110.00882 Heterosexual (straight)             Never
## 10166  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10167  54.43  119.99559 Heterosexual (straight)            Always
## 10168  72.58  160.00882                Bisexual  Most of the time
## 10169  73.94  163.00705 Heterosexual (straight)            Rarely
## 10170 106.60  235.00882                Not sure         Sometimes
## 10171  61.24  135.00882 Heterosexual (straight)             Never
## 10172  61.24  135.00882 Heterosexual (straight)            Rarely
## 10173 106.60  235.00882 Heterosexual (straight)            Rarely
## 10174  61.24  135.00882 Heterosexual (straight)            Rarely
## 10175  74.84  164.99118 Heterosexual (straight)  Most of the time
## 10176  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10177  68.04  150.00000 Heterosexual (straight)         Sometimes
## 10178  80.74  177.99824 Heterosexual (straight)  Most of the time
## 10179  70.31  155.00441 Heterosexual (straight)             Never
## 10180  46.27  102.00617 Heterosexual (straight)             Never
## 10181  51.26  113.00705                Bisexual  Most of the time
## 10182  67.13  147.99383 Heterosexual (straight)            Rarely
## 10183  43.09   94.99559 Heterosexual (straight)             Never
## 10184 106.60  235.00882 Heterosexual (straight)         Sometimes
## 10185  56.70  125.00000 Heterosexual (straight)         Sometimes
## 10186  54.89  121.00970 Heterosexual (straight)         Sometimes
## 10187  57.15  125.99206 Heterosexual (straight)         Sometimes
## 10188  39.46   86.99295 Heterosexual (straight)             Never
## 10189  52.62  116.00529 Heterosexual (straight)            Always
## 10190  58.97  130.00441 Heterosexual (straight)            Rarely
## 10191  64.41  141.99735 Heterosexual (straight)            Rarely
## 10192  49.44  108.99471 Heterosexual (straight)         Sometimes
## 10193  63.50  139.99118                Bisexual  Most of the time
## 10194  63.96  141.00529                Bisexual         Sometimes
## 10195  68.95  152.00617 Heterosexual (straight)         Sometimes
## 10196  61.24  135.00882 Heterosexual (straight)             Never
## 10197 104.33  230.00441          Some other way  Most of the time
## 10198  74.84  164.99118 Heterosexual (straight)            Always
## 10199  59.42  130.99647          Gay or lesbian            Always
## 10200  77.11  169.99559 Heterosexual (straight)         Sometimes
## 10201  45.36  100.00000 Heterosexual (straight)             Never
## 10202 108.86  239.99118 Heterosexual (straight)            Rarely
## 10203  65.77  144.99559 Heterosexual (straight)            Rarely
## 10204  83.01  183.00265 Heterosexual (straight)         Sometimes
## 10205 104.33  230.00441 Heterosexual (straight)         Sometimes
## 10206  80.74  177.99824 Heterosexual (straight)            Rarely
## 10207  74.84  164.99118                Bisexual  Most of the time
## 10208  86.18  189.99118          Some other way         Sometimes
## 10209 125.65  277.00617          Some other way  Most of the time
## 10210  58.97  130.00441 Heterosexual (straight)            Rarely
## 10211  83.92  185.00882 Heterosexual (straight)            Rarely
## 10212  83.01  183.00265 Heterosexual (straight)         Sometimes
## 10213  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10214  55.34  122.00176 Heterosexual (straight)            Rarely
## 10215  63.50  139.99118 Heterosexual (straight)            Rarely
## 10216  61.24  135.00882                Not sure  Most of the time
## 10217  47.63  105.00441 Heterosexual (straight)  Most of the time
## 10218     NA         NA Heterosexual (straight)  Most of the time
## 10219  79.38  175.00000 Heterosexual (straight)  Most of the time
## 10220 108.86  239.99118 Heterosexual (straight)            Rarely
## 10221  68.04  150.00000 Heterosexual (straight)            Rarely
## 10222  68.04  150.00000 Heterosexual (straight)            Rarely
## 10223  74.39  163.99912 Heterosexual (straight)         Sometimes
## 10224  73.03  161.00088 Heterosexual (straight)         Sometimes
## 10225  77.11  169.99559 Heterosexual (straight)  Most of the time
## 10226  77.11  169.99559 Heterosexual (straight)              <NA>
## 10227  83.92  185.00882 Heterosexual (straight)         Sometimes
## 10228  92.99  205.00441 Heterosexual (straight)             Never
## 10229  61.24  135.00882 Heterosexual (straight)            Rarely
## 10230  90.72  200.00000 Heterosexual (straight)             Never
## 10231  58.06  127.99824 Heterosexual (straight)  Most of the time
## 10232  71.67  158.00265 Heterosexual (straight)         Sometimes
## 10233  77.11  169.99559                Bisexual         Sometimes
## 10234  74.84  164.99118 Heterosexual (straight)             Never
## 10235  54.43  119.99559 Heterosexual (straight)             Never
## 10236  88.45  194.99559 Heterosexual (straight)             Never
## 10237  69.40  152.99824 Heterosexual (straight)         Sometimes
## 10238  92.08  202.99824 Heterosexual (straight)  Most of the time
## 10239  52.16  114.99118 Heterosexual (straight)            Rarely
## 10240  70.31  155.00441          Gay or lesbian  Most of the time
## 10241  71.67  158.00265          Some other way         Sometimes
## 10242  79.38  175.00000 Heterosexual (straight)  Most of the time
## 10243     NA         NA Heterosexual (straight)         Sometimes
## 10244  63.50  139.99118                Bisexual  Most of the time
## 10245  50.80  111.99295 Heterosexual (straight)            Rarely
## 10246  66.68  147.00176          Gay or lesbian  Most of the time
## 10247  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10248  63.50  139.99118 Heterosexual (straight)             Never
## 10249  75.75  166.99735 Heterosexual (straight)             Never
## 10250  70.31  155.00441 Heterosexual (straight)             Never
## 10251  77.11  169.99559 Heterosexual (straight)  Most of the time
## 10252  97.52  214.99118 Heterosexual (straight)  Most of the time
## 10253  71.22  157.01058                Bisexual         Sometimes
## 10254  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10255  56.70  125.00000                Not sure  Most of the time
## 10256  79.38  175.00000 Heterosexual (straight)         Sometimes
## 10257  52.62  116.00529 Heterosexual (straight)            Always
## 10258 104.33  230.00441                Bisexual  Most of the time
## 10259  58.97  130.00441                Not sure         Sometimes
## 10260  86.64  191.00529 Heterosexual (straight)            Rarely
## 10261  68.04  150.00000          Some other way            Rarely
## 10262  68.04  150.00000 Heterosexual (straight)  Most of the time
## 10263  97.52  214.99118 Heterosexual (straight)         Sometimes
## 10264  63.50  139.99118                Not sure         Sometimes
## 10265  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10266  63.50  139.99118 Heterosexual (straight)            Rarely
## 10267  72.58  160.00882 Heterosexual (straight)  Most of the time
## 10268  63.05  138.99912                Bisexual         Sometimes
## 10269  53.07  116.99735 Heterosexual (straight)         Sometimes
## 10270  58.97  130.00441                Bisexual  Most of the time
## 10271  90.72  200.00000 Heterosexual (straight)             Never
## 10272  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10273  64.41  141.99735 Heterosexual (straight)         Sometimes
## 10274  72.12  158.99471                Bisexual            Always
## 10275  60.33  133.00265                Not sure  Most of the time
## 10276  65.77  144.99559 Heterosexual (straight)             Never
## 10277  97.52  214.99118 Heterosexual (straight)            Rarely
## 10278 122.47  269.99559 Heterosexual (straight)            Rarely
## 10279     NA         NA Heterosexual (straight)  Most of the time
## 10280  36.74   80.99647 Heterosexual (straight)  Most of the time
## 10281  68.04  150.00000                Bisexual  Most of the time
## 10282  61.24  135.00882 Heterosexual (straight)             Never
## 10283  49.90  110.00882 Heterosexual (straight)            Rarely
## 10284  76.20  167.98942 Heterosexual (straight)         Sometimes
## 10285  73.48  161.99295 Heterosexual (straight)            Rarely
## 10286 113.40  250.00000 Heterosexual (straight)  Most of the time
## 10287  89.36  197.00176 Heterosexual (straight)         Sometimes
## 10288  83.92  185.00882 Heterosexual (straight)             Never
## 10289  65.77  144.99559                Bisexual  Most of the time
## 10290  68.04  150.00000 Heterosexual (straight)            Rarely
## 10291  67.13  147.99383 Heterosexual (straight)            Always
## 10292  56.70  125.00000 Heterosexual (straight)         Sometimes
## 10293  54.89  121.00970 Heterosexual (straight)            Rarely
## 10294  61.24  135.00882 Heterosexual (straight)         Sometimes
## 10295  52.16  114.99118 Heterosexual (straight)            Always
## 10296     NA         NA Heterosexual (straight)             Never
## 10297  56.70  125.00000 Heterosexual (straight)         Sometimes
## 10298  61.69  136.00088 Heterosexual (straight)            Rarely
## 10299  95.26  210.00882                Bisexual            Always
## 10300  73.48  161.99295 Heterosexual (straight)  Most of the time
## 10301  72.58  160.00882 Heterosexual (straight)            Rarely
## 10302  56.70  125.00000 Heterosexual (straight)  Most of the time
## 10303  70.31  155.00441 Heterosexual (straight)         Sometimes
## 10304  52.16  114.99118 Heterosexual (straight)             Never
## 10305  81.65  180.00441                Not sure  Most of the time
## 10306  68.04  150.00000 Heterosexual (straight)         Sometimes
## 10307 117.94  260.00882 Heterosexual (straight)         Sometimes
## 10308     NA         NA                Not sure  Most of the time
## 10309  55.34  122.00176 Heterosexual (straight)             Never
## 10310  56.70  125.00000 Heterosexual (straight)  Most of the time
## 10311  58.06  127.99824 Heterosexual (straight)         Sometimes
## 10312  58.97  130.00441 Heterosexual (straight)             Never
## 10313  45.36  100.00000 Heterosexual (straight)         Sometimes
## 10314  77.11  169.99559 Heterosexual (straight)  Most of the time
## 10315  77.11  169.99559 Heterosexual (straight)            Rarely
## 10316  77.11  169.99559 Heterosexual (straight)            Rarely
## 10317  68.04  150.00000 Heterosexual (straight)  Most of the time
## 10318  72.58  160.00882 Heterosexual (straight)            Rarely
## 10319  54.43  119.99559 Heterosexual (straight)             Never
## 10320  56.70  125.00000 Heterosexual (straight)            Always
## 10321     NA         NA Heterosexual (straight)            Rarely
## 10322 142.88  314.99118 Heterosexual (straight)            Rarely
## 10323  72.58  160.00882 Heterosexual (straight)             Never
## 10324 108.86  239.99118          Gay or lesbian         Sometimes
## 10325 113.40  250.00000 Heterosexual (straight)  Most of the time
## 10326  61.24  135.00882 Heterosexual (straight)  Most of the time
## 10327  79.83  175.99206 Heterosexual (straight)             Never
## 10328  62.14  136.99295 Heterosexual (straight)             Never
## 10329  65.77  144.99559 Heterosexual (straight)            Rarely
## 10330  49.90  110.00882 Heterosexual (straight)         Sometimes
## 10331  77.11  169.99559 Heterosexual (straight)  Most of the time
## 10332  83.92  185.00882 Heterosexual (straight)            Rarely
## 10333  58.97  130.00441 Heterosexual (straight)  Most of the time
## 10334  92.99  205.00441 Heterosexual (straight)            Rarely
## 10335  65.77  144.99559 Heterosexual (straight)            Rarely
## 10336  77.11  169.99559 Heterosexual (straight)            Rarely
## 10337  65.77  144.99559 Heterosexual (straight)         Sometimes
## 10338  52.16  114.99118                Not sure            Rarely
## 10339  61.24  135.00882          Some other way         Sometimes
## 10340  65.77  144.99559 Heterosexual (straight)            Rarely
## 10341  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10342  61.24  135.00882 Heterosexual (straight)         Sometimes
## 10343     NA         NA Heterosexual (straight)              <NA>
## 10344     NA         NA Heterosexual (straight)             Never
## 10345  54.43  119.99559 Heterosexual (straight)             Never
## 10346  67.13  147.99383 Heterosexual (straight)         Sometimes
## 10347     NA         NA          Some other way         Sometimes
## 10348  81.65  180.00441 Heterosexual (straight)            Rarely
## 10349 145.15  319.99559 Heterosexual (straight)         Sometimes
## 10350  63.50  139.99118          Some other way  Most of the time
## 10351  40.82   89.99118 Heterosexual (straight)             Never
## 10352     NA         NA          Gay or lesbian            Rarely
## 10353  40.82   89.99118 Heterosexual (straight)         Sometimes
## 10354  86.18  189.99118          Gay or lesbian            Always
## 10355     NA         NA Heterosexual (straight)         Sometimes
## 10356  65.77  144.99559                Not sure            Rarely
## 10357  68.04  150.00000 Heterosexual (straight)             Never
## 10358 140.62  310.00882 Heterosexual (straight)         Sometimes
## 10359  50.35  111.00088 Heterosexual (straight)            Rarely
## 10360  68.95  152.00617 Heterosexual (straight)         Sometimes
## 10361  70.31  155.00441                Not sure         Sometimes
## 10362  63.50  139.99118 Heterosexual (straight)             Never
## 10363  82.56  182.01058                Not sure  Most of the time
## 10364 104.33  230.00441 Heterosexual (straight)              <NA>
## 10365 106.60  235.00882 Heterosexual (straight)             Never
## 10366  58.97  130.00441 Heterosexual (straight)  Most of the time
## 10367  56.70  125.00000 Heterosexual (straight)             Never
## 10368  72.58  160.00882 Heterosexual (straight)            Always
## 10369     NA         NA Heterosexual (straight)              <NA>
## 10370     NA         NA Heterosexual (straight)             Never
## 10371  63.50  139.99118          Gay or lesbian            Rarely
## 10372  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10373 111.13  244.99559 Heterosexual (straight)             Never
## 10374  67.13  147.99383 Heterosexual (straight)             Never
## 10375  58.51  128.99030          Some other way              <NA>
## 10376 101.61  224.00794                Not sure         Sometimes
## 10377  51.26  113.00705                Not sure            Always
## 10378 104.33  230.00441                Bisexual         Sometimes
## 10379  72.58  160.00882                Bisexual         Sometimes
## 10380  50.80  111.99295 Heterosexual (straight)             Never
## 10381  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10382  48.99  108.00265          Some other way         Sometimes
## 10383  83.92  185.00882 Heterosexual (straight)  Most of the time
## 10384 133.81  294.99559 Heterosexual (straight)         Sometimes
## 10385  61.24  135.00882 Heterosexual (straight)              <NA>
## 10386  72.58  160.00882          Some other way  Most of the time
## 10387  46.72  102.99824 Heterosexual (straight)  Most of the time
## 10388  50.80  111.99295 Heterosexual (straight)  Most of the time
## 10389  88.00  194.00353 Heterosexual (straight)            Rarely
## 10390  39.01   86.00088          Some other way  Most of the time
## 10391  86.18  189.99118                Not sure             Never
## 10392  49.90  110.00882 Heterosexual (straight)            Rarely
## 10393  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10394  77.11  169.99559 Heterosexual (straight)             Never
## 10395  73.94  163.00705 Heterosexual (straight)            Rarely
## 10396  65.32  144.00353 Heterosexual (straight)  Most of the time
## 10397     NA         NA Heterosexual (straight)         Sometimes
## 10398     NA         NA Heterosexual (straight)  Most of the time
## 10399  72.58  160.00882                Bisexual  Most of the time
## 10400  61.24  135.00882 Heterosexual (straight)             Never
## 10401  72.58  160.00882 Heterosexual (straight)            Rarely
## 10402  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10403  52.16  114.99118 Heterosexual (straight)            Always
## 10404  56.25  124.00794 Heterosexual (straight)            Always
## 10405  56.70  125.00000 Heterosexual (straight)         Sometimes
## 10406  99.79  219.99559 Heterosexual (straight)         Sometimes
## 10407  63.50  139.99118 Heterosexual (straight)             Never
## 10408  61.24  135.00882 Heterosexual (straight)  Most of the time
## 10409  73.94  163.00705 Heterosexual (straight)            Rarely
## 10410     NA         NA Heterosexual (straight)              <NA>
## 10411  58.97  130.00441                Bisexual         Sometimes
## 10412  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10413  65.77  144.99559 Heterosexual (straight)         Sometimes
## 10414  63.50  139.99118 Heterosexual (straight)             Never
## 10415  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10416  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10417  83.92  185.00882 Heterosexual (straight)         Sometimes
## 10418  53.52  117.98942 Heterosexual (straight)         Sometimes
## 10419  70.31  155.00441 Heterosexual (straight)         Sometimes
## 10420  61.24  135.00882 Heterosexual (straight)             Never
## 10421  63.50  139.99118          Gay or lesbian  Most of the time
## 10422  71.22  157.01058 Heterosexual (straight)              <NA>
## 10423  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10424  90.72  200.00000 Heterosexual (straight)             Never
## 10425  59.88  132.01058 Heterosexual (straight)         Sometimes
## 10426  54.43  119.99559          Gay or lesbian  Most of the time
## 10427  61.24  135.00882 Heterosexual (straight)  Most of the time
## 10428  72.58  160.00882 Heterosexual (straight)         Sometimes
## 10429  78.02  172.00176 Heterosexual (straight)  Most of the time
## 10430  36.29   80.00441          Gay or lesbian         Sometimes
## 10431  48.08  105.99647          Gay or lesbian            Always
## 10432  61.24  135.00882 Heterosexual (straight)            Rarely
## 10433  47.63  105.00441                Not sure  Most of the time
## 10434  43.55   96.00970 Heterosexual (straight)         Sometimes
## 10435  52.16  114.99118 Heterosexual (straight)              <NA>
## 10436  55.79  122.99383 Heterosexual (straight)  Most of the time
## 10437  86.18  189.99118 Heterosexual (straight)             Never
## 10438     NA         NA Heterosexual (straight)  Most of the time
## 10439  86.18  189.99118 Heterosexual (straight)         Sometimes
## 10440  52.16  114.99118 Heterosexual (straight)             Never
## 10441  86.18  189.99118 Heterosexual (straight)  Most of the time
## 10442  55.79  122.99383 Heterosexual (straight)  Most of the time
## 10443  45.81  100.99206 Heterosexual (straight)         Sometimes
## 10444  55.79  122.99383 Heterosexual (straight)             Never
## 10445  63.50  139.99118          Gay or lesbian         Sometimes
## 10446  52.16  114.99118 Heterosexual (straight)            Always
## 10447  50.80  111.99295 Heterosexual (straight)  Most of the time
## 10448  74.84  164.99118 Heterosexual (straight)             Never
## 10449  44.45   97.99383 Heterosexual (straight)  Most of the time
## 10450     NA         NA                Bisexual  Most of the time
## 10451  81.65  180.00441 Heterosexual (straight)         Sometimes
## 10452  74.84  164.99118 Heterosexual (straight)            Rarely
## 10453  89.81  197.99383 Heterosexual (straight)            Always
## 10454  79.38  175.00000 Heterosexual (straight)  Most of the time
## 10455  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10456  70.31  155.00441 Heterosexual (straight)         Sometimes
## 10457  58.97  130.00441 Heterosexual (straight)            Rarely
## 10458  49.90  110.00882          Some other way         Sometimes
## 10459     NA         NA Heterosexual (straight)            Always
## 10460  63.50  139.99118 Heterosexual (straight)             Never
## 10461     NA         NA Heterosexual (straight)            Rarely
## 10462  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10463 131.54  289.99118                Not sure  Most of the time
## 10464  74.84  164.99118 Heterosexual (straight)         Sometimes
## 10465  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10466  61.24  135.00882 Heterosexual (straight)            Always
## 10467  59.88  132.01058          Gay or lesbian         Sometimes
## 10468  54.43  119.99559 Heterosexual (straight)  Most of the time
## 10469  71.67  158.00265          Gay or lesbian  Most of the time
## 10470  63.05  138.99912 Heterosexual (straight)              <NA>
## 10471  59.88  132.01058 Heterosexual (straight)         Sometimes
## 10472  70.31  155.00441 Heterosexual (straight)             Never
## 10473  79.38  175.00000 Heterosexual (straight)              <NA>
## 10474  70.31  155.00441 Heterosexual (straight)         Sometimes
## 10475     NA         NA Heterosexual (straight)            Rarely
## 10476  52.16  114.99118 Heterosexual (straight)  Most of the time
## 10477  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10478  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10479  95.26  210.00882 Heterosexual (straight)             Never
## 10480  79.38  175.00000 Heterosexual (straight)            Always
## 10481  64.41  141.99735 Heterosexual (straight)             Never
## 10482  71.67  158.00265 Heterosexual (straight)  Most of the time
## 10483  74.84  164.99118 Heterosexual (straight)            Rarely
## 10484  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10485  90.72  200.00000                Bisexual  Most of the time
## 10486  53.52  117.98942 Heterosexual (straight)            Rarely
## 10487  77.11  169.99559 Heterosexual (straight)         Sometimes
## 10488  79.38  175.00000 Heterosexual (straight)              <NA>
## 10489  54.43  119.99559                Bisexual         Sometimes
## 10490  61.24  135.00882 Heterosexual (straight)  Most of the time
## 10491  65.77  144.99559 Heterosexual (straight)            Rarely
## 10492  72.12  158.99471 Heterosexual (straight)            Rarely
## 10493  90.72  200.00000 Heterosexual (straight)             Never
## 10494  42.18   92.98942                Bisexual            Always
## 10495 127.01  280.00441 Heterosexual (straight)         Sometimes
## 10496  49.90  110.00882 Heterosexual (straight)         Sometimes
## 10497  48.54  107.01058 Heterosexual (straight)         Sometimes
## 10498  72.58  160.00882 Heterosexual (straight)            Rarely
## 10499  57.15  125.99206 Heterosexual (straight)             Never
## 10500  43.09   94.99559                Not sure         Sometimes
## 10501  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10502  53.07  116.99735 Heterosexual (straight)         Sometimes
## 10503  54.43  119.99559 Heterosexual (straight)  Most of the time
## 10504  95.26  210.00882 Heterosexual (straight)            Rarely
## 10505  81.65  180.00441 Heterosexual (straight)         Sometimes
## 10506  49.90  110.00882 Heterosexual (straight)         Sometimes
## 10507  72.58  160.00882 Heterosexual (straight)            Rarely
## 10508  61.24  135.00882 Heterosexual (straight)             Never
## 10509  71.67  158.00265          Some other way         Sometimes
## 10510  81.65  180.00441 Heterosexual (straight)             Never
## 10511  97.52  214.99118 Heterosexual (straight)            Rarely
## 10512  49.90  110.00882 Heterosexual (straight)            Always
## 10513 138.80  305.99647 Heterosexual (straight)            Rarely
## 10514  59.88  132.01058 Heterosexual (straight)             Never
## 10515  54.43  119.99559 Heterosexual (straight)             Never
## 10516  63.50  139.99118 Heterosexual (straight)             Never
## 10517  68.04  150.00000 Heterosexual (straight)         Sometimes
## 10518  88.45  194.99559 Heterosexual (straight)             Never
## 10519  61.24  135.00882                Bisexual         Sometimes
## 10520  68.04  150.00000          Gay or lesbian            Rarely
## 10521  41.28   91.00529 Heterosexual (straight)             Never
## 10522  61.69  136.00088 Heterosexual (straight)  Most of the time
## 10523  49.90  110.00882          Gay or lesbian         Sometimes
## 10524  70.31  155.00441 Heterosexual (straight)             Never
## 10525  95.26  210.00882 Heterosexual (straight)            Rarely
## 10526     NA         NA          Gay or lesbian         Sometimes
## 10527  46.27  102.00617 Heterosexual (straight)         Sometimes
## 10528  54.43  119.99559 Heterosexual (straight)            Rarely
## 10529  84.37  186.00088 Heterosexual (straight)  Most of the time
## 10530     NA         NA                Bisexual            Always
## 10531  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10532  68.04  150.00000 Heterosexual (straight)            Rarely
## 10533  72.58  160.00882 Heterosexual (straight)  Most of the time
## 10534     NA         NA Heterosexual (straight)         Sometimes
## 10535  69.85  153.99030 Heterosexual (straight)         Sometimes
## 10536  84.37  186.00088 Heterosexual (straight)             Never
## 10537  47.63  105.00441          Some other way            Always
## 10538  71.67  158.00265 Heterosexual (straight)            Rarely
## 10539  67.13  147.99383 Heterosexual (straight)            Rarely
## 10540  56.70  125.00000                Bisexual            Always
## 10541  65.77  144.99559 Heterosexual (straight)            Rarely
## 10542  71.67  158.00265 Heterosexual (straight)  Most of the time
## 10543  58.97  130.00441 Heterosexual (straight)  Most of the time
## 10544  58.97  130.00441 Heterosexual (straight)            Always
## 10545  78.93  174.00794 Heterosexual (straight)            Rarely
## 10546  63.50  139.99118                Not sure             Never
## 10547  77.11  169.99559 Heterosexual (straight)             Never
## 10548  52.16  114.99118 Heterosexual (straight)            Rarely
## 10549  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10550  70.31  155.00441 Heterosexual (straight)         Sometimes
## 10551  61.24  135.00882 Heterosexual (straight)         Sometimes
## 10552  57.15  125.99206 Heterosexual (straight)            Rarely
## 10553  64.41  141.99735 Heterosexual (straight)             Never
## 10554  49.90  110.00882 Heterosexual (straight)  Most of the time
## 10555  52.16  114.99118 Heterosexual (straight)             Never
## 10556  88.45  194.99559 Heterosexual (straight)            Rarely
## 10557  90.72  200.00000 Heterosexual (straight)         Sometimes
## 10558  72.58  160.00882 Heterosexual (straight)            Rarely
## 10559  77.11  169.99559                Bisexual  Most of the time
## 10560  50.80  111.99295 Heterosexual (straight)         Sometimes
## 10561  71.67  158.00265 Heterosexual (straight)             Never
## 10562  53.98  119.00353 Heterosexual (straight)            Rarely
## 10563  88.45  194.99559 Heterosexual (straight)  Most of the time
## 10564     NA         NA Heterosexual (straight)         Sometimes
## 10565 106.60  235.00882 Heterosexual (straight)             Never
## 10566  67.59  149.00794 Heterosexual (straight)            Always
## 10567  76.20  167.98942 Heterosexual (straight)            Rarely
## 10568  71.22  157.01058 Heterosexual (straight)            Rarely
## 10569     NA         NA Heterosexual (straight)            Rarely
## 10570     NA         NA          Some other way            Always
## 10571  68.04  150.00000 Heterosexual (straight)            Rarely
## 10572  68.04  150.00000 Heterosexual (straight)  Most of the time
## 10573  78.47  172.99383 Heterosexual (straight)  Most of the time
## 10574  56.25  124.00794 Heterosexual (straight)         Sometimes
## 10575     NA         NA                Bisexual             Never
## 10576 117.03  258.00265 Heterosexual (straight)         Sometimes
## 10577     NA         NA                Bisexual  Most of the time
## 10578  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10579  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10580  65.77  144.99559 Heterosexual (straight)            Rarely
## 10581  61.24  135.00882 Heterosexual (straight)             Never
## 10582  53.52  117.98942 Heterosexual (straight)         Sometimes
## 10583  88.45  194.99559 Heterosexual (straight)            Rarely
## 10584  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10585 102.06  225.00000 Heterosexual (straight)            Rarely
## 10586  54.89  121.00970 Heterosexual (straight)         Sometimes
## 10587     NA         NA                Bisexual         Sometimes
## 10588  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10589  72.58  160.00882 Heterosexual (straight)  Most of the time
## 10590  64.86  142.98942 Heterosexual (straight)             Never
## 10591  53.07  116.99735                Bisexual         Sometimes
## 10592  67.59  149.00794 Heterosexual (straight)             Never
## 10593     NA         NA                Not sure            Rarely
## 10594  90.72  200.00000                Bisexual  Most of the time
## 10595  58.97  130.00441 Heterosexual (straight)            Rarely
## 10596     NA         NA Heterosexual (straight)  Most of the time
## 10597  54.43  119.99559 Heterosexual (straight)             Never
## 10598  63.50  139.99118 Heterosexual (straight)             Never
## 10599 114.76  252.99824                Bisexual            Rarely
## 10600     NA         NA Heterosexual (straight)         Sometimes
## 10601  49.44  108.99471                Bisexual            Rarely
## 10602 104.33  230.00441 Heterosexual (straight)  Most of the time
## 10603  68.95  152.00617 Heterosexual (straight)         Sometimes
## 10604  77.11  169.99559                Not sure         Sometimes
## 10605  63.50  139.99118 Heterosexual (straight)             Never
## 10606 107.05  236.00088 Heterosexual (straight)         Sometimes
## 10607  95.26  210.00882                Bisexual  Most of the time
## 10608 111.13  244.99559 Heterosexual (straight)         Sometimes
## 10609  51.26  113.00705 Heterosexual (straight)  Most of the time
## 10610     NA         NA          Some other way         Sometimes
## 10611  52.16  114.99118 Heterosexual (straight)            Always
## 10612  68.04  150.00000 Heterosexual (straight)         Sometimes
## 10613  71.67  158.00265 Heterosexual (straight)  Most of the time
## 10614     NA         NA Heterosexual (straight)             Never
## 10615  49.90  110.00882 Heterosexual (straight)            Rarely
## 10616  54.43  119.99559 Heterosexual (straight)  Most of the time
## 10617  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10618  90.72  200.00000 Heterosexual (straight)            Rarely
## 10619  63.50  139.99118 Heterosexual (straight)             Never
## 10620  54.89  121.00970 Heterosexual (straight)         Sometimes
## 10621  52.62  116.00529 Heterosexual (straight)            Rarely
## 10622  61.69  136.00088 Heterosexual (straight)             Never
## 10623 102.97  227.00617 Heterosexual (straight)         Sometimes
## 10624  90.72  200.00000 Heterosexual (straight)  Most of the time
## 10625  79.38  175.00000          Some other way  Most of the time
## 10626  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10627  47.63  105.00441 Heterosexual (straight)         Sometimes
## 10628  66.23  146.00970                Bisexual             Never
## 10629  91.17  200.99206 Heterosexual (straight)  Most of the time
## 10630 102.06  225.00000 Heterosexual (straight)  Most of the time
## 10631  72.58  160.00882 Heterosexual (straight)         Sometimes
## 10632  78.47  172.99383 Heterosexual (straight)            Rarely
## 10633  66.68  147.00176 Heterosexual (straight)  Most of the time
## 10634  54.43  119.99559 Heterosexual (straight)             Never
## 10635  46.27  102.00617 Heterosexual (straight)            Rarely
## 10636  97.52  214.99118 Heterosexual (straight)         Sometimes
## 10637     NA         NA Heterosexual (straight)         Sometimes
## 10638     NA         NA Heterosexual (straight)            Always
## 10639  40.82   89.99118 Heterosexual (straight)            Always
## 10640 104.33  230.00441 Heterosexual (straight)            Rarely
## 10641  61.24  135.00882                Bisexual         Sometimes
## 10642     NA         NA          Gay or lesbian  Most of the time
## 10643  82.10  180.99647 Heterosexual (straight)            Rarely
## 10644  68.95  152.00617 Heterosexual (straight)              <NA>
## 10645  78.02  172.00176 Heterosexual (straight)         Sometimes
## 10646  58.51  128.99030 Heterosexual (straight)             Never
## 10647  49.90  110.00882 Heterosexual (straight)         Sometimes
## 10648  69.85  153.99030 Heterosexual (straight)  Most of the time
## 10649  73.48  161.99295 Heterosexual (straight)             Never
## 10650 129.28  285.00882 Heterosexual (straight)  Most of the time
## 10651  73.94  163.00705 Heterosexual (straight)            Rarely
## 10652  92.99  205.00441 Heterosexual (straight)         Sometimes
## 10653  48.54  107.01058 Heterosexual (straight)            Rarely
## 10654  65.77  144.99559 Heterosexual (straight)            Always
## 10655  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10656  61.69  136.00088 Heterosexual (straight)             Never
## 10657  54.43  119.99559          Some other way            Always
## 10658  54.89  121.00970 Heterosexual (straight)            Rarely
## 10659  41.73   91.99735          Some other way            Always
## 10660  95.26  210.00882 Heterosexual (straight)            Rarely
## 10661  49.90  110.00882 Heterosexual (straight)         Sometimes
## 10662 104.33  230.00441 Heterosexual (straight)         Sometimes
## 10663  68.04  150.00000 Heterosexual (straight)  Most of the time
## 10664  54.89  121.00970                Bisexual  Most of the time
## 10665  48.08  105.99647 Heterosexual (straight)         Sometimes
## 10666  70.31  155.00441 Heterosexual (straight)             Never
## 10667  54.43  119.99559 Heterosexual (straight)            Rarely
## 10668  43.09   94.99559 Heterosexual (straight)         Sometimes
## 10669  65.77  144.99559 Heterosexual (straight)         Sometimes
## 10670  65.77  144.99559 Heterosexual (straight)         Sometimes
## 10671  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10672  58.97  130.00441 Heterosexual (straight)  Most of the time
## 10673  68.04  150.00000 Heterosexual (straight)  Most of the time
## 10674  67.13  147.99383 Heterosexual (straight)            Rarely
## 10675  68.04  150.00000 Heterosexual (straight)  Most of the time
## 10676  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10677  70.31  155.00441 Heterosexual (straight)            Rarely
## 10678  56.70  125.00000 Heterosexual (straight)         Sometimes
## 10679  53.98  119.00353 Heterosexual (straight)         Sometimes
## 10680  54.43  119.99559 Heterosexual (straight)            Always
## 10681  53.52  117.98942 Heterosexual (straight)            Always
## 10682  84.82  186.99295 Heterosexual (straight)            Always
## 10683  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10684  67.59  149.00794 Heterosexual (straight)             Never
## 10685 145.15  319.99559                Not sure  Most of the time
## 10686     NA         NA Heterosexual (straight)            Rarely
## 10687  99.79  219.99559 Heterosexual (straight)             Never
## 10688  95.26  210.00882 Heterosexual (straight)             Never
## 10689  90.72  200.00000 Heterosexual (straight)             Never
## 10690  95.26  210.00882 Heterosexual (straight)            Rarely
## 10691  88.45  194.99559 Heterosexual (straight)         Sometimes
## 10692  58.97  130.00441 Heterosexual (straight)  Most of the time
## 10693  87.54  192.98942 Heterosexual (straight)            Rarely
## 10694  70.31  155.00441                Bisexual            Always
## 10695  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10696  68.04  150.00000 Heterosexual (straight)            Always
## 10697  61.24  135.00882 Heterosexual (straight)            Always
## 10698  63.50  139.99118          Gay or lesbian         Sometimes
## 10699  73.94  163.00705 Heterosexual (straight)         Sometimes
## 10700  63.50  139.99118 Heterosexual (straight)            Rarely
## 10701  51.26  113.00705 Heterosexual (straight)         Sometimes
## 10702  68.04  150.00000 Heterosexual (straight)             Never
## 10703  68.04  150.00000                Bisexual         Sometimes
## 10704     NA         NA Heterosexual (straight)  Most of the time
## 10705  77.11  169.99559 Heterosexual (straight)            Always
## 10706 108.86  239.99118 Heterosexual (straight)            Always
## 10707 142.88  314.99118 Heterosexual (straight)            Rarely
## 10708  74.84  164.99118 Heterosexual (straight)            Rarely
## 10709  54.43  119.99559 Heterosexual (straight)  Most of the time
## 10710  54.43  119.99559                Bisexual  Most of the time
## 10711 136.08  300.00000 Heterosexual (straight)         Sometimes
## 10712  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10713  65.77  144.99559 Heterosexual (straight)         Sometimes
## 10714  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10715  72.58  160.00882 Heterosexual (straight)         Sometimes
## 10716  58.97  130.00441 Heterosexual (straight)            Rarely
## 10717  52.16  114.99118 Heterosexual (straight)            Rarely
## 10718  59.88  132.01058 Heterosexual (straight)              <NA>
## 10719  58.97  130.00441 Heterosexual (straight)  Most of the time
## 10720 106.60  235.00882 Heterosexual (straight)            Rarely
## 10721  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10722  63.50  139.99118 Heterosexual (straight)  Most of the time
## 10723  61.24  135.00882 Heterosexual (straight)  Most of the time
## 10724  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10725  72.58  160.00882 Heterosexual (straight)         Sometimes
## 10726  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10727  74.84  164.99118 Heterosexual (straight)             Never
## 10728  92.08  202.99824 Heterosexual (straight)         Sometimes
## 10729  79.38  175.00000          Gay or lesbian            Always
## 10730  53.07  116.99735                Bisexual  Most of the time
## 10731  54.43  119.99559          Some other way         Sometimes
## 10732  65.77  144.99559 Heterosexual (straight)            Rarely
## 10733  70.31  155.00441 Heterosexual (straight)         Sometimes
## 10734  65.77  144.99559 Heterosexual (straight)              <NA>
## 10735  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10736  77.11  169.99559 Heterosexual (straight)            Rarely
## 10737  56.70  125.00000 Heterosexual (straight)            Rarely
## 10738  83.92  185.00882 Heterosexual (straight)  Most of the time
## 10739  48.99  108.00265          Gay or lesbian         Sometimes
## 10740  61.24  135.00882 Heterosexual (straight)            Rarely
## 10741  86.18  189.99118          Gay or lesbian  Most of the time
## 10742  86.18  189.99118 Heterosexual (straight)            Rarely
## 10743  61.69  136.00088 Heterosexual (straight)            Rarely
## 10744  68.04  150.00000 Heterosexual (straight)            Rarely
## 10745  65.77  144.99559 Heterosexual (straight)            Rarely
## 10746  68.04  150.00000 Heterosexual (straight)             Never
## 10747     NA         NA                Not sure         Sometimes
## 10748  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10749  69.40  152.99824 Heterosexual (straight)         Sometimes
## 10750  49.44  108.99471 Heterosexual (straight)            Rarely
## 10751  81.65  180.00441 Heterosexual (straight)            Rarely
## 10752     NA         NA          Some other way            Rarely
## 10753  52.16  114.99118 Heterosexual (straight)             Never
## 10754  81.65  180.00441                Bisexual  Most of the time
## 10755  77.11  169.99559          Gay or lesbian  Most of the time
## 10756  88.45  194.99559 Heterosexual (straight)            Rarely
## 10757  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10758  74.84  164.99118 Heterosexual (straight)            Rarely
## 10759  49.90  110.00882 Heterosexual (straight)  Most of the time
## 10760  44.91   99.00794 Heterosexual (straight)  Most of the time
## 10761  60.78  133.99471 Heterosexual (straight)            Rarely
## 10762  74.84  164.99118          Some other way             Never
## 10763  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10764 102.06  225.00000 Heterosexual (straight)  Most of the time
## 10765     NA         NA Heterosexual (straight)  Most of the time
## 10766  44.91   99.00794 Heterosexual (straight)  Most of the time
## 10767  52.62  116.00529 Heterosexual (straight)            Rarely
## 10768     NA         NA Heterosexual (straight)         Sometimes
## 10769  34.93   77.00617 Heterosexual (straight)            Rarely
## 10770  44.00   97.00176 Heterosexual (straight)            Rarely
## 10771  54.89  121.00970                Bisexual  Most of the time
## 10772  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10773  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10774  55.34  122.00176                Not sure         Sometimes
## 10775  86.18  189.99118 Heterosexual (straight)         Sometimes
## 10776  79.38  175.00000 Heterosexual (straight)         Sometimes
## 10777  54.43  119.99559 Heterosexual (straight)            Rarely
## 10778     NA         NA Heterosexual (straight)         Sometimes
## 10779  78.47  172.99383 Heterosexual (straight)            Rarely
## 10780  62.14  136.99295 Heterosexual (straight)         Sometimes
## 10781  70.76  155.99647 Heterosexual (straight)         Sometimes
## 10782 119.75  263.99912 Heterosexual (straight)         Sometimes
## 10783  58.97  130.00441 Heterosexual (straight)             Never
## 10784  99.79  219.99559                Bisexual            Rarely
## 10785  77.11  169.99559 Heterosexual (straight)             Never
## 10786  86.18  189.99118 Heterosexual (straight)             Never
## 10787  55.34  122.00176 Heterosexual (straight)  Most of the time
## 10788  79.38  175.00000 Heterosexual (straight)         Sometimes
## 10789  54.43  119.99559                Not sure  Most of the time
## 10790  65.77  144.99559 Heterosexual (straight)            Rarely
## 10791 113.40  250.00000 Heterosexual (straight)  Most of the time
## 10792  61.24  135.00882          Some other way  Most of the time
## 10793  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10794  49.44  108.99471 Heterosexual (straight)            Rarely
## 10795  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10796  51.26  113.00705 Heterosexual (straight)         Sometimes
## 10797 108.86  239.99118 Heterosexual (straight)            Rarely
## 10798  45.81  100.99206 Heterosexual (straight)  Most of the time
## 10799 131.54  289.99118 Heterosexual (straight)             Never
## 10800     NA         NA          Some other way            Always
## 10801     NA         NA Heterosexual (straight)  Most of the time
## 10802  96.16  211.99295 Heterosexual (straight)            Rarely
## 10803  56.70  125.00000 Heterosexual (straight)            Rarely
## 10804     NA         NA                Not sure         Sometimes
## 10805  80.74  177.99824                Bisexual         Sometimes
## 10806  68.04  150.00000 Heterosexual (straight)             Never
## 10807     NA         NA Heterosexual (straight)              <NA>
## 10808  54.43  119.99559 Heterosexual (straight)  Most of the time
## 10809     NA         NA                Not sure         Sometimes
## 10810  54.43  119.99559                Bisexual            Always
## 10811  61.69  136.00088          Gay or lesbian         Sometimes
## 10812  47.63  105.00441 Heterosexual (straight)             Never
## 10813  68.49  150.99206 Heterosexual (straight)            Rarely
## 10814  88.91  196.00970                Bisexual         Sometimes
## 10815  61.24  135.00882 Heterosexual (straight)         Sometimes
## 10816  49.44  108.99471 Heterosexual (straight)  Most of the time
## 10817  68.04  150.00000 Heterosexual (straight)         Sometimes
## 10818  45.81  100.99206                Bisexual            Always
## 10819  65.77  144.99559 Heterosexual (straight)            Always
## 10820     NA         NA Heterosexual (straight)              <NA>
## 10821  44.00   97.00176                Bisexual  Most of the time
## 10822     NA         NA Heterosexual (straight)            Rarely
## 10823  61.24  135.00882                Bisexual  Most of the time
## 10824  47.63  105.00441 Heterosexual (straight)         Sometimes
## 10825     NA         NA Heterosexual (straight)            Rarely
## 10826  53.52  117.98942 Heterosexual (straight)         Sometimes
## 10827  61.69  136.00088                Bisexual              <NA>
## 10828     NA         NA                Bisexual            Always
## 10829  88.45  194.99559          Some other way            Always
## 10830  67.13  147.99383                Bisexual  Most of the time
## 10831  77.11  169.99559                Bisexual         Sometimes
## 10832 125.19  275.99206 Heterosexual (straight)  Most of the time
## 10833     NA         NA Heterosexual (straight)         Sometimes
## 10834     NA         NA Heterosexual (straight)         Sometimes
## 10835     NA         NA Heterosexual (straight)            Rarely
## 10836  65.77  144.99559 Heterosexual (straight)  Most of the time
## 10837  74.84  164.99118 Heterosexual (straight)         Sometimes
## 10838  61.24  135.00882 Heterosexual (straight)             Never
## 10839     NA         NA Heterosexual (straight)  Most of the time
## 10840  58.51  128.99030 Heterosexual (straight)         Sometimes
## 10841 117.48  258.99471          Gay or lesbian         Sometimes
## 10842  56.25  124.00794 Heterosexual (straight)  Most of the time
## 10843  61.24  135.00882 Heterosexual (straight)             Never
## 10844  68.95  152.00617                Bisexual         Sometimes
## 10845  88.45  194.99559 Heterosexual (straight)         Sometimes
## 10846  53.52  117.98942 Heterosexual (straight)              <NA>
## 10847  98.43  216.99735 Heterosexual (straight)             Never
## 10848  75.75  166.99735                Bisexual         Sometimes
## 10849  81.65  180.00441 Heterosexual (straight)            Rarely
## 10850  67.59  149.00794          Some other way            Rarely
## 10851 102.06  225.00000 Heterosexual (straight)         Sometimes
## 10852 111.59  246.00970 Heterosexual (straight)             Never
## 10853  63.50  139.99118 Heterosexual (straight)            Always
## 10854 127.01  280.00441 Heterosexual (straight)            Rarely
## 10855  83.01  183.00265 Heterosexual (straight)             Never
## 10856  58.06  127.99824                Bisexual            Rarely
## 10857  85.28  188.00705 Heterosexual (straight)             Never
## 10858  38.56   85.00882          Gay or lesbian  Most of the time
## 10859  68.04  150.00000 Heterosexual (straight)  Most of the time
## 10860  86.18  189.99118 Heterosexual (straight)             Never
## 10861     NA         NA Heterosexual (straight)             Never
## 10862  95.26  210.00882 Heterosexual (straight)             Never
## 10863 129.73  286.00088 Heterosexual (straight)             Never
## 10864 163.30  360.00882 Heterosexual (straight)            Rarely
## 10865 117.94  260.00882 Heterosexual (straight)         Sometimes
## 10866     NA         NA Heterosexual (straight)             Never
## 10867  45.36  100.00000 Heterosexual (straight)             Never
## 10868  68.04  150.00000          Some other way             Never
## 10869  77.11  169.99559 Heterosexual (straight)             Never
## 10870     NA         NA Heterosexual (straight)             Never
## 10871     NA         NA Heterosexual (straight)             Never
## 10872  52.16  114.99118 Heterosexual (straight)             Never
## 10873     NA         NA Heterosexual (straight)         Sometimes
## 10874  98.43  216.99735 Heterosexual (straight)            Rarely
## 10875  40.82   89.99118 Heterosexual (straight)  Most of the time
## 10876  77.11  169.99559 Heterosexual (straight)             Never
## 10877  58.51  128.99030 Heterosexual (straight)             Never
## 10878  73.94  163.00705 Heterosexual (straight)             Never
## 10879  54.89  121.00970 Heterosexual (straight)             Never
## 10880     NA         NA Heterosexual (straight)             Never
## 10881  58.51  128.99030 Heterosexual (straight)             Never
## 10882  63.50  139.99118 Heterosexual (straight)         Sometimes
## 10883  54.43  119.99559 Heterosexual (straight)            Rarely
## 10884  79.38  175.00000 Heterosexual (straight)             Never
## 10885  45.36  100.00000 Heterosexual (straight)            Rarely
## 10886  79.38  175.00000                Bisexual            Rarely
## 10887  49.90  110.00882 Heterosexual (straight)             Never
## 10888  72.12  158.99471 Heterosexual (straight)         Sometimes
## 10889  64.41  141.99735 Heterosexual (straight)            Rarely
## 10890  47.17  103.99030 Heterosexual (straight)             Never
## 10891  64.41  141.99735                Bisexual  Most of the time
## 10892  54.43  119.99559 Heterosexual (straight)  Most of the time
## 10893  58.97  130.00441 Heterosexual (straight)         Sometimes
## 10894     NA         NA Heterosexual (straight)         Sometimes
## 10895  78.02  172.00176 Heterosexual (straight)         Sometimes
## 10896  44.45   97.99383 Heterosexual (straight)         Sometimes
## 10897  59.88  132.01058                Not sure  Most of the time
## 10898 117.48  258.99471 Heterosexual (straight)         Sometimes
## 10899  58.97  130.00441 Heterosexual (straight)            Rarely
## 10900  52.16  114.99118 Heterosexual (straight)         Sometimes
## 10901  64.41  141.99735 Heterosexual (straight)         Sometimes
## 10902  42.64   94.00353 Heterosexual (straight)             Never
## 10903  68.04  150.00000 Heterosexual (straight)             Never
## 10904     NA         NA Heterosexual (straight)            Rarely
## 10905 117.94  260.00882                Bisexual         Sometimes
## 10906  76.20  167.98942 Heterosexual (straight)            Rarely
## 10907  71.22  157.01058                Not sure             Never
## 10908  54.43  119.99559 Heterosexual (straight)            Rarely
## 10909  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10910  72.58  160.00882 Heterosexual (straight)         Sometimes
## 10911     NA         NA Heterosexual (straight)             Never
## 10912  81.65  180.00441 Heterosexual (straight)         Sometimes
## 10913     NA         NA Heterosexual (straight)            Rarely
## 10914  67.59  149.00794 Heterosexual (straight)            Rarely
## 10915  56.70  125.00000 Heterosexual (straight)         Sometimes
## 10916  73.48  161.99295 Heterosexual (straight)            Rarely
## 10917  49.90  110.00882          Some other way            Always
## 10918  67.13  147.99383 Heterosexual (straight)             Never
## 10919  49.90  110.00882          Some other way  Most of the time
## 10920  43.55   96.00970 Heterosexual (straight)              <NA>
## 10921  49.90  110.00882                Bisexual         Sometimes
## 10922  56.70  125.00000 Heterosexual (straight)  Most of the time
## 10923  53.52  117.98942 Heterosexual (straight)         Sometimes
## 10924  67.59  149.00794 Heterosexual (straight)         Sometimes
## 10925  57.61  127.00617 Heterosexual (straight)         Sometimes
## 10926  50.80  111.99295 Heterosexual (straight)  Most of the time
## 10927  55.34  122.00176 Heterosexual (straight)         Sometimes
## 10928  49.90  110.00882 Heterosexual (straight)  Most of the time
## 10929  61.24  135.00882 Heterosexual (straight)             Never
## 10930  60.33  133.00265 Heterosexual (straight)         Sometimes
## 10931  40.82   89.99118 Heterosexual (straight)             Never
## 10932  62.60  138.00705 Heterosexual (straight)  Most of the time
## 10933  46.27  102.00617                Bisexual  Most of the time
## 10934     NA         NA Heterosexual (straight)             Never
## 10935  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10936  50.80  111.99295 Heterosexual (straight)            Rarely
## 10937  65.32  144.00353 Heterosexual (straight)  Most of the time
## 10938  74.84  164.99118 Heterosexual (straight)  Most of the time
## 10939  77.11  169.99559 Heterosexual (straight)            Rarely
## 10940  48.54  107.01058 Heterosexual (straight)             Never
## 10941  81.65  180.00441 Heterosexual (straight)  Most of the time
## 10942  40.82   89.99118 Heterosexual (straight)         Sometimes
## 10943  61.24  135.00882 Heterosexual (straight)            Rarely
## 10944  91.63  202.00617          Gay or lesbian            Always
## 10945     NA         NA Heterosexual (straight)            Rarely
## 10946  89.36  197.00176 Heterosexual (straight)             Never
## 10947  47.63  105.00441 Heterosexual (straight)            Rarely
## 10948     NA         NA Heterosexual (straight)             Never
## 10949  56.70  125.00000 Heterosexual (straight)  Most of the time
## 10950  62.14  136.99295 Heterosexual (straight)             Never
## 10951  62.14  136.99295 Heterosexual (straight)             Never
## 10952  79.38  175.00000 Heterosexual (straight)             Never
## 10953  49.90  110.00882                Not sure  Most of the time
## 10954  69.85  153.99030          Some other way         Sometimes
## 10955  56.70  125.00000 Heterosexual (straight)  Most of the time
## 10956  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10957  99.34  219.00353          Gay or lesbian         Sometimes
## 10958  46.72  102.99824 Heterosexual (straight)            Rarely
## 10959  51.26  113.00705                Bisexual         Sometimes
## 10960  56.25  124.00794                Bisexual  Most of the time
## 10961  50.80  111.99295 Heterosexual (straight)            Rarely
## 10962  61.24  135.00882 Heterosexual (straight)             Never
## 10963  65.77  144.99559 Heterosexual (straight)            Rarely
## 10964  44.45   97.99383                Bisexual            Rarely
## 10965  49.44  108.99471 Heterosexual (straight)         Sometimes
## 10966  47.63  105.00441 Heterosexual (straight)         Sometimes
## 10967  54.43  119.99559 Heterosexual (straight)            Rarely
## 10968  51.71  113.99912 Heterosexual (straight)            Rarely
## 10969  49.44  108.99471 Heterosexual (straight)            Rarely
## 10970  57.61  127.00617 Heterosexual (straight)         Sometimes
## 10971     NA         NA                Bisexual  Most of the time
## 10972  73.94  163.00705 Heterosexual (straight)             Never
## 10973  48.99  108.00265 Heterosexual (straight)            Always
## 10974  59.88  132.01058 Heterosexual (straight)            Rarely
## 10975  69.85  153.99030 Heterosexual (straight)             Never
## 10976  64.86  142.98942 Heterosexual (straight)             Never
## 10977  47.63  105.00441 Heterosexual (straight)            Rarely
## 10978     NA         NA          Gay or lesbian         Sometimes
## 10979  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10980  54.43  119.99559 Heterosexual (straight)              <NA>
## 10981  54.43  119.99559 Heterosexual (straight)            Rarely
## 10982  44.45   97.99383 Heterosexual (straight)  Most of the time
## 10983  34.02   75.00000          Some other way             Never
## 10984  41.73   91.99735 Heterosexual (straight)  Most of the time
## 10985  63.50  139.99118                Not sure         Sometimes
## 10986  48.08  105.99647                Not sure         Sometimes
## 10987  52.16  114.99118                Bisexual  Most of the time
## 10988  68.04  150.00000 Heterosexual (straight)             Never
## 10989  79.83  175.99206 Heterosexual (straight)             Never
## 10990  88.45  194.99559 Heterosexual (straight)         Sometimes
## 10991  86.18  189.99118          Gay or lesbian            Rarely
## 10992     NA         NA                Bisexual         Sometimes
## 10993     NA         NA                Not sure         Sometimes
## 10994  54.43  119.99559 Heterosexual (straight)         Sometimes
## 10995  45.36  100.00000 Heterosexual (straight)         Sometimes
## 10996  51.26  113.00705 Heterosexual (straight)             Never
## 10997  65.32  144.00353 Heterosexual (straight)         Sometimes
## 10998  54.43  119.99559 Heterosexual (straight)             Never
## 10999  58.97  130.00441                Not sure         Sometimes
## 11000  51.71  113.99912 Heterosexual (straight)            Rarely
## 11001  47.17  103.99030 Heterosexual (straight)  Most of the time
## 11002  68.04  150.00000 Heterosexual (straight)            Rarely
## 11003  53.07  116.99735 Heterosexual (straight)         Sometimes
## 11004  97.52  214.99118 Heterosexual (straight)  Most of the time
## 11005     NA         NA Heterosexual (straight)            Rarely
## 11006  54.43  119.99559 Heterosexual (straight)             Never
## 11007  44.45   97.99383 Heterosexual (straight)            Rarely
## 11008  72.58  160.00882 Heterosexual (straight)             Never
## 11009 104.33  230.00441 Heterosexual (straight)            Rarely
## 11010 104.33  230.00441 Heterosexual (straight)  Most of the time
## 11011  68.04  150.00000 Heterosexual (straight)            Always
## 11012  53.98  119.00353 Heterosexual (straight)             Never
## 11013  66.23  146.00970 Heterosexual (straight)             Never
## 11014     NA         NA Heterosexual (straight)             Never
## 11015  58.97  130.00441 Heterosexual (straight)             Never
## 11016  97.52  214.99118 Heterosexual (straight)             Never
## 11017  55.34  122.00176 Heterosexual (straight)             Never
## 11018  81.65  180.00441 Heterosexual (straight)            Rarely
## 11019  52.16  114.99118 Heterosexual (straight)            Rarely
## 11020  68.04  150.00000 Heterosexual (straight)  Most of the time
## 11021  44.45   97.99383                Not sure            Always
## 11022  40.82   89.99118                Bisexual            Always
## 11023  58.97  130.00441 Heterosexual (straight)         Sometimes
## 11024  68.04  150.00000 Heterosexual (straight)             Never
## 11025  52.62  116.00529 Heterosexual (straight)  Most of the time
## 11026  62.60  138.00705 Heterosexual (straight)            Always
## 11027  58.97  130.00441 Heterosexual (straight)            Always
## 11028  56.70  125.00000 Heterosexual (straight)            Always
## 11029  65.77  144.99559 Heterosexual (straight)         Sometimes
## 11030  56.70  125.00000 Heterosexual (straight)  Most of the time
## 11031  46.72  102.99824 Heterosexual (straight)         Sometimes
## 11032  58.97  130.00441 Heterosexual (straight)            Rarely
## 11033  86.18  189.99118 Heterosexual (straight)            Rarely
## 11034  81.65  180.00441 Heterosexual (straight)             Never
## 11035 108.41  238.99912 Heterosexual (straight)         Sometimes
## 11036  58.06  127.99824 Heterosexual (straight)             Never
## 11037  44.45   97.99383                Bisexual            Always
## 11038  88.00  194.00353 Heterosexual (straight)         Sometimes
## 11039  58.97  130.00441 Heterosexual (straight)            Rarely
## 11040  54.43  119.99559 Heterosexual (straight)            Rarely
## 11041  71.67  158.00265 Heterosexual (straight)            Rarely
## 11042  70.31  155.00441 Heterosexual (straight)         Sometimes
## 11043  54.89  121.00970 Heterosexual (straight)             Never
## 11044  92.53  203.99030 Heterosexual (straight)             Never
## 11045  66.23  146.00970 Heterosexual (straight)  Most of the time
## 11046  48.08  105.99647 Heterosexual (straight)         Sometimes
## 11047  54.43  119.99559          Gay or lesbian             Never
## 11048  48.54  107.01058 Heterosexual (straight)            Rarely
## 11049  70.31  155.00441 Heterosexual (straight)         Sometimes
## 11050  54.43  119.99559 Heterosexual (straight)  Most of the time
## 11051  52.62  116.00529 Heterosexual (straight)         Sometimes
## 11052  65.77  144.99559 Heterosexual (straight)            Rarely
## 11053  56.70  125.00000 Heterosexual (straight)  Most of the time
## 11054     NA         NA Heterosexual (straight)         Sometimes
## 11055  61.24  135.00882 Heterosexual (straight)            Always
## 11056  39.01   86.00088 Heterosexual (straight)         Sometimes
## 11057  52.16  114.99118 Heterosexual (straight)         Sometimes
## 11058  40.82   89.99118 Heterosexual (straight)             Never
## 11059  47.63  105.00441                Not sure              <NA>
## 11060  58.97  130.00441 Heterosexual (straight)         Sometimes
## 11061  52.16  114.99118 Heterosexual (straight)         Sometimes
## 11062  65.77  144.99559 Heterosexual (straight)         Sometimes
## 11063  73.48  161.99295 Heterosexual (straight)         Sometimes
## 11064  52.16  114.99118                Bisexual            Rarely
## 11065  48.08  105.99647 Heterosexual (straight)  Most of the time
## 11066  54.43  119.99559 Heterosexual (straight)         Sometimes
## 11067  63.50  139.99118 Heterosexual (straight)         Sometimes
## 11068  62.14  136.99295 Heterosexual (straight)  Most of the time
## 11069 104.33  230.00441 Heterosexual (straight)            Rarely
## 11070  55.79  122.99383 Heterosexual (straight)         Sometimes
## 11071  81.19  178.99030 Heterosexual (straight)             Never
## 11072  45.36  100.00000                Not sure             Never
## 11073  43.09   94.99559 Heterosexual (straight)            Rarely
## 11074  97.07  213.99912 Heterosexual (straight)            Rarely
## 11075  79.83  175.99206          Some other way             Never
## 11076  36.29   80.00441 Heterosexual (straight)            Always
## 11077  34.93   77.00617 Heterosexual (straight)         Sometimes
## 11078  41.28   91.00529          Gay or lesbian            Rarely
## 11079  51.26  113.00705                Bisexual  Most of the time
## 11080     NA         NA          Some other way            Always
## 11081  40.82   89.99118 Heterosexual (straight)  Most of the time
## 11082  47.63  105.00441                Not sure            Always
## 11083  72.58  160.00882 Heterosexual (straight)            Rarely
## 11084  54.43  119.99559 Heterosexual (straight)         Sometimes
## 11085  57.15  125.99206 Heterosexual (straight)         Sometimes
## 11086  67.59  149.00794 Heterosexual (straight)             Never
## 11087  42.18   92.98942          Gay or lesbian         Sometimes
## 11088  79.38  175.00000 Heterosexual (straight)         Sometimes
## 11089  86.18  189.99118 Heterosexual (straight)            Rarely
## 11090  54.43  119.99559 Heterosexual (straight)            Rarely
## 11091  52.16  114.99118 Heterosexual (straight)            Rarely
## 11092  56.70  125.00000 Heterosexual (straight)  Most of the time
## 11093  72.58  160.00882 Heterosexual (straight)            Rarely
## 11094  63.50  139.99118 Heterosexual (straight)  Most of the time
## 11095  59.88  132.01058 Heterosexual (straight)            Rarely
## 11096  49.90  110.00882                Bisexual         Sometimes
## 11097  54.43  119.99559 Heterosexual (straight)  Most of the time
## 11098  43.55   96.00970                Not sure         Sometimes
## 11099  78.02  172.00176 Heterosexual (straight)            Rarely
## 11100 131.54  289.99118 Heterosexual (straight)  Most of the time
## 11101  44.00   97.00176 Heterosexual (straight)            Always
## 11102  92.99  205.00441 Heterosexual (straight)             Never
## 11103  99.79  219.99559 Heterosexual (straight)             Never
## 11104  90.72  200.00000 Heterosexual (straight)            Always
## 11105  60.78  133.99471 Heterosexual (straight)         Sometimes
## 11106  67.59  149.00794          Gay or lesbian  Most of the time
## 11107  68.04  150.00000 Heterosexual (straight)             Never
## 11108  96.62  213.00705 Heterosexual (straight)             Never
## 11109  71.22  157.01058 Heterosexual (straight)             Never
## 11110  54.43  119.99559 Heterosexual (straight)             Never
## 11111  77.11  169.99559 Heterosexual (straight)            Rarely
##  [ reached 'max' / getOption("max.print") -- omitted 6524 rows ]

5. summarize() - Create Summary Statistics

What if we were interested in the average height instead? We could use the summarize function to find the mean height in a new column called mean_height. We did not filter out missing values from the height column so we need to add na.rm=TRUE option. The summarize functions return NA unless we explicitly tell the function to skip missing values. Remember NAs are not zeros!

The summarize function can be used to summarize data in many ways. How would you go about finding other options for the summarize function?

summarize(yrbs_filter, mean_height=mean(height_ft, na.rm = TRUE))
##   mean_height
## 1     5.56466

6. group_by() - Group Data for Analysis

If we are interested in seeing the mean height in females versus males, we need to tell R to recognize a grouping pattern in our data object. The group_by function is a way to group one or more variables. The group_by function doesn’t change anything as far as the structure of the data, but it does pass this grouping to downstream functions. Let’s see what happens using the group_by function on the sex column.

yrbs_filter <- group_by(yrbs_filter, sex)

groups(yrbs_filter)
## [[1]]
## sex

Nothing changes with the data table; we still have the same dimensions. We do now see a new tab called “Groups”, with two factors in that group. Using the groups function, we can always check on any existing groupings in the data object.

Pipes

The group_by() function is most powerful when combined with summarize() to create group-specific summaries. Now that we know how to group data, we can use it with the summarize function to get the mean_height of males versus females. We could run each function separately, but that would be extra lines of code. We only want the final result, not the intermediate outputs. We can instead use a pipe %>% which will chain together functions, taking the output of the first function as the input for the next function and so on. First, we start with the data object, yrbs_filter. Next, we will pipe (%>%) that data into the first function, using group_by on the sex column. We will then pipe (%>%) that output into the summarize function to get the mean heights. Notice how we no longer specify the data object in each function, as the pipe explicitly says the input is the output of the previous function.

yrbs_filter %>% group_by(sex) %>% summarize(mean_height=mean(height_ft, na.rm = TRUE))
## # A tibble: 3 × 2
##   sex    mean_height
##   <chr>        <dbl>
## 1 Female        5.34
## 2 Male          5.78
## 3 <NA>        NaN

How would we also find the average weight for males versus females?

yrbs_filter %>% group_by(sex) %>% mutate(bmi = weight/height^2) %>%
  summarize(mean_bmi = mean(bmi, na.rm=TRUE)) %>% 
  arrange(mean_bmi)
## # A tibble: 3 × 2
##   sex    mean_bmi
##   <chr>     <dbl>
## 1 Female     23.6
## 2 Male       23.9
## 3 <NA>      NaN

Key Takeaways

The Six Essential dplyr Functions:

  1. select(): Choose which columns to keep or remove
  2. filter(): Choose which rows to keep based on conditions
  3. arrange(): Sort your data by one or more columns
  4. mutate(): Create new variables or modify existing ones
  5. summarise(): Calculate summary statistics
  6. group_by(): Group data for group-specific operations

Useful tips!

  • Use the pipe operator (%>%) to chain functions together
  • Always use meaningful variable names
  • Comment your code to explain complex operations
  • Use group_by() with summarise() for powerful group analyses
  • Check your data after each major transformation
  • Use .groups = 'drop' after summarise() to avoid unwanted grouping

Exercises

Let’s work on some problems:

What if we were interested in the age of the oldest student that filled out this survey? Fill in your answer in the code block below:

What if we were interested in how any males versus females filled out this survey by grade? Fill in your answer in the code block below:

#or

What if we were interested in counting the number of sexual identities of males versus females that answered they “Always” felt negative mental health? Fill in the code block below:

Bonus Question:

What if we were interested in whether there is a difference in neighborhood violence exposure between males and females? Fill in the code block below:

Hint: You would need to go back to the original data object yrbs to select the appropriate variables.